diff --git a/AntiEvilService.cc b/AntiEvilService.cc index ee5b4c26616be3192bf3cc89bda89745a950f301..7eb3ef549e6331cf57f47e46767f288377184f6c 100644 --- a/AntiEvilService.cc +++ b/AntiEvilService.cc @@ -28,14 +28,8 @@ void AntiEvilService::indicate(const vanetza::btp::DataIndication& ind, omnetpp: auto vehicleEvilBeacon = check_and_cast<const VehicleEvilBeacon*>(packet); - if (vehicleEvilBeacon == nullptr) { - received += 1000; - return; - } else { - received += 1; - } - auto senderID = vehicleEvilBeacon->getVehicleID(); + std::string senderID = vehicleEvilBeacon->getVehicleID(); const std::string id = mVehicleController->getVehicleId(); @@ -43,9 +37,28 @@ void AntiEvilService::indicate(const vanetza::btp::DataIndication& ind, omnetpp: double distance = vehicle_api.getDistance(senderID); - if(vehicleEvilBeacon->getEvilness() > 20 && distance < 10) mVehicleController->setMaxSpeed(1 * units::si::meter_per_second); - else mVehicleController->setMaxSpeed(50 * units::si::meter_per_second); + if(vehicleEvilBeacon->getEvilness() && this->evilCarIsClose(senderID) == -1 && distance < SAFE_DISTANCE) { + mVehicleController->setMaxSpeed(1 * units::si::meter_per_second); + this->closeEvilCars.push_back(senderID); + received += 1; + } + else if (this->closeEvilCars.empty()){ + mVehicleController->setMaxSpeed(50 * units::si::meter_per_second); + } + + + if (int i = this->evilCarIsClose(senderID) != -1 && distance > SAFE_DISTANCE) { + this->closeEvilCars.erase(this->closeEvilCars.begin() + i); + } + delete vehicleEvilBeacon; +} + +int AntiEvilService::evilCarIsClose(std::string vehicleID) { + for(int i = 0; i < this->closeEvilCars.size(); i++) { + if (this->closeEvilCars[i] == vehicleID) return i; + } + return -1; } \ No newline at end of file diff --git a/AntiEvilService.h b/AntiEvilService.h index ed840db135ebdedaf80c617a4703f773769eeea8..09a2a16f135eda1ec11a969fdff6ad527c3a09af 100644 --- a/AntiEvilService.h +++ b/AntiEvilService.h @@ -1,7 +1,11 @@ #ifndef CARSERVICE_H_ #define CARSERVICE_H_ +#define SAFE_DISTANCE 200 + #include "artery/application/ItsG5Service.h" +#include <vector> +#include <string> namespace traci { class VehicleController; } @@ -9,6 +13,8 @@ class AntiEvilService : public artery::ItsG5Service { private: int received; + std::vector<std::string> closeEvilCars; + int evilCarIsClose(std::string); public: void indicate(const vanetza::btp::DataIndication&, omnetpp::cPacket*) override; void initialize() override; diff --git a/CMakeLists.txt b/CMakeLists.txt index cde91c47809e3c2d19d5e898c5b722bf7f5b4b11..84b43ff93e1397ec5edb9d9f87b39fee9a1847ea 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,5 +1,5 @@ -add_artery_feature(car CarService.cc AntiEvilService.cc) +add_artery_feature(car CarService.cc EvilCarService.cc AntiEvilService.cc) generate_opp_message(VehicleEvilBeacon.msg TARGET car DIRECTORY car_msgs) diff --git a/CarService.cc b/CarService.cc index e9392f7b99770e83f9fe9e170903bba20188b5e9..02538f3c1d991a42092894739ebed0df8c6c4a33 100644 --- a/CarService.cc +++ b/CarService.cc @@ -19,7 +19,7 @@ void CarService::initialize() { numSent = 0; numReceieved = 0; - evilness = rand() % 70; + evilness = 0; WATCH(numSent); WATCH(numReceieved); WATCH(evilness); @@ -43,7 +43,7 @@ void CarService::trigger() auto packet = new VehicleEvilBeacon(); packet->setVehicleID(id.c_str()); - packet->setEvilness(rand() % 70); + packet->setEvilness(evilness); btp::DataRequestB req; req.destination_port = host_cast<CarService::port_type>(getPortNumber()); diff --git a/CarService.h b/CarService.h index 0f6cdb5863943b78ee468668b0d4c9d1843a39ce..6ca3813e6577b7120cfc10a78f6290bcad5ce122 100644 --- a/CarService.h +++ b/CarService.h @@ -3,20 +3,18 @@ #include "artery/application/ItsG5Service.h" -// forward declaration -//namespace traci { class VehicleController; } class CarService : public artery::ItsG5Service { private: long numSent; long numReceieved; - int evilness; public: + bool evilness; void trigger() override; + void initialize() override; protected: - void initialize() override; const traci::VehicleController* mVehicleController = nullptr; }; diff --git a/EvilCarService.cc b/EvilCarService.cc new file mode 100644 index 0000000000000000000000000000000000000000..b3af6b01a8662338cf25f3cb2d46210b44c03cb3 --- /dev/null +++ b/EvilCarService.cc @@ -0,0 +1,22 @@ +#include <omnetpp.h> +#include <stdlib.h> + +#include "artery/traci/VehicleController.h" +#include <vanetza/btp/data_request.hpp> +#include <vanetza/btp/data_request.hpp> +#include <vanetza/dcc/profile.hpp> +#include <vanetza/geonet/interface.hpp> + +#include "car_msgs/VehicleEvilBeacon_m.h" +#include "EvilCarService.h" + +using namespace omnetpp; +using namespace vanetza; + +Define_Module(EvilCarService); + +void EvilCarService::initialize() +{ + CarService::initialize(); + evilness = true; +} \ No newline at end of file diff --git a/EvilCarService.h b/EvilCarService.h new file mode 100644 index 0000000000000000000000000000000000000000..d1be9cf39db7345f5078084b950c4d793ae311bd --- /dev/null +++ b/EvilCarService.h @@ -0,0 +1,15 @@ +#ifndef EVILCARSERVICE_H_ +#define EVILCARSERVICE_H_ + +#include "CarService.h" + +// forward declaration +//namespace traci { class VehicleController; } + +class EvilCarService : public CarService +{ + protected: + void initialize() override; +}; + +#endif /* EVILCARSERVICE_H_ */ diff --git a/EvilCarService.ned b/EvilCarService.ned new file mode 100644 index 0000000000000000000000000000000000000000..8f6770732b7a9391b95ae2bd0148fef1fc6cbb2d --- /dev/null +++ b/EvilCarService.ned @@ -0,0 +1,5 @@ +import artery.application.ItsG5Service; + +simple EvilCarService like ItsG5Service +{ +} diff --git a/omnetpp.ini b/omnetpp.ini index 56055de379922627278e56da138841ec8de6edc0..f0247c0971df0fd66378b116fc5fbae963327c72 100644 --- a/omnetpp.ini +++ b/omnetpp.ini @@ -6,7 +6,7 @@ network = artery.inet.World *.traci.launcher.typename = "PosixLauncher" *.traci.launcher.sumocfg = "grid.sumo.cfg" -*.node[*].middleware.updateInterval = 0.1s +*.node[*].middleware.updateInterval = 0.3s *.node[*].middleware.datetime = "2018-03-19 10:00:00" *.node[*].middleware.services = xmldoc("services.xml") *.traci.launcher.sumo = "sumo-gui" @@ -19,6 +19,6 @@ network = artery.inet.World *.node[*].wlan[*].radio.carrierFrequency = 5.9 GHz *.node[*].wlan[*].radio.transmitter.power = 10 mW -*.node[*].middleware.updateInterval = 0.1s +*.node[*].middleware.updateInterval = 0.3s *.node[*].middleware.datetime = "2013-06-01 12:35:00" *.node[*].middleware.services = xmldoc("services.xml") diff --git a/r.rou.alt.xml b/r.rou.alt.xml new file mode 100644 index 0000000000000000000000000000000000000000..b76216d88560731a53fb19a8fa695ac9f2b1e705 --- /dev/null +++ b/r.rou.alt.xml @@ -0,0 +1,18031 @@ +<?xml version="1.0" encoding="UTF-8"?> + +<!-- generated on Thu Apr 7 14:14:42 2022 by Eclipse SUMO duarouter Version 1.8.0 +<configuration xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="http://sumo.dlr.de/xsd/duarouterConfiguration.xsd"> + + <input> + <net-file value="net.net.xml"/> + <route-files value="trips.trips.xml"/> + </input> + + <output> + <output-file value="r.rou.xml"/> + <alternatives-output value="r.rou.alt.xml"/> + </output> + + <time> + <begin value="0"/> + <end value="3600"/> + </time> + + <report> + <no-warnings value="true"/> + <ignore-errors value="true"/> + <no-step-log value="true"/> + </report> + +</configuration> +--> + +<routes xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="http://sumo.dlr.de/xsd/routes_file.xsd"> + <vehicle id="car0" depart="0.00"> + <routeDistribution last="0"> + <route cost="54.51" probability="1.00000000" edges="3/0to4/0 4/0to3/0 3/0to2/0 2/0to1/0 1/0to0/0 0/0to0/1 0/1to0/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car1" depart="1.00"> + <routeDistribution last="0"> + <route cost="30.04" probability="1.00000000" edges="1/2to1/3 1/3to1/2 1/2to1/1 1/1to1/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car2" depart="2.00"> + <routeDistribution last="0"> + <route cost="50.73" probability="1.00000000" edges="4/1to4/2 4/2to3/2 3/2to2/2 2/2to1/2 1/2to0/2 0/2to0/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car3" depart="3.00"> + <routeDistribution last="0"> + <route cost="46.74" probability="1.00000000" edges="2/0to3/0 3/0to2/0 2/0to1/0 1/0to0/0 0/0to0/1 0/1to0/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car4" depart="4.00"> + <routeDistribution last="0"> + <route cost="36.83" probability="1.00000000" edges="1/1to1/0 1/0to1/1 1/1to1/2 1/2to2/2 2/2to2/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car5" depart="5.00"> + <routeDistribution last="0"> + <route cost="20.64" probability="1.00000000" edges="0/1to0/0 0/0to1/0 1/0to2/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car6" depart="6.00"> + <routeDistribution last="0"> + <route cost="54.11" probability="1.00000000" edges="3/0to4/0 4/0to3/0 3/0to2/0 2/0to2/1 2/1to2/2 2/2to2/3 2/3to2/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car7" depart="7.00"> + <routeDistribution last="0"> + <route cost="50.85" probability="1.00000000" edges="1/1to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to2/4 2/4to2/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car8" depart="8.00"> + <routeDistribution last="0"> + <route cost="59.49" probability="1.00000000" edges="3/4to2/4 2/4to1/4 1/4to0/4 0/4to0/3 0/3to0/2 0/2to0/1 0/1to0/0 0/0to0/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car9" depart="9.00"> + <routeDistribution last="0"> + <route cost="47.03" probability="1.00000000" edges="3/4to2/4 2/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to4/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car10" depart="10.00"> + <routeDistribution last="0"> + <route cost="45.86" probability="1.00000000" edges="4/3to4/2 4/2to3/2 3/2to2/2 2/2to1/2 1/2to1/3 1/3to1/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car11" depart="11.00"> + <routeDistribution last="0"> + <route cost="50.34" probability="1.00000000" edges="4/0to3/0 3/0to2/0 2/0to2/1 2/1to2/2 2/2to2/3 2/3to2/4 2/4to3/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car12" depart="12.00"> + <routeDistribution last="0"> + <route cost="40.51" probability="1.00000000" edges="2/3to1/3 1/3to2/3 2/3to3/3 3/3to4/3 4/3to4/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car13" depart="13.00"> + <routeDistribution last="0"> + <route cost="48.77" probability="1.00000000" edges="3/4to4/4 4/4to4/3 4/3to4/2 4/2to4/1 4/1to4/0 4/0to3/0 3/0to2/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car14" depart="14.00"> + <routeDistribution last="0"> + <route cost="49.71" probability="1.00000000" edges="4/0to4/1 4/1to4/2 4/2to4/3 4/3to4/4 4/4to3/4 3/4to2/4 2/4to1/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car15" depart="15.00"> + <routeDistribution last="0"> + <route cost="38.65" probability="1.00000000" edges="3/2to2/2 2/2to1/2 1/2to1/1 1/1to0/1 0/1to0/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car16" depart="16.00"> + <routeDistribution last="0"> + <route cost="53.79" probability="1.00000000" edges="3/0to3/1 3/1to3/2 3/2to3/3 3/3to3/4 3/4to2/4 2/4to1/4 1/4to1/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car17" depart="17.00"> + <routeDistribution last="0"> + <route cost="27.35" probability="1.00000000" edges="1/4to1/3 1/3to1/2 1/2to1/1 1/1to0/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car18" depart="18.00"> + <routeDistribution last="0"> + <route cost="48.53" probability="1.00000000" edges="1/2to1/1 1/1to1/2 1/2to2/2 2/2to3/2 3/2to4/2 4/2to4/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car19" depart="19.00"> + <routeDistribution last="0"> + <route cost="59.01" probability="1.00000000" edges="3/0to4/0 4/0to4/1 4/1to4/2 4/2to4/3 4/3to4/4 4/4to3/4 3/4to2/4 2/4to3/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car20" depart="20.00"> + <routeDistribution last="0"> + <route cost="52.75" probability="1.00000000" edges="1/0to0/0 0/0to0/1 0/1to1/1 1/1to1/2 1/2to2/2 2/2to3/2 3/2to3/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car21" depart="21.00"> + <routeDistribution last="0"> + <route cost="48.77" probability="1.00000000" edges="1/0to0/0 0/0to0/1 0/1to0/2 0/2to0/3 0/3to0/4 0/4to1/4 1/4to2/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car22" depart="22.00"> + <routeDistribution last="0"> + <route cost="44.73" probability="1.00000000" edges="4/4to4/3 4/3to4/2 4/2to4/1 4/1to4/0 4/0to3/0 3/0to4/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car23" depart="23.00"> + <routeDistribution last="0"> + <route cost="34.84" probability="1.00000000" edges="4/0to3/0 3/0to3/1 3/1to3/2 3/2to3/3 3/3to3/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car24" depart="24.00"> + <routeDistribution last="0"> + <route cost="13.35" probability="1.00000000" edges="1/3to1/2 1/2to1/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car25" depart="25.00"> + <routeDistribution last="0"> + <route cost="61.82" probability="1.00000000" edges="1/1to0/1 0/1to1/1 1/1to1/2 1/2to2/2 2/2to2/3 2/3to3/3 3/3to4/3 4/3to3/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car26" depart="26.00"> + <routeDistribution last="0"> + <route cost="58.16" probability="1.00000000" edges="4/1to4/0 4/0to3/0 3/0to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to1/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car27" depart="27.00"> + <routeDistribution last="0"> + <route cost="23.15" probability="1.00000000" edges="3/1to2/1 2/1to2/0 2/0to1/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car28" depart="28.00"> + <routeDistribution last="0"> + <route cost="29.97" probability="1.00000000" edges="4/2to4/1 4/1to3/1 3/1to2/1 2/1to2/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car29" depart="29.00"> + <routeDistribution last="0"> + <route cost="36.83" probability="1.00000000" edges="2/3to2/4 2/4to2/3 2/3to2/2 2/2to1/2 1/2to1/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car30" depart="30.00"> + <routeDistribution last="0"> + <route cost="60.84" probability="1.00000000" edges="2/4to1/4 1/4to2/4 2/4to3/4 3/4to4/4 4/4to4/3 4/3to4/2 4/2to4/1 4/1to4/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car31" depart="31.00"> + <routeDistribution last="0"> + <route cost="37.05" probability="1.00000000" edges="4/4to4/3 4/3to3/3 3/3to3/2 3/2to2/2 2/2to2/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car32" depart="32.00"> + <routeDistribution last="0"> + <route cost="52.41" probability="1.00000000" edges="0/3to0/2 0/2to0/1 0/1to0/0 0/0to1/0 1/0to2/0 2/0to3/0 3/0to3/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car33" depart="33.00"> + <routeDistribution last="0"> + <route cost="52.46" probability="1.00000000" edges="3/3to4/3 4/3to4/2 4/2to4/1 4/1to4/0 4/0to3/0 3/0to2/0 2/0to3/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car34" depart="34.00"> + <routeDistribution last="0"> + <route cost="44.16" probability="1.00000000" edges="0/2to0/1 0/1to0/2 0/2to0/3 0/3to0/4 0/4to1/4 1/4to2/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car35" depart="35.00"> + <routeDistribution last="0"> + <route cost="30.64" probability="1.00000000" edges="4/4to4/3 4/3to3/3 3/3to2/3 2/3to1/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car36" depart="36.00"> + <routeDistribution last="0"> + <route cost="47.88" probability="1.00000000" edges="4/3to4/4 4/4to4/3 4/3to4/2 4/2to4/1 4/1to4/0 4/0to4/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car37" depart="37.00"> + <routeDistribution last="0"> + <route cost="45.74" probability="1.00000000" edges="0/0to0/1 0/1to1/1 1/1to1/2 1/2to2/2 2/2to3/2 3/2to3/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car38" depart="38.00"> + <routeDistribution last="0"> + <route cost="32.23" probability="1.00000000" edges="3/1to3/2 3/2to3/3 3/3to2/3 2/3to1/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car39" depart="39.00"> + <routeDistribution last="0"> + <route cost="36.71" probability="1.00000000" edges="1/2to1/1 1/1to1/0 1/0to2/0 2/0to3/0 3/0to4/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car40" depart="40.00"> + <routeDistribution last="0"> + <route cost="40.15" probability="1.00000000" edges="0/3to0/2 0/2to1/2 1/2to2/2 2/2to2/1 2/1to1/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car41" depart="41.00"> + <routeDistribution last="0"> + <route cost="36.76" probability="1.00000000" edges="2/1to2/2 2/2to3/2 3/2to3/3 3/3to4/3 4/3to4/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car42" depart="42.00"> + <routeDistribution last="0"> + <route cost="50.96" probability="1.00000000" edges="4/1to4/0 4/0to3/0 3/0to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car43" depart="43.00"> + <routeDistribution last="0"> + <route cost="37.82" probability="1.00000000" edges="1/2to2/2 2/2to2/1 2/1to2/0 2/0to3/0 3/0to4/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car44" depart="44.00"> + <routeDistribution last="0"> + <route cost="29.65" probability="1.00000000" edges="3/3to3/4 3/4to3/3 3/3to2/3 2/3to1/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car45" depart="45.00"> + <routeDistribution last="0"> + <route cost="35.95" probability="1.00000000" edges="0/0to0/1 0/1to0/2 0/2to0/3 0/3to1/3 1/3to1/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car46" depart="46.00"> + <routeDistribution last="0"> + <route cost="49.71" probability="1.00000000" edges="0/0to1/0 1/0to2/0 2/0to3/0 3/0to4/0 4/0to4/1 4/1to4/2 4/2to4/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car47" depart="47.00"> + <routeDistribution last="0"> + <route cost="50.06" probability="1.00000000" edges="4/1to4/0 4/0to3/0 3/0to3/1 3/1to3/2 3/2to3/3 3/3to3/4 3/4to4/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car48" depart="48.00"> + <routeDistribution last="0"> + <route cost="32.21" probability="1.00000000" edges="1/3to0/3 0/3to0/2 0/2to0/1 0/1to1/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car49" depart="49.00"> + <routeDistribution last="0"> + <route cost="40.80" probability="1.00000000" edges="4/1to4/0 4/0to4/1 4/1to4/2 4/2to4/3 4/3to3/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car50" depart="50.00"> + <routeDistribution last="0"> + <route cost="54.64" probability="1.00000000" edges="0/2to0/1 0/1to0/2 0/2to1/2 1/2to1/3 1/3to2/3 2/3to3/3 3/3to2/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car51" depart="51.00"> + <routeDistribution last="0"> + <route cost="45.47" probability="1.00000000" edges="3/3to3/2 3/2to2/2 2/2to1/2 1/2to0/2 0/2to0/3 0/3to1/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car52" depart="52.00"> + <routeDistribution last="0"> + <route cost="41.72" probability="1.00000000" edges="1/2to1/1 1/1to2/1 2/1to3/1 3/1to4/1 4/1to3/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car53" depart="53.00"> + <routeDistribution last="0"> + <route cost="39.83" probability="1.00000000" edges="2/0to3/0 3/0to2/0 2/0to1/0 1/0to1/1 1/1to0/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car54" depart="54.00"> + <routeDistribution last="0"> + <route cost="36.46" probability="1.00000000" edges="1/1to0/1 0/1to0/2 0/2to0/3 0/3to1/3 1/3to0/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car55" depart="55.00"> + <routeDistribution last="0"> + <route cost="44.73" probability="1.00000000" edges="4/4to4/3 4/3to4/2 4/2to4/1 4/1to4/0 4/0to3/0 3/0to4/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car56" depart="56.00"> + <routeDistribution last="0"> + <route cost="41.47" probability="1.00000000" edges="0/3to0/4 0/4to1/4 1/4to1/3 1/3to1/2 1/2to1/1 1/1to1/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car57" depart="57.00"> + <routeDistribution last="0"> + <route cost="45.21" probability="1.00000000" edges="0/2to0/1 0/1to0/0 0/0to1/0 1/0to2/0 2/0to3/0 3/0to3/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car58" depart="58.00"> + <routeDistribution last="0"> + <route cost="38.35" probability="1.00000000" edges="1/1to1/2 1/2to2/2 2/2to3/2 3/2to4/2 4/2to3/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car59" depart="59.00"> + <routeDistribution last="0"> + <route cost="58.58" probability="1.00000000" edges="4/0to4/1 4/1to4/2 4/2to3/2 3/2to2/2 2/2to1/2 1/2to0/2 0/2to0/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car60" depart="60.00"> + <routeDistribution last="0"> + <route cost="23.16" probability="1.00000000" edges="1/1to2/1 2/1to3/1 3/1to3/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car61" depart="61.00"> + <routeDistribution last="0"> + <route cost="42.58" probability="1.00000000" edges="1/1to1/0 1/0to0/0 0/0to0/1 0/1to0/2 0/2to0/3 0/3to1/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car62" depart="62.00"> + <routeDistribution last="0"> + <route cost="29.23" probability="1.00000000" edges="2/1to3/1 3/1to3/2 3/2to3/3 3/3to3/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car63" depart="63.00"> + <routeDistribution last="0"> + <route cost="53.79" probability="1.00000000" edges="3/4to2/4 2/4to1/4 1/4to1/3 1/3to1/2 1/2to1/1 1/1to1/0 1/0to2/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car64" depart="64.00"> + <routeDistribution last="0"> + <route cost="30.04" probability="1.00000000" edges="3/2to3/3 3/3to3/2 3/2to3/1 3/1to3/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car65" depart="65.00"> + <routeDistribution last="0"> + <route cost="52.69" probability="1.00000000" edges="4/4to3/4 3/4to2/4 2/4to1/4 1/4to0/4 0/4to0/3 0/3to0/2 0/2to1/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car66" depart="66.00"> + <routeDistribution last="0"> + <route cost="38.65" probability="1.00000000" edges="2/0to2/1 2/1to2/2 2/2to1/2 1/2to1/3 1/3to2/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car67" depart="67.00"> + <routeDistribution last="0"> + <route cost="42.01" probability="1.00000000" edges="4/0to4/1 4/1to3/1 3/1to2/1 2/1to1/1 1/1to2/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car68" depart="68.00"> + <routeDistribution last="0"> + <route cost="44.04" probability="1.00000000" edges="2/0to3/0 3/0to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car69" depart="69.00"> + <routeDistribution last="0"> + <route cost="38.65" probability="1.00000000" edges="1/1to2/1 2/1to3/1 3/1to3/2 3/2to4/2 4/2to4/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car70" depart="70.00"> + <routeDistribution last="0"> + <route cost="29.32" probability="1.00000000" edges="2/1to2/0 2/0to3/0 3/0to4/0 4/0to4/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car71" depart="71.00"> + <routeDistribution last="0"> + <route cost="51.64" probability="1.00000000" edges="2/3to2/4 2/4to2/3 2/3to2/2 2/2to1/2 1/2to1/1 1/1to0/1 0/1to1/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car72" depart="72.00"> + <routeDistribution last="0"> + <route cost="28.32" probability="1.00000000" edges="4/0to3/0 3/0to2/0 2/0to1/0 1/0to0/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car73" depart="73.00"> + <routeDistribution last="0"> + <route cost="22.03" probability="1.00000000" edges="2/2to1/2 1/2to1/1 1/1to1/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car74" depart="74.00"> + <routeDistribution last="0"> + <route cost="30.62" probability="1.00000000" edges="1/4to2/4 2/4to3/4 3/4to4/4 4/4to3/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car75" depart="75.00"> + <routeDistribution last="0"> + <route cost="46.63" probability="1.00000000" edges="1/2to1/1 1/1to1/2 1/2to2/2 2/2to2/3 2/3to3/3 3/3to3/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car76" depart="76.00"> + <routeDistribution last="0"> + <route cost="35.66" probability="1.00000000" edges="2/3to2/4 2/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car77" depart="77.00"> + <routeDistribution last="0"> + <route cost="30.63" probability="1.00000000" edges="0/4to1/4 1/4to1/3 1/3to1/2 1/2to2/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car78" depart="78.00"> + <routeDistribution last="0"> + <route cost="27.84" probability="1.00000000" edges="4/3to4/4 4/4to3/4 3/4to2/4 2/4to1/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car79" depart="79.00"> + <routeDistribution last="0"> + <route cost="25.03" probability="1.00000000" edges="2/3to2/2 2/2to3/2 3/2to4/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car80" depart="80.00"> + <routeDistribution last="0"> + <route cost="46.20" probability="1.00000000" edges="0/1to1/1 1/1to1/2 1/2to2/2 2/2to2/3 2/3to2/4 2/4to1/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car81" depart="81.00"> + <routeDistribution last="0"> + <route cost="51.63" probability="1.00000000" edges="2/2to2/3 2/3to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to4/0 4/0to4/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car82" depart="82.00"> + <routeDistribution last="0"> + <route cost="42.14" probability="1.00000000" edges="0/4to1/4 1/4to2/4 2/4to3/4 3/4to4/4 4/4to4/3 4/3to4/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car83" depart="83.00"> + <routeDistribution last="0"> + <route cost="39.41" probability="1.00000000" edges="2/4to2/3 2/3to2/2 2/2to2/1 2/1to3/1 3/1to3/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car84" depart="84.00"> + <routeDistribution last="0"> + <route cost="32.13" probability="1.00000000" edges="1/1to1/2 1/2to1/3 1/3to0/3 0/3to0/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car85" depart="85.00"> + <routeDistribution last="0"> + <route cost="47.84" probability="1.00000000" edges="4/1to4/2 4/2to4/1 4/1to3/1 3/1to2/1 2/1to1/1 1/1to2/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car86" depart="86.00"> + <routeDistribution last="0"> + <route cost="45.92" probability="1.00000000" edges="2/4to2/3 2/3to2/2 2/2to2/1 2/1to2/0 2/0to3/0 3/0to2/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car87" depart="87.00"> + <routeDistribution last="0"> + <route cost="52.72" probability="1.00000000" edges="2/0to3/0 3/0to2/0 2/0to2/1 2/1to2/2 2/2to2/3 2/3to2/4 2/4to1/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car88" depart="88.00"> + <routeDistribution last="0"> + <route cost="23.53" probability="1.00000000" edges="2/2to3/2 3/2to4/2 4/2to4/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car89" depart="89.00"> + <routeDistribution last="0"> + <route cost="46.64" probability="1.00000000" edges="1/1to0/1 0/1to1/1 1/1to1/2 1/2to2/2 2/2to3/2 3/2to3/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car90" depart="90.00"> + <routeDistribution last="0"> + <route cost="33.71" probability="1.00000000" edges="0/2to0/1 0/1to1/1 1/1to2/1 2/1to2/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car91" depart="91.00"> + <routeDistribution last="0"> + <route cost="24.65" probability="1.00000000" edges="0/2to0/1 0/1to1/1 1/1to1/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car92" depart="92.00"> + <routeDistribution last="0"> + <route cost="48.53" probability="1.00000000" edges="1/2to1/1 1/1to1/2 1/2to2/2 2/2to3/2 3/2to4/2 4/2to4/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car93" depart="93.00"> + <routeDistribution last="0"> + <route cost="35.37" probability="1.00000000" edges="3/4to4/4 4/4to4/3 4/3to3/3 3/3to3/2 3/2to2/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car94" depart="94.00"> + <routeDistribution last="0"> + <route cost="37.26" probability="1.00000000" edges="3/1to2/1 2/1to2/0 2/0to1/0 1/0to0/0 0/0to0/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car95" depart="95.00"> + <routeDistribution last="0"> + <route cost="36.45" probability="1.00000000" edges="3/4to3/3 3/3to2/3 2/3to2/2 2/2to1/2 1/2to2/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car96" depart="96.00"> + <routeDistribution last="0"> + <route cost="43.34" probability="1.00000000" edges="3/1to3/0 3/0to3/1 3/1to3/2 3/2to3/3 3/3to4/3 4/3to3/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car97" depart="97.00"> + <routeDistribution last="0"> + <route cost="39.83" probability="1.00000000" edges="0/3to0/2 0/2to0/3 0/3to1/3 1/3to2/3 2/3to2/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car98" depart="98.00"> + <routeDistribution last="0"> + <route cost="45.54" probability="1.00000000" edges="1/2to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to2/4 2/4to3/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car99" depart="99.00"> + <routeDistribution last="0"> + <route cost="30.35" probability="1.00000000" edges="3/2to3/1 3/1to2/1 2/1to1/1 1/1to0/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car100" depart="100.00"> + <routeDistribution last="0"> + <route cost="40.91" probability="1.00000000" edges="3/0to3/1 3/1to3/2 3/2to2/2 2/2to1/2 1/2to1/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car101" depart="101.00"> + <routeDistribution last="0"> + <route cost="48.95" probability="1.00000000" edges="4/0to3/0 3/0to2/0 2/0to1/0 1/0to0/0 0/0to0/1 0/1to0/2 0/2to1/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car102" depart="102.00"> + <routeDistribution last="0"> + <route cost="44.04" probability="1.00000000" edges="2/0to3/0 3/0to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car103" depart="103.00"> + <routeDistribution last="0"> + <route cost="52.54" probability="1.00000000" edges="0/0to0/1 0/1to1/1 1/1to1/2 1/2to2/2 2/2to2/3 2/3to3/3 3/3to3/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car104" depart="104.00"> + <routeDistribution last="0"> + <route cost="40.92" probability="1.00000000" edges="3/0to3/1 3/1to3/2 3/2to2/2 2/2to1/2 1/2to0/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car105" depart="105.00"> + <routeDistribution last="0"> + <route cost="38.35" probability="1.00000000" edges="3/2to4/2 4/2to3/2 3/2to2/2 2/2to2/3 2/3to2/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car106" depart="106.00"> + <routeDistribution last="0"> + <route cost="30.06" probability="1.00000000" edges="2/1to1/1 1/1to1/0 1/0to0/0 0/0to0/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car107" depart="107.00"> + <routeDistribution last="0"> + <route cost="62.03" probability="1.00000000" edges="0/2to0/3 0/3to1/3 1/3to2/3 2/3to3/3 3/3to4/3 4/3to4/2 4/2to4/1 4/1to4/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car108" depart="108.00"> + <routeDistribution last="0"> + <route cost="32.66" probability="1.00000000" edges="4/2to3/2 3/2to2/2 2/2to2/3 2/3to2/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car109" depart="109.00"> + <routeDistribution last="0"> + <route cost="30.62" probability="1.00000000" edges="3/4to4/4 4/4to3/4 3/4to2/4 2/4to1/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car110" depart="110.00"> + <routeDistribution last="0"> + <route cost="65.23" probability="1.00000000" edges="1/3to0/3 0/3to1/3 1/3to2/3 2/3to3/3 3/3to4/3 4/3to4/2 4/2to4/1 4/1to4/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car111" depart="111.00"> + <routeDistribution last="0"> + <route cost="38.92" probability="1.00000000" edges="3/3to4/3 4/3to4/2 4/2to4/1 4/1to4/0 4/0to4/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car112" depart="112.00"> + <routeDistribution last="0"> + <route cost="48.54" probability="1.00000000" edges="4/1to4/2 4/2to4/1 4/1to3/1 3/1to2/1 2/1to1/1 1/1to0/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car113" depart="113.00"> + <routeDistribution last="0"> + <route cost="43.26" probability="1.00000000" edges="3/3to3/4 3/4to4/4 4/4to4/3 4/3to4/2 4/2to4/1 4/1to4/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car114" depart="114.00"> + <routeDistribution last="0"> + <route cost="51.64" probability="1.00000000" edges="0/4to1/4 1/4to2/4 2/4to3/4 3/4to4/4 4/4to4/3 4/3to4/2 4/2to4/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car115" depart="115.00"> + <routeDistribution last="0"> + <route cost="44.44" probability="1.00000000" edges="4/1to3/1 3/1to3/2 3/2to3/3 3/3to4/3 4/3to4/4 4/4to3/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car116" depart="116.00"> + <routeDistribution last="0"> + <route cost="51.64" probability="1.00000000" edges="3/4to2/4 2/4to3/4 3/4to4/4 4/4to4/3 4/3to4/2 4/2to4/1 4/1to4/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car117" depart="117.00"> + <routeDistribution last="0"> + <route cost="45.40" probability="1.00000000" edges="0/0to1/0 1/0to2/0 2/0to3/0 3/0to3/1 3/1to3/2 3/2to3/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car118" depart="118.00"> + <routeDistribution last="0"> + <route cost="52.46" probability="1.00000000" edges="1/3to1/4 1/4to2/4 2/4to3/4 3/4to4/4 4/4to4/3 4/3to4/2 4/2to4/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car119" depart="119.00"> + <routeDistribution last="0"> + <route cost="50.96" probability="1.00000000" edges="3/4to2/4 2/4to3/4 3/4to4/4 4/4to4/3 4/3to4/2 4/2to4/1 4/1to3/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car120" depart="120.00"> + <routeDistribution last="0"> + <route cost="37.92" probability="1.00000000" edges="3/4to2/4 2/4to1/4 1/4to1/3 1/3to1/2 1/2to1/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car121" depart="121.00"> + <routeDistribution last="0"> + <route cost="43.71" probability="1.00000000" edges="3/3to3/4 3/4to2/4 2/4to1/4 1/4to0/4 0/4to0/3 0/3to0/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car122" depart="122.00"> + <routeDistribution last="0"> + <route cost="58.05" probability="1.00000000" edges="1/1to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to2/4 2/4to3/4 3/4to3/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car123" depart="123.00"> + <routeDistribution last="0"> + <route cost="32.23" probability="1.00000000" edges="2/1to2/2 2/2to2/3 2/3to1/3 1/3to0/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car124" depart="124.00"> + <routeDistribution last="0"> + <route cost="53.43" probability="1.00000000" edges="3/3to4/3 4/3to3/3 3/3to3/2 3/2to2/2 2/2to2/1 2/1to1/1 1/1to1/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car125" depart="125.00"> + <routeDistribution last="0"> + <route cost="13.64" probability="1.00000000" edges="0/0to1/0 1/0to2/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car126" depart="126.00"> + <routeDistribution last="0"> + <route cost="56.97" probability="1.00000000" edges="1/3to1/4 1/4to2/4 2/4to3/4 3/4to4/4 4/4to4/3 4/3to4/2 4/2to4/1 4/1to3/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car127" depart="127.00"> + <routeDistribution last="0"> + <route cost="53.13" probability="1.00000000" edges="4/3to4/4 4/4to3/4 3/4to2/4 2/4to2/3 2/3to2/2 2/2to1/2 1/2to1/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car128" depart="128.00"> + <routeDistribution last="0"> + <route cost="30.62" probability="1.00000000" edges="3/0to4/0 4/0to3/0 3/0to2/0 2/0to1/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car129" depart="129.00"> + <routeDistribution last="0"> + <route cost="30.63" probability="1.00000000" edges="4/4to3/4 3/4to2/4 2/4to2/3 2/3to1/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car130" depart="130.00"> + <routeDistribution last="0"> + <route cost="40.84" probability="1.00000000" edges="4/3to3/3 3/3to2/3 2/3to1/3 1/3to0/3 0/3to0/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car131" depart="131.00"> + <routeDistribution last="0"> + <route cost="65.93" probability="1.00000000" edges="4/3to4/4 4/4to4/3 4/3to4/2 4/2to4/1 4/1to4/0 4/0to3/0 3/0to2/0 2/0to1/0 1/0to1/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car132" depart="132.00"> + <routeDistribution last="0"> + <route cost="52.41" probability="1.00000000" edges="4/3to4/4 4/4to3/4 3/4to2/4 2/4to1/4 1/4to1/3 1/3to1/2 1/2to1/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car133" depart="133.00"> + <routeDistribution last="0"> + <route cost="40.15" probability="1.00000000" edges="0/3to0/2 0/2to1/2 1/2to2/2 2/2to2/1 2/1to1/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car134" depart="134.00"> + <routeDistribution last="0"> + <route cost="33.71" probability="1.00000000" edges="3/2to3/3 3/3to2/3 2/3to1/3 1/3to1/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car135" depart="135.00"> + <routeDistribution last="0"> + <route cost="54.81" probability="1.00000000" edges="0/0to0/1 0/1to1/1 1/1to1/2 1/2to2/2 2/2to3/2 3/2to4/2 4/2to4/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car136" depart="136.00"> + <routeDistribution last="0"> + <route cost="24.65" probability="1.00000000" edges="2/3to2/2 2/2to3/2 3/2to3/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car137" depart="137.00"> + <routeDistribution last="0"> + <route cost="29.95" probability="1.00000000" edges="3/2to4/2 4/2to4/1 4/1to3/1 3/1to3/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car138" depart="138.00"> + <routeDistribution last="0"> + <route cost="28.84" probability="1.00000000" edges="1/4to1/3 1/3to0/3 0/3to0/2 0/2to0/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car139" depart="139.00"> + <routeDistribution last="0"> + <route cost="50.05" probability="1.00000000" edges="3/1to3/0 3/0to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to1/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car140" depart="140.00"> + <routeDistribution last="0"> + <route cost="53.68" probability="1.00000000" edges="1/3to1/2 1/2to1/1 1/1to1/0 1/0to2/0 2/0to3/0 3/0to4/0 4/0to3/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car141" depart="141.00"> + <routeDistribution last="0"> + <route cost="47.34" probability="1.00000000" edges="3/2to3/1 3/1to2/1 2/1to1/1 1/1to1/2 1/2to1/3 1/3to0/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car142" depart="142.00"> + <routeDistribution last="0"> + <route cost="53.54" probability="1.00000000" edges="1/3to0/3 0/3to1/3 1/3to2/3 2/3to2/2 2/2to2/1 2/1to2/0 2/0to2/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car143" depart="143.00"> + <routeDistribution last="0"> + <route cost="31.45" probability="1.00000000" edges="2/0to2/1 2/1to1/1 1/1to1/2 1/2to2/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car144" depart="144.00"> + <routeDistribution last="0"> + <route cost="44.73" probability="1.00000000" edges="0/3to1/3 1/3to1/2 1/2to1/1 1/1to1/0 1/0to2/0 2/0to3/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car145" depart="145.00"> + <routeDistribution last="0"> + <route cost="30.34" probability="1.00000000" edges="4/2to3/2 3/2to3/1 3/1to3/0 3/0to2/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car146" depart="146.00"> + <routeDistribution last="0"> + <route cost="29.13" probability="1.00000000" edges="0/0to0/1 0/1to1/1 1/1to1/2 1/2to1/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car147" depart="147.00"> + <routeDistribution last="0"> + <route cost="45.83" probability="1.00000000" edges="2/1to1/1 1/1to1/2 1/2to1/3 1/3to2/3 2/3to2/4 2/4to1/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car148" depart="148.00"> + <routeDistribution last="0"> + <route cost="57.64" probability="1.00000000" edges="3/3to4/3 4/3to4/2 4/2to4/1 4/1to4/0 4/0to3/0 3/0to2/0 2/0to1/0 1/0to0/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car149" depart="149.00"> + <routeDistribution last="0"> + <route cost="40.15" probability="1.00000000" edges="0/2to0/3 0/3to1/3 1/3to2/3 2/3to2/2 2/2to3/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car150" depart="150.00"> + <routeDistribution last="0"> + <route cost="47.73" probability="1.00000000" edges="3/0to3/1 3/1to3/2 3/2to2/2 2/2to1/2 1/2to1/3 1/3to1/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car151" depart="151.00"> + <routeDistribution last="0"> + <route cost="37.96" probability="1.00000000" edges="3/1to3/0 3/0to2/0 2/0to1/0 1/0to1/1 1/1to1/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car152" depart="152.00"> + <routeDistribution last="0"> + <route cost="51.64" probability="1.00000000" edges="4/0to3/0 3/0to2/0 2/0to1/0 1/0to0/0 0/0to0/1 0/1to0/2 0/2to0/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car153" depart="153.00"> + <routeDistribution last="0"> + <route cost="30.34" probability="1.00000000" edges="1/0to2/0 2/0to3/0 3/0to3/1 3/1to4/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car154" depart="154.00"> + <routeDistribution last="0"> + <route cost="37.26" probability="1.00000000" edges="3/1to2/1 2/1to2/0 2/0to1/0 1/0to0/0 0/0to0/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car155" depart="155.00"> + <routeDistribution last="0"> + <route cost="40.15" probability="1.00000000" edges="0/3to0/2 0/2to1/2 1/2to2/2 2/2to2/1 2/1to1/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car156" depart="156.00"> + <routeDistribution last="0"> + <route cost="52.25" probability="1.00000000" edges="1/0to1/1 1/1to2/1 2/1to2/2 2/2to3/2 3/2to3/3 3/3to4/3 4/3to4/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car157" depart="157.00"> + <routeDistribution last="0"> + <route cost="38.77" probability="1.00000000" edges="1/1to2/1 2/1to3/1 3/1to4/1 4/1to4/0 4/0to3/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car158" depart="158.00"> + <routeDistribution last="0"> + <route cost="37.52" probability="1.00000000" edges="2/1to2/2 2/2to3/2 3/2to3/3 3/3to3/4 3/4to2/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car159" depart="159.00"> + <routeDistribution last="0"> + <route cost="50.96" probability="1.00000000" edges="3/1to3/0 3/0to3/1 3/1to3/2 3/2to3/3 3/3to3/4 3/4to4/4 4/4to4/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car160" depart="160.00"> + <routeDistribution last="0"> + <route cost="33.34" probability="1.00000000" edges="2/4to2/3 2/3to3/3 3/3to4/3 4/3to4/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car161" depart="161.00"> + <routeDistribution last="0"> + <route cost="36.96" probability="1.00000000" edges="4/1to4/2 4/2to4/1 4/1to4/0 4/0to3/0 3/0to2/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car162" depart="162.00"> + <routeDistribution last="0"> + <route cost="37.26" probability="1.00000000" edges="3/4to4/4 4/4to4/3 4/3to3/3 3/3to2/3 2/3to2/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car163" depart="163.00"> + <routeDistribution last="0"> + <route cost="41.33" probability="1.00000000" edges="2/1to3/1 3/1to2/1 2/1to1/1 1/1to1/2 1/2to0/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car164" depart="164.00"> + <routeDistribution last="0"> + <route cost="30.63" probability="1.00000000" edges="1/1to2/1 2/1to2/0 2/0to3/0 3/0to4/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car165" depart="165.00"> + <routeDistribution last="0"> + <route cost="40.91" probability="1.00000000" edges="3/0to3/1 3/1to3/2 3/2to2/2 2/2to1/2 1/2to1/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car166" depart="166.00"> + <routeDistribution last="0"> + <route cost="44.44" probability="1.00000000" edges="2/3to2/2 2/2to1/2 1/2to1/3 1/3to1/4 1/4to0/4 0/4to0/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car167" depart="167.00"> + <routeDistribution last="0"> + <route cost="40.15" probability="1.00000000" edges="1/1to1/2 1/2to2/2 2/2to3/2 3/2to3/1 3/1to4/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car168" depart="168.00"> + <routeDistribution last="0"> + <route cost="32.23" probability="1.00000000" edges="3/2to2/2 2/2to1/2 1/2to0/2 0/2to0/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car169" depart="169.00"> + <routeDistribution last="0"> + <route cost="30.04" probability="1.00000000" edges="2/0to2/1 2/1to2/2 2/2to2/3 2/3to2/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car170" depart="170.00"> + <routeDistribution last="0"> + <route cost="39.83" probability="1.00000000" edges="2/0to3/0 3/0to2/0 2/0to1/0 1/0to1/1 1/1to0/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car171" depart="171.00"> + <routeDistribution last="0"> + <route cost="38.02" probability="1.00000000" edges="2/0to3/0 3/0to4/0 4/0to4/1 4/1to4/2 4/2to3/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car172" depart="172.00"> + <routeDistribution last="0"> + <route cost="54.22" probability="1.00000000" edges="2/4to1/4 1/4to2/4 2/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to4/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car173" depart="173.00"> + <routeDistribution last="0"> + <route cost="39.69" probability="1.00000000" edges="4/0to4/1 4/1to4/2 4/2to4/3 4/3to3/3 3/3to3/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car174" depart="174.00"> + <routeDistribution last="0"> + <route cost="56.97" probability="1.00000000" edges="1/4to2/4 2/4to2/3 2/3to2/2 2/2to2/1 2/1to2/0 2/0to1/0 1/0to0/0 0/0to0/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car175" depart="175.00"> + <routeDistribution last="0"> + <route cost="30.33" probability="1.00000000" edges="4/0to4/1 4/1to4/2 4/2to4/3 4/3to4/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car176" depart="176.00"> + <routeDistribution last="0"> + <route cost="30.34" probability="1.00000000" edges="2/0to3/0 3/0to3/1 3/1to3/2 3/2to4/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car177" depart="177.00"> + <routeDistribution last="0"> + <route cost="23.82" probability="1.00000000" edges="2/1to1/1 1/1to0/1 0/1to0/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car178" depart="178.00"> + <routeDistribution last="0"> + <route cost="52.35" probability="1.00000000" edges="1/3to1/4 1/4to2/4 2/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to3/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car179" depart="179.00"> + <routeDistribution last="0"> + <route cost="31.44" probability="1.00000000" edges="2/0to2/1 2/1to2/0 2/0to1/0 1/0to0/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car180" depart="180.00"> + <routeDistribution last="0"> + <route cost="53.85" probability="1.00000000" edges="2/1to3/1 3/1to2/1 2/1to1/1 1/1to0/1 0/1to0/2 0/2to0/3 0/3to1/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car181" depart="181.00"> + <routeDistribution last="0"> + <route cost="37.25" probability="1.00000000" edges="3/0to2/0 2/0to1/0 1/0to0/0 0/0to0/1 0/1to0/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car182" depart="182.00"> + <routeDistribution last="0"> + <route cost="42.46" probability="1.00000000" edges="2/0to1/0 1/0to1/1 1/1to1/2 1/2to2/2 2/2to2/3 2/3to3/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car183" depart="183.00"> + <routeDistribution last="0"> + <route cost="35.32" probability="1.00000000" edges="0/1to0/0 0/0to1/0 1/0to2/0 2/0to3/0 3/0to4/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car184" depart="184.00"> + <routeDistribution last="0"> + <route cost="39.85" probability="1.00000000" edges="0/3to1/3 1/3to2/3 2/3to2/2 2/2to2/1 2/1to2/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car185" depart="185.00"> + <routeDistribution last="0"> + <route cost="37.53" probability="1.00000000" edges="0/1to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to2/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car186" depart="186.00"> + <routeDistribution last="0"> + <route cost="37.15" probability="1.00000000" edges="1/1to0/1 0/1to0/2 0/2to0/3 0/3to1/3 1/3to1/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car187" depart="187.00"> + <routeDistribution last="0"> + <route cost="46.13" probability="1.00000000" edges="0/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to2/3 2/3to2/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car188" depart="188.00"> + <routeDistribution last="0"> + <route cost="38.64" probability="1.00000000" edges="4/4to4/3 4/3to3/3 3/3to2/3 2/3to1/3 1/3to2/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car189" depart="189.00"> + <routeDistribution last="0"> + <route cost="37.15" probability="1.00000000" edges="3/1to2/1 2/1to2/2 2/2to2/3 2/3to3/3 3/3to3/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car190" depart="190.00"> + <routeDistribution last="0"> + <route cost="36.46" probability="1.00000000" edges="3/1to2/1 2/1to2/2 2/2to2/3 2/3to3/3 3/3to2/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car191" depart="191.00"> + <routeDistribution last="0"> + <route cost="54.22" probability="1.00000000" edges="4/3to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to2/0 2/0to1/0 1/0to2/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car192" depart="192.00"> + <routeDistribution last="0"> + <route cost="51.36" probability="1.00000000" edges="0/0to1/0 1/0to0/0 0/0to0/1 0/1to0/2 0/2to0/3 0/3to0/4 0/4to1/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car193" depart="193.00"> + <routeDistribution last="0"> + <route cost="46.24" probability="1.00000000" edges="0/3to1/3 1/3to2/3 2/3to3/3 3/3to3/2 3/2to3/1 3/1to3/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car194" depart="194.00"> + <routeDistribution last="0"> + <route cost="45.44" probability="1.00000000" edges="2/3to3/3 3/3to3/2 3/2to2/2 2/2to2/1 2/1to1/1 1/1to1/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car195" depart="195.00"> + <routeDistribution last="0"> + <route cost="55.97" probability="1.00000000" edges="1/0to0/0 0/0to0/1 0/1to0/2 0/2to0/3 0/3to0/4 0/4to1/4 1/4to2/4 2/4to3/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car196" depart="196.00"> + <routeDistribution last="0"> + <route cost="56.03" probability="1.00000000" edges="3/2to4/2 4/2to3/2 3/2to2/2 2/2to1/2 1/2to0/2 0/2to0/3 0/3to0/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car197" depart="197.00"> + <routeDistribution last="0"> + <route cost="20.83" probability="1.00000000" edges="0/3to0/2 0/2to0/1 0/1to0/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car198" depart="198.00"> + <routeDistribution last="0"> + <route cost="56.54" probability="1.00000000" edges="1/3to0/3 0/3to1/3 1/3to2/3 2/3to3/3 3/3to3/2 3/2to3/1 3/1to3/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car199" depart="199.00"> + <routeDistribution last="0"> + <route cost="41.85" probability="1.00000000" edges="4/3to4/2 4/2to4/1 4/1to4/0 4/0to3/0 3/0to2/0 2/0to1/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car200" depart="200.00"> + <routeDistribution last="0"> + <route cost="45.86" probability="1.00000000" edges="3/2to3/1 3/1to2/1 2/1to1/1 1/1to0/1 0/1to0/2 0/2to0/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car201" depart="201.00"> + <routeDistribution last="0"> + <route cost="48.16" probability="1.00000000" edges="0/3to0/2 0/2to0/3 0/3to1/3 1/3to2/3 2/3to3/3 3/3to3/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car202" depart="202.00"> + <routeDistribution last="0"> + <route cost="52.01" probability="1.00000000" edges="4/0to4/1 4/1to4/2 4/2to4/3 4/3to4/4 4/4to3/4 3/4to2/4 2/4to3/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car203" depart="203.00"> + <routeDistribution last="0"> + <route cost="44.73" probability="1.00000000" edges="0/3to0/4 0/4to1/4 1/4to2/4 2/4to3/4 3/4to4/4 4/4to3/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car204" depart="204.00"> + <routeDistribution last="0"> + <route cost="36.85" probability="1.00000000" edges="2/1to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to1/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car205" depart="205.00"> + <routeDistribution last="0"> + <route cost="42.83" probability="1.00000000" edges="4/0to3/0 3/0to3/1 3/1to3/2 3/2to3/3 3/3to3/4 3/4to3/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car206" depart="206.00"> + <routeDistribution last="0"> + <route cost="56.85" probability="1.00000000" edges="0/3to0/2 0/2to0/3 0/3to1/3 1/3to2/3 2/3to3/3 3/3to4/3 4/3to4/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car207" depart="207.00"> + <routeDistribution last="0"> + <route cost="36.34" probability="1.00000000" edges="3/0to3/1 3/1to3/2 3/2to3/3 3/3to3/4 3/4to4/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car208" depart="208.00"> + <routeDistribution last="0"> + <route cost="21.65" probability="1.00000000" edges="3/2to2/2 2/2to2/1 2/1to1/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car209" depart="209.00"> + <routeDistribution last="0"> + <route cost="21.93" probability="1.00000000" edges="3/2to3/3 3/3to4/3 4/3to4/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car210" depart="210.00"> + <routeDistribution last="0"> + <route cost="55.04" probability="1.00000000" edges="1/2to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to2/4 2/4to3/4 3/4to2/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car211" depart="211.00"> + <routeDistribution last="0"> + <route cost="38.32" probability="1.00000000" edges="2/1to1/1 1/1to2/1 2/1to2/2 2/2to3/2 3/2to3/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car212" depart="212.00"> + <routeDistribution last="0"> + <route cost="43.71" probability="1.00000000" edges="1/2to1/1 1/1to1/0 1/0to2/0 2/0to3/0 3/0to4/0 4/0to4/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car213" depart="213.00"> + <routeDistribution last="0"> + <route cost="61.07" probability="1.00000000" edges="3/4to4/4 4/4to4/3 4/3to3/3 3/3to3/2 3/2to2/2 2/2to1/2 1/2to0/2 0/2to0/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car214" depart="214.00"> + <routeDistribution last="0"> + <route cost="41.08" probability="1.00000000" edges="4/1to4/0 4/0to3/0 3/0to2/0 2/0to1/0 1/0to1/1 1/1to2/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car215" depart="215.00"> + <routeDistribution last="0"> + <route cost="45.16" probability="1.00000000" edges="2/1to3/1 3/1to2/1 2/1to2/2 2/2to2/3 2/3to2/4 2/4to3/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car216" depart="216.00"> + <routeDistribution last="0"> + <route cost="51.42" probability="1.00000000" edges="1/4to2/4 2/4to2/3 2/3to2/2 2/2to1/2 1/2to1/1 1/1to0/1 0/1to0/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car217" depart="217.00"> + <routeDistribution last="0"> + <route cost="44.06" probability="1.00000000" edges="4/0to4/1 4/1to4/0 4/0to3/0 3/0to2/0 2/0to1/0 1/0to1/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car218" depart="218.00"> + <routeDistribution last="0"> + <route cost="53.82" probability="1.00000000" edges="1/1to0/1 0/1to1/1 1/1to1/2 1/2to2/2 2/2to2/3 2/3to3/3 3/3to4/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car219" depart="219.00"> + <routeDistribution last="0"> + <route cost="46.53" probability="1.00000000" edges="1/3to2/3 2/3to3/3 3/3to4/3 4/3to4/2 4/2to4/1 4/1to4/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car220" depart="220.00"> + <routeDistribution last="0"> + <route cost="23.16" probability="1.00000000" edges="3/2to2/2 2/2to1/2 1/2to1/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car221" depart="221.00"> + <routeDistribution last="0"> + <route cost="60.92" probability="1.00000000" edges="0/0to0/1 0/1to1/1 1/1to1/2 1/2to2/2 2/2to2/3 2/3to3/3 3/3to4/3 4/3to3/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car222" depart="222.00"> + <routeDistribution last="0"> + <route cost="45.86" probability="1.00000000" edges="0/2to0/3 0/3to1/3 1/3to2/3 2/3to3/3 3/3to3/2 3/2to3/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car223" depart="223.00"> + <routeDistribution last="0"> + <route cost="37.95" probability="1.00000000" edges="2/2to2/1 2/1to2/2 2/2to3/2 3/2to3/3 3/3to4/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car224" depart="224.00"> + <routeDistribution last="0"> + <route cost="21.66" probability="1.00000000" edges="0/2to1/2 1/2to1/1 1/1to1/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car225" depart="225.00"> + <routeDistribution last="0"> + <route cost="57.22" probability="1.00000000" edges="3/1to4/1 4/1to3/1 3/1to2/1 2/1to1/1 1/1to1/2 1/2to1/3 1/3to0/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car226" depart="226.00"> + <routeDistribution last="0"> + <route cost="47.03" probability="1.00000000" edges="2/4to1/4 1/4to2/4 2/4to2/3 2/3to2/2 2/2to2/1 2/1to3/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car227" depart="227.00"> + <routeDistribution last="0"> + <route cost="36.46" probability="1.00000000" edges="2/3to1/3 1/3to2/3 2/3to2/2 2/2to2/1 2/1to1/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car228" depart="228.00"> + <routeDistribution last="0"> + <route cost="47.04" probability="1.00000000" edges="3/2to4/2 4/2to3/2 3/2to2/2 2/2to1/2 1/2to1/3 1/3to1/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car229" depart="229.00"> + <routeDistribution last="0"> + <route cost="23.53" probability="1.00000000" edges="3/2to2/2 2/2to1/2 1/2to1/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car230" depart="230.00"> + <routeDistribution last="0"> + <route cost="21.95" probability="1.00000000" edges="1/2to0/2 0/2to0/3 0/3to0/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car231" depart="231.00"> + <routeDistribution last="0"> + <route cost="51.64" probability="1.00000000" edges="1/0to2/0 2/0to1/0 1/0to0/0 0/0to0/1 0/1to0/2 0/2to0/3 0/3to0/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car232" depart="232.00"> + <routeDistribution last="0"> + <route cost="38.62" probability="1.00000000" edges="4/4to3/4 3/4to3/3 3/3to3/2 3/2to2/2 2/2to3/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car233" depart="233.00"> + <routeDistribution last="0"> + <route cost="29.66" probability="1.00000000" edges="1/0to2/0 2/0to1/0 1/0to1/1 1/1to1/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car234" depart="234.00"> + <routeDistribution last="0"> + <route cost="22.03" probability="1.00000000" edges="2/3to1/3 1/3to1/2 1/2to1/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car235" depart="235.00"> + <routeDistribution last="0"> + <route cost="38.74" probability="1.00000000" edges="4/3to4/4 4/4to3/4 3/4to3/3 3/3to2/3 2/3to2/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car236" depart="236.00"> + <routeDistribution last="0"> + <route cost="62.55" probability="1.00000000" edges="3/1to4/1 4/1to3/1 3/1to2/1 2/1to1/1 1/1to0/1 0/1to0/2 0/2to0/3 0/3to1/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car237" depart="237.00"> + <routeDistribution last="0"> + <route cost="32.66" probability="1.00000000" edges="4/1to3/1 3/1to2/1 2/1to2/2 2/2to2/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car238" depart="238.00"> + <routeDistribution last="0"> + <route cost="37.16" probability="1.00000000" edges="4/1to3/1 3/1to2/1 2/1to2/2 2/2to2/3 2/3to3/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car239" depart="239.00"> + <routeDistribution last="0"> + <route cost="30.34" probability="1.00000000" edges="4/3to3/3 3/3to2/3 2/3to2/2 2/2to1/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car240" depart="240.00"> + <routeDistribution last="0"> + <route cost="42.86" probability="1.00000000" edges="3/4to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to2/0 2/0to2/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car241" depart="241.00"> + <routeDistribution last="0"> + <route cost="45.21" probability="1.00000000" edges="0/2to0/1 0/1to0/0 0/0to1/0 1/0to2/0 2/0to3/0 3/0to3/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car242" depart="242.00"> + <routeDistribution last="0"> + <route cost="45.20" probability="1.00000000" edges="0/1to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to0/4 0/4to0/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car243" depart="243.00"> + <routeDistribution last="0"> + <route cost="31.54" probability="1.00000000" edges="2/3to3/3 3/3to2/3 2/3to1/3 1/3to0/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car244" depart="244.00"> + <routeDistribution last="0"> + <route cost="47.93" probability="1.00000000" edges="4/4to4/3 4/3to3/3 3/3to2/3 2/3to1/3 1/3to0/3 0/3to0/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car245" depart="245.00"> + <routeDistribution last="0"> + <route cost="53.43" probability="1.00000000" edges="3/3to4/3 4/3to3/3 3/3to3/2 3/2to2/2 2/2to2/1 2/1to1/1 1/1to1/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car246" depart="246.00"> + <routeDistribution last="0"> + <route cost="29.32" probability="1.00000000" edges="2/1to2/0 2/0to3/0 3/0to4/0 4/0to4/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car247" depart="247.00"> + <routeDistribution last="0"> + <route cost="39.34" probability="1.00000000" edges="4/4to4/3 4/3to3/3 3/3to2/3 2/3to1/3 1/3to0/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car248" depart="248.00"> + <routeDistribution last="0"> + <route cost="42.86" probability="1.00000000" edges="3/0to2/0 2/0to2/1 2/1to2/2 2/2to2/3 2/3to2/4 2/4to3/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car249" depart="249.00"> + <routeDistribution last="0"> + <route cost="53.16" probability="1.00000000" edges="3/1to2/1 2/1to1/1 1/1to0/1 0/1to0/2 0/2to0/3 0/3to0/4 0/4to1/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car250" depart="250.00"> + <routeDistribution last="0"> + <route cost="27.47" probability="1.00000000" edges="1/0to0/0 0/0to0/1 0/1to0/2 0/2to0/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car251" depart="251.00"> + <routeDistribution last="0"> + <route cost="30.63" probability="1.00000000" edges="0/0to0/1 0/1to1/1 1/1to2/1 2/1to2/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car252" depart="252.00"> + <routeDistribution last="0"> + <route cost="28.15" probability="1.00000000" edges="2/4to2/3 2/3to2/2 2/2to1/2 1/2to2/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car253" depart="253.00"> + <routeDistribution last="0"> + <route cost="42.58" probability="1.00000000" edges="3/3to4/3 4/3to4/2 4/2to4/1 4/1to4/0 4/0to3/0 3/0to3/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car254" depart="254.00"> + <routeDistribution last="0"> + <route cost="38.32" probability="1.00000000" edges="3/1to2/1 2/1to3/1 3/1to3/2 3/2to4/2 4/2to4/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car255" depart="255.00"> + <routeDistribution last="0"> + <route cost="30.82" probability="1.00000000" edges="3/0to4/0 4/0to4/1 4/1to4/2 4/2to3/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car256" depart="256.00"> + <routeDistribution last="0"> + <route cost="59.49" probability="1.00000000" edges="3/4to4/4 4/4to3/4 3/4to2/4 2/4to1/4 1/4to0/4 0/4to0/3 0/3to0/2 0/2to0/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car257" depart="257.00"> + <routeDistribution last="0"> + <route cost="42.27" probability="1.00000000" edges="1/0to0/0 0/0to0/1 0/1to0/2 0/2to0/3 0/3to1/3 1/3to0/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car258" depart="258.00"> + <routeDistribution last="0"> + <route cost="38.64" probability="1.00000000" edges="1/2to2/2 2/2to1/2 1/2to0/2 0/2to0/3 0/3to0/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car259" depart="259.00"> + <routeDistribution last="0"> + <route cost="29.95" probability="1.00000000" edges="4/3to3/3 3/3to3/2 3/2to2/2 2/2to2/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car260" depart="260.00"> + <routeDistribution last="0"> + <route cost="37.16" probability="1.00000000" edges="2/2to2/1 2/1to1/1 1/1to0/1 0/1to0/2 0/2to0/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car261" depart="261.00"> + <routeDistribution last="0"> + <route cost="47.34" probability="1.00000000" edges="0/2to1/2 1/2to2/2 2/2to2/3 2/3to3/3 3/3to4/3 4/3to4/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car262" depart="262.00"> + <routeDistribution last="0"> + <route cost="30.62" probability="1.00000000" edges="3/4to4/4 4/4to3/4 3/4to2/4 2/4to1/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car263" depart="263.00"> + <routeDistribution last="0"> + <route cost="45.16" probability="1.00000000" edges="3/1to3/0 3/0to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car264" depart="264.00"> + <routeDistribution last="0"> + <route cost="45.14" probability="1.00000000" edges="0/1to0/2 0/2to1/2 1/2to1/3 1/3to2/3 2/3to3/3 3/3to2/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car265" depart="265.00"> + <routeDistribution last="0"> + <route cost="41.47" probability="1.00000000" edges="4/2to4/1 4/1to4/0 4/0to3/0 3/0to2/0 2/0to1/0 1/0to1/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car266" depart="266.00"> + <routeDistribution last="0"> + <route cost="59.23" probability="1.00000000" edges="2/4to1/4 1/4to2/4 2/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to3/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car267" depart="267.00"> + <routeDistribution last="0"> + <route cost="53.04" probability="1.00000000" edges="1/3to1/4 1/4to2/4 2/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to4/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car268" depart="268.00"> + <routeDistribution last="0"> + <route cost="38.33" probability="1.00000000" edges="1/2to2/2 2/2to3/2 3/2to3/3 3/3to4/3 4/3to3/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car269" depart="269.00"> + <routeDistribution last="0"> + <route cost="48.82" probability="1.00000000" edges="1/3to1/2 1/2to1/3 1/3to2/3 2/3to3/3 3/3to4/3 4/3to4/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car270" depart="270.00"> + <routeDistribution last="0"> + <route cost="20.16" probability="1.00000000" edges="2/0to2/1 2/1to2/2 2/2to3/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car271" depart="271.00"> + <routeDistribution last="0"> + <route cost="35.94" probability="1.00000000" edges="4/4to4/3 4/3to3/3 3/3to3/2 3/2to3/1 3/1to2/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car272" depart="272.00"> + <routeDistribution last="0"> + <route cost="29.23" probability="1.00000000" edges="2/3to2/2 2/2to2/1 2/1to2/0 2/0to3/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car273" depart="273.00"> + <routeDistribution last="0"> + <route cost="53.01" probability="1.00000000" edges="1/0to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to0/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car274" depart="274.00"> + <routeDistribution last="0"> + <route cost="44.84" probability="1.00000000" edges="3/3to2/3 2/3to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to3/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car275" depart="275.00"> + <routeDistribution last="0"> + <route cost="37.13" probability="1.00000000" edges="3/3to2/3 2/3to2/2 2/2to1/2 1/2to1/1 1/1to0/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car276" depart="276.00"> + <routeDistribution last="0"> + <route cost="33.71" probability="1.00000000" edges="2/3to2/2 2/2to3/2 3/2to4/2 4/2to4/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car277" depart="277.00"> + <routeDistribution last="0"> + <route cost="29.65" probability="1.00000000" edges="2/1to2/0 2/0to2/1 2/1to3/1 3/1to4/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car278" depart="278.00"> + <routeDistribution last="0"> + <route cost="51.36" probability="1.00000000" edges="0/3to0/4 0/4to1/4 1/4to2/4 2/4to3/4 3/4to4/4 4/4to4/3 4/3to4/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car279" depart="279.00"> + <routeDistribution last="0"> + <route cost="50.45" probability="1.00000000" edges="2/4to3/4 3/4to3/3 3/3to3/2 3/2to2/2 2/2to2/1 2/1to1/1 1/1to2/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car280" depart="280.00"> + <routeDistribution last="0"> + <route cost="29.94" probability="1.00000000" edges="0/4to1/4 1/4to2/4 2/4to2/3 2/3to2/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car281" depart="281.00"> + <routeDistribution last="0"> + <route cost="20.83" probability="1.00000000" edges="4/4to4/3 4/3to4/2 4/2to4/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car282" depart="282.00"> + <routeDistribution last="0"> + <route cost="40.82" probability="1.00000000" edges="2/1to2/2 2/2to2/3 2/3to1/3 1/3to0/3 0/3to0/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car283" depart="283.00"> + <routeDistribution last="0"> + <route cost="44.05" probability="1.00000000" edges="3/4to4/4 4/4to4/3 4/3to3/3 3/3to3/2 3/2to2/2 2/2to2/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car284" depart="284.00"> + <routeDistribution last="0"> + <route cost="53.03" probability="1.00000000" edges="1/2to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to2/4 2/4to3/4 3/4to4/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car285" depart="285.00"> + <routeDistribution last="0"> + <route cost="53.01" probability="1.00000000" edges="4/4to3/4 3/4to2/4 2/4to2/3 2/3to2/2 2/2to2/1 2/1to1/1 1/1to2/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car286" depart="286.00"> + <routeDistribution last="0"> + <route cost="37.16" probability="1.00000000" edges="4/2to4/1 4/1to3/1 3/1to2/1 2/1to2/2 2/2to2/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car287" depart="287.00"> + <routeDistribution last="0"> + <route cost="30.35" probability="1.00000000" edges="1/2to1/3 1/3to2/3 2/3to3/3 3/3to4/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car288" depart="288.00"> + <routeDistribution last="0"> + <route cost="35.03" probability="1.00000000" edges="2/0to3/0 3/0to4/0 4/0to4/1 4/1to4/2 4/2to4/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car289" depart="289.00"> + <routeDistribution last="0"> + <route cost="36.96" probability="1.00000000" edges="2/4to1/4 1/4to2/4 2/4to3/4 3/4to4/4 4/4to4/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car290" depart="290.00"> + <routeDistribution last="0"> + <route cost="51.63" probability="1.00000000" edges="2/2to2/1 2/1to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to0/4 0/4to0/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car291" depart="291.00"> + <routeDistribution last="0"> + <route cost="30.34" probability="1.00000000" edges="1/0to2/0 2/0to3/0 3/0to3/1 3/1to4/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car292" depart="292.00"> + <routeDistribution last="0"> + <route cost="60.24" probability="1.00000000" edges="3/3to3/4 3/4to3/3 3/3to2/3 2/3to2/2 2/2to1/2 1/2to1/1 1/1to0/1 0/1to0/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car293" depart="293.00"> + <routeDistribution last="0"> + <route cost="43.73" probability="1.00000000" edges="3/1to3/0 3/0to3/1 3/1to3/2 3/2to3/3 3/3to3/4 3/4to3/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car294" depart="294.00"> + <routeDistribution last="0"> + <route cost="38.21" probability="1.00000000" edges="4/4to3/4 3/4to2/4 2/4to2/3 2/3to2/2 2/2to2/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car295" depart="295.00"> + <routeDistribution last="0"> + <route cost="45.21" probability="1.00000000" edges="0/1to0/0 0/0to1/0 1/0to2/0 2/0to2/1 2/1to2/2 2/2to2/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car296" depart="296.00"> + <routeDistribution last="0"> + <route cost="47.34" probability="1.00000000" edges="2/4to2/3 2/3to2/2 2/2to3/2 3/2to4/2 4/2to4/1 4/1to3/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car297" depart="297.00"> + <routeDistribution last="0"> + <route cost="23.53" probability="1.00000000" edges="4/1to3/1 3/1to2/1 2/1to2/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car298" depart="298.00"> + <routeDistribution last="0"> + <route cost="53.16" probability="1.00000000" edges="3/1to2/1 2/1to1/1 1/1to0/1 0/1to0/2 0/2to0/3 0/3to0/4 0/4to1/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car299" depart="299.00"> + <routeDistribution last="0"> + <route cost="37.81" probability="1.00000000" edges="2/1to3/1 3/1to3/2 3/2to4/2 4/2to4/3 4/3to4/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car300" depart="300.00"> + <routeDistribution last="0"> + <route cost="40.53" probability="1.00000000" edges="1/3to2/3 2/3to3/3 3/3to3/2 3/2to3/1 3/1to4/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car301" depart="301.00"> + <routeDistribution last="0"> + <route cost="28.45" probability="1.00000000" edges="1/4to2/4 2/4to2/3 2/3to1/3 1/3to1/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car302" depart="302.00"> + <routeDistribution last="0"> + <route cost="41.21" probability="1.00000000" edges="4/1to3/1 3/1to2/1 2/1to1/1 1/1to0/1 0/1to0/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car303" depart="303.00"> + <routeDistribution last="0"> + <route cost="45.21" probability="1.00000000" edges="0/2to0/1 0/1to0/0 0/0to1/0 1/0to2/0 2/0to3/0 3/0to3/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car304" depart="304.00"> + <routeDistribution last="0"> + <route cost="38.33" probability="1.00000000" edges="3/2to4/2 4/2to3/2 3/2to3/1 3/1to2/1 2/1to1/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car305" depart="305.00"> + <routeDistribution last="0"> + <route cost="47.04" probability="1.00000000" edges="0/2to1/2 1/2to2/2 2/2to3/2 3/2to3/1 3/1to3/0 3/0to3/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car306" depart="306.00"> + <routeDistribution last="0"> + <route cost="23.53" probability="1.00000000" edges="4/1to3/1 3/1to2/1 2/1to2/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car307" depart="307.00"> + <routeDistribution last="0"> + <route cost="45.84" probability="1.00000000" edges="0/1to0/2 0/2to1/2 1/2to1/3 1/3to2/3 2/3to3/3 3/3to4/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car308" depart="308.00"> + <routeDistribution last="0"> + <route cost="14.85" probability="1.00000000" edges="2/3to3/3 3/3to4/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car309" depart="309.00"> + <routeDistribution last="0"> + <route cost="27.47" probability="1.00000000" edges="1/0to0/0 0/0to0/1 0/1to0/2 0/2to0/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car310" depart="310.00"> + <routeDistribution last="0"> + <route cost="23.15" probability="1.00000000" edges="4/1to3/1 3/1to3/0 3/0to2/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car311" depart="311.00"> + <routeDistribution last="0"> + <route cost="38.65" probability="1.00000000" edges="1/1to2/1 2/1to3/1 3/1to3/2 3/2to4/2 4/2to4/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car312" depart="312.00"> + <routeDistribution last="0"> + <route cost="48.39" probability="1.00000000" edges="0/4to0/3 0/3to0/2 0/2to0/1 0/1to1/1 1/1to2/1 2/1to2/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car313" depart="313.00"> + <routeDistribution last="0"> + <route cost="58.83" probability="1.00000000" edges="0/0to0/1 0/1to0/2 0/2to0/3 0/3to0/4 0/4to1/4 1/4to2/4 2/4to3/4 3/4to2/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car314" depart="314.00"> + <routeDistribution last="0"> + <route cost="42.03" probability="1.00000000" edges="0/4to1/4 1/4to2/4 2/4to2/3 2/3to2/2 2/2to2/1 2/1to2/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car315" depart="315.00"> + <routeDistribution last="0"> + <route cost="60.97" probability="1.00000000" edges="1/2to0/2 0/2to0/1 0/1to0/0 0/0to1/0 1/0to2/0 2/0to3/0 3/0to4/0 4/0to3/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car316" depart="316.00"> + <routeDistribution last="0"> + <route cost="52.35" probability="1.00000000" edges="1/0to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to2/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car317" depart="317.00"> + <routeDistribution last="0"> + <route cost="45.43" probability="1.00000000" edges="4/4to4/3 4/3to3/3 3/3to3/2 3/2to2/2 2/2to1/2 1/2to2/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car318" depart="318.00"> + <routeDistribution last="0"> + <route cost="37.82" probability="1.00000000" edges="4/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to2/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car319" depart="319.00"> + <routeDistribution last="0"> + <route cost="37.95" probability="1.00000000" edges="1/2to1/1 1/1to1/2 1/2to2/2 2/2to2/3 2/3to3/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car320" depart="320.00"> + <routeDistribution last="0"> + <route cost="41.85" probability="1.00000000" edges="0/1to0/2 0/2to0/3 0/3to0/4 0/4to1/4 1/4to2/4 2/4to3/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car321" depart="321.00"> + <routeDistribution last="0"> + <route cost="30.35" probability="1.00000000" edges="1/2to1/3 1/3to2/3 2/3to3/3 3/3to4/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car322" depart="322.00"> + <routeDistribution last="0"> + <route cost="30.33" probability="1.00000000" edges="2/4to3/4 3/4to2/4 2/4to1/4 1/4to0/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car323" depart="323.00"> + <routeDistribution last="0"> + <route cost="28.15" probability="1.00000000" edges="3/0to3/1 3/1to3/2 3/2to4/2 4/2to3/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car324" depart="324.00"> + <routeDistribution last="0"> + <route cost="61.99" probability="1.00000000" edges="3/0to4/0 4/0to3/0 3/0to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to0/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car325" depart="325.00"> + <routeDistribution last="0"> + <route cost="44.41" probability="1.00000000" edges="2/1to2/0 2/0to2/1 2/1to2/2 2/2to2/3 2/3to2/4 2/4to1/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car326" depart="326.00"> + <routeDistribution last="0"> + <route cost="47.84" probability="1.00000000" edges="3/2to3/3 3/3to3/2 3/2to2/2 2/2to1/2 1/2to0/2 0/2to1/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car327" depart="327.00"> + <routeDistribution last="0"> + <route cost="23.55" probability="1.00000000" edges="1/2to2/2 2/2to3/2 3/2to4/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car328" depart="328.00"> + <routeDistribution last="0"> + <route cost="38.65" probability="1.00000000" edges="1/0to1/1 1/1to1/2 1/2to0/2 0/2to0/3 0/3to1/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car329" depart="329.00"> + <routeDistribution last="0"> + <route cost="40.12" probability="1.00000000" edges="2/3to2/2 2/2to2/3 2/3to3/3 3/3to4/3 4/3to4/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car330" depart="330.00"> + <routeDistribution last="0"> + <route cost="47.04" probability="1.00000000" edges="2/3to1/3 1/3to2/3 2/3to3/3 3/3to4/3 4/3to4/2 4/2to4/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car331" depart="331.00"> + <routeDistribution last="0"> + <route cost="52.76" probability="1.00000000" edges="3/4to4/4 4/4to4/3 4/3to3/3 3/3to3/2 3/2to2/2 2/2to1/2 1/2to0/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car332" depart="332.00"> + <routeDistribution last="0"> + <route cost="28.45" probability="1.00000000" edges="3/4to3/3 3/3to2/3 2/3to2/2 2/2to1/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car333" depart="333.00"> + <routeDistribution last="0"> + <route cost="39.83" probability="1.00000000" edges="3/4to2/4 2/4to3/4 3/4to3/3 3/3to3/2 3/2to4/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car334" depart="334.00"> + <routeDistribution last="0"> + <route cost="42.32" probability="1.00000000" edges="4/3to4/4 4/4to3/4 3/4to2/4 2/4to1/4 1/4to0/4 0/4to0/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car335" depart="335.00"> + <routeDistribution last="0"> + <route cost="47.88" probability="1.00000000" edges="4/3to4/4 4/4to4/3 4/3to4/2 4/2to4/1 4/1to4/0 4/0to4/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car336" depart="336.00"> + <routeDistribution last="0"> + <route cost="45.63" probability="1.00000000" edges="3/2to3/1 3/1to3/2 3/2to3/3 3/3to4/3 4/3to4/4 4/4to3/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car337" depart="337.00"> + <routeDistribution last="0"> + <route cost="20.64" probability="1.00000000" edges="4/3to4/4 4/4to3/4 3/4to2/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car338" depart="338.00"> + <routeDistribution last="0"> + <route cost="33.73" probability="1.00000000" edges="1/4to1/3 1/3to2/3 2/3to3/3 3/3to4/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car339" depart="339.00"> + <routeDistribution last="0"> + <route cost="45.82" probability="1.00000000" edges="0/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to2/3 2/3to1/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car340" depart="340.00"> + <routeDistribution last="0"> + <route cost="51.54" probability="1.00000000" edges="3/1to3/0 3/0to2/0 2/0to2/1 2/1to2/2 2/2to2/3 2/3to2/4 2/4to1/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car341" depart="341.00"> + <routeDistribution last="0"> + <route cost="52.11" probability="1.00000000" edges="0/1to0/0 0/0to1/0 1/0to2/0 2/0to3/0 3/0to4/0 4/0to4/1 4/1to4/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car342" depart="342.00"> + <routeDistribution last="0"> + <route cost="42.97" probability="1.00000000" edges="2/3to2/4 2/4to3/4 3/4to4/4 4/4to4/3 4/3to4/2 4/2to4/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car343" depart="343.00"> + <routeDistribution last="0"> + <route cost="31.45" probability="1.00000000" edges="3/4to3/3 3/3to4/3 4/3to4/2 4/2to3/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car344" depart="344.00"> + <routeDistribution last="0"> + <route cost="53.54" probability="1.00000000" edges="1/3to0/3 0/3to1/3 1/3to2/3 2/3to2/2 2/2to2/1 2/1to2/0 2/0to2/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car345" depart="345.00"> + <routeDistribution last="0"> + <route cost="50.70" probability="1.00000000" edges="0/4to0/3 0/3to1/3 1/3to2/3 2/3to3/3 3/3to4/3 4/3to3/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car346" depart="346.00"> + <routeDistribution last="0"> + <route cost="38.35" probability="1.00000000" edges="1/3to0/3 0/3to1/3 1/3to2/3 2/3to2/2 2/2to2/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car347" depart="347.00"> + <routeDistribution last="0"> + <route cost="48.03" probability="1.00000000" edges="0/2to1/2 1/2to2/2 2/2to3/2 3/2to4/2 4/2to4/1 4/1to4/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car348" depart="348.00"> + <routeDistribution last="0"> + <route cost="39.85" probability="1.00000000" edges="0/3to1/3 1/3to2/3 2/3to2/2 2/2to2/1 2/1to2/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car349" depart="349.00"> + <routeDistribution last="0"> + <route cost="46.20" probability="1.00000000" edges="4/3to3/3 3/3to3/2 3/2to2/2 2/2to2/1 2/1to2/0 2/0to3/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car350" depart="350.00"> + <routeDistribution last="0"> + <route cost="60.97" probability="1.00000000" edges="3/2to4/2 4/2to4/3 4/3to4/4 4/4to3/4 3/4to2/4 2/4to1/4 1/4to0/4 0/4to1/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car351" depart="351.00"> + <routeDistribution last="0"> + <route cost="50.96" probability="1.00000000" edges="2/0to3/0 3/0to2/0 2/0to1/0 1/0to0/0 0/0to0/1 0/1to0/2 0/2to1/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car352" depart="352.00"> + <routeDistribution last="0"> + <route cost="54.81" probability="1.00000000" edges="4/3to4/2 4/2to3/2 3/2to3/1 3/1to2/1 2/1to1/1 1/1to0/1 0/1to0/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car353" depart="353.00"> + <routeDistribution last="0"> + <route cost="39.03" probability="1.00000000" edges="1/4to1/3 1/3to1/2 1/2to2/2 2/2to2/1 2/1to2/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car354" depart="354.00"> + <routeDistribution last="0"> + <route cost="30.62" probability="1.00000000" edges="4/3to4/2 4/2to4/1 4/1to4/0 4/0to4/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car355" depart="355.00"> + <routeDistribution last="0"> + <route cost="41.35" probability="1.00000000" edges="0/2to1/2 1/2to2/2 2/2to3/2 3/2to3/1 3/1to3/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car356" depart="356.00"> + <routeDistribution last="0"> + <route cost="59.01" probability="1.00000000" edges="1/4to0/4 0/4to0/3 0/3to0/2 0/2to0/1 0/1to0/0 0/0to1/0 1/0to2/0 2/0to1/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car357" depart="357.00"> + <routeDistribution last="0"> + <route cost="51.64" probability="1.00000000" edges="1/0to2/0 2/0to1/0 1/0to0/0 0/0to0/1 0/1to0/2 0/2to0/3 0/3to0/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car358" depart="358.00"> + <routeDistribution last="0"> + <route cost="27.64" probability="1.00000000" edges="4/0to3/0 3/0to2/0 2/0to2/1 2/1to2/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car359" depart="359.00"> + <routeDistribution last="0"> + <route cost="51.62" probability="1.00000000" edges="2/4to2/3 2/3to1/3 1/3to1/2 1/2to1/1 1/1to0/1 0/1to0/0 0/0to1/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car360" depart="360.00"> + <routeDistribution last="0"> + <route cost="51.64" probability="1.00000000" edges="3/3to3/4 3/4to3/3 3/3to3/2 3/2to2/2 2/2to2/1 2/1to1/1 1/1to2/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car361" depart="361.00"> + <routeDistribution last="0"> + <route cost="23.55" probability="1.00000000" edges="0/3to1/3 1/3to2/3 2/3to3/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car362" depart="362.00"> + <routeDistribution last="0"> + <route cost="54.95" probability="1.00000000" edges="0/2to0/1 0/1to0/2 0/2to1/2 1/2to1/3 1/3to2/3 2/3to3/3 3/3to3/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car363" depart="363.00"> + <routeDistribution last="0"> + <route cost="46.24" probability="1.00000000" edges="4/1to3/1 3/1to2/1 2/1to1/1 1/1to1/2 1/2to1/3 1/3to1/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car364" depart="364.00"> + <routeDistribution last="0"> + <route cost="57.82" probability="1.00000000" edges="0/4to0/3 0/3to1/3 1/3to2/3 2/3to3/3 3/3to4/3 4/3to4/2 4/2to3/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car365" depart="365.00"> + <routeDistribution last="0"> + <route cost="51.92" probability="1.00000000" edges="0/0to0/1 0/1to1/1 1/1to1/0 1/0to2/0 2/0to3/0 3/0to4/0 4/0to4/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car366" depart="366.00"> + <routeDistribution last="0"> + <route cost="38.25" probability="1.00000000" edges="1/2to0/2 0/2to1/2 1/2to1/1 1/1to1/0 1/0to0/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car367" depart="367.00"> + <routeDistribution last="0"> + <route cost="32.51" probability="1.00000000" edges="3/1to2/1 2/1to1/1 1/1to0/1 0/1to0/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car368" depart="368.00"> + <routeDistribution last="0"> + <route cost="52.21" probability="1.00000000" edges="0/0to1/0 1/0to2/0 2/0to3/0 3/0to3/1 3/1to3/2 3/2to3/3 3/3to4/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car369" depart="369.00"> + <routeDistribution last="0"> + <route cost="41.33" probability="1.00000000" edges="3/2to4/2 4/2to3/2 3/2to2/2 2/2to2/3 2/3to1/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car370" depart="370.00"> + <routeDistribution last="0"> + <route cost="31.54" probability="1.00000000" edges="3/2to4/2 4/2to3/2 3/2to2/2 2/2to1/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car371" depart="371.00"> + <routeDistribution last="0"> + <route cost="33.71" probability="1.00000000" edges="0/3to0/2 0/2to1/2 1/2to2/2 2/2to2/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car372" depart="372.00"> + <routeDistribution last="0"> + <route cost="54.13" probability="1.00000000" edges="4/3to3/3 3/3to3/2 3/2to2/2 2/2to2/1 2/1to1/1 1/1to0/1 0/1to0/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car373" depart="373.00"> + <routeDistribution last="0"> + <route cost="42.58" probability="1.00000000" edges="3/3to3/4 3/4to4/4 4/4to4/3 4/3to4/2 4/2to4/1 4/1to3/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car374" depart="374.00"> + <routeDistribution last="0"> + <route cost="66.89" probability="1.00000000" edges="4/3to4/4 4/4to3/4 3/4to2/4 2/4to1/4 1/4to0/4 0/4to0/3 0/3to0/2 0/2to0/1 0/1to1/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car375" depart="375.00"> + <routeDistribution last="0"> + <route cost="40.92" probability="1.00000000" edges="4/2to3/2 3/2to2/2 2/2to1/2 1/2to0/2 0/2to0/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car376" depart="376.00"> + <routeDistribution last="0"> + <route cost="34.66" probability="1.00000000" edges="0/2to0/3 0/3to0/4 0/4to1/4 1/4to2/4 2/4to3/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car377" depart="377.00"> + <routeDistribution last="0"> + <route cost="39.41" probability="1.00000000" edges="3/0to3/1 3/1to3/2 3/2to3/3 3/3to2/3 2/3to2/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car378" depart="378.00"> + <routeDistribution last="0"> + <route cost="35.77" probability="1.00000000" edges="1/3to1/4 1/4to2/4 2/4to3/4 3/4to4/4 4/4to4/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car379" depart="379.00"> + <routeDistribution last="0"> + <route cost="51.95" probability="1.00000000" edges="2/4to3/4 3/4to3/3 3/3to2/3 2/3to2/2 2/2to1/2 1/2to0/2 0/2to1/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car380" depart="380.00"> + <routeDistribution last="0"> + <route cost="30.34" probability="1.00000000" edges="3/2to3/1 3/1to2/1 2/1to1/1 1/1to1/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car381" depart="381.00"> + <routeDistribution last="0"> + <route cost="50.96" probability="1.00000000" edges="2/0to3/0 3/0to2/0 2/0to1/0 1/0to0/0 0/0to0/1 0/1to0/2 0/2to1/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car382" depart="382.00"> + <routeDistribution last="0"> + <route cost="56.85" probability="1.00000000" edges="4/2to4/1 4/1to3/1 3/1to2/1 2/1to1/1 1/1to0/1 0/1to0/2 0/2to0/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car383" depart="383.00"> + <routeDistribution last="0"> + <route cost="60.76" probability="1.00000000" edges="3/4to4/4 4/4to4/3 4/3to3/3 3/3to3/2 3/2to2/2 2/2to1/2 1/2to0/2 0/2to1/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car384" depart="384.00"> + <routeDistribution last="0"> + <route cost="32.24" probability="1.00000000" edges="0/2to1/2 1/2to2/2 2/2to3/2 3/2to4/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car385" depart="385.00"> + <routeDistribution last="0"> + <route cost="59.01" probability="1.00000000" edges="1/4to0/4 0/4to1/4 1/4to2/4 2/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to3/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car386" depart="386.00"> + <routeDistribution last="0"> + <route cost="45.16" probability="1.00000000" edges="3/3to2/3 2/3to3/3 3/3to4/3 4/3to4/2 4/2to4/1 4/1to3/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car387" depart="387.00"> + <routeDistribution last="0"> + <route cost="38.62" probability="1.00000000" edges="3/2to3/1 3/1to3/2 3/2to3/3 3/3to4/3 4/3to4/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car388" depart="388.00"> + <routeDistribution last="0"> + <route cost="30.33" probability="1.00000000" edges="2/4to3/4 3/4to2/4 2/4to1/4 1/4to0/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car389" depart="389.00"> + <routeDistribution last="0"> + <route cost="37.92" probability="1.00000000" edges="2/4to1/4 1/4to1/3 1/3to1/2 1/2to1/1 1/1to1/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car390" depart="390.00"> + <routeDistribution last="0"> + <route cost="23.53" probability="1.00000000" edges="3/1to2/1 2/1to1/1 1/1to1/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car391" depart="391.00"> + <routeDistribution last="0"> + <route cost="59.49" probability="1.00000000" edges="0/3to0/2 0/2to0/1 0/1to0/0 0/0to1/0 1/0to2/0 2/0to3/0 3/0to4/0 4/0to3/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car392" depart="392.00"> + <routeDistribution last="0"> + <route cost="33.34" probability="1.00000000" edges="1/4to1/3 1/3to2/3 2/3to3/3 3/3to3/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car393" depart="393.00"> + <routeDistribution last="0"> + <route cost="43.42" probability="1.00000000" edges="4/0to3/0 3/0to3/1 3/1to3/2 3/2to3/3 3/3to4/3 4/3to4/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car394" depart="394.00"> + <routeDistribution last="0"> + <route cost="36.05" probability="1.00000000" edges="3/4to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to2/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car395" depart="395.00"> + <routeDistribution last="0"> + <route cost="54.51" probability="1.00000000" edges="3/0to4/0 4/0to3/0 3/0to2/0 2/0to1/0 1/0to0/0 0/0to0/1 0/1to0/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car396" depart="396.00"> + <routeDistribution last="0"> + <route cost="30.43" probability="1.00000000" edges="4/2to4/3 4/3to4/4 4/4to3/4 3/4to4/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car397" depart="397.00"> + <routeDistribution last="0"> + <route cost="33.34" probability="1.00000000" edges="3/2to2/2 2/2to1/2 1/2to1/3 1/3to0/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car398" depart="398.00"> + <routeDistribution last="0"> + <route cost="51.28" probability="1.00000000" edges="1/3to2/3 2/3to2/2 2/2to2/1 2/1to2/0 2/0to1/0 1/0to0/0 0/0to0/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car399" depart="399.00"> + <routeDistribution last="0"> + <route cost="37.16" probability="1.00000000" edges="4/1to3/1 3/1to2/1 2/1to2/2 2/2to2/3 2/3to3/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car400" depart="400.00"> + <routeDistribution last="0"> + <route cost="50.91" probability="1.00000000" edges="2/0to2/1 2/1to2/2 2/2to2/3 2/3to2/4 2/4to1/4 1/4to0/4 0/4to0/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car401" depart="401.00"> + <routeDistribution last="0"> + <route cost="42.69" probability="1.00000000" edges="3/0to3/1 3/1to2/1 2/1to1/1 1/1to0/1 0/1to0/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car402" depart="402.00"> + <routeDistribution last="0"> + <route cost="47.01" probability="1.00000000" edges="3/2to4/2 4/2to3/2 3/2to3/1 3/1to2/1 2/1to1/1 1/1to1/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car403" depart="403.00"> + <routeDistribution last="0"> + <route cost="50.85" probability="1.00000000" edges="2/0to3/0 3/0to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to2/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car404" depart="404.00"> + <routeDistribution last="0"> + <route cost="40.53" probability="1.00000000" edges="1/4to1/3 1/3to1/2 1/2to2/2 2/2to3/2 3/2to3/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car405" depart="405.00"> + <routeDistribution last="0"> + <route cost="57.53" probability="1.00000000" edges="0/4to1/4 1/4to2/4 2/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to2/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car406" depart="406.00"> + <routeDistribution last="0"> + <route cost="45.16" probability="1.00000000" edges="3/1to3/0 3/0to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car407" depart="407.00"> + <routeDistribution last="0"> + <route cost="24.65" probability="1.00000000" edges="3/1to2/1 2/1to2/2 2/2to1/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car408" depart="408.00"> + <routeDistribution last="0"> + <route cost="32.14" probability="1.00000000" edges="3/3to2/3 2/3to1/3 1/3to0/3 0/3to0/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car409" depart="409.00"> + <routeDistribution last="0"> + <route cost="21.66" probability="1.00000000" edges="2/1to1/1 1/1to1/2 1/2to1/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car410" depart="410.00"> + <routeDistribution last="0"> + <route cost="25.03" probability="1.00000000" edges="3/1to3/2 3/2to2/2 2/2to1/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car411" depart="411.00"> + <routeDistribution last="0"> + <route cost="42.97" probability="1.00000000" edges="3/1to3/0 3/0to2/0 2/0to1/0 1/0to0/0 0/0to0/1 0/1to0/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car412" depart="412.00"> + <routeDistribution last="0"> + <route cost="49.66" probability="1.00000000" edges="2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to2/4 2/4to2/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car413" depart="413.00"> + <routeDistribution last="0"> + <route cost="35.64" probability="1.00000000" edges="0/0to0/1 0/1to0/2 0/2to0/3 0/3to1/3 1/3to0/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car414" depart="414.00"> + <routeDistribution last="0"> + <route cost="28.47" probability="1.00000000" edges="1/1to0/1 0/1to0/2 0/2to0/3 0/3to1/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car415" depart="415.00"> + <routeDistribution last="0"> + <route cost="29.95" probability="1.00000000" edges="1/2to0/2 0/2to0/3 0/3to1/3 1/3to1/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car416" depart="416.00"> + <routeDistribution last="0"> + <route cost="46.13" probability="1.00000000" edges="0/0to0/1 0/1to1/1 1/1to1/2 1/2to2/2 2/2to3/2 3/2to4/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car417" depart="417.00"> + <routeDistribution last="0"> + <route cost="36.05" probability="1.00000000" edges="1/0to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to2/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car418" depart="418.00"> + <routeDistribution last="0"> + <route cost="49.52" probability="1.00000000" edges="0/2to0/1 0/1to0/0 0/0to1/0 1/0to2/0 2/0to3/0 3/0to4/0 4/0to4/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car419" depart="419.00"> + <routeDistribution last="0"> + <route cost="30.71" probability="1.00000000" edges="3/2to2/2 2/2to2/1 2/1to2/0 2/0to3/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car420" depart="420.00"> + <routeDistribution last="0"> + <route cost="45.10" probability="1.00000000" edges="0/3to0/4 0/4to0/3 0/3to0/2 0/2to0/1 0/1to0/0 0/0to1/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car421" depart="421.00"> + <routeDistribution last="0"> + <route cost="50.34" probability="1.00000000" edges="3/0to2/0 2/0to2/1 2/1to2/2 2/2to2/3 2/3to2/4 2/4to3/4 3/4to4/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car422" depart="422.00"> + <routeDistribution last="0"> + <route cost="54.16" probability="1.00000000" edges="4/2to4/1 4/1to3/1 3/1to2/1 2/1to1/1 1/1to0/1 0/1to0/2 0/2to1/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car423" depart="423.00"> + <routeDistribution last="0"> + <route cost="34.45" probability="1.00000000" edges="4/0to3/0 3/0to2/0 2/0to1/0 1/0to1/1 1/1to2/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car424" depart="424.00"> + <routeDistribution last="0"> + <route cost="23.53" probability="1.00000000" edges="2/4to2/3 2/3to2/2 2/2to3/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car425" depart="425.00"> + <routeDistribution last="0"> + <route cost="37.53" probability="1.00000000" edges="2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to0/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car426" depart="426.00"> + <routeDistribution last="0"> + <route cost="44.05" probability="1.00000000" edges="1/0to0/0 0/0to0/1 0/1to1/1 1/1to1/2 1/2to2/2 2/2to2/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car427" depart="427.00"> + <routeDistribution last="0"> + <route cost="43.77" probability="1.00000000" edges="0/3to0/4 0/4to1/4 1/4to2/4 2/4to2/3 2/3to2/2 2/2to2/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car428" depart="428.00"> + <routeDistribution last="0"> + <route cost="38.66" probability="1.00000000" edges="4/2to3/2 3/2to2/2 2/2to1/2 1/2to1/3 1/3to2/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car429" depart="429.00"> + <routeDistribution last="0"> + <route cost="43.96" probability="1.00000000" edges="3/4to3/3 3/3to2/3 2/3to2/2 2/2to2/1 2/1to1/1 1/1to1/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car430" depart="430.00"> + <routeDistribution last="0"> + <route cost="42.51" probability="1.00000000" edges="0/4to0/3 0/3to0/2 0/2to0/1 0/1to0/0 0/0to1/0 1/0to2/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car431" depart="431.00"> + <routeDistribution last="0"> + <route cost="29.95" probability="1.00000000" edges="3/1to2/1 2/1to2/0 2/0to1/0 1/0to1/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car432" depart="432.00"> + <routeDistribution last="0"> + <route cost="21.65" probability="1.00000000" edges="3/3to3/2 3/2to2/2 2/2to2/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car433" depart="433.00"> + <routeDistribution last="0"> + <route cost="44.76" probability="1.00000000" edges="2/1to2/0 2/0to2/1 2/1to3/1 3/1to3/2 3/2to4/2 4/2to4/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car434" depart="434.00"> + <routeDistribution last="0"> + <route cost="36.85" probability="1.00000000" edges="2/3to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to3/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car435" depart="435.00"> + <routeDistribution last="0"> + <route cost="60.88" probability="1.00000000" edges="3/0to3/1 3/1to3/2 3/2to3/3 3/3to3/4 3/4to2/4 2/4to1/4 1/4to0/4 0/4to1/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car436" depart="436.00"> + <routeDistribution last="0"> + <route cost="33.34" probability="1.00000000" edges="0/2to0/1 0/1to1/1 1/1to2/1 2/1to2/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car437" depart="437.00"> + <routeDistribution last="0"> + <route cost="29.65" probability="1.00000000" edges="1/3to0/3 0/3to1/3 1/3to1/2 1/2to1/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car438" depart="438.00"> + <routeDistribution last="0"> + <route cost="30.32" probability="1.00000000" edges="0/1to1/1 1/1to1/2 1/2to2/2 2/2to2/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car439" depart="439.00"> + <routeDistribution last="0"> + <route cost="52.21" probability="1.00000000" edges="0/1to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to2/4 2/4to3/4 3/4to4/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car440" depart="440.00"> + <routeDistribution last="0"> + <route cost="61.36" probability="1.00000000" edges="0/2to0/3 0/3to1/3 1/3to2/3 2/3to3/3 3/3to4/3 4/3to4/2 4/2to4/1 4/1to3/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car441" depart="441.00"> + <routeDistribution last="0"> + <route cost="30.05" probability="1.00000000" edges="4/0to4/1 4/1to4/0 4/0to3/0 3/0to2/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car442" depart="442.00"> + <routeDistribution last="0"> + <route cost="31.45" probability="1.00000000" edges="2/3to2/4 2/4to3/4 3/4to3/3 3/3to4/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car443" depart="443.00"> + <routeDistribution last="0"> + <route cost="39.83" probability="1.00000000" edges="4/1to4/2 4/2to4/1 4/1to3/1 3/1to2/1 2/1to2/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car444" depart="444.00"> + <routeDistribution last="0"> + <route cost="43.66" probability="1.00000000" edges="3/4to2/4 2/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to2/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car445" depart="445.00"> + <routeDistribution last="0"> + <route cost="42.44" probability="1.00000000" edges="0/4to1/4 1/4to1/3 1/3to1/2 1/2to1/1 1/1to0/1 0/1to1/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car446" depart="446.00"> + <routeDistribution last="0"> + <route cost="58.29" probability="1.00000000" edges="0/3to0/2 0/2to0/1 0/1to1/1 1/1to2/1 2/1to3/1 3/1to4/1 4/1to4/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car447" depart="447.00"> + <routeDistribution last="0"> + <route cost="30.35" probability="1.00000000" edges="1/3to2/3 2/3to3/3 3/3to3/2 3/2to3/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car448" depart="448.00"> + <routeDistribution last="0"> + <route cost="45.83" probability="1.00000000" edges="2/2to2/3 2/3to2/2 2/2to2/1 2/1to2/0 2/0to1/0 1/0to0/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car449" depart="449.00"> + <routeDistribution last="0"> + <route cost="45.56" probability="1.00000000" edges="3/3to4/3 4/3to4/2 4/2to4/1 4/1to4/0 4/0to3/0 3/0to4/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car450" depart="450.00"> + <routeDistribution last="0"> + <route cost="33.34" probability="1.00000000" edges="3/1to3/2 3/2to2/2 2/2to1/2 1/2to1/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car451" depart="451.00"> + <routeDistribution last="0"> + <route cost="25.32" probability="1.00000000" edges="0/4to0/3 0/3to1/3 1/3to2/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car452" depart="452.00"> + <routeDistribution last="0"> + <route cost="45.42" probability="1.00000000" edges="4/3to4/4 4/4to4/3 4/3to4/2 4/2to4/1 4/1to3/1 3/1to4/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car453" depart="453.00"> + <routeDistribution last="0"> + <route cost="49.66" probability="1.00000000" edges="2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to2/4 2/4to2/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car454" depart="454.00"> + <routeDistribution last="0"> + <route cost="32.24" probability="1.00000000" edges="4/3to3/3 3/3to2/3 2/3to1/3 1/3to0/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car455" depart="455.00"> + <routeDistribution last="0"> + <route cost="30.34" probability="1.00000000" edges="1/4to2/4 2/4to3/4 3/4to3/3 3/3to4/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car456" depart="456.00"> + <routeDistribution last="0"> + <route cost="27.74" probability="1.00000000" edges="3/4to3/3 3/3to3/2 3/2to3/1 3/1to3/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car457" depart="457.00"> + <routeDistribution last="0"> + <route cost="35.07" probability="1.00000000" edges="3/4to4/4 4/4to4/3 4/3to4/2 4/2to3/2 3/2to4/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car458" depart="458.00"> + <routeDistribution last="0"> + <route cost="32.23" probability="1.00000000" edges="3/1to3/2 3/2to3/3 3/3to2/3 2/3to1/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car459" depart="459.00"> + <routeDistribution last="0"> + <route cost="30.34" probability="1.00000000" edges="4/3to3/3 3/3to2/3 2/3to2/2 2/2to1/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car460" depart="460.00"> + <routeDistribution last="0"> + <route cost="36.52" probability="1.00000000" edges="1/1to1/2 1/2to1/3 1/3to1/4 1/4to0/4 0/4to0/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car461" depart="461.00"> + <routeDistribution last="0"> + <route cost="68.66" probability="1.00000000" edges="0/2to0/3 0/3to1/3 1/3to2/3 2/3to3/3 3/3to4/3 4/3to4/2 4/2to4/1 4/1to4/0 4/0to3/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car462" depart="462.00"> + <routeDistribution last="0"> + <route cost="48.16" probability="1.00000000" edges="0/3to0/2 0/2to0/3 0/3to1/3 1/3to2/3 2/3to3/3 3/3to3/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car463" depart="463.00"> + <routeDistribution last="0"> + <route cost="34.95" probability="1.00000000" edges="3/4to4/4 4/4to4/3 4/3to4/2 4/2to4/1 4/1to4/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car464" depart="464.00"> + <routeDistribution last="0"> + <route cost="28.84" probability="1.00000000" edges="0/1to0/2 0/2to1/2 1/2to1/3 1/3to1/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car465" depart="465.00"> + <routeDistribution last="0"> + <route cost="45.47" probability="1.00000000" edges="3/3to3/2 3/2to2/2 2/2to1/2 1/2to0/2 0/2to0/3 0/3to1/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car466" depart="466.00"> + <routeDistribution last="0"> + <route cost="28.56" probability="1.00000000" edges="3/4to4/4 4/4to4/3 4/3to3/3 3/3to3/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car467" depart="467.00"> + <routeDistribution last="0"> + <route cost="53.71" probability="1.00000000" edges="3/4to2/4 2/4to1/4 1/4to1/3 1/3to1/2 1/2to1/1 1/1to1/0 1/0to0/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car468" depart="468.00"> + <routeDistribution last="0"> + <route cost="35.66" probability="1.00000000" edges="2/1to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car469" depart="469.00"> + <routeDistribution last="0"> + <route cost="38.32" probability="1.00000000" edges="3/2to4/2 4/2to3/2 3/2to3/1 3/1to2/1 2/1to2/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car470" depart="470.00"> + <routeDistribution last="0"> + <route cost="14.85" probability="1.00000000" edges="2/3to1/3 1/3to0/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car471" depart="471.00"> + <routeDistribution last="0"> + <route cost="40.91" probability="1.00000000" edges="3/4to2/4 2/4to2/3 2/3to2/2 2/2to2/1 2/1to3/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car472" depart="472.00"> + <routeDistribution last="0"> + <route cost="40.80" probability="1.00000000" edges="3/4to4/4 4/4to3/4 3/4to2/4 2/4to1/4 1/4to1/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car473" depart="473.00"> + <routeDistribution last="0"> + <route cost="24.65" probability="1.00000000" edges="2/1to2/2 2/2to1/2 1/2to1/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car474" depart="474.00"> + <routeDistribution last="0"> + <route cost="27.84" probability="1.00000000" edges="3/4to2/4 2/4to1/4 1/4to0/4 0/4to0/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car475" depart="475.00"> + <routeDistribution last="0"> + <route cost="51.19" probability="1.00000000" edges="1/2to0/2 0/2to0/1 0/1to0/0 0/0to1/0 1/0to2/0 2/0to3/0 3/0to4/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car476" depart="476.00"> + <routeDistribution last="0"> + <route cost="37.55" probability="1.00000000" edges="4/1to3/1 3/1to2/1 2/1to2/2 2/2to2/3 2/3to2/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car477" depart="477.00"> + <routeDistribution last="0"> + <route cost="59.49" probability="1.00000000" edges="0/3to0/2 0/2to0/1 0/1to0/0 0/0to1/0 1/0to2/0 2/0to3/0 3/0to4/0 4/0to3/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car478" depart="478.00"> + <routeDistribution last="0"> + <route cost="49.52" probability="1.00000000" edges="4/0to4/1 4/1to4/2 4/2to3/2 3/2to2/2 2/2to1/2 1/2to1/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car479" depart="479.00"> + <routeDistribution last="0"> + <route cost="30.34" probability="1.00000000" edges="3/3to3/2 3/2to2/2 2/2to1/2 1/2to1/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car480" depart="480.00"> + <routeDistribution last="0"> + <route cost="52.02" probability="1.00000000" edges="4/2to3/2 3/2to3/3 3/3to3/4 3/4to2/4 2/4to1/4 1/4to0/4 0/4to0/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car481" depart="481.00"> + <routeDistribution last="0"> + <route cost="53.12" probability="1.00000000" edges="2/1to1/1 1/1to2/1 2/1to2/2 2/2to3/2 3/2to3/3 3/3to4/3 4/3to3/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car482" depart="482.00"> + <routeDistribution last="0"> + <route cost="45.73" probability="1.00000000" edges="1/3to2/3 2/3to2/2 2/2to1/2 1/2to1/1 1/1to0/1 0/1to0/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car483" depart="483.00"> + <routeDistribution last="0"> + <route cost="30.32" probability="1.00000000" edges="0/1to1/1 1/1to1/2 1/2to2/2 2/2to2/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car484" depart="484.00"> + <routeDistribution last="0"> + <route cost="50.16" probability="1.00000000" edges="1/1to1/2 1/2to1/3 1/3to1/4 1/4to2/4 2/4to3/4 3/4to4/4 4/4to4/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car485" depart="485.00"> + <routeDistribution last="0"> + <route cost="36.32" probability="1.00000000" edges="1/4to1/3 1/3to0/3 0/3to0/2 0/2to0/1 0/1to0/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car486" depart="486.00"> + <routeDistribution last="0"> + <route cost="36.96" probability="1.00000000" edges="4/2to4/3 4/3to4/2 4/2to4/1 4/1to4/0 4/0to3/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car487" depart="487.00"> + <routeDistribution last="0"> + <route cost="44.23" probability="1.00000000" edges="3/0to4/0 4/0to3/0 3/0to3/1 3/1to3/2 3/2to3/3 3/3to4/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car488" depart="488.00"> + <routeDistribution last="0"> + <route cost="42.27" probability="1.00000000" edges="3/4to4/4 4/4to4/3 4/3to4/2 4/2to4/1 4/1to3/1 3/1to4/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car489" depart="489.00"> + <routeDistribution last="0"> + <route cost="49.13" probability="1.00000000" edges="0/4to0/3 0/3to1/3 1/3to2/3 2/3to3/3 3/3to3/2 3/2to2/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car490" depart="490.00"> + <routeDistribution last="0"> + <route cost="28.58" probability="1.00000000" edges="2/1to2/0 2/0to1/0 1/0to0/0 0/0to0/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car491" depart="491.00"> + <routeDistribution last="0"> + <route cost="37.26" probability="1.00000000" edges="3/4to4/4 4/4to4/3 4/3to3/3 3/3to2/3 2/3to2/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car492" depart="492.00"> + <routeDistribution last="0"> + <route cost="25.03" probability="1.00000000" edges="3/2to3/3 3/3to2/3 2/3to1/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car493" depart="493.00"> + <routeDistribution last="0"> + <route cost="25.03" probability="1.00000000" edges="0/3to0/2 0/2to1/2 1/2to2/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car494" depart="494.00"> + <routeDistribution last="0"> + <route cost="37.53" probability="1.00000000" edges="2/0to3/0 3/0to3/1 3/1to3/2 3/2to3/3 3/3to4/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car495" depart="495.00"> + <routeDistribution last="0"> + <route cost="40.91" probability="1.00000000" edges="2/1to2/2 2/2to2/3 2/3to1/3 1/3to0/3 0/3to0/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car496" depart="496.00"> + <routeDistribution last="0"> + <route cost="38.35" probability="1.00000000" edges="4/2to3/2 3/2to2/2 2/2to2/3 2/3to2/4 2/4to2/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car497" depart="497.00"> + <routeDistribution last="0"> + <route cost="37.82" probability="1.00000000" edges="0/0to1/0 1/0to2/0 2/0to2/1 2/1to2/2 2/2to3/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car498" depart="498.00"> + <routeDistribution last="0"> + <route cost="52.39" probability="1.00000000" edges="1/1to2/1 2/1to2/2 2/2to2/3 2/3to2/4 2/4to1/4 1/4to0/4 0/4to0/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car499" depart="499.00"> + <routeDistribution last="0"> + <route cost="23.15" probability="1.00000000" edges="1/1to2/1 2/1to2/0 2/0to3/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car500" depart="500.00"> + <routeDistribution last="0"> + <route cost="50.16" probability="1.00000000" edges="3/1to3/0 3/0to2/0 2/0to1/0 1/0to0/0 0/0to0/1 0/1to0/2 0/2to0/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car501" depart="501.00"> + <routeDistribution last="0"> + <route cost="56.71" probability="1.00000000" edges="4/3to4/4 4/4to3/4 3/4to2/4 2/4to1/4 1/4to0/4 0/4to0/3 0/3to0/2 0/2to0/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car502" depart="502.00"> + <routeDistribution last="0"> + <route cost="30.26" probability="1.00000000" edges="4/4to4/3 4/3to3/3 3/3to2/3 2/3to2/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car503" depart="503.00"> + <routeDistribution last="0"> + <route cost="43.32" probability="1.00000000" edges="3/0to3/1 3/1to4/1 4/1to4/2 4/2to4/3 4/3to4/4 4/4to3/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car504" depart="504.00"> + <routeDistribution last="0"> + <route cost="29.32" probability="1.00000000" edges="1/2to0/2 0/2to0/1 0/1to0/0 0/0to1/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car505" depart="505.00"> + <routeDistribution last="0"> + <route cost="44.33" probability="1.00000000" edges="1/0to1/1 1/1to2/1 2/1to2/2 2/2to2/3 2/3to3/3 3/3to3/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car506" depart="506.00"> + <routeDistribution last="0"> + <route cost="14.85" probability="1.00000000" edges="2/1to3/1 3/1to4/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car507" depart="507.00"> + <routeDistribution last="0"> + <route cost="36.42" probability="1.00000000" edges="3/0to3/1 3/1to3/2 3/2to3/3 3/3to3/4 3/4to2/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car508" depart="508.00"> + <routeDistribution last="0"> + <route cost="55.32" probability="1.00000000" edges="0/2to0/1 0/1to0/2 0/2to1/2 1/2to1/3 1/3to2/3 2/3to3/3 3/3to3/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car509" depart="509.00"> + <routeDistribution last="0"> + <route cost="37.15" probability="1.00000000" edges="0/1to0/2 0/2to1/2 1/2to1/1 1/1to1/0 1/0to2/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car510" depart="510.00"> + <routeDistribution last="0"> + <route cost="47.73" probability="1.00000000" edges="0/1to0/2 0/2to1/2 1/2to2/2 2/2to3/2 3/2to4/2 4/2to4/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car511" depart="511.00"> + <routeDistribution last="0"> + <route cost="37.26" probability="1.00000000" edges="2/2to3/2 3/2to3/3 3/3to3/4 3/4to4/4 4/4to4/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car512" depart="512.00"> + <routeDistribution last="0"> + <route cost="21.66" probability="1.00000000" edges="2/3to2/2 2/2to1/2 1/2to0/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car513" depart="513.00"> + <routeDistribution last="0"> + <route cost="46.20" probability="1.00000000" edges="3/3to2/3 2/3to2/2 2/2to1/2 1/2to1/1 1/1to1/0 1/0to2/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car514" depart="514.00"> + <routeDistribution last="0"> + <route cost="46.92" probability="1.00000000" edges="1/4to0/4 0/4to1/4 1/4to2/4 2/4to3/4 3/4to3/3 3/3to3/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car515" depart="515.00"> + <routeDistribution last="0"> + <route cost="46.24" probability="1.00000000" edges="4/1to3/1 3/1to2/1 2/1to1/1 1/1to1/2 1/2to1/3 1/3to1/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car516" depart="516.00"> + <routeDistribution last="0"> + <route cost="51.72" probability="1.00000000" edges="4/1to4/2 4/2to4/3 4/3to4/4 4/4to3/4 3/4to2/4 2/4to1/4 1/4to2/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car517" depart="517.00"> + <routeDistribution last="0"> + <route cost="45.21" probability="1.00000000" edges="4/3to4/4 4/4to3/4 3/4to2/4 2/4to2/3 2/3to2/2 2/2to2/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car518" depart="518.00"> + <routeDistribution last="0"> + <route cost="39.46" probability="1.00000000" edges="2/2to2/1 2/1to2/2 2/2to3/2 3/2to4/2 4/2to4/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car519" depart="519.00"> + <routeDistribution last="0"> + <route cost="30.71" probability="1.00000000" edges="2/2to3/2 3/2to3/3 3/3to3/4 3/4to2/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car520" depart="520.00"> + <routeDistribution last="0"> + <route cost="48.16" probability="1.00000000" edges="3/2to3/3 3/3to3/2 3/2to2/2 2/2to1/2 1/2to0/2 0/2to0/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car521" depart="521.00"> + <routeDistribution last="0"> + <route cost="52.66" probability="1.00000000" edges="0/2to0/3 0/3to1/3 1/3to2/3 2/3to3/3 3/3to3/2 3/2to3/1 3/1to2/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car522" depart="522.00"> + <routeDistribution last="0"> + <route cost="35.77" probability="1.00000000" edges="1/3to0/3 0/3to0/4 0/4to1/4 1/4to2/4 2/4to3/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car523" depart="523.00"> + <routeDistribution last="0"> + <route cost="31.54" probability="1.00000000" edges="2/1to1/1 1/1to2/1 2/1to3/1 3/1to4/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car524" depart="524.00"> + <routeDistribution last="0"> + <route cost="37.33" probability="1.00000000" edges="1/4to0/4 0/4to0/3 0/3to0/2 0/2to0/1 0/1to0/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car525" depart="525.00"> + <routeDistribution last="0"> + <route cost="52.21" probability="1.00000000" edges="4/1to3/1 3/1to3/2 3/2to3/3 3/3to3/4 3/4to2/4 2/4to1/4 1/4to0/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car526" depart="526.00"> + <routeDistribution last="0"> + <route cost="46.11" probability="1.00000000" edges="4/4to4/3 4/3to3/3 3/3to3/2 3/2to2/2 2/2to1/2 1/2to1/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car527" depart="527.00"> + <routeDistribution last="0"> + <route cost="59.02" probability="1.00000000" edges="0/2to0/3 0/3to1/3 1/3to1/2 1/2to1/1 1/1to1/0 1/0to2/0 2/0to3/0 3/0to4/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car528" depart="528.00"> + <routeDistribution last="0"> + <route cost="37.25" probability="1.00000000" edges="0/4to0/3 0/3to0/4 0/4to1/4 1/4to2/4 2/4to3/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car529" depart="529.00"> + <routeDistribution last="0"> + <route cost="58.39" probability="1.00000000" edges="3/3to3/4 3/4to2/4 2/4to1/4 1/4to0/4 0/4to0/3 0/3to0/2 0/2to0/1 0/1to0/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car530" depart="530.00"> + <routeDistribution last="0"> + <route cost="55.32" probability="1.00000000" edges="0/2to0/1 0/1to0/2 0/2to1/2 1/2to1/3 1/3to2/3 2/3to3/3 3/3to3/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car531" depart="531.00"> + <routeDistribution last="0"> + <route cost="28.15" probability="1.00000000" edges="3/1to3/2 3/2to3/3 3/3to4/3 4/3to3/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car532" depart="532.00"> + <routeDistribution last="0"> + <route cost="33.34" probability="1.00000000" edges="1/4to1/3 1/3to2/3 2/3to3/3 3/3to3/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car533" depart="533.00"> + <routeDistribution last="0"> + <route cost="30.33" probability="1.00000000" edges="2/0to1/0 1/0to2/0 2/0to3/0 3/0to4/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car534" depart="534.00"> + <routeDistribution last="0"> + <route cost="45.83" probability="1.00000000" edges="1/1to2/1 2/1to1/1 1/1to0/1 0/1to0/2 0/2to0/3 0/3to0/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car535" depart="535.00"> + <routeDistribution last="0"> + <route cost="58.16" probability="1.00000000" edges="2/1to2/0 2/0to2/1 2/1to2/2 2/2to2/3 2/3to2/4 2/4to3/4 3/4to4/4 4/4to4/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car536" depart="536.00"> + <routeDistribution last="0"> + <route cost="45.86" probability="1.00000000" edges="1/2to1/3 1/3to2/3 2/3to3/3 3/3to4/3 4/3to4/2 4/2to4/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car537" depart="537.00"> + <routeDistribution last="0"> + <route cost="44.64" probability="1.00000000" edges="2/2to2/1 2/1to1/1 1/1to0/1 0/1to0/2 0/2to0/3 0/3to0/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car538" depart="538.00"> + <routeDistribution last="0"> + <route cost="33.63" probability="1.00000000" edges="4/0to4/1 4/1to3/1 3/1to2/1 2/1to2/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car539" depart="539.00"> + <routeDistribution last="0"> + <route cost="39.83" probability="1.00000000" edges="4/1to4/2 4/2to4/1 4/1to3/1 3/1to2/1 2/1to2/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car540" depart="540.00"> + <routeDistribution last="0"> + <route cost="41.35" probability="1.00000000" edges="0/2to1/2 1/2to2/2 2/2to3/2 3/2to3/1 3/1to3/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car541" depart="541.00"> + <routeDistribution last="0"> + <route cost="51.53" probability="1.00000000" edges="4/0to3/0 3/0to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to1/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car542" depart="542.00"> + <routeDistribution last="0"> + <route cost="38.32" probability="1.00000000" edges="1/3to2/3 2/3to1/3 1/3to1/2 1/2to0/2 0/2to0/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car543" depart="543.00"> + <routeDistribution last="0"> + <route cost="40.91" probability="1.00000000" edges="2/3to2/2 2/2to2/1 2/1to3/1 3/1to4/1 4/1to4/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car544" depart="544.00"> + <routeDistribution last="0"> + <route cost="32.51" probability="1.00000000" edges="4/0to4/1 4/1to4/2 4/2to3/2 3/2to2/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car545" depart="545.00"> + <routeDistribution last="0"> + <route cost="46.74" probability="1.00000000" edges="4/2to4/3 4/3to4/2 4/2to4/1 4/1to4/0 4/0to3/0 3/0to4/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car546" depart="546.00"> + <routeDistribution last="0"> + <route cost="41.08" probability="1.00000000" edges="0/3to0/4 0/4to1/4 1/4to1/3 1/3to1/2 1/2to1/1 1/1to0/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car547" depart="547.00"> + <routeDistribution last="0"> + <route cost="42.71" probability="1.00000000" edges="0/4to0/3 0/3to1/3 1/3to2/3 2/3to3/3 3/3to4/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car548" depart="548.00"> + <routeDistribution last="0"> + <route cost="52.41" probability="1.00000000" edges="0/1to0/0 0/0to1/0 1/0to2/0 2/0to2/1 2/1to2/2 2/2to2/3 2/3to2/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car549" depart="549.00"> + <routeDistribution last="0"> + <route cost="29.13" probability="1.00000000" edges="4/4to4/3 4/3to3/3 3/3to3/2 3/2to3/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car550" depart="550.00"> + <routeDistribution last="0"> + <route cost="45.83" probability="1.00000000" edges="3/4to3/3 3/3to2/3 2/3to2/2 2/2to1/2 1/2to0/2 0/2to0/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car551" depart="551.00"> + <routeDistribution last="0"> + <route cost="54.18" probability="1.00000000" edges="4/3to4/4 4/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to4/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car552" depart="552.00"> + <routeDistribution last="0"> + <route cost="46.53" probability="1.00000000" edges="1/3to2/3 2/3to3/3 3/3to4/3 4/3to4/2 4/2to4/1 4/1to4/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car553" depart="553.00"> + <routeDistribution last="0"> + <route cost="44.70" probability="1.00000000" edges="3/3to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to4/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car554" depart="554.00"> + <routeDistribution last="0"> + <route cost="52.91" probability="1.00000000" edges="1/0to1/1 1/1to2/1 2/1to2/2 2/2to3/2 3/2to3/3 3/3to4/3 4/3to4/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car555" depart="555.00"> + <routeDistribution last="0"> + <route cost="37.14" probability="1.00000000" edges="0/1to1/1 1/1to0/1 0/1to0/2 0/2to0/3 0/3to0/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car556" depart="556.00"> + <routeDistribution last="0"> + <route cost="43.43" probability="1.00000000" edges="0/4to1/4 1/4to1/3 1/3to1/2 1/2to1/1 1/1to1/0 1/0to0/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car557" depart="557.00"> + <routeDistribution last="0"> + <route cost="31.54" probability="1.00000000" edges="1/3to2/3 2/3to3/3 3/3to4/3 4/3to3/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car558" depart="558.00"> + <routeDistribution last="0"> + <route cost="53.89" probability="1.00000000" edges="1/2to0/2 0/2to0/1 0/1to0/0 0/0to1/0 1/0to2/0 2/0to3/0 3/0to3/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car559" depart="559.00"> + <routeDistribution last="0"> + <route cost="45.83" probability="1.00000000" edges="2/2to2/3 2/3to2/2 2/2to2/1 2/1to2/0 2/0to1/0 1/0to0/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car560" depart="560.00"> + <routeDistribution last="0"> + <route cost="47.47" probability="1.00000000" edges="4/3to3/3 3/3to2/3 2/3to1/3 1/3to0/3 0/3to0/4 0/4to1/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car561" depart="561.00"> + <routeDistribution last="0"> + <route cost="48.77" probability="1.00000000" edges="2/4to3/4 3/4to4/4 4/4to4/3 4/3to4/2 4/2to4/1 4/1to4/0 4/0to3/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car562" depart="562.00"> + <routeDistribution last="0"> + <route cost="23.43" probability="1.00000000" edges="2/3to3/3 3/3to3/4 3/4to4/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car563" depart="563.00"> + <routeDistribution last="0"> + <route cost="56.71" probability="1.00000000" edges="3/0to4/0 4/0to4/1 4/1to4/2 4/2to4/3 4/3to4/4 4/4to3/4 3/4to2/4 2/4to1/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car564" depart="564.00"> + <routeDistribution last="0"> + <route cost="13.64" probability="1.00000000" edges="2/0to3/0 3/0to4/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car565" depart="565.00"> + <routeDistribution last="0"> + <route cost="38.65" probability="1.00000000" edges="1/2to2/2 2/2to3/2 3/2to3/3 3/3to4/3 4/3to4/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car566" depart="566.00"> + <routeDistribution last="0"> + <route cost="46.66" probability="1.00000000" edges="2/2to1/2 1/2to1/3 1/3to1/4 1/4to2/4 2/4to3/4 3/4to2/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car567" depart="567.00"> + <routeDistribution last="0"> + <route cost="50.16" probability="1.00000000" edges="1/1to0/1 0/1to0/2 0/2to0/3 0/3to0/4 0/4to1/4 1/4to2/4 2/4to3/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car568" depart="568.00"> + <routeDistribution last="0"> + <route cost="33.34" probability="1.00000000" edges="1/3to1/2 1/2to2/2 2/2to3/2 3/2to3/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car569" depart="569.00"> + <routeDistribution last="0"> + <route cost="45.50" probability="1.00000000" edges="4/4to3/4 3/4to2/4 2/4to1/4 1/4to0/4 0/4to0/3 0/3to1/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car570" depart="570.00"> + <routeDistribution last="0"> + <route cost="32.23" probability="1.00000000" edges="1/3to1/2 1/2to1/1 1/1to2/1 2/1to3/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car571" depart="571.00"> + <routeDistribution last="0"> + <route cost="14.85" probability="1.00000000" edges="0/2to1/2 1/2to2/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car572" depart="572.00"> + <routeDistribution last="0"> + <route cost="50.05" probability="1.00000000" edges="1/4to2/4 2/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to2/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car573" depart="573.00"> + <routeDistribution last="0"> + <route cost="31.54" probability="1.00000000" edges="1/1to2/1 2/1to3/1 3/1to4/1 4/1to3/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car574" depart="574.00"> + <routeDistribution last="0"> + <route cost="23.53" probability="1.00000000" edges="2/4to1/4 1/4to1/3 1/3to1/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car575" depart="575.00"> + <routeDistribution last="0"> + <route cost="21.65" probability="1.00000000" edges="3/3to3/2 3/2to2/2 2/2to2/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car576" depart="576.00"> + <routeDistribution last="0"> + <route cost="36.52" probability="1.00000000" edges="1/3to0/3 0/3to0/2 0/2to0/1 0/1to0/0 0/0to1/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car577" depart="577.00"> + <routeDistribution last="0"> + <route cost="29.95" probability="1.00000000" edges="4/3to3/3 3/3to3/2 3/2to2/2 2/2to2/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car578" depart="578.00"> + <routeDistribution last="0"> + <route cost="59.60" probability="1.00000000" edges="4/3to4/4 4/4to3/4 3/4to2/4 2/4to1/4 1/4to1/3 1/3to1/2 1/2to1/1 1/1to1/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car579" depart="579.00"> + <routeDistribution last="0"> + <route cost="38.02" probability="1.00000000" edges="1/4to0/4 0/4to0/3 0/3to0/2 0/2to0/1 0/1to1/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car580" depart="580.00"> + <routeDistribution last="0"> + <route cost="33.63" probability="1.00000000" edges="2/2to2/1 2/1to3/1 3/1to4/1 4/1to4/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car581" depart="581.00"> + <routeDistribution last="0"> + <route cost="61.16" probability="1.00000000" edges="2/3to1/3 1/3to2/3 2/3to3/3 3/3to4/3 4/3to4/2 4/2to4/1 4/1to4/0 4/0to3/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car582" depart="582.00"> + <routeDistribution last="0"> + <route cost="40.14" probability="1.00000000" edges="2/1to1/1 1/1to2/1 2/1to3/1 3/1to4/1 4/1to4/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car583" depart="583.00"> + <routeDistribution last="0"> + <route cost="46.60" probability="1.00000000" edges="1/4to1/3 1/3to1/2 1/2to1/1 1/1to1/0 1/0to2/0 2/0to2/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car584" depart="584.00"> + <routeDistribution last="0"> + <route cost="53.85" probability="1.00000000" edges="2/3to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to2/0 2/0to1/0 1/0to2/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car585" depart="585.00"> + <routeDistribution last="0"> + <route cost="43.71" probability="1.00000000" edges="2/3to2/4 2/4to1/4 1/4to0/4 0/4to0/3 0/3to0/2 0/2to0/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car586" depart="586.00"> + <routeDistribution last="0"> + <route cost="42.97" probability="1.00000000" edges="1/2to1/3 1/3to1/4 1/4to2/4 2/4to3/4 3/4to4/4 4/4to4/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car587" depart="587.00"> + <routeDistribution last="0"> + <route cost="49.52" probability="1.00000000" edges="3/1to3/2 3/2to3/3 3/3to2/3 2/3to1/3 1/3to0/3 0/3to0/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car588" depart="588.00"> + <routeDistribution last="0"> + <route cost="53.71" probability="1.00000000" edges="4/4to3/4 3/4to2/4 2/4to2/3 2/3to2/2 2/2to2/1 2/1to2/0 2/0to1/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car589" depart="589.00"> + <routeDistribution last="0"> + <route cost="14.85" probability="1.00000000" edges="4/3to3/3 3/3to2/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car590" depart="590.00"> + <routeDistribution last="0"> + <route cost="30.73" probability="1.00000000" edges="1/0to2/0 2/0to2/1 2/1to2/2 2/2to2/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car591" depart="591.00"> + <routeDistribution last="0"> + <route cost="46.26" probability="1.00000000" edges="2/2to2/3 2/3to2/2 2/2to1/2 1/2to1/1 1/1to0/1 0/1to0/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car592" depart="592.00"> + <routeDistribution last="0"> + <route cost="34.96" probability="1.00000000" edges="2/4to3/4 3/4to3/3 3/3to3/2 3/2to2/2 2/2to3/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car593" depart="593.00"> + <routeDistribution last="0"> + <route cost="58.36" probability="1.00000000" edges="1/3to1/4 1/4to2/4 2/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to2/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car594" depart="594.00"> + <routeDistribution last="0"> + <route cost="70.08" probability="1.00000000" edges="1/0to0/0 0/0to0/1 0/1to0/2 0/2to0/3 0/3to0/4 0/4to1/4 1/4to2/4 2/4to3/4 3/4to4/4 4/4to4/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car595" depart="595.00"> + <routeDistribution last="0"> + <route cost="29.14" probability="1.00000000" edges="1/3to1/4 1/4to2/4 2/4to3/4 3/4to4/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car596" depart="596.00"> + <routeDistribution last="0"> + <route cost="37.15" probability="1.00000000" edges="1/2to2/2 2/2to2/3 2/3to2/4 2/4to3/4 3/4to3/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car597" depart="597.00"> + <routeDistribution last="0"> + <route cost="47.73" probability="1.00000000" edges="1/4to1/3 1/3to1/2 1/2to2/2 2/2to3/2 3/2to3/1 3/1to3/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car598" depart="598.00"> + <routeDistribution last="0"> + <route cost="20.83" probability="1.00000000" edges="4/4to3/4 3/4to2/4 2/4to1/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car599" depart="599.00"> + <routeDistribution last="0"> + <route cost="49.20" probability="1.00000000" edges="3/1to4/1 4/1to3/1 3/1to2/1 2/1to1/1 1/1to0/1 0/1to0/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car600" depart="600.00"> + <routeDistribution last="0"> + <route cost="37.81" probability="1.00000000" edges="2/1to3/1 3/1to3/2 3/2to4/2 4/2to4/3 4/3to4/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car601" depart="601.00"> + <routeDistribution last="0"> + <route cost="44.04" probability="1.00000000" edges="2/4to1/4 1/4to2/4 2/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car602" depart="602.00"> + <routeDistribution last="0"> + <route cost="46.52" probability="1.00000000" edges="2/4to1/4 1/4to1/3 1/3to1/2 1/2to1/1 1/1to1/0 1/0to0/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car603" depart="603.00"> + <routeDistribution last="0"> + <route cost="65.19" probability="1.00000000" edges="4/0to3/0 3/0to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to0/4 0/4to0/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car604" depart="604.00"> + <routeDistribution last="0"> + <route cost="48.82" probability="1.00000000" edges="3/1to3/2 3/2to3/1 3/1to2/1 2/1to1/1 1/1to0/1 0/1to0/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car605" depart="605.00"> + <routeDistribution last="0"> + <route cost="40.92" probability="1.00000000" edges="4/3to3/3 3/3to2/3 2/3to1/3 1/3to0/3 0/3to0/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car606" depart="606.00"> + <routeDistribution last="0"> + <route cost="40.51" probability="1.00000000" edges="0/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to1/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car607" depart="607.00"> + <routeDistribution last="0"> + <route cost="52.21" probability="1.00000000" edges="0/4to1/4 1/4to2/4 2/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to4/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car608" depart="608.00"> + <routeDistribution last="0"> + <route cost="35.66" probability="1.00000000" edges="2/0to2/1 2/1to2/2 2/2to2/3 2/3to3/3 3/3to3/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car609" depart="609.00"> + <routeDistribution last="0"> + <route cost="54.64" probability="1.00000000" edges="3/2to3/3 3/3to3/2 3/2to2/2 2/2to2/1 2/1to1/1 1/1to0/1 0/1to1/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car610" depart="610.00"> + <routeDistribution last="0"> + <route cost="38.94" probability="1.00000000" edges="0/4to0/3 0/3to0/2 0/2to1/2 1/2to1/1 1/1to0/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car611" depart="611.00"> + <routeDistribution last="0"> + <route cost="49.66" probability="1.00000000" edges="1/3to1/4 1/4to2/4 2/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to2/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car612" depart="612.00"> + <routeDistribution last="0"> + <route cost="60.76" probability="1.00000000" edges="1/0to0/0 0/0to0/1 0/1to1/1 1/1to1/2 1/2to2/2 2/2to3/2 3/2to4/2 4/2to3/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car613" depart="613.00"> + <routeDistribution last="0"> + <route cost="13.35" probability="1.00000000" edges="3/3to3/2 3/2to3/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car614" depart="614.00"> + <routeDistribution last="0"> + <route cost="59.55" probability="1.00000000" edges="2/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to2/0 2/0to1/0 1/0to2/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car615" depart="615.00"> + <routeDistribution last="0"> + <route cost="29.23" probability="1.00000000" edges="1/1to2/1 2/1to2/2 2/2to2/3 2/3to2/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car616" depart="616.00"> + <routeDistribution last="0"> + <route cost="58.39" probability="1.00000000" edges="1/1to1/0 1/0to2/0 2/0to3/0 3/0to4/0 4/0to4/1 4/1to4/2 4/2to4/3 4/3to4/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car617" depart="617.00"> + <routeDistribution last="0"> + <route cost="35.95" probability="1.00000000" edges="1/2to1/1 1/1to0/1 0/1to0/2 0/2to0/3 0/3to0/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car618" depart="618.00"> + <routeDistribution last="0"> + <route cost="45.92" probability="1.00000000" edges="3/1to3/2 3/2to3/3 3/3to3/4 3/4to2/4 2/4to1/4 1/4to2/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car619" depart="619.00"> + <routeDistribution last="0"> + <route cost="37.15" probability="1.00000000" edges="4/3to4/2 4/2to3/2 3/2to3/3 3/3to3/4 3/4to2/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car620" depart="620.00"> + <routeDistribution last="0"> + <route cost="38.65" probability="1.00000000" edges="2/1to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to0/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car621" depart="621.00"> + <routeDistribution last="0"> + <route cost="21.65" probability="1.00000000" edges="2/2to1/2 1/2to1/1 1/1to0/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car622" depart="622.00"> + <routeDistribution last="0"> + <route cost="33.71" probability="1.00000000" edges="2/3to2/2 2/2to3/2 3/2to4/2 4/2to4/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car623" depart="623.00"> + <routeDistribution last="0"> + <route cost="62.55" probability="1.00000000" edges="3/1to4/1 4/1to3/1 3/1to2/1 2/1to1/1 1/1to0/1 0/1to0/2 0/2to0/3 0/3to1/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car624" depart="624.00"> + <routeDistribution last="0"> + <route cost="43.23" probability="1.00000000" edges="3/0to2/0 2/0to2/1 2/1to2/2 2/2to2/3 2/3to2/4 2/4to1/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car625" depart="625.00"> + <routeDistribution last="0"> + <route cost="23.16" probability="1.00000000" edges="1/1to2/1 2/1to3/1 3/1to3/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car626" depart="626.00"> + <routeDistribution last="0"> + <route cost="52.58" probability="1.00000000" edges="2/3to1/3 1/3to1/2 1/2to1/1 1/1to1/0 1/0to2/0 2/0to3/0 3/0to4/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car627" depart="627.00"> + <routeDistribution last="0"> + <route cost="30.34" probability="1.00000000" edges="0/1to1/1 1/1to1/0 1/0to2/0 2/0to3/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car628" depart="628.00"> + <routeDistribution last="0"> + <route cost="55.35" probability="1.00000000" edges="3/2to3/1 3/1to2/1 2/1to1/1 1/1to0/1 0/1to0/2 0/2to0/3 0/3to0/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car629" depart="629.00"> + <routeDistribution last="0"> + <route cost="50.16" probability="1.00000000" edges="3/3to3/2 3/2to3/1 3/1to3/0 3/0to2/0 2/0to1/0 1/0to0/0 0/0to0/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car630" depart="630.00"> + <routeDistribution last="0"> + <route cost="45.27" probability="1.00000000" edges="2/3to2/4 2/4to3/4 3/4to4/4 4/4to4/3 4/3to4/2 4/2to4/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car631" depart="631.00"> + <routeDistribution last="0"> + <route cost="37.13" probability="1.00000000" edges="2/0to2/1 2/1to3/1 3/1to3/2 3/2to4/2 4/2to4/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car632" depart="632.00"> + <routeDistribution last="0"> + <route cost="44.45" probability="1.00000000" edges="4/1to4/0 4/0to3/0 3/0to2/0 2/0to2/1 2/1to2/2 2/2to1/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car633" depart="633.00"> + <routeDistribution last="0"> + <route cost="49.71" probability="1.00000000" edges="1/0to2/0 2/0to3/0 3/0to4/0 4/0to4/1 4/1to4/2 4/2to4/3 4/3to4/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car634" depart="634.00"> + <routeDistribution last="0"> + <route cost="43.90" probability="1.00000000" edges="1/3to1/2 1/2to1/1 1/1to1/0 1/0to2/0 2/0to3/0 3/0to4/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car635" depart="635.00"> + <routeDistribution last="0"> + <route cost="40.24" probability="1.00000000" edges="4/2to3/2 3/2to2/2 2/2to1/2 1/2to0/2 0/2to1/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car636" depart="636.00"> + <routeDistribution last="0"> + <route cost="41.47" probability="1.00000000" edges="4/2to4/1 4/1to4/0 4/0to3/0 3/0to2/0 2/0to1/0 1/0to1/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car637" depart="637.00"> + <routeDistribution last="0"> + <route cost="34.27" probability="1.00000000" edges="4/1to4/0 4/0to3/0 3/0to2/0 2/0to1/0 1/0to1/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car638" depart="638.00"> + <routeDistribution last="0"> + <route cost="30.33" probability="1.00000000" edges="4/2to4/3 4/3to4/2 4/2to4/1 4/1to4/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car639" depart="639.00"> + <routeDistribution last="0"> + <route cost="44.23" probability="1.00000000" edges="0/0to0/1 0/1to1/1 1/1to1/2 1/2to2/2 2/2to2/3 2/3to3/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car640" depart="640.00"> + <routeDistribution last="0"> + <route cost="61.42" probability="1.00000000" edges="0/3to0/2 0/2to0/3 0/3to0/4 0/4to1/4 1/4to2/4 2/4to3/4 3/4to4/4 4/4to3/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car641" depart="641.00"> + <routeDistribution last="0"> + <route cost="42.97" probability="1.00000000" edges="1/2to1/3 1/3to1/4 1/4to2/4 2/4to3/4 3/4to4/4 4/4to4/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car642" depart="642.00"> + <routeDistribution last="0"> + <route cost="13.35" probability="1.00000000" edges="2/3to2/2 2/2to2/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car643" depart="643.00"> + <routeDistribution last="0"> + <route cost="45.20" probability="1.00000000" edges="4/3to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to4/0 4/0to4/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car644" depart="644.00"> + <routeDistribution last="0"> + <route cost="25.03" probability="1.00000000" edges="2/1to2/2 2/2to1/2 1/2to0/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car645" depart="645.00"> + <routeDistribution last="0"> + <route cost="37.13" probability="1.00000000" edges="1/0to1/1 1/1to2/1 2/1to2/2 2/2to3/2 3/2to3/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car646" depart="646.00"> + <routeDistribution last="0"> + <route cost="44.34" probability="1.00000000" edges="3/3to2/3 2/3to2/2 2/2to2/1 2/1to2/0 2/0to1/0 1/0to1/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car647" depart="647.00"> + <routeDistribution last="0"> + <route cost="13.64" probability="1.00000000" edges="4/0to4/1 4/1to4/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car648" depart="648.00"> + <routeDistribution last="0"> + <route cost="43.37" probability="1.00000000" edges="3/4to4/4 4/4to4/3 4/3to3/3 3/3to3/2 3/2to2/2 2/2to3/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car649" depart="649.00"> + <routeDistribution last="0"> + <route cost="53.05" probability="1.00000000" edges="0/2to0/3 0/3to1/3 1/3to2/3 2/3to3/3 3/3to3/2 3/2to3/1 3/1to3/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car650" depart="650.00"> + <routeDistribution last="0"> + <route cost="43.71" probability="1.00000000" edges="1/0to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to0/4 0/4to0/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car651" depart="651.00"> + <routeDistribution last="0"> + <route cost="23.53" probability="1.00000000" edges="1/3to1/2 1/2to1/1 1/1to2/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car652" depart="652.00"> + <routeDistribution last="0"> + <route cost="47.04" probability="1.00000000" edges="1/3to0/3 0/3to1/3 1/3to2/3 2/3to3/3 3/3to3/2 3/2to3/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car653" depart="653.00"> + <routeDistribution last="0"> + <route cost="38.64" probability="1.00000000" edges="0/0to0/1 0/1to1/1 1/1to2/1 2/1to3/1 3/1to2/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car654" depart="654.00"> + <routeDistribution last="0"> + <route cost="48.23" probability="1.00000000" edges="3/1to4/1 4/1to3/1 3/1to2/1 2/1to1/1 1/1to0/1 0/1to1/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car655" depart="655.00"> + <routeDistribution last="0"> + <route cost="20.55" probability="1.00000000" edges="2/0to2/1 2/1to2/2 2/2to2/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car656" depart="656.00"> + <routeDistribution last="0"> + <route cost="25.03" probability="1.00000000" edges="4/1to4/2 4/2to3/2 3/2to2/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car657" depart="657.00"> + <routeDistribution last="0"> + <route cost="45.47" probability="1.00000000" edges="4/2to4/1 4/1to3/1 3/1to2/1 2/1to1/1 1/1to1/2 1/2to2/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car658" depart="658.00"> + <routeDistribution last="0"> + <route cost="29.66" probability="1.00000000" edges="3/0to2/0 2/0to1/0 1/0to1/1 1/1to1/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car659" depart="659.00"> + <routeDistribution last="0"> + <route cost="46.01" probability="1.00000000" edges="3/2to4/2 4/2to4/3 4/3to4/4 4/4to3/4 3/4to2/4 2/4to3/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car660" depart="660.00"> + <routeDistribution last="0"> + <route cost="46.34" probability="1.00000000" edges="2/0to3/0 3/0to2/0 2/0to2/1 2/1to2/2 2/2to2/3 2/3to2/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car661" depart="661.00"> + <routeDistribution last="0"> + <route cost="37.96" probability="1.00000000" edges="3/1to3/0 3/0to2/0 2/0to1/0 1/0to1/1 1/1to1/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car662" depart="662.00"> + <routeDistribution last="0"> + <route cost="36.83" probability="1.00000000" edges="1/1to2/1 2/1to2/2 2/2to2/3 2/3to3/3 3/3to2/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car663" depart="663.00"> + <routeDistribution last="0"> + <route cost="47.74" probability="1.00000000" edges="4/1to3/1 3/1to2/1 2/1to1/1 1/1to0/1 0/1to0/2 0/2to0/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car664" depart="664.00"> + <routeDistribution last="0"> + <route cost="30.35" probability="1.00000000" edges="0/2to0/3 0/3to1/3 1/3to2/3 2/3to3/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car665" depart="665.00"> + <routeDistribution last="0"> + <route cost="37.15" probability="1.00000000" edges="0/1to1/1 1/1to1/2 1/2to1/3 1/3to2/3 2/3to2/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car666" depart="666.00"> + <routeDistribution last="0"> + <route cost="47.33" probability="1.00000000" edges="2/2to3/2 3/2to2/2 2/2to1/2 1/2to0/2 0/2to0/3 0/3to0/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car667" depart="667.00"> + <routeDistribution last="0"> + <route cost="52.46" probability="1.00000000" edges="1/1to0/1 0/1to0/2 0/2to0/3 0/3to0/4 0/4to1/4 1/4to2/4 2/4to1/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car668" depart="668.00"> + <routeDistribution last="0"> + <route cost="23.53" probability="1.00000000" edges="0/2to1/2 1/2to2/2 2/2to2/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car669" depart="669.00"> + <routeDistribution last="0"> + <route cost="40.22" probability="1.00000000" edges="3/4to2/4 2/4to2/3 2/3to2/2 2/2to2/1 2/1to2/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car670" depart="670.00"> + <routeDistribution last="0"> + <route cost="23.53" probability="1.00000000" edges="0/1to1/1 1/1to2/1 2/1to2/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car671" depart="671.00"> + <routeDistribution last="0"> + <route cost="36.85" probability="1.00000000" edges="3/4to2/4 2/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car672" depart="672.00"> + <routeDistribution last="0"> + <route cost="56.86" probability="1.00000000" edges="2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to2/4 2/4to3/4 3/4to3/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car673" depart="673.00"> + <routeDistribution last="0"> + <route cost="43.71" probability="1.00000000" edges="3/2to4/2 4/2to4/3 4/3to4/4 4/4to3/4 3/4to2/4 2/4to1/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car674" depart="674.00"> + <routeDistribution last="0"> + <route cost="28.45" probability="1.00000000" edges="0/1to0/2 0/2to1/2 1/2to1/3 1/3to2/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car675" depart="675.00"> + <routeDistribution last="0"> + <route cost="65.46" probability="1.00000000" edges="0/2to0/1 0/1to0/2 0/2to0/3 0/3to0/4 0/4to1/4 1/4to2/4 2/4to3/4 3/4to4/4 4/4to4/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car676" depart="676.00"> + <routeDistribution last="0"> + <route cost="57.22" probability="1.00000000" edges="4/2to4/3 4/3to4/2 4/2to3/2 3/2to2/2 2/2to1/2 1/2to0/2 0/2to0/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car677" depart="677.00"> + <routeDistribution last="0"> + <route cost="64.30" probability="1.00000000" edges="4/2to4/3 4/3to4/2 4/2to3/2 3/2to3/1 3/1to2/1 2/1to1/1 1/1to0/1 0/1to0/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car678" depart="678.00"> + <routeDistribution last="0"> + <route cost="35.66" probability="1.00000000" edges="2/0to2/1 2/1to2/2 2/2to2/3 2/3to3/3 3/3to3/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car679" depart="679.00"> + <routeDistribution last="0"> + <route cost="46.93" probability="1.00000000" edges="4/4to4/3 4/3to3/3 3/3to3/4 3/4to2/4 2/4to1/4 1/4to2/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car680" depart="680.00"> + <routeDistribution last="0"> + <route cost="44.04" probability="1.00000000" edges="1/4to2/4 2/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to3/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car681" depart="681.00"> + <routeDistribution last="0"> + <route cost="37.16" probability="1.00000000" edges="3/1to2/1 2/1to1/1 1/1to1/2 1/2to1/3 1/3to2/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car682" depart="682.00"> + <routeDistribution last="0"> + <route cost="35.35" probability="1.00000000" edges="1/0to1/1 1/1to1/2 1/2to1/3 1/3to2/3 2/3to1/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car683" depart="683.00"> + <routeDistribution last="0"> + <route cost="30.63" probability="1.00000000" edges="0/0to1/0 1/0to1/1 1/1to1/2 1/2to2/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car684" depart="684.00"> + <routeDistribution last="0"> + <route cost="36.46" probability="1.00000000" edges="1/1to2/1 2/1to1/1 1/1to1/2 1/2to1/3 1/3to2/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car685" depart="685.00"> + <routeDistribution last="0"> + <route cost="48.16" probability="1.00000000" edges="1/2to1/3 1/3to2/3 2/3to3/3 3/3to4/3 4/3to4/2 4/2to4/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car686" depart="686.00"> + <routeDistribution last="0"> + <route cost="42.32" probability="1.00000000" edges="3/2to3/3 3/3to2/3 2/3to1/3 1/3to0/3 0/3to0/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car687" depart="687.00"> + <routeDistribution last="0"> + <route cost="46.60" probability="1.00000000" edges="3/4to2/4 2/4to2/3 2/3to2/2 2/2to2/1 2/1to2/0 2/0to3/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car688" depart="688.00"> + <routeDistribution last="0"> + <route cost="32.13" probability="1.00000000" edges="3/3to3/2 3/2to3/1 3/1to4/1 4/1to4/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car689" depart="689.00"> + <routeDistribution last="0"> + <route cost="20.83" probability="1.00000000" edges="0/3to0/2 0/2to0/1 0/1to0/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car690" depart="690.00"> + <routeDistribution last="0"> + <route cost="31.45" probability="1.00000000" edges="2/4to2/3 2/3to3/3 3/3to3/2 3/2to2/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car691" depart="691.00"> + <routeDistribution last="0"> + <route cost="39.05" probability="1.00000000" edges="0/1to0/2 0/2to1/2 1/2to2/2 2/2to3/2 3/2to4/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car692" depart="692.00"> + <routeDistribution last="0"> + <route cost="24.65" probability="1.00000000" edges="2/0to2/1 2/1to1/1 1/1to1/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car693" depart="693.00"> + <routeDistribution last="0"> + <route cost="46.34" probability="1.00000000" edges="1/1to1/0 1/0to1/1 1/1to2/1 2/1to3/1 3/1to4/1 4/1to3/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car694" depart="694.00"> + <routeDistribution last="0"> + <route cost="30.32" probability="1.00000000" edges="0/1to1/1 1/1to1/2 1/2to2/2 2/2to2/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car695" depart="695.00"> + <routeDistribution last="0"> + <route cost="37.15" probability="1.00000000" edges="1/2to2/2 2/2to2/3 2/3to2/4 2/4to3/4 3/4to3/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car696" depart="696.00"> + <routeDistribution last="0"> + <route cost="33.71" probability="1.00000000" edges="3/2to3/3 3/3to2/3 2/3to1/3 1/3to1/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car697" depart="697.00"> + <routeDistribution last="0"> + <route cost="39.03" probability="1.00000000" edges="2/4to2/3 2/3to2/2 2/2to3/2 3/2to3/1 3/1to3/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car698" depart="698.00"> + <routeDistribution last="0"> + <route cost="56.32" probability="1.00000000" edges="0/4to0/3 0/3to0/2 0/2to1/2 1/2to2/2 2/2to3/2 3/2to3/1 3/1to2/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car699" depart="699.00"> + <routeDistribution last="0"> + <route cost="38.72" probability="1.00000000" edges="1/1to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to0/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car700" depart="700.00"> + <routeDistribution last="0"> + <route cost="53.82" probability="1.00000000" edges="0/1to1/1 1/1to1/2 1/2to2/2 2/2to2/3 2/3to3/3 3/3to4/3 4/3to3/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car701" depart="701.00"> + <routeDistribution last="0"> + <route cost="25.03" probability="1.00000000" edges="3/0to3/1 3/1to2/1 2/1to1/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car702" depart="702.00"> + <routeDistribution last="0"> + <route cost="46.92" probability="1.00000000" edges="2/2to2/1 2/1to2/2 2/2to3/2 3/2to3/3 3/3to4/3 4/3to4/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car703" depart="703.00"> + <routeDistribution last="0"> + <route cost="29.23" probability="1.00000000" edges="4/3to3/3 3/3to3/2 3/2to3/1 3/1to3/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car704" depart="704.00"> + <routeDistribution last="0"> + <route cost="38.33" probability="1.00000000" edges="3/3to3/4 3/4to3/3 3/3to2/3 2/3to1/3 1/3to1/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car705" depart="705.00"> + <routeDistribution last="0"> + <route cost="67.21" probability="1.00000000" edges="2/0to3/0 3/0to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to0/4 0/4to0/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car706" depart="706.00"> + <routeDistribution last="0"> + <route cost="44.16" probability="1.00000000" edges="3/4to2/4 2/4to3/4 3/4to4/4 4/4to4/3 4/3to4/2 4/2to4/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car707" depart="707.00"> + <routeDistribution last="0"> + <route cost="38.36" probability="1.00000000" edges="2/3to2/4 2/4to3/4 3/4to4/4 4/4to4/3 4/3to4/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car708" depart="708.00"> + <routeDistribution last="0"> + <route cost="48.95" probability="1.00000000" edges="4/0to3/0 3/0to2/0 2/0to1/0 1/0to0/0 0/0to0/1 0/1to0/2 0/2to1/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car709" depart="709.00"> + <routeDistribution last="0"> + <route cost="38.35" probability="1.00000000" edges="3/2to3/1 3/1to3/0 3/0to2/0 2/0to1/0 1/0to2/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car710" depart="710.00"> + <routeDistribution last="0"> + <route cost="33.34" probability="1.00000000" edges="1/2to1/1 1/1to2/1 2/1to3/1 3/1to3/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car711" depart="711.00"> + <routeDistribution last="0"> + <route cost="41.47" probability="1.00000000" edges="2/4to3/4 3/4to4/4 4/4to4/3 4/3to4/2 4/2to4/1 4/1to3/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car712" depart="712.00"> + <routeDistribution last="0"> + <route cost="45.53" probability="1.00000000" edges="1/0to2/0 2/0to2/1 2/1to2/2 2/2to2/3 2/3to3/3 3/3to2/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car713" depart="713.00"> + <routeDistribution last="0"> + <route cost="35.66" probability="1.00000000" edges="3/2to3/1 3/1to2/1 2/1to2/2 2/2to2/3 2/3to2/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car714" depart="714.00"> + <routeDistribution last="0"> + <route cost="42.97" probability="1.00000000" edges="1/3to1/4 1/4to2/4 2/4to3/4 3/4to4/4 4/4to4/3 4/3to4/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car715" depart="715.00"> + <routeDistribution last="0"> + <route cost="49.71" probability="1.00000000" edges="0/0to1/0 1/0to2/0 2/0to3/0 3/0to4/0 4/0to4/1 4/1to4/2 4/2to4/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car716" depart="716.00"> + <routeDistribution last="0"> + <route cost="54.84" probability="1.00000000" edges="4/3to4/2 4/2to3/2 3/2to2/2 2/2to1/2 1/2to0/2 0/2to0/3 0/3to0/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car717" depart="717.00"> + <routeDistribution last="0"> + <route cost="37.44" probability="1.00000000" edges="4/4to4/3 4/3to3/3 3/3to3/2 3/2to2/2 2/2to1/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car718" depart="718.00"> + <routeDistribution last="0"> + <route cost="37.53" probability="1.00000000" edges="1/1to2/1 2/1to2/2 2/2to2/3 2/3to2/4 2/4to3/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car719" depart="719.00"> + <routeDistribution last="0"> + <route cost="55.34" probability="1.00000000" edges="1/1to0/1 0/1to1/1 1/1to1/2 1/2to2/2 2/2to3/2 3/2to4/2 4/2to4/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car720" depart="720.00"> + <routeDistribution last="0"> + <route cost="37.04" probability="1.00000000" edges="1/4to0/4 0/4to1/4 1/4to1/3 1/3to1/2 1/2to0/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car721" depart="721.00"> + <routeDistribution last="0"> + <route cost="54.80" probability="1.00000000" edges="0/2to1/2 1/2to1/3 1/3to1/4 1/4to2/4 2/4to3/4 3/4to4/4 4/4to3/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car722" depart="722.00"> + <routeDistribution last="0"> + <route cost="61.05" probability="1.00000000" edges="4/2to4/1 4/1to3/1 3/1to2/1 2/1to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to1/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car723" depart="723.00"> + <routeDistribution last="0"> + <route cost="43.66" probability="1.00000000" edges="2/0to3/0 3/0to2/0 2/0to2/1 2/1to2/2 2/2to2/3 2/3to3/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car724" depart="724.00"> + <routeDistribution last="0"> + <route cost="51.71" probability="1.00000000" edges="1/1to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to0/4 0/4to0/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car725" depart="725.00"> + <routeDistribution last="0"> + <route cost="48.91" probability="1.00000000" edges="1/2to0/2 0/2to1/2 1/2to2/2 2/2to3/2 3/2to4/2 4/2to4/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car726" depart="726.00"> + <routeDistribution last="0"> + <route cost="52.72" probability="1.00000000" edges="2/4to1/4 1/4to2/4 2/4to2/3 2/3to2/2 2/2to2/1 2/1to2/0 2/0to3/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car727" depart="727.00"> + <routeDistribution last="0"> + <route cost="20.83" probability="1.00000000" edges="1/4to2/4 2/4to3/4 3/4to4/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car728" depart="728.00"> + <routeDistribution last="0"> + <route cost="33.73" probability="1.00000000" edges="3/1to3/2 3/2to2/2 2/2to1/2 1/2to0/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car729" depart="729.00"> + <routeDistribution last="0"> + <route cost="59.55" probability="1.00000000" edges="1/0to0/0 0/0to0/1 0/1to1/1 1/1to1/2 1/2to2/2 2/2to2/3 2/3to3/3 3/3to4/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car730" depart="730.00"> + <routeDistribution last="0"> + <route cost="52.37" probability="1.00000000" edges="1/0to0/0 0/0to0/1 0/1to1/1 1/1to1/2 1/2to2/2 2/2to3/2 3/2to3/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car731" depart="731.00"> + <routeDistribution last="0"> + <route cost="39.46" probability="1.00000000" edges="2/2to2/1 2/1to2/2 2/2to3/2 3/2to4/2 4/2to4/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car732" depart="732.00"> + <routeDistribution last="0"> + <route cost="36.71" probability="1.00000000" edges="2/3to2/2 2/2to2/1 2/1to2/0 2/0to3/0 3/0to4/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car733" depart="733.00"> + <routeDistribution last="0"> + <route cost="42.44" probability="1.00000000" edges="4/0to3/0 3/0to3/1 3/1to3/2 3/2to3/3 3/3to4/3 4/3to3/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car734" depart="734.00"> + <routeDistribution last="0"> + <route cost="37.42" probability="1.00000000" edges="0/0to0/1 0/1to1/1 1/1to1/2 1/2to2/2 2/2to2/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car735" depart="735.00"> + <routeDistribution last="0"> + <route cost="53.11" probability="1.00000000" edges="1/4to1/3 1/3to1/2 1/2to1/1 1/1to1/0 1/0to2/0 2/0to3/0 3/0to2/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car736" depart="736.00"> + <routeDistribution last="0"> + <route cost="44.61" probability="1.00000000" edges="0/0to0/1 0/1to1/1 1/1to1/2 1/2to1/3 1/3to2/3 2/3to2/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car737" depart="737.00"> + <routeDistribution last="0"> + <route cost="43.93" probability="1.00000000" edges="0/0to0/1 0/1to1/1 1/1to1/2 1/2to1/3 1/3to2/3 2/3to1/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car738" depart="738.00"> + <routeDistribution last="0"> + <route cost="62.61" probability="1.00000000" edges="1/2to1/1 1/1to1/2 1/2to2/2 2/2to2/3 2/3to3/3 3/3to4/3 4/3to4/4 4/4to3/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car739" depart="739.00"> + <routeDistribution last="0"> + <route cost="60.52" probability="1.00000000" edges="0/0to1/0 1/0to2/0 2/0to2/1 2/1to2/2 2/2to2/3 2/3to2/4 2/4to3/4 3/4to3/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car740" depart="740.00"> + <routeDistribution last="0"> + <route cost="44.41" probability="1.00000000" edges="3/1to3/0 3/0to3/1 3/1to3/2 3/2to3/3 3/3to3/4 3/4to2/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car741" depart="741.00"> + <routeDistribution last="0"> + <route cost="50.04" probability="1.00000000" edges="4/2to3/2 3/2to2/2 2/2to1/2 1/2to0/2 0/2to0/3 0/3to0/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car742" depart="742.00"> + <routeDistribution last="0"> + <route cost="40.91" probability="1.00000000" edges="1/0to2/0 2/0to2/1 2/1to2/2 2/2to2/3 2/3to1/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car743" depart="743.00"> + <routeDistribution last="0"> + <route cost="37.13" probability="1.00000000" edges="3/4to3/3 3/3to2/3 2/3to2/2 2/2to1/2 1/2to1/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car744" depart="744.00"> + <routeDistribution last="0"> + <route cost="42.54" probability="1.00000000" edges="2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to1/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car745" depart="745.00"> + <routeDistribution last="0"> + <route cost="27.35" probability="1.00000000" edges="2/0to2/1 2/1to2/2 2/2to2/3 2/3to3/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car746" depart="746.00"> + <routeDistribution last="0"> + <route cost="52.54" probability="1.00000000" edges="4/4to4/3 4/3to3/3 3/3to3/2 3/2to2/2 2/2to2/1 2/1to1/1 1/1to1/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car747" depart="747.00"> + <routeDistribution last="0"> + <route cost="38.33" probability="1.00000000" edges="3/3to2/3 2/3to1/3 1/3to1/2 1/2to0/2 0/2to1/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car748" depart="748.00"> + <routeDistribution last="0"> + <route cost="45.44" probability="1.00000000" edges="2/1to1/1 1/1to1/2 1/2to2/2 2/2to2/3 2/3to3/3 3/3to3/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car749" depart="749.00"> + <routeDistribution last="0"> + <route cost="44.82" probability="1.00000000" edges="2/3to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to4/0 4/0to4/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car750" depart="750.00"> + <routeDistribution last="0"> + <route cost="29.95" probability="1.00000000" edges="2/2to1/2 1/2to1/1 1/1to0/1 0/1to0/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car751" depart="751.00"> + <routeDistribution last="0"> + <route cost="57.22" probability="1.00000000" edges="0/2to0/1 0/1to0/2 0/2to1/2 1/2to2/2 2/2to3/2 3/2to4/2 4/2to4/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car752" depart="752.00"> + <routeDistribution last="0"> + <route cost="40.15" probability="1.00000000" edges="4/1to4/2 4/2to3/2 3/2to2/2 2/2to2/3 2/3to3/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car753" depart="753.00"> + <routeDistribution last="0"> + <route cost="56.71" probability="1.00000000" edges="0/1to0/0 0/0to1/0 1/0to2/0 2/0to3/0 3/0to4/0 4/0to4/1 4/1to4/2 4/2to4/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car754" depart="754.00"> + <routeDistribution last="0"> + <route cost="48.16" probability="1.00000000" edges="1/3to1/2 1/2to1/3 1/3to2/3 2/3to3/3 3/3to4/3 4/3to4/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car755" depart="755.00"> + <routeDistribution last="0"> + <route cost="28.85" probability="1.00000000" edges="3/2to3/1 3/1to3/0 3/0to2/0 2/0to1/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car756" depart="756.00"> + <routeDistribution last="0"> + <route cost="20.27" probability="1.00000000" edges="0/2to0/3 0/3to0/4 0/4to1/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car757" depart="757.00"> + <routeDistribution last="0"> + <route cost="45.02" probability="1.00000000" edges="1/1to2/1 2/1to2/2 2/2to2/3 2/3to2/4 2/4to3/4 3/4to4/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car758" depart="758.00"> + <routeDistribution last="0"> + <route cost="44.53" probability="1.00000000" edges="2/0to1/0 1/0to2/0 2/0to3/0 3/0to4/0 4/0to4/1 4/1to4/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car759" depart="759.00"> + <routeDistribution last="0"> + <route cost="51.36" probability="1.00000000" edges="0/4to0/3 0/3to0/4 0/4to1/4 1/4to2/4 2/4to3/4 3/4to4/4 4/4to4/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car760" depart="760.00"> + <routeDistribution last="0"> + <route cost="66.89" probability="1.00000000" edges="4/3to4/4 4/4to3/4 3/4to2/4 2/4to1/4 1/4to0/4 0/4to0/3 0/3to0/2 0/2to0/1 0/1to1/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car761" depart="761.00"> + <routeDistribution last="0"> + <route cost="23.16" probability="1.00000000" edges="1/3to2/3 2/3to3/3 3/3to3/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car762" depart="762.00"> + <routeDistribution last="0"> + <route cost="41.85" probability="1.00000000" edges="4/3to4/2 4/2to4/1 4/1to4/0 4/0to3/0 3/0to2/0 2/0to1/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car763" depart="763.00"> + <routeDistribution last="0"> + <route cost="46.11" probability="1.00000000" edges="3/3to3/2 3/2to2/2 2/2to2/1 2/1to1/1 1/1to0/1 0/1to0/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car764" depart="764.00"> + <routeDistribution last="0"> + <route cost="59.66" probability="1.00000000" edges="1/2to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to2/4 2/4to3/4 3/4to4/4 4/4to4/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car765" depart="765.00"> + <routeDistribution last="0"> + <route cost="44.63" probability="1.00000000" edges="2/2to2/1 2/1to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to0/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car766" depart="766.00"> + <routeDistribution last="0"> + <route cost="37.13" probability="1.00000000" edges="4/3to3/3 3/3to3/2 3/2to2/2 2/2to2/1 2/1to1/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car767" depart="767.00"> + <routeDistribution last="0"> + <route cost="61.03" probability="1.00000000" edges="0/2to0/3 0/3to1/3 1/3to1/2 1/2to1/1 1/1to1/0 1/0to2/0 2/0to3/0 3/0to2/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car768" depart="768.00"> + <routeDistribution last="0"> + <route cost="29.95" probability="1.00000000" edges="3/3to4/3 4/3to4/2 4/2to3/2 3/2to3/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car769" depart="769.00"> + <routeDistribution last="0"> + <route cost="20.27" probability="1.00000000" edges="0/2to0/3 0/3to0/4 0/4to1/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car770" depart="770.00"> + <routeDistribution last="0"> + <route cost="49.34" probability="1.00000000" edges="3/2to4/2 4/2to3/2 3/2to2/2 2/2to1/2 1/2to1/3 1/3to1/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car771" depart="771.00"> + <routeDistribution last="0"> + <route cost="30.62" probability="1.00000000" edges="0/3to0/2 0/2to0/1 0/1to0/0 0/0to0/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car772" depart="772.00"> + <routeDistribution last="0"> + <route cost="43.73" probability="1.00000000" edges="2/3to2/4 2/4to2/3 2/3to2/2 2/2to2/1 2/1to2/0 2/0to2/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car773" depart="773.00"> + <routeDistribution last="0"> + <route cost="54.18" probability="1.00000000" edges="0/1to0/0 0/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to0/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car774" depart="774.00"> + <routeDistribution last="0"> + <route cost="37.15" probability="1.00000000" edges="0/2to1/2 1/2to1/3 1/3to1/4 1/4to2/4 2/4to2/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car775" depart="775.00"> + <routeDistribution last="0"> + <route cost="29.97" probability="1.00000000" edges="1/2to2/2 2/2to2/1 2/1to2/0 2/0to1/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car776" depart="776.00"> + <routeDistribution last="0"> + <route cost="54.16" probability="1.00000000" edges="0/2to0/3 0/3to1/3 1/3to2/3 2/3to3/3 3/3to4/3 4/3to4/2 4/2to3/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car777" depart="777.00"> + <routeDistribution last="0"> + <route cost="37.24" probability="1.00000000" edges="4/2to3/2 3/2to3/3 3/3to4/3 4/3to4/4 4/4to3/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car778" depart="778.00"> + <routeDistribution last="0"> + <route cost="51.84" probability="1.00000000" edges="2/3to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to2/0 2/0to1/0 1/0to0/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car779" depart="779.00"> + <routeDistribution last="0"> + <route cost="38.35" probability="1.00000000" edges="1/3to0/3 0/3to1/3 1/3to2/3 2/3to2/2 2/2to2/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car780" depart="780.00"> + <routeDistribution last="0"> + <route cost="39.83" probability="1.00000000" edges="2/0to3/0 3/0to2/0 2/0to2/1 2/1to2/2 2/2to1/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car781" depart="781.00"> + <routeDistribution last="0"> + <route cost="31.15" probability="1.00000000" edges="1/1to2/1 2/1to3/1 3/1to3/0 3/0to3/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car782" depart="782.00"> + <routeDistribution last="0"> + <route cost="44.71" probability="1.00000000" edges="2/4to2/3 2/3to1/3 1/3to1/2 1/2to1/1 1/1to1/0 1/0to2/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car783" depart="783.00"> + <routeDistribution last="0"> + <route cost="31.85" probability="1.00000000" edges="4/3to3/3 3/3to2/3 2/3to1/3 1/3to1/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car784" depart="784.00"> + <routeDistribution last="0"> + <route cost="51.52" probability="1.00000000" edges="3/0to2/0 2/0to2/1 2/1to2/2 2/2to2/3 2/3to3/3 3/3to3/4 3/4to2/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car785" depart="785.00"> + <routeDistribution last="0"> + <route cost="43.71" probability="1.00000000" edges="3/4to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to4/0 4/0to4/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car786" depart="786.00"> + <routeDistribution last="0"> + <route cost="52.50" probability="1.00000000" edges="4/3to4/4 4/4to3/4 3/4to2/4 2/4to1/4 1/4to0/4 0/4to0/3 0/3to1/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car787" depart="787.00"> + <routeDistribution last="0"> + <route cost="47.84" probability="1.00000000" edges="1/3to1/2 1/2to1/3 1/3to2/3 2/3to3/3 3/3to4/3 4/3to3/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car788" depart="788.00"> + <routeDistribution last="0"> + <route cost="33.34" probability="1.00000000" edges="1/2to2/2 2/2to3/2 3/2to3/1 3/1to4/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car789" depart="789.00"> + <routeDistribution last="0"> + <route cost="38.72" probability="1.00000000" edges="2/2to2/1 2/1to2/2 2/2to2/3 2/3to2/4 2/4to1/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car790" depart="790.00"> + <routeDistribution last="0"> + <route cost="45.16" probability="1.00000000" edges="1/1to2/1 2/1to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to2/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car791" depart="791.00"> + <routeDistribution last="0"> + <route cost="43.24" probability="1.00000000" edges="3/4to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to2/0 2/0to1/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car792" depart="792.00"> + <routeDistribution last="0"> + <route cost="37.26" probability="1.00000000" edges="0/3to0/4 0/4to1/4 1/4to2/4 2/4to2/3 2/3to3/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car793" depart="793.00"> + <routeDistribution last="0"> + <route cost="13.35" probability="1.00000000" edges="2/4to2/3 2/3to2/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car794" depart="794.00"> + <routeDistribution last="0"> + <route cost="31.84" probability="1.00000000" edges="3/1to3/2 3/2to3/3 3/3to2/3 2/3to2/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car795" depart="795.00"> + <routeDistribution last="0"> + <route cost="36.76" probability="1.00000000" edges="4/3to4/2 4/2to3/2 3/2to3/1 3/1to2/1 2/1to2/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car796" depart="796.00"> + <routeDistribution last="0"> + <route cost="22.03" probability="1.00000000" edges="3/2to2/2 2/2to2/1 2/1to2/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car797" depart="797.00"> + <routeDistribution last="0"> + <route cost="33.34" probability="1.00000000" edges="1/2to2/2 2/2to3/2 3/2to3/1 3/1to4/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car798" depart="798.00"> + <routeDistribution last="0"> + <route cost="55.71" probability="1.00000000" edges="3/3to4/3 4/3to3/3 3/3to3/2 3/2to2/2 2/2to1/2 1/2to0/2 0/2to0/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car799" depart="799.00"> + <routeDistribution last="0"> + <route cost="37.44" probability="1.00000000" edges="4/4to4/3 4/3to3/3 3/3to3/2 3/2to2/2 2/2to1/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car800" depart="800.00"> + <routeDistribution last="0"> + <route cost="20.55" probability="1.00000000" edges="2/0to2/1 2/1to2/2 2/2to2/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car801" depart="801.00"> + <routeDistribution last="0"> + <route cost="31.16" probability="1.00000000" edges="2/3to2/2 2/2to2/3 2/3to3/3 3/3to4/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car802" depart="802.00"> + <routeDistribution last="0"> + <route cost="68.61" probability="1.00000000" edges="1/4to0/4 0/4to1/4 1/4to2/4 2/4to3/4 3/4to4/4 4/4to4/3 4/3to4/2 4/2to4/1 4/1to4/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car803" depart="803.00"> + <routeDistribution last="0"> + <route cost="52.58" probability="1.00000000" edges="2/3to1/3 1/3to1/2 1/2to1/1 1/1to1/0 1/0to2/0 2/0to3/0 3/0to4/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car804" depart="804.00"> + <routeDistribution last="0"> + <route cost="38.66" probability="1.00000000" edges="0/2to0/3 0/3to1/3 1/3to2/3 2/3to3/3 3/3to3/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car805" depart="805.00"> + <routeDistribution last="0"> + <route cost="45.02" probability="1.00000000" edges="3/1to2/1 2/1to2/2 2/2to2/3 2/3to2/4 2/4to1/4 1/4to0/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car806" depart="806.00"> + <routeDistribution last="0"> + <route cost="51.92" probability="1.00000000" edges="3/0to4/0 4/0to3/0 3/0to2/0 2/0to1/0 1/0to0/0 0/0to0/1 0/1to0/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car807" depart="807.00"> + <routeDistribution last="0"> + <route cost="40.51" probability="1.00000000" edges="4/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to3/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car808" depart="808.00"> + <routeDistribution last="0"> + <route cost="50.45" probability="1.00000000" edges="2/0to1/0 1/0to1/1 1/1to1/2 1/2to2/2 2/2to2/3 2/3to3/3 3/3to2/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car809" depart="809.00"> + <routeDistribution last="0"> + <route cost="52.02" probability="1.00000000" edges="4/3to4/4 4/4to3/4 3/4to2/4 2/4to2/3 2/3to2/2 2/2to2/1 2/1to1/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car810" depart="810.00"> + <routeDistribution last="0"> + <route cost="28.44" probability="1.00000000" edges="0/0to0/1 0/1to0/2 0/2to1/2 1/2to0/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car811" depart="811.00"> + <routeDistribution last="0"> + <route cost="46.74" probability="1.00000000" edges="0/0to1/0 1/0to0/0 0/0to0/1 0/1to0/2 0/2to0/3 0/3to0/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car812" depart="812.00"> + <routeDistribution last="0"> + <route cost="44.53" probability="1.00000000" edges="2/0to3/0 3/0to4/0 4/0to4/1 4/1to4/2 4/2to4/3 4/3to4/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car813" depart="813.00"> + <routeDistribution last="0"> + <route cost="48.39" probability="1.00000000" edges="0/3to0/4 0/4to1/4 1/4to2/4 2/4to3/4 3/4to4/4 4/4to4/3 4/3to3/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car814" depart="814.00"> + <routeDistribution last="0"> + <route cost="31.16" probability="1.00000000" edges="2/1to2/2 2/2to2/1 2/1to1/1 1/1to0/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car815" depart="815.00"> + <routeDistribution last="0"> + <route cost="29.65" probability="1.00000000" edges="2/1to2/0 2/0to2/1 2/1to3/1 3/1to4/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car816" depart="816.00"> + <routeDistribution last="0"> + <route cost="37.62" probability="1.00000000" edges="3/4to2/4 2/4to1/4 1/4to0/4 0/4to0/3 0/3to0/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car817" depart="817.00"> + <routeDistribution last="0"> + <route cost="45.83" probability="1.00000000" edges="3/1to3/2 3/2to3/1 3/1to3/0 3/0to2/0 2/0to1/0 1/0to0/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car818" depart="818.00"> + <routeDistribution last="0"> + <route cost="53.01" probability="1.00000000" edges="4/4to3/4 3/4to2/4 2/4to2/3 2/3to2/2 2/2to2/1 2/1to1/1 1/1to2/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car819" depart="819.00"> + <routeDistribution last="0"> + <route cost="41.58" probability="1.00000000" edges="1/0to0/0 0/0to0/1 0/1to0/2 0/2to0/3 0/3to0/4 0/4to1/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car820" depart="820.00"> + <routeDistribution last="0"> + <route cost="35.77" probability="1.00000000" edges="2/3to2/4 2/4to3/4 3/4to4/4 4/4to4/3 4/3to4/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car821" depart="821.00"> + <routeDistribution last="0"> + <route cost="37.44" probability="1.00000000" edges="1/0to1/1 1/1to2/1 2/1to2/0 2/0to3/0 3/0to4/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car822" depart="822.00"> + <routeDistribution last="0"> + <route cost="23.82" probability="1.00000000" edges="2/1to1/1 1/1to0/1 0/1to0/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car823" depart="823.00"> + <routeDistribution last="0"> + <route cost="36.05" probability="1.00000000" edges="2/4to2/3 2/3to2/2 2/2to2/1 2/1to2/0 2/0to1/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car824" depart="824.00"> + <routeDistribution last="0"> + <route cost="30.34" probability="1.00000000" edges="3/2to2/2 2/2to1/2 1/2to1/1 1/1to0/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car825" depart="825.00"> + <routeDistribution last="0"> + <route cost="37.15" probability="1.00000000" edges="4/1to3/1 3/1to3/0 3/0to2/0 2/0to1/0 1/0to1/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car826" depart="826.00"> + <routeDistribution last="0"> + <route cost="55.35" probability="1.00000000" edges="1/2to0/2 0/2to1/2 1/2to2/2 2/2to3/2 3/2to4/2 4/2to4/1 4/1to3/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car827" depart="827.00"> + <routeDistribution last="0"> + <route cost="52.58" probability="1.00000000" edges="2/3to1/3 1/3to1/2 1/2to1/1 1/1to1/0 1/0to2/0 2/0to3/0 3/0to4/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car828" depart="828.00"> + <routeDistribution last="0"> + <route cost="13.64" probability="1.00000000" edges="4/0to3/0 3/0to2/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car829" depart="829.00"> + <routeDistribution last="0"> + <route cost="20.16" probability="1.00000000" edges="3/4to3/3 3/3to3/2 3/2to2/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car830" depart="830.00"> + <routeDistribution last="0"> + <route cost="38.66" probability="1.00000000" edges="1/2to2/2 2/2to3/2 3/2to3/1 3/1to3/0 3/0to2/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car831" depart="831.00"> + <routeDistribution last="0"> + <route cost="30.35" probability="1.00000000" edges="1/0to1/1 1/1to2/1 2/1to3/1 3/1to4/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car832" depart="832.00"> + <routeDistribution last="0"> + <route cost="38.72" probability="1.00000000" edges="2/2to2/3 2/3to2/2 2/2to2/1 2/1to2/0 2/0to3/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car833" depart="833.00"> + <routeDistribution last="0"> + <route cost="30.05" probability="1.00000000" edges="0/4to0/3 0/3to0/4 0/4to1/4 1/4to2/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car834" depart="834.00"> + <routeDistribution last="0"> + <route cost="37.96" probability="1.00000000" edges="1/0to1/1 1/1to2/1 2/1to3/1 3/1to3/0 3/0to3/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car835" depart="835.00"> + <routeDistribution last="0"> + <route cost="30.26" probability="1.00000000" edges="4/4to4/3 4/3to3/3 3/3to2/3 2/3to2/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car836" depart="836.00"> + <routeDistribution last="0"> + <route cost="51.63" probability="1.00000000" edges="2/2to2/1 2/1to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to0/4 0/4to0/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car837" depart="837.00"> + <routeDistribution last="0"> + <route cost="38.19" probability="1.00000000" edges="0/1to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to0/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car838" depart="838.00"> + <routeDistribution last="0"> + <route cost="27.64" probability="1.00000000" edges="0/0to0/1 0/1to0/2 0/2to0/3 0/3to1/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car839" depart="839.00"> + <routeDistribution last="0"> + <route cost="37.14" probability="1.00000000" edges="4/0to3/0 3/0to2/0 2/0to2/1 2/1to2/2 2/2to2/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car840" depart="840.00"> + <routeDistribution last="0"> + <route cost="30.33" probability="1.00000000" edges="0/2to0/3 0/3to0/2 0/2to0/1 0/1to0/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car841" depart="841.00"> + <routeDistribution last="0"> + <route cost="37.26" probability="1.00000000" edges="1/0to0/0 0/0to0/1 0/1to1/1 1/1to2/1 2/1to2/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car842" depart="842.00"> + <routeDistribution last="0"> + <route cost="37.45" probability="1.00000000" edges="2/3to2/2 2/2to1/2 1/2to0/2 0/2to0/3 0/3to0/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car843" depart="843.00"> + <routeDistribution last="0"> + <route cost="43.77" probability="1.00000000" edges="0/3to0/4 0/4to1/4 1/4to2/4 2/4to3/4 3/4to3/3 3/3to3/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car844" depart="844.00"> + <routeDistribution last="0"> + <route cost="37.96" probability="1.00000000" edges="3/4to3/3 3/3to2/3 2/3to1/3 1/3to1/4 1/4to1/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car845" depart="845.00"> + <routeDistribution last="0"> + <route cost="52.25" probability="1.00000000" edges="3/4to3/3 3/3to2/3 2/3to2/2 2/2to1/2 1/2to1/1 1/1to0/1 0/1to0/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car846" depart="846.00"> + <routeDistribution last="0"> + <route cost="48.02" probability="1.00000000" edges="4/4to4/3 4/3to3/3 3/3to2/3 2/3to1/3 1/3to0/3 0/3to0/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car847" depart="847.00"> + <routeDistribution last="0"> + <route cost="44.45" probability="1.00000000" edges="1/2to2/2 2/2to2/3 2/3to2/4 2/4to3/4 3/4to4/4 4/4to4/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car848" depart="848.00"> + <routeDistribution last="0"> + <route cost="42.47" probability="1.00000000" edges="2/1to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to2/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car849" depart="849.00"> + <routeDistribution last="0"> + <route cost="36.03" probability="1.00000000" edges="3/4to3/3 3/3to2/3 2/3to2/2 2/2to2/1 2/1to2/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car850" depart="850.00"> + <routeDistribution last="0"> + <route cost="45.54" probability="1.00000000" edges="1/1to1/2 1/2to1/3 1/3to1/4 1/4to2/4 2/4to3/4 3/4to2/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car851" depart="851.00"> + <routeDistribution last="0"> + <route cost="30.24" probability="1.00000000" edges="2/4to2/3 2/3to1/3 1/3to1/4 1/4to0/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car852" depart="852.00"> + <routeDistribution last="0"> + <route cost="44.73" probability="1.00000000" edges="1/0to0/0 0/0to0/1 0/1to0/2 0/2to0/3 0/3to0/4 0/4to0/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car853" depart="853.00"> + <routeDistribution last="0"> + <route cost="38.19" probability="1.00000000" edges="0/1to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to0/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car854" depart="854.00"> + <routeDistribution last="0"> + <route cost="35.32" probability="1.00000000" edges="4/0to4/1 4/1to4/2 4/2to4/3 4/3to4/4 4/4to3/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car855" depart="855.00"> + <routeDistribution last="0"> + <route cost="41.72" probability="1.00000000" edges="3/1to3/2 3/2to2/2 2/2to1/2 1/2to0/2 0/2to1/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car856" depart="856.00"> + <routeDistribution last="0"> + <route cost="54.55" probability="1.00000000" edges="4/1to3/1 3/1to2/1 2/1to1/1 1/1to0/1 0/1to0/2 0/2to0/3 0/3to1/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car857" depart="857.00"> + <routeDistribution last="0"> + <route cost="31.54" probability="1.00000000" edges="4/1to3/1 3/1to2/1 2/1to1/1 1/1to2/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car858" depart="858.00"> + <routeDistribution last="0"> + <route cost="37.45" probability="1.00000000" edges="3/2to2/2 2/2to2/3 2/3to2/4 2/4to3/4 3/4to4/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car859" depart="859.00"> + <routeDistribution last="0"> + <route cost="38.72" probability="1.00000000" edges="2/2to2/1 2/1to2/2 2/2to2/3 2/3to2/4 2/4to1/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car860" depart="860.00"> + <routeDistribution last="0"> + <route cost="29.23" probability="1.00000000" edges="1/2to1/1 1/1to1/0 1/0to2/0 2/0to3/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car861" depart="861.00"> + <routeDistribution last="0"> + <route cost="55.58" probability="1.00000000" edges="4/1to4/0 4/0to3/0 3/0to2/0 2/0to1/0 1/0to0/0 0/0to0/1 0/1to0/2 0/2to1/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car862" depart="862.00"> + <routeDistribution last="0"> + <route cost="45.21" probability="1.00000000" edges="4/2to4/3 4/3to4/4 4/4to3/4 3/4to2/4 2/4to1/4 1/4to1/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car863" depart="863.00"> + <routeDistribution last="0"> + <route cost="45.86" probability="1.00000000" edges="4/3to4/2 4/2to3/2 3/2to2/2 2/2to1/2 1/2to1/3 1/3to1/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car864" depart="864.00"> + <routeDistribution last="0"> + <route cost="52.54" probability="1.00000000" edges="0/0to0/1 0/1to1/1 1/1to1/2 1/2to2/2 2/2to2/3 2/3to3/3 3/3to3/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car865" depart="865.00"> + <routeDistribution last="0"> + <route cost="27.84" probability="1.00000000" edges="1/4to0/4 0/4to0/3 0/3to0/2 0/2to0/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car866" depart="866.00"> + <routeDistribution last="0"> + <route cost="29.23" probability="1.00000000" edges="2/3to1/3 1/3to1/2 1/2to1/1 1/1to1/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car867" depart="867.00"> + <routeDistribution last="0"> + <route cost="14.85" probability="1.00000000" edges="2/1to1/1 1/1to0/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car868" depart="868.00"> + <routeDistribution last="0"> + <route cost="53.03" probability="1.00000000" edges="1/2to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to2/4 2/4to3/4 3/4to4/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car869" depart="869.00"> + <routeDistribution last="0"> + <route cost="39.85" probability="1.00000000" edges="1/3to2/3 2/3to3/3 3/3to3/2 3/2to3/1 3/1to3/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car870" depart="870.00"> + <routeDistribution last="0"> + <route cost="71.83" probability="1.00000000" edges="0/3to0/4 0/4to1/4 1/4to2/4 2/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to4/0 4/0to4/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car871" depart="871.00"> + <routeDistribution last="0"> + <route cost="28.58" probability="1.00000000" edges="2/1to2/0 2/0to1/0 1/0to0/0 0/0to0/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car872" depart="872.00"> + <routeDistribution last="0"> + <route cost="45.84" probability="1.00000000" edges="4/3to4/2 4/2to3/2 3/2to3/1 3/1to2/1 2/1to1/1 1/1to0/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car873" depart="873.00"> + <routeDistribution last="0"> + <route cost="62.55" probability="1.00000000" edges="3/1to4/1 4/1to3/1 3/1to2/1 2/1to1/1 1/1to0/1 0/1to0/2 0/2to0/3 0/3to1/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car874" depart="874.00"> + <routeDistribution last="0"> + <route cost="73.23" probability="1.00000000" edges="3/0to4/0 4/0to3/0 3/0to2/0 2/0to1/0 1/0to0/0 0/0to0/1 0/1to0/2 0/2to0/3 0/3to0/4 0/4to1/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car875" depart="875.00"> + <routeDistribution last="0"> + <route cost="48.53" probability="1.00000000" edges="4/2to4/3 4/3to4/2 4/2to3/2 3/2to2/2 2/2to1/2 1/2to1/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car876" depart="876.00"> + <routeDistribution last="0"> + <route cost="33.34" probability="1.00000000" edges="3/1to2/1 2/1to1/1 1/1to1/2 1/2to0/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car877" depart="877.00"> + <routeDistribution last="0"> + <route cost="48.84" probability="1.00000000" edges="1/4to1/3 1/3to2/3 2/3to3/3 3/3to4/3 4/3to4/2 4/2to3/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car878" depart="878.00"> + <routeDistribution last="0"> + <route cost="57.22" probability="1.00000000" edges="1/3to0/3 0/3to1/3 1/3to2/3 2/3to3/3 3/3to3/2 3/2to3/1 3/1to4/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car879" depart="879.00"> + <routeDistribution last="0"> + <route cost="44.45" probability="1.00000000" edges="3/2to2/2 2/2to2/1 2/1to2/0 2/0to1/0 1/0to0/0 0/0to0/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car880" depart="880.00"> + <routeDistribution last="0"> + <route cost="39.46" probability="1.00000000" edges="1/1to1/2 1/2to2/2 2/2to3/2 3/2to3/1 3/1to3/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car881" depart="881.00"> + <routeDistribution last="0"> + <route cost="39.34" probability="1.00000000" edges="0/0to0/1 0/1to1/1 1/1to2/1 2/1to3/1 3/1to4/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car882" depart="882.00"> + <routeDistribution last="0"> + <route cost="58.16" probability="1.00000000" edges="2/0to3/0 3/0to2/0 2/0to1/0 1/0to0/0 0/0to0/1 0/1to0/2 0/2to0/3 0/3to1/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car883" depart="883.00"> + <routeDistribution last="0"> + <route cost="44.16" probability="1.00000000" edges="0/2to0/1 0/1to0/2 0/2to0/3 0/3to0/4 0/4to1/4 1/4to2/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car884" depart="884.00"> + <routeDistribution last="0"> + <route cost="42.41" probability="1.00000000" edges="3/2to3/3 3/3to2/3 2/3to1/3 1/3to0/3 0/3to0/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car885" depart="885.00"> + <routeDistribution last="0"> + <route cost="49.52" probability="1.00000000" edges="1/3to1/2 1/2to1/1 1/1to2/1 2/1to3/1 3/1to4/1 4/1to4/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car886" depart="886.00"> + <routeDistribution last="0"> + <route cost="31.85" probability="1.00000000" edges="0/3to1/3 1/3to2/3 2/3to3/3 3/3to3/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car887" depart="887.00"> + <routeDistribution last="0"> + <route cost="31.54" probability="1.00000000" edges="3/3to2/3 2/3to1/3 1/3to0/3 0/3to1/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car888" depart="888.00"> + <routeDistribution last="0"> + <route cost="51.92" probability="1.00000000" edges="4/4to4/3 4/3to3/3 3/3to3/4 3/4to2/4 2/4to1/4 1/4to0/4 0/4to0/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car889" depart="889.00"> + <routeDistribution last="0"> + <route cost="44.45" probability="1.00000000" edges="2/3to1/3 1/3to1/2 1/2to1/1 1/1to1/0 1/0to0/0 0/0to0/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car890" depart="890.00"> + <routeDistribution last="0"> + <route cost="50.03" probability="1.00000000" edges="0/4to1/4 1/4to2/4 2/4to2/3 2/3to2/2 2/2to2/1 2/1to2/0 2/0to2/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car891" depart="891.00"> + <routeDistribution last="0"> + <route cost="37.25" probability="1.00000000" edges="1/4to2/4 2/4to3/4 3/4to4/4 4/4to4/3 4/3to4/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car892" depart="892.00"> + <routeDistribution last="0"> + <route cost="40.53" probability="1.00000000" edges="3/1to2/1 2/1to1/1 1/1to1/2 1/2to1/3 1/3to0/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car893" depart="893.00"> + <routeDistribution last="0"> + <route cost="40.92" probability="1.00000000" edges="0/1to1/1 1/1to2/1 2/1to3/1 3/1to4/1 4/1to4/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car894" depart="894.00"> + <routeDistribution last="0"> + <route cost="30.34" probability="1.00000000" edges="4/3to4/2 4/2to3/2 3/2to2/2 2/2to2/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car895" depart="895.00"> + <routeDistribution last="0"> + <route cost="41.47" probability="1.00000000" edges="0/3to0/4 0/4to1/4 1/4to2/4 2/4to2/3 2/3to2/2 2/2to2/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car896" depart="896.00"> + <routeDistribution last="0"> + <route cost="50.41" probability="1.00000000" edges="4/2to4/3 4/3to3/3 3/3to2/3 2/3to1/3 1/3to0/3 0/3to1/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car897" depart="897.00"> + <routeDistribution last="0"> + <route cost="47.63" probability="1.00000000" edges="4/0to4/1 4/1to4/2 4/2to3/2 3/2to2/2 2/2to2/3 2/3to3/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car898" depart="898.00"> + <routeDistribution last="0"> + <route cost="48.10" probability="1.00000000" edges="1/4to1/3 1/3to1/2 1/2to1/1 1/1to2/1 2/1to3/1 3/1to3/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car899" depart="899.00"> + <routeDistribution last="0"> + <route cost="53.12" probability="1.00000000" edges="3/3to3/2 3/2to2/2 2/2to2/1 2/1to1/1 1/1to0/1 0/1to0/0 0/0to1/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car900" depart="900.00"> + <routeDistribution last="0"> + <route cost="31.84" probability="1.00000000" edges="3/0to3/1 3/1to3/2 3/2to2/2 2/2to2/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car901" depart="901.00"> + <routeDistribution last="0"> + <route cost="33.71" probability="1.00000000" edges="2/0to3/0 3/0to3/1 3/1to3/2 3/2to2/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car902" depart="902.00"> + <routeDistribution last="0"> + <route cost="34.55" probability="1.00000000" edges="3/0to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car903" depart="903.00"> + <routeDistribution last="0"> + <route cost="59.66" probability="1.00000000" edges="1/1to0/1 0/1to0/2 0/2to0/3 0/3to0/4 0/4to1/4 1/4to2/4 2/4to3/4 3/4to2/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car904" depart="904.00"> + <routeDistribution last="0"> + <route cost="45.16" probability="1.00000000" edges="2/3to1/3 1/3to2/3 2/3to2/2 2/2to2/1 2/1to2/0 2/0to1/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car905" depart="905.00"> + <routeDistribution last="0"> + <route cost="36.34" probability="1.00000000" edges="3/0to3/1 3/1to3/2 3/2to3/3 3/3to3/4 3/4to4/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car906" depart="906.00"> + <routeDistribution last="0"> + <route cost="42.41" probability="1.00000000" edges="3/1to3/2 3/2to2/2 2/2to1/2 1/2to0/2 0/2to0/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car907" depart="907.00"> + <routeDistribution last="0"> + <route cost="29.65" probability="1.00000000" edges="3/1to4/1 4/1to3/1 3/1to3/2 3/2to3/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car908" depart="908.00"> + <routeDistribution last="0"> + <route cost="41.76" probability="1.00000000" edges="4/0to3/0 3/0to2/0 2/0to1/0 1/0to0/0 0/0to0/1 0/1to1/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car909" depart="909.00"> + <routeDistribution last="0"> + <route cost="28.85" probability="1.00000000" edges="2/1to2/2 2/2to2/3 2/3to2/4 2/4to3/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car910" depart="910.00"> + <routeDistribution last="0"> + <route cost="50.03" probability="1.00000000" edges="1/3to0/3 0/3to1/3 1/3to2/3 2/3to2/2 2/2to3/2 3/2to4/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car911" depart="911.00"> + <routeDistribution last="0"> + <route cost="56.03" probability="1.00000000" edges="3/2to4/2 4/2to3/2 3/2to2/2 2/2to1/2 1/2to0/2 0/2to0/3 0/3to0/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car912" depart="912.00"> + <routeDistribution last="0"> + <route cost="67.86" probability="1.00000000" edges="1/0to0/0 0/0to0/1 0/1to1/1 1/1to1/2 1/2to2/2 2/2to2/3 2/3to3/3 3/3to4/3 4/3to4/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car913" depart="913.00"> + <routeDistribution last="0"> + <route cost="22.03" probability="1.00000000" edges="2/2to3/2 3/2to3/3 3/3to3/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car914" depart="914.00"> + <routeDistribution last="0"> + <route cost="36.34" probability="1.00000000" edges="3/2to3/1 3/1to3/0 3/0to2/0 2/0to1/0 1/0to0/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car915" depart="915.00"> + <routeDistribution last="0"> + <route cost="32.23" probability="1.00000000" edges="0/3to1/3 1/3to2/3 2/3to3/3 3/3to3/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car916" depart="916.00"> + <routeDistribution last="0"> + <route cost="42.32" probability="1.00000000" edges="1/2to1/1 1/1to2/1 2/1to3/1 3/1to4/1 4/1to4/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car917" depart="917.00"> + <routeDistribution last="0"> + <route cost="46.11" probability="1.00000000" edges="3/3to3/2 3/2to2/2 2/2to2/1 2/1to1/1 1/1to0/1 0/1to0/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car918" depart="918.00"> + <routeDistribution last="0"> + <route cost="37.92" probability="1.00000000" edges="3/4to2/4 2/4to1/4 1/4to1/3 1/3to1/2 1/2to1/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car919" depart="919.00"> + <routeDistribution last="0"> + <route cost="47.84" probability="1.00000000" edges="0/2to0/1 0/1to0/2 0/2to1/2 1/2to2/2 2/2to3/2 3/2to2/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car920" depart="920.00"> + <routeDistribution last="0"> + <route cost="37.33" probability="1.00000000" edges="2/4to1/4 1/4to0/4 0/4to0/3 0/3to0/2 0/2to0/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car921" depart="921.00"> + <routeDistribution last="0"> + <route cost="36.71" probability="1.00000000" edges="2/1to2/2 2/2to2/3 2/3to2/4 2/4to1/4 1/4to0/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car922" depart="922.00"> + <routeDistribution last="0"> + <route cost="20.16" probability="1.00000000" edges="1/4to1/3 1/3to1/2 1/2to0/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car923" depart="923.00"> + <routeDistribution last="0"> + <route cost="39.85" probability="1.00000000" edges="0/3to0/2 0/2to0/3 0/3to1/3 1/3to2/3 2/3to3/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car924" depart="924.00"> + <routeDistribution last="0"> + <route cost="29.97" probability="1.00000000" edges="3/2to3/1 3/1to2/1 2/1to1/1 1/1to1/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car925" depart="925.00"> + <routeDistribution last="0"> + <route cost="46.26" probability="1.00000000" edges="2/2to2/3 2/3to2/2 2/2to1/2 1/2to1/1 1/1to0/1 0/1to0/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car926" depart="926.00"> + <routeDistribution last="0"> + <route cost="31.54" probability="1.00000000" edges="4/1to3/1 3/1to2/1 2/1to1/1 1/1to2/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car927" depart="927.00"> + <routeDistribution last="0"> + <route cost="53.85" probability="1.00000000" edges="2/1to3/1 3/1to2/1 2/1to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to2/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car928" depart="928.00"> + <routeDistribution last="0"> + <route cost="51.64" probability="1.00000000" edges="0/4to1/4 1/4to2/4 2/4to3/4 3/4to4/4 4/4to4/3 4/3to4/2 4/2to4/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car929" depart="929.00"> + <routeDistribution last="0"> + <route cost="48.02" probability="1.00000000" edges="4/0to4/1 4/1to4/2 4/2to3/2 3/2to2/2 2/2to2/3 2/3to2/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car930" depart="930.00"> + <routeDistribution last="0"> + <route cost="53.54" probability="1.00000000" edges="2/0to3/0 3/0to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to1/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car931" depart="931.00"> + <routeDistribution last="0"> + <route cost="44.34" probability="1.00000000" edges="4/2to3/2 3/2to3/1 3/1to3/0 3/0to2/0 2/0to1/0 1/0to1/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car932" depart="932.00"> + <routeDistribution last="0"> + <route cost="47.73" probability="1.00000000" edges="4/3to4/2 4/2to3/2 3/2to2/2 2/2to1/2 1/2to0/2 0/2to0/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car933" depart="933.00"> + <routeDistribution last="0"> + <route cost="38.35" probability="1.00000000" edges="2/1to3/1 3/1to2/1 2/1to1/1 1/1to1/2 1/2to1/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car934" depart="934.00"> + <routeDistribution last="0"> + <route cost="49.23" probability="1.00000000" edges="4/0to3/0 3/0to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to1/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car935" depart="935.00"> + <routeDistribution last="0"> + <route cost="58.16" probability="1.00000000" edges="2/3to2/4 2/4to2/3 2/3to2/2 2/2to2/1 2/1to2/0 2/0to1/0 1/0to0/0 0/0to0/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car936" depart="936.00"> + <routeDistribution last="0"> + <route cost="45.13" probability="1.00000000" edges="1/1to0/1 0/1to1/1 1/1to1/2 1/2to2/2 2/2to2/3 2/3to3/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car937" depart="937.00"> + <routeDistribution last="0"> + <route cost="60.40" probability="1.00000000" edges="1/3to0/3 0/3to0/2 0/2to0/1 0/1to0/0 0/0to1/0 1/0to2/0 2/0to3/0 3/0to2/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car938" depart="938.00"> + <routeDistribution last="0"> + <route cost="44.84" probability="1.00000000" edges="2/1to3/1 3/1to2/1 2/1to2/2 2/2to2/3 2/3to2/4 2/4to2/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car939" depart="939.00"> + <routeDistribution last="0"> + <route cost="45.21" probability="1.00000000" edges="1/0to2/0 2/0to3/0 3/0to4/0 4/0to4/1 4/1to4/2 4/2to3/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car940" depart="940.00"> + <routeDistribution last="0"> + <route cost="36.83" probability="1.00000000" edges="3/3to2/3 2/3to2/2 2/2to2/1 2/1to1/1 1/1to2/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car941" depart="941.00"> + <routeDistribution last="0"> + <route cost="38.25" probability="1.00000000" edges="0/0to0/1 0/1to1/1 1/1to2/1 2/1to2/0 2/0to2/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car942" depart="942.00"> + <routeDistribution last="0"> + <route cost="20.16" probability="1.00000000" edges="1/1to1/2 1/2to1/3 1/3to2/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car943" depart="943.00"> + <routeDistribution last="0"> + <route cost="55.97" probability="1.00000000" edges="4/3to4/2 4/2to4/1 4/1to4/0 4/0to3/0 3/0to2/0 2/0to1/0 1/0to0/0 0/0to0/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car944" depart="944.00"> + <routeDistribution last="0"> + <route cost="42.41" probability="1.00000000" edges="3/2to3/3 3/3to2/3 2/3to1/3 1/3to0/3 0/3to0/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car945" depart="945.00"> + <routeDistribution last="0"> + <route cost="32.21" probability="1.00000000" edges="2/3to1/3 1/3to1/2 1/2to1/1 1/1to2/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car946" depart="946.00"> + <routeDistribution last="0"> + <route cost="28.74" probability="1.00000000" edges="4/4to4/3 4/3to3/3 3/3to3/2 3/2to2/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car947" depart="947.00"> + <routeDistribution last="0"> + <route cost="40.55" probability="1.00000000" edges="0/2to1/2 1/2to2/2 2/2to3/2 3/2to4/2 4/2to4/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car948" depart="948.00"> + <routeDistribution last="0"> + <route cost="38.35" probability="1.00000000" edges="3/2to2/2 2/2to1/2 1/2to1/3 1/3to1/4 1/4to1/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car949" depart="949.00"> + <routeDistribution last="0"> + <route cost="59.01" probability="1.00000000" edges="4/3to4/4 4/4to3/4 3/4to2/4 2/4to1/4 1/4to0/4 0/4to0/3 0/3to0/2 0/2to0/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car950" depart="950.00"> + <routeDistribution last="0"> + <route cost="45.83" probability="1.00000000" edges="3/4to3/3 3/3to2/3 2/3to2/2 2/2to1/2 1/2to0/2 0/2to0/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car951" depart="951.00"> + <routeDistribution last="0"> + <route cost="36.76" probability="1.00000000" edges="2/3to3/3 3/3to3/2 3/2to2/2 2/2to2/1 2/1to1/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car952" depart="952.00"> + <routeDistribution last="0"> + <route cost="60.33" probability="1.00000000" edges="4/3to4/4 4/4to3/4 3/4to2/4 2/4to2/3 2/3to2/2 2/2to2/1 2/1to1/1 1/1to1/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car953" depart="953.00"> + <routeDistribution last="0"> + <route cost="36.46" probability="1.00000000" edges="3/4to2/4 2/4to3/4 3/4to3/3 3/3to3/2 3/2to2/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car954" depart="954.00"> + <routeDistribution last="0"> + <route cost="33.71" probability="1.00000000" edges="3/2to3/3 3/3to2/3 2/3to1/3 1/3to1/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car955" depart="955.00"> + <routeDistribution last="0"> + <route cost="53.81" probability="1.00000000" edges="1/1to0/1 0/1to1/1 1/1to1/2 1/2to2/2 2/2to2/3 2/3to3/3 3/3to3/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car956" depart="956.00"> + <routeDistribution last="0"> + <route cost="37.27" probability="1.00000000" edges="1/0to0/0 0/0to0/1 0/1to1/1 1/1to2/1 2/1to3/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car957" depart="957.00"> + <routeDistribution last="0"> + <route cost="30.73" probability="1.00000000" edges="2/0to2/1 2/1to2/2 2/2to2/3 2/3to1/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car958" depart="958.00"> + <routeDistribution last="0"> + <route cost="59.21" probability="1.00000000" edges="4/3to4/4 4/4to3/4 3/4to2/4 2/4to1/4 1/4to1/3 1/3to1/2 1/2to1/1 1/1to0/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car959" depart="959.00"> + <routeDistribution last="0"> + <route cost="29.65" probability="1.00000000" edges="1/3to0/3 0/3to1/3 1/3to1/2 1/2to1/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car960" depart="960.00"> + <routeDistribution last="0"> + <route cost="29.14" probability="1.00000000" edges="3/1to3/2 3/2to3/3 3/3to3/4 3/4to4/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car961" depart="961.00"> + <routeDistribution last="0"> + <route cost="48.54" probability="1.00000000" edges="3/1to4/1 4/1to3/1 3/1to2/1 2/1to1/1 1/1to0/1 0/1to0/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car962" depart="962.00"> + <routeDistribution last="0"> + <route cost="45.58" probability="1.00000000" edges="3/4to4/4 4/4to4/3 4/3to3/3 3/3to2/3 2/3to1/3 1/3to1/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car963" depart="963.00"> + <routeDistribution last="0"> + <route cost="24.65" probability="1.00000000" edges="0/2to1/2 1/2to1/1 1/1to2/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car964" depart="964.00"> + <routeDistribution last="0"> + <route cost="47.60" probability="1.00000000" edges="1/4to0/4 0/4to1/4 1/4to2/4 2/4to2/3 2/3to2/2 2/2to3/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car965" depart="965.00"> + <routeDistribution last="0"> + <route cost="33.73" probability="1.00000000" edges="3/1to3/2 3/2to2/2 2/2to1/2 1/2to0/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car966" depart="966.00"> + <routeDistribution last="0"> + <route cost="61.89" probability="1.00000000" edges="4/4to4/3 4/3to3/3 3/3to3/2 3/2to2/2 2/2to2/1 2/1to1/1 1/1to0/1 0/1to0/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car967" depart="967.00"> + <routeDistribution last="0"> + <route cost="13.35" probability="1.00000000" edges="2/0to2/1 2/1to2/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car968" depart="968.00"> + <routeDistribution last="0"> + <route cost="37.52" probability="1.00000000" edges="2/1to2/2 2/2to3/2 3/2to3/3 3/3to3/4 3/4to2/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car969" depart="969.00"> + <routeDistribution last="0"> + <route cost="38.10" probability="1.00000000" edges="0/4to0/3 0/3to0/2 0/2to0/1 0/1to0/0 0/0to0/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car970" depart="970.00"> + <routeDistribution last="0"> + <route cost="37.15" probability="1.00000000" edges="0/3to1/3 1/3to1/4 1/4to2/4 2/4to3/4 3/4to3/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car971" depart="971.00"> + <routeDistribution last="0"> + <route cost="53.79" probability="1.00000000" edges="1/4to1/3 1/3to1/2 1/2to1/1 1/1to1/0 1/0to2/0 2/0to3/0 3/0to3/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car972" depart="972.00"> + <routeDistribution last="0"> + <route cost="56.71" probability="1.00000000" edges="3/0to4/0 4/0to4/1 4/1to4/2 4/2to4/3 4/3to4/4 4/4to3/4 3/4to2/4 2/4to1/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car973" depart="973.00"> + <routeDistribution last="0"> + <route cost="49.78" probability="1.00000000" edges="1/2to0/2 0/2to0/3 0/3to0/4 0/4to1/4 1/4to2/4 2/4to3/4 3/4to3/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car974" depart="974.00"> + <routeDistribution last="0"> + <route cost="30.32" probability="1.00000000" edges="4/2to3/2 3/2to3/1 3/1to2/1 2/1to2/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car975" depart="975.00"> + <routeDistribution last="0"> + <route cost="47.36" probability="1.00000000" edges="0/3to1/3 1/3to2/3 2/3to3/3 3/3to4/3 4/3to4/2 4/2to3/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car976" depart="976.00"> + <routeDistribution last="0"> + <route cost="45.58" probability="1.00000000" edges="3/4to4/4 4/4to4/3 4/3to3/3 3/3to2/3 2/3to1/3 1/3to1/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car977" depart="977.00"> + <routeDistribution last="0"> + <route cost="39.46" probability="1.00000000" edges="0/1to0/2 0/2to1/2 1/2to2/2 2/2to2/1 2/1to2/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car978" depart="978.00"> + <routeDistribution last="0"> + <route cost="50.86" probability="1.00000000" edges="1/0to0/0 0/0to0/1 0/1to1/1 1/1to1/2 1/2to2/2 2/2to2/3 2/3to3/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car979" depart="979.00"> + <routeDistribution last="0"> + <route cost="43.24" probability="1.00000000" edges="3/4to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to2/0 2/0to1/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car980" depart="980.00"> + <routeDistribution last="0"> + <route cost="45.21" probability="1.00000000" edges="0/1to0/0 0/0to1/0 1/0to2/0 2/0to3/0 3/0to3/1 3/1to3/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car981" depart="981.00"> + <routeDistribution last="0"> + <route cost="20.55" probability="1.00000000" edges="1/0to1/1 1/1to1/2 1/2to1/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car982" depart="982.00"> + <routeDistribution last="0"> + <route cost="51.36" probability="1.00000000" edges="4/1to4/0 4/0to3/0 3/0to2/0 2/0to1/0 1/0to0/0 0/0to0/1 0/1to0/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car983" depart="983.00"> + <routeDistribution last="0"> + <route cost="51.64" probability="1.00000000" edges="2/3to2/4 2/4to2/3 2/3to2/2 2/2to1/2 1/2to1/1 1/1to0/1 0/1to1/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car984" depart="984.00"> + <routeDistribution last="0"> + <route cost="37.62" probability="1.00000000" edges="1/0to2/0 2/0to3/0 3/0to4/0 4/0to4/1 4/1to4/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car985" depart="985.00"> + <routeDistribution last="0"> + <route cost="53.54" probability="1.00000000" edges="2/3to1/3 1/3to2/3 2/3to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to3/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car986" depart="986.00"> + <routeDistribution last="0"> + <route cost="37.42" probability="1.00000000" edges="1/4to0/4 0/4to1/4 1/4to2/4 2/4to2/3 2/3to2/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car987" depart="987.00"> + <routeDistribution last="0"> + <route cost="39.85" probability="1.00000000" edges="2/2to1/2 1/2to2/2 2/2to3/2 3/2to4/2 4/2to4/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car988" depart="988.00"> + <routeDistribution last="0"> + <route cost="38.35" probability="1.00000000" edges="2/2to2/3 2/3to2/2 2/2to2/1 2/1to2/0 2/0to1/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car989" depart="989.00"> + <routeDistribution last="0"> + <route cost="30.04" probability="1.00000000" edges="1/0to1/1 1/1to1/2 1/2to1/3 1/3to1/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car990" depart="990.00"> + <routeDistribution last="0"> + <route cost="43.71" probability="1.00000000" edges="1/1to1/0 1/0to2/0 2/0to3/0 3/0to4/0 4/0to4/1 4/1to4/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car991" depart="991.00"> + <routeDistribution last="0"> + <route cost="59.93" probability="1.00000000" edges="3/3to3/4 3/4to3/3 3/3to2/3 2/3to2/2 2/2to1/2 1/2to1/1 1/1to0/1 0/1to1/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car992" depart="992.00"> + <routeDistribution last="0"> + <route cost="30.64" probability="1.00000000" edges="4/4to4/3 4/3to3/3 3/3to2/3 2/3to1/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car993" depart="993.00"> + <routeDistribution last="0"> + <route cost="49.52" probability="1.00000000" edges="4/3to4/4 4/4to3/4 3/4to2/4 2/4to1/4 1/4to0/4 0/4to0/3 0/3to0/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car994" depart="994.00"> + <routeDistribution last="0"> + <route cost="32.66" probability="1.00000000" edges="3/1to2/1 2/1to1/1 1/1to1/2 1/2to1/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car995" depart="995.00"> + <routeDistribution last="0"> + <route cost="31.84" probability="1.00000000" edges="3/4to3/3 3/3to3/2 3/2to4/2 4/2to4/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car996" depart="996.00"> + <routeDistribution last="0"> + <route cost="58.84" probability="1.00000000" edges="0/1to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to2/4 2/4to3/4 3/4to4/4 4/4to4/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car997" depart="997.00"> + <routeDistribution last="0"> + <route cost="39.30" probability="1.00000000" edges="1/1to1/0 1/0to2/0 2/0to3/0 3/0to4/0 4/0to3/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car998" depart="998.00"> + <routeDistribution last="0"> + <route cost="44.00" probability="1.00000000" edges="3/3to4/3 4/3to4/4 4/4to3/4 3/4to2/4 2/4to1/4 1/4to0/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car999" depart="999.00"> + <routeDistribution last="0"> + <route cost="42.86" probability="1.00000000" edges="1/0to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to2/4 2/4to2/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1000" depart="1000.00"> + <routeDistribution last="0"> + <route cost="47.03" probability="1.00000000" edges="3/4to2/4 2/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to4/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1001" depart="1001.00"> + <routeDistribution last="0"> + <route cost="48.02" probability="1.00000000" edges="4/2to4/1 4/1to3/1 3/1to2/1 2/1to1/1 1/1to0/1 0/1to0/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car1002" depart="1002.00"> + <routeDistribution last="0"> + <route cost="59.49" probability="1.00000000" edges="1/0to2/0 2/0to3/0 3/0to4/0 4/0to4/1 4/1to4/2 4/2to4/3 4/3to4/4 4/4to4/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1003" depart="1003.00"> + <routeDistribution last="0"> + <route cost="43.77" probability="1.00000000" edges="4/1to4/0 4/0to3/0 3/0to2/0 2/0to2/1 2/1to2/2 2/2to2/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1004" depart="1004.00"> + <routeDistribution last="0"> + <route cost="38.35" probability="1.00000000" edges="1/3to0/3 0/3to1/3 1/3to2/3 2/3to2/2 2/2to2/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1005" depart="1005.00"> + <routeDistribution last="0"> + <route cost="43.34" probability="1.00000000" edges="1/1to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to2/3 2/3to1/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1006" depart="1006.00"> + <routeDistribution last="0"> + <route cost="54.44" probability="1.00000000" edges="0/0to0/1 0/1to1/1 1/1to1/2 1/2to2/2 2/2to3/2 3/2to4/2 4/2to4/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1007" depart="1007.00"> + <routeDistribution last="0"> + <route cost="28.47" probability="1.00000000" edges="1/1to0/1 0/1to0/2 0/2to0/3 0/3to1/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1008" depart="1008.00"> + <routeDistribution last="0"> + <route cost="51.53" probability="1.00000000" edges="4/0to3/0 3/0to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to1/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car1009" depart="1009.00"> + <routeDistribution last="0"> + <route cost="54.08" probability="1.00000000" edges="0/0to1/0 1/0to2/0 2/0to2/1 2/1to2/2 2/2to2/3 2/3to2/4 2/4to1/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car1010" depart="1010.00"> + <routeDistribution last="0"> + <route cost="53.85" probability="1.00000000" edges="4/3to4/2 4/2to3/2 3/2to2/2 2/2to1/2 1/2to1/3 1/3to1/4 1/4to1/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1011" depart="1011.00"> + <routeDistribution last="0"> + <route cost="44.73" probability="1.00000000" edges="4/3to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to2/0 2/0to1/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car1012" depart="1012.00"> + <routeDistribution last="0"> + <route cost="37.25" probability="1.00000000" edges="4/3to4/2 4/2to4/1 4/1to4/0 4/0to3/0 3/0to4/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car1013" depart="1013.00"> + <routeDistribution last="0"> + <route cost="66.97" probability="1.00000000" edges="1/0to0/0 0/0to1/0 1/0to2/0 2/0to3/0 3/0to4/0 4/0to4/1 4/1to4/2 4/2to4/3 4/3to4/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car1014" depart="1014.00"> + <routeDistribution last="0"> + <route cost="22.03" probability="1.00000000" edges="3/1to4/1 4/1to4/2 4/2to4/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1015" depart="1015.00"> + <routeDistribution last="0"> + <route cost="52.32" probability="1.00000000" edges="3/3to3/4 3/4to3/3 3/3to3/2 3/2to2/2 2/2to2/1 2/1to1/1 1/1to1/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car1016" depart="1016.00"> + <routeDistribution last="0"> + <route cost="42.86" probability="1.00000000" edges="2/4to2/3 2/3to2/2 2/2to2/1 2/1to2/0 2/0to1/0 1/0to1/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1017" depart="1017.00"> + <routeDistribution last="0"> + <route cost="57.22" probability="1.00000000" edges="1/3to0/3 0/3to1/3 1/3to2/3 2/3to3/3 3/3to3/2 3/2to3/1 3/1to4/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1018" depart="1018.00"> + <routeDistribution last="0"> + <route cost="41.35" probability="1.00000000" edges="0/3to1/3 1/3to2/3 2/3to3/3 3/3to3/2 3/2to3/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1019" depart="1019.00"> + <routeDistribution last="0"> + <route cost="64.16" probability="1.00000000" edges="2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to2/4 2/4to3/4 3/4to4/4 4/4to4/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1020" depart="1020.00"> + <routeDistribution last="0"> + <route cost="64.19" probability="1.00000000" edges="4/3to4/4 4/4to3/4 3/4to2/4 2/4to1/4 1/4to0/4 0/4to0/3 0/3to0/2 0/2to0/1 0/1to0/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car1021" depart="1021.00"> + <routeDistribution last="0"> + <route cost="34.66" probability="1.00000000" edges="2/4to3/4 3/4to4/4 4/4to4/3 4/3to4/2 4/2to4/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1022" depart="1022.00"> + <routeDistribution last="0"> + <route cost="59.60" probability="1.00000000" edges="4/3to4/4 4/4to3/4 3/4to2/4 2/4to1/4 1/4to1/3 1/3to1/2 1/2to1/1 1/1to1/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car1023" depart="1023.00"> + <routeDistribution last="0"> + <route cost="32.66" probability="1.00000000" edges="2/3to3/3 3/3to4/3 4/3to4/2 4/2to4/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1024" depart="1024.00"> + <routeDistribution last="0"> + <route cost="49.90" probability="1.00000000" edges="0/4to0/3 0/3to0/2 0/2to1/2 1/2to2/2 2/2to3/2 3/2to4/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car1025" depart="1025.00"> + <routeDistribution last="0"> + <route cost="53.10" probability="1.00000000" edges="1/1to2/1 2/1to2/2 2/2to3/2 3/2to3/3 3/3to4/3 4/3to4/4 4/4to3/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car1026" depart="1026.00"> + <routeDistribution last="0"> + <route cost="54.56" probability="1.00000000" edges="1/0to0/0 0/0to0/1 0/1to1/1 1/1to2/1 2/1to3/1 3/1to4/1 4/1to4/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car1027" depart="1027.00"> + <routeDistribution last="0"> + <route cost="31.54" probability="1.00000000" edges="0/2to1/2 1/2to2/2 2/2to3/2 3/2to2/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car1028" depart="1028.00"> + <routeDistribution last="0"> + <route cost="42.14" probability="1.00000000" edges="0/0to0/1 0/1to0/2 0/2to0/3 0/3to0/4 0/4to1/4 1/4to2/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car1029" depart="1029.00"> + <routeDistribution last="0"> + <route cost="21.93" probability="1.00000000" edges="3/2to3/3 3/3to4/3 4/3to4/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car1030" depart="1030.00"> + <routeDistribution last="0"> + <route cost="43.77" probability="1.00000000" edges="4/1to4/0 4/0to3/0 3/0to2/0 2/0to2/1 2/1to2/2 2/2to2/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1031" depart="1031.00"> + <routeDistribution last="0"> + <route cost="20.16" probability="1.00000000" edges="1/4to2/4 2/4to2/3 2/3to2/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car1032" depart="1032.00"> + <routeDistribution last="0"> + <route cost="14.85" probability="1.00000000" edges="4/1to3/1 3/1to2/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1033" depart="1033.00"> + <routeDistribution last="0"> + <route cost="45.83" probability="1.00000000" edges="3/1to3/2 3/2to3/1 3/1to3/0 3/0to2/0 2/0to1/0 1/0to0/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car1034" depart="1034.00"> + <routeDistribution last="0"> + <route cost="52.30" probability="1.00000000" edges="0/2to0/1 0/1to0/0 0/0to1/0 1/0to2/0 2/0to3/0 3/0to4/0 4/0to3/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car1035" depart="1035.00"> + <routeDistribution last="0"> + <route cost="47.73" probability="1.00000000" edges="4/3to4/2 4/2to3/2 3/2to2/2 2/2to1/2 1/2to0/2 0/2to0/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1036" depart="1036.00"> + <routeDistribution last="0"> + <route cost="48.77" probability="1.00000000" edges="1/0to0/0 0/0to0/1 0/1to0/2 0/2to0/3 0/3to0/4 0/4to1/4 1/4to2/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car1037" depart="1037.00"> + <routeDistribution last="0"> + <route cost="50.41" probability="1.00000000" edges="4/1to4/2 4/2to3/2 3/2to2/2 2/2to1/2 1/2to0/2 0/2to1/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car1038" depart="1038.00"> + <routeDistribution last="0"> + <route cost="45.92" probability="1.00000000" edges="2/4to2/3 2/3to2/2 2/2to2/1 2/1to2/0 2/0to3/0 3/0to2/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car1039" depart="1039.00"> + <routeDistribution last="0"> + <route cost="30.61" probability="1.00000000" edges="2/2to1/2 1/2to1/1 1/1to0/1 0/1to0/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car1040" depart="1040.00"> + <routeDistribution last="0"> + <route cost="52.21" probability="1.00000000" edges="4/3to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to2/0 2/0to1/0 1/0to0/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car1041" depart="1041.00"> + <routeDistribution last="0"> + <route cost="59.49" probability="1.00000000" edges="4/1to4/2 4/2to4/3 4/3to4/4 4/4to3/4 3/4to2/4 2/4to1/4 1/4to0/4 0/4to1/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car1042" depart="1042.00"> + <routeDistribution last="0"> + <route cost="31.45" probability="1.00000000" edges="0/3to0/2 0/2to1/2 1/2to1/1 1/1to0/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1043" depart="1043.00"> + <routeDistribution last="0"> + <route cost="30.34" probability="1.00000000" edges="1/0to2/0 2/0to3/0 3/0to3/1 3/1to4/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1044" depart="1044.00"> + <routeDistribution last="0"> + <route cost="44.47" probability="1.00000000" edges="2/3to3/3 3/3to4/3 4/3to4/2 4/2to4/1 4/1to4/0 4/0to3/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car1045" depart="1045.00"> + <routeDistribution last="0"> + <route cost="37.16" probability="1.00000000" edges="3/1to2/1 2/1to2/2 2/2to2/3 2/3to2/4 2/4to3/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car1046" depart="1046.00"> + <routeDistribution last="0"> + <route cost="35.37" probability="1.00000000" edges="1/0to0/0 0/0to0/1 0/1to1/1 1/1to1/2 1/2to2/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car1047" depart="1047.00"> + <routeDistribution last="0"> + <route cost="68.66" probability="1.00000000" edges="0/2to0/3 0/3to1/3 1/3to2/3 2/3to3/3 3/3to4/3 4/3to4/2 4/2to4/1 4/1to4/0 4/0to3/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car1048" depart="1048.00"> + <routeDistribution last="0"> + <route cost="53.21" probability="1.00000000" edges="1/3to0/3 0/3to0/2 0/2to0/1 0/1to0/0 0/0to1/0 1/0to2/0 2/0to1/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car1049" depart="1049.00"> + <routeDistribution last="0"> + <route cost="29.95" probability="1.00000000" edges="0/2to1/2 1/2to1/3 1/3to2/3 2/3to2/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car1050" depart="1050.00"> + <routeDistribution last="0"> + <route cost="38.95" probability="1.00000000" edges="1/0to1/1 1/1to2/1 2/1to3/1 3/1to4/1 4/1to4/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car1051" depart="1051.00"> + <routeDistribution last="0"> + <route cost="39.03" probability="1.00000000" edges="1/4to1/3 1/3to1/2 1/2to2/2 2/2to2/1 2/1to2/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car1052" depart="1052.00"> + <routeDistribution last="0"> + <route cost="25.03" probability="1.00000000" edges="1/2to1/1 1/1to2/1 2/1to3/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1053" depart="1053.00"> + <routeDistribution last="0"> + <route cost="45.13" probability="1.00000000" edges="0/1to1/1 1/1to1/2 1/2to2/2 2/2to2/3 2/3to3/3 3/3to2/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1054" depart="1054.00"> + <routeDistribution last="0"> + <route cost="50.16" probability="1.00000000" edges="3/1to3/0 3/0to2/0 2/0to1/0 1/0to0/0 0/0to0/1 0/1to0/2 0/2to0/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1055" depart="1055.00"> + <routeDistribution last="0"> + <route cost="30.82" probability="1.00000000" edges="4/3to4/4 4/4to3/4 3/4to2/4 2/4to2/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1056" depart="1056.00"> + <routeDistribution last="0"> + <route cost="57.08" probability="1.00000000" edges="2/3to2/4 2/4to3/4 3/4to4/4 4/4to4/3 4/3to4/2 4/2to4/1 4/1to4/0 4/0to3/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car1057" depart="1057.00"> + <routeDistribution last="0"> + <route cost="44.71" probability="1.00000000" edges="3/4to3/3 3/3to2/3 2/3to2/2 2/2to2/1 2/1to2/0 2/0to3/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car1058" depart="1058.00"> + <routeDistribution last="0"> + <route cost="53.85" probability="1.00000000" edges="2/3to1/3 1/3to2/3 2/3to3/3 3/3to4/3 4/3to4/2 4/2to4/1 4/1to3/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1059" depart="1059.00"> + <routeDistribution last="0"> + <route cost="23.45" probability="1.00000000" edges="2/1to3/1 3/1to4/1 4/1to4/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car1060" depart="1060.00"> + <routeDistribution last="0"> + <route cost="23.16" probability="1.00000000" edges="2/2to1/2 1/2to0/2 0/2to0/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1061" depart="1061.00"> + <routeDistribution last="0"> + <route cost="46.34" probability="1.00000000" edges="3/4to2/4 2/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to3/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car1062" depart="1062.00"> + <routeDistribution last="0"> + <route cost="49.34" probability="1.00000000" edges="3/0to2/0 2/0to1/0 1/0to0/0 0/0to0/1 0/1to0/2 0/2to0/3 0/3to0/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car1063" depart="1063.00"> + <routeDistribution last="0"> + <route cost="45.02" probability="1.00000000" edges="3/3to2/3 2/3to2/2 2/2to2/1 2/1to2/0 2/0to1/0 1/0to0/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car1064" depart="1064.00"> + <routeDistribution last="0"> + <route cost="38.02" probability="1.00000000" edges="3/4to2/4 2/4to1/4 1/4to0/4 0/4to0/3 0/3to1/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1065" depart="1065.00"> + <routeDistribution last="0"> + <route cost="52.30" probability="1.00000000" edges="2/0to3/0 3/0to4/0 4/0to4/1 4/1to4/2 4/2to4/3 4/3to4/4 4/4to4/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1066" depart="1066.00"> + <routeDistribution last="0"> + <route cost="58.47" probability="1.00000000" edges="2/1to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to2/4 2/4to3/4 3/4to4/4 4/4to4/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1067" depart="1067.00"> + <routeDistribution last="0"> + <route cost="36.34" probability="1.00000000" edges="3/0to3/1 3/1to3/2 3/2to3/3 3/3to3/4 3/4to4/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car1068" depart="1068.00"> + <routeDistribution last="0"> + <route cost="48.23" probability="1.00000000" edges="1/2to0/2 0/2to1/2 1/2to2/2 2/2to3/2 3/2to4/2 4/2to3/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car1069" depart="1069.00"> + <routeDistribution last="0"> + <route cost="56.85" probability="1.00000000" edges="4/2to4/1 4/1to3/1 3/1to2/1 2/1to1/1 1/1to0/1 0/1to0/2 0/2to0/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1070" depart="1070.00"> + <routeDistribution last="0"> + <route cost="44.04" probability="1.00000000" edges="3/3to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to2/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car1071" depart="1071.00"> + <routeDistribution last="0"> + <route cost="38.63" probability="1.00000000" edges="2/2to3/2 3/2to3/1 3/1to2/1 2/1to2/0 2/0to3/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car1072" depart="1072.00"> + <routeDistribution last="0"> + <route cost="67.21" probability="1.00000000" edges="2/0to3/0 3/0to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to0/4 0/4to0/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1073" depart="1073.00"> + <routeDistribution last="0"> + <route cost="29.65" probability="1.00000000" edges="4/3to3/3 3/3to4/3 4/3to4/2 4/2to4/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1074" depart="1074.00"> + <routeDistribution last="0"> + <route cost="40.22" probability="1.00000000" edges="2/3to3/3 3/3to2/3 2/3to1/3 1/3to0/3 0/3to0/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car1075" depart="1075.00"> + <routeDistribution last="0"> + <route cost="36.85" probability="1.00000000" edges="1/3to2/3 2/3to2/2 2/2to2/1 2/1to2/0 2/0to2/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1076" depart="1076.00"> + <routeDistribution last="0"> + <route cost="26.97" probability="1.00000000" edges="1/4to2/4 2/4to2/3 2/3to2/2 2/2to1/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car1077" depart="1077.00"> + <routeDistribution last="0"> + <route cost="59.20" probability="1.00000000" edges="2/4to3/4 3/4to2/4 2/4to1/4 1/4to0/4 0/4to0/3 0/3to0/2 0/2to0/1 0/1to0/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car1078" depart="1078.00"> + <routeDistribution last="0"> + <route cost="37.53" probability="1.00000000" edges="2/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to4/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1079" depart="1079.00"> + <routeDistribution last="0"> + <route cost="56.85" probability="1.00000000" edges="0/1to0/2 0/2to1/2 1/2to2/2 2/2to3/2 3/2to4/2 4/2to4/1 4/1to4/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car1080" depart="1080.00"> + <routeDistribution last="0"> + <route cost="38.72" probability="1.00000000" edges="1/3to1/4 1/4to1/3 1/3to1/2 1/2to1/1 1/1to2/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1081" depart="1081.00"> + <routeDistribution last="0"> + <route cost="61.42" probability="1.00000000" edges="4/1to4/2 4/2to4/1 4/1to4/0 4/0to3/0 3/0to2/0 2/0to1/0 1/0to0/0 0/0to1/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car1082" depart="1082.00"> + <routeDistribution last="0"> + <route cost="30.35" probability="1.00000000" edges="3/4to3/3 3/3to2/3 2/3to1/3 1/3to0/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1083" depart="1083.00"> + <routeDistribution last="0"> + <route cost="55.35" probability="1.00000000" edges="3/1to4/1 4/1to3/1 3/1to2/1 2/1to1/1 1/1to0/1 0/1to0/2 0/2to1/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car1084" depart="1084.00"> + <routeDistribution last="0"> + <route cost="54.55" probability="1.00000000" edges="4/1to3/1 3/1to2/1 2/1to1/1 1/1to0/1 0/1to0/2 0/2to0/3 0/3to1/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1085" depart="1085.00"> + <routeDistribution last="0"> + <route cost="52.41" probability="1.00000000" edges="4/3to4/4 4/4to3/4 3/4to2/4 2/4to2/3 2/3to2/2 2/2to2/1 2/1to2/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car1086" depart="1086.00"> + <routeDistribution last="0"> + <route cost="52.75" probability="1.00000000" edges="3/4to4/4 4/4to4/3 4/3to3/3 3/3to3/2 3/2to2/2 2/2to1/2 1/2to1/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1087" depart="1087.00"> + <routeDistribution last="0"> + <route cost="13.64" probability="1.00000000" edges="2/0to3/0 3/0to4/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car1088" depart="1088.00"> + <routeDistribution last="0"> + <route cost="23.53" probability="1.00000000" edges="3/4to3/3 3/3to3/2 3/2to4/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car1089" depart="1089.00"> + <routeDistribution last="0"> + <route cost="45.16" probability="1.00000000" edges="3/3to2/3 2/3to3/3 3/3to4/3 4/3to4/2 4/2to4/1 4/1to3/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1090" depart="1090.00"> + <routeDistribution last="0"> + <route cost="28.15" probability="1.00000000" edges="3/4to3/3 3/3to3/2 3/2to2/2 2/2to3/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car1091" depart="1091.00"> + <routeDistribution last="0"> + <route cost="20.64" probability="1.00000000" edges="0/1to0/0 0/0to1/0 1/0to2/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car1092" depart="1092.00"> + <routeDistribution last="0"> + <route cost="31.45" probability="1.00000000" edges="4/2to4/1 4/1to3/1 3/1to3/2 3/2to2/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car1093" depart="1093.00"> + <routeDistribution last="0"> + <route cost="52.35" probability="1.00000000" edges="1/2to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to2/4 2/4to3/4 3/4to3/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1094" depart="1094.00"> + <routeDistribution last="0"> + <route cost="38.10" probability="1.00000000" edges="0/3to0/4 0/4to0/3 0/3to0/2 0/2to0/1 0/1to0/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car1095" depart="1095.00"> + <routeDistribution last="0"> + <route cost="38.35" probability="1.00000000" edges="1/0to1/1 1/1to2/1 2/1to3/1 3/1to4/1 4/1to3/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1096" depart="1096.00"> + <routeDistribution last="0"> + <route cost="52.30" probability="1.00000000" edges="1/0to0/0 0/0to1/0 1/0to2/0 2/0to3/0 3/0to4/0 4/0to4/1 4/1to4/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car1097" depart="1097.00"> + <routeDistribution last="0"> + <route cost="21.66" probability="1.00000000" edges="1/2to1/3 1/3to1/4 1/4to2/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car1098" depart="1098.00"> + <routeDistribution last="0"> + <route cost="50.86" probability="1.00000000" edges="1/0to0/0 0/0to0/1 0/1to1/1 1/1to1/2 1/2to2/2 2/2to2/3 2/3to3/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1099" depart="1099.00"> + <routeDistribution last="0"> + <route cost="47.88" probability="1.00000000" edges="4/3to4/4 4/4to4/3 4/3to4/2 4/2to4/1 4/1to4/0 4/0to4/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1100" depart="1100.00"> + <routeDistribution last="0"> + <route cost="30.23" probability="1.00000000" edges="3/0to4/0 4/0to3/0 3/0to3/1 3/1to3/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car1101" depart="1101.00"> + <routeDistribution last="0"> + <route cost="52.60" probability="1.00000000" edges="0/0to1/0 1/0to2/0 2/0to3/0 3/0to3/1 3/1to3/2 3/2to3/3 3/3to3/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car1102" depart="1102.00"> + <routeDistribution last="0"> + <route cost="50.16" probability="1.00000000" edges="3/3to3/2 3/2to3/1 3/1to3/0 3/0to2/0 2/0to1/0 1/0to0/0 0/0to0/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1103" depart="1103.00"> + <routeDistribution last="0"> + <route cost="31.00" probability="1.00000000" edges="4/2to3/2 3/2to3/1 3/1to3/0 3/0to4/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car1104" depart="1104.00"> + <routeDistribution last="0"> + <route cost="64.16" probability="1.00000000" edges="2/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to2/0 2/0to1/0 1/0to0/0 0/0to0/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1105" depart="1105.00"> + <routeDistribution last="0"> + <route cost="52.46" probability="1.00000000" edges="1/2to0/2 0/2to0/3 0/3to0/4 0/4to1/4 1/4to2/4 2/4to3/4 3/4to2/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car1106" depart="1106.00"> + <routeDistribution last="0"> + <route cost="49.20" probability="1.00000000" edges="1/3to0/3 0/3to1/3 1/3to2/3 2/3to3/3 3/3to4/3 4/3to4/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car1107" depart="1107.00"> + <routeDistribution last="0"> + <route cost="41.33" probability="1.00000000" edges="1/2to0/2 0/2to1/2 1/2to2/2 2/2to2/1 2/1to3/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1108" depart="1108.00"> + <routeDistribution last="0"> + <route cost="28.54" probability="1.00000000" edges="3/1to3/2 3/2to3/3 3/3to3/4 3/4to3/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1109" depart="1109.00"> + <routeDistribution last="0"> + <route cost="44.16" probability="1.00000000" edges="2/0to1/0 1/0to0/0 0/0to0/1 0/1to0/2 0/2to0/3 0/3to0/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car1110" depart="1110.00"> + <routeDistribution last="0"> + <route cost="57.22" probability="1.00000000" edges="4/0to3/0 3/0to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to1/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1111" depart="1111.00"> + <routeDistribution last="0"> + <route cost="59.01" probability="1.00000000" edges="3/0to4/0 4/0to4/1 4/1to4/2 4/2to4/3 4/3to4/4 4/4to3/4 3/4to2/4 2/4to3/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car1112" depart="1112.00"> + <routeDistribution last="0"> + <route cost="65.46" probability="1.00000000" edges="0/2to0/1 0/1to0/2 0/2to0/3 0/3to0/4 0/4to1/4 1/4to2/4 2/4to3/4 3/4to4/4 4/4to4/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1113" depart="1113.00"> + <routeDistribution last="0"> + <route cost="41.72" probability="1.00000000" edges="4/1to4/2 4/2to3/2 3/2to2/2 2/2to1/2 1/2to2/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car1114" depart="1114.00"> + <routeDistribution last="0"> + <route cost="42.32" probability="1.00000000" edges="0/4to0/3 0/3to1/3 1/3to2/3 2/3to3/3 3/3to3/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car1115" depart="1115.00"> + <routeDistribution last="0"> + <route cost="35.03" probability="1.00000000" edges="4/1to4/2 4/2to4/3 4/3to4/4 4/4to3/4 3/4to2/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car1116" depart="1116.00"> + <routeDistribution last="0"> + <route cost="46.13" probability="1.00000000" edges="4/4to4/3 4/3to3/3 3/3to3/2 3/2to2/2 2/2to1/2 1/2to0/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car1117" depart="1117.00"> + <routeDistribution last="0"> + <route cost="52.82" probability="1.00000000" edges="0/1to0/0 0/0to1/0 1/0to2/0 2/0to2/1 2/1to2/2 2/2to3/2 3/2to2/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car1118" depart="1118.00"> + <routeDistribution last="0"> + <route cost="53.85" probability="1.00000000" edges="2/3to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to2/0 2/0to1/0 1/0to2/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car1119" depart="1119.00"> + <routeDistribution last="0"> + <route cost="46.63" probability="1.00000000" edges="3/2to3/3 3/3to3/2 3/2to2/2 2/2to2/1 2/1to1/1 1/1to1/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car1120" depart="1120.00"> + <routeDistribution last="0"> + <route cost="22.03" probability="1.00000000" edges="4/2to3/2 3/2to3/1 3/1to3/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car1121" depart="1121.00"> + <routeDistribution last="0"> + <route cost="51.28" probability="1.00000000" edges="2/2to2/3 2/3to3/3 3/3to4/3 4/3to4/2 4/2to4/1 4/1to4/0 4/0to3/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car1122" depart="1122.00"> + <routeDistribution last="0"> + <route cost="31.45" probability="1.00000000" edges="1/0to1/1 1/1to0/1 0/1to0/2 0/2to1/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car1123" depart="1123.00"> + <routeDistribution last="0"> + <route cost="29.66" probability="1.00000000" edges="3/4to2/4 2/4to3/4 3/4to3/3 3/3to3/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car1124" depart="1124.00"> + <routeDistribution last="0"> + <route cost="30.34" probability="1.00000000" edges="1/0to1/1 1/1to2/1 2/1to3/1 3/1to3/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car1125" depart="1125.00"> + <routeDistribution last="0"> + <route cost="54.80" probability="1.00000000" edges="1/4to0/4 0/4to1/4 1/4to2/4 2/4to3/4 3/4to3/3 3/3to3/2 3/2to4/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car1126" depart="1126.00"> + <routeDistribution last="0"> + <route cost="40.24" probability="1.00000000" edges="1/3to0/3 0/3to1/3 1/3to2/3 2/3to3/3 3/3to4/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1127" depart="1127.00"> + <routeDistribution last="0"> + <route cost="44.82" probability="1.00000000" edges="1/2to2/2 2/2to2/1 2/1to2/0 2/0to3/0 3/0to4/0 4/0to4/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1128" depart="1128.00"> + <routeDistribution last="0"> + <route cost="51.10" probability="1.00000000" edges="0/2to0/1 0/1to1/1 1/1to2/1 2/1to3/1 3/1to4/1 4/1to4/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car1129" depart="1129.00"> + <routeDistribution last="0"> + <route cost="34.96" probability="1.00000000" edges="1/4to2/4 2/4to2/3 2/3to2/2 2/2to1/2 1/2to2/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car1130" depart="1130.00"> + <routeDistribution last="0"> + <route cost="44.82" probability="1.00000000" edges="0/1to1/1 1/1to1/0 1/0to2/0 2/0to3/0 3/0to4/0 4/0to4/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1131" depart="1131.00"> + <routeDistribution last="0"> + <route cost="28.47" probability="1.00000000" edges="0/3to1/3 1/3to1/2 1/2to1/1 1/1to0/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1132" depart="1132.00"> + <routeDistribution last="0"> + <route cost="27.35" probability="1.00000000" edges="2/0to2/1 2/1to2/2 2/2to2/3 2/3to3/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1133" depart="1133.00"> + <routeDistribution last="0"> + <route cost="29.95" probability="1.00000000" edges="4/2to3/2 3/2to3/1 3/1to2/1 2/1to2/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car1134" depart="1134.00"> + <routeDistribution last="0"> + <route cost="33.34" probability="1.00000000" edges="1/3to1/2 1/2to2/2 2/2to3/2 3/2to3/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1135" depart="1135.00"> + <routeDistribution last="0"> + <route cost="36.83" probability="1.00000000" edges="3/3to3/4 3/4to3/3 3/3to3/2 3/2to2/2 2/2to2/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1136" depart="1136.00"> + <routeDistribution last="0"> + <route cost="37.96" probability="1.00000000" edges="3/0to3/1 3/1to3/0 3/0to2/0 2/0to1/0 1/0to1/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1137" depart="1137.00"> + <routeDistribution last="0"> + <route cost="45.27" probability="1.00000000" edges="3/0to3/1 3/1to3/0 3/0to2/0 2/0to1/0 1/0to0/0 0/0to0/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1138" depart="1138.00"> + <routeDistribution last="0"> + <route cost="59.17" probability="1.00000000" edges="1/0to0/0 0/0to0/1 0/1to1/1 1/1to1/2 1/2to2/2 2/2to2/3 2/3to3/3 3/3to3/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car1139" depart="1139.00"> + <routeDistribution last="0"> + <route cost="47.03" probability="1.00000000" edges="0/2to1/2 1/2to1/1 1/1to1/0 1/0to2/0 2/0to3/0 3/0to2/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car1140" depart="1140.00"> + <routeDistribution last="0"> + <route cost="37.33" probability="1.00000000" edges="4/3to4/4 4/4to3/4 3/4to2/4 2/4to1/4 1/4to2/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car1141" depart="1141.00"> + <routeDistribution last="0"> + <route cost="37.15" probability="1.00000000" edges="0/1to0/2 0/2to1/2 1/2to1/1 1/1to1/0 1/0to2/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car1142" depart="1142.00"> + <routeDistribution last="0"> + <route cost="43.32" probability="1.00000000" edges="1/4to1/3 1/3to0/3 0/3to0/2 0/2to0/1 0/1to0/0 0/0to1/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car1143" depart="1143.00"> + <routeDistribution last="0"> + <route cost="45.83" probability="1.00000000" edges="1/3to1/2 1/2to1/3 1/3to1/4 1/4to2/4 2/4to3/4 3/4to4/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car1144" depart="1144.00"> + <routeDistribution last="0"> + <route cost="30.73" probability="1.00000000" edges="1/0to2/0 2/0to3/0 3/0to3/1 3/1to3/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car1145" depart="1145.00"> + <routeDistribution last="0"> + <route cost="53.85" probability="1.00000000" edges="3/1to4/1 4/1to3/1 3/1to2/1 2/1to1/1 1/1to1/2 1/2to1/3 1/3to2/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1146" depart="1146.00"> + <routeDistribution last="0"> + <route cost="23.15" probability="1.00000000" edges="0/3to1/3 1/3to1/4 1/4to2/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car1147" depart="1147.00"> + <routeDistribution last="0"> + <route cost="43.53" probability="1.00000000" edges="2/4to2/3 2/3to2/2 2/2to2/1 2/1to2/0 2/0to1/0 1/0to0/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car1148" depart="1148.00"> + <routeDistribution last="0"> + <route cost="36.45" probability="1.00000000" edges="3/4to3/3 3/3to2/3 2/3to2/2 2/2to1/2 1/2to2/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car1149" depart="1149.00"> + <routeDistribution last="0"> + <route cost="23.53" probability="1.00000000" edges="1/2to2/2 2/2to3/2 3/2to3/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1150" depart="1150.00"> + <routeDistribution last="0"> + <route cost="30.62" probability="1.00000000" edges="4/1to4/2 4/2to4/3 4/3to4/4 4/4to4/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1151" depart="1151.00"> + <routeDistribution last="0"> + <route cost="38.66" probability="1.00000000" edges="1/3to2/3 2/3to3/3 3/3to4/3 4/3to4/2 4/2to3/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car1152" depart="1152.00"> + <routeDistribution last="0"> + <route cost="49.52" probability="1.00000000" edges="1/4to0/4 0/4to0/3 0/3to0/2 0/2to0/1 0/1to0/0 0/0to1/0 1/0to2/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car1153" depart="1153.00"> + <routeDistribution last="0"> + <route cost="29.65" probability="1.00000000" edges="4/3to3/3 3/3to4/3 4/3to4/2 4/2to4/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1154" depart="1154.00"> + <routeDistribution last="0"> + <route cost="24.65" probability="1.00000000" edges="2/0to2/1 2/1to1/1 1/1to1/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car1155" depart="1155.00"> + <routeDistribution last="0"> + <route cost="41.72" probability="1.00000000" edges="3/2to3/3 3/3to2/3 2/3to1/3 1/3to0/3 0/3to1/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1156" depart="1156.00"> + <routeDistribution last="0"> + <route cost="48.39" probability="1.00000000" edges="1/0to0/0 0/0to0/1 0/1to0/2 0/2to0/3 0/3to0/4 0/4to1/4 1/4to1/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1157" depart="1157.00"> + <routeDistribution last="0"> + <route cost="32.51" probability="1.00000000" edges="3/1to2/1 2/1to1/1 1/1to0/1 0/1to0/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car1158" depart="1158.00"> + <routeDistribution last="0"> + <route cost="51.65" probability="1.00000000" edges="4/1to4/0 4/0to3/0 3/0to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to0/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car1159" depart="1159.00"> + <routeDistribution last="0"> + <route cost="37.15" probability="1.00000000" edges="2/3to1/3 1/3to1/2 1/2to1/1 1/1to0/1 0/1to0/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car1160" depart="1160.00"> + <routeDistribution last="0"> + <route cost="35.94" probability="1.00000000" edges="4/4to4/3 4/3to3/3 3/3to3/2 3/2to3/1 3/1to2/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1161" depart="1161.00"> + <routeDistribution last="0"> + <route cost="39.52" probability="1.00000000" edges="3/1to2/1 2/1to1/1 1/1to0/1 0/1to0/0 0/0to1/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car1162" depart="1162.00"> + <routeDistribution last="0"> + <route cost="20.16" probability="1.00000000" edges="1/4to2/4 2/4to2/3 2/3to2/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car1163" depart="1163.00"> + <routeDistribution last="0"> + <route cost="61.16" probability="1.00000000" edges="2/1to3/1 3/1to2/1 2/1to1/1 1/1to0/1 0/1to0/2 0/2to0/3 0/3to0/4 0/4to1/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car1164" depart="1164.00"> + <routeDistribution last="0"> + <route cost="53.85" probability="1.00000000" edges="1/3to0/3 0/3to1/3 1/3to2/3 2/3to3/3 3/3to3/2 3/2to3/1 3/1to2/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1165" depart="1165.00"> + <routeDistribution last="0"> + <route cost="32.66" probability="1.00000000" edges="3/1to2/1 2/1to1/1 1/1to1/2 1/2to1/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1166" depart="1166.00"> + <routeDistribution last="0"> + <route cost="52.30" probability="1.00000000" edges="3/4to4/4 4/4to3/4 3/4to2/4 2/4to1/4 1/4to0/4 0/4to0/3 0/3to0/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car1167" depart="1167.00"> + <routeDistribution last="0"> + <route cost="53.34" probability="1.00000000" edges="3/2to3/1 3/1to2/1 2/1to1/1 1/1to0/1 0/1to0/2 0/2to0/3 0/3to0/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car1168" depart="1168.00"> + <routeDistribution last="0"> + <route cost="31.16" probability="1.00000000" edges="1/2to1/1 1/1to1/2 1/2to2/2 2/2to3/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car1169" depart="1169.00"> + <routeDistribution last="0"> + <route cost="21.66" probability="1.00000000" edges="2/2to2/1 2/1to1/1 1/1to0/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1170" depart="1170.00"> + <routeDistribution last="0"> + <route cost="42.03" probability="1.00000000" edges="4/2to4/3 4/3to3/3 3/3to2/3 2/3to1/3 1/3to1/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car1171" depart="1171.00"> + <routeDistribution last="0"> + <route cost="38.95" probability="1.00000000" edges="0/0to0/1 0/1to1/1 1/1to2/1 2/1to3/1 3/1to3/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car1172" depart="1172.00"> + <routeDistribution last="0"> + <route cost="30.26" probability="1.00000000" edges="4/2to3/2 3/2to3/3 3/3to3/4 3/4to4/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car1173" depart="1173.00"> + <routeDistribution last="0"> + <route cost="66.02" probability="1.00000000" edges="3/1to3/0 3/0to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to0/4 0/4to0/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1174" depart="1174.00"> + <routeDistribution last="0"> + <route cost="23.53" probability="1.00000000" edges="0/2to1/2 1/2to2/2 2/2to2/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1175" depart="1175.00"> + <routeDistribution last="0"> + <route cost="55.35" probability="1.00000000" edges="3/2to3/1 3/1to2/1 2/1to1/1 1/1to0/1 0/1to0/2 0/2to0/3 0/3to0/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car1176" depart="1176.00"> + <routeDistribution last="0"> + <route cost="45.43" probability="1.00000000" edges="4/4to4/3 4/3to3/3 3/3to3/2 3/2to2/2 2/2to1/2 1/2to2/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car1177" depart="1177.00"> + <routeDistribution last="0"> + <route cost="20.27" probability="1.00000000" edges="1/0to0/0 0/0to0/1 0/1to0/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car1178" depart="1178.00"> + <routeDistribution last="0"> + <route cost="39.00" probability="1.00000000" edges="1/2to2/2 2/2to2/3 2/3to3/3 3/3to3/4 3/4to2/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car1179" depart="1179.00"> + <routeDistribution last="0"> + <route cost="33.73" probability="1.00000000" edges="1/3to1/2 1/2to2/2 2/2to3/2 3/2to4/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car1180" depart="1180.00"> + <routeDistribution last="0"> + <route cost="38.33" probability="1.00000000" edges="0/2to1/2 1/2to2/2 2/2to2/3 2/3to3/3 3/3to2/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1181" depart="1181.00"> + <routeDistribution last="0"> + <route cost="58.83" probability="1.00000000" edges="0/1to0/2 0/2to1/2 1/2to1/1 1/1to1/0 1/0to2/0 2/0to3/0 3/0to4/0 4/0to4/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1182" depart="1182.00"> + <routeDistribution last="0"> + <route cost="29.14" probability="1.00000000" edges="3/1to3/0 3/0to2/0 2/0to1/0 1/0to0/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car1183" depart="1183.00"> + <routeDistribution last="0"> + <route cost="51.81" probability="1.00000000" edges="1/4to0/4 0/4to1/4 1/4to2/4 2/4to2/3 2/3to2/2 2/2to2/1 2/1to2/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car1184" depart="1184.00"> + <routeDistribution last="0"> + <route cost="44.34" probability="1.00000000" edges="0/2to1/2 1/2to1/3 1/3to1/4 1/4to2/4 2/4to3/4 3/4to3/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1185" depart="1185.00"> + <routeDistribution last="0"> + <route cost="39.03" probability="1.00000000" edges="4/3to4/2 4/2to3/2 3/2to2/2 2/2to1/2 1/2to1/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1186" depart="1186.00"> + <routeDistribution last="0"> + <route cost="57.71" probability="1.00000000" edges="1/4to2/4 2/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to4/0 4/0to4/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1187" depart="1187.00"> + <routeDistribution last="0"> + <route cost="45.56" probability="1.00000000" edges="3/3to4/3 4/3to4/2 4/2to4/1 4/1to4/0 4/0to3/0 3/0to4/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car1188" depart="1188.00"> + <routeDistribution last="0"> + <route cost="48.83" probability="1.00000000" edges="3/3to4/3 4/3to3/3 3/3to2/3 2/3to1/3 1/3to0/3 0/3to0/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car1189" depart="1189.00"> + <routeDistribution last="0"> + <route cost="48.23" probability="1.00000000" edges="3/1to4/1 4/1to3/1 3/1to2/1 2/1to1/1 1/1to0/1 0/1to1/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1190" depart="1190.00"> + <routeDistribution last="0"> + <route cost="47.47" probability="1.00000000" edges="4/3to3/3 3/3to2/3 2/3to1/3 1/3to0/3 0/3to0/4 0/4to1/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car1191" depart="1191.00"> + <routeDistribution last="0"> + <route cost="52.04" probability="1.00000000" edges="2/0to3/0 3/0to2/0 2/0to2/1 2/1to2/2 2/2to2/3 2/3to2/4 2/4to2/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1192" depart="1192.00"> + <routeDistribution last="0"> + <route cost="46.34" probability="1.00000000" edges="3/4to2/4 2/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to3/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car1193" depart="1193.00"> + <routeDistribution last="0"> + <route cost="36.05" probability="1.00000000" edges="1/0to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to2/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car1194" depart="1194.00"> + <routeDistribution last="0"> + <route cost="35.32" probability="1.00000000" edges="1/4to0/4 0/4to0/3 0/3to0/2 0/2to0/1 0/1to0/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car1195" depart="1195.00"> + <routeDistribution last="0"> + <route cost="52.50" probability="1.00000000" edges="4/3to4/4 4/4to3/4 3/4to2/4 2/4to1/4 1/4to0/4 0/4to0/3 0/3to1/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1196" depart="1196.00"> + <routeDistribution last="0"> + <route cost="62.03" probability="1.00000000" edges="4/2to4/1 4/1to3/1 3/1to2/1 2/1to1/1 1/1to0/1 0/1to0/2 0/2to0/3 0/3to0/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car1197" depart="1197.00"> + <routeDistribution last="0"> + <route cost="33.34" probability="1.00000000" edges="2/0to2/1 2/1to1/1 1/1to0/1 0/1to0/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car1198" depart="1198.00"> + <routeDistribution last="0"> + <route cost="37.15" probability="1.00000000" edges="3/3to3/2 3/2to2/2 2/2to2/3 2/3to2/4 2/4to1/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car1199" depart="1199.00"> + <routeDistribution last="0"> + <route cost="49.66" probability="1.00000000" edges="3/1to3/0 3/0to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to2/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1200" depart="1200.00"> + <routeDistribution last="0"> + <route cost="38.66" probability="1.00000000" edges="0/2to1/2 1/2to2/2 2/2to3/2 3/2to3/1 3/1to2/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1201" depart="1201.00"> + <routeDistribution last="0"> + <route cost="36.46" probability="1.00000000" edges="1/1to2/1 2/1to1/1 1/1to1/2 1/2to1/3 1/3to2/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1202" depart="1202.00"> + <routeDistribution last="0"> + <route cost="45.92" probability="1.00000000" edges="3/1to3/2 3/2to3/3 3/3to3/4 3/4to2/4 2/4to1/4 1/4to2/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car1203" depart="1203.00"> + <routeDistribution last="0"> + <route cost="42.03" probability="1.00000000" edges="4/0to3/0 3/0to2/0 2/0to2/1 2/1to2/2 2/2to2/3 2/3to2/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car1204" depart="1204.00"> + <routeDistribution last="0"> + <route cost="60.92" probability="1.00000000" edges="4/4to4/3 4/3to3/3 3/3to3/2 3/2to2/2 2/2to2/1 2/1to1/1 1/1to0/1 0/1to1/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1205" depart="1205.00"> + <routeDistribution last="0"> + <route cost="73.23" probability="1.00000000" edges="3/0to4/0 4/0to3/0 3/0to2/0 2/0to1/0 1/0to0/0 0/0to0/1 0/1to0/2 0/2to0/3 0/3to0/4 0/4to1/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car1206" depart="1206.00"> + <routeDistribution last="0"> + <route cost="50.04" probability="1.00000000" edges="4/1to3/1 3/1to2/1 2/1to1/1 1/1to0/1 0/1to0/2 0/2to0/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1207" depart="1207.00"> + <routeDistribution last="0"> + <route cost="66.89" probability="1.00000000" edges="4/3to4/4 4/4to3/4 3/4to2/4 2/4to1/4 1/4to0/4 0/4to0/3 0/3to0/2 0/2to0/1 0/1to1/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1208" depart="1208.00"> + <routeDistribution last="0"> + <route cost="29.51" probability="1.00000000" edges="1/1to1/0 1/0to2/0 2/0to3/0 3/0to4/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car1209" depart="1209.00"> + <routeDistribution last="0"> + <route cost="24.65" probability="1.00000000" edges="2/0to2/1 2/1to1/1 1/1to1/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car1210" depart="1210.00"> + <routeDistribution last="0"> + <route cost="37.52" probability="1.00000000" edges="2/1to2/2 2/2to3/2 3/2to3/3 3/3to3/4 3/4to2/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car1211" depart="1211.00"> + <routeDistribution last="0"> + <route cost="29.32" probability="1.00000000" edges="2/1to2/0 2/0to3/0 3/0to4/0 4/0to4/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1212" depart="1212.00"> + <routeDistribution last="0"> + <route cost="50.45" probability="1.00000000" edges="2/1to2/0 2/0to1/0 1/0to0/0 0/0to0/1 0/1to0/2 0/2to0/3 0/3to0/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car1213" depart="1213.00"> + <routeDistribution last="0"> + <route cost="45.21" probability="1.00000000" edges="0/3to0/2 0/2to0/1 0/1to0/0 0/0to1/0 1/0to2/0 2/0to2/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1214" depart="1214.00"> + <routeDistribution last="0"> + <route cost="58.16" probability="1.00000000" edges="2/3to2/4 2/4to2/3 2/3to2/2 2/2to2/1 2/1to2/0 2/0to1/0 1/0to0/0 0/0to0/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1215" depart="1215.00"> + <routeDistribution last="0"> + <route cost="37.53" probability="1.00000000" edges="0/2to1/2 1/2to1/3 1/3to1/4 1/4to2/4 2/4to3/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car1216" depart="1216.00"> + <routeDistribution last="0"> + <route cost="44.73" probability="1.00000000" edges="3/0to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to0/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1217" depart="1217.00"> + <routeDistribution last="0"> + <route cost="37.95" probability="1.00000000" edges="2/2to2/3 2/3to2/2 2/2to1/2 1/2to1/1 1/1to0/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1218" depart="1218.00"> + <routeDistribution last="0"> + <route cost="35.35" probability="1.00000000" edges="1/4to1/3 1/3to1/2 1/2to1/1 1/1to0/1 0/1to1/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1219" depart="1219.00"> + <routeDistribution last="0"> + <route cost="51.16" probability="1.00000000" edges="2/3to2/4 2/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to2/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car1220" depart="1220.00"> + <routeDistribution last="0"> + <route cost="53.34" probability="1.00000000" edges="3/2to3/1 3/1to2/1 2/1to1/1 1/1to0/1 0/1to0/2 0/2to0/3 0/3to0/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car1221" depart="1221.00"> + <routeDistribution last="0"> + <route cost="37.52" probability="1.00000000" edges="3/3to2/3 2/3to2/2 2/2to1/2 1/2to1/1 1/1to1/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car1222" depart="1222.00"> + <routeDistribution last="0"> + <route cost="30.63" probability="1.00000000" edges="1/3to2/3 2/3to2/4 2/4to3/4 3/4to4/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car1223" depart="1223.00"> + <routeDistribution last="0"> + <route cost="52.82" probability="1.00000000" edges="4/3to4/4 4/4to3/4 3/4to2/4 2/4to2/3 2/3to2/2 2/2to1/2 1/2to2/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car1224" depart="1224.00"> + <routeDistribution last="0"> + <route cost="49.52" probability="1.00000000" edges="0/4to0/3 0/3to0/2 0/2to1/2 1/2to2/2 2/2to3/2 3/2to3/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1225" depart="1225.00"> + <routeDistribution last="0"> + <route cost="55.35" probability="1.00000000" edges="3/2to3/1 3/1to2/1 2/1to1/1 1/1to0/1 0/1to0/2 0/2to0/3 0/3to0/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car1226" depart="1226.00"> + <routeDistribution last="0"> + <route cost="59.55" probability="1.00000000" edges="2/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to2/0 2/0to1/0 1/0to2/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car1227" depart="1227.00"> + <routeDistribution last="0"> + <route cost="51.35" probability="1.00000000" edges="4/2to4/3 4/3to4/2 4/2to4/1 4/1to4/0 4/0to3/0 3/0to2/0 2/0to1/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car1228" depart="1228.00"> + <routeDistribution last="0"> + <route cost="28.84" probability="1.00000000" edges="2/1to2/2 2/2to3/2 3/2to3/3 3/3to3/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car1229" depart="1229.00"> + <routeDistribution last="0"> + <route cost="55.35" probability="1.00000000" edges="3/2to3/1 3/1to2/1 2/1to1/1 1/1to0/1 0/1to0/2 0/2to0/3 0/3to0/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car1230" depart="1230.00"> + <routeDistribution last="0"> + <route cost="35.03" probability="1.00000000" edges="2/0to3/0 3/0to4/0 4/0to4/1 4/1to4/2 4/2to4/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1231" depart="1231.00"> + <routeDistribution last="0"> + <route cost="30.35" probability="1.00000000" edges="0/3to1/3 1/3to2/3 2/3to2/2 2/2to2/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1232" depart="1232.00"> + <routeDistribution last="0"> + <route cost="37.15" probability="1.00000000" edges="2/3to1/3 1/3to1/2 1/2to1/1 1/1to0/1 0/1to0/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car1233" depart="1233.00"> + <routeDistribution last="0"> + <route cost="36.96" probability="1.00000000" edges="4/2to4/3 4/3to4/2 4/2to4/1 4/1to4/0 4/0to3/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car1234" depart="1234.00"> + <routeDistribution last="0"> + <route cost="41.47" probability="1.00000000" edges="4/2to4/1 4/1to4/0 4/0to3/0 3/0to2/0 2/0to1/0 1/0to1/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1235" depart="1235.00"> + <routeDistribution last="0"> + <route cost="23.15" probability="1.00000000" edges="0/3to1/3 1/3to1/4 1/4to2/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car1236" depart="1236.00"> + <routeDistribution last="0"> + <route cost="42.14" probability="1.00000000" edges="2/4to3/4 3/4to4/4 4/4to4/3 4/3to4/2 4/2to4/1 4/1to4/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car1237" depart="1237.00"> + <routeDistribution last="0"> + <route cost="31.53" probability="1.00000000" edges="2/2to2/3 2/3to2/4 2/4to1/4 1/4to2/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car1238" depart="1238.00"> + <routeDistribution last="0"> + <route cost="37.25" probability="1.00000000" edges="4/4to3/4 3/4to4/4 4/4to4/3 4/3to4/2 4/2to4/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1239" depart="1239.00"> + <routeDistribution last="0"> + <route cost="30.32" probability="1.00000000" edges="3/3to2/3 2/3to2/2 2/2to1/2 1/2to1/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1240" depart="1240.00"> + <routeDistribution last="0"> + <route cost="40.15" probability="1.00000000" edges="2/1to2/2 2/2to1/2 1/2to0/2 0/2to0/3 0/3to1/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1241" depart="1241.00"> + <routeDistribution last="0"> + <route cost="33.71" probability="1.00000000" edges="2/0to3/0 3/0to3/1 3/1to3/2 3/2to2/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car1242" depart="1242.00"> + <routeDistribution last="0"> + <route cost="33.73" probability="1.00000000" edges="3/0to3/1 3/1to2/1 2/1to1/1 1/1to0/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1243" depart="1243.00"> + <routeDistribution last="0"> + <route cost="34.16" probability="1.00000000" edges="3/0to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to2/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car1244" depart="1244.00"> + <routeDistribution last="0"> + <route cost="37.55" probability="1.00000000" edges="1/3to2/3 2/3to3/3 3/3to3/2 3/2to3/1 3/1to3/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car1245" depart="1245.00"> + <routeDistribution last="0"> + <route cost="37.82" probability="1.00000000" edges="4/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to2/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1246" depart="1246.00"> + <routeDistribution last="0"> + <route cost="29.97" probability="1.00000000" edges="4/3to4/2 4/2to3/2 3/2to2/2 2/2to2/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1247" depart="1247.00"> + <routeDistribution last="0"> + <route cost="56.54" probability="1.00000000" edges="3/1to4/1 4/1to3/1 3/1to2/1 2/1to1/1 1/1to1/2 1/2to1/3 1/3to1/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car1248" depart="1248.00"> + <routeDistribution last="0"> + <route cost="28.58" probability="1.00000000" edges="3/2to4/2 4/2to4/1 4/1to4/0 4/0to3/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car1249" depart="1249.00"> + <routeDistribution last="0"> + <route cost="59.97" probability="1.00000000" edges="1/2to1/3 1/3to2/3 2/3to3/3 3/3to4/3 4/3to4/2 4/2to4/1 4/1to4/0 4/0to3/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car1250" depart="1250.00"> + <routeDistribution last="0"> + <route cost="33.71" probability="1.00000000" edges="3/4to2/4 2/4to2/3 2/3to2/2 2/2to3/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car1251" depart="1251.00"> + <routeDistribution last="0"> + <route cost="47.88" probability="1.00000000" edges="0/1to0/0 0/0to0/1 0/1to0/2 0/2to0/3 0/3to0/4 0/4to0/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1252" depart="1252.00"> + <routeDistribution last="0"> + <route cost="38.77" probability="1.00000000" edges="3/3to2/3 2/3to1/3 1/3to0/3 0/3to0/4 0/4to1/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car1253" depart="1253.00"> + <routeDistribution last="0"> + <route cost="65.93" probability="1.00000000" edges="0/1to0/0 0/0to0/1 0/1to0/2 0/2to0/3 0/3to0/4 0/4to1/4 1/4to2/4 2/4to3/4 3/4to3/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1254" depart="1254.00"> + <routeDistribution last="0"> + <route cost="57.54" probability="1.00000000" edges="0/3to0/2 0/2to1/2 1/2to2/2 2/2to3/2 3/2to4/2 4/2to4/1 4/1to3/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1255" depart="1255.00"> + <routeDistribution last="0"> + <route cost="38.35" probability="1.00000000" edges="3/2to4/2 4/2to3/2 3/2to2/2 2/2to2/3 2/3to2/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car1256" depart="1256.00"> + <routeDistribution last="0"> + <route cost="37.52" probability="1.00000000" edges="1/1to2/1 2/1to2/2 2/2to3/2 3/2to3/3 3/3to3/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car1257" depart="1257.00"> + <routeDistribution last="0"> + <route cost="36.52" probability="1.00000000" edges="3/1to3/0 3/0to4/0 4/0to4/1 4/1to4/2 4/2to4/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1258" depart="1258.00"> + <routeDistribution last="0"> + <route cost="59.06" probability="1.00000000" edges="2/0to1/0 1/0to1/1 1/1to2/1 2/1to2/2 2/2to3/2 3/2to3/3 3/3to4/3 4/3to4/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car1259" depart="1259.00"> + <routeDistribution last="0"> + <route cost="38.21" probability="1.00000000" edges="4/4to3/4 3/4to2/4 2/4to1/4 1/4to1/3 1/3to1/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car1260" depart="1260.00"> + <routeDistribution last="0"> + <route cost="58.20" probability="1.00000000" edges="2/3to2/4 2/4to1/4 1/4to0/4 0/4to0/3 0/3to0/2 0/2to0/1 0/1to0/0 0/0to1/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car1261" depart="1261.00"> + <routeDistribution last="0"> + <route cost="53.21" probability="1.00000000" edges="1/2to0/2 0/2to0/1 0/1to0/0 0/0to1/0 1/0to2/0 2/0to3/0 3/0to2/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car1262" depart="1262.00"> + <routeDistribution last="0"> + <route cost="42.58" probability="1.00000000" edges="3/3to3/4 3/4to4/4 4/4to4/3 4/3to4/2 4/2to4/1 4/1to3/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1263" depart="1263.00"> + <routeDistribution last="0"> + <route cost="27.08" probability="1.00000000" edges="3/4to4/4 4/4to4/3 4/3to4/2 4/2to3/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car1264" depart="1264.00"> + <routeDistribution last="0"> + <route cost="38.19" probability="1.00000000" edges="3/2to2/2 2/2to2/1 2/1to2/0 2/0to3/0 3/0to4/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car1265" depart="1265.00"> + <routeDistribution last="0"> + <route cost="52.82" probability="1.00000000" edges="4/3to4/4 4/4to3/4 3/4to2/4 2/4to2/3 2/3to2/2 2/2to1/2 1/2to2/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car1266" depart="1266.00"> + <routeDistribution last="0"> + <route cost="30.34" probability="1.00000000" edges="1/0to1/1 1/1to2/1 2/1to3/1 3/1to3/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car1267" depart="1267.00"> + <routeDistribution last="0"> + <route cost="46.66" probability="1.00000000" edges="2/2to3/2 3/2to2/2 2/2to1/2 1/2to1/3 1/3to1/4 1/4to2/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car1268" depart="1268.00"> + <routeDistribution last="0"> + <route cost="37.15" probability="1.00000000" edges="2/1to1/1 1/1to1/2 1/2to1/3 1/3to2/3 2/3to2/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car1269" depart="1269.00"> + <routeDistribution last="0"> + <route cost="29.95" probability="1.00000000" edges="1/2to0/2 0/2to0/3 0/3to1/3 1/3to1/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car1270" depart="1270.00"> + <routeDistribution last="0"> + <route cost="45.97" probability="1.00000000" edges="3/2to2/2 2/2to1/2 1/2to0/2 0/2to0/3 0/3to0/4 0/4to1/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car1271" depart="1271.00"> + <routeDistribution last="0"> + <route cost="20.45" probability="1.00000000" edges="0/4to1/4 1/4to1/3 1/3to1/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car1272" depart="1272.00"> + <routeDistribution last="0"> + <route cost="47.71" probability="1.00000000" edges="0/1to1/1 1/1to2/1 2/1to2/2 2/2to3/2 3/2to4/2 4/2to4/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1273" depart="1273.00"> + <routeDistribution last="0"> + <route cost="46.92" probability="1.00000000" edges="1/4to0/4 0/4to1/4 1/4to2/4 2/4to3/4 3/4to3/3 3/3to3/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car1274" depart="1274.00"> + <routeDistribution last="0"> + <route cost="20.55" probability="1.00000000" edges="1/3to1/2 1/2to1/1 1/1to1/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car1275" depart="1275.00"> + <routeDistribution last="0"> + <route cost="38.72" probability="1.00000000" edges="2/2to2/3 2/3to2/2 2/2to2/1 2/1to2/0 2/0to3/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car1276" depart="1276.00"> + <routeDistribution last="0"> + <route cost="51.64" probability="1.00000000" edges="1/1to1/0 1/0to1/1 1/1to1/2 1/2to2/2 2/2to2/3 2/3to3/3 3/3to2/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1277" depart="1277.00"> + <routeDistribution last="0"> + <route cost="44.08" probability="1.00000000" edges="2/3to1/3 1/3to1/4 1/4to2/4 2/4to3/4 3/4to4/4 4/4to4/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1278" depart="1278.00"> + <routeDistribution last="0"> + <route cost="38.95" probability="1.00000000" edges="0/0to0/1 0/1to1/1 1/1to2/1 2/1to3/1 3/1to3/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car1279" depart="1279.00"> + <routeDistribution last="0"> + <route cost="42.03" probability="1.00000000" edges="1/3to1/2 1/2to2/2 2/2to3/2 3/2to4/2 4/2to4/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1280" depart="1280.00"> + <routeDistribution last="0"> + <route cost="39.83" probability="1.00000000" edges="4/3to3/3 3/3to3/4 3/4to2/4 2/4to1/4 1/4to2/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car1281" depart="1281.00"> + <routeDistribution last="0"> + <route cost="35.77" probability="1.00000000" edges="2/1to2/0 2/0to1/0 1/0to0/0 0/0to0/1 0/1to0/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car1282" depart="1282.00"> + <routeDistribution last="0"> + <route cost="53.65" probability="1.00000000" edges="4/1to4/2 4/2to4/1 4/1to4/0 4/0to3/0 3/0to2/0 2/0to1/0 1/0to2/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car1283" depart="1283.00"> + <routeDistribution last="0"> + <route cost="67.86" probability="1.00000000" edges="1/0to0/0 0/0to0/1 0/1to1/1 1/1to1/2 1/2to2/2 2/2to2/3 2/3to3/3 3/3to4/3 4/3to4/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car1284" depart="1284.00"> + <routeDistribution last="0"> + <route cost="42.97" probability="1.00000000" edges="2/3to2/2 2/2to2/1 2/1to2/0 2/0to1/0 1/0to0/0 0/0to0/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1285" depart="1285.00"> + <routeDistribution last="0"> + <route cost="42.03" probability="1.00000000" edges="0/2to0/1 0/1to1/1 1/1to2/1 2/1to3/1 3/1to3/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car1286" depart="1286.00"> + <routeDistribution last="0"> + <route cost="31.45" probability="1.00000000" edges="3/3to3/2 3/2to4/2 4/2to4/1 4/1to3/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1287" depart="1287.00"> + <routeDistribution last="0"> + <route cost="60.84" probability="1.00000000" edges="2/0to3/0 3/0to2/0 2/0to1/0 1/0to0/0 0/0to0/1 0/1to0/2 0/2to0/3 0/3to0/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car1288" depart="1288.00"> + <routeDistribution last="0"> + <route cost="38.02" probability="1.00000000" edges="3/0to4/0 4/0to4/1 4/1to4/2 4/2to4/3 4/3to3/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1289" depart="1289.00"> + <routeDistribution last="0"> + <route cost="60.97" probability="1.00000000" edges="3/2to4/2 4/2to4/3 4/3to4/4 4/4to3/4 3/4to2/4 2/4to1/4 1/4to0/4 0/4to1/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car1290" depart="1290.00"> + <routeDistribution last="0"> + <route cost="31.84" probability="1.00000000" edges="2/1to2/2 2/2to2/3 2/3to1/3 1/3to1/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car1291" depart="1291.00"> + <routeDistribution last="0"> + <route cost="46.01" probability="1.00000000" edges="1/2to0/2 0/2to0/1 0/1to0/0 0/0to1/0 1/0to2/0 2/0to1/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car1292" depart="1292.00"> + <routeDistribution last="0"> + <route cost="25.03" probability="1.00000000" edges="3/0to3/1 3/1to2/1 2/1to1/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1293" depart="1293.00"> + <routeDistribution last="0"> + <route cost="38.94" probability="1.00000000" edges="0/0to1/0 1/0to2/0 2/0to2/1 2/1to3/1 3/1to3/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car1294" depart="1294.00"> + <routeDistribution last="0"> + <route cost="52.58" probability="1.00000000" edges="2/3to1/3 1/3to1/2 1/2to1/1 1/1to1/0 1/0to2/0 2/0to3/0 3/0to4/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car1295" depart="1295.00"> + <routeDistribution last="0"> + <route cost="42.16" probability="1.00000000" edges="3/0to2/0 2/0to2/1 2/1to2/2 2/2to2/3 2/3to3/3 3/3to2/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1296" depart="1296.00"> + <routeDistribution last="0"> + <route cost="43.66" probability="1.00000000" edges="2/4to1/4 1/4to2/4 2/4to3/4 3/4to3/3 3/3to3/2 3/2to2/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car1297" depart="1297.00"> + <routeDistribution last="0"> + <route cost="57.22" probability="1.00000000" edges="0/2to0/1 0/1to0/2 0/2to1/2 1/2to2/2 2/2to3/2 3/2to4/2 4/2to4/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1298" depart="1298.00"> + <routeDistribution last="0"> + <route cost="48.53" probability="1.00000000" edges="0/3to0/2 0/2to0/3 0/3to1/3 1/3to2/3 2/3to3/3 3/3to3/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car1299" depart="1299.00"> + <routeDistribution last="0"> + <route cost="28.84" probability="1.00000000" edges="3/3to3/2 3/2to2/2 2/2to2/1 2/1to2/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car1300" depart="1300.00"> + <routeDistribution last="0"> + <route cost="39.83" probability="1.00000000" edges="2/1to3/1 3/1to2/1 2/1to2/2 2/2to2/3 2/3to1/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1301" depart="1301.00"> + <routeDistribution last="0"> + <route cost="45.86" probability="1.00000000" edges="0/3to1/3 1/3to2/3 2/3to2/2 2/2to2/1 2/1to2/0 2/0to1/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car1302" depart="1302.00"> + <routeDistribution last="0"> + <route cost="58.83" probability="1.00000000" edges="4/3to4/2 4/2to3/2 3/2to3/3 3/3to3/4 3/4to2/4 2/4to1/4 1/4to0/4 0/4to0/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1303" depart="1303.00"> + <routeDistribution last="0"> + <route cost="41.72" probability="1.00000000" edges="1/4to1/3 1/3to2/3 2/3to3/3 3/3to4/3 4/3to3/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1304" depart="1304.00"> + <routeDistribution last="0"> + <route cost="47.88" probability="1.00000000" edges="0/3to0/4 0/4to0/3 0/3to0/2 0/2to0/1 0/1to0/0 0/0to0/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1305" depart="1305.00"> + <routeDistribution last="0"> + <route cost="32.24" probability="1.00000000" edges="4/3to3/3 3/3to2/3 2/3to1/3 1/3to0/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1306" depart="1306.00"> + <routeDistribution last="0"> + <route cost="37.53" probability="1.00000000" edges="1/3to2/3 2/3to2/2 2/2to2/1 2/1to2/0 2/0to3/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car1307" depart="1307.00"> + <routeDistribution last="0"> + <route cost="44.23" probability="1.00000000" edges="3/0to4/0 4/0to3/0 3/0to2/0 2/0to2/1 2/1to2/2 2/2to3/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car1308" depart="1308.00"> + <routeDistribution last="0"> + <route cost="34.84" probability="1.00000000" edges="0/4to1/4 1/4to1/3 1/3to1/2 1/2to1/1 1/1to1/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car1309" depart="1309.00"> + <routeDistribution last="0"> + <route cost="65.46" probability="1.00000000" edges="3/4to4/4 4/4to4/3 4/3to4/2 4/2to4/1 4/1to4/0 4/0to3/0 3/0to2/0 2/0to1/0 1/0to2/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car1310" depart="1310.00"> + <routeDistribution last="0"> + <route cost="43.94" probability="1.00000000" edges="1/0to1/1 1/1to2/1 2/1to2/2 2/2to3/2 3/2to3/3 3/3to4/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1311" depart="1311.00"> + <routeDistribution last="0"> + <route cost="32.23" probability="1.00000000" edges="0/2to1/2 1/2to2/2 2/2to3/2 3/2to3/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1312" depart="1312.00"> + <routeDistribution last="0"> + <route cost="21.66" probability="1.00000000" edges="2/2to1/2 1/2to1/3 1/3to1/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car1313" depart="1313.00"> + <routeDistribution last="0"> + <route cost="45.86" probability="1.00000000" edges="0/3to1/3 1/3to2/3 2/3to3/3 3/3to3/2 3/2to3/1 3/1to2/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1314" depart="1314.00"> + <routeDistribution last="0"> + <route cost="51.72" probability="1.00000000" edges="0/3to0/2 0/2to0/1 0/1to0/0 0/0to1/0 1/0to2/0 2/0to3/0 3/0to2/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car1315" depart="1315.00"> + <routeDistribution last="0"> + <route cost="41.35" probability="1.00000000" edges="4/2to3/2 3/2to2/2 2/2to1/2 1/2to1/3 1/3to1/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car1316" depart="1316.00"> + <routeDistribution last="0"> + <route cost="31.45" probability="1.00000000" edges="1/3to1/2 1/2to2/2 2/2to2/1 2/1to1/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1317" depart="1317.00"> + <routeDistribution last="0"> + <route cost="21.95" probability="1.00000000" edges="0/0to0/1 0/1to1/1 1/1to2/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1318" depart="1318.00"> + <routeDistribution last="0"> + <route cost="45.14" probability="1.00000000" edges="1/1to1/0 1/0to1/1 1/1to2/1 2/1to2/2 2/2to3/2 3/2to4/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car1319" depart="1319.00"> + <routeDistribution last="0"> + <route cost="41.35" probability="1.00000000" edges="0/3to1/3 1/3to2/3 2/3to3/3 3/3to3/2 3/2to3/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1320" depart="1320.00"> + <routeDistribution last="0"> + <route cost="50.85" probability="1.00000000" edges="2/3to2/4 2/4to2/3 2/3to2/2 2/2to2/1 2/1to2/0 2/0to1/0 1/0to1/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1321" depart="1321.00"> + <routeDistribution last="0"> + <route cost="48.77" probability="1.00000000" edges="2/4to3/4 3/4to4/4 4/4to4/3 4/3to4/2 4/2to4/1 4/1to4/0 4/0to3/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car1322" depart="1322.00"> + <routeDistribution last="0"> + <route cost="64.19" probability="1.00000000" edges="4/0to4/1 4/1to4/2 4/2to4/3 4/3to4/4 4/4to3/4 3/4to2/4 2/4to1/4 1/4to0/4 0/4to0/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1323" depart="1323.00"> + <routeDistribution last="0"> + <route cost="21.65" probability="1.00000000" edges="2/3to2/2 2/2to1/2 1/2to1/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1324" depart="1324.00"> + <routeDistribution last="0"> + <route cost="55.97" probability="1.00000000" edges="4/1to4/0 4/0to3/0 3/0to2/0 2/0to1/0 1/0to0/0 0/0to0/1 0/1to0/2 0/2to0/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1325" depart="1325.00"> + <routeDistribution last="0"> + <route cost="37.33" probability="1.00000000" edges="0/2to0/3 0/3to0/2 0/2to0/1 0/1to0/0 0/0to1/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car1326" depart="1326.00"> + <routeDistribution last="0"> + <route cost="46.92" probability="1.00000000" edges="2/2to2/3 2/3to2/2 2/2to1/2 1/2to1/1 1/1to0/1 0/1to0/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car1327" depart="1327.00"> + <routeDistribution last="0"> + <route cost="52.04" probability="1.00000000" edges="2/4to1/4 1/4to2/4 2/4to2/3 2/3to2/2 2/2to2/1 2/1to2/0 2/0to2/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1328" depart="1328.00"> + <routeDistribution last="0"> + <route cost="40.15" probability="1.00000000" edges="2/4to2/3 2/3to3/3 3/3to4/3 4/3to4/2 4/2to3/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car1329" depart="1329.00"> + <routeDistribution last="0"> + <route cost="43.93" probability="1.00000000" edges="4/4to4/3 4/3to3/3 3/3to3/2 3/2to3/1 3/1to2/1 2/1to3/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1330" depart="1330.00"> + <routeDistribution last="0"> + <route cost="32.21" probability="1.00000000" edges="3/3to3/4 3/4to2/4 2/4to1/4 1/4to1/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1331" depart="1331.00"> + <routeDistribution last="0"> + <route cost="51.95" probability="1.00000000" edges="1/1to1/0 1/0to1/1 1/1to1/2 1/2to2/2 2/2to2/3 2/3to3/3 3/3to3/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car1332" depart="1332.00"> + <routeDistribution last="0"> + <route cost="29.65" probability="1.00000000" edges="2/1to3/1 3/1to2/1 2/1to2/2 2/2to2/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1333" depart="1333.00"> + <routeDistribution last="0"> + <route cost="35.65" probability="1.00000000" edges="2/0to1/0 1/0to1/1 1/1to1/2 1/2to2/2 2/2to2/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1334" depart="1334.00"> + <routeDistribution last="0"> + <route cost="52.35" probability="1.00000000" edges="3/4to2/4 2/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to2/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car1335" depart="1335.00"> + <routeDistribution last="0"> + <route cost="44.07" probability="1.00000000" edges="1/0to0/0 0/0to0/1 0/1to1/1 1/1to1/2 1/2to2/2 2/2to3/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car1336" depart="1336.00"> + <routeDistribution last="0"> + <route cost="28.84" probability="1.00000000" edges="4/3to3/3 3/3to3/2 3/2to3/1 3/1to2/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1337" depart="1337.00"> + <routeDistribution last="0"> + <route cost="30.63" probability="1.00000000" edges="2/2to1/2 1/2to1/3 1/3to1/4 1/4to0/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car1338" depart="1338.00"> + <routeDistribution last="0"> + <route cost="45.02" probability="1.00000000" edges="4/2to3/2 3/2to3/3 3/3to3/4 3/4to2/4 2/4to1/4 1/4to0/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car1339" depart="1339.00"> + <routeDistribution last="0"> + <route cost="59.12" probability="1.00000000" edges="0/1to0/2 0/2to0/3 0/3to0/4 0/4to1/4 1/4to2/4 2/4to3/4 3/4to4/4 4/4to3/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car1340" depart="1340.00"> + <routeDistribution last="0"> + <route cost="30.63" probability="1.00000000" edges="2/2to3/2 3/2to3/3 3/3to3/4 3/4to4/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car1341" depart="1341.00"> + <routeDistribution last="0"> + <route cost="52.75" probability="1.00000000" edges="3/4to4/4 4/4to4/3 4/3to3/3 3/3to3/2 3/2to2/2 2/2to1/2 1/2to1/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1342" depart="1342.00"> + <routeDistribution last="0"> + <route cost="36.34" probability="1.00000000" edges="2/3to2/2 2/2to2/1 2/1to2/0 2/0to1/0 1/0to0/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car1343" depart="1343.00"> + <routeDistribution last="0"> + <route cost="45.54" probability="1.00000000" edges="3/1to2/1 2/1to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to1/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1344" depart="1344.00"> + <routeDistribution last="0"> + <route cost="44.64" probability="1.00000000" edges="3/1to2/1 2/1to2/2 2/2to2/3 2/3to2/4 2/4to3/4 3/4to4/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car1345" depart="1345.00"> + <routeDistribution last="0"> + <route cost="46.66" probability="1.00000000" edges="2/2to3/2 3/2to2/2 2/2to1/2 1/2to1/3 1/3to1/4 1/4to2/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car1346" depart="1346.00"> + <routeDistribution last="0"> + <route cost="65.93" probability="1.00000000" edges="1/4to0/4 0/4to1/4 1/4to2/4 2/4to3/4 3/4to4/4 4/4to4/3 4/3to4/2 4/2to4/1 4/1to3/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1347" depart="1347.00"> + <routeDistribution last="0"> + <route cost="45.10" probability="1.00000000" edges="0/4to0/3 0/3to0/2 0/2to0/1 0/1to0/0 0/0to1/0 1/0to0/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car1348" depart="1348.00"> + <routeDistribution last="0"> + <route cost="59.02" probability="1.00000000" edges="0/2to0/3 0/3to1/3 1/3to1/2 1/2to1/1 1/1to1/0 1/0to2/0 2/0to3/0 3/0to4/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car1349" depart="1349.00"> + <routeDistribution last="0"> + <route cost="51.81" probability="1.00000000" edges="1/4to0/4 0/4to1/4 1/4to2/4 2/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1350" depart="1350.00"> + <routeDistribution last="0"> + <route cost="36.85" probability="1.00000000" edges="3/4to2/4 2/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1351" depart="1351.00"> + <routeDistribution last="0"> + <route cost="35.77" probability="1.00000000" edges="1/1to0/1 0/1to0/2 0/2to0/3 0/3to0/4 0/4to1/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car1352" depart="1352.00"> + <routeDistribution last="0"> + <route cost="73.23" probability="1.00000000" edges="3/4to4/4 4/4to4/3 4/3to4/2 4/2to4/1 4/1to4/0 4/0to3/0 3/0to2/0 2/0to1/0 1/0to0/0 0/0to1/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car1353" depart="1353.00"> + <routeDistribution last="0"> + <route cost="37.15" probability="1.00000000" edges="0/1to0/2 0/2to1/2 1/2to1/3 1/3to2/3 2/3to3/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1354" depart="1354.00"> + <routeDistribution last="0"> + <route cost="57.22" probability="1.00000000" edges="0/4to1/4 1/4to2/4 2/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to3/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1355" depart="1355.00"> + <routeDistribution last="0"> + <route cost="37.15" probability="1.00000000" edges="0/1to0/2 0/2to1/2 1/2to1/3 1/3to2/3 2/3to3/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1356" depart="1356.00"> + <routeDistribution last="0"> + <route cost="52.25" probability="1.00000000" edges="1/0to1/1 1/1to2/1 2/1to2/2 2/2to3/2 3/2to3/3 3/3to4/3 4/3to4/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car1357" depart="1357.00"> + <routeDistribution last="0"> + <route cost="46.13" probability="1.00000000" edges="0/0to1/0 1/0to2/0 2/0to2/1 2/1to2/2 2/2to3/2 3/2to3/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1358" depart="1358.00"> + <routeDistribution last="0"> + <route cost="30.35" probability="1.00000000" edges="3/1to2/1 2/1to1/1 1/1to1/2 1/2to1/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1359" depart="1359.00"> + <routeDistribution last="0"> + <route cost="44.36" probability="1.00000000" edges="0/2to0/3 0/3to1/3 1/3to2/3 2/3to2/2 2/2to2/1 2/1to2/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car1360" depart="1360.00"> + <routeDistribution last="0"> + <route cost="27.64" probability="1.00000000" edges="4/4to4/3 4/3to4/2 4/2to4/1 4/1to3/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1361" depart="1361.00"> + <routeDistribution last="0"> + <route cost="63.45" probability="1.00000000" edges="1/0to0/0 0/0to0/1 0/1to0/2 0/2to0/3 0/3to0/4 0/4to1/4 1/4to2/4 2/4to3/4 3/4to4/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car1362" depart="1362.00"> + <routeDistribution last="0"> + <route cost="23.15" probability="1.00000000" edges="2/4to3/4 3/4to3/3 3/3to4/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1363" depart="1363.00"> + <routeDistribution last="0"> + <route cost="50.05" probability="1.00000000" edges="3/4to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to2/0 2/0to1/0 1/0to1/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1364" depart="1364.00"> + <routeDistribution last="0"> + <route cost="32.66" probability="1.00000000" edges="3/1to2/1 2/1to1/1 1/1to1/2 1/2to1/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1365" depart="1365.00"> + <routeDistribution last="0"> + <route cost="28.54" probability="1.00000000" edges="2/1to2/2 2/2to2/3 2/3to2/4 2/4to2/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1366" depart="1366.00"> + <routeDistribution last="0"> + <route cost="28.85" probability="1.00000000" edges="1/1to1/2 1/2to1/3 1/3to1/4 1/4to2/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car1367" depart="1367.00"> + <routeDistribution last="0"> + <route cost="31.45" probability="1.00000000" edges="0/3to0/2 0/2to1/2 1/2to1/1 1/1to0/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1368" depart="1368.00"> + <routeDistribution last="0"> + <route cost="40.82" probability="1.00000000" edges="4/0to4/1 4/1to4/2 4/2to3/2 3/2to2/2 2/2to2/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1369" depart="1369.00"> + <routeDistribution last="0"> + <route cost="67.21" probability="1.00000000" edges="2/0to3/0 3/0to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to0/4 0/4to0/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1370" depart="1370.00"> + <routeDistribution last="0"> + <route cost="34.66" probability="1.00000000" edges="3/0to2/0 2/0to1/0 1/0to0/0 0/0to0/1 0/1to0/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car1371" depart="1371.00"> + <routeDistribution last="0"> + <route cost="30.34" probability="1.00000000" edges="0/3to1/3 1/3to1/4 1/4to2/4 2/4to3/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car1372" depart="1372.00"> + <routeDistribution last="0"> + <route cost="36.96" probability="1.00000000" edges="3/4to4/4 4/4to4/3 4/3to4/2 4/2to4/1 4/1to4/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car1373" depart="1373.00"> + <routeDistribution last="0"> + <route cost="29.51" probability="1.00000000" edges="3/3to3/2 3/2to3/1 3/1to3/0 3/0to4/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car1374" depart="1374.00"> + <routeDistribution last="0"> + <route cost="36.45" probability="1.00000000" edges="0/1to0/2 0/2to1/2 1/2to1/3 1/3to2/3 2/3to1/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1375" depart="1375.00"> + <routeDistribution last="0"> + <route cost="45.54" probability="1.00000000" edges="1/1to1/2 1/2to1/3 1/3to1/4 1/4to2/4 2/4to3/4 3/4to2/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car1376" depart="1376.00"> + <routeDistribution last="0"> + <route cost="32.23" probability="1.00000000" edges="2/4to2/3 2/3to2/2 2/2to3/2 3/2to4/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car1377" depart="1377.00"> + <routeDistribution last="0"> + <route cost="39.83" probability="1.00000000" edges="3/3to2/3 2/3to3/3 3/3to3/2 3/2to3/1 3/1to4/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1378" depart="1378.00"> + <routeDistribution last="0"> + <route cost="49.52" probability="1.00000000" edges="4/0to4/1 4/1to4/2 4/2to3/2 3/2to2/2 2/2to1/2 1/2to1/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1379" depart="1379.00"> + <routeDistribution last="0"> + <route cost="27.08" probability="1.00000000" edges="4/1to4/0 4/0to3/0 3/0to2/0 2/0to2/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1380" depart="1380.00"> + <routeDistribution last="0"> + <route cost="38.33" probability="1.00000000" edges="1/0to2/0 2/0to2/1 2/1to2/2 2/2to3/2 3/2to2/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car1381" depart="1381.00"> + <routeDistribution last="0"> + <route cost="36.52" probability="1.00000000" edges="3/3to4/3 4/3to4/4 4/4to3/4 3/4to2/4 2/4to1/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car1382" depart="1382.00"> + <routeDistribution last="0"> + <route cost="47.88" probability="1.00000000" edges="0/3to0/4 0/4to0/3 0/3to0/2 0/2to0/1 0/1to0/0 0/0to0/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1383" depart="1383.00"> + <routeDistribution last="0"> + <route cost="48.84" probability="1.00000000" edges="0/4to1/4 1/4to2/4 2/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to2/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1384" depart="1384.00"> + <routeDistribution last="0"> + <route cost="58.20" probability="1.00000000" edges="1/2to0/2 0/2to0/1 0/1to0/0 0/0to1/0 1/0to2/0 2/0to3/0 3/0to4/0 4/0to4/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1385" depart="1385.00"> + <routeDistribution last="0"> + <route cost="59.23" probability="1.00000000" edges="2/0to3/0 3/0to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to1/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1386" depart="1386.00"> + <routeDistribution last="0"> + <route cost="46.66" probability="1.00000000" edges="1/2to1/3 1/3to2/3 2/3to3/3 3/3to3/2 3/2to3/1 3/1to3/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car1387" depart="1387.00"> + <routeDistribution last="0"> + <route cost="37.91" probability="1.00000000" edges="3/3to2/3 2/3to2/2 2/2to2/1 2/1to2/0 2/0to3/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car1388" depart="1388.00"> + <routeDistribution last="0"> + <route cost="36.45" probability="1.00000000" edges="3/3to3/4 3/4to3/3 3/3to2/3 2/3to2/2 2/2to1/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car1389" depart="1389.00"> + <routeDistribution last="0"> + <route cost="29.65" probability="1.00000000" edges="2/1to2/0 2/0to2/1 2/1to3/1 3/1to4/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1390" depart="1390.00"> + <routeDistribution last="0"> + <route cost="34.84" probability="1.00000000" edges="0/4to1/4 1/4to1/3 1/3to1/2 1/2to1/1 1/1to1/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car1391" depart="1391.00"> + <routeDistribution last="0"> + <route cost="38.65" probability="1.00000000" edges="2/0to2/1 2/1to2/2 2/2to1/2 1/2to1/3 1/3to2/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1392" depart="1392.00"> + <routeDistribution last="0"> + <route cost="45.84" probability="1.00000000" edges="2/3to2/4 2/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to4/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1393" depart="1393.00"> + <routeDistribution last="0"> + <route cost="45.97" probability="1.00000000" edges="3/2to2/2 2/2to1/2 1/2to0/2 0/2to0/3 0/3to0/4 0/4to1/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car1394" depart="1394.00"> + <routeDistribution last="0"> + <route cost="73.23" probability="1.00000000" edges="4/3to4/4 4/4to4/3 4/3to4/2 4/2to4/1 4/1to4/0 4/0to3/0 3/0to2/0 2/0to1/0 1/0to0/0 0/0to0/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1395" depart="1395.00"> + <routeDistribution last="0"> + <route cost="46.64" probability="1.00000000" edges="4/2to4/3 4/3to4/2 4/2to3/2 3/2to3/1 3/1to2/1 2/1to1/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1396" depart="1396.00"> + <routeDistribution last="0"> + <route cost="24.65" probability="1.00000000" edges="0/2to0/1 0/1to1/1 1/1to1/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car1397" depart="1397.00"> + <routeDistribution last="0"> + <route cost="30.62" probability="1.00000000" edges="1/4to2/4 2/4to3/4 3/4to4/4 4/4to3/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car1398" depart="1398.00"> + <routeDistribution last="0"> + <route cost="26.97" probability="1.00000000" edges="3/0to2/0 2/0to2/1 2/1to2/2 2/2to3/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car1399" depart="1399.00"> + <routeDistribution last="0"> + <route cost="38.65" probability="1.00000000" edges="3/4to2/4 2/4to2/3 2/3to2/2 2/2to1/2 1/2to1/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1400" depart="1400.00"> + <routeDistribution last="0"> + <route cost="58.73" probability="1.00000000" edges="0/1to0/0 0/0to0/1 0/1to0/2 0/2to0/3 0/3to0/4 0/4to1/4 1/4to2/4 2/4to2/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1401" depart="1401.00"> + <routeDistribution last="0"> + <route cost="34.95" probability="1.00000000" edges="0/4to1/4 1/4to2/4 2/4to3/4 3/4to4/4 4/4to4/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1402" depart="1402.00"> + <routeDistribution last="0"> + <route cost="29.51" probability="1.00000000" edges="3/3to3/4 3/4to2/4 2/4to1/4 1/4to0/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car1403" depart="1403.00"> + <routeDistribution last="0"> + <route cost="51.52" probability="1.00000000" edges="2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to2/3 2/3to2/4 2/4to1/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car1404" depart="1404.00"> + <routeDistribution last="0"> + <route cost="36.34" probability="1.00000000" edges="1/2to1/3 1/3to1/4 1/4to2/4 2/4to3/4 3/4to4/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car1405" depart="1405.00"> + <routeDistribution last="0"> + <route cost="52.66" probability="1.00000000" edges="4/2to4/1 4/1to3/1 3/1to2/1 2/1to1/1 1/1to1/2 1/2to1/3 1/3to2/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1406" depart="1406.00"> + <routeDistribution last="0"> + <route cost="53.13" probability="1.00000000" edges="4/3to4/4 4/4to3/4 3/4to2/4 2/4to2/3 2/3to2/2 2/2to1/2 1/2to1/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1407" depart="1407.00"> + <routeDistribution last="0"> + <route cost="59.55" probability="1.00000000" edges="2/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to2/0 2/0to1/0 1/0to2/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car1408" depart="1408.00"> + <routeDistribution last="0"> + <route cost="13.35" probability="1.00000000" edges="0/3to0/2 0/2to0/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1409" depart="1409.00"> + <routeDistribution last="0"> + <route cost="38.33" probability="1.00000000" edges="1/2to2/2 2/2to3/2 3/2to3/3 3/3to4/3 4/3to3/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1410" depart="1410.00"> + <routeDistribution last="0"> + <route cost="36.96" probability="1.00000000" edges="3/4to2/4 2/4to3/4 3/4to4/4 4/4to4/3 4/3to4/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car1411" depart="1411.00"> + <routeDistribution last="0"> + <route cost="49.46" probability="1.00000000" edges="4/1to4/0 4/0to3/0 3/0to3/1 3/1to3/2 3/2to3/3 3/3to3/4 3/4to3/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1412" depart="1412.00"> + <routeDistribution last="0"> + <route cost="31.84" probability="1.00000000" edges="2/3to3/3 3/3to3/2 3/2to3/1 3/1to4/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1413" depart="1413.00"> + <routeDistribution last="0"> + <route cost="36.76" probability="1.00000000" edges="4/3to4/2 4/2to3/2 3/2to3/1 3/1to2/1 2/1to2/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car1414" depart="1414.00"> + <routeDistribution last="0"> + <route cost="29.23" probability="1.00000000" edges="2/1to2/2 2/2to2/3 2/3to2/4 2/4to1/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car1415" depart="1415.00"> + <routeDistribution last="0"> + <route cost="38.10" probability="1.00000000" edges="0/1to0/0 0/0to0/1 0/1to0/2 0/2to0/3 0/3to0/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car1416" depart="1416.00"> + <routeDistribution last="0"> + <route cost="45.21" probability="1.00000000" edges="0/2to0/1 0/1to0/0 0/0to1/0 1/0to2/0 2/0to3/0 3/0to3/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1417" depart="1417.00"> + <routeDistribution last="0"> + <route cost="35.95" probability="1.00000000" edges="4/4to4/3 4/3to4/2 4/2to4/1 4/1to3/1 3/1to3/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car1418" depart="1418.00"> + <routeDistribution last="0"> + <route cost="56.82" probability="1.00000000" edges="0/0to0/1 0/1to0/2 0/2to0/3 0/3to0/4 0/4to1/4 1/4to2/4 2/4to3/4 3/4to4/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car1419" depart="1419.00"> + <routeDistribution last="0"> + <route cost="43.73" probability="1.00000000" edges="3/1to3/0 3/0to3/1 3/1to3/2 3/2to3/3 3/3to3/4 3/4to3/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1420" depart="1420.00"> + <routeDistribution last="0"> + <route cost="56.85" probability="1.00000000" edges="0/2to0/3 0/3to1/3 1/3to2/3 2/3to3/3 3/3to4/3 4/3to4/2 4/2to4/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1421" depart="1421.00"> + <routeDistribution last="0"> + <route cost="30.63" probability="1.00000000" edges="2/2to1/2 1/2to1/3 1/3to1/4 1/4to0/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car1422" depart="1422.00"> + <routeDistribution last="0"> + <route cost="42.41" probability="1.00000000" edges="4/1to4/2 4/2to3/2 3/2to2/2 2/2to1/2 1/2to1/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1423" depart="1423.00"> + <routeDistribution last="0"> + <route cost="23.53" probability="1.00000000" edges="4/2to3/2 3/2to2/2 2/2to2/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1424" depart="1424.00"> + <routeDistribution last="0"> + <route cost="37.92" probability="1.00000000" edges="1/0to2/0 2/0to3/0 3/0to3/1 3/1to3/2 3/2to3/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1425" depart="1425.00"> + <routeDistribution last="0"> + <route cost="32.24" probability="1.00000000" edges="4/1to3/1 3/1to2/1 2/1to1/1 1/1to0/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1426" depart="1426.00"> + <routeDistribution last="0"> + <route cost="55.97" probability="1.00000000" edges="3/0to2/0 2/0to1/0 1/0to0/0 0/0to0/1 0/1to0/2 0/2to0/3 0/3to0/4 0/4to1/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car1427" depart="1427.00"> + <routeDistribution last="0"> + <route cost="50.73" probability="1.00000000" edges="0/3to0/2 0/2to1/2 1/2to2/2 2/2to3/2 3/2to4/2 4/2to4/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1428" depart="1428.00"> + <routeDistribution last="0"> + <route cost="42.47" probability="1.00000000" edges="3/0to2/0 2/0to2/1 2/1to2/2 2/2to2/3 2/3to3/3 3/3to3/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car1429" depart="1429.00"> + <routeDistribution last="0"> + <route cost="36.76" probability="1.00000000" edges="2/3to2/2 2/2to1/2 1/2to1/1 1/1to0/1 0/1to0/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car1430" depart="1430.00"> + <routeDistribution last="0"> + <route cost="46.66" probability="1.00000000" edges="2/2to1/2 1/2to2/2 2/2to3/2 3/2to3/1 3/1to3/0 3/0to2/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car1431" depart="1431.00"> + <routeDistribution last="0"> + <route cost="53.92" probability="1.00000000" edges="2/2to2/1 2/1to2/2 2/2to3/2 3/2to3/3 3/3to4/3 4/3to4/4 4/4to3/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car1432" depart="1432.00"> + <routeDistribution last="0"> + <route cost="53.92" probability="1.00000000" edges="2/2to2/1 2/1to2/2 2/2to3/2 3/2to3/3 3/3to4/3 4/3to4/4 4/4to3/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car1433" depart="1433.00"> + <routeDistribution last="0"> + <route cost="45.86" probability="1.00000000" edges="4/2to4/1 4/1to3/1 3/1to2/1 2/1to1/1 1/1to1/2 1/2to1/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1434" depart="1434.00"> + <routeDistribution last="0"> + <route cost="52.71" probability="1.00000000" edges="1/1to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to2/3 2/3to2/4 2/4to1/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car1435" depart="1435.00"> + <routeDistribution last="0"> + <route cost="45.83" probability="1.00000000" edges="0/1to1/1 1/1to1/2 1/2to2/2 2/2to2/3 2/3to3/3 3/3to4/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1436" depart="1436.00"> + <routeDistribution last="0"> + <route cost="38.35" probability="1.00000000" edges="2/2to2/3 2/3to2/2 2/2to2/1 2/1to2/0 2/0to1/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car1437" depart="1437.00"> + <routeDistribution last="0"> + <route cost="45.83" probability="1.00000000" edges="3/1to3/2 3/2to3/1 3/1to3/0 3/0to2/0 2/0to1/0 1/0to0/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car1438" depart="1438.00"> + <routeDistribution last="0"> + <route cost="41.19" probability="1.00000000" edges="4/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to4/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1439" depart="1439.00"> + <routeDistribution last="0"> + <route cost="31.45" probability="1.00000000" edges="2/1to2/2 2/2to3/2 3/2to3/1 3/1to4/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1440" depart="1440.00"> + <routeDistribution last="0"> + <route cost="37.53" probability="1.00000000" edges="3/0to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to0/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car1441" depart="1441.00"> + <routeDistribution last="0"> + <route cost="31.84" probability="1.00000000" edges="1/4to1/3 1/3to1/2 1/2to2/2 2/2to2/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1442" depart="1442.00"> + <routeDistribution last="0"> + <route cost="58.10" probability="1.00000000" edges="1/4to1/3 1/3to1/2 1/2to1/1 1/1to1/0 1/0to2/0 2/0to3/0 3/0to4/0 4/0to4/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1443" depart="1443.00"> + <routeDistribution last="0"> + <route cost="37.16" probability="1.00000000" edges="2/1to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to2/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car1444" depart="1444.00"> + <routeDistribution last="0"> + <route cost="51.02" probability="1.00000000" edges="0/4to0/3 0/3to1/3 1/3to2/3 2/3to3/3 3/3to4/3 4/3to4/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car1445" depart="1445.00"> + <routeDistribution last="0"> + <route cost="46.74" probability="1.00000000" edges="0/4to0/3 0/3to0/4 0/4to1/4 1/4to2/4 2/4to3/4 3/4to2/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car1446" depart="1446.00"> + <routeDistribution last="0"> + <route cost="34.95" probability="1.00000000" edges="4/4to4/3 4/3to4/2 4/2to4/1 4/1to4/0 4/0to3/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car1447" depart="1447.00"> + <routeDistribution last="0"> + <route cost="38.35" probability="1.00000000" edges="3/3to3/4 3/4to3/3 3/3to2/3 2/3to1/3 1/3to0/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1448" depart="1448.00"> + <routeDistribution last="0"> + <route cost="37.16" probability="1.00000000" edges="2/0to1/0 1/0to1/1 1/1to2/1 2/1to3/1 3/1to4/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1449" depart="1449.00"> + <routeDistribution last="0"> + <route cost="51.54" probability="1.00000000" edges="0/1to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to2/4 2/4to3/4 3/4to3/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1450" depart="1450.00"> + <routeDistribution last="0"> + <route cost="42.86" probability="1.00000000" edges="2/1to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to1/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car1451" depart="1451.00"> + <routeDistribution last="0"> + <route cost="48.54" probability="1.00000000" edges="4/2to4/3 4/3to4/2 4/2to3/2 3/2to2/2 2/2to1/2 1/2to0/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car1452" depart="1452.00"> + <routeDistribution last="0"> + <route cost="44.73" probability="1.00000000" edges="0/0to1/0 1/0to0/0 0/0to0/1 0/1to0/2 0/2to0/3 0/3to0/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car1453" depart="1453.00"> + <routeDistribution last="0"> + <route cost="37.44" probability="1.00000000" edges="4/1to3/1 3/1to3/2 3/2to3/3 3/3to4/3 4/3to4/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car1454" depart="1454.00"> + <routeDistribution last="0"> + <route cost="46.60" probability="1.00000000" edges="1/0to2/0 2/0to2/1 2/1to2/2 2/2to2/3 2/3to2/4 2/4to1/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car1455" depart="1455.00"> + <routeDistribution last="0"> + <route cost="38.10" probability="1.00000000" edges="3/0to4/0 4/0to3/0 3/0to2/0 2/0to1/0 1/0to0/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car1456" depart="1456.00"> + <routeDistribution last="0"> + <route cost="29.51" probability="1.00000000" edges="3/3to3/4 3/4to2/4 2/4to1/4 1/4to0/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car1457" depart="1457.00"> + <routeDistribution last="0"> + <route cost="38.65" probability="1.00000000" edges="3/1to3/0 3/0to2/0 2/0to2/1 2/1to2/2 2/2to1/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car1458" depart="1458.00"> + <routeDistribution last="0"> + <route cost="58.10" probability="1.00000000" edges="3/0to3/1 3/1to3/2 3/2to3/3 3/3to3/4 3/4to2/4 2/4to1/4 1/4to0/4 0/4to0/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1459" depart="1459.00"> + <routeDistribution last="0"> + <route cost="65.46" probability="1.00000000" edges="1/0to0/0 0/0to0/1 0/1to0/2 0/2to0/3 0/3to0/4 0/4to1/4 1/4to2/4 2/4to3/4 3/4to2/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car1460" depart="1460.00"> + <routeDistribution last="0"> + <route cost="58.05" probability="1.00000000" edges="1/3to1/4 1/4to2/4 2/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to3/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1461" depart="1461.00"> + <routeDistribution last="0"> + <route cost="44.47" probability="1.00000000" edges="2/3to3/3 3/3to4/3 4/3to4/2 4/2to4/1 4/1to4/0 4/0to3/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car1462" depart="1462.00"> + <routeDistribution last="0"> + <route cost="36.96" probability="1.00000000" edges="0/2to0/1 0/1to0/2 0/2to0/3 0/3to0/4 0/4to1/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car1463" depart="1463.00"> + <routeDistribution last="0"> + <route cost="54.11" probability="1.00000000" edges="3/0to4/0 4/0to3/0 3/0to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1464" depart="1464.00"> + <routeDistribution last="0"> + <route cost="61.08" probability="1.00000000" edges="4/3to4/4 4/4to3/4 3/4to2/4 2/4to2/3 2/3to2/2 2/2to2/1 2/1to2/0 2/0to3/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car1465" depart="1465.00"> + <routeDistribution last="0"> + <route cost="21.65" probability="1.00000000" edges="4/3to3/3 3/3to3/2 3/2to2/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car1466" depart="1466.00"> + <routeDistribution last="0"> + <route cost="44.26" probability="1.00000000" edges="0/2to0/3 0/3to1/3 1/3to1/2 1/2to1/1 1/1to1/0 1/0to0/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car1467" depart="1467.00"> + <routeDistribution last="0"> + <route cost="13.35" probability="1.00000000" edges="0/3to0/2 0/2to0/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1468" depart="1468.00"> + <routeDistribution last="0"> + <route cost="50.96" probability="1.00000000" edges="4/1to4/0 4/0to3/0 3/0to2/0 2/0to2/1 2/1to2/2 2/2to2/3 2/3to2/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car1469" depart="1469.00"> + <routeDistribution last="0"> + <route cost="38.66" probability="1.00000000" edges="3/3to3/2 3/2to2/2 2/2to1/2 1/2to0/2 0/2to0/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1470" depart="1470.00"> + <routeDistribution last="0"> + <route cost="28.58" probability="1.00000000" edges="1/2to0/2 0/2to0/3 0/3to0/4 0/4to1/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car1471" depart="1471.00"> + <routeDistribution last="0"> + <route cost="39.83" probability="1.00000000" edges="1/3to0/3 0/3to1/3 1/3to1/2 1/2to1/1 1/1to2/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1472" depart="1472.00"> + <routeDistribution last="0"> + <route cost="52.35" probability="1.00000000" edges="1/2to1/3 1/3to2/3 2/3to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to3/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1473" depart="1473.00"> + <routeDistribution last="0"> + <route cost="61.86" probability="1.00000000" edges="0/3to1/3 1/3to2/3 2/3to3/3 3/3to4/3 4/3to4/2 4/2to4/1 4/1to4/0 4/0to3/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car1474" depart="1474.00"> + <routeDistribution last="0"> + <route cost="45.94" probability="1.00000000" edges="0/1to0/0 0/0to1/0 1/0to2/0 2/0to2/1 2/1to3/1 3/1to3/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car1475" depart="1475.00"> + <routeDistribution last="0"> + <route cost="56.71" probability="1.00000000" edges="4/0to4/1 4/1to4/2 4/2to3/2 3/2to2/2 2/2to1/2 1/2to1/3 1/3to1/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car1476" depart="1476.00"> + <routeDistribution last="0"> + <route cost="47.30" probability="1.00000000" edges="2/2to1/2 1/2to2/2 2/2to2/3 2/3to3/3 3/3to4/3 4/3to4/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car1477" depart="1477.00"> + <routeDistribution last="0"> + <route cost="21.65" probability="1.00000000" edges="2/3to2/2 2/2to1/2 1/2to1/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1478" depart="1478.00"> + <routeDistribution last="0"> + <route cost="51.19" probability="1.00000000" edges="2/1to2/0 2/0to3/0 3/0to4/0 4/0to4/1 4/1to4/2 4/2to4/3 4/3to4/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car1479" depart="1479.00"> + <routeDistribution last="0"> + <route cost="42.58" probability="1.00000000" edges="3/1to4/1 4/1to4/0 4/0to3/0 3/0to2/0 2/0to1/0 1/0to1/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1480" depart="1480.00"> + <routeDistribution last="0"> + <route cost="46.60" probability="1.00000000" edges="2/4to2/3 2/3to2/2 2/2to2/1 2/1to2/0 2/0to3/0 3/0to3/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1481" depart="1481.00"> + <routeDistribution last="0"> + <route cost="38.65" probability="1.00000000" edges="3/0to3/1 3/1to3/2 3/2to2/2 2/2to2/3 2/3to3/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1482" depart="1482.00"> + <routeDistribution last="0"> + <route cost="30.63" probability="1.00000000" edges="2/2to3/2 3/2to3/1 3/1to3/0 3/0to4/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car1483" depart="1483.00"> + <routeDistribution last="0"> + <route cost="50.85" probability="1.00000000" edges="2/1to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to1/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1484" depart="1484.00"> + <routeDistribution last="0"> + <route cost="56.14" probability="1.00000000" edges="0/0to0/1 0/1to0/2 0/2to0/3 0/3to0/4 0/4to1/4 1/4to2/4 2/4to3/4 3/4to3/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1485" depart="1485.00"> + <routeDistribution last="0"> + <route cost="48.84" probability="1.00000000" edges="4/0to3/0 3/0to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to2/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1486" depart="1486.00"> + <routeDistribution last="0"> + <route cost="44.08" probability="1.00000000" edges="2/1to3/1 3/1to3/0 3/0to2/0 2/0to1/0 1/0to0/0 0/0to0/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1487" depart="1487.00"> + <routeDistribution last="0"> + <route cost="37.26" probability="1.00000000" edges="2/2to1/2 1/2to1/1 1/1to1/0 1/0to0/0 0/0to0/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1488" depart="1488.00"> + <routeDistribution last="0"> + <route cost="46.60" probability="1.00000000" edges="1/4to1/3 1/3to1/2 1/2to1/1 1/1to1/0 1/0to2/0 2/0to2/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1489" depart="1489.00"> + <routeDistribution last="0"> + <route cost="44.04" probability="1.00000000" edges="2/3to2/4 2/4to2/3 2/3to2/2 2/2to2/1 2/1to2/0 2/0to1/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car1490" depart="1490.00"> + <routeDistribution last="0"> + <route cost="52.75" probability="1.00000000" edges="1/0to0/0 0/0to0/1 0/1to1/1 1/1to1/2 1/2to2/2 2/2to3/2 3/2to3/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1491" depart="1491.00"> + <routeDistribution last="0"> + <route cost="42.86" probability="1.00000000" edges="2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to2/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car1492" depart="1492.00"> + <routeDistribution last="0"> + <route cost="29.23" probability="1.00000000" edges="1/2to1/1 1/1to1/0 1/0to2/0 2/0to3/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car1493" depart="1493.00"> + <routeDistribution last="0"> + <route cost="37.15" probability="1.00000000" edges="1/1to2/1 2/1to2/2 2/2to2/3 2/3to3/3 3/3to3/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car1494" depart="1494.00"> + <routeDistribution last="0"> + <route cost="30.34" probability="1.00000000" edges="4/2to3/2 3/2to3/3 3/3to3/4 3/4to2/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car1495" depart="1495.00"> + <routeDistribution last="0"> + <route cost="33.34" probability="1.00000000" edges="3/1to3/2 3/2to2/2 2/2to1/2 1/2to1/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1496" depart="1496.00"> + <routeDistribution last="0"> + <route cost="36.52" probability="1.00000000" edges="3/2to4/2 4/2to4/3 4/3to4/4 4/4to3/4 3/4to2/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car1497" depart="1497.00"> + <routeDistribution last="0"> + <route cost="20.64" probability="1.00000000" edges="2/0to3/0 3/0to4/0 4/0to4/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1498" depart="1498.00"> + <routeDistribution last="0"> + <route cost="20.16" probability="1.00000000" edges="1/0to1/1 1/1to1/2 1/2to2/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car1499" depart="1499.00"> + <routeDistribution last="0"> + <route cost="38.72" probability="1.00000000" edges="1/2to1/1 1/1to1/0 1/0to2/0 2/0to3/0 3/0to2/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car1500" depart="1500.00"> + <routeDistribution last="0"> + <route cost="36.45" probability="1.00000000" edges="0/1to0/2 0/2to1/2 1/2to1/3 1/3to2/3 2/3to1/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1501" depart="1501.00"> + <routeDistribution last="0"> + <route cost="39.41" probability="1.00000000" edges="1/0to1/1 1/1to1/2 1/2to1/3 1/3to0/3 0/3to0/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car1502" depart="1502.00"> + <routeDistribution last="0"> + <route cost="39.46" probability="1.00000000" edges="1/2to1/1 1/1to1/2 1/2to2/2 2/2to3/2 3/2to3/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1503" depart="1503.00"> + <routeDistribution last="0"> + <route cost="46.26" probability="1.00000000" edges="3/2to3/3 3/3to3/2 3/2to2/2 2/2to2/1 2/1to1/1 1/1to1/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car1504" depart="1504.00"> + <routeDistribution last="0"> + <route cost="34.84" probability="1.00000000" edges="0/4to1/4 1/4to2/4 2/4to2/3 2/3to2/2 2/2to2/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1505" depart="1505.00"> + <routeDistribution last="0"> + <route cost="28.84" probability="1.00000000" edges="2/1to3/1 3/1to3/2 3/2to3/3 3/3to4/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1506" depart="1506.00"> + <routeDistribution last="0"> + <route cost="64.28" probability="1.00000000" edges="1/3to1/4 1/4to2/4 2/4to3/4 3/4to4/4 4/4to4/3 4/3to4/2 4/2to4/1 4/1to4/0 4/0to3/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car1507" depart="1507.00"> + <routeDistribution last="0"> + <route cost="53.84" probability="1.00000000" edges="4/3to4/2 4/2to3/2 3/2to3/1 3/1to2/1 2/1to1/1 1/1to0/1 0/1to1/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1508" depart="1508.00"> + <routeDistribution last="0"> + <route cost="50.91" probability="1.00000000" edges="3/3to3/4 3/4to2/4 2/4to1/4 1/4to0/4 0/4to0/3 0/3to0/2 0/2to0/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1509" depart="1509.00"> + <routeDistribution last="0"> + <route cost="42.83" probability="1.00000000" edges="4/0to3/0 3/0to3/1 3/1to3/2 3/2to3/3 3/3to3/4 3/4to3/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1510" depart="1510.00"> + <routeDistribution last="0"> + <route cost="54.56" probability="1.00000000" edges="3/4to4/4 4/4to4/3 4/3to3/3 3/3to2/3 2/3to1/3 1/3to0/3 0/3to0/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car1511" depart="1511.00"> + <routeDistribution last="0"> + <route cost="36.45" probability="1.00000000" edges="3/3to3/2 3/2to2/2 2/2to2/1 2/1to1/1 1/1to2/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1512" depart="1512.00"> + <routeDistribution last="0"> + <route cost="28.84" probability="1.00000000" edges="3/3to3/2 3/2to2/2 2/2to2/1 2/1to2/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car1513" depart="1513.00"> + <routeDistribution last="0"> + <route cost="55.99" probability="1.00000000" edges="3/2to4/2 4/2to3/2 3/2to3/1 3/1to2/1 2/1to1/1 1/1to0/1 0/1to0/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car1514" depart="1514.00"> + <routeDistribution last="0"> + <route cost="37.62" probability="1.00000000" edges="2/2to3/2 3/2to3/3 3/3to4/3 4/3to4/4 4/4to3/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car1515" depart="1515.00"> + <routeDistribution last="0"> + <route cost="42.03" probability="1.00000000" edges="3/0to3/1 3/1to2/1 2/1to1/1 1/1to0/1 0/1to0/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car1516" depart="1516.00"> + <routeDistribution last="0"> + <route cost="51.19" probability="1.00000000" edges="1/2to0/2 0/2to0/1 0/1to0/0 0/0to1/0 1/0to2/0 2/0to3/0 3/0to4/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car1517" depart="1517.00"> + <routeDistribution last="0"> + <route cost="35.03" probability="1.00000000" edges="1/0to2/0 2/0to3/0 3/0to4/0 4/0to4/1 4/1to4/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car1518" depart="1518.00"> + <routeDistribution last="0"> + <route cost="32.23" probability="1.00000000" edges="4/1to3/1 3/1to2/1 2/1to1/1 1/1to1/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car1519" depart="1519.00"> + <routeDistribution last="0"> + <route cost="63.85" probability="1.00000000" edges="0/3to0/4 0/4to1/4 1/4to2/4 2/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to3/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1520" depart="1520.00"> + <routeDistribution last="0"> + <route cost="29.14" probability="1.00000000" edges="1/3to1/2 1/2to1/1 1/1to1/0 1/0to0/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car1521" depart="1521.00"> + <routeDistribution last="0"> + <route cost="24.93" probability="1.00000000" edges="1/2to1/3 1/3to0/3 0/3to0/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car1522" depart="1522.00"> + <routeDistribution last="0"> + <route cost="64.28" probability="1.00000000" edges="3/3to4/3 4/3to4/2 4/2to4/1 4/1to4/0 4/0to3/0 3/0to2/0 2/0to1/0 1/0to0/0 0/0to0/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1523" depart="1523.00"> + <routeDistribution last="0"> + <route cost="45.83" probability="1.00000000" edges="0/1to0/2 0/2to1/2 1/2to1/3 1/3to2/3 2/3to3/3 3/3to3/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car1524" depart="1524.00"> + <routeDistribution last="0"> + <route cost="28.15" probability="1.00000000" edges="1/4to1/3 1/3to1/2 1/2to0/2 0/2to1/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car1525" depart="1525.00"> + <routeDistribution last="0"> + <route cost="35.25" probability="1.00000000" edges="0/4to1/4 1/4to1/3 1/3to1/2 1/2to0/2 0/2to1/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car1526" depart="1526.00"> + <routeDistribution last="0"> + <route cost="43.94" probability="1.00000000" edges="3/0to2/0 2/0to2/1 2/1to3/1 3/1to3/2 3/2to4/2 4/2to4/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1527" depart="1527.00"> + <routeDistribution last="0"> + <route cost="41.76" probability="1.00000000" edges="4/4to4/3 4/3to4/2 4/2to4/1 4/1to4/0 4/0to3/0 3/0to3/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1528" depart="1528.00"> + <routeDistribution last="0"> + <route cost="37.82" probability="1.00000000" edges="0/1to1/1 1/1to1/0 1/0to2/0 2/0to3/0 3/0to4/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car1529" depart="1529.00"> + <routeDistribution last="0"> + <route cost="58.39" probability="1.00000000" edges="3/1to4/1 4/1to4/2 4/2to4/3 4/3to4/4 4/4to3/4 3/4to2/4 2/4to1/4 1/4to0/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car1530" depart="1530.00"> + <routeDistribution last="0"> + <route cost="57.24" probability="1.00000000" edges="0/3to1/3 1/3to2/3 2/3to3/3 3/3to4/3 4/3to4/2 4/2to4/1 4/1to4/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car1531" depart="1531.00"> + <routeDistribution last="0"> + <route cost="29.65" probability="1.00000000" edges="2/2to1/2 1/2to2/2 2/2to2/1 2/1to2/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car1532" depart="1532.00"> + <routeDistribution last="0"> + <route cost="33.34" probability="1.00000000" edges="1/2to2/2 2/2to3/2 3/2to3/1 3/1to4/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1533" depart="1533.00"> + <routeDistribution last="0"> + <route cost="32.66" probability="1.00000000" edges="1/3to2/3 2/3to3/3 3/3to3/2 3/2to3/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1534" depart="1534.00"> + <routeDistribution last="0"> + <route cost="36.34" probability="1.00000000" edges="1/2to1/3 1/3to1/4 1/4to2/4 2/4to3/4 3/4to4/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car1535" depart="1535.00"> + <routeDistribution last="0"> + <route cost="44.36" probability="1.00000000" edges="4/2to4/1 4/1to3/1 3/1to2/1 2/1to2/2 2/2to2/3 2/3to2/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car1536" depart="1536.00"> + <routeDistribution last="0"> + <route cost="36.96" probability="1.00000000" edges="0/2to0/1 0/1to0/2 0/2to0/3 0/3to0/4 0/4to1/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car1537" depart="1537.00"> + <routeDistribution last="0"> + <route cost="42.97" probability="1.00000000" edges="1/4to1/3 1/3to1/2 1/2to1/1 1/1to1/0 1/0to0/0 0/0to0/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1538" depart="1538.00"> + <routeDistribution last="0"> + <route cost="66.21" probability="1.00000000" edges="3/0to4/0 4/0to4/1 4/1to4/2 4/2to4/3 4/3to4/4 4/4to3/4 3/4to2/4 2/4to1/4 1/4to2/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car1539" depart="1539.00"> + <routeDistribution last="0"> + <route cost="39.32" probability="1.00000000" edges="4/0to4/1 4/1to4/2 4/2to3/2 3/2to3/3 3/3to3/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car1540" depart="1540.00"> + <routeDistribution last="0"> + <route cost="29.95" probability="1.00000000" edges="1/1to2/1 2/1to2/2 2/2to3/2 3/2to3/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1541" depart="1541.00"> + <routeDistribution last="0"> + <route cost="30.34" probability="1.00000000" edges="1/4to2/4 2/4to2/3 2/3to2/2 2/2to3/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car1542" depart="1542.00"> + <routeDistribution last="0"> + <route cost="30.04" probability="1.00000000" edges="2/2to2/1 2/1to2/2 2/2to2/3 2/3to2/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car1543" depart="1543.00"> + <routeDistribution last="0"> + <route cost="44.04" probability="1.00000000" edges="3/0to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to1/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car1544" depart="1544.00"> + <routeDistribution last="0"> + <route cost="68.61" probability="1.00000000" edges="3/0to4/0 4/0to3/0 3/0to2/0 2/0to1/0 1/0to0/0 0/0to0/1 0/1to0/2 0/2to0/3 0/3to0/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car1545" depart="1545.00"> + <routeDistribution last="0"> + <route cost="40.22" probability="1.00000000" edges="2/2to3/2 3/2to2/2 2/2to1/2 1/2to0/2 0/2to0/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1546" depart="1546.00"> + <routeDistribution last="0"> + <route cost="53.96" probability="1.00000000" edges="3/4to4/4 4/4to4/3 4/3to3/3 3/3to2/3 2/3to1/3 1/3to0/3 0/3to1/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1547" depart="1547.00"> + <routeDistribution last="0"> + <route cost="32.24" probability="1.00000000" edges="4/1to3/1 3/1to2/1 2/1to1/1 1/1to0/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1548" depart="1548.00"> + <routeDistribution last="0"> + <route cost="23.43" probability="1.00000000" edges="2/3to3/3 3/3to3/4 3/4to4/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car1549" depart="1549.00"> + <routeDistribution last="0"> + <route cost="31.84" probability="1.00000000" edges="3/1to2/1 2/1to2/2 2/2to2/3 2/3to1/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1550" depart="1550.00"> + <routeDistribution last="0"> + <route cost="23.55" probability="1.00000000" edges="3/2to2/2 2/2to1/2 1/2to0/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car1551" depart="1551.00"> + <routeDistribution last="0"> + <route cost="31.16" probability="1.00000000" edges="1/4to1/3 1/3to1/4 1/4to2/4 2/4to3/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car1552" depart="1552.00"> + <routeDistribution last="0"> + <route cost="57.22" probability="1.00000000" edges="0/2to0/1 0/1to0/2 0/2to1/2 1/2to2/2 2/2to3/2 3/2to4/2 4/2to4/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1553" depart="1553.00"> + <routeDistribution last="0"> + <route cost="50.73" probability="1.00000000" edges="4/1to4/2 4/2to3/2 3/2to2/2 2/2to1/2 1/2to0/2 0/2to0/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1554" depart="1554.00"> + <routeDistribution last="0"> + <route cost="52.41" probability="1.00000000" edges="3/4to2/4 2/4to1/4 1/4to0/4 0/4to0/3 0/3to0/2 0/2to0/1 0/1to1/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1555" depart="1555.00"> + <routeDistribution last="0"> + <route cost="59.23" probability="1.00000000" edges="2/0to3/0 3/0to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to1/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1556" depart="1556.00"> + <routeDistribution last="0"> + <route cost="32.23" probability="1.00000000" edges="0/2to1/2 1/2to2/2 2/2to3/2 3/2to3/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1557" depart="1557.00"> + <routeDistribution last="0"> + <route cost="37.91" probability="1.00000000" edges="2/3to1/3 1/3to1/2 1/2to1/1 1/1to1/0 1/0to2/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car1558" depart="1558.00"> + <routeDistribution last="0"> + <route cost="32.21" probability="1.00000000" edges="2/3to1/3 1/3to1/2 1/2to1/1 1/1to2/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1559" depart="1559.00"> + <routeDistribution last="0"> + <route cost="37.96" probability="1.00000000" edges="3/0to3/1 3/1to3/0 3/0to2/0 2/0to1/0 1/0to1/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1560" depart="1560.00"> + <routeDistribution last="0"> + <route cost="45.27" probability="1.00000000" edges="3/2to4/2 4/2to4/1 4/1to4/0 4/0to3/0 3/0to2/0 2/0to3/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car1561" depart="1561.00"> + <routeDistribution last="0"> + <route cost="49.71" probability="1.00000000" edges="0/3to0/2 0/2to0/1 0/1to0/0 0/0to1/0 1/0to2/0 2/0to3/0 3/0to4/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car1562" depart="1562.00"> + <routeDistribution last="0"> + <route cost="54.11" probability="1.00000000" edges="1/4to0/4 0/4to1/4 1/4to2/4 2/4to2/3 2/3to2/2 2/2to2/1 2/1to2/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car1563" depart="1563.00"> + <routeDistribution last="0"> + <route cost="38.65" probability="1.00000000" edges="2/0to2/1 2/1to2/2 2/2to1/2 1/2to1/3 1/3to2/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1564" depart="1564.00"> + <routeDistribution last="0"> + <route cost="34.95" probability="1.00000000" edges="0/4to1/4 1/4to2/4 2/4to3/4 3/4to4/4 4/4to4/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1565" depart="1565.00"> + <routeDistribution last="0"> + <route cost="51.82" probability="1.00000000" edges="2/1to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to0/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car1566" depart="1566.00"> + <routeDistribution last="0"> + <route cost="52.46" probability="1.00000000" edges="1/3to1/2 1/2to1/3 1/3to1/4 1/4to2/4 2/4to3/4 3/4to4/4 4/4to4/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1567" depart="1567.00"> + <routeDistribution last="0"> + <route cost="28.45" probability="1.00000000" edges="3/3to3/2 3/2to2/2 2/2to2/1 2/1to1/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1568" depart="1568.00"> + <routeDistribution last="0"> + <route cost="31.53" probability="1.00000000" edges="3/2to3/3 3/3to3/4 3/4to2/4 2/4to3/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car1569" depart="1569.00"> + <routeDistribution last="0"> + <route cost="45.44" probability="1.00000000" edges="2/3to3/3 3/3to3/2 3/2to2/2 2/2to2/1 2/1to1/1 1/1to1/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car1570" depart="1570.00"> + <routeDistribution last="0"> + <route cost="55.34" probability="1.00000000" edges="1/2to0/2 0/2to1/2 1/2to1/3 1/3to2/3 2/3to3/3 3/3to4/3 4/3to4/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car1571" depart="1571.00"> + <routeDistribution last="0"> + <route cost="28.94" probability="1.00000000" edges="3/2to3/3 3/3to4/3 4/3to4/4 4/4to3/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car1572" depart="1572.00"> + <routeDistribution last="0"> + <route cost="23.53" probability="1.00000000" edges="2/4to2/3 2/3to2/2 2/2to3/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car1573" depart="1573.00"> + <routeDistribution last="0"> + <route cost="39.34" probability="1.00000000" edges="4/4to4/3 4/3to3/3 3/3to2/3 2/3to1/3 1/3to0/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1574" depart="1574.00"> + <routeDistribution last="0"> + <route cost="36.85" probability="1.00000000" edges="1/3to0/3 0/3to1/3 1/3to1/2 1/2to1/1 1/1to1/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car1575" depart="1575.00"> + <routeDistribution last="0"> + <route cost="54.51" probability="1.00000000" edges="4/0to4/1 4/1to4/0 4/0to3/0 3/0to2/0 2/0to1/0 1/0to0/0 0/0to1/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car1576" depart="1576.00"> + <routeDistribution last="0"> + <route cost="30.73" probability="1.00000000" edges="3/4to3/3 3/3to3/2 3/2to3/1 3/1to4/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1577" depart="1577.00"> + <routeDistribution last="0"> + <route cost="21.65" probability="1.00000000" edges="1/2to1/3 1/3to2/3 2/3to2/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car1578" depart="1578.00"> + <routeDistribution last="0"> + <route cost="45.27" probability="1.00000000" edges="2/3to2/4 2/4to3/4 3/4to4/4 4/4to4/3 4/3to4/2 4/2to4/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1579" depart="1579.00"> + <routeDistribution last="0"> + <route cost="42.76" probability="1.00000000" edges="0/4to1/4 1/4to1/3 1/3to1/2 1/2to1/1 1/1to0/1 0/1to0/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car1580" depart="1580.00"> + <routeDistribution last="0"> + <route cost="45.54" probability="1.00000000" edges="1/1to1/2 1/2to1/3 1/3to1/4 1/4to2/4 2/4to3/4 3/4to2/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car1581" depart="1581.00"> + <routeDistribution last="0"> + <route cost="38.66" probability="1.00000000" edges="0/2to1/2 1/2to2/2 2/2to2/1 2/1to2/0 2/0to1/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car1582" depart="1582.00"> + <routeDistribution last="0"> + <route cost="63.45" probability="1.00000000" edges="1/0to0/0 0/0to0/1 0/1to0/2 0/2to0/3 0/3to0/4 0/4to1/4 1/4to2/4 2/4to3/4 3/4to4/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car1583" depart="1583.00"> + <routeDistribution last="0"> + <route cost="50.91" probability="1.00000000" edges="3/1to4/1 4/1to4/2 4/2to4/3 4/3to4/4 4/4to3/4 3/4to2/4 2/4to1/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car1584" depart="1584.00"> + <routeDistribution last="0"> + <route cost="38.35" probability="1.00000000" edges="4/2to3/2 3/2to2/2 2/2to2/3 2/3to2/4 2/4to2/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1585" depart="1585.00"> + <routeDistribution last="0"> + <route cost="49.34" probability="1.00000000" edges="1/3to0/3 0/3to1/3 1/3to2/3 2/3to3/3 3/3to3/2 3/2to3/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1586" depart="1586.00"> + <routeDistribution last="0"> + <route cost="37.33" probability="1.00000000" edges="2/4to1/4 1/4to0/4 0/4to0/3 0/3to0/2 0/2to0/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1587" depart="1587.00"> + <routeDistribution last="0"> + <route cost="45.44" probability="1.00000000" edges="0/1to1/1 1/1to1/2 1/2to2/2 2/2to2/3 2/3to3/3 3/3to3/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car1588" depart="1588.00"> + <routeDistribution last="0"> + <route cost="29.95" probability="1.00000000" edges="1/3to2/3 2/3to2/4 2/4to3/4 3/4to3/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1589" depart="1589.00"> + <routeDistribution last="0"> + <route cost="31.85" probability="1.00000000" edges="4/1to3/1 3/1to2/1 2/1to1/1 1/1to1/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car1590" depart="1590.00"> + <routeDistribution last="0"> + <route cost="37.16" probability="1.00000000" edges="3/1to2/1 2/1to2/2 2/2to2/3 2/3to2/4 2/4to3/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car1591" depart="1591.00"> + <routeDistribution last="0"> + <route cost="52.91" probability="1.00000000" edges="0/0to0/1 0/1to1/1 1/1to1/2 1/2to2/2 2/2to2/3 2/3to3/3 3/3to3/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car1592" depart="1592.00"> + <routeDistribution last="0"> + <route cost="36.76" probability="1.00000000" edges="0/1to0/2 0/2to1/2 1/2to1/3 1/3to2/3 2/3to2/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car1593" depart="1593.00"> + <routeDistribution last="0"> + <route cost="41.19" probability="1.00000000" edges="0/4to0/3 0/3to0/2 0/2to1/2 1/2to2/2 2/2to2/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1594" depart="1594.00"> + <routeDistribution last="0"> + <route cost="45.54" probability="1.00000000" edges="3/2to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to2/0 2/0to1/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car1595" depart="1595.00"> + <routeDistribution last="0"> + <route cost="43.73" probability="1.00000000" edges="2/1to2/0 2/0to2/1 2/1to2/2 2/2to2/3 2/3to2/4 2/4to2/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1596" depart="1596.00"> + <routeDistribution last="0"> + <route cost="38.33" probability="1.00000000" edges="2/2to2/3 2/3to2/2 2/2to2/1 2/1to1/1 1/1to1/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car1597" depart="1597.00"> + <routeDistribution last="0"> + <route cost="29.97" probability="1.00000000" edges="1/2to2/2 2/2to2/1 2/1to2/0 2/0to1/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car1598" depart="1598.00"> + <routeDistribution last="0"> + <route cost="53.43" probability="1.00000000" edges="2/3to3/3 3/3to2/3 2/3to2/2 2/2to1/2 1/2to1/1 1/1to0/1 0/1to0/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car1599" depart="1599.00"> + <routeDistribution last="0"> + <route cost="34.66" probability="1.00000000" edges="2/0to1/0 1/0to0/0 0/0to0/1 0/1to0/2 0/2to0/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1600" depart="1600.00"> + <routeDistribution last="0"> + <route cost="28.54" probability="1.00000000" edges="2/3to2/4 2/4to2/3 2/3to2/2 2/2to2/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1601" depart="1601.00"> + <routeDistribution last="0"> + <route cost="35.65" probability="1.00000000" edges="3/0to2/0 2/0to2/1 2/1to2/2 2/2to3/2 3/2to3/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1602" depart="1602.00"> + <routeDistribution last="0"> + <route cost="38.33" probability="1.00000000" edges="3/3to3/4 3/4to3/3 3/3to2/3 2/3to1/3 1/3to1/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car1603" depart="1603.00"> + <routeDistribution last="0"> + <route cost="54.16" probability="1.00000000" edges="4/2to4/1 4/1to3/1 3/1to2/1 2/1to1/1 1/1to0/1 0/1to0/2 0/2to1/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car1604" depart="1604.00"> + <routeDistribution last="0"> + <route cost="51.62" probability="1.00000000" edges="2/4to2/3 2/3to1/3 1/3to1/2 1/2to1/1 1/1to0/1 0/1to0/0 0/0to1/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car1605" depart="1605.00"> + <routeDistribution last="0"> + <route cost="49.89" probability="1.00000000" edges="1/3to0/3 0/3to0/4 0/4to1/4 1/4to2/4 2/4to3/4 3/4to4/4 4/4to4/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1606" depart="1606.00"> + <routeDistribution last="0"> + <route cost="56.97" probability="1.00000000" edges="3/0to2/0 2/0to2/1 2/1to2/2 2/2to2/3 2/3to2/4 2/4to3/4 3/4to4/4 4/4to4/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1607" depart="1607.00"> + <routeDistribution last="0"> + <route cost="58.83" probability="1.00000000" edges="2/1to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to0/4 0/4to0/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1608" depart="1608.00"> + <routeDistribution last="0"> + <route cost="48.66" probability="1.00000000" edges="0/1to0/2 0/2to0/3 0/3to0/4 0/4to1/4 1/4to2/4 2/4to3/4 3/4to3/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1609" depart="1609.00"> + <routeDistribution last="0"> + <route cost="52.04" probability="1.00000000" edges="1/0to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to1/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1610" depart="1610.00"> + <routeDistribution last="0"> + <route cost="52.39" probability="1.00000000" edges="3/3to2/3 2/3to2/2 2/2to2/1 2/1to2/0 2/0to3/0 3/0to4/0 4/0to4/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1611" depart="1611.00"> + <routeDistribution last="0"> + <route cost="23.53" probability="1.00000000" edges="0/3to0/2 0/2to0/1 0/1to1/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1612" depart="1612.00"> + <routeDistribution last="0"> + <route cost="36.85" probability="1.00000000" edges="4/1to3/1 3/1to3/2 3/2to3/3 3/3to3/4 3/4to3/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1613" depart="1613.00"> + <routeDistribution last="0"> + <route cost="37.82" probability="1.00000000" edges="0/0to1/0 1/0to2/0 2/0to3/0 3/0to3/1 3/1to4/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1614" depart="1614.00"> + <routeDistribution last="0"> + <route cost="40.91" probability="1.00000000" edges="0/3to0/2 0/2to0/1 0/1to1/1 1/1to2/1 2/1to2/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car1615" depart="1615.00"> + <routeDistribution last="0"> + <route cost="28.45" probability="1.00000000" edges="2/3to2/2 2/2to1/2 1/2to1/1 1/1to0/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1616" depart="1616.00"> + <routeDistribution last="0"> + <route cost="31.54" probability="1.00000000" edges="2/2to3/2 3/2to2/2 2/2to1/2 1/2to0/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car1617" depart="1617.00"> + <routeDistribution last="0"> + <route cost="57.10" probability="1.00000000" edges="0/4to0/3 0/3to0/2 0/2to0/1 0/1to1/1 1/1to2/1 2/1to3/1 3/1to4/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1618" depart="1618.00"> + <routeDistribution last="0"> + <route cost="54.08" probability="1.00000000" edges="0/0to1/0 1/0to2/0 2/0to2/1 2/1to2/2 2/2to2/3 2/3to2/4 2/4to1/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car1619" depart="1619.00"> + <routeDistribution last="0"> + <route cost="42.97" probability="1.00000000" edges="3/1to3/0 3/0to2/0 2/0to1/0 1/0to0/0 0/0to0/1 0/1to0/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car1620" depart="1620.00"> + <routeDistribution last="0"> + <route cost="35.76" probability="1.00000000" edges="1/0to0/0 0/0to0/1 0/1to0/2 0/2to1/2 1/2to1/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1621" depart="1621.00"> + <routeDistribution last="0"> + <route cost="42.97" probability="1.00000000" edges="3/3to4/3 4/3to4/2 4/2to4/1 4/1to4/0 4/0to3/0 3/0to2/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car1622" depart="1622.00"> + <routeDistribution last="0"> + <route cost="31.54" probability="1.00000000" edges="0/1to1/1 1/1to2/1 2/1to3/1 3/1to2/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1623" depart="1623.00"> + <routeDistribution last="0"> + <route cost="43.71" probability="1.00000000" edges="1/2to1/1 1/1to1/0 1/0to2/0 2/0to3/0 3/0to4/0 4/0to4/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1624" depart="1624.00"> + <routeDistribution last="0"> + <route cost="45.50" probability="1.00000000" edges="0/0to1/0 1/0to2/0 2/0to3/0 3/0to4/0 4/0to4/1 4/1to3/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1625" depart="1625.00"> + <routeDistribution last="0"> + <route cost="44.62" probability="1.00000000" edges="3/0to4/0 4/0to3/0 3/0to2/0 2/0to1/0 1/0to1/1 1/1to1/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car1626" depart="1626.00"> + <routeDistribution last="0"> + <route cost="30.62" probability="1.00000000" edges="1/4to2/4 2/4to3/4 3/4to4/4 4/4to3/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car1627" depart="1627.00"> + <routeDistribution last="0"> + <route cost="40.53" probability="1.00000000" edges="4/1to3/1 3/1to2/1 2/1to2/2 2/2to2/3 2/3to1/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1628" depart="1628.00"> + <routeDistribution last="0"> + <route cost="28.84" probability="1.00000000" edges="1/0to1/1 1/1to2/1 2/1to2/2 2/2to2/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1629" depart="1629.00"> + <routeDistribution last="0"> + <route cost="30.34" probability="1.00000000" edges="2/1to2/2 2/2to3/2 3/2to4/2 4/2to4/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1630" depart="1630.00"> + <routeDistribution last="0"> + <route cost="23.43" probability="1.00000000" edges="0/0to1/0 1/0to1/1 1/1to2/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1631" depart="1631.00"> + <routeDistribution last="0"> + <route cost="48.77" probability="1.00000000" edges="2/0to1/0 1/0to0/0 0/0to0/1 0/1to0/2 0/2to0/3 0/3to0/4 0/4to1/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car1632" depart="1632.00"> + <routeDistribution last="0"> + <route cost="33.34" probability="1.00000000" edges="3/0to3/1 3/1to2/1 2/1to1/1 1/1to1/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car1633" depart="1633.00"> + <routeDistribution last="0"> + <route cost="38.94" probability="1.00000000" edges="4/4to3/4 3/4to3/3 3/3to3/2 3/2to2/2 2/2to2/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1634" depart="1634.00"> + <routeDistribution last="0"> + <route cost="52.04" probability="1.00000000" edges="3/4to2/4 2/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to3/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1635" depart="1635.00"> + <routeDistribution last="0"> + <route cost="52.91" probability="1.00000000" edges="3/4to3/3 3/3to2/3 2/3to2/2 2/2to1/2 1/2to1/1 1/1to0/1 0/1to0/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car1636" depart="1636.00"> + <routeDistribution last="0"> + <route cost="58.83" probability="1.00000000" edges="0/4to1/4 1/4to2/4 2/4to3/4 3/4to4/4 4/4to4/3 4/3to4/2 4/2to4/1 4/1to4/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car1637" depart="1637.00"> + <routeDistribution last="0"> + <route cost="38.66" probability="1.00000000" edges="3/1to2/1 2/1to1/1 1/1to0/1 0/1to0/2 0/2to1/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car1638" depart="1638.00"> + <routeDistribution last="0"> + <route cost="34.66" probability="1.00000000" edges="1/4to2/4 2/4to3/4 3/4to4/4 4/4to4/3 4/3to4/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car1639" depart="1639.00"> + <routeDistribution last="0"> + <route cost="42.54" probability="1.00000000" edges="2/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to3/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1640" depart="1640.00"> + <routeDistribution last="0"> + <route cost="44.73" probability="1.00000000" edges="0/4to1/4 1/4to2/4 2/4to3/4 3/4to4/4 4/4to4/3 4/3to4/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car1641" depart="1641.00"> + <routeDistribution last="0"> + <route cost="39.05" probability="1.00000000" edges="4/2to3/2 3/2to2/2 2/2to1/2 1/2to1/3 1/3to1/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car1642" depart="1642.00"> + <routeDistribution last="0"> + <route cost="28.45" probability="1.00000000" edges="2/3to2/2 2/2to1/2 1/2to1/1 1/1to0/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1643" depart="1643.00"> + <routeDistribution last="0"> + <route cost="33.63" probability="1.00000000" edges="0/4to0/3 0/3to1/3 1/3to2/3 2/3to2/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car1644" depart="1644.00"> + <routeDistribution last="0"> + <route cost="50.96" probability="1.00000000" edges="3/4to2/4 2/4to3/4 3/4to4/4 4/4to4/3 4/3to4/2 4/2to4/1 4/1to3/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1645" depart="1645.00"> + <routeDistribution last="0"> + <route cost="58.58" probability="1.00000000" edges="0/4to0/3 0/3to0/2 0/2to1/2 1/2to2/2 2/2to3/2 3/2to4/2 4/2to4/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1646" depart="1646.00"> + <routeDistribution last="0"> + <route cost="55.35" probability="1.00000000" edges="4/2to4/1 4/1to3/1 3/1to2/1 2/1to1/1 1/1to1/2 1/2to1/3 1/3to1/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car1647" depart="1647.00"> + <routeDistribution last="0"> + <route cost="34.27" probability="1.00000000" edges="4/1to4/0 4/0to3/0 3/0to3/1 3/1to3/2 3/2to3/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1648" depart="1648.00"> + <routeDistribution last="0"> + <route cost="32.13" probability="1.00000000" edges="3/3to3/2 3/2to3/1 3/1to4/1 4/1to4/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car1649" depart="1649.00"> + <routeDistribution last="0"> + <route cost="43.71" probability="1.00000000" edges="2/1to2/0 2/0to3/0 3/0to4/0 4/0to4/1 4/1to4/2 4/2to4/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1650" depart="1650.00"> + <routeDistribution last="0"> + <route cost="13.35" probability="1.00000000" edges="4/1to4/2 4/2to4/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1651" depart="1651.00"> + <routeDistribution last="0"> + <route cost="46.63" probability="1.00000000" edges="1/2to1/1 1/1to1/2 1/2to2/2 2/2to2/3 2/3to3/3 3/3to3/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car1652" depart="1652.00"> + <routeDistribution last="0"> + <route cost="38.02" probability="1.00000000" edges="0/3to0/2 0/2to0/1 0/1to0/0 0/0to1/0 1/0to1/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1653" depart="1653.00"> + <routeDistribution last="0"> + <route cost="37.95" probability="1.00000000" edges="1/2to1/1 1/1to1/2 1/2to2/2 2/2to2/3 2/3to3/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1654" depart="1654.00"> + <routeDistribution last="0"> + <route cost="43.90" probability="1.00000000" edges="3/1to3/2 3/2to3/3 3/3to3/4 3/4to2/4 2/4to1/4 1/4to0/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car1655" depart="1655.00"> + <routeDistribution last="0"> + <route cost="41.33" probability="1.00000000" edges="3/1to4/1 4/1to3/1 3/1to2/1 2/1to2/2 2/2to1/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car1656" depart="1656.00"> + <routeDistribution last="0"> + <route cost="21.66" probability="1.00000000" edges="2/2to2/3 2/3to2/4 2/4to3/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car1657" depart="1657.00"> + <routeDistribution last="0"> + <route cost="38.35" probability="1.00000000" edges="3/2to2/2 2/2to1/2 1/2to1/3 1/3to1/4 1/4to1/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1658" depart="1658.00"> + <routeDistribution last="0"> + <route cost="41.19" probability="1.00000000" edges="4/0to4/1 4/1to4/2 4/2to3/2 3/2to2/2 2/2to2/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1659" depart="1659.00"> + <routeDistribution last="0"> + <route cost="42.51" probability="1.00000000" edges="0/4to0/3 0/3to0/2 0/2to0/1 0/1to0/0 0/0to1/0 1/0to2/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car1660" depart="1660.00"> + <routeDistribution last="0"> + <route cost="60.33" probability="1.00000000" edges="0/1to0/0 0/0to1/0 1/0to2/0 2/0to2/1 2/1to2/2 2/2to2/3 2/3to3/3 3/3to3/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car1661" depart="1661.00"> + <routeDistribution last="0"> + <route cost="30.34" probability="1.00000000" edges="2/0to3/0 3/0to3/1 3/1to3/2 3/2to4/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car1662" depart="1662.00"> + <routeDistribution last="0"> + <route cost="21.95" probability="1.00000000" edges="4/4to4/3 4/3to3/3 3/3to2/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1663" depart="1663.00"> + <routeDistribution last="0"> + <route cost="57.22" probability="1.00000000" edges="0/2to0/1 0/1to0/2 0/2to1/2 1/2to2/2 2/2to3/2 3/2to4/2 4/2to4/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1664" depart="1664.00"> + <routeDistribution last="0"> + <route cost="44.06" probability="1.00000000" edges="4/4to3/4 3/4to4/4 4/4to4/3 4/3to4/2 4/2to4/1 4/1to3/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1665" depart="1665.00"> + <routeDistribution last="0"> + <route cost="33.34" probability="1.00000000" edges="2/0to2/1 2/1to1/1 1/1to0/1 0/1to0/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car1666" depart="1666.00"> + <routeDistribution last="0"> + <route cost="38.72" probability="1.00000000" edges="3/2to3/3 3/3to3/4 3/4to2/4 2/4to1/4 1/4to2/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car1667" depart="1667.00"> + <routeDistribution last="0"> + <route cost="38.35" probability="1.00000000" edges="1/3to1/2 1/2to1/3 1/3to1/4 1/4to2/4 2/4to3/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car1668" depart="1668.00"> + <routeDistribution last="0"> + <route cost="54.53" probability="1.00000000" edges="2/3to1/3 1/3to2/3 2/3to3/3 3/3to4/3 4/3to4/2 4/2to4/1 4/1to4/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car1669" depart="1669.00"> + <routeDistribution last="0"> + <route cost="36.34" probability="1.00000000" edges="2/1to2/2 2/2to2/3 2/3to2/4 2/4to3/4 3/4to4/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car1670" depart="1670.00"> + <routeDistribution last="0"> + <route cost="55.97" probability="1.00000000" edges="0/1to0/2 0/2to0/3 0/3to0/4 0/4to1/4 1/4to2/4 2/4to3/4 3/4to4/4 4/4to4/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1671" depart="1671.00"> + <routeDistribution last="0"> + <route cost="37.16" probability="1.00000000" edges="2/2to3/2 3/2to3/1 3/1to3/0 3/0to2/0 2/0to1/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car1672" depart="1672.00"> + <routeDistribution last="0"> + <route cost="24.65" probability="1.00000000" edges="3/2to3/3 3/3to2/3 2/3to2/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car1673" depart="1673.00"> + <routeDistribution last="0"> + <route cost="21.66" probability="1.00000000" edges="0/1to0/2 0/2to1/2 1/2to2/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car1674" depart="1674.00"> + <routeDistribution last="0"> + <route cost="37.53" probability="1.00000000" edges="2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to0/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1675" depart="1675.00"> + <routeDistribution last="0"> + <route cost="50.87" probability="1.00000000" edges="3/4to4/4 4/4to4/3 4/3to4/2 4/2to3/2 3/2to3/1 3/1to2/1 2/1to2/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car1676" depart="1676.00"> + <routeDistribution last="0"> + <route cost="30.34" probability="1.00000000" edges="0/1to1/1 1/1to2/1 2/1to2/2 2/2to3/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car1677" depart="1677.00"> + <routeDistribution last="0"> + <route cost="44.73" probability="1.00000000" edges="0/4to0/3 0/3to0/4 0/4to1/4 1/4to2/4 2/4to3/4 3/4to4/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car1678" depart="1678.00"> + <routeDistribution last="0"> + <route cost="43.77" probability="1.00000000" edges="0/3to0/4 0/4to1/4 1/4to2/4 2/4to3/4 3/4to3/3 3/3to3/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car1679" depart="1679.00"> + <routeDistribution last="0"> + <route cost="32.21" probability="1.00000000" edges="4/3to3/3 3/3to3/2 3/2to3/1 3/1to4/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1680" depart="1680.00"> + <routeDistribution last="0"> + <route cost="44.73" probability="1.00000000" edges="0/3to1/3 1/3to1/2 1/2to1/1 1/1to1/0 1/0to2/0 2/0to3/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car1681" depart="1681.00"> + <routeDistribution last="0"> + <route cost="31.84" probability="1.00000000" edges="2/4to2/3 2/3to2/2 2/2to3/2 3/2to3/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1682" depart="1682.00"> + <routeDistribution last="0"> + <route cost="50.03" probability="1.00000000" edges="1/2to0/2 0/2to1/2 1/2to2/2 2/2to2/1 2/1to3/1 3/1to4/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1683" depart="1683.00"> + <routeDistribution last="0"> + <route cost="53.34" probability="1.00000000" edges="3/2to3/1 3/1to2/1 2/1to1/1 1/1to0/1 0/1to0/2 0/2to0/3 0/3to0/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car1684" depart="1684.00"> + <routeDistribution last="0"> + <route cost="48.66" probability="1.00000000" edges="0/3to0/4 0/4to1/4 1/4to2/4 2/4to2/3 2/3to2/2 2/2to2/1 2/1to2/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car1685" depart="1685.00"> + <routeDistribution last="0"> + <route cost="32.23" probability="1.00000000" edges="1/4to1/3 1/3to1/2 1/2to2/2 2/2to3/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car1686" depart="1686.00"> + <routeDistribution last="0"> + <route cost="30.34" probability="1.00000000" edges="1/4to2/4 2/4to3/4 3/4to3/3 3/3to4/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1687" depart="1687.00"> + <routeDistribution last="0"> + <route cost="28.47" probability="1.00000000" edges="2/3to3/3 3/3to3/2 3/2to3/1 3/1to2/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1688" depart="1688.00"> + <routeDistribution last="0"> + <route cost="56.14" probability="1.00000000" edges="0/4to1/4 1/4to2/4 2/4to3/4 3/4to4/4 4/4to4/3 4/3to4/2 4/2to4/1 4/1to3/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1689" depart="1689.00"> + <routeDistribution last="0"> + <route cost="36.45" probability="1.00000000" edges="1/0to1/1 1/1to2/1 2/1to2/2 2/2to3/2 3/2to2/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car1690" depart="1690.00"> + <routeDistribution last="0"> + <route cost="54.22" probability="1.00000000" edges="2/0to3/0 3/0to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to0/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1691" depart="1691.00"> + <routeDistribution last="0"> + <route cost="28.84" probability="1.00000000" edges="3/3to3/2 3/2to2/2 2/2to2/1 2/1to2/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car1692" depart="1692.00"> + <routeDistribution last="0"> + <route cost="56.71" probability="1.00000000" edges="3/0to3/1 3/1to3/2 3/2to2/2 2/2to1/2 1/2to0/2 0/2to0/3 0/3to0/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car1693" depart="1693.00"> + <routeDistribution last="0"> + <route cost="28.47" probability="1.00000000" edges="0/3to1/3 1/3to1/2 1/2to1/1 1/1to0/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1694" depart="1694.00"> + <routeDistribution last="0"> + <route cost="37.53" probability="1.00000000" edges="3/0to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to0/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car1695" depart="1695.00"> + <routeDistribution last="0"> + <route cost="44.44" probability="1.00000000" edges="2/1to2/2 2/2to3/2 3/2to3/1 3/1to3/0 3/0to4/0 4/0to4/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1696" depart="1696.00"> + <routeDistribution last="0"> + <route cost="42.97" probability="1.00000000" edges="2/3to2/2 2/2to2/1 2/1to2/0 2/0to1/0 1/0to0/0 0/0to0/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1697" depart="1697.00"> + <routeDistribution last="0"> + <route cost="41.08" probability="1.00000000" edges="4/1to4/0 4/0to3/0 3/0to2/0 2/0to1/0 1/0to1/1 1/1to2/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1698" depart="1698.00"> + <routeDistribution last="0"> + <route cost="20.16" probability="1.00000000" edges="2/4to2/3 2/3to2/2 2/2to1/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car1699" depart="1699.00"> + <routeDistribution last="0"> + <route cost="40.53" probability="1.00000000" edges="2/0to2/1 2/1to2/2 2/2to1/2 1/2to0/2 0/2to0/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1700" depart="1700.00"> + <routeDistribution last="0"> + <route cost="50.45" probability="1.00000000" edges="2/4to3/4 3/4to3/3 3/3to3/2 3/2to2/2 2/2to2/1 2/1to1/1 1/1to2/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1701" depart="1701.00"> + <routeDistribution last="0"> + <route cost="38.72" probability="1.00000000" edges="2/3to2/2 2/2to2/1 2/1to2/0 2/0to3/0 3/0to2/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car1702" depart="1702.00"> + <routeDistribution last="0"> + <route cost="21.95" probability="1.00000000" edges="2/3to2/4 2/4to3/4 3/4to4/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car1703" depart="1703.00"> + <routeDistribution last="0"> + <route cost="30.62" probability="1.00000000" edges="0/1to0/2 0/2to0/3 0/3to0/4 0/4to0/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1704" depart="1704.00"> + <routeDistribution last="0"> + <route cost="32.51" probability="1.00000000" edges="3/1to2/1 2/1to1/1 1/1to0/1 0/1to0/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car1705" depart="1705.00"> + <routeDistribution last="0"> + <route cost="41.64" probability="1.00000000" edges="4/0to3/0 3/0to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to2/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car1706" depart="1706.00"> + <routeDistribution last="0"> + <route cost="47.36" probability="1.00000000" edges="4/2to4/1 4/1to3/1 3/1to2/1 2/1to1/1 1/1to0/1 0/1to0/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car1707" depart="1707.00"> + <routeDistribution last="0"> + <route cost="51.16" probability="1.00000000" edges="3/1to3/0 3/0to2/0 2/0to2/1 2/1to2/2 2/2to2/3 2/3to2/4 2/4to3/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car1708" depart="1708.00"> + <routeDistribution last="0"> + <route cost="53.54" probability="1.00000000" edges="3/1to4/1 4/1to3/1 3/1to2/1 2/1to2/2 2/2to2/3 2/3to2/4 2/4to2/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1709" depart="1709.00"> + <routeDistribution last="0"> + <route cost="58.05" probability="1.00000000" edges="3/3to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to2/0 2/0to1/0 1/0to1/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1710" depart="1710.00"> + <routeDistribution last="0"> + <route cost="29.23" probability="1.00000000" edges="2/1to2/2 2/2to2/3 2/3to2/4 2/4to1/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car1711" depart="1711.00"> + <routeDistribution last="0"> + <route cost="56.54" probability="1.00000000" edges="4/2to4/3 4/3to4/2 4/2to3/2 3/2to2/2 2/2to1/2 1/2to0/2 0/2to1/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car1712" depart="1712.00"> + <routeDistribution last="0"> + <route cost="43.94" probability="1.00000000" edges="1/4to2/4 2/4to2/3 2/3to1/3 1/3to1/2 1/2to0/2 0/2to0/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1713" depart="1713.00"> + <routeDistribution last="0"> + <route cost="37.15" probability="1.00000000" edges="2/1to1/1 1/1to1/2 1/2to1/3 1/3to2/3 2/3to2/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car1714" depart="1714.00"> + <routeDistribution last="0"> + <route cost="49.34" probability="1.00000000" edges="3/1to4/1 4/1to3/1 3/1to2/1 2/1to1/1 1/1to1/2 1/2to1/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1715" depart="1715.00"> + <routeDistribution last="0"> + <route cost="53.21" probability="1.00000000" edges="3/1to4/1 4/1to4/2 4/2to4/3 4/3to4/4 4/4to3/4 3/4to2/4 2/4to3/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car1716" depart="1716.00"> + <routeDistribution last="0"> + <route cost="42.41" probability="1.00000000" edges="0/3to0/2 0/2to1/2 1/2to2/2 2/2to3/2 3/2to3/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1717" depart="1717.00"> + <routeDistribution last="0"> + <route cost="43.32" probability="1.00000000" edges="3/0to3/1 3/1to4/1 4/1to4/2 4/2to4/3 4/3to4/4 4/4to3/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car1718" depart="1718.00"> + <routeDistribution last="0"> + <route cost="41.33" probability="1.00000000" edges="2/2to1/2 1/2to2/2 2/2to3/2 3/2to3/1 3/1to4/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1719" depart="1719.00"> + <routeDistribution last="0"> + <route cost="20.64" probability="1.00000000" edges="4/2to4/3 4/3to4/4 4/4to3/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car1720" depart="1720.00"> + <routeDistribution last="0"> + <route cost="28.85" probability="1.00000000" edges="1/2to1/3 1/3to1/4 1/4to2/4 2/4to3/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car1721" depart="1721.00"> + <routeDistribution last="0"> + <route cost="44.92" probability="1.00000000" edges="4/4to4/3 4/3to3/3 3/3to3/4 3/4to2/4 2/4to1/4 1/4to0/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car1722" depart="1722.00"> + <routeDistribution last="0"> + <route cost="23.55" probability="1.00000000" edges="0/3to1/3 1/3to2/3 2/3to3/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1723" depart="1723.00"> + <routeDistribution last="0"> + <route cost="26.97" probability="1.00000000" edges="2/4to3/4 3/4to3/3 3/3to3/2 3/2to2/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car1724" depart="1724.00"> + <routeDistribution last="0"> + <route cost="66.97" probability="1.00000000" edges="4/4to3/4 3/4to2/4 2/4to1/4 1/4to0/4 0/4to0/3 0/3to0/2 0/2to0/1 0/1to0/0 0/0to0/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1725" depart="1725.00"> + <routeDistribution last="0"> + <route cost="31.01" probability="1.00000000" edges="0/0to1/0 1/0to2/0 2/0to3/0 3/0to3/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1726" depart="1726.00"> + <routeDistribution last="0"> + <route cost="70.08" probability="1.00000000" edges="0/3to0/4 0/4to1/4 1/4to2/4 2/4to3/4 3/4to4/4 4/4to4/3 4/3to4/2 4/2to4/1 4/1to4/0 4/0to3/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car1727" depart="1727.00"> + <routeDistribution last="0"> + <route cost="51.24" probability="1.00000000" edges="2/0to3/0 3/0to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to1/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car1728" depart="1728.00"> + <routeDistribution last="0"> + <route cost="51.82" probability="1.00000000" edges="2/3to2/4 2/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to4/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car1729" depart="1729.00"> + <routeDistribution last="0"> + <route cost="30.35" probability="1.00000000" edges="1/2to1/3 1/3to2/3 2/3to3/3 3/3to4/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1730" depart="1730.00"> + <routeDistribution last="0"> + <route cost="35.77" probability="1.00000000" edges="1/3to1/2 1/2to1/1 1/1to1/0 1/0to0/0 0/0to0/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1731" depart="1731.00"> + <routeDistribution last="0"> + <route cost="40.15" probability="1.00000000" edges="3/1to3/2 3/2to2/2 2/2to1/2 1/2to1/3 1/3to2/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1732" depart="1732.00"> + <routeDistribution last="0"> + <route cost="21.66" probability="1.00000000" edges="3/2to3/1 3/1to3/0 3/0to2/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car1733" depart="1733.00"> + <routeDistribution last="0"> + <route cost="45.56" probability="1.00000000" edges="3/3to4/3 4/3to4/2 4/2to4/1 4/1to4/0 4/0to3/0 3/0to4/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car1734" depart="1734.00"> + <routeDistribution last="0"> + <route cost="40.92" probability="1.00000000" edges="4/1to4/2 4/2to4/3 4/3to3/3 3/3to2/3 2/3to1/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1735" depart="1735.00"> + <routeDistribution last="0"> + <route cost="37.96" probability="1.00000000" edges="1/3to1/4 1/4to2/4 2/4to3/4 3/4to3/3 3/3to3/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car1736" depart="1736.00"> + <routeDistribution last="0"> + <route cost="30.34" probability="1.00000000" edges="2/0to3/0 3/0to3/1 3/1to3/2 3/2to4/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car1737" depart="1737.00"> + <routeDistribution last="0"> + <route cost="52.06" probability="1.00000000" edges="3/4to4/4 4/4to4/3 4/3to3/3 3/3to3/2 3/2to2/2 2/2to1/2 1/2to2/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car1738" depart="1738.00"> + <routeDistribution last="0"> + <route cost="46.66" probability="1.00000000" edges="3/2to3/1 3/1to2/1 2/1to1/1 1/1to1/2 1/2to1/3 1/3to1/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car1739" depart="1739.00"> + <routeDistribution last="0"> + <route cost="28.84" probability="1.00000000" edges="2/3to1/3 1/3to1/2 1/2to1/1 1/1to0/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1740" depart="1740.00"> + <routeDistribution last="0"> + <route cost="20.16" probability="1.00000000" edges="3/1to3/2 3/2to3/3 3/3to4/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1741" depart="1741.00"> + <routeDistribution last="0"> + <route cost="49.71" probability="1.00000000" edges="4/1to4/2 4/2to4/3 4/3to4/4 4/4to3/4 3/4to2/4 2/4to1/4 1/4to0/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car1742" depart="1742.00"> + <routeDistribution last="0"> + <route cost="53.13" probability="1.00000000" edges="4/3to4/4 4/4to3/4 3/4to2/4 2/4to2/3 2/3to2/2 2/2to1/2 1/2to1/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1743" depart="1743.00"> + <routeDistribution last="0"> + <route cost="71.20" probability="1.00000000" edges="0/1to0/0 0/0to1/0 1/0to2/0 2/0to3/0 3/0to4/0 4/0to4/1 4/1to4/2 4/2to4/3 4/3to4/4 4/4to3/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car1744" depart="1744.00"> + <routeDistribution last="0"> + <route cost="44.36" probability="1.00000000" edges="2/3to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to2/0 2/0to1/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car1745" depart="1745.00"> + <routeDistribution last="0"> + <route cost="47.34" probability="1.00000000" edges="2/4to2/3 2/3to2/2 2/2to3/2 3/2to4/2 4/2to4/1 4/1to3/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1746" depart="1746.00"> + <routeDistribution last="0"> + <route cost="29.13" probability="1.00000000" edges="1/3to1/2 1/2to0/2 0/2to0/1 0/1to0/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car1747" depart="1747.00"> + <routeDistribution last="0"> + <route cost="45.83" probability="1.00000000" edges="4/3to4/2 4/2to3/2 3/2to3/1 3/1to2/1 2/1to1/1 1/1to1/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car1748" depart="1748.00"> + <routeDistribution last="0"> + <route cost="30.34" probability="1.00000000" edges="4/2to4/1 4/1to3/1 3/1to2/1 2/1to2/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car1749" depart="1749.00"> + <routeDistribution last="0"> + <route cost="38.62" probability="1.00000000" edges="0/0to1/0 1/0to1/1 1/1to1/2 1/2to2/2 2/2to1/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car1750" depart="1750.00"> + <routeDistribution last="0"> + <route cost="47.01" probability="1.00000000" edges="2/2to2/3 2/3to2/2 2/2to2/1 2/1to1/1 1/1to1/0 1/0to2/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car1751" depart="1751.00"> + <routeDistribution last="0"> + <route cost="22.03" probability="1.00000000" edges="2/2to3/2 3/2to3/3 3/3to3/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car1752" depart="1752.00"> + <routeDistribution last="0"> + <route cost="65.02" probability="1.00000000" edges="0/4to0/3 0/3to0/2 0/2to1/2 1/2to2/2 2/2to3/2 3/2to4/2 4/2to4/1 4/1to3/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1753" depart="1753.00"> + <routeDistribution last="0"> + <route cost="48.84" probability="1.00000000" edges="3/1to3/2 3/2to2/2 2/2to1/2 1/2to0/2 0/2to0/3 0/3to1/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1754" depart="1754.00"> + <routeDistribution last="0"> + <route cost="54.81" probability="1.00000000" edges="0/0to0/1 0/1to1/1 1/1to1/2 1/2to2/2 2/2to3/2 3/2to4/2 4/2to4/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1755" depart="1755.00"> + <routeDistribution last="0"> + <route cost="39.41" probability="1.00000000" edges="3/1to3/2 3/2to3/3 3/3to3/4 3/4to2/4 2/4to2/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1756" depart="1756.00"> + <routeDistribution last="0"> + <route cost="47.34" probability="1.00000000" edges="0/2to0/3 0/3to1/3 1/3to2/3 2/3to2/2 2/2to2/1 2/1to3/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1757" depart="1757.00"> + <routeDistribution last="0"> + <route cost="30.35" probability="1.00000000" edges="0/1to0/2 0/2to1/2 1/2to2/2 2/2to3/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car1758" depart="1758.00"> + <routeDistribution last="0"> + <route cost="40.53" probability="1.00000000" edges="3/1to2/1 2/1to1/1 1/1to1/2 1/2to1/3 1/3to0/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1759" depart="1759.00"> + <routeDistribution last="0"> + <route cost="23.15" probability="1.00000000" edges="2/4to1/4 1/4to1/3 1/3to0/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1760" depart="1760.00"> + <routeDistribution last="0"> + <route cost="49.60" probability="1.00000000" edges="4/1to4/2 4/2to4/3 4/3to3/3 3/3to2/3 2/3to1/3 1/3to1/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car1761" depart="1761.00"> + <routeDistribution last="0"> + <route cost="36.85" probability="1.00000000" edges="1/0to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1762" depart="1762.00"> + <routeDistribution last="0"> + <route cost="31.84" probability="1.00000000" edges="1/3to1/2 1/2to1/1 1/1to2/1 2/1to2/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car1763" depart="1763.00"> + <routeDistribution last="0"> + <route cost="28.94" probability="1.00000000" edges="1/2to1/1 1/1to0/1 0/1to0/0 0/0to1/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car1764" depart="1764.00"> + <routeDistribution last="0"> + <route cost="26.97" probability="1.00000000" edges="3/0to2/0 2/0to2/1 2/1to2/2 2/2to3/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car1765" depart="1765.00"> + <routeDistribution last="0"> + <route cost="45.56" probability="1.00000000" edges="1/1to0/1 0/1to0/2 0/2to0/3 0/3to0/4 0/4to1/4 1/4to0/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car1766" depart="1766.00"> + <routeDistribution last="0"> + <route cost="23.16" probability="1.00000000" edges="3/2to2/2 2/2to1/2 1/2to1/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1767" depart="1767.00"> + <routeDistribution last="0"> + <route cost="41.36" probability="1.00000000" edges="3/0to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to2/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1768" depart="1768.00"> + <routeDistribution last="0"> + <route cost="49.78" probability="1.00000000" edges="2/1to2/0 2/0to1/0 1/0to0/0 0/0to0/1 0/1to0/2 0/2to0/3 0/3to1/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1769" depart="1769.00"> + <routeDistribution last="0"> + <route cost="23.53" probability="1.00000000" edges="0/3to0/2 0/2to0/1 0/1to1/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1770" depart="1770.00"> + <routeDistribution last="0"> + <route cost="42.27" probability="1.00000000" edges="3/4to4/4 4/4to4/3 4/3to4/2 4/2to4/1 4/1to3/1 3/1to4/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1771" depart="1771.00"> + <routeDistribution last="0"> + <route cost="44.73" probability="1.00000000" edges="3/0to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to0/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1772" depart="1772.00"> + <routeDistribution last="0"> + <route cost="20.55" probability="1.00000000" edges="3/4to3/3 3/3to3/2 3/2to3/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1773" depart="1773.00"> + <routeDistribution last="0"> + <route cost="45.84" probability="1.00000000" edges="3/1to3/0 3/0to2/0 2/0to2/1 2/1to2/2 2/2to2/3 2/3to1/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1774" depart="1774.00"> + <routeDistribution last="0"> + <route cost="30.44" probability="1.00000000" edges="4/3to4/4 4/4to3/4 3/4to3/3 3/3to2/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1775" depart="1775.00"> + <routeDistribution last="0"> + <route cost="53.85" probability="1.00000000" edges="2/1to3/1 3/1to2/1 2/1to1/1 1/1to0/1 0/1to0/2 0/2to0/3 0/3to1/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1776" depart="1776.00"> + <routeDistribution last="0"> + <route cost="31.84" probability="1.00000000" edges="3/4to3/3 3/3to3/2 3/2to4/2 4/2to4/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1777" depart="1777.00"> + <routeDistribution last="0"> + <route cost="36.52" probability="1.00000000" edges="1/1to1/0 1/0to2/0 2/0to3/0 3/0to4/0 4/0to4/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1778" depart="1778.00"> + <routeDistribution last="0"> + <route cost="37.16" probability="1.00000000" edges="2/0to1/0 1/0to1/1 1/1to2/1 2/1to3/1 3/1to4/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1779" depart="1779.00"> + <routeDistribution last="0"> + <route cost="35.35" probability="1.00000000" edges="3/1to3/0 3/0to3/1 3/1to3/2 3/2to3/3 3/3to4/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1780" depart="1780.00"> + <routeDistribution last="0"> + <route cost="34.27" probability="1.00000000" edges="4/1to4/0 4/0to3/0 3/0to2/0 2/0to2/1 2/1to2/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car1781" depart="1781.00"> + <routeDistribution last="0"> + <route cost="54.11" probability="1.00000000" edges="1/4to0/4 0/4to1/4 1/4to2/4 2/4to2/3 2/3to2/2 2/2to2/1 2/1to2/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car1782" depart="1782.00"> + <routeDistribution last="0"> + <route cost="59.17" probability="1.00000000" edges="1/0to0/0 0/0to0/1 0/1to1/1 1/1to1/2 1/2to2/2 2/2to2/3 2/3to3/3 3/3to3/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car1783" depart="1783.00"> + <routeDistribution last="0"> + <route cost="50.96" probability="1.00000000" edges="0/3to0/2 0/2to0/3 0/3to0/4 0/4to1/4 1/4to2/4 2/4to3/4 3/4to3/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1784" depart="1784.00"> + <routeDistribution last="0"> + <route cost="39.85" probability="1.00000000" edges="3/3to4/3 4/3to3/3 3/3to2/3 2/3to1/3 1/3to1/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car1785" depart="1785.00"> + <routeDistribution last="0"> + <route cost="44.23" probability="1.00000000" edges="3/0to4/0 4/0to3/0 3/0to3/1 3/1to3/2 3/2to3/3 3/3to4/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1786" depart="1786.00"> + <routeDistribution last="0"> + <route cost="44.84" probability="1.00000000" edges="2/3to1/3 1/3to2/3 2/3to2/2 2/2to2/1 2/1to2/0 2/0to2/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1787" depart="1787.00"> + <routeDistribution last="0"> + <route cost="40.12" probability="1.00000000" edges="2/3to2/2 2/2to2/3 2/3to3/3 3/3to4/3 4/3to4/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car1788" depart="1788.00"> + <routeDistribution last="0"> + <route cost="43.64" probability="1.00000000" edges="3/3to3/4 3/4to3/3 3/3to3/2 3/2to2/2 2/2to2/1 2/1to1/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1789" depart="1789.00"> + <routeDistribution last="0"> + <route cost="37.16" probability="1.00000000" edges="1/1to1/2 1/2to2/2 2/2to3/2 3/2to3/1 3/1to3/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car1790" depart="1790.00"> + <routeDistribution last="0"> + <route cost="56.85" probability="1.00000000" edges="0/2to0/3 0/3to1/3 1/3to2/3 2/3to3/3 3/3to4/3 4/3to4/2 4/2to4/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1791" depart="1791.00"> + <routeDistribution last="0"> + <route cost="30.73" probability="1.00000000" edges="2/4to2/3 2/3to2/2 2/2to2/1 2/1to3/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1792" depart="1792.00"> + <routeDistribution last="0"> + <route cost="52.25" probability="1.00000000" edges="1/0to1/1 1/1to2/1 2/1to2/2 2/2to3/2 3/2to3/3 3/3to4/3 4/3to4/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car1793" depart="1793.00"> + <routeDistribution last="0"> + <route cost="13.35" probability="1.00000000" edges="3/4to3/3 3/3to3/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car1794" depart="1794.00"> + <routeDistribution last="0"> + <route cost="27.35" probability="1.00000000" edges="1/4to2/4 2/4to2/3 2/3to2/2 2/2to2/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1795" depart="1795.00"> + <routeDistribution last="0"> + <route cost="38.66" probability="1.00000000" edges="3/1to2/1 2/1to1/1 1/1to0/1 0/1to0/2 0/2to1/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car1796" depart="1796.00"> + <routeDistribution last="0"> + <route cost="39.32" probability="1.00000000" edges="3/4to3/3 3/3to3/2 3/2to4/2 4/2to4/1 4/1to4/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car1797" depart="1797.00"> + <routeDistribution last="0"> + <route cost="38.10" probability="1.00000000" edges="0/0to0/1 0/1to0/2 0/2to0/3 0/3to0/4 0/4to0/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1798" depart="1798.00"> + <routeDistribution last="0"> + <route cost="51.52" probability="1.00000000" edges="2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to2/3 2/3to2/4 2/4to1/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car1799" depart="1799.00"> + <routeDistribution last="0"> + <route cost="30.73" probability="1.00000000" edges="1/0to2/0 2/0to3/0 3/0to3/1 3/1to3/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car1800" depart="1800.00"> + <routeDistribution last="0"> + <route cost="31.16" probability="1.00000000" edges="1/3to1/2 1/2to1/3 1/3to2/3 2/3to3/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1801" depart="1801.00"> + <routeDistribution last="0"> + <route cost="56.04" probability="1.00000000" edges="4/2to4/1 4/1to3/1 3/1to2/1 2/1to2/2 2/2to2/3 2/3to1/3 1/3to0/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1802" depart="1802.00"> + <routeDistribution last="0"> + <route cost="37.13" probability="1.00000000" edges="4/3to3/3 3/3to3/2 3/2to2/2 2/2to2/1 2/1to1/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1803" depart="1803.00"> + <routeDistribution last="0"> + <route cost="38.62" probability="1.00000000" edges="4/4to3/4 3/4to2/4 2/4to2/3 2/3to1/3 1/3to2/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1804" depart="1804.00"> + <routeDistribution last="0"> + <route cost="53.32" probability="1.00000000" edges="4/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to2/0 2/0to2/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1805" depart="1805.00"> + <routeDistribution last="0"> + <route cost="24.65" probability="1.00000000" edges="0/3to1/3 1/3to1/2 1/2to2/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car1806" depart="1806.00"> + <routeDistribution last="0"> + <route cost="24.65" probability="1.00000000" edges="1/4to1/3 1/3to2/3 2/3to2/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car1807" depart="1807.00"> + <routeDistribution last="0"> + <route cost="38.33" probability="1.00000000" edges="0/1to1/1 1/1to2/1 2/1to2/2 2/2to3/2 3/2to2/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car1808" depart="1808.00"> + <routeDistribution last="0"> + <route cost="37.44" probability="1.00000000" edges="3/4to3/3 3/3to2/3 2/3to2/4 2/4to1/4 1/4to0/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car1809" depart="1809.00"> + <routeDistribution last="0"> + <route cost="36.85" probability="1.00000000" edges="2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to1/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car1810" depart="1810.00"> + <routeDistribution last="0"> + <route cost="31.45" probability="1.00000000" edges="2/3to2/2 2/2to3/2 3/2to3/1 3/1to2/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1811" depart="1811.00"> + <routeDistribution last="0"> + <route cost="41.85" probability="1.00000000" edges="1/4to2/4 2/4to3/4 3/4to4/4 4/4to4/3 4/3to4/2 4/2to4/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1812" depart="1812.00"> + <routeDistribution last="0"> + <route cost="63.45" probability="1.00000000" edges="4/0to3/0 3/0to2/0 2/0to1/0 1/0to0/0 0/0to0/1 0/1to0/2 0/2to0/3 0/3to0/4 0/4to1/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car1813" depart="1813.00"> + <routeDistribution last="0"> + <route cost="36.32" probability="1.00000000" edges="4/4to4/3 4/3to3/3 3/3to3/2 3/2to3/1 3/1to3/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car1814" depart="1814.00"> + <routeDistribution last="0"> + <route cost="29.95" probability="1.00000000" edges="0/3to1/3 1/3to1/2 1/2to0/2 0/2to0/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1815" depart="1815.00"> + <routeDistribution last="0"> + <route cost="46.13" probability="1.00000000" edges="0/0to1/0 1/0to2/0 2/0to2/1 2/1to2/2 2/2to3/2 3/2to3/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1816" depart="1816.00"> + <routeDistribution last="0"> + <route cost="54.44" probability="1.00000000" edges="4/4to4/3 4/3to3/3 3/3to3/2 3/2to2/2 2/2to1/2 1/2to0/2 0/2to0/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1817" depart="1817.00"> + <routeDistribution last="0"> + <route cost="28.45" probability="1.00000000" edges="2/1to2/2 2/2to3/2 3/2to3/3 3/3to4/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1818" depart="1818.00"> + <routeDistribution last="0"> + <route cost="42.46" probability="1.00000000" edges="2/4to3/4 3/4to3/3 3/3to3/2 3/2to2/2 2/2to2/1 2/1to1/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1819" depart="1819.00"> + <routeDistribution last="0"> + <route cost="28.84" probability="1.00000000" edges="1/0to1/1 1/1to2/1 2/1to2/2 2/2to2/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1820" depart="1820.00"> + <routeDistribution last="0"> + <route cost="52.50" probability="1.00000000" edges="1/4to0/4 0/4to0/3 0/3to0/2 0/2to0/1 0/1to0/0 0/0to1/0 1/0to1/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1821" depart="1821.00"> + <routeDistribution last="0"> + <route cost="34.84" probability="1.00000000" edges="4/0to3/0 3/0to2/0 2/0to1/0 1/0to1/1 1/1to1/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car1822" depart="1822.00"> + <routeDistribution last="0"> + <route cost="39.34" probability="1.00000000" edges="3/2to2/2 2/2to1/2 1/2to0/2 0/2to0/3 0/3to0/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car1823" depart="1823.00"> + <routeDistribution last="0"> + <route cost="41.33" probability="1.00000000" edges="2/2to1/2 1/2to2/2 2/2to3/2 3/2to3/1 3/1to4/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1824" depart="1824.00"> + <routeDistribution last="0"> + <route cost="49.89" probability="1.00000000" edges="0/4to0/3 0/3to0/2 0/2to1/2 1/2to2/2 2/2to3/2 3/2to3/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1825" depart="1825.00"> + <routeDistribution last="0"> + <route cost="43.34" probability="1.00000000" edges="3/3to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to2/1 2/1to3/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1826" depart="1826.00"> + <routeDistribution last="0"> + <route cost="64.05" probability="1.00000000" edges="0/2to0/3 0/3to1/3 1/3to2/3 2/3to3/3 3/3to4/3 4/3to4/2 4/2to4/1 4/1to4/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car1827" depart="1827.00"> + <routeDistribution last="0"> + <route cost="33.34" probability="1.00000000" edges="0/2to1/2 1/2to2/2 2/2to2/1 2/1to3/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1828" depart="1828.00"> + <routeDistribution last="0"> + <route cost="61.05" probability="1.00000000" edges="0/2to0/3 0/3to1/3 1/3to2/3 2/3to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to3/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1829" depart="1829.00"> + <routeDistribution last="0"> + <route cost="40.24" probability="1.00000000" edges="3/3to4/3 4/3to3/3 3/3to2/3 2/3to1/3 1/3to0/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1830" depart="1830.00"> + <routeDistribution last="0"> + <route cost="28.84" probability="1.00000000" edges="0/1to1/1 1/1to1/2 1/2to1/3 1/3to2/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1831" depart="1831.00"> + <routeDistribution last="0"> + <route cost="43.34" probability="1.00000000" edges="3/3to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to2/1 2/1to3/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1832" depart="1832.00"> + <routeDistribution last="0"> + <route cost="47.01" probability="1.00000000" edges="3/2to3/3 3/3to3/2 3/2to3/1 3/1to2/1 2/1to2/0 2/0to3/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car1833" depart="1833.00"> + <routeDistribution last="0"> + <route cost="38.61" probability="1.00000000" edges="1/2to2/2 2/2to1/2 1/2to1/1 1/1to0/1 0/1to0/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car1834" depart="1834.00"> + <routeDistribution last="0"> + <route cost="23.55" probability="1.00000000" edges="0/1to1/1 1/1to2/1 2/1to3/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1835" depart="1835.00"> + <routeDistribution last="0"> + <route cost="30.24" probability="1.00000000" edges="4/4to4/3 4/3to3/3 3/3to3/4 3/4to2/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car1836" depart="1836.00"> + <routeDistribution last="0"> + <route cost="34.55" probability="1.00000000" edges="3/0to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1837" depart="1837.00"> + <routeDistribution last="0"> + <route cost="39.46" probability="1.00000000" edges="0/2to0/3 0/3to1/3 1/3to2/3 2/3to2/2 2/2to2/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1838" depart="1838.00"> + <routeDistribution last="0"> + <route cost="49.52" probability="1.00000000" edges="4/0to4/1 4/1to4/2 4/2to3/2 3/2to2/2 2/2to1/2 1/2to1/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1839" depart="1839.00"> + <routeDistribution last="0"> + <route cost="54.51" probability="1.00000000" edges="4/0to4/1 4/1to4/0 4/0to3/0 3/0to2/0 2/0to1/0 1/0to0/0 0/0to1/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car1840" depart="1840.00"> + <routeDistribution last="0"> + <route cost="37.62" probability="1.00000000" edges="0/3to0/2 0/2to0/1 0/1to0/0 0/0to1/0 1/0to0/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car1841" depart="1841.00"> + <routeDistribution last="0"> + <route cost="52.71" probability="1.00000000" edges="2/1to2/0 2/0to2/1 2/1to2/2 2/2to2/3 2/3to3/3 3/3to3/4 3/4to2/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car1842" depart="1842.00"> + <routeDistribution last="0"> + <route cost="38.33" probability="1.00000000" edges="2/2to1/2 1/2to2/2 2/2to2/3 2/3to3/3 3/3to4/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1843" depart="1843.00"> + <routeDistribution last="0"> + <route cost="56.32" probability="1.00000000" edges="4/0to4/1 4/1to4/2 4/2to3/2 3/2to2/2 2/2to1/2 1/2to1/3 1/3to2/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1844" depart="1844.00"> + <routeDistribution last="0"> + <route cost="52.30" probability="1.00000000" edges="4/2to4/3 4/3to4/4 4/4to3/4 3/4to2/4 2/4to1/4 1/4to0/4 0/4to1/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car1845" depart="1845.00"> + <routeDistribution last="0"> + <route cost="52.46" probability="1.00000000" edges="2/2to2/1 2/1to2/2 2/2to2/3 2/3to2/4 2/4to3/4 3/4to4/4 4/4to4/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1846" depart="1846.00"> + <routeDistribution last="0"> + <route cost="36.45" probability="1.00000000" edges="3/3to3/2 3/2to2/2 2/2to2/1 2/1to1/1 1/1to2/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1847" depart="1847.00"> + <routeDistribution last="0"> + <route cost="22.32" probability="1.00000000" edges="2/1to2/0 2/0to3/0 3/0to4/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car1848" depart="1848.00"> + <routeDistribution last="0"> + <route cost="47.01" probability="1.00000000" edges="1/1to0/1 0/1to1/1 1/1to1/2 1/2to2/2 2/2to3/2 3/2to3/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1849" depart="1849.00"> + <routeDistribution last="0"> + <route cost="45.02" probability="1.00000000" edges="1/3to2/3 2/3to2/2 2/2to2/1 2/1to2/0 2/0to3/0 3/0to4/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car1850" depart="1850.00"> + <routeDistribution last="0"> + <route cost="32.14" probability="1.00000000" edges="3/3to2/3 2/3to1/3 1/3to0/3 0/3to0/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car1851" depart="1851.00"> + <routeDistribution last="0"> + <route cost="50.03" probability="1.00000000" edges="1/3to0/3 0/3to1/3 1/3to2/3 2/3to2/2 2/2to3/2 3/2to4/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car1852" depart="1852.00"> + <routeDistribution last="0"> + <route cost="14.85" probability="1.00000000" edges="3/3to2/3 2/3to1/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1853" depart="1853.00"> + <routeDistribution last="0"> + <route cost="34.16" probability="1.00000000" edges="1/4to2/4 2/4to3/4 3/4to3/3 3/3to3/2 3/2to2/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car1854" depart="1854.00"> + <routeDistribution last="0"> + <route cost="59.58" probability="1.00000000" edges="2/1to3/1 3/1to3/2 3/2to3/3 3/3to3/4 3/4to2/4 2/4to1/4 1/4to0/4 0/4to0/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1855" depart="1855.00"> + <routeDistribution last="0"> + <route cost="44.45" probability="1.00000000" edges="4/1to3/1 3/1to3/0 3/0to2/0 2/0to1/0 1/0to0/0 0/0to0/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1856" depart="1856.00"> + <routeDistribution last="0"> + <route cost="46.63" probability="1.00000000" edges="4/2to4/3 4/3to4/2 4/2to3/2 3/2to3/1 3/1to2/1 2/1to2/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car1857" depart="1857.00"> + <routeDistribution last="0"> + <route cost="48.16" probability="1.00000000" edges="3/1to3/2 3/2to3/1 3/1to2/1 2/1to1/1 1/1to0/1 0/1to0/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car1858" depart="1858.00"> + <routeDistribution last="0"> + <route cost="37.15" probability="1.00000000" edges="4/3to4/2 4/2to3/2 3/2to3/1 3/1to2/1 2/1to1/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1859" depart="1859.00"> + <routeDistribution last="0"> + <route cost="28.54" probability="1.00000000" edges="1/3to1/4 1/4to1/3 1/3to1/2 1/2to1/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1860" depart="1860.00"> + <routeDistribution last="0"> + <route cost="38.66" probability="1.00000000" edges="0/2to1/2 1/2to2/2 2/2to3/2 3/2to3/1 3/1to2/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1861" depart="1861.00"> + <routeDistribution last="0"> + <route cost="50.76" probability="1.00000000" edges="2/0to1/0 1/0to1/1 1/1to1/2 1/2to2/2 2/2to2/3 2/3to3/3 3/3to3/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car1862" depart="1862.00"> + <routeDistribution last="0"> + <route cost="44.71" probability="1.00000000" edges="2/4to2/3 2/3to1/3 1/3to1/2 1/2to1/1 1/1to1/0 1/0to2/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car1863" depart="1863.00"> + <routeDistribution last="0"> + <route cost="53.04" probability="1.00000000" edges="1/3to1/4 1/4to2/4 2/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to4/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1864" depart="1864.00"> + <routeDistribution last="0"> + <route cost="35.66" probability="1.00000000" edges="1/0to1/1 1/1to1/2 1/2to1/3 1/3to2/3 2/3to2/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car1865" depart="1865.00"> + <routeDistribution last="0"> + <route cost="44.33" probability="1.00000000" edges="3/1to3/0 3/0to3/1 3/1to3/2 3/2to3/3 3/3to3/4 3/4to4/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car1866" depart="1866.00"> + <routeDistribution last="0"> + <route cost="20.45" probability="1.00000000" edges="0/0to0/1 0/1to0/2 0/2to1/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car1867" depart="1867.00"> + <routeDistribution last="0"> + <route cost="40.53" probability="1.00000000" edges="0/3to0/2 0/2to0/1 0/1to1/1 1/1to2/1 2/1to2/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car1868" depart="1868.00"> + <routeDistribution last="0"> + <route cost="28.54" probability="1.00000000" edges="1/1to1/0 1/0to1/1 1/1to1/2 1/2to1/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1869" depart="1869.00"> + <routeDistribution last="0"> + <route cost="47.03" probability="1.00000000" edges="0/2to1/2 1/2to2/2 2/2to2/3 2/3to3/3 3/3to4/3 4/3to3/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1870" depart="1870.00"> + <routeDistribution last="0"> + <route cost="44.64" probability="1.00000000" edges="3/1to2/1 2/1to2/2 2/2to2/3 2/3to2/4 2/4to3/4 3/4to4/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car1871" depart="1871.00"> + <routeDistribution last="0"> + <route cost="37.25" probability="1.00000000" edges="4/3to4/2 4/2to4/1 4/1to4/0 4/0to3/0 3/0to4/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car1872" depart="1872.00"> + <routeDistribution last="0"> + <route cost="39.34" probability="1.00000000" edges="3/2to2/2 2/2to1/2 1/2to0/2 0/2to0/3 0/3to0/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car1873" depart="1873.00"> + <routeDistribution last="0"> + <route cost="65.02" probability="1.00000000" edges="4/0to4/1 4/1to4/2 4/2to3/2 3/2to2/2 2/2to1/2 1/2to0/2 0/2to0/3 0/3to1/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1874" depart="1874.00"> + <routeDistribution last="0"> + <route cost="23.82" probability="1.00000000" edges="2/3to3/3 3/3to4/3 4/3to4/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car1875" depart="1875.00"> + <routeDistribution last="0"> + <route cost="41.33" probability="1.00000000" edges="1/2to0/2 0/2to1/2 1/2to2/2 2/2to2/1 2/1to3/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1876" depart="1876.00"> + <routeDistribution last="0"> + <route cost="46.74" probability="1.00000000" edges="4/2to4/3 4/3to4/2 4/2to4/1 4/1to4/0 4/0to3/0 3/0to4/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car1877" depart="1877.00"> + <routeDistribution last="0"> + <route cost="45.86" probability="1.00000000" edges="4/2to4/1 4/1to3/1 3/1to2/1 2/1to1/1 1/1to1/2 1/2to1/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1878" depart="1878.00"> + <routeDistribution last="0"> + <route cost="39.46" probability="1.00000000" edges="3/3to3/2 3/2to2/2 2/2to1/2 1/2to1/3 1/3to1/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car1879" depart="1879.00"> + <routeDistribution last="0"> + <route cost="35.94" probability="1.00000000" edges="0/4to1/4 1/4to1/3 1/3to1/2 1/2to0/2 0/2to0/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1880" depart="1880.00"> + <routeDistribution last="0"> + <route cost="43.34" probability="1.00000000" edges="1/3to1/4 1/4to1/3 1/3to1/2 1/2to1/1 1/1to0/1 0/1to1/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1881" depart="1881.00"> + <routeDistribution last="0"> + <route cost="39.03" probability="1.00000000" edges="4/3to4/2 4/2to3/2 3/2to2/2 2/2to1/2 1/2to1/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1882" depart="1882.00"> + <routeDistribution last="0"> + <route cost="37.33" probability="1.00000000" edges="4/2to4/3 4/3to4/4 4/4to3/4 3/4to2/4 2/4to3/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car1883" depart="1883.00"> + <routeDistribution last="0"> + <route cost="42.32" probability="1.00000000" edges="0/4to0/3 0/3to1/3 1/3to2/3 2/3to3/3 3/3to3/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car1884" depart="1884.00"> + <routeDistribution last="0"> + <route cost="29.51" probability="1.00000000" edges="1/1to1/0 1/0to2/0 2/0to3/0 3/0to4/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car1885" depart="1885.00"> + <routeDistribution last="0"> + <route cost="13.35" probability="1.00000000" edges="0/3to0/2 0/2to0/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1886" depart="1886.00"> + <routeDistribution last="0"> + <route cost="38.33" probability="1.00000000" edges="2/3to3/3 3/3to2/3 2/3to2/2 2/2to1/2 1/2to0/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car1887" depart="1887.00"> + <routeDistribution last="0"> + <route cost="36.52" probability="1.00000000" edges="2/1to2/0 2/0to3/0 3/0to4/0 4/0to4/1 4/1to4/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car1888" depart="1888.00"> + <routeDistribution last="0"> + <route cost="57.19" probability="1.00000000" edges="0/4to0/3 0/3to0/2 0/2to0/1 0/1to0/0 0/0to1/0 1/0to2/0 2/0to3/0 3/0to4/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car1889" depart="1889.00"> + <routeDistribution last="0"> + <route cost="38.33" probability="1.00000000" edges="4/2to4/3 4/3to4/2 4/2to4/1 4/1to3/1 3/1to3/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car1890" depart="1890.00"> + <routeDistribution last="0"> + <route cost="34.84" probability="1.00000000" edges="4/0to3/0 3/0to3/1 3/1to3/2 3/2to3/3 3/3to3/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car1891" depart="1891.00"> + <routeDistribution last="0"> + <route cost="61.23" probability="1.00000000" edges="0/0to0/1 0/1to1/1 1/1to1/2 1/2to2/2 2/2to2/3 2/3to3/3 3/3to4/3 4/3to4/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car1892" depart="1892.00"> + <routeDistribution last="0"> + <route cost="28.45" probability="1.00000000" edges="3/4to3/3 3/3to2/3 2/3to2/2 2/2to1/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car1893" depart="1893.00"> + <routeDistribution last="0"> + <route cost="32.66" probability="1.00000000" edges="2/3to3/3 3/3to4/3 4/3to4/2 4/2to4/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1894" depart="1894.00"> + <routeDistribution last="0"> + <route cost="61.31" probability="1.00000000" edges="1/4to0/4 0/4to1/4 1/4to2/4 2/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to3/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car1895" depart="1895.00"> + <routeDistribution last="0"> + <route cost="47.04" probability="1.00000000" edges="4/3to4/2 4/2to3/2 3/2to2/2 2/2to1/2 1/2to0/2 0/2to1/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car1896" depart="1896.00"> + <routeDistribution last="0"> + <route cost="39.85" probability="1.00000000" edges="2/3to1/3 1/3to2/3 2/3to3/3 3/3to4/3 4/3to4/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car1897" depart="1897.00"> + <routeDistribution last="0"> + <route cost="46.66" probability="1.00000000" edges="0/2to0/3 0/3to1/3 1/3to2/3 2/3to2/2 2/2to2/1 2/1to2/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car1898" depart="1898.00"> + <routeDistribution last="0"> + <route cost="29.51" probability="1.00000000" edges="3/3to3/2 3/2to3/1 3/1to3/0 3/0to4/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car1899" depart="1899.00"> + <routeDistribution last="0"> + <route cost="24.65" probability="1.00000000" edges="1/0to1/1 1/1to0/1 0/1to0/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car1900" depart="1900.00"> + <routeDistribution last="0"> + <route cost="51.52" probability="1.00000000" edges="1/4to2/4 2/4to2/3 2/3to2/2 2/2to2/1 2/1to1/1 1/1to1/0 1/0to2/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car1901" depart="1901.00"> + <routeDistribution last="0"> + <route cost="51.10" probability="1.00000000" edges="3/0to3/1 3/1to3/2 3/2to3/3 3/3to3/4 3/4to2/4 2/4to1/4 1/4to0/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car1902" depart="1902.00"> + <routeDistribution last="0"> + <route cost="61.05" probability="1.00000000" edges="0/2to0/3 0/3to1/3 1/3to2/3 2/3to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to3/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1903" depart="1903.00"> + <routeDistribution last="0"> + <route cost="43.71" probability="1.00000000" edges="3/2to3/3 3/3to3/4 3/4to2/4 2/4to1/4 1/4to0/4 0/4to0/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1904" depart="1904.00"> + <routeDistribution last="0"> + <route cost="38.65" probability="1.00000000" edges="1/0to2/0 2/0to2/1 2/1to2/2 2/2to3/2 3/2to3/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1905" depart="1905.00"> + <routeDistribution last="0"> + <route cost="20.55" probability="1.00000000" edges="2/4to2/3 2/3to2/2 2/2to2/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1906" depart="1906.00"> + <routeDistribution last="0"> + <route cost="46.26" probability="1.00000000" edges="0/2to0/1 0/1to0/2 0/2to1/2 1/2to1/3 1/3to2/3 2/3to2/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car1907" depart="1907.00"> + <routeDistribution last="0"> + <route cost="51.25" probability="1.00000000" edges="3/4to4/4 4/4to4/3 4/3to4/2 4/2to3/2 3/2to3/1 3/1to2/1 2/1to2/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car1908" depart="1908.00"> + <routeDistribution last="0"> + <route cost="61.89" probability="1.00000000" edges="4/4to4/3 4/3to3/3 3/3to3/2 3/2to2/2 2/2to2/1 2/1to1/1 1/1to0/1 0/1to0/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car1909" depart="1909.00"> + <routeDistribution last="0"> + <route cost="45.83" probability="1.00000000" edges="0/1to1/1 1/1to1/2 1/2to2/2 2/2to2/3 2/3to3/3 3/3to4/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1910" depart="1910.00"> + <routeDistribution last="0"> + <route cost="20.83" probability="1.00000000" edges="0/1to0/2 0/2to0/3 0/3to0/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car1911" depart="1911.00"> + <routeDistribution last="0"> + <route cost="44.04" probability="1.00000000" edges="3/4to2/4 2/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to3/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car1912" depart="1912.00"> + <routeDistribution last="0"> + <route cost="59.21" probability="1.00000000" edges="4/1to3/1 3/1to3/2 3/2to3/3 3/3to3/4 3/4to2/4 2/4to1/4 1/4to0/4 0/4to0/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1913" depart="1913.00"> + <routeDistribution last="0"> + <route cost="51.35" probability="1.00000000" edges="2/4to1/4 1/4to2/4 2/4to3/4 3/4to4/4 4/4to4/3 4/3to4/2 4/2to4/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1914" depart="1914.00"> + <routeDistribution last="0"> + <route cost="47.88" probability="1.00000000" edges="0/1to0/0 0/0to0/1 0/1to0/2 0/2to0/3 0/3to0/4 0/4to0/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1915" depart="1915.00"> + <routeDistribution last="0"> + <route cost="47.36" probability="1.00000000" edges="4/2to4/1 4/1to3/1 3/1to2/1 2/1to1/1 1/1to0/1 0/1to0/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car1916" depart="1916.00"> + <routeDistribution last="0"> + <route cost="38.66" probability="1.00000000" edges="3/2to2/2 2/2to1/2 1/2to0/2 0/2to0/3 0/3to1/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1917" depart="1917.00"> + <routeDistribution last="0"> + <route cost="20.27" probability="1.00000000" edges="1/0to0/0 0/0to0/1 0/1to0/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car1918" depart="1918.00"> + <routeDistribution last="0"> + <route cost="40.24" probability="1.00000000" edges="1/3to0/3 0/3to1/3 1/3to2/3 2/3to3/3 3/3to4/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1919" depart="1919.00"> + <routeDistribution last="0"> + <route cost="38.64" probability="1.00000000" edges="2/1to2/2 2/2to2/1 2/1to2/0 2/0to1/0 1/0to0/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car1920" depart="1920.00"> + <routeDistribution last="0"> + <route cost="33.34" probability="1.00000000" edges="0/3to0/2 0/2to1/2 1/2to2/2 2/2to2/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1921" depart="1921.00"> + <routeDistribution last="0"> + <route cost="53.81" probability="1.00000000" edges="3/3to4/3 4/3to3/3 3/3to3/2 3/2to2/2 2/2to2/1 2/1to1/1 1/1to1/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car1922" depart="1922.00"> + <routeDistribution last="0"> + <route cost="37.53" probability="1.00000000" edges="3/4to2/4 2/4to2/3 2/3to2/2 2/2to2/1 2/1to1/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1923" depart="1923.00"> + <routeDistribution last="0"> + <route cost="40.91" probability="1.00000000" edges="3/1to3/2 3/2to3/3 3/3to2/3 2/3to1/3 1/3to1/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car1924" depart="1924.00"> + <routeDistribution last="0"> + <route cost="20.83" probability="1.00000000" edges="4/4to3/4 3/4to2/4 2/4to1/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car1925" depart="1925.00"> + <routeDistribution last="0"> + <route cost="37.82" probability="1.00000000" edges="0/3to1/3 1/3to1/4 1/4to2/4 2/4to3/4 3/4to4/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car1926" depart="1926.00"> + <routeDistribution last="0"> + <route cost="23.15" probability="1.00000000" edges="2/0to3/0 3/0to3/1 3/1to4/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1927" depart="1927.00"> + <routeDistribution last="0"> + <route cost="35.74" probability="1.00000000" edges="2/3to2/4 2/4to2/3 2/3to2/2 2/2to2/1 2/1to2/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car1928" depart="1928.00"> + <routeDistribution last="0"> + <route cost="63.64" probability="1.00000000" edges="4/2to4/3 4/3to4/2 4/2to3/2 3/2to3/1 3/1to2/1 2/1to1/1 1/1to0/1 0/1to0/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car1929" depart="1929.00"> + <routeDistribution last="0"> + <route cost="54.66" probability="1.00000000" edges="0/2to1/2 1/2to2/2 2/2to3/2 3/2to4/2 4/2to4/1 4/1to4/0 4/0to3/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car1930" depart="1930.00"> + <routeDistribution last="0"> + <route cost="38.62" probability="1.00000000" edges="0/0to1/0 1/0to1/1 1/1to1/2 1/2to2/2 2/2to1/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car1931" depart="1931.00"> + <routeDistribution last="0"> + <route cost="38.66" probability="1.00000000" edges="0/2to1/2 1/2to2/2 2/2to3/2 3/2to3/1 3/1to2/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1932" depart="1932.00"> + <routeDistribution last="0"> + <route cost="29.66" probability="1.00000000" edges="3/4to2/4 2/4to3/4 3/4to3/3 3/3to3/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car1933" depart="1933.00"> + <routeDistribution last="0"> + <route cost="40.24" probability="1.00000000" edges="3/1to4/1 4/1to3/1 3/1to2/1 2/1to1/1 1/1to0/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1934" depart="1934.00"> + <routeDistribution last="0"> + <route cost="44.23" probability="1.00000000" edges="3/0to4/0 4/0to3/0 3/0to2/0 2/0to2/1 2/1to2/2 2/2to3/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car1935" depart="1935.00"> + <routeDistribution last="0"> + <route cost="43.64" probability="1.00000000" edges="2/0to2/1 2/1to3/1 3/1to3/2 3/2to3/3 3/3to4/3 4/3to3/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1936" depart="1936.00"> + <routeDistribution last="0"> + <route cost="59.06" probability="1.00000000" edges="2/4to3/4 3/4to3/3 3/3to2/3 2/3to2/2 2/2to1/2 1/2to1/1 1/1to0/1 0/1to0/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car1937" depart="1937.00"> + <routeDistribution last="0"> + <route cost="34.27" probability="1.00000000" edges="4/3to4/2 4/2to4/1 4/1to4/0 4/0to3/0 3/0to3/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1938" depart="1938.00"> + <routeDistribution last="0"> + <route cost="21.93" probability="1.00000000" edges="0/0to0/1 0/1to1/1 1/1to1/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car1939" depart="1939.00"> + <routeDistribution last="0"> + <route cost="31.00" probability="1.00000000" edges="0/2to1/2 1/2to1/3 1/3to1/4 1/4to0/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car1940" depart="1940.00"> + <routeDistribution last="0"> + <route cost="51.95" probability="1.00000000" edges="1/1to1/0 1/0to1/1 1/1to1/2 1/2to2/2 2/2to2/3 2/3to3/3 3/3to3/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car1941" depart="1941.00"> + <routeDistribution last="0"> + <route cost="30.35" probability="1.00000000" edges="3/1to2/1 2/1to1/1 1/1to1/2 1/2to1/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1942" depart="1942.00"> + <routeDistribution last="0"> + <route cost="44.73" probability="1.00000000" edges="1/0to2/0 2/0to3/0 3/0to3/1 3/1to3/2 3/2to3/3 3/3to4/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1943" depart="1943.00"> + <routeDistribution last="0"> + <route cost="29.13" probability="1.00000000" edges="3/1to3/2 3/2to4/2 4/2to4/3 4/3to4/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car1944" depart="1944.00"> + <routeDistribution last="0"> + <route cost="42.97" probability="1.00000000" edges="3/1to3/0 3/0to2/0 2/0to1/0 1/0to0/0 0/0to0/1 0/1to0/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car1945" depart="1945.00"> + <routeDistribution last="0"> + <route cost="51.81" probability="1.00000000" edges="3/0to4/0 4/0to3/0 3/0to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1946" depart="1946.00"> + <routeDistribution last="0"> + <route cost="28.85" probability="1.00000000" edges="2/1to1/1 1/1to1/2 1/2to1/3 1/3to1/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car1947" depart="1947.00"> + <routeDistribution last="0"> + <route cost="39.05" probability="1.00000000" edges="0/1to0/2 0/2to1/2 1/2to2/2 2/2to3/2 3/2to4/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car1948" depart="1948.00"> + <routeDistribution last="0"> + <route cost="41.47" probability="1.00000000" edges="4/2to4/1 4/1to4/0 4/0to3/0 3/0to2/0 2/0to1/0 1/0to1/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1949" depart="1949.00"> + <routeDistribution last="0"> + <route cost="36.45" probability="1.00000000" edges="3/3to3/4 3/4to3/3 3/3to2/3 2/3to2/2 2/2to1/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car1950" depart="1950.00"> + <routeDistribution last="0"> + <route cost="65.46" probability="1.00000000" edges="0/3to0/4 0/4to1/4 1/4to2/4 2/4to3/4 3/4to4/4 4/4to4/3 4/3to4/2 4/2to4/1 4/1to4/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car1951" depart="1951.00"> + <routeDistribution last="0"> + <route cost="44.41" probability="1.00000000" edges="1/3to1/4 1/4to1/3 1/3to1/2 1/2to1/1 1/1to1/0 1/0to2/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car1952" depart="1952.00"> + <routeDistribution last="0"> + <route cost="40.53" probability="1.00000000" edges="3/1to3/2 3/2to3/3 3/3to2/3 2/3to1/3 1/3to1/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car1953" depart="1953.00"> + <routeDistribution last="0"> + <route cost="37.96" probability="1.00000000" edges="3/3to3/4 3/4to3/3 3/3to2/3 2/3to1/3 1/3to1/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car1954" depart="1954.00"> + <routeDistribution last="0"> + <route cost="32.24" probability="1.00000000" edges="0/2to1/2 1/2to2/2 2/2to3/2 3/2to4/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car1955" depart="1955.00"> + <routeDistribution last="0"> + <route cost="54.22" probability="1.00000000" edges="4/1to3/1 3/1to3/2 3/2to3/3 3/3to3/4 3/4to2/4 2/4to1/4 1/4to2/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car1956" depart="1956.00"> + <routeDistribution last="0"> + <route cost="29.65" probability="1.00000000" edges="1/1to1/0 1/0to1/1 1/1to2/1 2/1to3/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1957" depart="1957.00"> + <routeDistribution last="0"> + <route cost="49.34" probability="1.00000000" edges="2/2to1/2 1/2to2/2 2/2to3/2 3/2to4/2 4/2to4/1 4/1to4/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car1958" depart="1958.00"> + <routeDistribution last="0"> + <route cost="58.58" probability="1.00000000" edges="0/4to0/3 0/3to0/2 0/2to1/2 1/2to2/2 2/2to3/2 3/2to4/2 4/2to4/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1959" depart="1959.00"> + <routeDistribution last="0"> + <route cost="38.72" probability="1.00000000" edges="2/1to2/2 2/2to2/3 2/3to2/4 2/4to1/4 1/4to2/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car1960" depart="1960.00"> + <routeDistribution last="0"> + <route cost="39.05" probability="1.00000000" edges="0/3to1/3 1/3to2/3 2/3to3/3 3/3to3/2 3/2to3/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1961" depart="1961.00"> + <routeDistribution last="0"> + <route cost="43.32" probability="1.00000000" edges="3/0to3/1 3/1to4/1 4/1to4/2 4/2to4/3 4/3to4/4 4/4to3/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car1962" depart="1962.00"> + <routeDistribution last="0"> + <route cost="28.47" probability="1.00000000" edges="1/1to0/1 0/1to0/2 0/2to0/3 0/3to1/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1963" depart="1963.00"> + <routeDistribution last="0"> + <route cost="48.23" probability="1.00000000" edges="3/1to4/1 4/1to3/1 3/1to2/1 2/1to1/1 1/1to0/1 0/1to1/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1964" depart="1964.00"> + <routeDistribution last="0"> + <route cost="59.21" probability="1.00000000" edges="0/3to1/3 1/3to1/2 1/2to1/1 1/1to1/0 1/0to2/0 2/0to3/0 3/0to4/0 4/0to4/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1965" depart="1965.00"> + <routeDistribution last="0"> + <route cost="38.64" probability="1.00000000" edges="2/1to2/2 2/2to2/1 2/1to2/0 2/0to1/0 1/0to0/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car1966" depart="1966.00"> + <routeDistribution last="0"> + <route cost="46.53" probability="1.00000000" edges="1/3to2/3 2/3to3/3 3/3to4/3 4/3to4/2 4/2to4/1 4/1to4/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car1967" depart="1967.00"> + <routeDistribution last="0"> + <route cost="23.15" probability="1.00000000" edges="2/4to3/4 3/4to3/3 3/3to4/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1968" depart="1968.00"> + <routeDistribution last="0"> + <route cost="59.01" probability="1.00000000" edges="3/0to4/0 4/0to4/1 4/1to4/2 4/2to4/3 4/3to4/4 4/4to3/4 3/4to2/4 2/4to3/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car1969" depart="1969.00"> + <routeDistribution last="0"> + <route cost="66.97" probability="1.00000000" edges="1/0to0/0 0/0to1/0 1/0to2/0 2/0to3/0 3/0to4/0 4/0to4/1 4/1to4/2 4/2to4/3 4/3to4/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car1970" depart="1970.00"> + <routeDistribution last="0"> + <route cost="58.21" probability="1.00000000" edges="4/0to4/1 4/1to4/2 4/2to3/2 3/2to2/2 2/2to1/2 1/2to0/2 0/2to0/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1971" depart="1971.00"> + <routeDistribution last="0"> + <route cost="41.19" probability="1.00000000" edges="4/0to4/1 4/1to4/2 4/2to3/2 3/2to2/2 2/2to2/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1972" depart="1972.00"> + <routeDistribution last="0"> + <route cost="38.25" probability="1.00000000" edges="4/4to4/3 4/3to3/3 3/3to2/3 2/3to2/4 2/4to2/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1973" depart="1973.00"> + <routeDistribution last="0"> + <route cost="52.37" probability="1.00000000" edges="3/4to4/4 4/4to4/3 4/3to3/3 3/3to3/2 3/2to2/2 2/2to1/2 1/2to1/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1974" depart="1974.00"> + <routeDistribution last="0"> + <route cost="36.85" probability="1.00000000" edges="1/1to2/1 2/1to1/1 1/1to1/2 1/2to1/3 1/3to1/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car1975" depart="1975.00"> + <routeDistribution last="0"> + <route cost="60.84" probability="1.00000000" edges="2/4to1/4 1/4to2/4 2/4to3/4 3/4to4/4 4/4to4/3 4/3to4/2 4/2to4/1 4/1to4/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car1976" depart="1976.00"> + <routeDistribution last="0"> + <route cost="37.24" probability="1.00000000" edges="2/4to2/3 2/3to1/3 1/3to1/4 1/4to0/4 0/4to0/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1977" depart="1977.00"> + <routeDistribution last="0"> + <route cost="58.47" probability="1.00000000" edges="2/3to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to2/0 2/0to1/0 1/0to0/0 0/0to0/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1978" depart="1978.00"> + <routeDistribution last="0"> + <route cost="59.20" probability="1.00000000" edges="4/4to3/4 3/4to2/4 2/4to1/4 1/4to0/4 0/4to0/3 0/3to0/2 0/2to0/1 0/1to0/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car1979" depart="1979.00"> + <routeDistribution last="0"> + <route cost="52.82" probability="1.00000000" edges="0/1to0/0 0/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to2/3 2/3to1/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1980" depart="1980.00"> + <routeDistribution last="0"> + <route cost="38.33" probability="1.00000000" edges="2/2to1/2 1/2to2/2 2/2to2/3 2/3to3/3 3/3to4/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1981" depart="1981.00"> + <routeDistribution last="0"> + <route cost="35.66" probability="1.00000000" edges="3/4to3/3 3/3to3/2 3/2to3/1 3/1to2/1 2/1to2/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car1982" depart="1982.00"> + <routeDistribution last="0"> + <route cost="29.23" probability="1.00000000" edges="1/1to2/1 2/1to2/2 2/2to2/3 2/3to2/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car1983" depart="1983.00"> + <routeDistribution last="0"> + <route cost="46.11" probability="1.00000000" edges="0/0to0/1 0/1to1/1 1/1to1/2 1/2to2/2 2/2to3/2 3/2to3/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1984" depart="1984.00"> + <routeDistribution last="0"> + <route cost="40.24" probability="1.00000000" edges="4/3to3/3 3/3to2/3 2/3to1/3 1/3to0/3 0/3to1/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1985" depart="1985.00"> + <routeDistribution last="0"> + <route cost="37.82" probability="1.00000000" edges="1/2to2/2 2/2to2/1 2/1to2/0 2/0to3/0 3/0to4/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car1986" depart="1986.00"> + <routeDistribution last="0"> + <route cost="31.74" probability="1.00000000" edges="4/0to4/1 4/1to3/1 3/1to3/2 3/2to4/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car1987" depart="1987.00"> + <routeDistribution last="0"> + <route cost="31.01" probability="1.00000000" edges="0/0to1/0 1/0to2/0 2/0to2/1 2/1to2/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car1988" depart="1988.00"> + <routeDistribution last="0"> + <route cost="31.45" probability="1.00000000" edges="3/3to3/2 3/2to4/2 4/2to4/1 4/1to3/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1989" depart="1989.00"> + <routeDistribution last="0"> + <route cost="35.65" probability="1.00000000" edges="2/0to2/1 2/1to3/1 3/1to3/2 3/2to3/3 3/3to4/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car1990" depart="1990.00"> + <routeDistribution last="0"> + <route cost="39.42" probability="1.00000000" edges="1/4to1/3 1/3to1/2 1/2to1/1 1/1to2/1 2/1to3/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1991" depart="1991.00"> + <routeDistribution last="0"> + <route cost="51.10" probability="1.00000000" edges="0/2to0/1 0/1to1/1 1/1to2/1 2/1to3/1 3/1to4/1 4/1to4/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car1992" depart="1992.00"> + <routeDistribution last="0"> + <route cost="44.00" probability="1.00000000" edges="1/3to1/4 1/4to0/4 0/4to0/3 0/3to0/2 0/2to0/1 0/1to0/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car1993" depart="1993.00"> + <routeDistribution last="0"> + <route cost="23.53" probability="1.00000000" edges="4/3to3/3 3/3to2/3 2/3to2/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car1994" depart="1994.00"> + <routeDistribution last="0"> + <route cost="62.03" probability="1.00000000" edges="0/2to0/3 0/3to1/3 1/3to2/3 2/3to3/3 3/3to4/3 4/3to4/2 4/2to4/1 4/1to4/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car1995" depart="1995.00"> + <routeDistribution last="0"> + <route cost="54.64" probability="1.00000000" edges="3/2to3/3 3/3to3/2 3/2to2/2 2/2to2/1 2/1to1/1 1/1to0/1 0/1to1/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car1996" depart="1996.00"> + <routeDistribution last="0"> + <route cost="29.23" probability="1.00000000" edges="4/3to3/3 3/3to3/2 3/2to3/1 3/1to3/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car1997" depart="1997.00"> + <routeDistribution last="0"> + <route cost="58.29" probability="1.00000000" edges="4/1to4/2 4/2to4/3 4/3to3/3 3/3to2/3 2/3to1/3 1/3to0/3 0/3to0/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car1998" depart="1998.00"> + <routeDistribution last="0"> + <route cost="53.11" probability="1.00000000" edges="1/4to1/3 1/3to1/2 1/2to1/1 1/1to1/0 1/0to2/0 2/0to3/0 3/0to2/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car1999" depart="1999.00"> + <routeDistribution last="0"> + <route cost="35.74" probability="1.00000000" edges="1/4to1/3 1/3to1/2 1/2to1/1 1/1to1/0 1/0to1/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2000" depart="2000.00"> + <routeDistribution last="0"> + <route cost="43.71" probability="1.00000000" edges="2/3to2/4 2/4to1/4 1/4to0/4 0/4to0/3 0/3to0/2 0/2to0/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2001" depart="2001.00"> + <routeDistribution last="0"> + <route cost="30.34" probability="1.00000000" edges="3/2to2/2 2/2to1/2 1/2to1/1 1/1to0/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2002" depart="2002.00"> + <routeDistribution last="0"> + <route cost="53.01" probability="1.00000000" edges="4/4to3/4 3/4to2/4 2/4to2/3 2/3to2/2 2/2to2/1 2/1to1/1 1/1to2/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2003" depart="2003.00"> + <routeDistribution last="0"> + <route cost="30.34" probability="1.00000000" edges="4/3to3/3 3/3to3/4 3/4to2/4 2/4to1/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car2004" depart="2004.00"> + <routeDistribution last="0"> + <route cost="45.84" probability="1.00000000" edges="4/3to4/2 4/2to3/2 3/2to3/1 3/1to2/1 2/1to1/1 1/1to0/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2005" depart="2005.00"> + <routeDistribution last="0"> + <route cost="46.64" probability="1.00000000" edges="3/2to4/2 4/2to3/2 3/2to3/1 3/1to2/1 2/1to1/1 1/1to1/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car2006" depart="2006.00"> + <routeDistribution last="0"> + <route cost="37.42" probability="1.00000000" edges="1/4to0/4 0/4to1/4 1/4to1/3 1/3to1/2 1/2to1/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2007" depart="2007.00"> + <routeDistribution last="0"> + <route cost="33.34" probability="1.00000000" edges="3/1to3/2 3/2to2/2 2/2to1/2 1/2to1/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2008" depart="2008.00"> + <routeDistribution last="0"> + <route cost="37.95" probability="1.00000000" edges="0/2to0/1 0/1to0/2 0/2to1/2 1/2to1/3 1/3to2/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2009" depart="2009.00"> + <routeDistribution last="0"> + <route cost="48.28" probability="1.00000000" edges="0/3to0/4 0/4to1/4 1/4to2/4 2/4to3/4 3/4to3/3 3/3to3/2 3/2to2/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car2010" depart="2010.00"> + <routeDistribution last="0"> + <route cost="32.23" probability="1.00000000" edges="3/1to3/2 3/2to3/3 3/3to2/3 2/3to1/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2011" depart="2011.00"> + <routeDistribution last="0"> + <route cost="38.66" probability="1.00000000" edges="1/2to2/2 2/2to3/2 3/2to3/1 3/1to3/0 3/0to2/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car2012" depart="2012.00"> + <routeDistribution last="0"> + <route cost="51.10" probability="1.00000000" edges="0/2to0/1 0/1to1/1 1/1to2/1 2/1to3/1 3/1to4/1 4/1to4/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car2013" depart="2013.00"> + <routeDistribution last="0"> + <route cost="33.34" probability="1.00000000" edges="2/1to2/2 2/2to1/2 1/2to0/2 0/2to0/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2014" depart="2014.00"> + <routeDistribution last="0"> + <route cost="41.72" probability="1.00000000" edges="4/1to4/2 4/2to3/2 3/2to2/2 2/2to1/2 1/2to2/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car2015" depart="2015.00"> + <routeDistribution last="0"> + <route cost="56.85" probability="1.00000000" edges="4/3to4/2 4/2to3/2 3/2to2/2 2/2to1/2 1/2to0/2 0/2to0/3 0/3to0/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car2016" depart="2016.00"> + <routeDistribution last="0"> + <route cost="47.34" probability="1.00000000" edges="1/2to1/3 1/3to2/3 2/3to3/3 3/3to3/2 3/2to3/1 3/1to4/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2017" depart="2017.00"> + <routeDistribution last="0"> + <route cost="39.31" probability="1.00000000" edges="1/2to2/2 2/2to3/2 3/2to3/3 3/3to4/3 4/3to4/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car2018" depart="2018.00"> + <routeDistribution last="0"> + <route cost="28.85" probability="1.00000000" edges="1/3to2/3 2/3to2/2 2/2to2/1 2/1to2/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car2019" depart="2019.00"> + <routeDistribution last="0"> + <route cost="51.43" probability="1.00000000" edges="3/0to4/0 4/0to3/0 3/0to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to2/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car2020" depart="2020.00"> + <routeDistribution last="0"> + <route cost="50.41" probability="1.00000000" edges="0/2to0/1 0/1to1/1 1/1to2/1 2/1to3/1 3/1to4/1 4/1to3/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2021" depart="2021.00"> + <routeDistribution last="0"> + <route cost="45.14" probability="1.00000000" edges="1/1to1/2 1/2to2/2 2/2to2/3 2/3to3/3 3/3to4/3 4/3to3/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2022" depart="2022.00"> + <routeDistribution last="0"> + <route cost="45.02" probability="1.00000000" edges="1/3to2/3 2/3to2/2 2/2to2/1 2/1to2/0 2/0to3/0 3/0to4/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car2023" depart="2023.00"> + <routeDistribution last="0"> + <route cost="45.84" probability="1.00000000" edges="2/1to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to0/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2024" depart="2024.00"> + <routeDistribution last="0"> + <route cost="32.24" probability="1.00000000" edges="0/3to1/3 1/3to2/3 2/3to3/3 3/3to4/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2025" depart="2025.00"> + <routeDistribution last="0"> + <route cost="35.07" probability="1.00000000" edges="1/0to0/0 0/0to0/1 0/1to0/2 0/2to1/2 1/2to0/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car2026" depart="2026.00"> + <routeDistribution last="0"> + <route cost="47.30" probability="1.00000000" edges="2/2to1/2 1/2to2/2 2/2to2/3 2/3to3/3 3/3to4/3 4/3to4/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car2027" depart="2027.00"> + <routeDistribution last="0"> + <route cost="45.46" probability="1.00000000" edges="3/3to3/2 3/2to2/2 2/2to2/1 2/1to1/1 1/1to0/1 0/1to0/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car2028" depart="2028.00"> + <routeDistribution last="0"> + <route cost="54.11" probability="1.00000000" edges="1/4to0/4 0/4to1/4 1/4to2/4 2/4to2/3 2/3to2/2 2/2to2/1 2/1to2/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car2029" depart="2029.00"> + <routeDistribution last="0"> + <route cost="61.07" probability="1.00000000" edges="1/0to0/0 0/0to0/1 0/1to1/1 1/1to1/2 1/2to2/2 2/2to3/2 3/2to4/2 4/2to4/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2030" depart="2030.00"> + <routeDistribution last="0"> + <route cost="23.16" probability="1.00000000" edges="3/2to2/2 2/2to1/2 1/2to1/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2031" depart="2031.00"> + <routeDistribution last="0"> + <route cost="44.73" probability="1.00000000" edges="4/3to4/4 4/4to4/3 4/3to4/2 4/2to4/1 4/1to4/0 4/0to3/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car2032" depart="2032.00"> + <routeDistribution last="0"> + <route cost="37.82" probability="1.00000000" edges="0/4to1/4 1/4to1/3 1/3to1/2 1/2to1/1 1/1to2/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2033" depart="2033.00"> + <routeDistribution last="0"> + <route cost="36.03" probability="1.00000000" edges="1/0to1/1 1/1to2/1 2/1to2/2 2/2to2/3 2/3to2/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car2034" depart="2034.00"> + <routeDistribution last="0"> + <route cost="36.34" probability="1.00000000" edges="2/3to2/2 2/2to2/1 2/1to2/0 2/0to1/0 1/0to0/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car2035" depart="2035.00"> + <routeDistribution last="0"> + <route cost="55.74" probability="1.00000000" edges="1/3to0/3 0/3to1/3 1/3to2/3 2/3to3/3 3/3to4/3 4/3to4/2 4/2to4/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2036" depart="2036.00"> + <routeDistribution last="0"> + <route cost="48.39" probability="1.00000000" edges="0/4to0/3 0/3to0/2 0/2to0/1 0/1to1/1 1/1to2/1 2/1to2/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car2037" depart="2037.00"> + <routeDistribution last="0"> + <route cost="35.77" probability="1.00000000" edges="1/3to1/2 1/2to1/1 1/1to1/0 1/0to0/0 0/0to0/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2038" depart="2038.00"> + <routeDistribution last="0"> + <route cost="29.32" probability="1.00000000" edges="3/2to4/2 4/2to4/3 4/3to4/4 4/4to3/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car2039" depart="2039.00"> + <routeDistribution last="0"> + <route cost="45.20" probability="1.00000000" edges="2/3to3/3 3/3to3/4 3/4to2/4 2/4to1/4 1/4to0/4 0/4to0/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2040" depart="2040.00"> + <routeDistribution last="0"> + <route cost="29.65" probability="1.00000000" edges="2/1to2/0 2/0to2/1 2/1to3/1 3/1to4/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2041" depart="2041.00"> + <routeDistribution last="0"> + <route cost="34.00" probability="1.00000000" edges="0/4to0/3 0/3to1/3 1/3to2/3 2/3to2/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car2042" depart="2042.00"> + <routeDistribution last="0"> + <route cost="53.54" probability="1.00000000" edges="1/3to0/3 0/3to1/3 1/3to2/3 2/3to2/2 2/2to2/1 2/1to2/0 2/0to2/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2043" depart="2043.00"> + <routeDistribution last="0"> + <route cost="29.94" probability="1.00000000" edges="4/0to3/0 3/0to2/0 2/0to2/1 2/1to2/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car2044" depart="2044.00"> + <routeDistribution last="0"> + <route cost="56.71" probability="1.00000000" edges="3/0to4/0 4/0to4/1 4/1to4/2 4/2to4/3 4/3to4/4 4/4to3/4 3/4to2/4 2/4to1/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car2045" depart="2045.00"> + <routeDistribution last="0"> + <route cost="50.91" probability="1.00000000" edges="1/1to1/0 1/0to2/0 2/0to3/0 3/0to4/0 4/0to4/1 4/1to4/2 4/2to4/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2046" depart="2046.00"> + <routeDistribution last="0"> + <route cost="45.63" probability="1.00000000" edges="1/2to1/3 1/3to1/2 1/2to1/1 1/1to0/1 0/1to0/0 0/0to1/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car2047" depart="2047.00"> + <routeDistribution last="0"> + <route cost="20.55" probability="1.00000000" edges="2/3to2/2 2/2to2/1 2/1to2/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car2048" depart="2048.00"> + <routeDistribution last="0"> + <route cost="50.16" probability="1.00000000" edges="3/1to3/0 3/0to2/0 2/0to1/0 1/0to0/0 0/0to0/1 0/1to0/2 0/2to0/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2049" depart="2049.00"> + <routeDistribution last="0"> + <route cost="47.01" probability="1.00000000" edges="2/2to2/3 2/3to2/2 2/2to2/1 2/1to1/1 1/1to1/0 1/0to2/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car2050" depart="2050.00"> + <routeDistribution last="0"> + <route cost="38.35" probability="1.00000000" edges="1/3to1/2 1/2to1/3 1/3to1/4 1/4to2/4 2/4to3/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car2051" depart="2051.00"> + <routeDistribution last="0"> + <route cost="59.89" probability="1.00000000" edges="4/0to4/1 4/1to4/2 4/2to4/3 4/3to4/4 4/4to3/4 3/4to2/4 2/4to1/4 1/4to1/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2052" depart="2052.00"> + <routeDistribution last="0"> + <route cost="47.88" probability="1.00000000" edges="1/4to0/4 0/4to1/4 1/4to2/4 2/4to3/4 3/4to4/4 4/4to3/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car2053" depart="2053.00"> + <routeDistribution last="0"> + <route cost="47.36" probability="1.00000000" edges="4/1to3/1 3/1to2/1 2/1to1/1 1/1to0/1 0/1to0/2 0/2to1/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car2054" depart="2054.00"> + <routeDistribution last="0"> + <route cost="38.33" probability="1.00000000" edges="3/2to3/3 3/3to3/2 3/2to3/1 3/1to2/1 2/1to2/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car2055" depart="2055.00"> + <routeDistribution last="0"> + <route cost="30.24" probability="1.00000000" edges="4/4to4/3 4/3to3/3 3/3to3/4 3/4to2/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car2056" depart="2056.00"> + <routeDistribution last="0"> + <route cost="39.00" probability="1.00000000" edges="1/2to2/2 2/2to2/3 2/3to3/3 3/3to3/4 3/4to2/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car2057" depart="2057.00"> + <routeDistribution last="0"> + <route cost="61.08" probability="1.00000000" edges="4/3to4/4 4/4to3/4 3/4to2/4 2/4to2/3 2/3to2/2 2/2to2/1 2/1to2/0 2/0to3/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car2058" depart="2058.00"> + <routeDistribution last="0"> + <route cost="56.71" probability="1.00000000" edges="4/1to4/2 4/2to4/3 4/3to4/4 4/4to3/4 3/4to2/4 2/4to1/4 1/4to0/4 0/4to0/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2059" depart="2059.00"> + <routeDistribution last="0"> + <route cost="37.33" probability="1.00000000" edges="2/4to1/4 1/4to0/4 0/4to0/3 0/3to0/2 0/2to0/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2060" depart="2060.00"> + <routeDistribution last="0"> + <route cost="31.54" probability="1.00000000" edges="1/1to0/1 0/1to1/1 1/1to2/1 2/1to3/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2061" depart="2061.00"> + <routeDistribution last="0"> + <route cost="44.44" probability="1.00000000" edges="4/1to3/1 3/1to3/2 3/2to3/3 3/3to4/3 4/3to4/4 4/4to3/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car2062" depart="2062.00"> + <routeDistribution last="0"> + <route cost="63.64" probability="1.00000000" edges="0/2to0/1 0/1to0/2 0/2to1/2 1/2to1/3 1/3to2/3 2/3to3/3 3/3to4/3 4/3to4/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car2063" depart="2063.00"> + <routeDistribution last="0"> + <route cost="38.33" probability="1.00000000" edges="3/3to2/3 2/3to1/3 1/3to1/2 1/2to0/2 0/2to1/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car2064" depart="2064.00"> + <routeDistribution last="0"> + <route cost="36.76" probability="1.00000000" edges="2/0to2/1 2/1to3/1 3/1to3/2 3/2to4/2 4/2to4/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2065" depart="2065.00"> + <routeDistribution last="0"> + <route cost="44.04" probability="1.00000000" edges="2/0to3/0 3/0to2/0 2/0to2/1 2/1to2/2 2/2to2/3 2/3to2/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car2066" depart="2066.00"> + <routeDistribution last="0"> + <route cost="36.85" probability="1.00000000" edges="0/3to1/3 1/3to1/2 1/2to1/1 1/1to1/0 1/0to1/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2067" depart="2067.00"> + <routeDistribution last="0"> + <route cost="49.34" probability="1.00000000" edges="0/1to0/2 0/2to0/3 0/3to0/4 0/4to1/4 1/4to2/4 2/4to3/4 3/4to4/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car2068" depart="2068.00"> + <routeDistribution last="0"> + <route cost="45.97" probability="1.00000000" edges="3/4to4/4 4/4to4/3 4/3to3/3 3/3to2/3 2/3to1/3 1/3to0/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2069" depart="2069.00"> + <routeDistribution last="0"> + <route cost="38.72" probability="1.00000000" edges="2/3to2/4 2/4to2/3 2/3to2/2 2/2to2/1 2/1to3/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2070" depart="2070.00"> + <routeDistribution last="0"> + <route cost="54.95" probability="1.00000000" edges="1/2to1/1 1/1to1/2 1/2to2/2 2/2to2/3 2/3to3/3 3/3to4/3 4/3to4/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car2071" depart="2071.00"> + <routeDistribution last="0"> + <route cost="50.56" probability="1.00000000" edges="3/4to4/4 4/4to4/3 4/3to4/2 4/2to3/2 3/2to3/1 3/1to2/1 2/1to3/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2072" depart="2072.00"> + <routeDistribution last="0"> + <route cost="54.81" probability="1.00000000" edges="4/4to4/3 4/3to3/3 3/3to3/2 3/2to2/2 2/2to1/2 1/2to0/2 0/2to0/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2073" depart="2073.00"> + <routeDistribution last="0"> + <route cost="43.71" probability="1.00000000" edges="3/2to4/2 4/2to4/3 4/3to4/4 4/4to3/4 3/4to2/4 2/4to1/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car2074" depart="2074.00"> + <routeDistribution last="0"> + <route cost="37.16" probability="1.00000000" edges="2/3to3/3 3/3to4/3 4/3to4/2 4/2to4/1 4/1to3/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2075" depart="2075.00"> + <routeDistribution last="0"> + <route cost="32.23" probability="1.00000000" edges="3/0to3/1 3/1to3/2 3/2to2/2 2/2to1/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car2076" depart="2076.00"> + <routeDistribution last="0"> + <route cost="63.22" probability="1.00000000" edges="3/1to4/1 4/1to3/1 3/1to2/1 2/1to1/1 1/1to0/1 0/1to0/2 0/2to0/3 0/3to0/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car2077" depart="2077.00"> + <routeDistribution last="0"> + <route cost="37.91" probability="1.00000000" edges="2/2to3/2 3/2to3/3 3/3to3/4 3/4to2/4 2/4to1/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car2078" depart="2078.00"> + <routeDistribution last="0"> + <route cost="28.32" probability="1.00000000" edges="4/0to3/0 3/0to2/0 2/0to1/0 1/0to0/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car2079" depart="2079.00"> + <routeDistribution last="0"> + <route cost="62.78" probability="1.00000000" edges="4/1to4/0 4/0to3/0 3/0to2/0 2/0to1/0 1/0to0/0 0/0to0/1 0/1to0/2 0/2to0/3 0/3to1/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2080" depart="2080.00"> + <routeDistribution last="0"> + <route cost="38.02" probability="1.00000000" edges="2/0to3/0 3/0to4/0 4/0to4/1 4/1to4/2 4/2to3/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car2081" depart="2081.00"> + <routeDistribution last="0"> + <route cost="39.52" probability="1.00000000" edges="1/4to0/4 0/4to0/3 0/3to0/2 0/2to1/2 1/2to2/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car2082" depart="2082.00"> + <routeDistribution last="0"> + <route cost="49.34" probability="1.00000000" edges="2/3to1/3 1/3to2/3 2/3to3/3 3/3to4/3 4/3to4/2 4/2to4/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2083" depart="2083.00"> + <routeDistribution last="0"> + <route cost="31.45" probability="1.00000000" edges="1/0to1/1 1/1to0/1 0/1to0/2 0/2to1/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car2084" depart="2084.00"> + <routeDistribution last="0"> + <route cost="37.45" probability="1.00000000" edges="4/1to3/1 3/1to3/2 3/2to3/3 3/3to3/4 3/4to4/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car2085" depart="2085.00"> + <routeDistribution last="0"> + <route cost="40.92" probability="1.00000000" edges="3/1to3/2 3/2to3/3 3/3to2/3 2/3to1/3 1/3to0/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2086" depart="2086.00"> + <routeDistribution last="0"> + <route cost="39.00" probability="1.00000000" edges="0/2to1/2 1/2to1/3 1/3to2/3 2/3to2/4 2/4to1/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car2087" depart="2087.00"> + <routeDistribution last="0"> + <route cost="59.91" probability="1.00000000" edges="3/4to3/3 3/3to2/3 2/3to2/2 2/2to1/2 1/2to1/1 1/1to0/1 0/1to0/0 0/0to1/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car2088" depart="2088.00"> + <routeDistribution last="0"> + <route cost="50.04" probability="1.00000000" edges="4/2to3/2 3/2to2/2 2/2to1/2 1/2to0/2 0/2to0/3 0/3to0/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car2089" depart="2089.00"> + <routeDistribution last="0"> + <route cost="34.84" probability="1.00000000" edges="0/4to1/4 1/4to1/3 1/3to1/2 1/2to1/1 1/1to1/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car2090" depart="2090.00"> + <routeDistribution last="0"> + <route cost="35.03" probability="1.00000000" edges="1/0to2/0 2/0to3/0 3/0to4/0 4/0to4/1 4/1to4/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car2091" depart="2091.00"> + <routeDistribution last="0"> + <route cost="50.34" probability="1.00000000" edges="3/0to2/0 2/0to2/1 2/1to2/2 2/2to2/3 2/3to2/4 2/4to3/4 3/4to4/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car2092" depart="2092.00"> + <routeDistribution last="0"> + <route cost="50.96" probability="1.00000000" edges="0/3to0/4 0/4to1/4 1/4to2/4 2/4to2/3 2/3to2/2 2/2to2/1 2/1to2/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car2093" depart="2093.00"> + <routeDistribution last="0"> + <route cost="41.47" probability="1.00000000" edges="0/2to0/3 0/3to0/4 0/4to1/4 1/4to2/4 2/4to3/4 3/4to3/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2094" depart="2094.00"> + <routeDistribution last="0"> + <route cost="40.15" probability="1.00000000" edges="4/2to4/1 4/1to3/1 3/1to2/1 2/1to2/2 2/2to1/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car2095" depart="2095.00"> + <routeDistribution last="0"> + <route cost="39.41" probability="1.00000000" edges="3/4to3/3 3/3to3/2 3/2to3/1 3/1to4/1 4/1to4/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car2096" depart="2096.00"> + <routeDistribution last="0"> + <route cost="24.65" probability="1.00000000" edges="2/4to2/3 2/3to3/3 3/3to3/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car2097" depart="2097.00"> + <routeDistribution last="0"> + <route cost="65.93" probability="1.00000000" edges="0/1to0/0 0/0to0/1 0/1to0/2 0/2to0/3 0/3to0/4 0/4to1/4 1/4to2/4 2/4to3/4 3/4to3/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2098" depart="2098.00"> + <routeDistribution last="0"> + <route cost="36.52" probability="1.00000000" edges="1/1to1/0 1/0to2/0 2/0to3/0 3/0to4/0 4/0to4/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2099" depart="2099.00"> + <routeDistribution last="0"> + <route cost="39.69" probability="1.00000000" edges="0/4to0/3 0/3to0/2 0/2to0/1 0/1to1/1 1/1to1/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car2100" depart="2100.00"> + <routeDistribution last="0"> + <route cost="56.04" probability="1.00000000" edges="0/2to0/3 0/3to1/3 1/3to2/3 2/3to2/2 2/2to2/1 2/1to3/1 3/1to4/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2101" depart="2101.00"> + <routeDistribution last="0"> + <route cost="53.21" probability="1.00000000" edges="3/3to3/4 3/4to2/4 2/4to1/4 1/4to0/4 0/4to0/3 0/3to0/2 0/2to0/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2102" depart="2102.00"> + <routeDistribution last="0"> + <route cost="37.14" probability="1.00000000" edges="0/1to1/1 1/1to0/1 0/1to0/2 0/2to0/3 0/3to0/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car2103" depart="2103.00"> + <routeDistribution last="0"> + <route cost="38.72" probability="1.00000000" edges="3/1to3/0 3/0to3/1 3/1to3/2 3/2to3/3 3/3to2/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2104" depart="2104.00"> + <routeDistribution last="0"> + <route cost="35.77" probability="1.00000000" edges="3/3to3/4 3/4to4/4 4/4to4/3 4/3to4/2 4/2to4/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2105" depart="2105.00"> + <routeDistribution last="0"> + <route cost="55.02" probability="1.00000000" edges="1/1to0/1 0/1to1/1 1/1to1/2 1/2to2/2 2/2to3/2 3/2to4/2 4/2to3/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car2106" depart="2106.00"> + <routeDistribution last="0"> + <route cost="36.71" probability="1.00000000" edges="1/0to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to0/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car2107" depart="2107.00"> + <routeDistribution last="0"> + <route cost="54.66" probability="1.00000000" edges="0/2to1/2 1/2to2/2 2/2to3/2 3/2to4/2 4/2to4/1 4/1to4/0 4/0to3/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car2108" depart="2108.00"> + <routeDistribution last="0"> + <route cost="28.84" probability="1.00000000" edges="1/1to2/1 2/1to2/2 2/2to2/3 2/3to3/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2109" depart="2109.00"> + <routeDistribution last="0"> + <route cost="39.00" probability="1.00000000" edges="0/2to1/2 1/2to1/3 1/3to2/3 2/3to2/4 2/4to1/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car2110" depart="2110.00"> + <routeDistribution last="0"> + <route cost="36.85" probability="1.00000000" edges="1/0to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2111" depart="2111.00"> + <routeDistribution last="0"> + <route cost="33.34" probability="1.00000000" edges="4/2to3/2 3/2to2/2 2/2to2/3 2/3to1/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2112" depart="2112.00"> + <routeDistribution last="0"> + <route cost="59.70" probability="1.00000000" edges="4/3to4/4 4/4to3/4 3/4to2/4 2/4to1/4 1/4to0/4 0/4to0/3 0/3to0/2 0/2to1/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car2113" depart="2113.00"> + <routeDistribution last="0"> + <route cost="36.83" probability="1.00000000" edges="1/1to1/0 1/0to1/1 1/1to1/2 1/2to2/2 2/2to2/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2114" depart="2114.00"> + <routeDistribution last="0"> + <route cost="38.35" probability="1.00000000" edges="3/2to2/2 2/2to1/2 1/2to1/3 1/3to1/4 1/4to1/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2115" depart="2115.00"> + <routeDistribution last="0"> + <route cost="27.74" probability="1.00000000" edges="2/4to2/3 2/3to2/2 2/2to2/1 2/1to2/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car2116" depart="2116.00"> + <routeDistribution last="0"> + <route cost="48.66" probability="1.00000000" edges="4/3to4/2 4/2to4/1 4/1to4/0 4/0to3/0 3/0to2/0 2/0to1/0 1/0to1/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2117" depart="2117.00"> + <routeDistribution last="0"> + <route cost="44.73" probability="1.00000000" edges="0/3to0/4 0/4to1/4 1/4to2/4 2/4to3/4 3/4to4/4 4/4to3/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car2118" depart="2118.00"> + <routeDistribution last="0"> + <route cost="31.54" probability="1.00000000" edges="0/3to1/3 1/3to2/3 2/3to3/3 3/3to2/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2119" depart="2119.00"> + <routeDistribution last="0"> + <route cost="21.66" probability="1.00000000" edges="3/2to2/2 2/2to2/3 2/3to2/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car2120" depart="2120.00"> + <routeDistribution last="0"> + <route cost="28.84" probability="1.00000000" edges="0/1to0/2 0/2to1/2 1/2to1/3 1/3to1/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car2121" depart="2121.00"> + <routeDistribution last="0"> + <route cost="37.16" probability="1.00000000" edges="2/4to3/4 3/4to3/3 3/3to2/3 2/3to1/3 1/3to0/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2122" depart="2122.00"> + <routeDistribution last="0"> + <route cost="45.40" probability="1.00000000" edges="4/4to3/4 3/4to2/4 2/4to2/3 2/3to2/2 2/2to2/1 2/1to2/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car2123" depart="2123.00"> + <routeDistribution last="0"> + <route cost="46.74" probability="1.00000000" edges="4/0to4/1 4/1to4/0 4/0to3/0 3/0to2/0 2/0to1/0 1/0to2/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car2124" depart="2124.00"> + <routeDistribution last="0"> + <route cost="52.30" probability="1.00000000" edges="0/2to0/1 0/1to0/0 0/0to1/0 1/0to2/0 2/0to3/0 3/0to4/0 4/0to3/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car2125" depart="2125.00"> + <routeDistribution last="0"> + <route cost="57.36" probability="1.00000000" edges="1/0to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to2/4 2/4to3/4 3/4to4/4 4/4to4/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2126" depart="2126.00"> + <routeDistribution last="0"> + <route cost="46.66" probability="1.00000000" edges="2/2to2/1 2/1to1/1 1/1to0/1 0/1to0/2 0/2to0/3 0/3to0/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car2127" depart="2127.00"> + <routeDistribution last="0"> + <route cost="35.74" probability="1.00000000" edges="2/0to2/1 2/1to2/2 2/2to2/3 2/3to2/4 2/4to2/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2128" depart="2128.00"> + <routeDistribution last="0"> + <route cost="51.10" probability="1.00000000" edges="0/3to0/2 0/2to1/2 1/2to2/2 2/2to3/2 3/2to4/2 4/2to4/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2129" depart="2129.00"> + <routeDistribution last="0"> + <route cost="49.71" probability="1.00000000" edges="4/4to3/4 3/4to2/4 2/4to1/4 1/4to0/4 0/4to0/3 0/3to0/2 0/2to0/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2130" depart="2130.00"> + <routeDistribution last="0"> + <route cost="38.62" probability="1.00000000" edges="4/4to3/4 3/4to2/4 2/4to2/3 2/3to1/3 1/3to2/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2131" depart="2131.00"> + <routeDistribution last="0"> + <route cost="38.07" probability="1.00000000" edges="2/4to2/3 2/3to2/4 2/4to3/4 3/4to4/4 4/4to4/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2132" depart="2132.00"> + <routeDistribution last="0"> + <route cost="70.08" probability="1.00000000" edges="0/3to0/4 0/4to1/4 1/4to2/4 2/4to3/4 3/4to4/4 4/4to4/3 4/3to4/2 4/2to4/1 4/1to4/0 4/0to3/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car2133" depart="2133.00"> + <routeDistribution last="0"> + <route cost="39.46" probability="1.00000000" edges="3/2to3/3 3/3to3/2 3/2to2/2 2/2to1/2 1/2to1/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2134" depart="2134.00"> + <routeDistribution last="0"> + <route cost="44.34" probability="1.00000000" edges="3/2to3/1 3/1to2/1 2/1to2/2 2/2to2/3 2/3to2/4 2/4to1/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car2135" depart="2135.00"> + <routeDistribution last="0"> + <route cost="46.64" probability="1.00000000" edges="1/2to1/1 1/1to1/2 1/2to2/2 2/2to2/3 2/3to3/3 3/3to4/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2136" depart="2136.00"> + <routeDistribution last="0"> + <route cost="37.16" probability="1.00000000" edges="2/2to1/2 1/2to1/3 1/3to1/4 1/4to2/4 2/4to3/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car2137" depart="2137.00"> + <routeDistribution last="0"> + <route cost="23.53" probability="1.00000000" edges="2/0to2/1 2/1to2/2 2/2to1/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car2138" depart="2138.00"> + <routeDistribution last="0"> + <route cost="29.97" probability="1.00000000" edges="1/2to1/3 1/3to2/3 2/3to3/3 3/3to3/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car2139" depart="2139.00"> + <routeDistribution last="0"> + <route cost="29.13" probability="1.00000000" edges="3/1to3/2 3/2to4/2 4/2to4/3 4/3to4/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car2140" depart="2140.00"> + <routeDistribution last="0"> + <route cost="44.04" probability="1.00000000" edges="1/4to2/4 2/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to3/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car2141" depart="2141.00"> + <routeDistribution last="0"> + <route cost="57.53" probability="1.00000000" edges="0/4to1/4 1/4to2/4 2/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to2/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car2142" depart="2142.00"> + <routeDistribution last="0"> + <route cost="53.82" probability="1.00000000" edges="3/3to4/3 4/3to3/3 3/3to3/2 3/2to2/2 2/2to2/1 2/1to1/1 1/1to0/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2143" depart="2143.00"> + <routeDistribution last="0"> + <route cost="48.39" probability="1.00000000" edges="4/0to4/1 4/1to4/2 4/2to4/3 4/3to3/3 3/3to2/3 2/3to2/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car2144" depart="2144.00"> + <routeDistribution last="0"> + <route cost="54.81" probability="1.00000000" edges="4/3to4/2 4/2to3/2 3/2to3/1 3/1to2/1 2/1to1/1 1/1to0/1 0/1to0/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car2145" depart="2145.00"> + <routeDistribution last="0"> + <route cost="46.64" probability="1.00000000" edges="2/1to1/1 1/1to2/1 2/1to2/2 2/2to3/2 3/2to4/2 4/2to4/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2146" depart="2146.00"> + <routeDistribution last="0"> + <route cost="28.45" probability="1.00000000" edges="1/4to2/4 2/4to2/3 2/3to1/3 1/3to1/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car2147" depart="2147.00"> + <routeDistribution last="0"> + <route cost="36.85" probability="1.00000000" edges="1/4to2/4 2/4to2/3 2/3to2/2 2/2to2/1 2/1to2/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car2148" depart="2148.00"> + <routeDistribution last="0"> + <route cost="52.41" probability="1.00000000" edges="0/1to0/0 0/0to1/0 1/0to2/0 2/0to2/1 2/1to2/2 2/2to2/3 2/3to2/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car2149" depart="2149.00"> + <routeDistribution last="0"> + <route cost="57.10" probability="1.00000000" edges="4/0to4/1 4/1to4/2 4/2to4/3 4/3to3/3 3/3to2/3 2/3to1/3 1/3to0/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2150" depart="2150.00"> + <routeDistribution last="0"> + <route cost="39.05" probability="1.00000000" edges="0/3to1/3 1/3to2/3 2/3to3/3 3/3to3/2 3/2to3/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2151" depart="2151.00"> + <routeDistribution last="0"> + <route cost="32.66" probability="1.00000000" edges="2/2to1/2 1/2to0/2 0/2to0/3 0/3to0/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car2152" depart="2152.00"> + <routeDistribution last="0"> + <route cost="31.45" probability="1.00000000" edges="3/1to3/2 3/2to2/2 2/2to2/3 2/3to3/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2153" depart="2153.00"> + <routeDistribution last="0"> + <route cost="52.39" probability="1.00000000" edges="2/2to1/2 1/2to1/1 1/1to1/0 1/0to2/0 2/0to3/0 3/0to4/0 4/0to4/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2154" depart="2154.00"> + <routeDistribution last="0"> + <route cost="38.35" probability="1.00000000" edges="2/2to2/3 2/3to2/2 2/2to2/1 2/1to2/0 2/0to1/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car2155" depart="2155.00"> + <routeDistribution last="0"> + <route cost="46.92" probability="1.00000000" edges="2/2to2/1 2/1to2/2 2/2to3/2 3/2to3/3 3/3to4/3 4/3to4/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car2156" depart="2156.00"> + <routeDistribution last="0"> + <route cost="50.71" probability="1.00000000" edges="3/0to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to0/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car2157" depart="2157.00"> + <routeDistribution last="0"> + <route cost="38.21" probability="1.00000000" edges="4/4to3/4 3/4to2/4 2/4to1/4 1/4to1/3 1/3to1/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car2158" depart="2158.00"> + <routeDistribution last="0"> + <route cost="55.99" probability="1.00000000" edges="3/2to4/2 4/2to3/2 3/2to3/1 3/1to2/1 2/1to1/1 1/1to0/1 0/1to0/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car2159" depart="2159.00"> + <routeDistribution last="0"> + <route cost="48.84" probability="1.00000000" edges="4/1to4/2 4/2to3/2 3/2to2/2 2/2to1/2 1/2to1/3 1/3to2/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2160" depart="2160.00"> + <routeDistribution last="0"> + <route cost="21.65" probability="1.00000000" edges="0/2to1/2 1/2to1/3 1/3to2/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2161" depart="2161.00"> + <routeDistribution last="0"> + <route cost="59.70" probability="1.00000000" edges="3/0to4/0 4/0to4/1 4/1to4/2 4/2to4/3 4/3to4/4 4/4to3/4 3/4to2/4 2/4to2/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2162" depart="2162.00"> + <routeDistribution last="0"> + <route cost="40.92" probability="1.00000000" edges="4/2to3/2 3/2to2/2 2/2to1/2 1/2to0/2 0/2to0/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2163" depart="2163.00"> + <routeDistribution last="0"> + <route cost="38.21" probability="1.00000000" edges="0/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to1/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car2164" depart="2164.00"> + <routeDistribution last="0"> + <route cost="33.73" probability="1.00000000" edges="1/2to1/1 1/1to2/1 2/1to3/1 3/1to4/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2165" depart="2165.00"> + <routeDistribution last="0"> + <route cost="42.86" probability="1.00000000" edges="1/4to2/4 2/4to2/3 2/3to2/2 2/2to2/1 2/1to2/0 2/0to1/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car2166" depart="2166.00"> + <routeDistribution last="0"> + <route cost="49.60" probability="1.00000000" edges="0/3to0/2 0/2to0/1 0/1to1/1 1/1to2/1 2/1to3/1 3/1to3/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car2167" depart="2167.00"> + <routeDistribution last="0"> + <route cost="49.74" probability="1.00000000" edges="3/0to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to1/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2168" depart="2168.00"> + <routeDistribution last="0"> + <route cost="34.84" probability="1.00000000" edges="4/0to3/0 3/0to3/1 3/1to3/2 3/2to3/3 3/3to3/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car2169" depart="2169.00"> + <routeDistribution last="0"> + <route cost="45.02" probability="1.00000000" edges="4/0to3/0 3/0to2/0 2/0to2/1 2/1to2/2 2/2to2/3 2/3to1/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2170" depart="2170.00"> + <routeDistribution last="0"> + <route cost="48.95" probability="1.00000000" edges="4/4to4/3 4/3to4/2 4/2to4/1 4/1to4/0 4/0to3/0 3/0to2/0 2/0to2/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2171" depart="2171.00"> + <routeDistribution last="0"> + <route cost="30.35" probability="1.00000000" edges="1/1to1/2 1/2to2/2 2/2to3/2 3/2to4/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car2172" depart="2172.00"> + <routeDistribution last="0"> + <route cost="54.66" probability="1.00000000" edges="0/2to1/2 1/2to2/2 2/2to3/2 3/2to4/2 4/2to4/1 4/1to4/0 4/0to3/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car2173" depart="2173.00"> + <routeDistribution last="0"> + <route cost="22.03" probability="1.00000000" edges="0/2to1/2 1/2to1/3 1/3to1/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car2174" depart="2174.00"> + <routeDistribution last="0"> + <route cost="60.84" probability="1.00000000" edges="0/2to0/1 0/1to0/2 0/2to0/3 0/3to0/4 0/4to1/4 1/4to2/4 2/4to3/4 3/4to2/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car2175" depart="2175.00"> + <routeDistribution last="0"> + <route cost="21.65" probability="1.00000000" edges="2/2to1/2 1/2to1/1 1/1to0/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2176" depart="2176.00"> + <routeDistribution last="0"> + <route cost="36.76" probability="1.00000000" edges="3/3to4/3 4/3to4/2 4/2to3/2 3/2to3/1 3/1to2/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2177" depart="2177.00"> + <routeDistribution last="0"> + <route cost="20.16" probability="1.00000000" edges="3/0to2/0 2/0to2/1 2/1to2/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car2178" depart="2178.00"> + <routeDistribution last="0"> + <route cost="42.86" probability="1.00000000" edges="3/3to3/2 3/2to3/1 3/1to3/0 3/0to2/0 2/0to1/0 1/0to1/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2179" depart="2179.00"> + <routeDistribution last="0"> + <route cost="45.82" probability="1.00000000" edges="0/0to1/0 1/0to2/0 2/0to2/1 2/1to2/2 2/2to3/2 3/2to2/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car2180" depart="2180.00"> + <routeDistribution last="0"> + <route cost="44.73" probability="1.00000000" edges="4/1to3/1 3/1to3/2 3/2to3/3 3/3to3/4 3/4to2/4 2/4to1/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car2181" depart="2181.00"> + <routeDistribution last="0"> + <route cost="60.24" probability="1.00000000" edges="1/1to1/0 1/0to1/1 1/1to2/1 2/1to2/2 2/2to3/2 3/2to3/3 3/3to4/3 4/3to4/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car2182" depart="2182.00"> + <routeDistribution last="0"> + <route cost="33.73" probability="1.00000000" edges="4/2to4/3 4/3to3/3 3/3to2/3 2/3to1/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2183" depart="2183.00"> + <routeDistribution last="0"> + <route cost="42.47" probability="1.00000000" edges="3/0to2/0 2/0to2/1 2/1to2/2 2/2to2/3 2/3to3/3 3/3to3/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car2184" depart="2184.00"> + <routeDistribution last="0"> + <route cost="36.76" probability="1.00000000" edges="2/1to1/1 1/1to1/2 1/2to2/2 2/2to2/3 2/3to3/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2185" depart="2185.00"> + <routeDistribution last="0"> + <route cost="31.45" probability="1.00000000" edges="3/0to3/1 3/1to2/1 2/1to2/2 2/2to3/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car2186" depart="2186.00"> + <routeDistribution last="0"> + <route cost="51.53" probability="1.00000000" edges="0/4to1/4 1/4to2/4 2/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to3/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car2187" depart="2187.00"> + <routeDistribution last="0"> + <route cost="45.16" probability="1.00000000" edges="1/3to0/3 0/3to1/3 1/3to2/3 2/3to2/2 2/2to2/1 2/1to1/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2188" depart="2188.00"> + <routeDistribution last="0"> + <route cost="45.83" probability="1.00000000" edges="1/3to1/2 1/2to1/3 1/3to1/4 1/4to2/4 2/4to3/4 3/4to4/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car2189" depart="2189.00"> + <routeDistribution last="0"> + <route cost="42.86" probability="1.00000000" edges="2/0to2/1 2/1to2/2 2/2to2/3 2/3to2/4 2/4to3/4 3/4to3/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2190" depart="2190.00"> + <routeDistribution last="0"> + <route cost="54.80" probability="1.00000000" edges="3/0to4/0 4/0to3/0 3/0to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to0/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car2191" depart="2191.00"> + <routeDistribution last="0"> + <route cost="49.66" probability="1.00000000" edges="2/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to2/0 2/0to2/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2192" depart="2192.00"> + <routeDistribution last="0"> + <route cost="50.15" probability="1.00000000" edges="0/3to0/4 0/4to1/4 1/4to1/3 1/3to1/2 1/2to1/1 1/1to1/0 1/0to2/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car2193" depart="2193.00"> + <routeDistribution last="0"> + <route cost="45.02" probability="1.00000000" edges="1/1to2/1 2/1to2/2 2/2to2/3 2/3to2/4 2/4to3/4 3/4to4/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car2194" depart="2194.00"> + <routeDistribution last="0"> + <route cost="36.85" probability="1.00000000" edges="2/1to3/1 3/1to2/1 2/1to2/2 2/2to2/3 2/3to2/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car2195" depart="2195.00"> + <routeDistribution last="0"> + <route cost="38.19" probability="1.00000000" edges="2/1to1/1 1/1to1/0 1/0to2/0 2/0to3/0 3/0to4/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car2196" depart="2196.00"> + <routeDistribution last="0"> + <route cost="44.73" probability="1.00000000" edges="0/1to0/0 0/0to0/1 0/1to0/2 0/2to0/3 0/3to0/4 0/4to1/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car2197" depart="2197.00"> + <routeDistribution last="0"> + <route cost="43.66" probability="1.00000000" edges="3/4to2/4 2/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to2/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2198" depart="2198.00"> + <routeDistribution last="0"> + <route cost="44.44" probability="1.00000000" edges="1/0to1/1 1/1to2/1 2/1to2/0 2/0to3/0 3/0to4/0 4/0to4/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2199" depart="2199.00"> + <routeDistribution last="0"> + <route cost="44.82" probability="1.00000000" edges="4/3to4/4 4/4to3/4 3/4to2/4 2/4to2/3 2/3to2/2 2/2to1/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car2200" depart="2200.00"> + <routeDistribution last="0"> + <route cost="35.32" probability="1.00000000" edges="0/0to1/0 1/0to2/0 2/0to3/0 3/0to4/0 4/0to4/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2201" depart="2201.00"> + <routeDistribution last="0"> + <route cost="34.66" probability="1.00000000" edges="0/2to0/3 0/3to0/4 0/4to1/4 1/4to2/4 2/4to3/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car2202" depart="2202.00"> + <routeDistribution last="0"> + <route cost="46.60" probability="1.00000000" edges="2/0to2/1 2/1to2/2 2/2to2/3 2/3to2/4 2/4to1/4 1/4to1/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2203" depart="2203.00"> + <routeDistribution last="0"> + <route cost="38.66" probability="1.00000000" edges="3/1to2/1 2/1to1/1 1/1to0/1 0/1to0/2 0/2to1/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car2204" depart="2204.00"> + <routeDistribution last="0"> + <route cost="22.03" probability="1.00000000" edges="4/3to3/3 3/3to3/2 3/2to3/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2205" depart="2205.00"> + <routeDistribution last="0"> + <route cost="13.64" probability="1.00000000" edges="0/4to0/3 0/3to0/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car2206" depart="2206.00"> + <routeDistribution last="0"> + <route cost="30.63" probability="1.00000000" edges="2/2to3/2 3/2to3/3 3/3to3/4 3/4to4/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car2207" depart="2207.00"> + <routeDistribution last="0"> + <route cost="56.03" probability="1.00000000" edges="1/2to0/2 0/2to1/2 1/2to2/2 2/2to3/2 3/2to4/2 4/2to4/1 4/1to4/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car2208" depart="2208.00"> + <routeDistribution last="0"> + <route cost="45.83" probability="1.00000000" edges="1/1to2/1 2/1to1/1 1/1to0/1 0/1to0/2 0/2to0/3 0/3to0/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car2209" depart="2209.00"> + <routeDistribution last="0"> + <route cost="31.45" probability="1.00000000" edges="3/4to2/4 2/4to2/3 2/3to1/3 1/3to1/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car2210" depart="2210.00"> + <routeDistribution last="0"> + <route cost="52.35" probability="1.00000000" edges="2/4to1/4 1/4to2/4 2/4to2/3 2/3to2/2 2/2to2/1 2/1to2/0 2/0to1/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car2211" depart="2211.00"> + <routeDistribution last="0"> + <route cost="46.64" probability="1.00000000" edges="3/2to4/2 4/2to3/2 3/2to3/1 3/1to2/1 2/1to1/1 1/1to1/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car2212" depart="2212.00"> + <routeDistribution last="0"> + <route cost="67.21" probability="1.00000000" edges="2/0to3/0 3/0to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to0/4 0/4to0/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2213" depart="2213.00"> + <routeDistribution last="0"> + <route cost="52.91" probability="1.00000000" edges="1/0to1/1 1/1to2/1 2/1to2/2 2/2to3/2 3/2to3/3 3/3to4/3 4/3to4/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car2214" depart="2214.00"> + <routeDistribution last="0"> + <route cost="38.65" probability="1.00000000" edges="2/1to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to0/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car2215" depart="2215.00"> + <routeDistribution last="0"> + <route cost="20.55" probability="1.00000000" edges="2/4to2/3 2/3to2/2 2/2to2/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2216" depart="2216.00"> + <routeDistribution last="0"> + <route cost="41.72" probability="1.00000000" edges="1/4to1/3 1/3to2/3 2/3to3/3 3/3to4/3 4/3to3/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2217" depart="2217.00"> + <routeDistribution last="0"> + <route cost="36.42" probability="1.00000000" edges="1/3to1/2 1/2to1/1 1/1to1/0 1/0to2/0 2/0to3/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car2218" depart="2218.00"> + <routeDistribution last="0"> + <route cost="29.13" probability="1.00000000" edges="3/1to3/2 3/2to4/2 4/2to4/3 4/3to4/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car2219" depart="2219.00"> + <routeDistribution last="0"> + <route cost="30.62" probability="1.00000000" edges="4/1to4/0 4/0to4/1 4/1to4/2 4/2to4/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2220" depart="2220.00"> + <routeDistribution last="0"> + <route cost="40.53" probability="1.00000000" edges="1/4to1/3 1/3to1/2 1/2to2/2 2/2to3/2 3/2to3/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2221" depart="2221.00"> + <routeDistribution last="0"> + <route cost="59.91" probability="1.00000000" edges="3/4to3/3 3/3to2/3 2/3to2/2 2/2to1/2 1/2to1/1 1/1to0/1 0/1to0/0 0/0to1/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car2222" depart="2222.00"> + <routeDistribution last="0"> + <route cost="23.43" probability="1.00000000" edges="4/0to3/0 3/0to3/1 3/1to2/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2223" depart="2223.00"> + <routeDistribution last="0"> + <route cost="32.21" probability="1.00000000" edges="4/3to3/3 3/3to3/2 3/2to3/1 3/1to4/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2224" depart="2224.00"> + <routeDistribution last="0"> + <route cost="53.12" probability="1.00000000" edges="3/3to4/3 4/3to3/3 3/3to3/2 3/2to2/2 2/2to2/1 2/1to1/1 1/1to2/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2225" depart="2225.00"> + <routeDistribution last="0"> + <route cost="29.65" probability="1.00000000" edges="2/3to2/4 2/4to2/3 2/3to1/3 1/3to0/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2226" depart="2226.00"> + <routeDistribution last="0"> + <route cost="53.85" probability="1.00000000" edges="4/3to4/2 4/2to3/2 3/2to2/2 2/2to1/2 1/2to1/3 1/3to1/4 1/4to1/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2227" depart="2227.00"> + <routeDistribution last="0"> + <route cost="37.62" probability="1.00000000" edges="3/4to2/4 2/4to1/4 1/4to0/4 0/4to0/3 0/3to0/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car2228" depart="2228.00"> + <routeDistribution last="0"> + <route cost="51.95" probability="1.00000000" edges="2/0to1/0 1/0to1/1 1/1to2/1 2/1to2/2 2/2to3/2 3/2to4/2 4/2to3/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car2229" depart="2229.00"> + <routeDistribution last="0"> + <route cost="66.21" probability="1.00000000" edges="2/0to1/0 1/0to2/0 2/0to3/0 3/0to4/0 4/0to4/1 4/1to4/2 4/2to4/3 4/3to4/4 4/4to3/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car2230" depart="2230.00"> + <routeDistribution last="0"> + <route cost="43.96" probability="1.00000000" edges="3/4to3/3 3/3to2/3 2/3to2/2 2/2to2/1 2/1to1/1 1/1to1/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car2231" depart="2231.00"> + <routeDistribution last="0"> + <route cost="48.91" probability="1.00000000" edges="1/1to0/1 0/1to1/1 1/1to2/1 2/1to3/1 3/1to4/1 4/1to4/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car2232" depart="2232.00"> + <routeDistribution last="0"> + <route cost="34.00" probability="1.00000000" edges="2/0to2/1 2/1to1/1 1/1to0/1 0/1to0/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car2233" depart="2233.00"> + <routeDistribution last="0"> + <route cost="36.85" probability="1.00000000" edges="4/1to3/1 3/1to3/2 3/2to3/3 3/3to3/4 3/4to3/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2234" depart="2234.00"> + <routeDistribution last="0"> + <route cost="36.83" probability="1.00000000" edges="4/3to3/3 3/3to3/2 3/2to3/1 3/1to2/1 2/1to3/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2235" depart="2235.00"> + <routeDistribution last="0"> + <route cost="24.93" probability="1.00000000" edges="3/2to3/1 3/1to4/1 4/1to4/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car2236" depart="2236.00"> + <routeDistribution last="0"> + <route cost="38.35" probability="1.00000000" edges="3/1to4/1 4/1to3/1 3/1to2/1 2/1to2/2 2/2to2/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2237" depart="2237.00"> + <routeDistribution last="0"> + <route cost="30.62" probability="1.00000000" edges="1/4to0/4 0/4to1/4 1/4to2/4 2/4to3/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car2238" depart="2238.00"> + <routeDistribution last="0"> + <route cost="23.53" probability="1.00000000" edges="3/4to3/3 3/3to3/2 3/2to4/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car2239" depart="2239.00"> + <routeDistribution last="0"> + <route cost="40.12" probability="1.00000000" edges="2/1to2/2 2/2to2/1 2/1to1/1 1/1to0/1 0/1to0/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car2240" depart="2240.00"> + <routeDistribution last="0"> + <route cost="37.82" probability="1.00000000" edges="0/1to1/1 1/1to1/0 1/0to2/0 2/0to3/0 3/0to4/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car2241" depart="2241.00"> + <routeDistribution last="0"> + <route cost="27.35" probability="1.00000000" edges="3/0to3/1 3/1to3/2 3/2to3/3 3/3to4/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2242" depart="2242.00"> + <routeDistribution last="0"> + <route cost="45.54" probability="1.00000000" edges="0/3to1/3 1/3to2/3 2/3to2/2 2/2to2/1 2/1to2/0 2/0to2/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2243" depart="2243.00"> + <routeDistribution last="0"> + <route cost="48.10" probability="1.00000000" edges="3/0to3/1 3/1to3/2 3/2to3/3 3/3to2/3 2/3to1/3 1/3to1/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car2244" depart="2244.00"> + <routeDistribution last="0"> + <route cost="20.27" probability="1.00000000" edges="0/2to0/3 0/3to0/4 0/4to1/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car2245" depart="2245.00"> + <routeDistribution last="0"> + <route cost="30.61" probability="1.00000000" edges="2/2to3/2 3/2to3/3 3/3to4/3 4/3to4/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car2246" depart="2246.00"> + <routeDistribution last="0"> + <route cost="28.56" probability="1.00000000" edges="3/4to4/4 4/4to4/3 4/3to3/3 3/3to3/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car2247" depart="2247.00"> + <routeDistribution last="0"> + <route cost="20.45" probability="1.00000000" edges="4/0to3/0 3/0to3/1 3/1to3/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car2248" depart="2248.00"> + <routeDistribution last="0"> + <route cost="40.22" probability="1.00000000" edges="3/3to4/3 4/3to3/3 3/3to2/3 2/3to1/3 1/3to1/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car2249" depart="2249.00"> + <routeDistribution last="0"> + <route cost="49.34" probability="1.00000000" edges="1/2to0/2 0/2to1/2 1/2to2/2 2/2to3/2 3/2to3/1 3/1to3/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car2250" depart="2250.00"> + <routeDistribution last="0"> + <route cost="13.35" probability="1.00000000" edges="1/0to2/0 2/0to3/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car2251" depart="2251.00"> + <routeDistribution last="0"> + <route cost="38.95" probability="1.00000000" edges="1/0to1/1 1/1to2/1 2/1to3/1 3/1to4/1 4/1to4/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car2252" depart="2252.00"> + <routeDistribution last="0"> + <route cost="37.14" probability="1.00000000" edges="4/3to3/3 3/3to4/3 4/3to4/2 4/2to4/1 4/1to4/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car2253" depart="2253.00"> + <routeDistribution last="0"> + <route cost="59.93" probability="1.00000000" edges="1/1to1/0 1/0to1/1 1/1to2/1 2/1to2/2 2/2to3/2 3/2to3/3 3/3to4/3 4/3to3/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2254" depart="2254.00"> + <routeDistribution last="0"> + <route cost="30.05" probability="1.00000000" edges="4/2to4/1 4/1to4/0 4/0to3/0 3/0to4/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car2255" depart="2255.00"> + <routeDistribution last="0"> + <route cost="28.15" probability="1.00000000" edges="3/0to3/1 3/1to3/2 3/2to4/2 4/2to3/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car2256" depart="2256.00"> + <routeDistribution last="0"> + <route cost="68.28" probability="1.00000000" edges="4/3to4/4 4/4to3/4 3/4to2/4 2/4to1/4 1/4to1/3 1/3to1/2 1/2to1/1 1/1to1/0 1/0to2/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car2257" depart="2257.00"> + <routeDistribution last="0"> + <route cost="37.82" probability="1.00000000" edges="3/2to2/2 2/2to2/1 2/1to2/0 2/0to1/0 1/0to0/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car2258" depart="2258.00"> + <routeDistribution last="0"> + <route cost="41.72" probability="1.00000000" edges="1/4to1/3 1/3to2/3 2/3to3/3 3/3to4/3 4/3to3/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2259" depart="2259.00"> + <routeDistribution last="0"> + <route cost="48.66" probability="1.00000000" edges="0/3to0/4 0/4to1/4 1/4to2/4 2/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2260" depart="2260.00"> + <routeDistribution last="0"> + <route cost="46.64" probability="1.00000000" edges="2/1to1/1 1/1to2/1 2/1to2/2 2/2to3/2 3/2to4/2 4/2to4/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2261" depart="2261.00"> + <routeDistribution last="0"> + <route cost="48.66" probability="1.00000000" edges="0/3to0/4 0/4to1/4 1/4to2/4 2/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2262" depart="2262.00"> + <routeDistribution last="0"> + <route cost="27.84" probability="1.00000000" edges="1/0to2/0 2/0to3/0 3/0to4/0 4/0to4/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2263" depart="2263.00"> + <routeDistribution last="0"> + <route cost="52.01" probability="1.00000000" edges="4/0to4/1 4/1to4/2 4/2to4/3 4/3to4/4 4/4to3/4 3/4to2/4 2/4to3/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car2264" depart="2264.00"> + <routeDistribution last="0"> + <route cost="45.74" probability="1.00000000" edges="4/4to4/3 4/3to3/3 3/3to3/2 3/2to2/2 2/2to1/2 1/2to1/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2265" depart="2265.00"> + <routeDistribution last="0"> + <route cost="50.91" probability="1.00000000" edges="2/0to2/1 2/1to2/2 2/2to2/3 2/3to2/4 2/4to1/4 1/4to0/4 0/4to0/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2266" depart="2266.00"> + <routeDistribution last="0"> + <route cost="43.26" probability="1.00000000" edges="3/0to2/0 2/0to2/1 2/1to3/1 3/1to3/2 3/2to4/2 4/2to3/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car2267" depart="2267.00"> + <routeDistribution last="0"> + <route cost="48.10" probability="1.00000000" edges="1/4to1/3 1/3to1/2 1/2to1/1 1/1to2/1 2/1to3/1 3/1to3/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car2268" depart="2268.00"> + <routeDistribution last="0"> + <route cost="45.27" probability="1.00000000" edges="2/1to2/2 2/2to2/1 2/1to2/0 2/0to1/0 1/0to0/0 0/0to0/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2269" depart="2269.00"> + <routeDistribution last="0"> + <route cost="39.85" probability="1.00000000" edges="3/2to3/3 3/3to3/2 3/2to2/2 2/2to1/2 1/2to0/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car2270" depart="2270.00"> + <routeDistribution last="0"> + <route cost="32.23" probability="1.00000000" edges="2/4to2/3 2/3to2/2 2/2to3/2 3/2to4/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car2271" depart="2271.00"> + <routeDistribution last="0"> + <route cost="44.73" probability="1.00000000" edges="3/0to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to0/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2272" depart="2272.00"> + <routeDistribution last="0"> + <route cost="42.54" probability="1.00000000" edges="2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to1/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2273" depart="2273.00"> + <routeDistribution last="0"> + <route cost="38.74" probability="1.00000000" edges="4/3to4/4 4/4to3/4 3/4to3/3 3/3to2/3 2/3to2/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car2274" depart="2274.00"> + <routeDistribution last="0"> + <route cost="30.34" probability="1.00000000" edges="2/4to1/4 1/4to1/3 1/3to1/2 1/2to0/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car2275" depart="2275.00"> + <routeDistribution last="0"> + <route cost="39.46" probability="1.00000000" edges="2/2to2/3 2/3to3/3 3/3to4/3 4/3to4/2 4/2to4/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2276" depart="2276.00"> + <routeDistribution last="0"> + <route cost="62.78" probability="1.00000000" edges="4/1to4/0 4/0to3/0 3/0to2/0 2/0to1/0 1/0to0/0 0/0to0/1 0/1to0/2 0/2to0/3 0/3to1/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2277" depart="2277.00"> + <routeDistribution last="0"> + <route cost="20.16" probability="1.00000000" edges="0/1to0/2 0/2to0/3 0/3to1/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2278" depart="2278.00"> + <routeDistribution last="0"> + <route cost="37.45" probability="1.00000000" edges="4/1to3/1 3/1to3/2 3/2to3/3 3/3to3/4 3/4to4/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car2279" depart="2279.00"> + <routeDistribution last="0"> + <route cost="53.34" probability="1.00000000" edges="1/2to1/3 1/3to2/3 2/3to3/3 3/3to4/3 4/3to4/2 4/2to4/1 4/1to4/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car2280" depart="2280.00"> + <routeDistribution last="0"> + <route cost="42.16" probability="1.00000000" edges="3/0to2/0 2/0to2/1 2/1to2/2 2/2to2/3 2/3to3/3 3/3to2/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2281" depart="2281.00"> + <routeDistribution last="0"> + <route cost="49.60" probability="1.00000000" edges="4/1to4/2 4/2to4/3 4/3to3/3 3/3to2/3 2/3to1/3 1/3to1/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car2282" depart="2282.00"> + <routeDistribution last="0"> + <route cost="21.93" probability="1.00000000" edges="4/4to4/3 4/3to3/3 3/3to3/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car2283" depart="2283.00"> + <routeDistribution last="0"> + <route cost="65.19" probability="1.00000000" edges="0/4to1/4 1/4to2/4 2/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to4/0 4/0to4/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2284" depart="2284.00"> + <routeDistribution last="0"> + <route cost="36.76" probability="1.00000000" edges="3/1to2/1 2/1to2/2 2/2to3/2 3/2to3/3 3/3to4/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2285" depart="2285.00"> + <routeDistribution last="0"> + <route cost="45.20" probability="1.00000000" edges="0/1to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to0/4 0/4to0/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2286" depart="2286.00"> + <routeDistribution last="0"> + <route cost="58.47" probability="1.00000000" edges="2/1to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to2/4 2/4to3/4 3/4to4/4 4/4to4/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2287" depart="2287.00"> + <routeDistribution last="0"> + <route cost="63.64" probability="1.00000000" edges="4/2to4/3 4/3to4/2 4/2to3/2 3/2to3/1 3/1to2/1 2/1to1/1 1/1to0/1 0/1to0/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car2288" depart="2288.00"> + <routeDistribution last="0"> + <route cost="51.43" probability="1.00000000" edges="1/4to0/4 0/4to1/4 1/4to2/4 2/4to3/4 3/4to3/3 3/3to3/2 3/2to2/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car2289" depart="2289.00"> + <routeDistribution last="0"> + <route cost="37.15" probability="1.00000000" edges="4/1to3/1 3/1to3/0 3/0to2/0 2/0to1/0 1/0to1/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2290" depart="2290.00"> + <routeDistribution last="0"> + <route cost="44.05" probability="1.00000000" edges="1/0to0/0 0/0to0/1 0/1to1/1 1/1to1/2 1/2to2/2 2/2to2/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2291" depart="2291.00"> + <routeDistribution last="0"> + <route cost="42.41" probability="1.00000000" edges="1/2to1/1 1/1to2/1 2/1to3/1 3/1to4/1 4/1to4/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car2292" depart="2292.00"> + <routeDistribution last="0"> + <route cost="37.63" probability="1.00000000" edges="4/3to4/4 4/4to3/4 3/4to2/4 2/4to2/3 2/3to1/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2293" depart="2293.00"> + <routeDistribution last="0"> + <route cost="45.83" probability="1.00000000" edges="2/3to3/3 3/3to3/2 3/2to3/1 3/1to2/1 2/1to2/0 2/0to3/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car2294" depart="2294.00"> + <routeDistribution last="0"> + <route cost="38.66" probability="1.00000000" edges="0/2to0/3 0/3to1/3 1/3to2/3 2/3to3/3 3/3to3/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car2295" depart="2295.00"> + <routeDistribution last="0"> + <route cost="45.21" probability="1.00000000" edges="0/1to0/0 0/0to1/0 1/0to2/0 2/0to3/0 3/0to3/1 3/1to3/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car2296" depart="2296.00"> + <routeDistribution last="0"> + <route cost="38.35" probability="1.00000000" edges="3/1to3/2 3/2to3/1 3/1to3/0 3/0to2/0 2/0to1/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car2297" depart="2297.00"> + <routeDistribution last="0"> + <route cost="33.34" probability="1.00000000" edges="2/4to2/3 2/3to3/3 3/3to4/3 4/3to4/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car2298" depart="2298.00"> + <routeDistribution last="0"> + <route cost="47.88" probability="1.00000000" edges="3/4to4/4 4/4to3/4 3/4to2/4 2/4to1/4 1/4to0/4 0/4to1/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car2299" depart="2299.00"> + <routeDistribution last="0"> + <route cost="42.14" probability="1.00000000" edges="0/2to0/3 0/3to0/4 0/4to1/4 1/4to2/4 2/4to3/4 3/4to4/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car2300" depart="2300.00"> + <routeDistribution last="0"> + <route cost="45.16" probability="1.00000000" edges="4/3to4/2 4/2to3/2 3/2to2/2 2/2to2/3 2/3to2/4 2/4to2/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2301" depart="2301.00"> + <routeDistribution last="0"> + <route cost="61.89" probability="1.00000000" edges="0/0to0/1 0/1to1/1 1/1to1/2 1/2to2/2 2/2to2/3 2/3to3/3 3/3to4/3 4/3to4/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car2302" depart="2302.00"> + <routeDistribution last="0"> + <route cost="33.71" probability="1.00000000" edges="1/3to1/2 1/2to2/2 2/2to3/2 3/2to3/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2303" depart="2303.00"> + <routeDistribution last="0"> + <route cost="45.13" probability="1.00000000" edges="2/3to3/3 3/3to2/3 2/3to2/2 2/2to1/2 1/2to1/1 1/1to0/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2304" depart="2304.00"> + <routeDistribution last="0"> + <route cost="51.82" probability="1.00000000" edges="0/1to0/2 0/2to1/2 1/2to1/1 1/1to1/0 1/0to2/0 2/0to3/0 3/0to4/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car2305" depart="2305.00"> + <routeDistribution last="0"> + <route cost="28.15" probability="1.00000000" edges="1/3to1/2 1/2to1/1 1/1to0/1 0/1to1/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2306" depart="2306.00"> + <routeDistribution last="0"> + <route cost="63.64" probability="1.00000000" edges="0/2to0/1 0/1to0/2 0/2to1/2 1/2to1/3 1/3to2/3 2/3to3/3 3/3to4/3 4/3to4/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car2307" depart="2307.00"> + <routeDistribution last="0"> + <route cost="42.86" probability="1.00000000" edges="1/4to2/4 2/4to2/3 2/3to2/2 2/2to2/1 2/1to2/0 2/0to1/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car2308" depart="2308.00"> + <routeDistribution last="0"> + <route cost="52.91" probability="1.00000000" edges="1/0to1/1 1/1to2/1 2/1to2/2 2/2to3/2 3/2to3/3 3/3to4/3 4/3to4/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car2309" depart="2309.00"> + <routeDistribution last="0"> + <route cost="47.36" probability="1.00000000" edges="4/1to3/1 3/1to2/1 2/1to1/1 1/1to0/1 0/1to0/2 0/2to1/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car2310" depart="2310.00"> + <routeDistribution last="0"> + <route cost="44.73" probability="1.00000000" edges="4/0to4/1 4/1to4/0 4/0to3/0 3/0to2/0 2/0to1/0 1/0to0/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car2311" depart="2311.00"> + <routeDistribution last="0"> + <route cost="44.76" probability="1.00000000" edges="3/3to3/4 3/4to3/3 3/3to2/3 2/3to2/2 2/2to1/2 1/2to1/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2312" depart="2312.00"> + <routeDistribution last="0"> + <route cost="36.46" probability="1.00000000" edges="3/3to2/3 2/3to3/3 3/3to3/2 3/2to3/1 3/1to2/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2313" depart="2313.00"> + <routeDistribution last="0"> + <route cost="41.47" probability="1.00000000" edges="0/3to0/4 0/4to1/4 1/4to2/4 2/4to2/3 2/3to2/2 2/2to2/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2314" depart="2314.00"> + <routeDistribution last="0"> + <route cost="53.85" probability="1.00000000" edges="2/1to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to2/4 2/4to3/4 3/4to2/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car2315" depart="2315.00"> + <routeDistribution last="0"> + <route cost="56.54" probability="1.00000000" edges="1/3to0/3 0/3to1/3 1/3to2/3 2/3to3/3 3/3to3/2 3/2to3/1 3/1to3/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car2316" depart="2316.00"> + <routeDistribution last="0"> + <route cost="46.24" probability="1.00000000" edges="0/3to1/3 1/3to2/3 2/3to3/3 3/3to3/2 3/2to3/1 3/1to3/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car2317" depart="2317.00"> + <routeDistribution last="0"> + <route cost="43.37" probability="1.00000000" edges="3/4to4/4 4/4to4/3 4/3to3/3 3/3to3/2 3/2to2/2 2/2to3/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car2318" depart="2318.00"> + <routeDistribution last="0"> + <route cost="33.63" probability="1.00000000" edges="2/2to2/1 2/1to3/1 3/1to4/1 4/1to4/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car2319" depart="2319.00"> + <routeDistribution last="0"> + <route cost="40.91" probability="1.00000000" edges="2/0to3/0 3/0to3/1 3/1to3/2 3/2to3/3 3/3to2/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2320" depart="2320.00"> + <routeDistribution last="0"> + <route cost="52.35" probability="1.00000000" edges="3/4to2/4 2/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to2/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car2321" depart="2321.00"> + <routeDistribution last="0"> + <route cost="28.45" probability="1.00000000" edges="0/1to0/2 0/2to1/2 1/2to1/3 1/3to2/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2322" depart="2322.00"> + <routeDistribution last="0"> + <route cost="53.68" probability="1.00000000" edges="3/1to3/2 3/2to3/3 3/3to3/4 3/4to2/4 2/4to1/4 1/4to0/4 0/4to1/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car2323" depart="2323.00"> + <routeDistribution last="0"> + <route cost="37.63" probability="1.00000000" edges="2/2to1/2 1/2to1/3 1/3to1/4 1/4to0/4 0/4to0/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2324" depart="2324.00"> + <routeDistribution last="0"> + <route cost="47.36" probability="1.00000000" edges="0/3to1/3 1/3to2/3 2/3to3/3 3/3to4/3 4/3to4/2 4/2to3/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car2325" depart="2325.00"> + <routeDistribution last="0"> + <route cost="34.45" probability="1.00000000" edges="4/0to3/0 3/0to2/0 2/0to2/1 2/1to2/2 2/2to3/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car2326" depart="2326.00"> + <routeDistribution last="0"> + <route cost="42.23" probability="1.00000000" edges="0/3to0/2 0/2to0/1 0/1to0/0 0/0to1/0 1/0to2/0 2/0to3/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car2327" depart="2327.00"> + <routeDistribution last="0"> + <route cost="38.66" probability="1.00000000" edges="0/2to1/2 1/2to2/2 2/2to3/2 3/2to3/1 3/1to2/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2328" depart="2328.00"> + <routeDistribution last="0"> + <route cost="38.33" probability="1.00000000" edges="2/3to3/3 3/3to2/3 2/3to2/2 2/2to1/2 1/2to0/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car2329" depart="2329.00"> + <routeDistribution last="0"> + <route cost="33.63" probability="1.00000000" edges="2/2to2/3 2/3to1/3 1/3to0/3 0/3to0/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car2330" depart="2330.00"> + <routeDistribution last="0"> + <route cost="29.95" probability="1.00000000" edges="3/1to2/1 2/1to2/0 2/0to1/0 1/0to1/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2331" depart="2331.00"> + <routeDistribution last="0"> + <route cost="62.03" probability="1.00000000" edges="0/2to0/3 0/3to1/3 1/3to2/3 2/3to3/3 3/3to4/3 4/3to4/2 4/2to4/1 4/1to4/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car2332" depart="2332.00"> + <routeDistribution last="0"> + <route cost="30.71" probability="1.00000000" edges="1/2to2/2 2/2to2/3 2/3to2/4 2/4to1/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car2333" depart="2333.00"> + <routeDistribution last="0"> + <route cost="36.85" probability="1.00000000" edges="3/0to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2334" depart="2334.00"> + <routeDistribution last="0"> + <route cost="37.42" probability="1.00000000" edges="4/3to4/4 4/4to4/3 4/3to4/2 4/2to4/1 4/1to3/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2335" depart="2335.00"> + <routeDistribution last="0"> + <route cost="46.01" probability="1.00000000" edges="3/2to4/2 4/2to4/3 4/3to4/4 4/4to3/4 3/4to2/4 2/4to3/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car2336" depart="2336.00"> + <routeDistribution last="0"> + <route cost="57.24" probability="1.00000000" edges="4/1to3/1 3/1to2/1 2/1to1/1 1/1to0/1 0/1to0/2 0/2to0/3 0/3to0/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car2337" depart="2337.00"> + <routeDistribution last="0"> + <route cost="44.45" probability="1.00000000" edges="2/3to1/3 1/3to1/2 1/2to1/1 1/1to1/0 1/0to0/0 0/0to0/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2338" depart="2338.00"> + <routeDistribution last="0"> + <route cost="50.06" probability="1.00000000" edges="0/3to0/4 0/4to1/4 1/4to1/3 1/3to1/2 1/2to1/1 1/1to1/0 1/0to0/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car2339" depart="2339.00"> + <routeDistribution last="0"> + <route cost="41.33" probability="1.00000000" edges="2/2to1/2 1/2to2/2 2/2to3/2 3/2to3/1 3/1to4/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2340" depart="2340.00"> + <routeDistribution last="0"> + <route cost="37.44" probability="1.00000000" edges="4/1to3/1 3/1to3/2 3/2to3/3 3/3to4/3 4/3to4/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car2341" depart="2341.00"> + <routeDistribution last="0"> + <route cost="35.26" probability="1.00000000" edges="2/4to3/4 3/4to3/3 3/3to2/3 2/3to2/2 2/2to1/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car2342" depart="2342.00"> + <routeDistribution last="0"> + <route cost="51.42" probability="1.00000000" edges="3/0to2/0 2/0to2/1 2/1to2/2 2/2to3/2 3/2to3/3 3/3to4/3 4/3to4/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car2343" depart="2343.00"> + <routeDistribution last="0"> + <route cost="59.01" probability="1.00000000" edges="1/4to0/4 0/4to1/4 1/4to2/4 2/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to3/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car2344" depart="2344.00"> + <routeDistribution last="0"> + <route cost="35.77" probability="1.00000000" edges="3/1to4/1 4/1to4/0 4/0to3/0 3/0to2/0 2/0to1/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car2345" depart="2345.00"> + <routeDistribution last="0"> + <route cost="46.74" probability="1.00000000" edges="0/0to1/0 1/0to0/0 0/0to0/1 0/1to0/2 0/2to0/3 0/3to0/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car2346" depart="2346.00"> + <routeDistribution last="0"> + <route cost="57.19" probability="1.00000000" edges="0/0to1/0 1/0to2/0 2/0to3/0 3/0to4/0 4/0to4/1 4/1to4/2 4/2to4/3 4/3to4/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car2347" depart="2347.00"> + <routeDistribution last="0"> + <route cost="42.71" probability="1.00000000" edges="4/0to4/1 4/1to3/1 3/1to2/1 2/1to1/1 1/1to0/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2348" depart="2348.00"> + <routeDistribution last="0"> + <route cost="59.66" probability="1.00000000" edges="3/3to4/3 4/3to4/2 4/2to4/1 4/1to4/0 4/0to3/0 3/0to2/0 2/0to1/0 1/0to2/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car2349" depart="2349.00"> + <routeDistribution last="0"> + <route cost="48.53" probability="1.00000000" edges="1/3to0/3 0/3to1/3 1/3to1/2 1/2to1/1 1/1to2/1 2/1to3/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2350" depart="2350.00"> + <routeDistribution last="0"> + <route cost="41.58" probability="1.00000000" edges="1/0to0/0 0/0to0/1 0/1to0/2 0/2to0/3 0/3to0/4 0/4to1/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car2351" depart="2351.00"> + <routeDistribution last="0"> + <route cost="38.61" probability="1.00000000" edges="3/2to2/2 2/2to3/2 3/2to3/3 3/3to4/3 4/3to4/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car2352" depart="2352.00"> + <routeDistribution last="0"> + <route cost="30.44" probability="1.00000000" edges="2/1to3/1 3/1to3/0 3/0to4/0 4/0to4/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2353" depart="2353.00"> + <routeDistribution last="0"> + <route cost="37.53" probability="1.00000000" edges="2/4to1/4 1/4to1/3 1/3to1/2 1/2to1/1 1/1to0/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2354" depart="2354.00"> + <routeDistribution last="0"> + <route cost="23.43" probability="1.00000000" edges="2/3to3/3 3/3to3/4 3/4to4/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car2355" depart="2355.00"> + <routeDistribution last="0"> + <route cost="51.36" probability="1.00000000" edges="4/4to3/4 3/4to4/4 4/4to4/3 4/3to4/2 4/2to4/1 4/1to4/0 4/0to3/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car2356" depart="2356.00"> + <routeDistribution last="0"> + <route cost="28.54" probability="1.00000000" edges="3/1to3/2 3/2to3/3 3/3to3/4 3/4to3/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2357" depart="2357.00"> + <routeDistribution last="0"> + <route cost="45.10" probability="1.00000000" edges="2/3to1/3 1/3to1/2 1/2to1/1 1/1to1/0 1/0to2/0 2/0to3/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car2358" depart="2358.00"> + <routeDistribution last="0"> + <route cost="21.65" probability="1.00000000" edges="1/3to1/2 1/2to0/2 0/2to0/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2359" depart="2359.00"> + <routeDistribution last="0"> + <route cost="31.54" probability="1.00000000" edges="4/3to3/3 3/3to2/3 2/3to1/3 1/3to2/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2360" depart="2360.00"> + <routeDistribution last="0"> + <route cost="53.04" probability="1.00000000" edges="3/1to4/1 4/1to4/0 4/0to3/0 3/0to2/0 2/0to1/0 1/0to0/0 0/0to1/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car2361" depart="2361.00"> + <routeDistribution last="0"> + <route cost="38.63" probability="1.00000000" edges="1/2to2/2 2/2to2/1 2/1to1/1 1/1to1/0 1/0to2/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car2362" depart="2362.00"> + <routeDistribution last="0"> + <route cost="53.14" probability="1.00000000" edges="1/1to1/0 1/0to1/1 1/1to2/1 2/1to2/2 2/2to3/2 3/2to4/2 4/2to3/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car2363" depart="2363.00"> + <routeDistribution last="0"> + <route cost="23.15" probability="1.00000000" edges="1/3to2/3 2/3to2/4 2/4to3/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car2364" depart="2364.00"> + <routeDistribution last="0"> + <route cost="23.43" probability="1.00000000" edges="4/0to3/0 3/0to3/1 3/1to2/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2365" depart="2365.00"> + <routeDistribution last="0"> + <route cost="24.65" probability="1.00000000" edges="0/3to1/3 1/3to1/2 1/2to2/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car2366" depart="2366.00"> + <routeDistribution last="0"> + <route cost="42.95" probability="1.00000000" edges="3/4to4/4 4/4to4/3 4/3to4/2 4/2to4/1 4/1to3/1 3/1to3/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car2367" depart="2367.00"> + <routeDistribution last="0"> + <route cost="35.77" probability="1.00000000" edges="3/3to4/3 4/3to4/2 4/2to4/1 4/1to4/0 4/0to3/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car2368" depart="2368.00"> + <routeDistribution last="0"> + <route cost="34.55" probability="1.00000000" edges="3/0to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2369" depart="2369.00"> + <routeDistribution last="0"> + <route cost="29.95" probability="1.00000000" edges="3/2to4/2 4/2to4/1 4/1to3/1 3/1to3/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car2370" depart="2370.00"> + <routeDistribution last="0"> + <route cost="37.53" probability="1.00000000" edges="0/3to1/3 1/3to1/2 1/2to1/1 1/1to1/0 1/0to2/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car2371" depart="2371.00"> + <routeDistribution last="0"> + <route cost="44.53" probability="1.00000000" edges="2/4to3/4 3/4to2/4 2/4to1/4 1/4to0/4 0/4to0/3 0/3to0/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car2372" depart="2372.00"> + <routeDistribution last="0"> + <route cost="52.30" probability="1.00000000" edges="2/0to3/0 3/0to4/0 4/0to4/1 4/1to4/2 4/2to4/3 4/3to4/4 4/4to4/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2373" depart="2373.00"> + <routeDistribution last="0"> + <route cost="36.46" probability="1.00000000" edges="1/3to0/3 0/3to1/3 1/3to1/2 1/2to1/1 1/1to0/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2374" depart="2374.00"> + <routeDistribution last="0"> + <route cost="64.82" probability="1.00000000" edges="4/1to4/0 4/0to3/0 3/0to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to0/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car2375" depart="2375.00"> + <routeDistribution last="0"> + <route cost="28.32" probability="1.00000000" edges="0/4to1/4 1/4to2/4 2/4to3/4 3/4to4/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car2376" depart="2376.00"> + <routeDistribution last="0"> + <route cost="57.51" probability="1.00000000" edges="4/1to4/2 4/2to4/1 4/1to3/1 3/1to2/1 2/1to1/1 1/1to0/1 0/1to0/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car2377" depart="2377.00"> + <routeDistribution last="0"> + <route cost="49.34" probability="1.00000000" edges="3/0to2/0 2/0to1/0 1/0to0/0 0/0to0/1 0/1to0/2 0/2to0/3 0/3to0/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car2378" depart="2378.00"> + <routeDistribution last="0"> + <route cost="54.84" probability="1.00000000" edges="0/1to0/2 0/2to1/2 1/2to2/2 2/2to3/2 3/2to4/2 4/2to4/1 4/1to4/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car2379" depart="2379.00"> + <routeDistribution last="0"> + <route cost="42.58" probability="1.00000000" edges="1/2to1/1 1/1to0/1 0/1to0/2 0/2to0/3 0/3to0/4 0/4to1/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car2380" depart="2380.00"> + <routeDistribution last="0"> + <route cost="46.63" probability="1.00000000" edges="4/2to4/3 4/3to4/2 4/2to3/2 3/2to3/1 3/1to2/1 2/1to2/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car2381" depart="2381.00"> + <routeDistribution last="0"> + <route cost="54.66" probability="1.00000000" edges="4/2to3/2 3/2to2/2 2/2to1/2 1/2to0/2 0/2to0/3 0/3to0/4 0/4to1/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car2382" depart="2382.00"> + <routeDistribution last="0"> + <route cost="21.66" probability="1.00000000" edges="1/2to2/2 2/2to2/1 2/1to2/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car2383" depart="2383.00"> + <routeDistribution last="0"> + <route cost="45.02" probability="1.00000000" edges="0/2to1/2 1/2to1/1 1/1to1/0 1/0to2/0 2/0to3/0 3/0to4/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car2384" depart="2384.00"> + <routeDistribution last="0"> + <route cost="29.94" probability="1.00000000" edges="4/0to3/0 3/0to2/0 2/0to2/1 2/1to2/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car2385" depart="2385.00"> + <routeDistribution last="0"> + <route cost="40.22" probability="1.00000000" edges="2/0to3/0 3/0to3/1 3/1to3/2 3/2to3/3 3/3to3/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car2386" depart="2386.00"> + <routeDistribution last="0"> + <route cost="46.20" probability="1.00000000" edges="1/1to2/1 2/1to2/2 2/2to3/2 3/2to3/3 3/3to3/4 3/4to2/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car2387" depart="2387.00"> + <routeDistribution last="0"> + <route cost="30.63" probability="1.00000000" edges="3/3to2/3 2/3to2/4 2/4to1/4 1/4to0/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car2388" depart="2388.00"> + <routeDistribution last="0"> + <route cost="64.28" probability="1.00000000" edges="3/1to3/0 3/0to2/0 2/0to1/0 1/0to0/0 0/0to0/1 0/1to0/2 0/2to0/3 0/3to0/4 0/4to1/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car2389" depart="2389.00"> + <routeDistribution last="0"> + <route cost="37.91" probability="1.00000000" edges="3/3to2/3 2/3to2/2 2/2to2/1 2/1to2/0 2/0to3/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car2390" depart="2390.00"> + <routeDistribution last="0"> + <route cost="45.54" probability="1.00000000" edges="1/1to1/2 1/2to1/3 1/3to1/4 1/4to2/4 2/4to3/4 3/4to2/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car2391" depart="2391.00"> + <routeDistribution last="0"> + <route cost="44.44" probability="1.00000000" edges="2/1to2/2 2/2to3/2 3/2to3/1 3/1to3/0 3/0to4/0 4/0to4/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2392" depart="2392.00"> + <routeDistribution last="0"> + <route cost="44.00" probability="1.00000000" edges="3/3to4/3 4/3to4/4 4/4to3/4 3/4to2/4 2/4to1/4 1/4to0/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car2393" depart="2393.00"> + <routeDistribution last="0"> + <route cost="47.88" probability="1.00000000" edges="0/1to0/0 0/0to0/1 0/1to0/2 0/2to0/3 0/3to0/4 0/4to0/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2394" depart="2394.00"> + <routeDistribution last="0"> + <route cost="58.83" probability="1.00000000" edges="0/0to0/1 0/1to0/2 0/2to0/3 0/3to0/4 0/4to1/4 1/4to2/4 2/4to3/4 3/4to2/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car2395" depart="2395.00"> + <routeDistribution last="0"> + <route cost="47.34" probability="1.00000000" edges="4/3to3/3 3/3to2/3 2/3to2/2 2/2to1/2 1/2to0/2 0/2to0/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2396" depart="2396.00"> + <routeDistribution last="0"> + <route cost="55.61" probability="1.00000000" edges="1/3to1/2 1/2to1/3 1/3to1/4 1/4to2/4 2/4to3/4 3/4to4/4 4/4to3/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car2397" depart="2397.00"> + <routeDistribution last="0"> + <route cost="36.46" probability="1.00000000" edges="3/3to2/3 2/3to3/3 3/3to3/2 3/2to3/1 3/1to2/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2398" depart="2398.00"> + <routeDistribution last="0"> + <route cost="30.82" probability="1.00000000" edges="3/0to4/0 4/0to4/1 4/1to4/2 4/2to3/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car2399" depart="2399.00"> + <routeDistribution last="0"> + <route cost="39.85" probability="1.00000000" edges="0/1to1/1 1/1to2/1 2/1to3/1 3/1to3/0 3/0to3/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2400" depart="2400.00"> + <routeDistribution last="0"> + <route cost="21.65" probability="1.00000000" edges="2/0to2/1 2/1to3/1 3/1to3/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car2401" depart="2401.00"> + <routeDistribution last="0"> + <route cost="29.65" probability="1.00000000" edges="2/3to2/4 2/4to2/3 2/3to1/3 1/3to0/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2402" depart="2402.00"> + <routeDistribution last="0"> + <route cost="29.13" probability="1.00000000" edges="0/0to0/1 0/1to1/1 1/1to1/2 1/2to1/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2403" depart="2403.00"> + <routeDistribution last="0"> + <route cost="47.04" probability="1.00000000" edges="2/3to1/3 1/3to2/3 2/3to3/3 3/3to4/3 4/3to4/2 4/2to4/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2404" depart="2404.00"> + <routeDistribution last="0"> + <route cost="22.03" probability="1.00000000" edges="3/2to2/2 2/2to2/1 2/1to2/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car2405" depart="2405.00"> + <routeDistribution last="0"> + <route cost="36.76" probability="1.00000000" edges="3/3to4/3 4/3to4/2 4/2to3/2 3/2to3/1 3/1to2/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2406" depart="2406.00"> + <routeDistribution last="0"> + <route cost="50.85" probability="1.00000000" edges="3/3to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to2/0 2/0to2/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2407" depart="2407.00"> + <routeDistribution last="0"> + <route cost="47.03" probability="1.00000000" edges="1/0to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to0/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2408" depart="2408.00"> + <routeDistribution last="0"> + <route cost="45.21" probability="1.00000000" edges="0/1to0/0 0/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to1/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car2409" depart="2409.00"> + <routeDistribution last="0"> + <route cost="44.45" probability="1.00000000" edges="0/3to1/3 1/3to1/4 1/4to2/4 2/4to3/4 3/4to4/4 4/4to4/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2410" depart="2410.00"> + <routeDistribution last="0"> + <route cost="38.77" probability="1.00000000" edges="3/3to2/3 2/3to1/3 1/3to0/3 0/3to0/4 0/4to1/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car2411" depart="2411.00"> + <routeDistribution last="0"> + <route cost="59.21" probability="1.00000000" edges="0/1to0/0 0/0to1/0 1/0to2/0 2/0to3/0 3/0to3/1 3/1to3/2 3/2to3/3 3/3to4/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2412" depart="2412.00"> + <routeDistribution last="0"> + <route cost="35.35" probability="1.00000000" edges="2/4to2/3 2/3to2/2 2/2to2/1 2/1to1/1 1/1to2/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2413" depart="2413.00"> + <routeDistribution last="0"> + <route cost="42.51" probability="1.00000000" edges="4/4to3/4 3/4to2/4 2/4to1/4 1/4to0/4 0/4to0/3 0/3to0/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car2414" depart="2414.00"> + <routeDistribution last="0"> + <route cost="37.22" probability="1.00000000" edges="0/1to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to1/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2415" depart="2415.00"> + <routeDistribution last="0"> + <route cost="51.10" probability="1.00000000" edges="3/0to3/1 3/1to3/2 3/2to3/3 3/3to3/4 3/4to2/4 2/4to1/4 1/4to0/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car2416" depart="2416.00"> + <routeDistribution last="0"> + <route cost="45.47" probability="1.00000000" edges="0/1to0/2 0/2to1/2 1/2to2/2 2/2to3/2 3/2to3/1 3/1to2/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2417" depart="2417.00"> + <routeDistribution last="0"> + <route cost="37.26" probability="1.00000000" edges="0/3to0/4 0/4to1/4 1/4to1/3 1/3to1/2 1/2to2/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car2418" depart="2418.00"> + <routeDistribution last="0"> + <route cost="13.64" probability="1.00000000" edges="4/4to3/4 3/4to2/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car2419" depart="2419.00"> + <routeDistribution last="0"> + <route cost="28.54" probability="1.00000000" edges="3/3to3/4 3/4to3/3 3/3to3/2 3/2to3/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2420" depart="2420.00"> + <routeDistribution last="0"> + <route cost="37.44" probability="1.00000000" edges="3/4to3/3 3/3to2/3 2/3to2/4 2/4to1/4 1/4to0/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car2421" depart="2421.00"> + <routeDistribution last="0"> + <route cost="31.54" probability="1.00000000" edges="0/2to1/2 1/2to2/2 2/2to3/2 3/2to2/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car2422" depart="2422.00"> + <routeDistribution last="0"> + <route cost="61.07" probability="1.00000000" edges="3/4to4/4 4/4to4/3 4/3to3/3 3/3to3/2 3/2to2/2 2/2to1/2 1/2to0/2 0/2to0/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2423" depart="2423.00"> + <routeDistribution last="0"> + <route cost="40.92" probability="1.00000000" edges="0/1to1/1 1/1to2/1 2/1to3/1 3/1to4/1 4/1to4/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car2424" depart="2424.00"> + <routeDistribution last="0"> + <route cost="29.65" probability="1.00000000" edges="2/2to1/2 1/2to2/2 2/2to2/1 2/1to2/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car2425" depart="2425.00"> + <routeDistribution last="0"> + <route cost="23.53" probability="1.00000000" edges="2/4to2/3 2/3to2/2 2/2to3/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car2426" depart="2426.00"> + <routeDistribution last="0"> + <route cost="22.03" probability="1.00000000" edges="2/2to2/1 2/1to2/0 2/0to3/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car2427" depart="2427.00"> + <routeDistribution last="0"> + <route cost="43.71" probability="1.00000000" edges="2/1to2/0 2/0to3/0 3/0to4/0 4/0to4/1 4/1to4/2 4/2to4/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2428" depart="2428.00"> + <routeDistribution last="0"> + <route cost="46.92" probability="1.00000000" edges="2/2to2/1 2/1to2/2 2/2to3/2 3/2to3/3 3/3to4/3 4/3to4/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car2429" depart="2429.00"> + <routeDistribution last="0"> + <route cost="44.44" probability="1.00000000" edges="3/4to3/3 3/3to2/3 2/3to2/4 2/4to1/4 1/4to0/4 0/4to0/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2430" depart="2430.00"> + <routeDistribution last="0"> + <route cost="38.66" probability="1.00000000" edges="0/3to1/3 1/3to2/3 2/3to3/3 3/3to3/2 3/2to2/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car2431" depart="2431.00"> + <routeDistribution last="0"> + <route cost="38.66" probability="1.00000000" edges="0/3to1/3 1/3to2/3 2/3to3/3 3/3to3/2 3/2to2/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car2432" depart="2432.00"> + <routeDistribution last="0"> + <route cost="55.23" probability="1.00000000" edges="4/1to3/1 3/1to2/1 2/1to1/1 1/1to0/1 0/1to0/2 0/2to0/3 0/3to0/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car2433" depart="2433.00"> + <routeDistribution last="0"> + <route cost="29.65" probability="1.00000000" edges="1/1to1/0 1/0to1/1 1/1to2/1 2/1to3/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2434" depart="2434.00"> + <routeDistribution last="0"> + <route cost="42.03" probability="1.00000000" edges="1/4to1/3 1/3to2/3 2/3to3/3 3/3to4/3 4/3to4/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car2435" depart="2435.00"> + <routeDistribution last="0"> + <route cost="49.66" probability="1.00000000" edges="2/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to2/0 2/0to2/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2436" depart="2436.00"> + <routeDistribution last="0"> + <route cost="37.26" probability="1.00000000" edges="0/3to0/4 0/4to1/4 1/4to2/4 2/4to2/3 2/3to3/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2437" depart="2437.00"> + <routeDistribution last="0"> + <route cost="27.47" probability="1.00000000" edges="0/1to0/2 0/2to0/3 0/3to0/4 0/4to1/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car2438" depart="2438.00"> + <routeDistribution last="0"> + <route cost="45.27" probability="1.00000000" edges="1/4to1/3 1/3to1/4 1/4to2/4 2/4to3/4 3/4to4/4 4/4to4/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2439" depart="2439.00"> + <routeDistribution last="0"> + <route cost="51.00" probability="1.00000000" edges="3/3to4/3 4/3to4/4 4/4to3/4 3/4to2/4 2/4to1/4 1/4to0/4 0/4to0/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2440" depart="2440.00"> + <routeDistribution last="0"> + <route cost="43.96" probability="1.00000000" edges="2/4to2/3 2/3to1/3 1/3to1/2 1/2to1/1 1/1to0/1 0/1to0/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car2441" depart="2441.00"> + <routeDistribution last="0"> + <route cost="58.05" probability="1.00000000" edges="1/1to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to2/4 2/4to3/4 3/4to3/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2442" depart="2442.00"> + <routeDistribution last="0"> + <route cost="44.64" probability="1.00000000" edges="2/2to2/1 2/1to1/1 1/1to0/1 0/1to0/2 0/2to0/3 0/3to0/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car2443" depart="2443.00"> + <routeDistribution last="0"> + <route cost="45.86" probability="1.00000000" edges="1/3to2/3 2/3to3/3 3/3to4/3 4/3to4/2 4/2to4/1 4/1to3/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2444" depart="2444.00"> + <routeDistribution last="0"> + <route cost="43.66" probability="1.00000000" edges="2/0to3/0 3/0to2/0 2/0to2/1 2/1to2/2 2/2to2/3 2/3to3/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2445" depart="2445.00"> + <routeDistribution last="0"> + <route cost="36.45" probability="1.00000000" edges="3/3to3/4 3/4to3/3 3/3to2/3 2/3to2/2 2/2to1/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car2446" depart="2446.00"> + <routeDistribution last="0"> + <route cost="43.97" probability="1.00000000" edges="3/2to3/1 3/1to2/1 2/1to2/2 2/2to2/3 2/3to2/4 2/4to3/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car2447" depart="2447.00"> + <routeDistribution last="0"> + <route cost="38.65" probability="1.00000000" edges="1/3to1/4 1/4to2/4 2/4to3/4 3/4to3/3 3/3to4/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2448" depart="2448.00"> + <routeDistribution last="0"> + <route cost="39.46" probability="1.00000000" edges="2/3to2/2 2/2to2/3 2/3to3/3 3/3to4/3 4/3to4/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car2449" depart="2449.00"> + <routeDistribution last="0"> + <route cost="24.65" probability="1.00000000" edges="4/1to4/2 4/2to3/2 3/2to3/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2450" depart="2450.00"> + <routeDistribution last="0"> + <route cost="38.25" probability="1.00000000" edges="2/3to2/4 2/4to2/3 2/3to1/3 1/3to0/3 0/3to0/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car2451" depart="2451.00"> + <routeDistribution last="0"> + <route cost="52.71" probability="1.00000000" edges="2/3to2/4 2/4to2/3 2/3to2/2 2/2to2/1 2/1to1/1 1/1to1/0 1/0to2/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car2452" depart="2452.00"> + <routeDistribution last="0"> + <route cost="43.23" probability="1.00000000" edges="3/0to2/0 2/0to2/1 2/1to2/2 2/2to2/3 2/3to2/4 2/4to1/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car2453" depart="2453.00"> + <routeDistribution last="0"> + <route cost="37.13" probability="1.00000000" edges="0/1to1/1 1/1to1/2 1/2to2/2 2/2to2/3 2/3to3/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2454" depart="2454.00"> + <routeDistribution last="0"> + <route cost="33.71" probability="1.00000000" edges="1/0to2/0 2/0to2/1 2/1to2/2 2/2to1/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car2455" depart="2455.00"> + <routeDistribution last="0"> + <route cost="58.21" probability="1.00000000" edges="4/1to4/2 4/2to4/3 4/3to3/3 3/3to2/3 2/3to1/3 1/3to0/3 0/3to0/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car2456" depart="2456.00"> + <routeDistribution last="0"> + <route cost="58.16" probability="1.00000000" edges="4/2to4/3 4/3to4/2 4/2to4/1 4/1to4/0 4/0to3/0 3/0to2/0 2/0to1/0 1/0to1/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2457" depart="2457.00"> + <routeDistribution last="0"> + <route cost="52.60" probability="1.00000000" edges="0/0to1/0 1/0to2/0 2/0to3/0 3/0to3/1 3/1to3/2 3/2to3/3 3/3to3/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car2458" depart="2458.00"> + <routeDistribution last="0"> + <route cost="39.83" probability="1.00000000" edges="4/1to4/2 4/2to4/1 4/1to3/1 3/1to2/1 2/1to2/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car2459" depart="2459.00"> + <routeDistribution last="0"> + <route cost="33.34" probability="1.00000000" edges="2/0to2/1 2/1to1/1 1/1to0/1 0/1to0/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car2460" depart="2460.00"> + <routeDistribution last="0"> + <route cost="54.51" probability="1.00000000" edges="4/0to4/1 4/1to4/0 4/0to3/0 3/0to2/0 2/0to1/0 1/0to0/0 0/0to1/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car2461" depart="2461.00"> + <routeDistribution last="0"> + <route cost="57.08" probability="1.00000000" edges="4/0to4/1 4/1to4/2 4/2to4/3 4/3to3/3 3/3to2/3 2/3to1/3 1/3to1/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car2462" depart="2462.00"> + <routeDistribution last="0"> + <route cost="21.95" probability="1.00000000" edges="1/2to0/2 0/2to0/3 0/3to0/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car2463" depart="2463.00"> + <routeDistribution last="0"> + <route cost="30.26" probability="1.00000000" edges="0/2to1/2 1/2to1/1 1/1to1/0 1/0to0/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car2464" depart="2464.00"> + <routeDistribution last="0"> + <route cost="31.74" probability="1.00000000" edges="0/4to0/3 0/3to1/3 1/3to1/2 1/2to0/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car2465" depart="2465.00"> + <routeDistribution last="0"> + <route cost="31.44" probability="1.00000000" edges="2/0to2/1 2/1to2/0 2/0to1/0 1/0to0/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car2466" depart="2466.00"> + <routeDistribution last="0"> + <route cost="41.74" probability="1.00000000" edges="3/0to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to1/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car2467" depart="2467.00"> + <routeDistribution last="0"> + <route cost="36.85" probability="1.00000000" edges="2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to1/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car2468" depart="2468.00"> + <routeDistribution last="0"> + <route cost="53.54" probability="1.00000000" edges="2/0to3/0 3/0to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to1/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car2469" depart="2469.00"> + <routeDistribution last="0"> + <route cost="20.83" probability="1.00000000" edges="1/4to2/4 2/4to3/4 3/4to4/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car2470" depart="2470.00"> + <routeDistribution last="0"> + <route cost="41.08" probability="1.00000000" edges="0/3to0/4 0/4to1/4 1/4to1/3 1/3to1/2 1/2to1/1 1/1to0/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2471" depart="2471.00"> + <routeDistribution last="0"> + <route cost="23.15" probability="1.00000000" edges="3/3to2/3 2/3to2/4 2/4to1/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car2472" depart="2472.00"> + <routeDistribution last="0"> + <route cost="23.55" probability="1.00000000" edges="0/1to1/1 1/1to2/1 2/1to3/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2473" depart="2473.00"> + <routeDistribution last="0"> + <route cost="23.53" probability="1.00000000" edges="2/0to2/1 2/1to2/2 2/2to1/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car2474" depart="2474.00"> + <routeDistribution last="0"> + <route cost="24.65" probability="1.00000000" edges="2/0to2/1 2/1to1/1 1/1to1/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car2475" depart="2475.00"> + <routeDistribution last="0"> + <route cost="50.96" probability="1.00000000" edges="4/1to4/0 4/0to3/0 3/0to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2476" depart="2476.00"> + <routeDistribution last="0"> + <route cost="29.23" probability="1.00000000" edges="1/1to2/1 2/1to2/2 2/2to2/3 2/3to2/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car2477" depart="2477.00"> + <routeDistribution last="0"> + <route cost="38.35" probability="1.00000000" edges="3/3to3/4 3/4to3/3 3/3to2/3 2/3to1/3 1/3to0/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2478" depart="2478.00"> + <routeDistribution last="0"> + <route cost="40.53" probability="1.00000000" edges="2/0to2/1 2/1to2/2 2/2to1/2 1/2to0/2 0/2to0/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2479" depart="2479.00"> + <routeDistribution last="0"> + <route cost="33.73" probability="1.00000000" edges="3/0to3/1 3/1to2/1 2/1to1/1 1/1to0/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2480" depart="2480.00"> + <routeDistribution last="0"> + <route cost="38.02" probability="1.00000000" edges="4/3to4/4 4/4to3/4 3/4to2/4 2/4to1/4 1/4to1/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2481" depart="2481.00"> + <routeDistribution last="0"> + <route cost="29.23" probability="1.00000000" edges="2/3to2/2 2/2to2/1 2/1to2/0 2/0to3/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car2482" depart="2482.00"> + <routeDistribution last="0"> + <route cost="29.95" probability="1.00000000" edges="4/2to3/2 3/2to3/1 3/1to2/1 2/1to2/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car2483" depart="2483.00"> + <routeDistribution last="0"> + <route cost="30.64" probability="1.00000000" edges="0/0to0/1 0/1to1/1 1/1to2/1 2/1to3/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2484" depart="2484.00"> + <routeDistribution last="0"> + <route cost="52.06" probability="1.00000000" edges="3/4to4/4 4/4to4/3 4/3to3/3 3/3to3/2 3/2to2/2 2/2to1/2 1/2to2/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car2485" depart="2485.00"> + <routeDistribution last="0"> + <route cost="73.23" probability="1.00000000" edges="4/3to4/4 4/4to4/3 4/3to4/2 4/2to4/1 4/1to4/0 4/0to3/0 3/0to2/0 2/0to1/0 1/0to0/0 0/0to0/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2486" depart="2486.00"> + <routeDistribution last="0"> + <route cost="39.85" probability="1.00000000" edges="4/2to4/3 4/3to4/2 4/2to3/2 3/2to2/2 2/2to1/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car2487" depart="2487.00"> + <routeDistribution last="0"> + <route cost="53.68" probability="1.00000000" edges="2/4to2/3 2/3to2/2 2/2to2/1 2/1to2/0 2/0to3/0 3/0to4/0 4/0to3/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car2488" depart="2488.00"> + <routeDistribution last="0"> + <route cost="43.61" probability="1.00000000" edges="3/0to3/1 3/1to3/2 3/2to3/3 3/3to3/4 3/4to2/4 2/4to1/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car2489" depart="2489.00"> + <routeDistribution last="0"> + <route cost="46.26" probability="1.00000000" edges="2/2to2/3 2/3to2/2 2/2to1/2 1/2to1/1 1/1to0/1 0/1to0/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car2490" depart="2490.00"> + <routeDistribution last="0"> + <route cost="53.21" probability="1.00000000" edges="1/3to0/3 0/3to0/2 0/2to0/1 0/1to0/0 0/0to1/0 1/0to2/0 2/0to1/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car2491" depart="2491.00"> + <routeDistribution last="0"> + <route cost="44.36" probability="1.00000000" edges="2/1to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to2/4 2/4to3/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car2492" depart="2492.00"> + <routeDistribution last="0"> + <route cost="48.16" probability="1.00000000" edges="4/3to4/2 4/2to3/2 3/2to2/2 2/2to1/2 1/2to1/3 1/3to1/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car2493" depart="2493.00"> + <routeDistribution last="0"> + <route cost="40.15" probability="1.00000000" edges="3/1to3/2 3/2to2/2 2/2to1/2 1/2to1/3 1/3to2/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2494" depart="2494.00"> + <routeDistribution last="0"> + <route cost="38.62" probability="1.00000000" edges="4/4to3/4 3/4to2/4 2/4to2/3 2/3to1/3 1/3to2/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2495" depart="2495.00"> + <routeDistribution last="0"> + <route cost="28.54" probability="1.00000000" edges="2/1to2/2 2/2to2/3 2/3to2/4 2/4to2/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2496" depart="2496.00"> + <routeDistribution last="0"> + <route cost="37.82" probability="1.00000000" edges="0/0to1/0 1/0to2/0 2/0to3/0 3/0to3/1 3/1to4/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2497" depart="2497.00"> + <routeDistribution last="0"> + <route cost="44.73" probability="1.00000000" edges="3/0to4/0 4/0to3/0 3/0to2/0 2/0to1/0 1/0to0/0 0/0to0/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2498" depart="2498.00"> + <routeDistribution last="0"> + <route cost="25.03" probability="1.00000000" edges="4/1to4/2 4/2to3/2 3/2to2/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car2499" depart="2499.00"> + <routeDistribution last="0"> + <route cost="44.70" probability="1.00000000" edges="3/3to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to4/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car2500" depart="2500.00"> + <routeDistribution last="0"> + <route cost="30.33" probability="1.00000000" edges="0/2to0/3 0/3to0/2 0/2to0/1 0/1to0/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car2501" depart="2501.00"> + <routeDistribution last="0"> + <route cost="42.95" probability="1.00000000" edges="3/4to4/4 4/4to4/3 4/3to4/2 4/2to4/1 4/1to3/1 3/1to3/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car2502" depart="2502.00"> + <routeDistribution last="0"> + <route cost="59.02" probability="1.00000000" edges="3/1to3/0 3/0to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to0/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car2503" depart="2503.00"> + <routeDistribution last="0"> + <route cost="52.50" probability="1.00000000" edges="1/4to0/4 0/4to0/3 0/3to0/2 0/2to0/1 0/1to0/0 0/0to1/0 1/0to1/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2504" depart="2504.00"> + <routeDistribution last="0"> + <route cost="23.53" probability="1.00000000" edges="3/3to3/2 3/2to3/1 3/1to4/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2505" depart="2505.00"> + <routeDistribution last="0"> + <route cost="30.64" probability="1.00000000" edges="0/0to0/1 0/1to1/1 1/1to2/1 2/1to3/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2506" depart="2506.00"> + <routeDistribution last="0"> + <route cost="46.63" probability="1.00000000" edges="4/2to4/3 4/3to4/2 4/2to3/2 3/2to3/1 3/1to2/1 2/1to2/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car2507" depart="2507.00"> + <routeDistribution last="0"> + <route cost="45.86" probability="1.00000000" edges="1/2to1/3 1/3to2/3 2/3to3/3 3/3to4/3 4/3to4/2 4/2to4/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2508" depart="2508.00"> + <routeDistribution last="0"> + <route cost="30.82" probability="1.00000000" edges="1/4to0/4 0/4to0/3 0/3to0/2 0/2to1/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car2509" depart="2509.00"> + <routeDistribution last="0"> + <route cost="44.73" probability="1.00000000" edges="3/0to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to0/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2510" depart="2510.00"> + <routeDistribution last="0"> + <route cost="29.97" probability="1.00000000" edges="3/2to3/1 3/1to2/1 2/1to1/1 1/1to1/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car2511" depart="2511.00"> + <routeDistribution last="0"> + <route cost="45.47" probability="1.00000000" edges="1/2to1/3 1/3to2/3 2/3to3/3 3/3to4/3 4/3to4/2 4/2to3/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car2512" depart="2512.00"> + <routeDistribution last="0"> + <route cost="30.34" probability="1.00000000" edges="3/2to2/2 2/2to1/2 1/2to1/1 1/1to0/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2513" depart="2513.00"> + <routeDistribution last="0"> + <route cost="53.04" probability="1.00000000" edges="1/0to2/0 2/0to2/1 2/1to2/2 2/2to2/3 2/3to2/4 2/4to3/4 3/4to3/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2514" depart="2514.00"> + <routeDistribution last="0"> + <route cost="29.95" probability="1.00000000" edges="2/3to3/3 3/3to3/2 3/2to2/2 2/2to2/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2515" depart="2515.00"> + <routeDistribution last="0"> + <route cost="42.47" probability="1.00000000" edges="2/3to2/4 2/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to2/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2516" depart="2516.00"> + <routeDistribution last="0"> + <route cost="47.01" probability="1.00000000" edges="2/3to3/3 3/3to2/3 2/3to2/2 2/2to1/2 1/2to0/2 0/2to0/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2517" depart="2517.00"> + <routeDistribution last="0"> + <route cost="29.95" probability="1.00000000" edges="0/3to1/3 1/3to1/2 1/2to0/2 0/2to0/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2518" depart="2518.00"> + <routeDistribution last="0"> + <route cost="38.33" probability="1.00000000" edges="1/2to0/2 0/2to1/2 1/2to1/3 1/3to2/3 2/3to3/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2519" depart="2519.00"> + <routeDistribution last="0"> + <route cost="21.66" probability="1.00000000" edges="1/1to1/2 1/2to2/2 2/2to3/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car2520" depart="2520.00"> + <routeDistribution last="0"> + <route cost="60.73" probability="1.00000000" edges="3/3to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to2/0 2/0to1/0 1/0to2/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car2521" depart="2521.00"> + <routeDistribution last="0"> + <route cost="35.77" probability="1.00000000" edges="3/1to3/2 3/2to3/3 3/3to3/4 3/4to4/4 4/4to4/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2522" depart="2522.00"> + <routeDistribution last="0"> + <route cost="48.53" probability="1.00000000" edges="3/1to4/1 4/1to3/1 3/1to3/2 3/2to3/3 3/3to2/3 2/3to1/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2523" depart="2523.00"> + <routeDistribution last="0"> + <route cost="38.32" probability="1.00000000" edges="1/2to0/2 0/2to1/2 1/2to1/3 1/3to2/3 2/3to2/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car2524" depart="2524.00"> + <routeDistribution last="0"> + <route cost="36.45" probability="1.00000000" edges="2/1to2/2 2/2to3/2 3/2to3/3 3/3to4/3 4/3to3/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2525" depart="2525.00"> + <routeDistribution last="0"> + <route cost="38.02" probability="1.00000000" edges="3/0to4/0 4/0to4/1 4/1to4/2 4/2to4/3 4/3to3/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2526" depart="2526.00"> + <routeDistribution last="0"> + <route cost="53.82" probability="1.00000000" edges="0/1to1/1 1/1to1/2 1/2to2/2 2/2to2/3 2/3to3/3 3/3to4/3 4/3to3/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2527" depart="2527.00"> + <routeDistribution last="0"> + <route cost="58.47" probability="1.00000000" edges="2/1to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to2/4 2/4to3/4 3/4to4/4 4/4to4/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2528" depart="2528.00"> + <routeDistribution last="0"> + <route cost="33.71" probability="1.00000000" edges="1/2to1/1 1/1to2/1 2/1to3/1 3/1to3/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car2529" depart="2529.00"> + <routeDistribution last="0"> + <route cost="52.58" probability="1.00000000" edges="2/1to3/1 3/1to3/2 3/2to3/3 3/3to3/4 3/4to2/4 2/4to1/4 1/4to0/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car2530" depart="2530.00"> + <routeDistribution last="0"> + <route cost="45.83" probability="1.00000000" edges="3/3to2/3 2/3to3/3 3/3to4/3 4/3to4/2 4/2to4/1 4/1to4/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car2531" depart="2531.00"> + <routeDistribution last="0"> + <route cost="28.54" probability="1.00000000" edges="1/1to1/0 1/0to1/1 1/1to1/2 1/2to1/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2532" depart="2532.00"> + <routeDistribution last="0"> + <route cost="30.24" probability="1.00000000" edges="0/0to0/1 0/1to1/1 1/1to1/0 1/0to2/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car2533" depart="2533.00"> + <routeDistribution last="0"> + <route cost="30.35" probability="1.00000000" edges="0/2to0/3 0/3to1/3 1/3to2/3 2/3to3/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2534" depart="2534.00"> + <routeDistribution last="0"> + <route cost="52.41" probability="1.00000000" edges="0/1to0/0 0/0to1/0 1/0to2/0 2/0to3/0 3/0to3/1 3/1to3/2 3/2to3/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2535" depart="2535.00"> + <routeDistribution last="0"> + <route cost="54.08" probability="1.00000000" edges="4/4to3/4 3/4to2/4 2/4to2/3 2/3to2/2 2/2to2/1 2/1to2/0 2/0to3/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car2536" depart="2536.00"> + <routeDistribution last="0"> + <route cost="25.03" probability="1.00000000" edges="0/2to0/1 0/1to1/1 1/1to2/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2537" depart="2537.00"> + <routeDistribution last="0"> + <route cost="42.27" probability="1.00000000" edges="1/0to0/0 0/0to0/1 0/1to0/2 0/2to0/3 0/3to1/3 1/3to0/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2538" depart="2538.00"> + <routeDistribution last="0"> + <route cost="48.84" probability="1.00000000" edges="3/0to3/1 3/1to2/1 2/1to1/1 1/1to0/1 0/1to0/2 0/2to1/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car2539" depart="2539.00"> + <routeDistribution last="0"> + <route cost="46.66" probability="1.00000000" edges="2/2to1/2 1/2to1/3 1/3to1/4 1/4to2/4 2/4to3/4 3/4to2/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car2540" depart="2540.00"> + <routeDistribution last="0"> + <route cost="46.60" probability="1.00000000" edges="2/4to2/3 2/3to2/2 2/2to2/1 2/1to2/0 2/0to3/0 3/0to3/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2541" depart="2541.00"> + <routeDistribution last="0"> + <route cost="32.23" probability="1.00000000" edges="0/3to0/2 0/2to0/1 0/1to1/1 1/1to2/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2542" depart="2542.00"> + <routeDistribution last="0"> + <route cost="44.76" probability="1.00000000" edges="1/3to2/3 2/3to2/2 2/2to1/2 1/2to1/1 1/1to0/1 0/1to1/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2543" depart="2543.00"> + <routeDistribution last="0"> + <route cost="38.65" probability="1.00000000" edges="1/3to1/4 1/4to2/4 2/4to3/4 3/4to3/3 3/3to4/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2544" depart="2544.00"> + <routeDistribution last="0"> + <route cost="42.47" probability="1.00000000" edges="3/0to2/0 2/0to2/1 2/1to2/2 2/2to2/3 2/3to3/3 3/3to3/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car2545" depart="2545.00"> + <routeDistribution last="0"> + <route cost="43.61" probability="1.00000000" edges="3/0to3/1 3/1to3/2 3/2to3/3 3/3to3/4 3/4to2/4 2/4to1/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car2546" depart="2546.00"> + <routeDistribution last="0"> + <route cost="51.64" probability="1.00000000" edges="4/0to3/0 3/0to2/0 2/0to1/0 1/0to0/0 0/0to0/1 0/1to0/2 0/2to0/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2547" depart="2547.00"> + <routeDistribution last="0"> + <route cost="47.74" probability="1.00000000" edges="0/3to1/3 1/3to2/3 2/3to3/3 3/3to4/3 4/3to4/2 4/2to4/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2548" depart="2548.00"> + <routeDistribution last="0"> + <route cost="45.84" probability="1.00000000" edges="2/1to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to0/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2549" depart="2549.00"> + <routeDistribution last="0"> + <route cost="49.60" probability="1.00000000" edges="3/0to3/1 3/1to3/2 3/2to2/2 2/2to1/2 1/2to0/2 0/2to0/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2550" depart="2550.00"> + <routeDistribution last="0"> + <route cost="31.84" probability="1.00000000" edges="3/1to3/2 3/2to3/3 3/3to2/3 2/3to2/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car2551" depart="2551.00"> + <routeDistribution last="0"> + <route cost="37.96" probability="1.00000000" edges="1/2to2/2 2/2to1/2 1/2to1/3 1/3to1/4 1/4to2/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car2552" depart="2552.00"> + <routeDistribution last="0"> + <route cost="38.33" probability="1.00000000" edges="0/2to1/2 1/2to2/2 2/2to2/3 2/3to3/3 3/3to2/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2553" depart="2553.00"> + <routeDistribution last="0"> + <route cost="35.66" probability="1.00000000" edges="1/1to1/2 1/2to1/3 1/3to1/4 1/4to2/4 2/4to2/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2554" depart="2554.00"> + <routeDistribution last="0"> + <route cost="37.26" probability="1.00000000" edges="3/1to2/1 2/1to2/0 2/0to1/0 1/0to0/0 0/0to0/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2555" depart="2555.00"> + <routeDistribution last="0"> + <route cost="30.34" probability="1.00000000" edges="1/4to2/4 2/4to3/4 3/4to3/3 3/3to4/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2556" depart="2556.00"> + <routeDistribution last="0"> + <route cost="20.27" probability="1.00000000" edges="4/1to4/0 4/0to3/0 3/0to2/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car2557" depart="2557.00"> + <routeDistribution last="0"> + <route cost="31.54" probability="1.00000000" edges="1/3to2/3 2/3to3/3 3/3to4/3 4/3to3/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2558" depart="2558.00"> + <routeDistribution last="0"> + <route cost="44.41" probability="1.00000000" edges="1/3to1/4 1/4to1/3 1/3to1/2 1/2to1/1 1/1to1/0 1/0to2/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car2559" depart="2559.00"> + <routeDistribution last="0"> + <route cost="43.77" probability="1.00000000" edges="0/3to0/2 0/2to0/3 0/3to0/4 0/4to1/4 1/4to2/4 2/4to2/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2560" depart="2560.00"> + <routeDistribution last="0"> + <route cost="55.34" probability="1.00000000" edges="0/2to0/1 0/1to0/2 0/2to1/2 1/2to1/3 1/3to2/3 2/3to3/3 3/3to4/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2561" depart="2561.00"> + <routeDistribution last="0"> + <route cost="37.53" probability="1.00000000" edges="1/0to2/0 2/0to2/1 2/1to2/2 2/2to2/3 2/3to3/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2562" depart="2562.00"> + <routeDistribution last="0"> + <route cost="40.92" probability="1.00000000" edges="3/0to3/1 3/1to3/2 3/2to2/2 2/2to1/2 1/2to0/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car2563" depart="2563.00"> + <routeDistribution last="0"> + <route cost="61.82" probability="1.00000000" edges="3/3to4/3 4/3to3/3 3/3to3/2 3/2to2/2 2/2to2/1 2/1to1/1 1/1to0/1 0/1to1/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2564" depart="2564.00"> + <routeDistribution last="0"> + <route cost="45.16" probability="1.00000000" edges="1/3to0/3 0/3to1/3 1/3to2/3 2/3to2/2 2/2to2/1 2/1to1/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2565" depart="2565.00"> + <routeDistribution last="0"> + <route cost="31.45" probability="1.00000000" edges="4/3to4/2 4/2to3/2 3/2to3/3 3/3to2/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2566" depart="2566.00"> + <routeDistribution last="0"> + <route cost="63.22" probability="1.00000000" edges="1/3to0/3 0/3to1/3 1/3to2/3 2/3to3/3 3/3to4/3 4/3to4/2 4/2to4/1 4/1to4/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car2567" depart="2567.00"> + <routeDistribution last="0"> + <route cost="36.52" probability="1.00000000" edges="3/3to3/4 3/4to2/4 2/4to1/4 1/4to0/4 0/4to0/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2568" depart="2568.00"> + <routeDistribution last="0"> + <route cost="42.97" probability="1.00000000" edges="1/4to1/3 1/3to1/2 1/2to1/1 1/1to1/0 1/0to0/0 0/0to0/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2569" depart="2569.00"> + <routeDistribution last="0"> + <route cost="53.54" probability="1.00000000" edges="2/4to1/4 1/4to2/4 2/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to3/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car2570" depart="2570.00"> + <routeDistribution last="0"> + <route cost="30.32" probability="1.00000000" edges="0/1to1/1 1/1to1/2 1/2to2/2 2/2to2/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2571" depart="2571.00"> + <routeDistribution last="0"> + <route cost="44.73" probability="1.00000000" edges="3/4to4/4 4/4to4/3 4/3to4/2 4/2to4/1 4/1to4/0 4/0to4/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2572" depart="2572.00"> + <routeDistribution last="0"> + <route cost="55.02" probability="1.00000000" edges="1/1to0/1 0/1to1/1 1/1to1/2 1/2to2/2 2/2to3/2 3/2to4/2 4/2to3/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car2573" depart="2573.00"> + <routeDistribution last="0"> + <route cost="23.82" probability="1.00000000" edges="4/4to3/4 3/4to2/4 2/4to2/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2574" depart="2574.00"> + <routeDistribution last="0"> + <route cost="51.92" probability="1.00000000" edges="4/3to4/4 4/4to4/3 4/3to4/2 4/2to4/1 4/1to4/0 4/0to3/0 3/0to2/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car2575" depart="2575.00"> + <routeDistribution last="0"> + <route cost="65.46" probability="1.00000000" edges="2/0to3/0 3/0to2/0 2/0to1/0 1/0to0/0 0/0to0/1 0/1to0/2 0/2to0/3 0/3to0/4 0/4to1/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car2576" depart="2576.00"> + <routeDistribution last="0"> + <route cost="28.45" probability="1.00000000" edges="2/1to2/2 2/2to3/2 3/2to3/3 3/3to4/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2577" depart="2577.00"> + <routeDistribution last="0"> + <route cost="30.32" probability="1.00000000" edges="1/1to2/1 2/1to2/2 2/2to3/2 3/2to3/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2578" depart="2578.00"> + <routeDistribution last="0"> + <route cost="45.86" probability="1.00000000" edges="4/3to4/2 4/2to3/2 3/2to2/2 2/2to1/2 1/2to1/3 1/3to1/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car2579" depart="2579.00"> + <routeDistribution last="0"> + <route cost="47.03" probability="1.00000000" edges="3/2to4/2 4/2to3/2 3/2to3/1 3/1to2/1 2/1to1/1 1/1to0/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2580" depart="2580.00"> + <routeDistribution last="0"> + <route cost="57.36" probability="1.00000000" edges="1/0to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to2/4 2/4to3/4 3/4to4/4 4/4to4/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2581" depart="2581.00"> + <routeDistribution last="0"> + <route cost="28.84" probability="1.00000000" edges="1/4to1/3 1/3to0/3 0/3to0/2 0/2to0/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2582" depart="2582.00"> + <routeDistribution last="0"> + <route cost="38.10" probability="1.00000000" edges="0/1to0/0 0/0to0/1 0/1to0/2 0/2to0/3 0/3to0/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car2583" depart="2583.00"> + <routeDistribution last="0"> + <route cost="38.63" probability="1.00000000" edges="1/2to2/2 2/2to2/1 2/1to1/1 1/1to1/0 1/0to2/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car2584" depart="2584.00"> + <routeDistribution last="0"> + <route cost="36.85" probability="1.00000000" edges="2/4to1/4 1/4to2/4 2/4to3/4 3/4to3/3 3/3to3/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car2585" depart="2585.00"> + <routeDistribution last="0"> + <route cost="35.25" probability="1.00000000" edges="4/0to3/0 3/0to3/1 3/1to3/2 3/2to4/2 4/2to3/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car2586" depart="2586.00"> + <routeDistribution last="0"> + <route cost="38.21" probability="1.00000000" edges="0/0to1/0 1/0to2/0 2/0to3/0 3/0to3/1 3/1to3/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car2587" depart="2587.00"> + <routeDistribution last="0"> + <route cost="29.66" probability="1.00000000" edges="1/4to2/4 2/4to3/4 3/4to3/3 3/3to3/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car2588" depart="2588.00"> + <routeDistribution last="0"> + <route cost="51.10" probability="1.00000000" edges="0/3to0/2 0/2to1/2 1/2to2/2 2/2to3/2 3/2to4/2 4/2to4/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2589" depart="2589.00"> + <routeDistribution last="0"> + <route cost="39.83" probability="1.00000000" edges="1/3to0/3 0/3to1/3 1/3to1/2 1/2to1/1 1/1to2/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2590" depart="2590.00"> + <routeDistribution last="0"> + <route cost="43.66" probability="1.00000000" edges="3/4to2/4 2/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to2/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2591" depart="2591.00"> + <routeDistribution last="0"> + <route cost="28.32" probability="1.00000000" edges="4/4to4/3 4/3to4/2 4/2to4/1 4/1to4/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car2592" depart="2592.00"> + <routeDistribution last="0"> + <route cost="58.27" probability="1.00000000" edges="4/1to4/0 4/0to3/0 3/0to2/0 2/0to1/0 1/0to0/0 0/0to0/1 0/1to0/2 0/2to0/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2593" depart="2593.00"> + <routeDistribution last="0"> + <route cost="58.21" probability="1.00000000" edges="0/4to0/3 0/3to0/2 0/2to1/2 1/2to2/2 2/2to3/2 3/2to4/2 4/2to4/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2594" depart="2594.00"> + <routeDistribution last="0"> + <route cost="59.66" probability="1.00000000" edges="3/3to4/3 4/3to4/2 4/2to4/1 4/1to4/0 4/0to3/0 3/0to2/0 2/0to1/0 1/0to2/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car2595" depart="2595.00"> + <routeDistribution last="0"> + <route cost="31.54" probability="1.00000000" edges="2/3to1/3 1/3to2/3 2/3to3/3 3/3to4/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2596" depart="2596.00"> + <routeDistribution last="0"> + <route cost="43.34" probability="1.00000000" edges="1/3to1/4 1/4to1/3 1/3to1/2 1/2to1/1 1/1to0/1 0/1to1/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2597" depart="2597.00"> + <routeDistribution last="0"> + <route cost="28.47" probability="1.00000000" edges="3/3to4/3 4/3to4/2 4/2to4/1 4/1to3/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2598" depart="2598.00"> + <routeDistribution last="0"> + <route cost="28.32" probability="1.00000000" edges="4/0to4/1 4/1to4/2 4/2to4/3 4/3to4/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car2599" depart="2599.00"> + <routeDistribution last="0"> + <route cost="44.45" probability="1.00000000" edges="4/1to4/0 4/0to3/0 3/0to2/0 2/0to1/0 1/0to1/1 1/1to0/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2600" depart="2600.00"> + <routeDistribution last="0"> + <route cost="47.34" probability="1.00000000" edges="0/2to0/3 0/3to1/3 1/3to2/3 2/3to2/2 2/2to2/1 2/1to3/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2601" depart="2601.00"> + <routeDistribution last="0"> + <route cost="52.46" probability="1.00000000" edges="3/1to3/0 3/0to2/0 2/0to1/0 1/0to0/0 0/0to0/1 0/1to0/2 0/2to0/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2602" depart="2602.00"> + <routeDistribution last="0"> + <route cost="44.62" probability="1.00000000" edges="3/0to4/0 4/0to3/0 3/0to2/0 2/0to2/1 2/1to2/2 2/2to2/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2603" depart="2603.00"> + <routeDistribution last="0"> + <route cost="36.76" probability="1.00000000" edges="2/0to2/1 2/1to3/1 3/1to3/2 3/2to4/2 4/2to4/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2604" depart="2604.00"> + <routeDistribution last="0"> + <route cost="42.51" probability="1.00000000" edges="2/4to1/4 1/4to0/4 0/4to0/3 0/3to0/2 0/2to0/1 0/1to0/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car2605" depart="2605.00"> + <routeDistribution last="0"> + <route cost="30.34" probability="1.00000000" edges="4/1to3/1 3/1to3/0 3/0to2/0 2/0to1/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car2606" depart="2606.00"> + <routeDistribution last="0"> + <route cost="65.23" probability="1.00000000" edges="1/3to0/3 0/3to1/3 1/3to2/3 2/3to3/3 3/3to4/3 4/3to4/2 4/2to4/1 4/1to4/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car2607" depart="2607.00"> + <routeDistribution last="0"> + <route cost="32.66" probability="1.00000000" edges="2/3to3/3 3/3to4/3 4/3to4/2 4/2to4/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2608" depart="2608.00"> + <routeDistribution last="0"> + <route cost="51.82" probability="1.00000000" edges="2/1to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to0/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car2609" depart="2609.00"> + <routeDistribution last="0"> + <route cost="47.03" probability="1.00000000" edges="2/4to1/4 1/4to2/4 2/4to2/3 2/3to2/2 2/2to2/1 2/1to3/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2610" depart="2610.00"> + <routeDistribution last="0"> + <route cost="23.15" probability="1.00000000" edges="3/0to2/0 2/0to2/1 2/1to1/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2611" depart="2611.00"> + <routeDistribution last="0"> + <route cost="30.73" probability="1.00000000" edges="3/4to2/4 2/4to1/4 1/4to1/3 1/3to1/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car2612" depart="2612.00"> + <routeDistribution last="0"> + <route cost="49.66" probability="1.00000000" edges="1/4to2/4 2/4to2/3 2/3to2/2 2/2to2/1 2/1to2/0 2/0to1/0 1/0to1/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2613" depart="2613.00"> + <routeDistribution last="0"> + <route cost="44.63" probability="1.00000000" edges="1/1to1/2 1/2to2/2 2/2to2/1 2/1to2/0 2/0to3/0 3/0to4/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car2614" depart="2614.00"> + <routeDistribution last="0"> + <route cost="34.45" probability="1.00000000" edges="4/0to3/0 3/0to2/0 2/0to2/1 2/1to2/2 2/2to3/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car2615" depart="2615.00"> + <routeDistribution last="0"> + <route cost="44.62" probability="1.00000000" edges="3/0to4/0 4/0to3/0 3/0to3/1 3/1to3/2 3/2to3/3 3/3to3/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car2616" depart="2616.00"> + <routeDistribution last="0"> + <route cost="56.54" probability="1.00000000" edges="4/2to4/3 4/3to4/2 4/2to3/2 3/2to2/2 2/2to1/2 1/2to0/2 0/2to1/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car2617" depart="2617.00"> + <routeDistribution last="0"> + <route cost="30.04" probability="1.00000000" edges="3/4to3/3 3/3to3/2 3/2to3/1 3/1to3/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car2618" depart="2618.00"> + <routeDistribution last="0"> + <route cost="51.65" probability="1.00000000" edges="4/2to3/2 3/2to3/1 3/1to3/0 3/0to2/0 2/0to1/0 1/0to0/0 0/0to0/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2619" depart="2619.00"> + <routeDistribution last="0"> + <route cost="37.15" probability="1.00000000" edges="1/2to2/2 2/2to2/3 2/3to2/4 2/4to3/4 3/4to3/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2620" depart="2620.00"> + <routeDistribution last="0"> + <route cost="50.85" probability="1.00000000" edges="3/3to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to2/0 2/0to2/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2621" depart="2621.00"> + <routeDistribution last="0"> + <route cost="36.42" probability="1.00000000" edges="2/0to2/1 2/1to2/2 2/2to2/3 2/3to2/4 2/4to1/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car2622" depart="2622.00"> + <routeDistribution last="0"> + <route cost="52.01" probability="1.00000000" edges="0/4to0/3 0/3to0/2 0/2to0/1 0/1to0/0 0/0to1/0 1/0to2/0 2/0to1/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car2623" depart="2623.00"> + <routeDistribution last="0"> + <route cost="30.35" probability="1.00000000" edges="1/1to1/2 1/2to2/2 2/2to3/2 3/2to4/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car2624" depart="2624.00"> + <routeDistribution last="0"> + <route cost="40.22" probability="1.00000000" edges="3/3to4/3 4/3to3/3 3/3to2/3 2/3to1/3 1/3to1/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car2625" depart="2625.00"> + <routeDistribution last="0"> + <route cost="45.84" probability="1.00000000" edges="1/0to2/0 2/0to2/1 2/1to2/2 2/2to2/3 2/3to3/3 3/3to3/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car2626" depart="2626.00"> + <routeDistribution last="0"> + <route cost="40.24" probability="1.00000000" edges="3/1to4/1 4/1to3/1 3/1to2/1 2/1to1/1 1/1to0/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2627" depart="2627.00"> + <routeDistribution last="0"> + <route cost="35.74" probability="1.00000000" edges="2/1to2/0 2/0to2/1 2/1to2/2 2/2to2/3 2/3to2/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car2628" depart="2628.00"> + <routeDistribution last="0"> + <route cost="40.24" probability="1.00000000" edges="0/3to1/3 1/3to2/3 2/3to3/3 3/3to4/3 4/3to3/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2629" depart="2629.00"> + <routeDistribution last="0"> + <route cost="58.83" probability="1.00000000" edges="0/0to0/1 0/1to0/2 0/2to0/3 0/3to0/4 0/4to1/4 1/4to2/4 2/4to3/4 3/4to2/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car2630" depart="2630.00"> + <routeDistribution last="0"> + <route cost="23.53" probability="1.00000000" edges="2/0to3/0 3/0to3/1 3/1to3/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car2631" depart="2631.00"> + <routeDistribution last="0"> + <route cost="36.03" probability="1.00000000" edges="2/0to2/1 2/1to3/1 3/1to3/2 3/2to3/3 3/3to3/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car2632" depart="2632.00"> + <routeDistribution last="0"> + <route cost="52.60" probability="1.00000000" edges="0/0to1/0 1/0to2/0 2/0to3/0 3/0to3/1 3/1to3/2 3/2to3/3 3/3to3/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car2633" depart="2633.00"> + <routeDistribution last="0"> + <route cost="68.66" probability="1.00000000" edges="4/2to4/1 4/1to3/1 3/1to2/1 2/1to1/1 1/1to0/1 0/1to0/2 0/2to0/3 0/3to0/4 0/4to1/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car2634" depart="2634.00"> + <routeDistribution last="0"> + <route cost="45.86" probability="1.00000000" edges="4/3to4/2 4/2to3/2 3/2to2/2 2/2to1/2 1/2to1/3 1/3to1/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car2635" depart="2635.00"> + <routeDistribution last="0"> + <route cost="45.92" probability="1.00000000" edges="3/0to3/1 3/1to3/2 3/2to3/3 3/3to3/4 3/4to2/4 2/4to3/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car2636" depart="2636.00"> + <routeDistribution last="0"> + <route cost="41.47" probability="1.00000000" edges="2/4to3/4 3/4to4/4 4/4to4/3 4/3to4/2 4/2to4/1 4/1to3/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2637" depart="2637.00"> + <routeDistribution last="0"> + <route cost="52.21" probability="1.00000000" edges="4/4to3/4 3/4to2/4 2/4to1/4 1/4to1/3 1/3to1/2 1/2to1/1 1/1to0/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2638" depart="2638.00"> + <routeDistribution last="0"> + <route cost="42.16" probability="1.00000000" edges="2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to2/3 2/3to1/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2639" depart="2639.00"> + <routeDistribution last="0"> + <route cost="53.65" probability="1.00000000" edges="1/0to2/0 2/0to1/0 1/0to0/0 0/0to0/1 0/1to0/2 0/2to0/3 0/3to0/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car2640" depart="2640.00"> + <routeDistribution last="0"> + <route cost="50.41" probability="1.00000000" edges="4/1to4/2 4/2to3/2 3/2to2/2 2/2to1/2 1/2to0/2 0/2to1/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car2641" depart="2641.00"> + <routeDistribution last="0"> + <route cost="39.83" probability="1.00000000" edges="0/3to0/2 0/2to0/3 0/3to1/3 1/3to2/3 2/3to2/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car2642" depart="2642.00"> + <routeDistribution last="0"> + <route cost="44.82" probability="1.00000000" edges="0/1to0/0 0/0to1/0 1/0to2/0 2/0to3/0 3/0to3/1 3/1to4/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2643" depart="2643.00"> + <routeDistribution last="0"> + <route cost="64.30" probability="1.00000000" edges="0/2to0/1 0/1to0/2 0/2to1/2 1/2to1/3 1/3to2/3 2/3to3/3 3/3to4/3 4/3to4/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car2644" depart="2644.00"> + <routeDistribution last="0"> + <route cost="41.35" probability="1.00000000" edges="3/1to2/1 2/1to1/1 1/1to0/1 0/1to0/2 0/2to0/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2645" depart="2645.00"> + <routeDistribution last="0"> + <route cost="30.34" probability="1.00000000" edges="0/1to1/1 1/1to2/1 2/1to2/2 2/2to3/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car2646" depart="2646.00"> + <routeDistribution last="0"> + <route cost="45.10" probability="1.00000000" edges="1/0to0/0 0/0to1/0 1/0to2/0 2/0to3/0 3/0to4/0 4/0to4/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2647" depart="2647.00"> + <routeDistribution last="0"> + <route cost="53.68" probability="1.00000000" edges="2/0to2/1 2/1to2/2 2/2to2/3 2/3to2/4 2/4to1/4 1/4to0/4 0/4to1/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car2648" depart="2648.00"> + <routeDistribution last="0"> + <route cost="23.53" probability="1.00000000" edges="2/2to1/2 1/2to0/2 0/2to0/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2649" depart="2649.00"> + <routeDistribution last="0"> + <route cost="20.16" probability="1.00000000" edges="4/3to4/2 4/2to4/1 4/1to3/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2650" depart="2650.00"> + <routeDistribution last="0"> + <route cost="28.47" probability="1.00000000" edges="0/3to1/3 1/3to1/2 1/2to1/1 1/1to0/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2651" depart="2651.00"> + <routeDistribution last="0"> + <route cost="45.16" probability="1.00000000" edges="2/1to3/1 3/1to2/1 2/1to2/2 2/2to2/3 2/3to2/4 2/4to3/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car2652" depart="2652.00"> + <routeDistribution last="0"> + <route cost="30.34" probability="1.00000000" edges="4/3to3/3 3/3to3/4 3/4to2/4 2/4to1/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car2653" depart="2653.00"> + <routeDistribution last="0"> + <route cost="20.83" probability="1.00000000" edges="0/4to0/3 0/3to0/2 0/2to0/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2654" depart="2654.00"> + <routeDistribution last="0"> + <route cost="59.55" probability="1.00000000" edges="2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to2/4 2/4to3/4 3/4to2/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car2655" depart="2655.00"> + <routeDistribution last="0"> + <route cost="34.27" probability="1.00000000" edges="4/1to4/0 4/0to3/0 3/0to2/0 2/0to2/1 2/1to2/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car2656" depart="2656.00"> + <routeDistribution last="0"> + <route cost="39.34" probability="1.00000000" edges="1/2to2/2 2/2to3/2 3/2to4/2 4/2to4/1 4/1to4/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car2657" depart="2657.00"> + <routeDistribution last="0"> + <route cost="51.52" probability="1.00000000" edges="3/0to2/0 2/0to2/1 2/1to2/2 2/2to2/3 2/3to3/3 3/3to3/4 3/4to2/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car2658" depart="2658.00"> + <routeDistribution last="0"> + <route cost="24.65" probability="1.00000000" edges="4/1to4/2 4/2to3/2 3/2to3/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2659" depart="2659.00"> + <routeDistribution last="0"> + <route cost="35.65" probability="1.00000000" edges="1/0to1/1 1/1to2/1 2/1to2/2 2/2to2/3 2/3to3/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2660" depart="2660.00"> + <routeDistribution last="0"> + <route cost="58.74" probability="1.00000000" edges="2/0to1/0 1/0to1/1 1/1to2/1 2/1to2/2 2/2to3/2 3/2to3/3 3/3to4/3 4/3to3/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2661" depart="2661.00"> + <routeDistribution last="0"> + <route cost="31.54" probability="1.00000000" edges="1/1to2/1 2/1to3/1 3/1to4/1 4/1to3/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2662" depart="2662.00"> + <routeDistribution last="0"> + <route cost="39.41" probability="1.00000000" edges="1/2to1/1 1/1to1/0 1/0to2/0 2/0to3/0 3/0to3/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2663" depart="2663.00"> + <routeDistribution last="0"> + <route cost="31.85" probability="1.00000000" edges="1/2to2/2 2/2to3/2 3/2to4/2 4/2to4/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2664" depart="2664.00"> + <routeDistribution last="0"> + <route cost="30.26" probability="1.00000000" edges="4/4to4/3 4/3to3/3 3/3to2/3 2/3to2/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car2665" depart="2665.00"> + <routeDistribution last="0"> + <route cost="54.44" probability="1.00000000" edges="4/4to4/3 4/3to3/3 3/3to3/2 3/2to2/2 2/2to1/2 1/2to0/2 0/2to0/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2666" depart="2666.00"> + <routeDistribution last="0"> + <route cost="48.16" probability="1.00000000" edges="0/3to0/2 0/2to0/3 0/3to1/3 1/3to2/3 2/3to3/3 3/3to3/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car2667" depart="2667.00"> + <routeDistribution last="0"> + <route cost="33.71" probability="1.00000000" edges="2/1to2/2 2/2to1/2 1/2to0/2 0/2to0/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2668" depart="2668.00"> + <routeDistribution last="0"> + <route cost="37.53" probability="1.00000000" edges="1/4to2/4 2/4to3/4 3/4to3/3 3/3to3/2 3/2to4/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car2669" depart="2669.00"> + <routeDistribution last="0"> + <route cost="37.25" probability="1.00000000" edges="4/0to4/1 4/1to4/0 4/0to3/0 3/0to2/0 2/0to1/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car2670" depart="2670.00"> + <routeDistribution last="0"> + <route cost="28.32" probability="1.00000000" edges="0/0to0/1 0/1to0/2 0/2to0/3 0/3to0/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car2671" depart="2671.00"> + <routeDistribution last="0"> + <route cost="53.05" probability="1.00000000" edges="4/2to4/1 4/1to3/1 3/1to2/1 2/1to1/1 1/1to1/2 1/2to1/3 1/3to1/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car2672" depart="2672.00"> + <routeDistribution last="0"> + <route cost="31.54" probability="1.00000000" edges="3/2to4/2 4/2to3/2 3/2to2/2 2/2to1/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car2673" depart="2673.00"> + <routeDistribution last="0"> + <route cost="46.26" probability="1.00000000" edges="0/2to0/1 0/1to0/2 0/2to1/2 1/2to1/3 1/3to2/3 2/3to2/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car2674" depart="2674.00"> + <routeDistribution last="0"> + <route cost="45.44" probability="1.00000000" edges="1/1to2/1 2/1to2/2 2/2to3/2 3/2to3/3 3/3to4/3 4/3to4/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car2675" depart="2675.00"> + <routeDistribution last="0"> + <route cost="44.06" probability="1.00000000" edges="0/4to0/3 0/3to0/4 0/4to1/4 1/4to2/4 2/4to3/4 3/4to3/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2676" depart="2676.00"> + <routeDistribution last="0"> + <route cost="28.32" probability="1.00000000" edges="4/0to3/0 3/0to2/0 2/0to1/0 1/0to0/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car2677" depart="2677.00"> + <routeDistribution last="0"> + <route cost="46.74" probability="1.00000000" edges="0/0to1/0 1/0to0/0 0/0to0/1 0/1to0/2 0/2to0/3 0/3to0/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car2678" depart="2678.00"> + <routeDistribution last="0"> + <route cost="34.66" probability="1.00000000" edges="2/0to1/0 1/0to0/0 0/0to0/1 0/1to0/2 0/2to0/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2679" depart="2679.00"> + <routeDistribution last="0"> + <route cost="39.83" probability="1.00000000" edges="3/1to3/2 3/2to3/1 3/1to2/1 2/1to1/1 1/1to1/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car2680" depart="2680.00"> + <routeDistribution last="0"> + <route cost="45.44" probability="1.00000000" edges="3/1to4/1 4/1to3/1 3/1to3/2 3/2to3/3 3/3to3/4 3/4to4/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car2681" depart="2681.00"> + <routeDistribution last="0"> + <route cost="53.01" probability="1.00000000" edges="3/4to2/4 2/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to4/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car2682" depart="2682.00"> + <routeDistribution last="0"> + <route cost="37.53" probability="1.00000000" edges="2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to0/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2683" depart="2683.00"> + <routeDistribution last="0"> + <route cost="45.21" probability="1.00000000" edges="4/2to4/3 4/3to4/4 4/4to3/4 3/4to2/4 2/4to1/4 1/4to1/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2684" depart="2684.00"> + <routeDistribution last="0"> + <route cost="52.30" probability="1.00000000" edges="2/0to3/0 3/0to4/0 4/0to4/1 4/1to4/2 4/2to4/3 4/3to4/4 4/4to4/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2685" depart="2685.00"> + <routeDistribution last="0"> + <route cost="44.41" probability="1.00000000" edges="1/3to1/4 1/4to1/3 1/3to1/2 1/2to1/1 1/1to1/0 1/0to2/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car2686" depart="2686.00"> + <routeDistribution last="0"> + <route cost="37.96" probability="1.00000000" edges="3/1to3/0 3/0to2/0 2/0to1/0 1/0to1/1 1/1to1/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car2687" depart="2687.00"> + <routeDistribution last="0"> + <route cost="41.08" probability="1.00000000" edges="4/1to4/0 4/0to3/0 3/0to3/1 3/1to3/2 3/2to3/3 3/3to4/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2688" depart="2688.00"> + <routeDistribution last="0"> + <route cost="63.45" probability="1.00000000" edges="3/4to4/4 4/4to4/3 4/3to4/2 4/2to4/1 4/1to4/0 4/0to3/0 3/0to2/0 2/0to1/0 1/0to0/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car2689" depart="2689.00"> + <routeDistribution last="0"> + <route cost="30.62" probability="1.00000000" edges="1/0to0/0 0/0to1/0 1/0to2/0 2/0to3/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car2690" depart="2690.00"> + <routeDistribution last="0"> + <route cost="52.71" probability="1.00000000" edges="2/3to2/4 2/4to2/3 2/3to2/2 2/2to2/1 2/1to1/1 1/1to1/0 1/0to2/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car2691" depart="2691.00"> + <routeDistribution last="0"> + <route cost="40.84" probability="1.00000000" edges="4/3to3/3 3/3to2/3 2/3to1/3 1/3to0/3 0/3to0/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car2692" depart="2692.00"> + <routeDistribution last="0"> + <route cost="44.70" probability="1.00000000" edges="1/1to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to0/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car2693" depart="2693.00"> + <routeDistribution last="0"> + <route cost="38.72" probability="1.00000000" edges="1/3to1/2 1/2to1/1 1/1to1/0 1/0to2/0 2/0to1/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car2694" depart="2694.00"> + <routeDistribution last="0"> + <route cost="33.71" probability="1.00000000" edges="2/1to2/2 2/2to1/2 1/2to0/2 0/2to0/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2695" depart="2695.00"> + <routeDistribution last="0"> + <route cost="36.71" probability="1.00000000" edges="3/4to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to4/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car2696" depart="2696.00"> + <routeDistribution last="0"> + <route cost="28.84" probability="1.00000000" edges="1/4to1/3 1/3to0/3 0/3to0/2 0/2to0/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2697" depart="2697.00"> + <routeDistribution last="0"> + <route cost="38.72" probability="1.00000000" edges="1/1to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to0/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2698" depart="2698.00"> + <routeDistribution last="0"> + <route cost="38.10" probability="1.00000000" edges="4/4to4/3 4/3to4/2 4/2to4/1 4/1to4/0 4/0to4/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2699" depart="2699.00"> + <routeDistribution last="0"> + <route cost="67.86" probability="1.00000000" edges="1/0to0/0 0/0to0/1 0/1to1/1 1/1to1/2 1/2to2/2 2/2to2/3 2/3to3/3 3/3to4/3 4/3to4/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car2700" depart="2700.00"> + <routeDistribution last="0"> + <route cost="45.42" probability="1.00000000" edges="4/3to4/4 4/4to4/3 4/3to4/2 4/2to4/1 4/1to3/1 3/1to4/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2701" depart="2701.00"> + <routeDistribution last="0"> + <route cost="58.05" probability="1.00000000" edges="1/3to1/4 1/4to2/4 2/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to3/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2702" depart="2702.00"> + <routeDistribution last="0"> + <route cost="58.16" probability="1.00000000" edges="4/1to4/0 4/0to3/0 3/0to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to1/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car2703" depart="2703.00"> + <routeDistribution last="0"> + <route cost="41.21" probability="1.00000000" edges="4/0to4/1 4/1to4/2 4/2to3/2 3/2to2/2 2/2to1/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car2704" depart="2704.00"> + <routeDistribution last="0"> + <route cost="21.66" probability="1.00000000" edges="1/3to1/4 1/4to2/4 2/4to3/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car2705" depart="2705.00"> + <routeDistribution last="0"> + <route cost="44.62" probability="1.00000000" edges="3/0to4/0 4/0to3/0 3/0to2/0 2/0to1/0 1/0to1/1 1/1to1/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car2706" depart="2706.00"> + <routeDistribution last="0"> + <route cost="36.96" probability="1.00000000" edges="2/4to1/4 1/4to2/4 2/4to3/4 3/4to4/4 4/4to4/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2707" depart="2707.00"> + <routeDistribution last="0"> + <route cost="49.61" probability="1.00000000" edges="4/1to4/2 4/2to4/3 4/3to3/3 3/3to2/3 2/3to1/3 1/3to0/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2708" depart="2708.00"> + <routeDistribution last="0"> + <route cost="34.27" probability="1.00000000" edges="3/0to2/0 2/0to1/0 1/0to0/0 0/0to0/1 0/1to1/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2709" depart="2709.00"> + <routeDistribution last="0"> + <route cost="23.53" probability="1.00000000" edges="1/4to1/3 1/3to1/2 1/2to2/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car2710" depart="2710.00"> + <routeDistribution last="0"> + <route cost="34.45" probability="1.00000000" edges="0/4to1/4 1/4to1/3 1/3to1/2 1/2to1/1 1/1to0/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2711" depart="2711.00"> + <routeDistribution last="0"> + <route cost="47.36" probability="1.00000000" edges="0/1to0/2 0/2to1/2 1/2to2/2 2/2to3/2 3/2to4/2 4/2to4/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2712" depart="2712.00"> + <routeDistribution last="0"> + <route cost="47.04" probability="1.00000000" edges="3/2to4/2 4/2to3/2 3/2to2/2 2/2to1/2 1/2to1/3 1/3to1/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car2713" depart="2713.00"> + <routeDistribution last="0"> + <route cost="51.82" probability="1.00000000" edges="1/2to1/3 1/3to2/3 2/3to2/2 2/2to2/1 2/1to2/0 2/0to3/0 3/0to4/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car2714" depart="2714.00"> + <routeDistribution last="0"> + <route cost="47.17" probability="1.00000000" edges="4/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to4/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car2715" depart="2715.00"> + <routeDistribution last="0"> + <route cost="45.61" probability="1.00000000" edges="1/2to2/2 2/2to1/2 1/2to1/1 1/1to0/1 0/1to0/0 0/0to1/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car2716" depart="2716.00"> + <routeDistribution last="0"> + <route cost="49.23" probability="1.00000000" edges="4/0to3/0 3/0to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to1/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car2717" depart="2717.00"> + <routeDistribution last="0"> + <route cost="22.03" probability="1.00000000" edges="4/2to3/2 3/2to3/1 3/1to3/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car2718" depart="2718.00"> + <routeDistribution last="0"> + <route cost="23.53" probability="1.00000000" edges="1/1to2/1 2/1to3/1 3/1to3/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car2719" depart="2719.00"> + <routeDistribution last="0"> + <route cost="43.97" probability="1.00000000" edges="3/2to3/1 3/1to2/1 2/1to2/2 2/2to2/3 2/3to2/4 2/4to3/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car2720" depart="2720.00"> + <routeDistribution last="0"> + <route cost="28.45" probability="1.00000000" edges="1/4to2/4 2/4to2/3 2/3to1/3 1/3to1/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car2721" depart="2721.00"> + <routeDistribution last="0"> + <route cost="28.58" probability="1.00000000" edges="2/1to2/0 2/0to1/0 1/0to0/0 0/0to0/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2722" depart="2722.00"> + <routeDistribution last="0"> + <route cost="50.04" probability="1.00000000" edges="4/1to3/1 3/1to2/1 2/1to1/1 1/1to0/1 0/1to0/2 0/2to0/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2723" depart="2723.00"> + <routeDistribution last="0"> + <route cost="23.53" probability="1.00000000" edges="1/0to2/0 2/0to3/0 3/0to3/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2724" depart="2724.00"> + <routeDistribution last="0"> + <route cost="38.94" probability="1.00000000" edges="0/4to0/3 0/3to0/2 0/2to1/2 1/2to1/1 1/1to0/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2725" depart="2725.00"> + <routeDistribution last="0"> + <route cost="37.15" probability="1.00000000" edges="0/2to1/2 1/2to1/3 1/3to1/4 1/4to2/4 2/4to2/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2726" depart="2726.00"> + <routeDistribution last="0"> + <route cost="24.65" probability="1.00000000" edges="1/1to1/2 1/2to0/2 0/2to0/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2727" depart="2727.00"> + <routeDistribution last="0"> + <route cost="47.34" probability="1.00000000" edges="3/2to3/1 3/1to2/1 2/1to1/1 1/1to1/2 1/2to1/3 1/3to0/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2728" depart="2728.00"> + <routeDistribution last="0"> + <route cost="35.66" probability="1.00000000" edges="1/2to1/3 1/3to2/3 2/3to2/2 2/2to2/1 2/1to2/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car2729" depart="2729.00"> + <routeDistribution last="0"> + <route cost="40.91" probability="1.00000000" edges="3/0to3/1 3/1to3/2 3/2to2/2 2/2to1/2 1/2to1/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2730" depart="2730.00"> + <routeDistribution last="0"> + <route cost="53.21" probability="1.00000000" edges="3/3to3/4 3/4to2/4 2/4to1/4 1/4to0/4 0/4to0/3 0/3to0/2 0/2to0/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2731" depart="2731.00"> + <routeDistribution last="0"> + <route cost="59.12" probability="1.00000000" edges="4/3to4/4 4/4to4/3 4/3to4/2 4/2to4/1 4/1to4/0 4/0to3/0 3/0to2/0 2/0to1/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car2732" depart="2732.00"> + <routeDistribution last="0"> + <route cost="67.43" probability="1.00000000" edges="3/3to4/3 4/3to4/2 4/2to4/1 4/1to4/0 4/0to3/0 3/0to2/0 2/0to1/0 1/0to0/0 0/0to1/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car2733" depart="2733.00"> + <routeDistribution last="0"> + <route cost="57.71" probability="1.00000000" edges="1/4to2/4 2/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to4/0 4/0to4/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2734" depart="2734.00"> + <routeDistribution last="0"> + <route cost="38.35" probability="1.00000000" edges="3/3to2/3 2/3to3/3 3/3to4/3 4/3to4/2 4/2to4/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2735" depart="2735.00"> + <routeDistribution last="0"> + <route cost="39.85" probability="1.00000000" edges="3/2to3/3 3/3to3/2 3/2to2/2 2/2to1/2 1/2to0/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car2736" depart="2736.00"> + <routeDistribution last="0"> + <route cost="13.35" probability="1.00000000" edges="1/4to2/4 2/4to3/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car2737" depart="2737.00"> + <routeDistribution last="0"> + <route cost="61.16" probability="1.00000000" edges="2/1to3/1 3/1to2/1 2/1to1/1 1/1to0/1 0/1to0/2 0/2to0/3 0/3to0/4 0/4to1/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car2738" depart="2738.00"> + <routeDistribution last="0"> + <route cost="39.83" probability="1.00000000" edges="2/2to2/1 2/1to2/2 2/2to3/2 3/2to4/2 4/2to4/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2739" depart="2739.00"> + <routeDistribution last="0"> + <route cost="31.84" probability="1.00000000" edges="1/4to1/3 1/3to1/2 1/2to2/2 2/2to2/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2740" depart="2740.00"> + <routeDistribution last="0"> + <route cost="59.70" probability="1.00000000" edges="3/0to4/0 4/0to4/1 4/1to4/2 4/2to4/3 4/3to4/4 4/4to3/4 3/4to2/4 2/4to2/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2741" depart="2741.00"> + <routeDistribution last="0"> + <route cost="33.34" probability="1.00000000" edges="2/0to2/1 2/1to1/1 1/1to0/1 0/1to0/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car2742" depart="2742.00"> + <routeDistribution last="0"> + <route cost="61.03" probability="1.00000000" edges="4/2to4/1 4/1to3/1 3/1to3/2 3/2to3/3 3/3to3/4 3/4to2/4 2/4to1/4 1/4to2/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car2743" depart="2743.00"> + <routeDistribution last="0"> + <route cost="53.85" probability="1.00000000" edges="2/3to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to2/0 2/0to1/0 1/0to2/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car2744" depart="2744.00"> + <routeDistribution last="0"> + <route cost="24.65" probability="1.00000000" edges="2/1to1/1 1/1to1/2 1/2to0/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car2745" depart="2745.00"> + <routeDistribution last="0"> + <route cost="38.32" probability="1.00000000" edges="3/1to2/1 2/1to3/1 3/1to3/2 3/2to4/2 4/2to4/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2746" depart="2746.00"> + <routeDistribution last="0"> + <route cost="65.93" probability="1.00000000" edges="0/1to0/0 0/0to0/1 0/1to0/2 0/2to0/3 0/3to0/4 0/4to1/4 1/4to2/4 2/4to3/4 3/4to3/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2747" depart="2747.00"> + <routeDistribution last="0"> + <route cost="13.35" probability="1.00000000" edges="3/0to3/1 3/1to3/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car2748" depart="2748.00"> + <routeDistribution last="0"> + <route cost="33.73" probability="1.00000000" edges="3/1to3/2 3/2to2/2 2/2to1/2 1/2to0/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car2749" depart="2749.00"> + <routeDistribution last="0"> + <route cost="27.47" probability="1.00000000" edges="2/4to3/4 3/4to4/4 4/4to4/3 4/3to4/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car2750" depart="2750.00"> + <routeDistribution last="0"> + <route cost="34.95" probability="1.00000000" edges="4/0to3/0 3/0to2/0 2/0to1/0 1/0to0/0 0/0to0/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2751" depart="2751.00"> + <routeDistribution last="0"> + <route cost="29.51" probability="1.00000000" edges="3/3to3/2 3/2to3/1 3/1to3/0 3/0to4/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car2752" depart="2752.00"> + <routeDistribution last="0"> + <route cost="34.66" probability="1.00000000" edges="4/2to4/1 4/1to4/0 4/0to3/0 3/0to2/0 2/0to1/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car2753" depart="2753.00"> + <routeDistribution last="0"> + <route cost="50.96" probability="1.00000000" edges="2/4to1/4 1/4to2/4 2/4to3/4 3/4to4/4 4/4to4/3 4/3to4/2 4/2to3/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car2754" depart="2754.00"> + <routeDistribution last="0"> + <route cost="46.66" probability="1.00000000" edges="2/2to3/2 3/2to3/1 3/1to3/0 3/0to2/0 2/0to1/0 1/0to2/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car2755" depart="2755.00"> + <routeDistribution last="0"> + <route cost="46.52" probability="1.00000000" edges="2/0to3/0 3/0to3/1 3/1to3/2 3/2to3/3 3/3to3/4 3/4to4/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car2756" depart="2756.00"> + <routeDistribution last="0"> + <route cost="44.82" probability="1.00000000" edges="4/3to4/4 4/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to2/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2757" depart="2757.00"> + <routeDistribution last="0"> + <route cost="30.26" probability="1.00000000" edges="2/0to2/1 2/1to3/1 3/1to4/1 4/1to4/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car2758" depart="2758.00"> + <routeDistribution last="0"> + <route cost="47.84" probability="1.00000000" edges="3/2to3/3 3/3to3/2 3/2to2/2 2/2to1/2 1/2to0/2 0/2to1/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car2759" depart="2759.00"> + <routeDistribution last="0"> + <route cost="27.74" probability="1.00000000" edges="3/0to3/1 3/1to3/2 3/2to3/3 3/3to3/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car2760" depart="2760.00"> + <routeDistribution last="0"> + <route cost="37.53" probability="1.00000000" edges="2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to0/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2761" depart="2761.00"> + <routeDistribution last="0"> + <route cost="29.95" probability="1.00000000" edges="3/1to2/1 2/1to2/2 2/2to3/2 3/2to3/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2762" depart="2762.00"> + <routeDistribution last="0"> + <route cost="48.39" probability="1.00000000" edges="1/0to0/0 0/0to0/1 0/1to0/2 0/2to0/3 0/3to0/4 0/4to1/4 1/4to1/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2763" depart="2763.00"> + <routeDistribution last="0"> + <route cost="39.00" probability="1.00000000" edges="3/2to2/2 2/2to2/1 2/1to1/1 1/1to1/0 1/0to2/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car2764" depart="2764.00"> + <routeDistribution last="0"> + <route cost="51.93" probability="1.00000000" edges="1/0to1/1 1/1to2/1 2/1to2/2 2/2to3/2 3/2to3/3 3/3to4/3 4/3to3/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2765" depart="2765.00"> + <routeDistribution last="0"> + <route cost="35.66" probability="1.00000000" edges="2/1to2/2 2/2to2/3 2/3to2/4 2/4to3/4 3/4to3/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2766" depart="2766.00"> + <routeDistribution last="0"> + <route cost="43.64" probability="1.00000000" edges="1/0to1/1 1/1to2/1 2/1to2/2 2/2to2/3 2/3to3/3 3/3to2/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2767" depart="2767.00"> + <routeDistribution last="0"> + <route cost="48.23" probability="1.00000000" edges="1/2to0/2 0/2to1/2 1/2to2/2 2/2to3/2 3/2to4/2 4/2to3/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car2768" depart="2768.00"> + <routeDistribution last="0"> + <route cost="35.37" probability="1.00000000" edges="1/0to0/0 0/0to0/1 0/1to1/1 1/1to1/2 1/2to2/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car2769" depart="2769.00"> + <routeDistribution last="0"> + <route cost="38.35" probability="1.00000000" edges="2/2to1/2 1/2to2/2 2/2to3/2 3/2to3/1 3/1to3/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car2770" depart="2770.00"> + <routeDistribution last="0"> + <route cost="23.53" probability="1.00000000" edges="0/3to0/2 0/2to0/1 0/1to1/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2771" depart="2771.00"> + <routeDistribution last="0"> + <route cost="51.65" probability="1.00000000" edges="3/3to2/3 2/3to2/2 2/2to2/1 2/1to2/0 2/0to1/0 1/0to0/0 0/0to0/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2772" depart="2772.00"> + <routeDistribution last="0"> + <route cost="36.96" probability="1.00000000" edges="2/4to1/4 1/4to2/4 2/4to3/4 3/4to4/4 4/4to4/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2773" depart="2773.00"> + <routeDistribution last="0"> + <route cost="23.55" probability="1.00000000" edges="0/2to1/2 1/2to2/2 2/2to3/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car2774" depart="2774.00"> + <routeDistribution last="0"> + <route cost="49.34" probability="1.00000000" edges="0/0to0/1 0/1to0/2 0/2to0/3 0/3to0/4 0/4to1/4 1/4to2/4 2/4to3/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car2775" depart="2775.00"> + <routeDistribution last="0"> + <route cost="23.43" probability="1.00000000" edges="4/4to3/4 3/4to3/3 3/3to2/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2776" depart="2776.00"> + <routeDistribution last="0"> + <route cost="42.47" probability="1.00000000" edges="1/3to1/4 1/4to2/4 2/4to2/3 2/3to2/2 2/2to2/1 2/1to1/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2777" depart="2777.00"> + <routeDistribution last="0"> + <route cost="56.79" probability="1.00000000" edges="1/4to1/3 1/3to1/2 1/2to1/1 1/1to2/1 2/1to3/1 3/1to4/1 4/1to4/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car2778" depart="2778.00"> + <routeDistribution last="0"> + <route cost="29.23" probability="1.00000000" edges="4/3to3/3 3/3to3/2 3/2to3/1 3/1to3/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car2779" depart="2779.00"> + <routeDistribution last="0"> + <route cost="50.45" probability="1.00000000" edges="1/4to2/4 2/4to2/3 2/3to2/2 2/2to1/2 1/2to1/1 1/1to0/1 0/1to1/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2780" depart="2780.00"> + <routeDistribution last="0"> + <route cost="40.91" probability="1.00000000" edges="0/3to0/2 0/2to0/1 0/1to1/1 1/1to2/1 2/1to2/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car2781" depart="2781.00"> + <routeDistribution last="0"> + <route cost="29.65" probability="1.00000000" edges="3/1to4/1 4/1to3/1 3/1to3/2 3/2to3/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2782" depart="2782.00"> + <routeDistribution last="0"> + <route cost="56.71" probability="1.00000000" edges="4/1to4/2 4/2to4/3 4/3to4/4 4/4to3/4 3/4to2/4 2/4to1/4 1/4to0/4 0/4to0/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2783" depart="2783.00"> + <routeDistribution last="0"> + <route cost="41.47" probability="1.00000000" edges="2/4to3/4 3/4to4/4 4/4to4/3 4/3to4/2 4/2to4/1 4/1to3/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2784" depart="2784.00"> + <routeDistribution last="0"> + <route cost="47.34" probability="1.00000000" edges="1/2to1/3 1/3to2/3 2/3to3/3 3/3to3/2 3/2to3/1 3/1to4/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2785" depart="2785.00"> + <routeDistribution last="0"> + <route cost="37.96" probability="1.00000000" edges="3/4to3/3 3/3to2/3 2/3to1/3 1/3to1/4 1/4to1/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2786" depart="2786.00"> + <routeDistribution last="0"> + <route cost="37.91" probability="1.00000000" edges="2/2to1/2 1/2to1/1 1/1to1/0 1/0to2/0 2/0to3/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car2787" depart="2787.00"> + <routeDistribution last="0"> + <route cost="56.71" probability="1.00000000" edges="1/0to2/0 2/0to3/0 3/0to4/0 4/0to4/1 4/1to4/2 4/2to4/3 4/3to4/4 4/4to3/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car2788" depart="2788.00"> + <routeDistribution last="0"> + <route cost="47.17" probability="1.00000000" edges="0/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to0/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car2789" depart="2789.00"> + <routeDistribution last="0"> + <route cost="51.35" probability="1.00000000" edges="0/1to0/2 0/2to0/3 0/3to0/4 0/4to1/4 1/4to2/4 2/4to3/4 3/4to2/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car2790" depart="2790.00"> + <routeDistribution last="0"> + <route cost="42.86" probability="1.00000000" edges="1/3to1/4 1/4to2/4 2/4to2/3 2/3to2/2 2/2to2/1 2/1to2/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car2791" depart="2791.00"> + <routeDistribution last="0"> + <route cost="49.66" probability="1.00000000" edges="2/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to2/0 2/0to2/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2792" depart="2792.00"> + <routeDistribution last="0"> + <route cost="41.85" probability="1.00000000" edges="3/0to2/0 2/0to1/0 1/0to0/0 0/0to0/1 0/1to0/2 0/2to0/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2793" depart="2793.00"> + <routeDistribution last="0"> + <route cost="47.01" probability="1.00000000" edges="2/1to1/1 1/1to2/1 2/1to2/2 2/2to3/2 3/2to4/2 4/2to4/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2794" depart="2794.00"> + <routeDistribution last="0"> + <route cost="20.64" probability="1.00000000" edges="4/2to4/3 4/3to4/4 4/4to3/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car2795" depart="2795.00"> + <routeDistribution last="0"> + <route cost="23.82" probability="1.00000000" edges="4/0to4/1 4/1to4/2 4/2to3/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car2796" depart="2796.00"> + <routeDistribution last="0"> + <route cost="60.01" probability="1.00000000" edges="1/0to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to0/4 0/4to0/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2797" depart="2797.00"> + <routeDistribution last="0"> + <route cost="40.82" probability="1.00000000" edges="4/0to4/1 4/1to4/2 4/2to3/2 3/2to2/2 2/2to2/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2798" depart="2798.00"> + <routeDistribution last="0"> + <route cost="32.24" probability="1.00000000" edges="0/3to1/3 1/3to2/3 2/3to3/3 3/3to4/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2799" depart="2799.00"> + <routeDistribution last="0"> + <route cost="54.24" probability="1.00000000" edges="1/3to0/3 0/3to1/3 1/3to2/3 2/3to3/3 3/3to3/2 3/2to3/1 3/1to3/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car2800" depart="2800.00"> + <routeDistribution last="0"> + <route cost="40.15" probability="1.00000000" edges="2/3to2/2 2/2to3/2 3/2to4/2 4/2to4/1 4/1to3/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2801" depart="2801.00"> + <routeDistribution last="0"> + <route cost="55.86" probability="1.00000000" edges="0/3to0/4 0/4to1/4 1/4to2/4 2/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to3/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car2802" depart="2802.00"> + <routeDistribution last="0"> + <route cost="36.46" probability="1.00000000" edges="3/3to2/3 2/3to3/3 3/3to3/2 3/2to3/1 3/1to2/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2803" depart="2803.00"> + <routeDistribution last="0"> + <route cost="59.97" probability="1.00000000" edges="3/2to3/1 3/1to2/1 2/1to1/1 1/1to0/1 0/1to0/2 0/2to0/3 0/3to0/4 0/4to1/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car2804" depart="2804.00"> + <routeDistribution last="0"> + <route cost="37.13" probability="1.00000000" edges="3/3to3/2 3/2to2/2 2/2to2/1 2/1to1/1 1/1to1/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car2805" depart="2805.00"> + <routeDistribution last="0"> + <route cost="58.21" probability="1.00000000" edges="4/1to4/2 4/2to4/3 4/3to3/3 3/3to2/3 2/3to1/3 1/3to0/3 0/3to0/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car2806" depart="2806.00"> + <routeDistribution last="0"> + <route cost="47.84" probability="1.00000000" edges="3/2to3/3 3/3to3/2 3/2to2/2 2/2to1/2 1/2to0/2 0/2to1/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car2807" depart="2807.00"> + <routeDistribution last="0"> + <route cost="43.52" probability="1.00000000" edges="2/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to4/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car2808" depart="2808.00"> + <routeDistribution last="0"> + <route cost="34.55" probability="1.00000000" edges="1/4to2/4 2/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2809" depart="2809.00"> + <routeDistribution last="0"> + <route cost="38.72" probability="1.00000000" edges="3/2to3/3 3/3to3/4 3/4to2/4 2/4to1/4 1/4to2/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car2810" depart="2810.00"> + <routeDistribution last="0"> + <route cost="51.81" probability="1.00000000" edges="3/0to4/0 4/0to3/0 3/0to2/0 2/0to2/1 2/1to2/2 2/2to2/3 2/3to2/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car2811" depart="2811.00"> + <routeDistribution last="0"> + <route cost="42.51" probability="1.00000000" edges="4/0to4/1 4/1to4/2 4/2to4/3 4/3to4/4 4/4to3/4 3/4to2/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car2812" depart="2812.00"> + <routeDistribution last="0"> + <route cost="43.26" probability="1.00000000" edges="1/1to1/0 1/0to0/0 0/0to0/1 0/1to0/2 0/2to0/3 0/3to0/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car2813" depart="2813.00"> + <routeDistribution last="0"> + <route cost="56.03" probability="1.00000000" edges="3/2to4/2 4/2to3/2 3/2to2/2 2/2to1/2 1/2to0/2 0/2to0/3 0/3to0/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car2814" depart="2814.00"> + <routeDistribution last="0"> + <route cost="58.10" probability="1.00000000" edges="1/4to1/3 1/3to1/2 1/2to1/1 1/1to1/0 1/0to2/0 2/0to3/0 3/0to4/0 4/0to4/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2815" depart="2815.00"> + <routeDistribution last="0"> + <route cost="44.34" probability="1.00000000" edges="4/3to4/2 4/2to3/2 3/2to3/3 3/3to3/4 3/4to2/4 2/4to1/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car2816" depart="2816.00"> + <routeDistribution last="0"> + <route cost="61.16" probability="1.00000000" edges="2/3to1/3 1/3to2/3 2/3to3/3 3/3to4/3 4/3to4/2 4/2to4/1 4/1to4/0 4/0to3/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car2817" depart="2817.00"> + <routeDistribution last="0"> + <route cost="38.21" probability="1.00000000" edges="4/4to3/4 3/4to2/4 2/4to1/4 1/4to1/3 1/3to1/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car2818" depart="2818.00"> + <routeDistribution last="0"> + <route cost="48.10" probability="1.00000000" edges="1/4to1/3 1/3to1/2 1/2to1/1 1/1to2/1 2/1to3/1 3/1to3/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car2819" depart="2819.00"> + <routeDistribution last="0"> + <route cost="51.13" probability="1.00000000" edges="2/4to3/4 3/4to3/3 3/3to3/2 3/2to2/2 2/2to2/1 2/1to1/1 1/1to1/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car2820" depart="2820.00"> + <routeDistribution last="0"> + <route cost="42.47" probability="1.00000000" edges="2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to2/3 2/3to2/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car2821" depart="2821.00"> + <routeDistribution last="0"> + <route cost="43.71" probability="1.00000000" edges="2/1to2/2 2/2to2/3 2/3to2/4 2/4to1/4 1/4to0/4 0/4to0/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2822" depart="2822.00"> + <routeDistribution last="0"> + <route cost="37.33" probability="1.00000000" edges="2/4to3/4 3/4to2/4 2/4to1/4 1/4to0/4 0/4to0/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2823" depart="2823.00"> + <routeDistribution last="0"> + <route cost="44.41" probability="1.00000000" edges="3/1to3/0 3/0to3/1 3/1to3/2 3/2to3/3 3/3to3/4 3/4to2/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car2824" depart="2824.00"> + <routeDistribution last="0"> + <route cost="49.89" probability="1.00000000" edges="1/3to0/3 0/3to0/4 0/4to1/4 1/4to2/4 2/4to3/4 3/4to4/4 4/4to4/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2825" depart="2825.00"> + <routeDistribution last="0"> + <route cost="41.58" probability="1.00000000" edges="0/3to0/4 0/4to1/4 1/4to2/4 2/4to3/4 3/4to4/4 4/4to4/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2826" depart="2826.00"> + <routeDistribution last="0"> + <route cost="14.85" probability="1.00000000" edges="3/2to2/2 2/2to1/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car2827" depart="2827.00"> + <routeDistribution last="0"> + <route cost="44.05" probability="1.00000000" edges="3/4to4/4 4/4to4/3 4/3to3/3 3/3to3/2 3/2to2/2 2/2to2/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2828" depart="2828.00"> + <routeDistribution last="0"> + <route cost="38.66" probability="1.00000000" edges="3/2to2/2 2/2to1/2 1/2to1/3 1/3to1/4 1/4to2/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car2829" depart="2829.00"> + <routeDistribution last="0"> + <route cost="38.94" probability="1.00000000" edges="4/4to3/4 3/4to2/4 2/4to2/3 2/3to1/3 1/3to1/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car2830" depart="2830.00"> + <routeDistribution last="0"> + <route cost="59.55" probability="1.00000000" edges="3/4to4/4 4/4to4/3 4/3to3/3 3/3to3/2 3/2to2/2 2/2to2/1 2/1to1/1 1/1to0/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2831" depart="2831.00"> + <routeDistribution last="0"> + <route cost="22.03" probability="1.00000000" edges="3/2to3/3 3/3to3/4 3/4to2/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car2832" depart="2832.00"> + <routeDistribution last="0"> + <route cost="38.33" probability="1.00000000" edges="3/2to2/2 2/2to1/2 1/2to1/1 1/1to0/1 0/1to1/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2833" depart="2833.00"> + <routeDistribution last="0"> + <route cost="37.15" probability="1.00000000" edges="4/1to3/1 3/1to3/0 3/0to2/0 2/0to1/0 1/0to1/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2834" depart="2834.00"> + <routeDistribution last="0"> + <route cost="21.66" probability="1.00000000" edges="2/2to2/1 2/1to2/0 2/0to1/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car2835" depart="2835.00"> + <routeDistribution last="0"> + <route cost="37.82" probability="1.00000000" edges="4/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to2/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2836" depart="2836.00"> + <routeDistribution last="0"> + <route cost="50.06" probability="1.00000000" edges="4/0to3/0 3/0to3/1 3/1to3/2 3/2to3/3 3/3to3/4 3/4to4/4 4/4to4/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2837" depart="2837.00"> + <routeDistribution last="0"> + <route cost="35.77" probability="1.00000000" edges="3/1to3/2 3/2to3/3 3/3to3/4 3/4to4/4 4/4to4/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2838" depart="2838.00"> + <routeDistribution last="0"> + <route cost="37.53" probability="1.00000000" edges="3/3to2/3 2/3to2/2 2/2to2/1 2/1to2/0 2/0to1/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car2839" depart="2839.00"> + <routeDistribution last="0"> + <route cost="37.25" probability="1.00000000" edges="4/0to4/1 4/1to4/0 4/0to3/0 3/0to2/0 2/0to1/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car2840" depart="2840.00"> + <routeDistribution last="0"> + <route cost="31.54" probability="1.00000000" edges="0/3to1/3 1/3to2/3 2/3to3/3 3/3to2/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2841" depart="2841.00"> + <routeDistribution last="0"> + <route cost="30.63" probability="1.00000000" edges="4/0to3/0 3/0to3/1 3/1to3/2 3/2to2/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car2842" depart="2842.00"> + <routeDistribution last="0"> + <route cost="38.64" probability="1.00000000" edges="2/1to2/2 2/2to2/1 2/1to2/0 2/0to1/0 1/0to0/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car2843" depart="2843.00"> + <routeDistribution last="0"> + <route cost="57.10" probability="1.00000000" edges="0/4to0/3 0/3to0/2 0/2to0/1 0/1to1/1 1/1to2/1 2/1to3/1 3/1to4/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2844" depart="2844.00"> + <routeDistribution last="0"> + <route cost="45.14" probability="1.00000000" edges="1/1to1/0 1/0to1/1 1/1to2/1 2/1to2/2 2/2to3/2 3/2to4/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car2845" depart="2845.00"> + <routeDistribution last="0"> + <route cost="59.66" probability="1.00000000" edges="3/2to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to2/0 2/0to1/0 1/0to0/0 0/0to0/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2846" depart="2846.00"> + <routeDistribution last="0"> + <route cost="29.23" probability="1.00000000" edges="3/2to3/3 3/3to3/4 3/4to2/4 2/4to1/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car2847" depart="2847.00"> + <routeDistribution last="0"> + <route cost="35.77" probability="1.00000000" edges="3/1to3/2 3/2to3/3 3/3to3/4 3/4to4/4 4/4to4/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2848" depart="2848.00"> + <routeDistribution last="0"> + <route cost="51.02" probability="1.00000000" edges="0/4to0/3 0/3to1/3 1/3to2/3 2/3to3/3 3/3to4/3 4/3to4/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car2849" depart="2849.00"> + <routeDistribution last="0"> + <route cost="56.54" probability="1.00000000" edges="4/2to4/3 4/3to4/2 4/2to3/2 3/2to2/2 2/2to1/2 1/2to0/2 0/2to1/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car2850" depart="2850.00"> + <routeDistribution last="0"> + <route cost="65.93" probability="1.00000000" edges="4/3to4/4 4/4to4/3 4/3to4/2 4/2to4/1 4/1to4/0 4/0to3/0 3/0to2/0 2/0to1/0 1/0to1/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2851" depart="2851.00"> + <routeDistribution last="0"> + <route cost="61.80" probability="1.00000000" edges="0/1to1/1 1/1to1/2 1/2to2/2 2/2to2/3 2/3to3/3 3/3to4/3 4/3to4/4 4/4to3/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car2852" depart="2852.00"> + <routeDistribution last="0"> + <route cost="36.85" probability="1.00000000" edges="3/1to2/1 2/1to2/2 2/2to2/3 2/3to2/4 2/4to2/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2853" depart="2853.00"> + <routeDistribution last="0"> + <route cost="51.54" probability="1.00000000" edges="4/3to4/4 4/4to4/3 4/3to4/2 4/2to4/1 4/1to4/0 4/0to3/0 3/0to3/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2854" depart="2854.00"> + <routeDistribution last="0"> + <route cost="34.00" probability="1.00000000" edges="2/0to2/1 2/1to1/1 1/1to0/1 0/1to0/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car2855" depart="2855.00"> + <routeDistribution last="0"> + <route cost="45.86" probability="1.00000000" edges="3/1to2/1 2/1to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to2/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car2856" depart="2856.00"> + <routeDistribution last="0"> + <route cost="36.46" probability="1.00000000" edges="3/1to4/1 4/1to3/1 3/1to3/2 3/2to3/3 3/3to4/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2857" depart="2857.00"> + <routeDistribution last="0"> + <route cost="37.15" probability="1.00000000" edges="3/1to2/1 2/1to2/2 2/2to2/3 2/3to3/3 3/3to3/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car2858" depart="2858.00"> + <routeDistribution last="0"> + <route cost="14.85" probability="1.00000000" edges="4/1to3/1 3/1to2/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2859" depart="2859.00"> + <routeDistribution last="0"> + <route cost="37.16" probability="1.00000000" edges="0/2to0/3 0/3to1/3 1/3to2/3 2/3to2/2 2/2to2/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2860" depart="2860.00"> + <routeDistribution last="0"> + <route cost="35.66" probability="1.00000000" edges="3/1to3/0 3/0to2/0 2/0to2/1 2/1to2/2 2/2to2/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2861" depart="2861.00"> + <routeDistribution last="0"> + <route cost="45.02" probability="1.00000000" edges="0/0to1/0 1/0to2/0 2/0to2/1 2/1to2/2 2/2to2/3 2/3to3/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2862" depart="2862.00"> + <routeDistribution last="0"> + <route cost="38.32" probability="1.00000000" edges="2/3to3/3 3/3to2/3 2/3to2/2 2/2to1/2 1/2to1/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2863" depart="2863.00"> + <routeDistribution last="0"> + <route cost="28.15" probability="1.00000000" edges="1/0to1/1 1/1to1/2 1/2to2/2 2/2to1/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car2864" depart="2864.00"> + <routeDistribution last="0"> + <route cost="40.41" probability="1.00000000" edges="3/0to4/0 4/0to3/0 3/0to2/0 2/0to2/1 2/1to1/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2865" depart="2865.00"> + <routeDistribution last="0"> + <route cost="56.54" probability="1.00000000" edges="0/2to0/1 0/1to0/2 0/2to1/2 1/2to2/2 2/2to3/2 3/2to4/2 4/2to3/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car2866" depart="2866.00"> + <routeDistribution last="0"> + <route cost="56.97" probability="1.00000000" edges="3/3to4/3 4/3to4/2 4/2to4/1 4/1to4/0 4/0to3/0 3/0to2/0 2/0to1/0 1/0to1/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2867" depart="2867.00"> + <routeDistribution last="0"> + <route cost="59.91" probability="1.00000000" edges="3/4to3/3 3/3to2/3 2/3to2/2 2/2to1/2 1/2to1/1 1/1to0/1 0/1to0/0 0/0to1/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car2868" depart="2868.00"> + <routeDistribution last="0"> + <route cost="30.73" probability="1.00000000" edges="3/4to2/4 2/4to2/3 2/3to2/2 2/2to2/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2869" depart="2869.00"> + <routeDistribution last="0"> + <route cost="37.91" probability="1.00000000" edges="2/2to3/2 3/2to3/3 3/3to3/4 3/4to2/4 2/4to1/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car2870" depart="2870.00"> + <routeDistribution last="0"> + <route cost="41.08" probability="1.00000000" edges="0/3to0/4 0/4to1/4 1/4to2/4 2/4to3/4 3/4to3/3 3/3to2/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2871" depart="2871.00"> + <routeDistribution last="0"> + <route cost="42.86" probability="1.00000000" edges="1/0to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to2/4 2/4to2/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2872" depart="2872.00"> + <routeDistribution last="0"> + <route cost="36.03" probability="1.00000000" edges="1/0to1/1 1/1to2/1 2/1to2/2 2/2to2/3 2/3to2/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car2873" depart="2873.00"> + <routeDistribution last="0"> + <route cost="37.62" probability="1.00000000" edges="3/4to2/4 2/4to1/4 1/4to0/4 0/4to0/3 0/3to0/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car2874" depart="2874.00"> + <routeDistribution last="0"> + <route cost="28.47" probability="1.00000000" edges="0/3to1/3 1/3to1/2 1/2to1/1 1/1to0/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2875" depart="2875.00"> + <routeDistribution last="0"> + <route cost="29.94" probability="1.00000000" edges="0/4to1/4 1/4to2/4 2/4to2/3 2/3to2/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car2876" depart="2876.00"> + <routeDistribution last="0"> + <route cost="51.67" probability="1.00000000" edges="4/0to4/1 4/1to3/1 3/1to2/1 2/1to1/1 1/1to0/1 0/1to0/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car2877" depart="2877.00"> + <routeDistribution last="0"> + <route cost="38.94" probability="1.00000000" edges="4/4to3/4 3/4to3/3 3/3to3/2 3/2to2/2 2/2to2/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2878" depart="2878.00"> + <routeDistribution last="0"> + <route cost="24.65" probability="1.00000000" edges="1/4to1/3 1/3to2/3 2/3to2/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car2879" depart="2879.00"> + <routeDistribution last="0"> + <route cost="45.21" probability="1.00000000" edges="2/0to3/0 3/0to4/0 4/0to4/1 4/1to4/2 4/2to4/3 4/3to3/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2880" depart="2880.00"> + <routeDistribution last="0"> + <route cost="35.64" probability="1.00000000" edges="0/0to0/1 0/1to0/2 0/2to0/3 0/3to1/3 1/3to0/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2881" depart="2881.00"> + <routeDistribution last="0"> + <route cost="35.35" probability="1.00000000" edges="3/3to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to2/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2882" depart="2882.00"> + <routeDistribution last="0"> + <route cost="44.41" probability="1.00000000" edges="2/1to2/0 2/0to2/1 2/1to2/2 2/2to2/3 2/3to2/4 2/4to1/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car2883" depart="2883.00"> + <routeDistribution last="0"> + <route cost="28.32" probability="1.00000000" edges="4/4to3/4 3/4to2/4 2/4to1/4 1/4to0/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car2884" depart="2884.00"> + <routeDistribution last="0"> + <route cost="28.45" probability="1.00000000" edges="2/3to2/2 2/2to1/2 1/2to1/1 1/1to0/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2885" depart="2885.00"> + <routeDistribution last="0"> + <route cost="44.34" probability="1.00000000" edges="0/2to1/2 1/2to1/3 1/3to1/4 1/4to2/4 2/4to3/4 3/4to3/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2886" depart="2886.00"> + <routeDistribution last="0"> + <route cost="37.82" probability="1.00000000" edges="1/2to2/2 2/2to2/3 2/3to2/4 2/4to3/4 3/4to4/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car2887" depart="2887.00"> + <routeDistribution last="0"> + <route cost="44.70" probability="1.00000000" edges="1/1to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to0/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car2888" depart="2888.00"> + <routeDistribution last="0"> + <route cost="54.22" probability="1.00000000" edges="0/3to1/3 1/3to1/2 1/2to1/1 1/1to1/0 1/0to2/0 2/0to3/0 3/0to2/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car2889" depart="2889.00"> + <routeDistribution last="0"> + <route cost="41.47" probability="1.00000000" edges="1/4to2/4 2/4to3/4 3/4to4/4 4/4to4/3 4/3to4/2 4/2to3/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car2890" depart="2890.00"> + <routeDistribution last="0"> + <route cost="40.53" probability="1.00000000" edges="2/0to2/1 2/1to2/2 2/2to1/2 1/2to0/2 0/2to0/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2891" depart="2891.00"> + <routeDistribution last="0"> + <route cost="48.53" probability="1.00000000" edges="3/1to4/1 4/1to3/1 3/1to3/2 3/2to3/3 3/3to2/3 2/3to1/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2892" depart="2892.00"> + <routeDistribution last="0"> + <route cost="48.53" probability="1.00000000" edges="0/2to0/1 0/1to0/2 0/2to1/2 1/2to2/2 2/2to3/2 3/2to3/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2893" depart="2893.00"> + <routeDistribution last="0"> + <route cost="35.64" probability="1.00000000" edges="4/4to4/3 4/3to4/2 4/2to4/1 4/1to3/1 3/1to4/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2894" depart="2894.00"> + <routeDistribution last="0"> + <route cost="52.04" probability="1.00000000" edges="1/0to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to1/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2895" depart="2895.00"> + <routeDistribution last="0"> + <route cost="43.97" probability="1.00000000" edges="3/1to2/1 2/1to2/2 2/2to2/3 2/3to2/4 2/4to3/4 3/4to3/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2896" depart="2896.00"> + <routeDistribution last="0"> + <route cost="51.52" probability="1.00000000" edges="2/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to2/1 2/1to2/0 2/0to3/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car2897" depart="2897.00"> + <routeDistribution last="0"> + <route cost="34.95" probability="1.00000000" edges="0/4to1/4 1/4to2/4 2/4to3/4 3/4to4/4 4/4to4/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2898" depart="2898.00"> + <routeDistribution last="0"> + <route cost="23.82" probability="1.00000000" edges="2/1to1/1 1/1to0/1 0/1to0/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car2899" depart="2899.00"> + <routeDistribution last="0"> + <route cost="52.26" probability="1.00000000" edges="2/4to3/4 3/4to3/3 3/3to2/3 2/3to2/2 2/2to1/2 1/2to0/2 0/2to0/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2900" depart="2900.00"> + <routeDistribution last="0"> + <route cost="30.34" probability="1.00000000" edges="2/3to2/2 2/2to1/2 1/2to0/2 0/2to0/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2901" depart="2901.00"> + <routeDistribution last="0"> + <route cost="66.89" probability="1.00000000" edges="3/0to4/0 4/0to4/1 4/1to4/2 4/2to4/3 4/3to4/4 4/4to3/4 3/4to2/4 2/4to1/4 1/4to1/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2902" depart="2902.00"> + <routeDistribution last="0"> + <route cost="28.54" probability="1.00000000" edges="1/3to1/4 1/4to1/3 1/3to1/2 1/2to1/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2903" depart="2903.00"> + <routeDistribution last="0"> + <route cost="31.85" probability="1.00000000" edges="4/1to3/1 3/1to2/1 2/1to1/1 1/1to1/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car2904" depart="2904.00"> + <routeDistribution last="0"> + <route cost="42.14" probability="1.00000000" edges="0/0to0/1 0/1to0/2 0/2to0/3 0/3to0/4 0/4to1/4 1/4to2/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car2905" depart="2905.00"> + <routeDistribution last="0"> + <route cost="37.33" probability="1.00000000" edges="4/3to4/4 4/4to3/4 3/4to2/4 2/4to1/4 1/4to2/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car2906" depart="2906.00"> + <routeDistribution last="0"> + <route cost="51.10" probability="1.00000000" edges="0/3to0/2 0/2to1/2 1/2to2/2 2/2to3/2 3/2to4/2 4/2to4/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2907" depart="2907.00"> + <routeDistribution last="0"> + <route cost="37.13" probability="1.00000000" edges="1/0to1/1 1/1to2/1 2/1to2/2 2/2to3/2 3/2to3/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2908" depart="2908.00"> + <routeDistribution last="0"> + <route cost="42.58" probability="1.00000000" edges="1/3to0/3 0/3to0/4 0/4to1/4 1/4to2/4 2/4to3/4 3/4to3/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2909" depart="2909.00"> + <routeDistribution last="0"> + <route cost="51.64" probability="1.00000000" edges="4/1to4/2 4/2to4/1 4/1to4/0 4/0to3/0 3/0to2/0 2/0to1/0 1/0to0/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car2910" depart="2910.00"> + <routeDistribution last="0"> + <route cost="44.73" probability="1.00000000" edges="4/3to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to2/0 2/0to1/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car2911" depart="2911.00"> + <routeDistribution last="0"> + <route cost="33.34" probability="1.00000000" edges="1/3to2/3 2/3to3/3 3/3to3/2 3/2to4/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car2912" depart="2912.00"> + <routeDistribution last="0"> + <route cost="37.63" probability="1.00000000" edges="4/3to4/4 4/4to3/4 3/4to2/4 2/4to2/3 2/3to1/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2913" depart="2913.00"> + <routeDistribution last="0"> + <route cost="53.68" probability="1.00000000" edges="2/4to2/3 2/3to2/2 2/2to2/1 2/1to2/0 2/0to3/0 3/0to4/0 4/0to3/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car2914" depart="2914.00"> + <routeDistribution last="0"> + <route cost="37.44" probability="1.00000000" edges="0/0to0/1 0/1to1/1 1/1to1/2 1/2to2/2 2/2to3/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car2915" depart="2915.00"> + <routeDistribution last="0"> + <route cost="36.85" probability="1.00000000" edges="1/4to2/4 2/4to3/4 3/4to3/3 3/3to3/2 3/2to3/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2916" depart="2916.00"> + <routeDistribution last="0"> + <route cost="39.02" probability="1.00000000" edges="0/1to1/1 1/1to2/1 2/1to2/2 2/2to3/2 3/2to3/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2917" depart="2917.00"> + <routeDistribution last="0"> + <route cost="37.63" probability="1.00000000" edges="4/3to4/4 4/4to3/4 3/4to3/3 3/3to3/2 3/2to2/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car2918" depart="2918.00"> + <routeDistribution last="0"> + <route cost="37.53" probability="1.00000000" edges="1/1to2/1 2/1to2/2 2/2to2/3 2/3to2/4 2/4to3/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car2919" depart="2919.00"> + <routeDistribution last="0"> + <route cost="37.15" probability="1.00000000" edges="3/2to2/2 2/2to2/1 2/1to2/0 2/0to1/0 1/0to1/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2920" depart="2920.00"> + <routeDistribution last="0"> + <route cost="53.12" probability="1.00000000" edges="2/1to1/1 1/1to2/1 2/1to2/2 2/2to3/2 3/2to3/3 3/3to4/3 4/3to3/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2921" depart="2921.00"> + <routeDistribution last="0"> + <route cost="49.46" probability="1.00000000" edges="4/1to4/0 4/0to3/0 3/0to3/1 3/1to3/2 3/2to3/3 3/3to3/4 3/4to3/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2922" depart="2922.00"> + <routeDistribution last="0"> + <route cost="65.39" probability="1.00000000" edges="1/3to0/3 0/3to0/2 0/2to0/1 0/1to0/0 0/0to1/0 1/0to2/0 2/0to3/0 3/0to4/0 4/0to4/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2923" depart="2923.00"> + <routeDistribution last="0"> + <route cost="44.34" probability="1.00000000" edges="4/3to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to2/0 2/0to2/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2924" depart="2924.00"> + <routeDistribution last="0"> + <route cost="48.16" probability="1.00000000" edges="0/2to0/3 0/3to1/3 1/3to2/3 2/3to3/3 3/3to3/2 3/2to3/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2925" depart="2925.00"> + <routeDistribution last="0"> + <route cost="52.21" probability="1.00000000" edges="4/3to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to2/0 2/0to1/0 1/0to0/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car2926" depart="2926.00"> + <routeDistribution last="0"> + <route cost="39.03" probability="1.00000000" edges="0/1to1/1 1/1to2/1 2/1to2/2 2/2to3/2 3/2to4/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car2927" depart="2927.00"> + <routeDistribution last="0"> + <route cost="28.54" probability="1.00000000" edges="2/3to2/4 2/4to2/3 2/3to2/2 2/2to2/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2928" depart="2928.00"> + <routeDistribution last="0"> + <route cost="36.85" probability="1.00000000" edges="2/0to3/0 3/0to2/0 2/0to2/1 2/1to2/2 2/2to2/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2929" depart="2929.00"> + <routeDistribution last="0"> + <route cost="31.16" probability="1.00000000" edges="3/2to3/3 3/3to3/2 3/2to2/2 2/2to1/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car2930" depart="2930.00"> + <routeDistribution last="0"> + <route cost="37.26" probability="1.00000000" edges="2/2to3/2 3/2to3/3 3/3to3/4 3/4to4/4 4/4to4/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2931" depart="2931.00"> + <routeDistribution last="0"> + <route cost="39.32" probability="1.00000000" edges="3/4to3/3 3/3to3/2 3/2to4/2 4/2to4/1 4/1to4/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car2932" depart="2932.00"> + <routeDistribution last="0"> + <route cost="30.05" probability="1.00000000" edges="2/4to3/4 3/4to4/4 4/4to4/3 4/3to4/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car2933" depart="2933.00"> + <routeDistribution last="0"> + <route cost="68.66" probability="1.00000000" edges="0/2to0/3 0/3to1/3 1/3to2/3 2/3to3/3 3/3to4/3 4/3to4/2 4/2to4/1 4/1to4/0 4/0to3/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car2934" depart="2934.00"> + <routeDistribution last="0"> + <route cost="29.95" probability="1.00000000" edges="2/2to3/2 3/2to3/3 3/3to4/3 4/3to4/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car2935" depart="2935.00"> + <routeDistribution last="0"> + <route cost="59.55" probability="1.00000000" edges="2/0to3/0 3/0to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to2/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car2936" depart="2936.00"> + <routeDistribution last="0"> + <route cost="38.35" probability="1.00000000" edges="4/2to4/1 4/1to3/1 3/1to2/1 2/1to1/1 1/1to2/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2937" depart="2937.00"> + <routeDistribution last="0"> + <route cost="37.26" probability="1.00000000" edges="0/3to0/4 0/4to1/4 1/4to1/3 1/3to1/2 1/2to2/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car2938" depart="2938.00"> + <routeDistribution last="0"> + <route cost="29.95" probability="1.00000000" edges="1/2to2/2 2/2to2/1 2/1to1/1 1/1to1/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car2939" depart="2939.00"> + <routeDistribution last="0"> + <route cost="38.72" probability="1.00000000" edges="1/1to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to0/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2940" depart="2940.00"> + <routeDistribution last="0"> + <route cost="46.74" probability="1.00000000" edges="4/2to4/3 4/3to4/2 4/2to4/1 4/1to4/0 4/0to3/0 3/0to4/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car2941" depart="2941.00"> + <routeDistribution last="0"> + <route cost="66.97" probability="1.00000000" edges="3/4to4/4 4/4to3/4 3/4to2/4 2/4to1/4 1/4to0/4 0/4to0/3 0/3to0/2 0/2to0/1 0/1to0/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car2942" depart="2942.00"> + <routeDistribution last="0"> + <route cost="44.63" probability="1.00000000" edges="2/2to2/1 2/1to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to0/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car2943" depart="2943.00"> + <routeDistribution last="0"> + <route cost="41.74" probability="1.00000000" edges="3/0to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to1/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car2944" depart="2944.00"> + <routeDistribution last="0"> + <route cost="45.10" probability="1.00000000" edges="1/4to0/4 0/4to0/3 0/3to0/2 0/2to0/1 0/1to0/0 0/0to0/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2945" depart="2945.00"> + <routeDistribution last="0"> + <route cost="50.96" probability="1.00000000" edges="4/1to4/2 4/2to4/1 4/1to4/0 4/0to3/0 3/0to2/0 2/0to1/0 1/0to1/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2946" depart="2946.00"> + <routeDistribution last="0"> + <route cost="20.64" probability="1.00000000" edges="1/4to0/4 0/4to0/3 0/3to0/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car2947" depart="2947.00"> + <routeDistribution last="0"> + <route cost="37.16" probability="1.00000000" edges="2/2to2/1 2/1to1/1 1/1to0/1 0/1to0/2 0/2to0/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2948" depart="2948.00"> + <routeDistribution last="0"> + <route cost="53.96" probability="1.00000000" edges="2/2to3/2 3/2to2/2 2/2to1/2 1/2to0/2 0/2to0/3 0/3to0/4 0/4to1/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car2949" depart="2949.00"> + <routeDistribution last="0"> + <route cost="48.84" probability="1.00000000" edges="0/4to1/4 1/4to2/4 2/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to2/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2950" depart="2950.00"> + <routeDistribution last="0"> + <route cost="52.74" probability="1.00000000" edges="1/0to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to2/4 2/4to3/4 3/4to2/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car2951" depart="2951.00"> + <routeDistribution last="0"> + <route cost="40.53" probability="1.00000000" edges="0/3to0/2 0/2to0/1 0/1to1/1 1/1to2/1 2/1to2/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car2952" depart="2952.00"> + <routeDistribution last="0"> + <route cost="63.45" probability="1.00000000" edges="4/0to3/0 3/0to2/0 2/0to1/0 1/0to0/0 0/0to0/1 0/1to0/2 0/2to0/3 0/3to0/4 0/4to1/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car2953" depart="2953.00"> + <routeDistribution last="0"> + <route cost="51.43" probability="1.00000000" edges="1/4to0/4 0/4to1/4 1/4to2/4 2/4to2/3 2/3to2/2 2/2to2/1 2/1to1/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2954" depart="2954.00"> + <routeDistribution last="0"> + <route cost="65.93" probability="1.00000000" edges="1/4to0/4 0/4to1/4 1/4to2/4 2/4to3/4 3/4to4/4 4/4to4/3 4/3to4/2 4/2to4/1 4/1to3/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2955" depart="2955.00"> + <routeDistribution last="0"> + <route cost="43.52" probability="1.00000000" edges="0/4to1/4 1/4to1/3 1/3to1/2 1/2to1/1 1/1to1/0 1/0to2/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car2956" depart="2956.00"> + <routeDistribution last="0"> + <route cost="38.35" probability="1.00000000" edges="2/2to1/2 1/2to2/2 2/2to3/2 3/2to3/1 3/1to3/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car2957" depart="2957.00"> + <routeDistribution last="0"> + <route cost="29.23" probability="1.00000000" edges="1/2to1/1 1/1to1/0 1/0to2/0 2/0to3/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car2958" depart="2958.00"> + <routeDistribution last="0"> + <route cost="31.45" probability="1.00000000" edges="2/3to2/4 2/4to3/4 3/4to3/3 3/3to4/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2959" depart="2959.00"> + <routeDistribution last="0"> + <route cost="46.66" probability="1.00000000" edges="3/2to3/1 3/1to2/1 2/1to1/1 1/1to1/2 1/2to1/3 1/3to1/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car2960" depart="2960.00"> + <routeDistribution last="0"> + <route cost="32.13" probability="1.00000000" edges="3/3to3/2 3/2to3/1 3/1to4/1 4/1to4/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car2961" depart="2961.00"> + <routeDistribution last="0"> + <route cost="37.16" probability="1.00000000" edges="2/2to2/3 2/3to3/3 3/3to4/3 4/3to4/2 4/2to4/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2962" depart="2962.00"> + <routeDistribution last="0"> + <route cost="20.83" probability="1.00000000" edges="4/0to3/0 3/0to2/0 2/0to1/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car2963" depart="2963.00"> + <routeDistribution last="0"> + <route cost="51.36" probability="1.00000000" edges="0/0to1/0 1/0to0/0 0/0to0/1 0/1to0/2 0/2to0/3 0/3to0/4 0/4to1/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car2964" depart="2964.00"> + <routeDistribution last="0"> + <route cost="39.46" probability="1.00000000" edges="1/1to1/2 1/2to2/2 2/2to3/2 3/2to3/1 3/1to3/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car2965" depart="2965.00"> + <routeDistribution last="0"> + <route cost="39.52" probability="1.00000000" edges="1/3to2/3 2/3to3/3 3/3to4/3 4/3to4/4 4/4to3/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car2966" depart="2966.00"> + <routeDistribution last="0"> + <route cost="37.95" probability="1.00000000" edges="3/2to3/3 3/3to3/2 3/2to2/2 2/2to2/1 2/1to1/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2967" depart="2967.00"> + <routeDistribution last="0"> + <route cost="36.83" probability="1.00000000" edges="3/3to2/3 2/3to2/2 2/2to2/1 2/1to1/1 1/1to2/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2968" depart="2968.00"> + <routeDistribution last="0"> + <route cost="37.14" probability="1.00000000" edges="0/4to1/4 1/4to2/4 2/4to2/3 2/3to2/2 2/2to2/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2969" depart="2969.00"> + <routeDistribution last="0"> + <route cost="37.15" probability="1.00000000" edges="1/1to2/1 2/1to2/2 2/2to2/3 2/3to3/3 3/3to3/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car2970" depart="2970.00"> + <routeDistribution last="0"> + <route cost="44.08" probability="1.00000000" edges="4/1to3/1 3/1to3/2 3/2to3/3 3/3to3/4 3/4to4/4 4/4to4/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2971" depart="2971.00"> + <routeDistribution last="0"> + <route cost="44.34" probability="1.00000000" edges="1/1to2/1 2/1to2/2 2/2to2/3 2/3to2/4 2/4to3/4 3/4to3/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2972" depart="2972.00"> + <routeDistribution last="0"> + <route cost="38.33" probability="1.00000000" edges="1/0to2/0 2/0to2/1 2/1to2/2 2/2to3/2 3/2to2/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car2973" depart="2973.00"> + <routeDistribution last="0"> + <route cost="36.46" probability="1.00000000" edges="3/4to2/4 2/4to3/4 3/4to3/3 3/3to3/2 3/2to2/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car2974" depart="2974.00"> + <routeDistribution last="0"> + <route cost="38.25" probability="1.00000000" edges="4/4to4/3 4/3to3/3 3/3to2/3 2/3to2/4 2/4to2/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2975" depart="2975.00"> + <routeDistribution last="0"> + <route cost="33.34" probability="1.00000000" edges="3/0to3/1 3/1to2/1 2/1to1/1 1/1to1/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car2976" depart="2976.00"> + <routeDistribution last="0"> + <route cost="39.42" probability="1.00000000" edges="2/0to2/1 2/1to2/2 2/2to2/3 2/3to1/3 1/3to0/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2977" depart="2977.00"> + <routeDistribution last="0"> + <route cost="33.34" probability="1.00000000" edges="3/0to3/1 3/1to2/1 2/1to1/1 1/1to1/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car2978" depart="2978.00"> + <routeDistribution last="0"> + <route cost="44.63" probability="1.00000000" edges="2/2to2/3 2/3to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to4/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car2979" depart="2979.00"> + <routeDistribution last="0"> + <route cost="29.65" probability="1.00000000" edges="1/3to0/3 0/3to1/3 1/3to1/2 1/2to1/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2980" depart="2980.00"> + <routeDistribution last="0"> + <route cost="22.32" probability="1.00000000" edges="1/2to1/3 1/3to1/4 1/4to0/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car2981" depart="2981.00"> + <routeDistribution last="0"> + <route cost="53.54" probability="1.00000000" edges="2/0to3/0 3/0to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to1/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car2982" depart="2982.00"> + <routeDistribution last="0"> + <route cost="39.03" probability="1.00000000" edges="0/1to1/1 1/1to2/1 2/1to2/2 2/2to3/2 3/2to4/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car2983" depart="2983.00"> + <routeDistribution last="0"> + <route cost="31.54" probability="1.00000000" edges="1/1to0/1 0/1to1/1 1/1to2/1 2/1to3/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2984" depart="2984.00"> + <routeDistribution last="0"> + <route cost="50.04" probability="1.00000000" edges="4/2to3/2 3/2to2/2 2/2to1/2 1/2to0/2 0/2to0/3 0/3to0/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car2985" depart="2985.00"> + <routeDistribution last="0"> + <route cost="51.93" probability="1.00000000" edges="1/0to1/1 1/1to2/1 2/1to2/2 2/2to3/2 3/2to3/3 3/3to4/3 4/3to3/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car2986" depart="2986.00"> + <routeDistribution last="0"> + <route cost="37.24" probability="1.00000000" edges="0/2to1/2 1/2to1/1 1/1to0/1 0/1to0/0 0/0to1/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car2987" depart="2987.00"> + <routeDistribution last="0"> + <route cost="58.83" probability="1.00000000" edges="2/3to2/4 2/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to4/0 4/0to4/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2988" depart="2988.00"> + <routeDistribution last="0"> + <route cost="45.84" probability="1.00000000" edges="1/3to1/4 1/4to2/4 2/4to3/4 3/4to3/3 3/3to3/2 3/2to4/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car2989" depart="2989.00"> + <routeDistribution last="0"> + <route cost="46.92" probability="1.00000000" edges="1/4to0/4 0/4to1/4 1/4to2/4 2/4to3/4 3/4to3/3 3/3to3/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car2990" depart="2990.00"> + <routeDistribution last="0"> + <route cost="23.55" probability="1.00000000" edges="3/1to2/1 2/1to1/1 1/1to0/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2991" depart="2991.00"> + <routeDistribution last="0"> + <route cost="49.34" probability="1.00000000" edges="1/4to2/4 2/4to3/4 3/4to4/4 4/4to4/3 4/3to4/2 4/2to4/1 4/1to4/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car2992" depart="2992.00"> + <routeDistribution last="0"> + <route cost="42.03" probability="1.00000000" edges="0/3to1/3 1/3to2/3 2/3to3/3 3/3to3/2 3/2to4/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car2993" depart="2993.00"> + <routeDistribution last="0"> + <route cost="21.65" probability="1.00000000" edges="4/2to3/2 3/2to3/1 3/1to2/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2994" depart="2994.00"> + <routeDistribution last="0"> + <route cost="38.33" probability="1.00000000" edges="1/0to2/0 2/0to2/1 2/1to2/2 2/2to3/2 3/2to2/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car2995" depart="2995.00"> + <routeDistribution last="0"> + <route cost="57.22" probability="1.00000000" edges="4/2to4/3 4/3to4/2 4/2to3/2 3/2to2/2 2/2to1/2 1/2to0/2 0/2to0/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2996" depart="2996.00"> + <routeDistribution last="0"> + <route cost="46.64" probability="1.00000000" edges="1/1to0/1 0/1to1/1 1/1to1/2 1/2to2/2 2/2to3/2 3/2to3/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car2997" depart="2997.00"> + <routeDistribution last="0"> + <route cost="37.15" probability="1.00000000" edges="0/1to0/2 0/2to1/2 1/2to1/1 1/1to1/0 1/0to2/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car2998" depart="2998.00"> + <routeDistribution last="0"> + <route cost="36.45" probability="1.00000000" edges="2/3to2/4 2/4to2/3 2/3to1/3 1/3to1/2 1/2to0/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car2999" depart="2999.00"> + <routeDistribution last="0"> + <route cost="37.24" probability="1.00000000" edges="4/2to3/2 3/2to3/3 3/3to4/3 4/3to4/4 4/4to3/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car3000" depart="3000.00"> + <routeDistribution last="0"> + <route cost="39.83" probability="1.00000000" edges="4/1to4/2 4/2to4/1 4/1to3/1 3/1to2/1 2/1to2/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car3001" depart="3001.00"> + <routeDistribution last="0"> + <route cost="35.03" probability="1.00000000" edges="0/2to0/1 0/1to0/0 0/0to1/0 1/0to2/0 2/0to3/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car3002" depart="3002.00"> + <routeDistribution last="0"> + <route cost="39.46" probability="1.00000000" edges="4/2to4/3 4/3to4/2 4/2to3/2 3/2to2/2 2/2to2/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car3003" depart="3003.00"> + <routeDistribution last="0"> + <route cost="53.32" probability="1.00000000" edges="0/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to2/4 2/4to2/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car3004" depart="3004.00"> + <routeDistribution last="0"> + <route cost="62.55" probability="1.00000000" edges="3/1to4/1 4/1to3/1 3/1to2/1 2/1to1/1 1/1to0/1 0/1to0/2 0/2to0/3 0/3to1/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car3005" depart="3005.00"> + <routeDistribution last="0"> + <route cost="37.15" probability="1.00000000" edges="0/1to0/2 0/2to1/2 1/2to1/3 1/3to2/3 2/3to3/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car3006" depart="3006.00"> + <routeDistribution last="0"> + <route cost="36.46" probability="1.00000000" edges="3/3to4/3 4/3to4/2 4/2to4/1 4/1to3/1 3/1to4/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car3007" depart="3007.00"> + <routeDistribution last="0"> + <route cost="42.97" probability="1.00000000" edges="3/2to4/2 4/2to4/1 4/1to4/0 4/0to3/0 3/0to2/0 2/0to1/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car3008" depart="3008.00"> + <routeDistribution last="0"> + <route cost="66.60" probability="1.00000000" edges="4/3to4/4 4/4to4/3 4/3to4/2 4/2to4/1 4/1to4/0 4/0to3/0 3/0to2/0 2/0to1/0 1/0to0/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car3009" depart="3009.00"> + <routeDistribution last="0"> + <route cost="50.85" probability="1.00000000" edges="3/3to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to2/0 2/0to2/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car3010" depart="3010.00"> + <routeDistribution last="0"> + <route cost="34.84" probability="1.00000000" edges="0/4to1/4 1/4to1/3 1/3to1/2 1/2to1/1 1/1to1/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car3011" depart="3011.00"> + <routeDistribution last="0"> + <route cost="24.65" probability="1.00000000" edges="3/2to2/2 2/2to2/3 2/3to1/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car3012" depart="3012.00"> + <routeDistribution last="0"> + <route cost="36.85" probability="1.00000000" edges="1/3to0/3 0/3to1/3 1/3to1/2 1/2to1/1 1/1to1/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car3013" depart="3013.00"> + <routeDistribution last="0"> + <route cost="21.66" probability="1.00000000" edges="3/2to2/2 2/2to2/3 2/3to2/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car3014" depart="3014.00"> + <routeDistribution last="0"> + <route cost="20.27" probability="1.00000000" edges="1/0to0/0 0/0to0/1 0/1to0/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car3015" depart="3015.00"> + <routeDistribution last="0"> + <route cost="65.69" probability="1.00000000" edges="0/4to0/3 0/3to0/2 0/2to1/2 1/2to2/2 2/2to3/2 3/2to4/2 4/2to4/1 4/1to4/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car3016" depart="3016.00"> + <routeDistribution last="0"> + <route cost="48.53" probability="1.00000000" edges="4/2to4/3 4/3to4/2 4/2to3/2 3/2to2/2 2/2to1/2 1/2to1/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car3017" depart="3017.00"> + <routeDistribution last="0"> + <route cost="45.56" probability="1.00000000" edges="3/3to4/3 4/3to4/2 4/2to4/1 4/1to4/0 4/0to3/0 3/0to4/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car3018" depart="3018.00"> + <routeDistribution last="0"> + <route cost="44.34" probability="1.00000000" edges="1/1to2/1 2/1to2/2 2/2to2/3 2/3to2/4 2/4to3/4 3/4to3/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car3019" depart="3019.00"> + <routeDistribution last="0"> + <route cost="44.45" probability="1.00000000" edges="2/3to1/3 1/3to1/2 1/2to1/1 1/1to1/0 1/0to0/0 0/0to0/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car3020" depart="3020.00"> + <routeDistribution last="0"> + <route cost="23.15" probability="1.00000000" edges="1/3to2/3 2/3to2/4 2/4to3/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car3021" depart="3021.00"> + <routeDistribution last="0"> + <route cost="37.15" probability="1.00000000" edges="2/4to3/4 3/4to3/3 3/3to2/3 2/3to1/3 1/3to1/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car3022" depart="3022.00"> + <routeDistribution last="0"> + <route cost="51.54" probability="1.00000000" edges="0/1to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to2/4 2/4to3/4 3/4to3/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car3023" depart="3023.00"> + <routeDistribution last="0"> + <route cost="44.33" probability="1.00000000" edges="3/4to3/3 3/3to2/3 2/3to2/2 2/2to2/1 2/1to1/1 1/1to1/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car3024" depart="3024.00"> + <routeDistribution last="0"> + <route cost="65.93" probability="1.00000000" edges="4/3to4/4 4/4to4/3 4/3to4/2 4/2to4/1 4/1to4/0 4/0to3/0 3/0to2/0 2/0to1/0 1/0to1/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car3025" depart="3025.00"> + <routeDistribution last="0"> + <route cost="37.63" probability="1.00000000" edges="4/3to4/4 4/4to3/4 3/4to2/4 2/4to2/3 2/3to1/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car3026" depart="3026.00"> + <routeDistribution last="0"> + <route cost="43.71" probability="1.00000000" edges="3/3to3/4 3/4to2/4 2/4to1/4 1/4to0/4 0/4to0/3 0/3to0/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car3027" depart="3027.00"> + <routeDistribution last="0"> + <route cost="53.21" probability="1.00000000" edges="3/2to4/2 4/2to4/3 4/3to4/4 4/4to3/4 3/4to2/4 2/4to1/4 1/4to2/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car3028" depart="3028.00"> + <routeDistribution last="0"> + <route cost="39.03" probability="1.00000000" edges="3/0to3/1 3/1to3/2 3/2to2/2 2/2to2/3 2/3to2/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car3029" depart="3029.00"> + <routeDistribution last="0"> + <route cost="44.33" probability="1.00000000" edges="3/4to3/3 3/3to2/3 2/3to2/2 2/2to2/1 2/1to1/1 1/1to1/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car3030" depart="3030.00"> + <routeDistribution last="0"> + <route cost="47.01" probability="1.00000000" edges="1/2to1/1 1/1to1/2 1/2to1/3 1/3to2/3 2/3to2/4 2/4to1/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car3031" depart="3031.00"> + <routeDistribution last="0"> + <route cost="37.14" probability="1.00000000" edges="0/4to1/4 1/4to1/3 1/3to1/2 1/2to1/1 1/1to1/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car3032" depart="3032.00"> + <routeDistribution last="0"> + <route cost="39.41" probability="1.00000000" edges="3/2to3/3 3/3to3/4 3/4to2/4 2/4to1/4 1/4to1/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car3033" depart="3033.00"> + <routeDistribution last="0"> + <route cost="40.24" probability="1.00000000" edges="4/2to3/2 3/2to2/2 2/2to1/2 1/2to0/2 0/2to1/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car3034" depart="3034.00"> + <routeDistribution last="0"> + <route cost="46.74" probability="1.00000000" edges="4/0to4/1 4/1to4/0 4/0to3/0 3/0to2/0 2/0to1/0 1/0to2/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car3035" depart="3035.00"> + <routeDistribution last="0"> + <route cost="47.88" probability="1.00000000" edges="3/0to4/0 4/0to3/0 3/0to2/0 2/0to1/0 1/0to0/0 0/0to1/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car3036" depart="3036.00"> + <routeDistribution last="0"> + <route cost="50.05" probability="1.00000000" edges="2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to2/4 2/4to3/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car3037" depart="3037.00"> + <routeDistribution last="0"> + <route cost="38.33" probability="1.00000000" edges="1/1to2/1 2/1to3/1 3/1to3/2 3/2to4/2 4/2to3/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car3038" depart="3038.00"> + <routeDistribution last="0"> + <route cost="49.52" probability="1.00000000" edges="4/3to4/4 4/4to3/4 3/4to2/4 2/4to1/4 1/4to0/4 0/4to0/3 0/3to0/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car3039" depart="3039.00"> + <routeDistribution last="0"> + <route cost="58.43" probability="1.00000000" edges="1/4to2/4 2/4to2/3 2/3to2/2 2/2to1/2 1/2to1/1 1/1to0/1 0/1to0/0 0/0to1/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car3040" depart="3040.00"> + <routeDistribution last="0"> + <route cost="28.56" probability="1.00000000" edges="3/4to4/4 4/4to4/3 4/3to3/3 3/3to3/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car3041" depart="3041.00"> + <routeDistribution last="0"> + <route cost="51.92" probability="1.00000000" edges="3/0to4/0 4/0to3/0 3/0to2/0 2/0to1/0 1/0to0/0 0/0to0/1 0/1to0/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car3042" depart="3042.00"> + <routeDistribution last="0"> + <route cost="38.35" probability="1.00000000" edges="1/1to2/1 2/1to1/1 1/1to0/1 0/1to0/2 0/2to0/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car3043" depart="3043.00"> + <routeDistribution last="0"> + <route cost="59.89" probability="1.00000000" edges="0/4to0/3 0/3to0/2 0/2to0/1 0/1to0/0 0/0to1/0 1/0to2/0 2/0to3/0 3/0to3/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car3044" depart="3044.00"> + <routeDistribution last="0"> + <route cost="57.19" probability="1.00000000" edges="0/0to1/0 1/0to2/0 2/0to3/0 3/0to4/0 4/0to4/1 4/1to4/2 4/2to4/3 4/3to4/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car3045" depart="3045.00"> + <routeDistribution last="0"> + <route cost="56.85" probability="1.00000000" edges="4/3to4/2 4/2to3/2 3/2to2/2 2/2to1/2 1/2to0/2 0/2to0/3 0/3to0/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car3046" depart="3046.00"> + <routeDistribution last="0"> + <route cost="30.34" probability="1.00000000" edges="3/2to2/2 2/2to1/2 1/2to1/1 1/1to0/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car3047" depart="3047.00"> + <routeDistribution last="0"> + <route cost="21.95" probability="1.00000000" edges="2/1to2/0 2/0to1/0 1/0to0/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car3048" depart="3048.00"> + <routeDistribution last="0"> + <route cost="32.24" probability="1.00000000" edges="0/1to1/1 1/1to2/1 2/1to3/1 3/1to4/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car3049" depart="3049.00"> + <routeDistribution last="0"> + <route cost="56.71" probability="1.00000000" edges="3/0to3/1 3/1to3/2 3/2to2/2 2/2to1/2 1/2to0/2 0/2to0/3 0/3to0/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car3050" depart="3050.00"> + <routeDistribution last="0"> + <route cost="39.03" probability="1.00000000" edges="3/4to3/3 3/3to2/3 2/3to1/3 1/3to0/3 0/3to0/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car3051" depart="3051.00"> + <routeDistribution last="0"> + <route cost="45.10" probability="1.00000000" edges="3/4to4/4 4/4to3/4 3/4to2/4 2/4to1/4 1/4to0/4 0/4to0/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car3052" depart="3052.00"> + <routeDistribution last="0"> + <route cost="54.80" probability="1.00000000" edges="4/2to3/2 3/2to3/1 3/1to3/0 3/0to2/0 2/0to1/0 1/0to0/0 0/0to1/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car3053" depart="3053.00"> + <routeDistribution last="0"> + <route cost="44.82" probability="1.00000000" edges="2/1to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to0/4 0/4to0/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car3054" depart="3054.00"> + <routeDistribution last="0"> + <route cost="23.16" probability="1.00000000" edges="3/1to2/1 2/1to1/1 1/1to1/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car3055" depart="3055.00"> + <routeDistribution last="0"> + <route cost="64.16" probability="1.00000000" edges="4/1to4/0 4/0to3/0 3/0to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to2/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car3056" depart="3056.00"> + <routeDistribution last="0"> + <route cost="49.46" probability="1.00000000" edges="4/1to4/0 4/0to3/0 3/0to3/1 3/1to3/2 3/2to3/3 3/3to3/4 3/4to3/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car3057" depart="3057.00"> + <routeDistribution last="0"> + <route cost="37.62" probability="1.00000000" edges="0/3to0/2 0/2to0/1 0/1to0/0 0/0to1/0 1/0to0/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car3058" depart="3058.00"> + <routeDistribution last="0"> + <route cost="51.82" probability="1.00000000" edges="4/3to4/2 4/2to3/2 3/2to3/3 3/3to3/4 3/4to2/4 2/4to1/4 1/4to0/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car3059" depart="3059.00"> + <routeDistribution last="0"> + <route cost="49.34" probability="1.00000000" edges="3/0to2/0 2/0to1/0 1/0to0/0 0/0to0/1 0/1to0/2 0/2to0/3 0/3to0/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car3060" depart="3060.00"> + <routeDistribution last="0"> + <route cost="44.53" probability="1.00000000" edges="4/1to4/2 4/2to4/3 4/3to4/4 4/4to3/4 3/4to2/4 2/4to3/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car3061" depart="3061.00"> + <routeDistribution last="0"> + <route cost="35.35" probability="1.00000000" edges="1/0to1/1 1/1to1/2 1/2to1/3 1/3to2/3 2/3to1/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car3062" depart="3062.00"> + <routeDistribution last="0"> + <route cost="39.41" probability="1.00000000" edges="2/4to2/3 2/3to2/2 2/2to2/1 2/1to3/1 3/1to3/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car3063" depart="3063.00"> + <routeDistribution last="0"> + <route cost="49.23" probability="1.00000000" edges="0/4to1/4 1/4to2/4 2/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to3/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car3064" depart="3064.00"> + <routeDistribution last="0"> + <route cost="42.58" probability="1.00000000" edges="1/3to0/3 0/3to0/4 0/4to1/4 1/4to2/4 2/4to3/4 3/4to3/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car3065" depart="3065.00"> + <routeDistribution last="0"> + <route cost="21.66" probability="1.00000000" edges="4/2to4/1 4/1to3/1 3/1to2/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car3066" depart="3066.00"> + <routeDistribution last="0"> + <route cost="27.84" probability="1.00000000" edges="4/2to4/3 4/3to4/4 4/4to3/4 3/4to2/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car3067" depart="3067.00"> + <routeDistribution last="0"> + <route cost="31.85" probability="1.00000000" edges="3/2to2/2 2/2to1/2 1/2to0/2 0/2to0/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car3068" depart="3068.00"> + <routeDistribution last="0"> + <route cost="54.81" probability="1.00000000" edges="0/0to0/1 0/1to1/1 1/1to1/2 1/2to2/2 2/2to3/2 3/2to4/2 4/2to4/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car3069" depart="3069.00"> + <routeDistribution last="0"> + <route cost="56.32" probability="1.00000000" edges="0/4to0/3 0/3to0/2 0/2to1/2 1/2to2/2 2/2to3/2 3/2to3/1 3/1to2/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car3070" depart="3070.00"> + <routeDistribution last="0"> + <route cost="38.72" probability="1.00000000" edges="1/3to1/2 1/2to1/1 1/1to1/0 1/0to2/0 2/0to1/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car3071" depart="3071.00"> + <routeDistribution last="0"> + <route cost="30.04" probability="1.00000000" edges="3/2to3/1 3/1to3/2 3/2to3/3 3/3to3/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car3072" depart="3072.00"> + <routeDistribution last="0"> + <route cost="23.53" probability="1.00000000" edges="2/2to1/2 1/2to0/2 0/2to0/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car3073" depart="3073.00"> + <routeDistribution last="0"> + <route cost="44.16" probability="1.00000000" edges="2/4to1/4 1/4to2/4 2/4to3/4 3/4to4/4 4/4to4/3 4/3to4/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car3074" depart="3074.00"> + <routeDistribution last="0"> + <route cost="56.14" probability="1.00000000" edges="4/4to4/3 4/3to4/2 4/2to4/1 4/1to4/0 4/0to3/0 3/0to2/0 2/0to1/0 1/0to1/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car3075" depart="3075.00"> + <routeDistribution last="0"> + <route cost="28.45" probability="1.00000000" edges="1/4to2/4 2/4to2/3 2/3to1/3 1/3to1/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car3076" depart="3076.00"> + <routeDistribution last="0"> + <route cost="23.15" probability="1.00000000" edges="2/0to3/0 3/0to3/1 3/1to4/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car3077" depart="3077.00"> + <routeDistribution last="0"> + <route cost="37.53" probability="1.00000000" edges="2/0to3/0 3/0to3/1 3/1to3/2 3/2to3/3 3/3to4/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car3078" depart="3078.00"> + <routeDistribution last="0"> + <route cost="52.72" probability="1.00000000" edges="2/4to1/4 1/4to2/4 2/4to2/3 2/3to2/2 2/2to2/1 2/1to2/0 2/0to3/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car3079" depart="3079.00"> + <routeDistribution last="0"> + <route cost="54.22" probability="1.00000000" edges="2/4to1/4 1/4to2/4 2/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to4/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car3080" depart="3080.00"> + <routeDistribution last="0"> + <route cost="66.60" probability="1.00000000" edges="4/4to4/3 4/3to4/2 4/2to4/1 4/1to4/0 4/0to3/0 3/0to2/0 2/0to1/0 1/0to0/0 0/0to1/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car3081" depart="3081.00"> + <routeDistribution last="0"> + <route cost="35.77" probability="1.00000000" edges="2/3to2/4 2/4to3/4 3/4to4/4 4/4to4/3 4/3to4/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car3082" depart="3082.00"> + <routeDistribution last="0"> + <route cost="47.04" probability="1.00000000" edges="4/2to4/1 4/1to3/1 3/1to2/1 2/1to1/1 1/1to0/1 0/1to1/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car3083" depart="3083.00"> + <routeDistribution last="0"> + <route cost="53.16" probability="1.00000000" edges="1/3to2/3 2/3to3/3 3/3to4/3 4/3to4/2 4/2to4/1 4/1to4/0 4/0to3/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car3084" depart="3084.00"> + <routeDistribution last="0"> + <route cost="36.85" probability="1.00000000" edges="4/1to3/1 3/1to3/2 3/2to3/3 3/3to3/4 3/4to3/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car3085" depart="3085.00"> + <routeDistribution last="0"> + <route cost="28.32" probability="1.00000000" edges="4/0to4/1 4/1to4/2 4/2to4/3 4/3to4/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car3086" depart="3086.00"> + <routeDistribution last="0"> + <route cost="38.35" probability="1.00000000" edges="4/2to4/1 4/1to3/1 3/1to2/1 2/1to1/1 1/1to2/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car3087" depart="3087.00"> + <routeDistribution last="0"> + <route cost="67.55" probability="1.00000000" edges="3/4to4/4 4/4to4/3 4/3to3/3 3/3to3/2 3/2to2/2 2/2to2/1 2/1to1/1 1/1to0/1 0/1to1/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car3088" depart="3088.00"> + <routeDistribution last="0"> + <route cost="51.02" probability="1.00000000" edges="0/4to0/3 0/3to1/3 1/3to2/3 2/3to3/3 3/3to4/3 4/3to4/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car3089" depart="3089.00"> + <routeDistribution last="0"> + <route cost="38.66" probability="1.00000000" edges="3/2to2/2 2/2to1/2 1/2to1/3 1/3to1/4 1/4to2/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car3090" depart="3090.00"> + <routeDistribution last="0"> + <route cost="64.19" probability="1.00000000" edges="0/1to0/0 0/0to1/0 1/0to2/0 2/0to3/0 3/0to4/0 4/0to4/1 4/1to4/2 4/2to4/3 4/3to4/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car3091" depart="3091.00"> + <routeDistribution last="0"> + <route cost="40.15" probability="1.00000000" edges="1/4to1/3 1/3to2/3 2/3to3/3 3/3to3/2 3/2to2/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car3092" depart="3092.00"> + <routeDistribution last="0"> + <route cost="52.46" probability="1.00000000" edges="3/1to3/0 3/0to2/0 2/0to1/0 1/0to0/0 0/0to0/1 0/1to0/2 0/2to0/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car3093" depart="3093.00"> + <routeDistribution last="0"> + <route cost="34.27" probability="1.00000000" edges="3/4to4/4 4/4to4/3 4/3to4/2 4/2to4/1 4/1to3/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car3094" depart="3094.00"> + <routeDistribution last="0"> + <route cost="51.54" probability="1.00000000" edges="0/1to0/0 0/0to0/1 0/1to0/2 0/2to0/3 0/3to0/4 0/4to1/4 1/4to1/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car3095" depart="3095.00"> + <routeDistribution last="0"> + <route cost="45.50" probability="1.00000000" edges="0/4to0/3 0/3to0/2 0/2to0/1 0/1to0/0 0/0to1/0 1/0to1/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car3096" depart="3096.00"> + <routeDistribution last="0"> + <route cost="39.03" probability="1.00000000" edges="2/0to2/1 2/1to2/2 2/2to1/2 1/2to1/3 1/3to1/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car3097" depart="3097.00"> + <routeDistribution last="0"> + <route cost="38.72" probability="1.00000000" edges="3/3to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to4/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car3098" depart="3098.00"> + <routeDistribution last="0"> + <route cost="31.56" probability="1.00000000" edges="1/2to1/3 1/3to0/3 0/3to0/4 0/4to1/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car3099" depart="3099.00"> + <routeDistribution last="0"> + <route cost="51.36" probability="1.00000000" edges="4/1to4/0 4/0to3/0 3/0to2/0 2/0to1/0 1/0to0/0 0/0to0/1 0/1to0/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car3100" depart="3100.00"> + <routeDistribution last="0"> + <route cost="56.82" probability="1.00000000" edges="0/0to0/1 0/1to0/2 0/2to0/3 0/3to0/4 0/4to1/4 1/4to2/4 2/4to3/4 3/4to4/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car3101" depart="3101.00"> + <routeDistribution last="0"> + <route cost="21.95" probability="1.00000000" edges="2/3to2/4 2/4to3/4 3/4to4/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car3102" depart="3102.00"> + <routeDistribution last="0"> + <route cost="37.16" probability="1.00000000" edges="4/2to4/1 4/1to3/1 3/1to2/1 2/1to2/2 2/2to2/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car3103" depart="3103.00"> + <routeDistribution last="0"> + <route cost="30.71" probability="1.00000000" edges="3/2to2/2 2/2to2/1 2/1to2/0 2/0to3/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car3104" depart="3104.00"> + <routeDistribution last="0"> + <route cost="44.73" probability="1.00000000" edges="0/4to1/4 1/4to2/4 2/4to3/4 3/4to4/4 4/4to4/3 4/3to4/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car3105" depart="3105.00"> + <routeDistribution last="0"> + <route cost="37.62" probability="1.00000000" edges="2/2to3/2 3/2to3/3 3/3to4/3 4/3to4/4 4/4to3/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car3106" depart="3106.00"> + <routeDistribution last="0"> + <route cost="28.47" probability="1.00000000" edges="0/3to1/3 1/3to1/2 1/2to1/1 1/1to0/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car3107" depart="3107.00"> + <routeDistribution last="0"> + <route cost="29.66" probability="1.00000000" edges="3/0to2/0 2/0to1/0 1/0to1/1 1/1to1/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car3108" depart="3108.00"> + <routeDistribution last="0"> + <route cost="37.15" probability="1.00000000" edges="1/0to1/1 1/1to2/1 2/1to2/2 2/2to3/2 3/2to4/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car3109" depart="3109.00"> + <routeDistribution last="0"> + <route cost="57.08" probability="1.00000000" edges="2/3to2/4 2/4to3/4 3/4to4/4 4/4to4/3 4/3to4/2 4/2to4/1 4/1to4/0 4/0to3/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car3110" depart="3110.00"> + <routeDistribution last="0"> + <route cost="35.35" probability="1.00000000" edges="3/4to3/3 3/3to3/2 3/2to3/1 3/1to2/1 2/1to3/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car3111" depart="3111.00"> + <routeDistribution last="0"> + <route cost="43.90" probability="1.00000000" edges="1/3to1/2 1/2to1/1 1/1to1/0 1/0to2/0 2/0to3/0 3/0to4/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car3112" depart="3112.00"> + <routeDistribution last="0"> + <route cost="63.45" probability="1.00000000" edges="3/4to4/4 4/4to4/3 4/3to4/2 4/2to4/1 4/1to4/0 4/0to3/0 3/0to2/0 2/0to1/0 1/0to0/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car3113" depart="3113.00"> + <routeDistribution last="0"> + <route cost="53.01" probability="1.00000000" edges="3/4to2/4 2/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to4/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car3114" depart="3114.00"> + <routeDistribution last="0"> + <route cost="53.65" probability="1.00000000" edges="1/0to2/0 2/0to1/0 1/0to0/0 0/0to0/1 0/1to0/2 0/2to0/3 0/3to0/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car3115" depart="3115.00"> + <routeDistribution last="0"> + <route cost="34.66" probability="1.00000000" edges="0/2to0/3 0/3to0/4 0/4to1/4 1/4to2/4 2/4to3/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car3116" depart="3116.00"> + <routeDistribution last="0"> + <route cost="44.73" probability="1.00000000" edges="4/0to3/0 3/0to2/0 2/0to1/0 1/0to0/0 0/0to0/1 0/1to0/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car3117" depart="3117.00"> + <routeDistribution last="0"> + <route cost="50.96" probability="1.00000000" edges="0/2to0/1 0/1to0/2 0/2to0/3 0/3to0/4 0/4to1/4 1/4to2/4 2/4to2/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car3118" depart="3118.00"> + <routeDistribution last="0"> + <route cost="23.55" probability="1.00000000" edges="3/3to2/3 2/3to1/3 1/3to0/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car3119" depart="3119.00"> + <routeDistribution last="0"> + <route cost="51.82" probability="1.00000000" edges="2/3to2/4 2/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to4/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car3120" depart="3120.00"> + <routeDistribution last="0"> + <route cost="14.85" probability="1.00000000" edges="2/3to3/3 3/3to4/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car3121" depart="3121.00"> + <routeDistribution last="0"> + <route cost="58.84" probability="1.00000000" edges="4/3to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to2/0 2/0to1/0 1/0to0/0 0/0to0/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car3122" depart="3122.00"> + <routeDistribution last="0"> + <route cost="37.63" probability="1.00000000" edges="4/3to4/4 4/4to3/4 3/4to3/3 3/3to3/2 3/2to2/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car3123" depart="3123.00"> + <routeDistribution last="0"> + <route cost="38.35" probability="1.00000000" edges="0/2to1/2 1/2to2/2 2/2to2/1 2/1to2/0 2/0to2/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car3124" depart="3124.00"> + <routeDistribution last="0"> + <route cost="58.04" probability="1.00000000" edges="3/2to4/2 4/2to3/2 3/2to2/2 2/2to1/2 1/2to0/2 0/2to0/3 0/3to0/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car3125" depart="3125.00"> + <routeDistribution last="0"> + <route cost="30.62" probability="1.00000000" edges="3/4to2/4 2/4to1/4 1/4to0/4 0/4to1/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car3126" depart="3126.00"> + <routeDistribution last="0"> + <route cost="67.21" probability="1.00000000" edges="2/4to1/4 1/4to2/4 2/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to4/0 4/0to4/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car3127" depart="3127.00"> + <routeDistribution last="0"> + <route cost="45.27" probability="1.00000000" edges="1/2to2/2 2/2to1/2 1/2to0/2 0/2to0/3 0/3to0/4 0/4to1/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car3128" depart="3128.00"> + <routeDistribution last="0"> + <route cost="23.45" probability="1.00000000" edges="2/1to3/1 3/1to4/1 4/1to4/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car3129" depart="3129.00"> + <routeDistribution last="0"> + <route cost="31.85" probability="1.00000000" edges="0/2to1/2 1/2to2/2 2/2to3/2 3/2to3/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car3130" depart="3130.00"> + <routeDistribution last="0"> + <route cost="50.15" probability="1.00000000" edges="4/1to4/0 4/0to3/0 3/0to3/1 3/1to3/2 3/2to3/3 3/3to3/4 3/4to2/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car3131" depart="3131.00"> + <routeDistribution last="0"> + <route cost="44.73" probability="1.00000000" edges="0/4to1/4 1/4to2/4 2/4to3/4 3/4to4/4 4/4to4/3 4/3to4/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car3132" depart="3132.00"> + <routeDistribution last="0"> + <route cost="38.32" probability="1.00000000" edges="3/1to2/1 2/1to3/1 3/1to3/2 3/2to4/2 4/2to4/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car3133" depart="3133.00"> + <routeDistribution last="0"> + <route cost="23.53" probability="1.00000000" edges="1/3to2/3 2/3to3/3 3/3to3/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car3134" depart="3134.00"> + <routeDistribution last="0"> + <route cost="34.01" probability="1.00000000" edges="4/0to4/1 4/1to3/1 3/1to2/1 2/1to1/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car3135" depart="3135.00"> + <routeDistribution last="0"> + <route cost="23.15" probability="1.00000000" edges="2/0to1/0 1/0to1/1 1/1to0/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car3136" depart="3136.00"> + <routeDistribution last="0"> + <route cost="51.72" probability="1.00000000" edges="2/4to3/4 3/4to2/4 2/4to1/4 1/4to0/4 0/4to0/3 0/3to0/2 0/2to0/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car3137" depart="3137.00"> + <routeDistribution last="0"> + <route cost="57.22" probability="1.00000000" edges="0/4to1/4 1/4to2/4 2/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to3/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car3138" depart="3138.00"> + <routeDistribution last="0"> + <route cost="47.01" probability="1.00000000" edges="2/2to2/1 2/1to2/2 2/2to2/3 2/3to3/3 3/3to3/4 3/4to2/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car3139" depart="3139.00"> + <routeDistribution last="0"> + <route cost="65.02" probability="1.00000000" edges="0/4to0/3 0/3to0/2 0/2to1/2 1/2to2/2 2/2to3/2 3/2to4/2 4/2to4/1 4/1to3/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car3140" depart="3140.00"> + <routeDistribution last="0"> + <route cost="40.12" probability="1.00000000" edges="2/3to2/2 2/2to2/3 2/3to3/3 3/3to4/3 4/3to4/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car3141" depart="3141.00"> + <routeDistribution last="0"> + <route cost="53.21" probability="1.00000000" edges="3/3to3/4 3/4to2/4 2/4to1/4 1/4to0/4 0/4to0/3 0/3to0/2 0/2to0/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car3142" depart="3142.00"> + <routeDistribution last="0"> + <route cost="52.30" probability="1.00000000" edges="4/2to4/3 4/3to4/4 4/4to3/4 3/4to2/4 2/4to1/4 1/4to0/4 0/4to1/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car3143" depart="3143.00"> + <routeDistribution last="0"> + <route cost="30.35" probability="1.00000000" edges="3/3to3/2 3/2to2/2 2/2to1/2 1/2to0/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car3144" depart="3144.00"> + <routeDistribution last="0"> + <route cost="41.33" probability="1.00000000" edges="2/1to3/1 3/1to2/1 2/1to1/1 1/1to1/2 1/2to0/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car3145" depart="3145.00"> + <routeDistribution last="0"> + <route cost="30.06" probability="1.00000000" edges="4/1to4/0 4/0to3/0 3/0to3/1 3/1to2/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car3146" depart="3146.00"> + <routeDistribution last="0"> + <route cost="53.43" probability="1.00000000" edges="2/3to3/3 3/3to2/3 2/3to2/2 2/2to1/2 1/2to1/1 1/1to0/1 0/1to0/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car3147" depart="3147.00"> + <routeDistribution last="0"> + <route cost="36.86" probability="1.00000000" edges="4/0to4/1 4/1to4/0 4/0to3/0 3/0to2/0 2/0to2/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car3148" depart="3148.00"> + <routeDistribution last="0"> + <route cost="42.76" probability="1.00000000" edges="4/0to3/0 3/0to3/1 3/1to3/2 3/2to3/3 3/3to4/3 4/3to4/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car3149" depart="3149.00"> + <routeDistribution last="0"> + <route cost="48.10" probability="1.00000000" edges="1/4to1/3 1/3to1/2 1/2to1/1 1/1to2/1 2/1to3/1 3/1to3/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car3150" depart="3150.00"> + <routeDistribution last="0"> + <route cost="57.36" probability="1.00000000" edges="3/4to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to2/0 2/0to1/0 1/0to0/0 0/0to0/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car3151" depart="3151.00"> + <routeDistribution last="0"> + <route cost="49.13" probability="1.00000000" edges="4/0to4/1 4/1to3/1 3/1to2/1 2/1to1/1 1/1to1/2 1/2to2/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car3152" depart="3152.00"> + <routeDistribution last="0"> + <route cost="50.34" probability="1.00000000" edges="0/4to1/4 1/4to2/4 2/4to2/3 2/3to2/2 2/2to2/1 2/1to2/0 2/0to1/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car3153" depart="3153.00"> + <routeDistribution last="0"> + <route cost="37.33" probability="1.00000000" edges="0/2to0/1 0/1to0/0 0/0to1/0 1/0to2/0 2/0to1/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car3154" depart="3154.00"> + <routeDistribution last="0"> + <route cost="23.43" probability="1.00000000" edges="2/1to3/1 3/1to3/0 3/0to4/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car3155" depart="3155.00"> + <routeDistribution last="0"> + <route cost="48.16" probability="1.00000000" edges="0/2to0/3 0/3to1/3 1/3to2/3 2/3to3/3 3/3to3/2 3/2to3/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car3156" depart="3156.00"> + <routeDistribution last="0"> + <route cost="45.54" probability="1.00000000" edges="3/3to3/2 3/2to3/1 3/1to3/0 3/0to2/0 2/0to1/0 1/0to2/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car3157" depart="3157.00"> + <routeDistribution last="0"> + <route cost="37.44" probability="1.00000000" edges="4/4to4/3 4/3to3/3 3/3to3/2 3/2to2/2 2/2to1/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car3158" depart="3158.00"> + <routeDistribution last="0"> + <route cost="14.85" probability="1.00000000" edges="3/2to2/2 2/2to1/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car3159" depart="3159.00"> + <routeDistribution last="0"> + <route cost="45.02" probability="1.00000000" edges="0/4to1/4 1/4to2/4 2/4to2/3 2/3to2/2 2/2to2/1 2/1to3/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car3160" depart="3160.00"> + <routeDistribution last="0"> + <route cost="61.31" probability="1.00000000" edges="3/0to4/0 4/0to3/0 3/0to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to1/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car3161" depart="3161.00"> + <routeDistribution last="0"> + <route cost="59.12" probability="1.00000000" edges="0/1to0/0 0/0to0/1 0/1to0/2 0/2to0/3 0/3to0/4 0/4to1/4 1/4to2/4 2/4to3/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car3162" depart="3162.00"> + <routeDistribution last="0"> + <route cost="44.16" probability="1.00000000" edges="1/4to2/4 2/4to3/4 3/4to4/4 4/4to4/3 4/3to4/2 4/2to4/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car3163" depart="3163.00"> + <routeDistribution last="0"> + <route cost="51.43" probability="1.00000000" edges="1/4to0/4 0/4to1/4 1/4to2/4 2/4to2/3 2/3to2/2 2/2to2/1 2/1to1/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car3164" depart="3164.00"> + <routeDistribution last="0"> + <route cost="33.71" probability="1.00000000" edges="3/1to3/2 3/2to2/2 2/2to1/2 1/2to1/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car3165" depart="3165.00"> + <routeDistribution last="0"> + <route cost="49.23" probability="1.00000000" edges="3/0to3/1 3/1to3/2 3/2to2/2 2/2to1/2 1/2to0/2 0/2to0/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car3166" depart="3166.00"> + <routeDistribution last="0"> + <route cost="38.02" probability="1.00000000" edges="0/2to0/1 0/1to0/0 0/0to1/0 1/0to2/0 2/0to2/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car3167" depart="3167.00"> + <routeDistribution last="0"> + <route cost="45.84" probability="1.00000000" edges="3/1to3/0 3/0to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to0/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car3168" depart="3168.00"> + <routeDistribution last="0"> + <route cost="60.76" probability="1.00000000" edges="3/4to4/4 4/4to4/3 4/3to3/3 3/3to3/2 3/2to2/2 2/2to1/2 1/2to0/2 0/2to1/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car3169" depart="3169.00"> + <routeDistribution last="0"> + <route cost="38.66" probability="1.00000000" edges="4/2to3/2 3/2to2/2 2/2to1/2 1/2to1/3 1/3to2/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car3170" depart="3170.00"> + <routeDistribution last="0"> + <route cost="45.02" probability="1.00000000" edges="3/3to2/3 2/3to2/2 2/2to2/1 2/1to2/0 2/0to1/0 1/0to0/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car3171" depart="3171.00"> + <routeDistribution last="0"> + <route cost="37.53" probability="1.00000000" edges="1/3to2/3 2/3to2/2 2/2to2/1 2/1to2/0 2/0to3/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car3172" depart="3172.00"> + <routeDistribution last="0"> + <route cost="41.33" probability="1.00000000" edges="2/2to1/2 1/2to2/2 2/2to3/2 3/2to3/1 3/1to4/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car3173" depart="3173.00"> + <routeDistribution last="0"> + <route cost="52.21" probability="1.00000000" edges="0/4to1/4 1/4to2/4 2/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to4/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car3174" depart="3174.00"> + <routeDistribution last="0"> + <route cost="61.99" probability="1.00000000" edges="1/4to0/4 0/4to1/4 1/4to2/4 2/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to4/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car3175" depart="3175.00"> + <routeDistribution last="0"> + <route cost="20.27" probability="1.00000000" edges="2/0to1/0 1/0to0/0 0/0to0/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car3176" depart="3176.00"> + <routeDistribution last="0"> + <route cost="53.05" probability="1.00000000" edges="0/2to0/3 0/3to1/3 1/3to2/3 2/3to3/3 3/3to3/2 3/2to3/1 3/1to3/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car3177" depart="3177.00"> + <routeDistribution last="0"> + <route cost="44.04" probability="1.00000000" edges="3/0to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to1/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car3178" depart="3178.00"> + <routeDistribution last="0"> + <route cost="43.71" probability="1.00000000" edges="2/1to2/2 2/2to2/3 2/3to2/4 2/4to1/4 1/4to0/4 0/4to0/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car3179" depart="3179.00"> + <routeDistribution last="0"> + <route cost="55.23" probability="1.00000000" edges="4/1to3/1 3/1to2/1 2/1to1/1 1/1to0/1 0/1to0/2 0/2to0/3 0/3to0/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car3180" depart="3180.00"> + <routeDistribution last="0"> + <route cost="58.73" probability="1.00000000" edges="4/3to4/4 4/4to4/3 4/3to4/2 4/2to4/1 4/1to4/0 4/0to3/0 3/0to2/0 2/0to2/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car3181" depart="3181.00"> + <routeDistribution last="0"> + <route cost="51.28" probability="1.00000000" edges="2/2to3/2 3/2to3/1 3/1to3/0 3/0to2/0 2/0to1/0 1/0to0/0 0/0to0/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car3182" depart="3182.00"> + <routeDistribution last="0"> + <route cost="36.34" probability="1.00000000" edges="2/1to2/2 2/2to2/3 2/3to2/4 2/4to3/4 3/4to4/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car3183" depart="3183.00"> + <routeDistribution last="0"> + <route cost="37.55" probability="1.00000000" edges="0/3to1/3 1/3to2/3 2/3to2/2 2/2to2/1 2/1to2/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car3184" depart="3184.00"> + <routeDistribution last="0"> + <route cost="59.70" probability="1.00000000" edges="4/3to4/4 4/4to3/4 3/4to2/4 2/4to1/4 1/4to0/4 0/4to0/3 0/3to0/2 0/2to1/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car3185" depart="3185.00"> + <routeDistribution last="0"> + <route cost="65.39" probability="1.00000000" edges="1/1to1/0 1/0to2/0 2/0to3/0 3/0to4/0 4/0to4/1 4/1to4/2 4/2to4/3 4/3to4/4 4/4to3/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car3186" depart="3186.00"> + <routeDistribution last="0"> + <route cost="46.34" probability="1.00000000" edges="2/0to3/0 3/0to2/0 2/0to2/1 2/1to2/2 2/2to2/3 2/3to2/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car3187" depart="3187.00"> + <routeDistribution last="0"> + <route cost="48.77" probability="1.00000000" edges="1/0to0/0 0/0to0/1 0/1to0/2 0/2to0/3 0/3to0/4 0/4to1/4 1/4to2/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car3188" depart="3188.00"> + <routeDistribution last="0"> + <route cost="31.85" probability="1.00000000" edges="1/3to2/3 2/3to3/3 3/3to4/3 4/3to4/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car3189" depart="3189.00"> + <routeDistribution last="0"> + <route cost="27.84" probability="1.00000000" edges="4/3to4/4 4/4to3/4 3/4to2/4 2/4to1/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car3190" depart="3190.00"> + <routeDistribution last="0"> + <route cost="60.52" probability="1.00000000" edges="0/0to1/0 1/0to2/0 2/0to2/1 2/1to2/2 2/2to2/3 2/3to2/4 2/4to3/4 3/4to3/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car3191" depart="3191.00"> + <routeDistribution last="0"> + <route cost="42.51" probability="1.00000000" edges="0/0to1/0 1/0to2/0 2/0to3/0 3/0to4/0 4/0to4/1 4/1to4/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car3192" depart="3192.00"> + <routeDistribution last="0"> + <route cost="37.42" probability="1.00000000" edges="1/4to0/4 0/4to1/4 1/4to2/4 2/4to2/3 2/3to2/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car3193" depart="3193.00"> + <routeDistribution last="0"> + <route cost="49.46" probability="1.00000000" edges="0/3to0/4 0/4to1/4 1/4to1/3 1/3to1/2 1/2to1/1 1/1to1/0 1/0to1/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car3194" depart="3194.00"> + <routeDistribution last="0"> + <route cost="13.35" probability="1.00000000" edges="2/4to2/3 2/3to2/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car3195" depart="3195.00"> + <routeDistribution last="0"> + <route cost="55.97" probability="1.00000000" edges="1/4to2/4 2/4to3/4 3/4to4/4 4/4to4/3 4/3to4/2 4/2to4/1 4/1to4/0 4/0to3/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car3196" depart="3196.00"> + <routeDistribution last="0"> + <route cost="31.54" probability="1.00000000" edges="3/1to4/1 4/1to3/1 3/1to2/1 2/1to1/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car3197" depart="3197.00"> + <routeDistribution last="0"> + <route cost="52.66" probability="1.00000000" edges="1/2to1/3 1/3to2/3 2/3to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to2/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car3198" depart="3198.00"> + <routeDistribution last="0"> + <route cost="30.24" probability="1.00000000" edges="4/4to4/3 4/3to3/3 3/3to3/4 3/4to2/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car3199" depart="3199.00"> + <routeDistribution last="0"> + <route cost="49.71" probability="1.00000000" edges="0/3to0/2 0/2to0/1 0/1to0/0 0/0to1/0 1/0to2/0 2/0to3/0 3/0to4/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car3200" depart="3200.00"> + <routeDistribution last="0"> + <route cost="56.54" probability="1.00000000" edges="4/2to4/3 4/3to4/2 4/2to3/2 3/2to2/2 2/2to1/2 1/2to0/2 0/2to1/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car3201" depart="3201.00"> + <routeDistribution last="0"> + <route cost="44.41" probability="1.00000000" edges="2/1to2/0 2/0to2/1 2/1to2/2 2/2to2/3 2/3to2/4 2/4to1/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car3202" depart="3202.00"> + <routeDistribution last="0"> + <route cost="37.63" probability="1.00000000" edges="0/1to0/0 0/0to1/0 1/0to1/1 1/1to1/2 1/2to2/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car3203" depart="3203.00"> + <routeDistribution last="0"> + <route cost="38.72" probability="1.00000000" edges="2/1to2/2 2/2to2/3 2/3to2/4 2/4to1/4 1/4to2/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car3204" depart="3204.00"> + <routeDistribution last="0"> + <route cost="23.15" probability="1.00000000" edges="1/0to2/0 2/0to2/1 2/1to3/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car3205" depart="3205.00"> + <routeDistribution last="0"> + <route cost="51.36" probability="1.00000000" edges="0/3to0/4 0/4to1/4 1/4to2/4 2/4to3/4 3/4to4/4 4/4to4/3 4/3to4/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car3206" depart="3206.00"> + <routeDistribution last="0"> + <route cost="36.96" probability="1.00000000" edges="4/2to4/1 4/1to4/0 4/0to3/0 3/0to2/0 2/0to3/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car3207" depart="3207.00"> + <routeDistribution last="0"> + <route cost="20.16" probability="1.00000000" edges="3/4to3/3 3/3to3/2 3/2to2/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car3208" depart="3208.00"> + <routeDistribution last="0"> + <route cost="57.08" probability="1.00000000" edges="3/2to4/2 4/2to4/1 4/1to4/0 4/0to3/0 3/0to2/0 2/0to1/0 1/0to0/0 0/0to0/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car3209" depart="3209.00"> + <routeDistribution last="0"> + <route cost="27.74" probability="1.00000000" edges="1/4to1/3 1/3to1/2 1/2to1/1 1/1to1/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car3210" depart="3210.00"> + <routeDistribution last="0"> + <route cost="53.34" probability="1.00000000" edges="1/2to1/3 1/3to2/3 2/3to3/3 3/3to4/3 4/3to4/2 4/2to4/1 4/1to4/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car3211" depart="3211.00"> + <routeDistribution last="0"> + <route cost="46.49" probability="1.00000000" edges="1/2to1/1 1/1to1/0 1/0to2/0 2/0to3/0 3/0to4/0 4/0to3/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car3212" depart="3212.00"> + <routeDistribution last="0"> + <route cost="52.46" probability="1.00000000" edges="3/3to4/3 4/3to4/2 4/2to4/1 4/1to4/0 4/0to3/0 3/0to2/0 2/0to3/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car3213" depart="3213.00"> + <routeDistribution last="0"> + <route cost="38.33" probability="1.00000000" edges="1/1to2/1 2/1to3/1 3/1to3/2 3/2to4/2 4/2to3/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car3214" depart="3214.00"> + <routeDistribution last="0"> + <route cost="46.10" probability="1.00000000" edges="1/1to2/1 2/1to2/2 2/2to3/2 3/2to3/3 3/3to4/3 4/3to4/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car3215" depart="3215.00"> + <routeDistribution last="0"> + <route cost="20.83" probability="1.00000000" edges="1/0to2/0 2/0to3/0 3/0to4/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car3216" depart="3216.00"> + <routeDistribution last="0"> + <route cost="43.32" probability="1.00000000" edges="3/0to3/1 3/1to4/1 4/1to4/2 4/2to4/3 4/3to4/4 4/4to3/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car3217" depart="3217.00"> + <routeDistribution last="0"> + <route cost="60.76" probability="1.00000000" edges="1/0to0/0 0/0to0/1 0/1to1/1 1/1to1/2 1/2to2/2 2/2to3/2 3/2to4/2 4/2to3/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car3218" depart="3218.00"> + <routeDistribution last="0"> + <route cost="47.03" probability="1.00000000" edges="0/2to1/2 1/2to1/3 1/3to1/4 1/4to2/4 2/4to3/4 3/4to2/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car3219" depart="3219.00"> + <routeDistribution last="0"> + <route cost="49.89" probability="1.00000000" edges="3/3to3/4 3/4to4/4 4/4to4/3 4/3to4/2 4/2to4/1 4/1to4/0 4/0to3/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car3220" depart="3220.00"> + <routeDistribution last="0"> + <route cost="40.92" probability="1.00000000" edges="3/0to3/1 3/1to3/2 3/2to2/2 2/2to1/2 1/2to0/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car3221" depart="3221.00"> + <routeDistribution last="0"> + <route cost="44.61" probability="1.00000000" edges="2/4to2/3 2/3to1/3 1/3to1/2 1/2to1/1 1/1to0/1 0/1to0/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car3222" depart="3222.00"> + <routeDistribution last="0"> + <route cost="27.47" probability="1.00000000" edges="0/2to0/3 0/3to0/4 0/4to1/4 1/4to2/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car3223" depart="3223.00"> + <routeDistribution last="0"> + <route cost="55.35" probability="1.00000000" edges="3/2to4/2 4/2to3/2 3/2to2/2 2/2to1/2 1/2to0/2 0/2to0/3 0/3to1/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car3224" depart="3224.00"> + <routeDistribution last="0"> + <route cost="46.71" probability="1.00000000" edges="1/4to0/4 0/4to0/3 0/3to0/2 0/2to0/1 0/1to1/1 1/1to2/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car3225" depart="3225.00"> + <routeDistribution last="0"> + <route cost="41.72" probability="1.00000000" edges="4/1to4/2 4/2to3/2 3/2to2/2 2/2to1/2 1/2to2/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car3226" depart="3226.00"> + <routeDistribution last="0"> + <route cost="32.21" probability="1.00000000" edges="2/3to1/3 1/3to1/2 1/2to1/1 1/1to2/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car3227" depart="3227.00"> + <routeDistribution last="0"> + <route cost="20.16" probability="1.00000000" edges="3/3to3/2 3/2to3/1 3/1to2/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car3228" depart="3228.00"> + <routeDistribution last="0"> + <route cost="48.53" probability="1.00000000" edges="1/2to1/1 1/1to1/2 1/2to2/2 2/2to3/2 3/2to4/2 4/2to4/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car3229" depart="3229.00"> + <routeDistribution last="0"> + <route cost="27.84" probability="1.00000000" edges="2/4to1/4 1/4to0/4 0/4to0/3 0/3to0/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car3230" depart="3230.00"> + <routeDistribution last="0"> + <route cost="28.54" probability="1.00000000" edges="2/1to2/2 2/2to2/3 2/3to2/4 2/4to2/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car3231" depart="3231.00"> + <routeDistribution last="0"> + <route cost="50.41" probability="1.00000000" edges="4/1to4/2 4/2to3/2 3/2to2/2 2/2to1/2 1/2to0/2 0/2to1/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car3232" depart="3232.00"> + <routeDistribution last="0"> + <route cost="44.63" probability="1.00000000" edges="2/2to2/1 2/1to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to0/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car3233" depart="3233.00"> + <routeDistribution last="0"> + <route cost="20.83" probability="1.00000000" edges="4/0to3/0 3/0to2/0 2/0to1/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car3234" depart="3234.00"> + <routeDistribution last="0"> + <route cost="37.63" probability="1.00000000" edges="2/2to2/1 2/1to1/1 1/1to0/1 0/1to0/0 0/0to1/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car3235" depart="3235.00"> + <routeDistribution last="0"> + <route cost="63.64" probability="1.00000000" edges="0/2to0/1 0/1to0/2 0/2to1/2 1/2to1/3 1/3to2/3 2/3to3/3 3/3to4/3 4/3to4/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car3236" depart="3236.00"> + <routeDistribution last="0"> + <route cost="55.35" probability="1.00000000" edges="0/2to0/3 0/3to1/3 1/3to2/3 2/3to3/3 3/3to3/2 3/2to3/1 3/1to3/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car3237" depart="3237.00"> + <routeDistribution last="0"> + <route cost="28.45" probability="1.00000000" edges="1/4to2/4 2/4to2/3 2/3to1/3 1/3to1/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car3238" depart="3238.00"> + <routeDistribution last="0"> + <route cost="30.34" probability="1.00000000" edges="4/2to3/2 3/2to3/3 3/3to3/4 3/4to2/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car3239" depart="3239.00"> + <routeDistribution last="0"> + <route cost="35.65" probability="1.00000000" edges="1/0to1/1 1/1to2/1 2/1to2/2 2/2to2/3 2/3to3/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car3240" depart="3240.00"> + <routeDistribution last="0"> + <route cost="59.20" probability="1.00000000" edges="2/4to3/4 3/4to2/4 2/4to1/4 1/4to0/4 0/4to0/3 0/3to0/2 0/2to0/1 0/1to0/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car3241" depart="3241.00"> + <routeDistribution last="0"> + <route cost="46.66" probability="1.00000000" edges="2/2to1/2 1/2to2/2 2/2to3/2 3/2to3/1 3/1to3/0 3/0to2/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car3242" depart="3242.00"> + <routeDistribution last="0"> + <route cost="38.21" probability="1.00000000" edges="0/0to1/0 1/0to2/0 2/0to2/1 2/1to2/2 2/2to2/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car3243" depart="3243.00"> + <routeDistribution last="0"> + <route cost="56.14" probability="1.00000000" edges="0/4to1/4 1/4to2/4 2/4to3/4 3/4to4/4 4/4to4/3 4/3to4/2 4/2to4/1 4/1to3/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car3244" depart="3244.00"> + <routeDistribution last="0"> + <route cost="41.47" probability="1.00000000" edges="0/3to0/4 0/4to1/4 1/4to1/3 1/3to1/2 1/2to1/1 1/1to1/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car3245" depart="3245.00"> + <routeDistribution last="0"> + <route cost="35.74" probability="1.00000000" edges="1/3to1/4 1/4to1/3 1/3to1/2 1/2to1/1 1/1to1/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car3246" depart="3246.00"> + <routeDistribution last="0"> + <route cost="45.47" probability="1.00000000" edges="4/3to4/2 4/2to3/2 3/2to2/2 2/2to1/2 1/2to1/3 1/3to2/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car3247" depart="3247.00"> + <routeDistribution last="0"> + <route cost="37.16" probability="1.00000000" edges="2/2to3/2 3/2to3/1 3/1to3/0 3/0to2/0 2/0to1/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car3248" depart="3248.00"> + <routeDistribution last="0"> + <route cost="43.97" probability="1.00000000" edges="1/2to1/3 1/3to2/3 2/3to2/2 2/2to2/1 2/1to2/0 2/0to1/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car3249" depart="3249.00"> + <routeDistribution last="0"> + <route cost="36.85" probability="1.00000000" edges="2/4to1/4 1/4to2/4 2/4to3/4 3/4to3/3 3/3to3/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car3250" depart="3250.00"> + <routeDistribution last="0"> + <route cost="40.24" probability="1.00000000" edges="1/3to0/3 0/3to1/3 1/3to2/3 2/3to3/3 3/3to4/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car3251" depart="3251.00"> + <routeDistribution last="0"> + <route cost="30.34" probability="1.00000000" edges="4/3to4/2 4/2to3/2 3/2to2/2 2/2to2/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car3252" depart="3252.00"> + <routeDistribution last="0"> + <route cost="42.86" probability="1.00000000" edges="3/0to2/0 2/0to2/1 2/1to2/2 2/2to2/3 2/3to2/4 2/4to3/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car3253" depart="3253.00"> + <routeDistribution last="0"> + <route cost="36.76" probability="1.00000000" edges="2/1to1/1 1/1to1/2 1/2to2/2 2/2to2/3 2/3to3/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car3254" depart="3254.00"> + <routeDistribution last="0"> + <route cost="53.79" probability="1.00000000" edges="1/4to1/3 1/3to1/2 1/2to1/1 1/1to1/0 1/0to2/0 2/0to3/0 3/0to3/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car3255" depart="3255.00"> + <routeDistribution last="0"> + <route cost="30.43" probability="1.00000000" edges="0/2to0/1 0/1to0/0 0/0to1/0 1/0to0/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car3256" depart="3256.00"> + <routeDistribution last="0"> + <route cost="45.21" probability="1.00000000" edges="0/1to0/0 0/0to1/0 1/0to2/0 2/0to2/1 2/1to2/2 2/2to2/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car3257" depart="3257.00"> + <routeDistribution last="0"> + <route cost="33.71" probability="1.00000000" edges="2/4to1/4 1/4to1/3 1/3to1/2 1/2to2/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car3258" depart="3258.00"> + <routeDistribution last="0"> + <route cost="51.36" probability="1.00000000" edges="3/4to4/4 4/4to4/3 4/3to4/2 4/2to4/1 4/1to4/0 4/0to3/0 3/0to4/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car3259" depart="3259.00"> + <routeDistribution last="0"> + <route cost="35.32" probability="1.00000000" edges="4/3to4/4 4/4to3/4 3/4to2/4 2/4to1/4 1/4to0/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car3260" depart="3260.00"> + <routeDistribution last="0"> + <route cost="39.85" probability="1.00000000" edges="1/3to1/2 1/2to1/3 1/3to2/3 2/3to3/3 3/3to4/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car3261" depart="3261.00"> + <routeDistribution last="0"> + <route cost="27.84" probability="1.00000000" edges="1/4to0/4 0/4to0/3 0/3to0/2 0/2to0/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car3262" depart="3262.00"> + <routeDistribution last="0"> + <route cost="45.54" probability="1.00000000" edges="3/1to2/1 2/1to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to1/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car3263" depart="3263.00"> + <routeDistribution last="0"> + <route cost="46.30" probability="1.00000000" edges="3/3to3/4 3/4to2/4 2/4to1/4 1/4to0/4 0/4to0/3 0/3to0/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car3264" depart="3264.00"> + <routeDistribution last="0"> + <route cost="35.77" probability="1.00000000" edges="1/3to1/2 1/2to1/1 1/1to1/0 1/0to0/0 0/0to0/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car3265" depart="3265.00"> + <routeDistribution last="0"> + <route cost="45.84" probability="1.00000000" edges="1/3to1/4 1/4to2/4 2/4to2/3 2/3to2/2 2/2to2/1 2/1to3/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car3266" depart="3266.00"> + <routeDistribution last="0"> + <route cost="42.14" probability="1.00000000" edges="2/4to3/4 3/4to4/4 4/4to4/3 4/3to4/2 4/2to4/1 4/1to4/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car3267" depart="3267.00"> + <routeDistribution last="0"> + <route cost="58.58" probability="1.00000000" edges="4/0to4/1 4/1to4/2 4/2to3/2 3/2to2/2 2/2to1/2 1/2to0/2 0/2to0/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car3268" depart="3268.00"> + <routeDistribution last="0"> + <route cost="23.53" probability="1.00000000" edges="3/3to2/3 2/3to1/3 1/3to1/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car3269" depart="3269.00"> + <routeDistribution last="0"> + <route cost="29.23" probability="1.00000000" edges="1/3to1/2 1/2to1/1 1/1to1/0 1/0to2/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car3270" depart="3270.00"> + <routeDistribution last="0"> + <route cost="30.73" probability="1.00000000" edges="3/4to2/4 2/4to2/3 2/3to2/2 2/2to2/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car3271" depart="3271.00"> + <routeDistribution last="0"> + <route cost="51.64" probability="1.00000000" edges="4/4to4/3 4/3to4/2 4/2to4/1 4/1to4/0 4/0to3/0 3/0to2/0 2/0to3/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car3272" depart="3272.00"> + <routeDistribution last="0"> + <route cost="50.06" probability="1.00000000" edges="0/3to0/4 0/4to1/4 1/4to1/3 1/3to1/2 1/2to1/1 1/1to1/0 1/0to0/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car3273" depart="3273.00"> + <routeDistribution last="0"> + <route cost="20.45" probability="1.00000000" edges="4/4to4/3 4/3to4/2 4/2to3/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car3274" depart="3274.00"> + <routeDistribution last="0"> + <route cost="59.97" probability="1.00000000" edges="1/2to1/3 1/3to2/3 2/3to3/3 3/3to4/3 4/3to4/2 4/2to4/1 4/1to4/0 4/0to3/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car3275" depart="3275.00"> + <routeDistribution last="0"> + <route cost="30.34" probability="1.00000000" edges="2/0to2/1 2/1to3/1 3/1to4/1 4/1to4/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car3276" depart="3276.00"> + <routeDistribution last="0"> + <route cost="47.36" probability="1.00000000" edges="4/2to4/1 4/1to3/1 3/1to2/1 2/1to1/1 1/1to0/1 0/1to0/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car3277" depart="3277.00"> + <routeDistribution last="0"> + <route cost="61.42" probability="1.00000000" edges="3/0to4/0 4/0to3/0 3/0to2/0 2/0to1/0 1/0to0/0 0/0to0/1 0/1to0/2 0/2to0/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car3278" depart="3278.00"> + <routeDistribution last="0"> + <route cost="47.03" probability="1.00000000" edges="0/2to1/2 1/2to1/3 1/3to1/4 1/4to2/4 2/4to3/4 3/4to2/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car3279" depart="3279.00"> + <routeDistribution last="0"> + <route cost="39.46" probability="1.00000000" edges="3/2to3/1 3/1to2/1 2/1to1/1 1/1to1/2 1/2to1/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car3280" depart="3280.00"> + <routeDistribution last="0"> + <route cost="37.22" probability="1.00000000" edges="3/3to2/3 2/3to2/2 2/2to2/1 2/1to2/0 2/0to2/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car3281" depart="3281.00"> + <routeDistribution last="0"> + <route cost="50.05" probability="1.00000000" edges="2/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to2/0 2/0to1/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car3282" depart="3282.00"> + <routeDistribution last="0"> + <route cost="43.42" probability="1.00000000" edges="4/0to3/0 3/0to3/1 3/1to3/2 3/2to3/3 3/3to4/3 4/3to4/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car3283" depart="3283.00"> + <routeDistribution last="0"> + <route cost="37.25" probability="1.00000000" edges="3/0to2/0 2/0to1/0 1/0to0/0 0/0to0/1 0/1to0/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car3284" depart="3284.00"> + <routeDistribution last="0"> + <route cost="31.54" probability="1.00000000" edges="3/1to4/1 4/1to3/1 3/1to2/1 2/1to1/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car3285" depart="3285.00"> + <routeDistribution last="0"> + <route cost="47.04" probability="1.00000000" edges="4/2to3/2 3/2to2/2 2/2to1/2 1/2to1/3 1/3to1/4 1/4to1/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car3286" depart="3286.00"> + <routeDistribution last="0"> + <route cost="47.01" probability="1.00000000" edges="1/2to0/2 0/2to1/2 1/2to1/3 1/3to2/3 2/3to3/3 3/3to3/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car3287" depart="3287.00"> + <routeDistribution last="0"> + <route cost="56.54" probability="1.00000000" edges="0/3to0/2 0/2to0/3 0/3to1/3 1/3to2/3 2/3to3/3 3/3to4/3 4/3to3/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car3288" depart="3288.00"> + <routeDistribution last="0"> + <route cost="21.65" probability="1.00000000" edges="0/2to0/3 0/3to1/3 1/3to1/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car3289" depart="3289.00"> + <routeDistribution last="0"> + <route cost="51.52" probability="1.00000000" edges="3/0to2/0 2/0to2/1 2/1to2/2 2/2to2/3 2/3to3/3 3/3to3/4 3/4to2/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car3290" depart="3290.00"> + <routeDistribution last="0"> + <route cost="21.95" probability="1.00000000" edges="1/2to1/1 1/1to1/0 1/0to0/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car3291" depart="3291.00"> + <routeDistribution last="0"> + <route cost="48.39" probability="1.00000000" edges="0/4to0/3 0/3to0/2 0/2to0/1 0/1to1/1 1/1to2/1 2/1to2/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car3292" depart="3292.00"> + <routeDistribution last="0"> + <route cost="59.21" probability="1.00000000" edges="0/3to1/3 1/3to1/2 1/2to1/1 1/1to1/0 1/0to2/0 2/0to3/0 3/0to4/0 4/0to4/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car3293" depart="3293.00"> + <routeDistribution last="0"> + <route cost="61.08" probability="1.00000000" edges="4/3to4/4 4/4to3/4 3/4to2/4 2/4to2/3 2/3to2/2 2/2to2/1 2/1to2/0 2/0to3/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car3294" depart="3294.00"> + <routeDistribution last="0"> + <route cost="50.45" probability="1.00000000" edges="2/1to2/0 2/0to1/0 1/0to0/0 0/0to0/1 0/1to0/2 0/2to0/3 0/3to0/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car3295" depart="3295.00"> + <routeDistribution last="0"> + <route cost="52.73" probability="1.00000000" edges="3/1to2/1 2/1to2/2 2/2to3/2 3/2to3/3 3/3to4/3 4/3to4/4 4/4to3/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car3296" depart="3296.00"> + <routeDistribution last="0"> + <route cost="33.71" probability="1.00000000" edges="1/3to1/2 1/2to2/2 2/2to3/2 3/2to3/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car3297" depart="3297.00"> + <routeDistribution last="0"> + <route cost="49.78" probability="1.00000000" edges="2/3to2/4 2/4to3/4 3/4to4/4 4/4to4/3 4/3to4/2 4/2to4/1 4/1to3/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car3298" depart="3298.00"> + <routeDistribution last="0"> + <route cost="29.95" probability="1.00000000" edges="3/1to2/1 2/1to2/2 2/2to3/2 3/2to3/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car3299" depart="3299.00"> + <routeDistribution last="0"> + <route cost="21.66" probability="1.00000000" edges="1/1to0/1 0/1to0/2 0/2to0/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car3300" depart="3300.00"> + <routeDistribution last="0"> + <route cost="66.89" probability="1.00000000" edges="4/3to4/4 4/4to3/4 3/4to2/4 2/4to1/4 1/4to0/4 0/4to0/3 0/3to0/2 0/2to0/1 0/1to1/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car3301" depart="3301.00"> + <routeDistribution last="0"> + <route cost="52.74" probability="1.00000000" edges="3/4to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to2/0 2/0to1/0 1/0to2/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car3302" depart="3302.00"> + <routeDistribution last="0"> + <route cost="31.45" probability="1.00000000" edges="0/3to0/2 0/2to1/2 1/2to1/1 1/1to0/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car3303" depart="3303.00"> + <routeDistribution last="0"> + <route cost="39.71" probability="1.00000000" edges="4/0to4/1 4/1to4/2 4/2to4/3 4/3to3/3 3/3to2/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car3304" depart="3304.00"> + <routeDistribution last="0"> + <route cost="37.14" probability="1.00000000" edges="0/4to1/4 1/4to2/4 2/4to2/3 2/3to2/2 2/2to2/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car3305" depart="3305.00"> + <routeDistribution last="0"> + <route cost="39.03" probability="1.00000000" edges="4/2to4/1 4/1to3/1 3/1to2/1 2/1to1/1 1/1to1/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car3306" depart="3306.00"> + <routeDistribution last="0"> + <route cost="48.42" probability="1.00000000" edges="1/4to1/3 1/3to1/4 1/4to2/4 2/4to3/4 3/4to4/4 4/4to3/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car3307" depart="3307.00"> + <routeDistribution last="0"> + <route cost="60.73" probability="1.00000000" edges="3/3to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to2/0 2/0to1/0 1/0to2/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car3308" depart="3308.00"> + <routeDistribution last="0"> + <route cost="38.64" probability="1.00000000" edges="1/2to1/3 1/3to1/2 1/2to1/1 1/1to1/0 1/0to0/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car3309" depart="3309.00"> + <routeDistribution last="0"> + <route cost="62.55" probability="1.00000000" edges="1/3to0/3 0/3to1/3 1/3to2/3 2/3to3/3 3/3to4/3 4/3to4/2 4/2to4/1 4/1to3/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car3310" depart="3310.00"> + <routeDistribution last="0"> + <route cost="71.20" probability="1.00000000" edges="3/0to4/0 4/0to4/1 4/1to4/2 4/2to4/3 4/3to4/4 4/4to3/4 3/4to2/4 2/4to1/4 1/4to0/4 0/4to0/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car3311" depart="3311.00"> + <routeDistribution last="0"> + <route cost="32.23" probability="1.00000000" edges="1/1to2/1 2/1to3/1 3/1to4/1 4/1to4/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car3312" depart="3312.00"> + <routeDistribution last="0"> + <route cost="48.53" probability="1.00000000" edges="1/2to1/1 1/1to1/2 1/2to2/2 2/2to3/2 3/2to4/2 4/2to4/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car3313" depart="3313.00"> + <routeDistribution last="0"> + <route cost="37.14" probability="1.00000000" edges="0/4to1/4 1/4to2/4 2/4to2/3 2/3to2/2 2/2to2/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car3314" depart="3314.00"> + <routeDistribution last="0"> + <route cost="37.42" probability="1.00000000" edges="3/0to4/0 4/0to3/0 3/0to3/1 3/1to3/2 3/2to3/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car3315" depart="3315.00"> + <routeDistribution last="0"> + <route cost="43.66" probability="1.00000000" edges="2/0to3/0 3/0to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to2/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car3316" depart="3316.00"> + <routeDistribution last="0"> + <route cost="35.74" probability="1.00000000" edges="2/0to2/1 2/1to2/2 2/2to2/3 2/3to2/4 2/4to2/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car3317" depart="3317.00"> + <routeDistribution last="0"> + <route cost="29.65" probability="1.00000000" edges="2/3to1/3 1/3to2/3 2/3to2/2 2/2to2/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car3318" depart="3318.00"> + <routeDistribution last="0"> + <route cost="37.33" probability="1.00000000" edges="3/0to4/0 4/0to4/1 4/1to4/2 4/2to4/3 4/3to4/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car3319" depart="3319.00"> + <routeDistribution last="0"> + <route cost="28.85" probability="1.00000000" edges="3/2to3/1 3/1to3/0 3/0to2/0 2/0to1/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car3320" depart="3320.00"> + <routeDistribution last="0"> + <route cost="42.41" probability="1.00000000" edges="0/3to0/2 0/2to1/2 1/2to2/2 2/2to3/2 3/2to3/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car3321" depart="3321.00"> + <routeDistribution last="0"> + <route cost="50.96" probability="1.00000000" edges="4/1to4/0 4/0to3/0 3/0to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car3322" depart="3322.00"> + <routeDistribution last="0"> + <route cost="53.81" probability="1.00000000" edges="1/1to0/1 0/1to1/1 1/1to1/2 1/2to2/2 2/2to2/3 2/3to3/3 3/3to3/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car3323" depart="3323.00"> + <routeDistribution last="0"> + <route cost="23.53" probability="1.00000000" edges="0/2to1/2 1/2to2/2 2/2to2/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car3324" depart="3324.00"> + <routeDistribution last="0"> + <route cost="14.85" probability="1.00000000" edges="3/2to2/2 2/2to1/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car3325" depart="3325.00"> + <routeDistribution last="0"> + <route cost="55.35" probability="1.00000000" edges="1/3to0/3 0/3to1/3 1/3to2/3 2/3to3/3 3/3to4/3 4/3to4/2 4/2to3/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car3326" depart="3326.00"> + <routeDistribution last="0"> + <route cost="56.71" probability="1.00000000" edges="4/1to4/2 4/2to4/3 4/3to4/4 4/4to3/4 3/4to2/4 2/4to1/4 1/4to0/4 0/4to0/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car3327" depart="3327.00"> + <routeDistribution last="0"> + <route cost="30.63" probability="1.00000000" edges="0/0to1/0 1/0to2/0 2/0to2/1 2/1to3/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car3328" depart="3328.00"> + <routeDistribution last="0"> + <route cost="43.73" probability="1.00000000" edges="1/3to1/4 1/4to1/3 1/3to1/2 1/2to1/1 1/1to1/0 1/0to1/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car3329" depart="3329.00"> + <routeDistribution last="0"> + <route cost="34.00" probability="1.00000000" edges="2/4to2/3 2/3to3/3 3/3to4/3 4/3to4/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car3330" depart="3330.00"> + <routeDistribution last="0"> + <route cost="36.85" probability="1.00000000" edges="2/4to1/4 1/4to2/4 2/4to2/3 2/3to2/2 2/2to2/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car3331" depart="3331.00"> + <routeDistribution last="0"> + <route cost="37.82" probability="1.00000000" edges="2/3to1/3 1/3to1/2 1/2to1/1 1/1to1/0 1/0to0/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car3332" depart="3332.00"> + <routeDistribution last="0"> + <route cost="23.82" probability="1.00000000" edges="0/4to0/3 0/3to0/2 0/2to1/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car3333" depart="3333.00"> + <routeDistribution last="0"> + <route cost="49.34" probability="1.00000000" edges="1/3to0/3 0/3to1/3 1/3to2/3 2/3to3/3 3/3to3/2 3/2to3/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car3334" depart="3334.00"> + <routeDistribution last="0"> + <route cost="21.65" probability="1.00000000" edges="2/1to2/2 2/2to3/2 3/2to3/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car3335" depart="3335.00"> + <routeDistribution last="0"> + <route cost="46.13" probability="1.00000000" edges="4/4to4/3 4/3to3/3 3/3to3/2 3/2to2/2 2/2to1/2 1/2to0/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car3336" depart="3336.00"> + <routeDistribution last="0"> + <route cost="47.17" probability="1.00000000" edges="0/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to0/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car3337" depart="3337.00"> + <routeDistribution last="0"> + <route cost="36.52" probability="1.00000000" edges="3/3to3/2 3/2to3/1 3/1to3/0 3/0to4/0 4/0to4/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car3338" depart="3338.00"> + <routeDistribution last="0"> + <route cost="38.35" probability="1.00000000" edges="4/2to3/2 3/2to2/2 2/2to2/3 2/3to2/4 2/4to2/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car3339" depart="3339.00"> + <routeDistribution last="0"> + <route cost="58.16" probability="1.00000000" edges="0/3to0/4 0/4to1/4 1/4to2/4 2/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to3/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car3340" depart="3340.00"> + <routeDistribution last="0"> + <route cost="62.61" probability="1.00000000" edges="3/2to3/3 3/3to3/2 3/2to2/2 2/2to2/1 2/1to1/1 1/1to0/1 0/1to0/0 0/0to1/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car3341" depart="3341.00"> + <routeDistribution last="0"> + <route cost="54.18" probability="1.00000000" edges="4/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to4/0 4/0to4/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car3342" depart="3342.00"> + <routeDistribution last="0"> + <route cost="52.02" probability="1.00000000" edges="3/1to2/1 2/1to2/2 2/2to2/3 2/3to2/4 2/4to1/4 1/4to0/4 0/4to0/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car3343" depart="3343.00"> + <routeDistribution last="0"> + <route cost="22.32" probability="1.00000000" edges="3/2to4/2 4/2to4/3 4/3to4/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car3344" depart="3344.00"> + <routeDistribution last="0"> + <route cost="54.80" probability="1.00000000" edges="1/4to0/4 0/4to1/4 1/4to2/4 2/4to3/4 3/4to3/3 3/3to3/2 3/2to4/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car3345" depart="3345.00"> + <routeDistribution last="0"> + <route cost="51.72" probability="1.00000000" edges="1/0to2/0 2/0to3/0 3/0to4/0 4/0to4/1 4/1to4/2 4/2to4/3 4/3to4/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car3346" depart="3346.00"> + <routeDistribution last="0"> + <route cost="35.32" probability="1.00000000" edges="3/0to4/0 4/0to4/1 4/1to4/2 4/2to4/3 4/3to4/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car3347" depart="3347.00"> + <routeDistribution last="0"> + <route cost="39.83" probability="1.00000000" edges="4/1to4/2 4/2to4/1 4/1to3/1 3/1to2/1 2/1to2/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car3348" depart="3348.00"> + <routeDistribution last="0"> + <route cost="40.15" probability="1.00000000" edges="4/3to4/2 4/2to3/2 3/2to2/2 2/2to2/3 2/3to1/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car3349" depart="3349.00"> + <routeDistribution last="0"> + <route cost="33.71" probability="1.00000000" edges="1/2to1/1 1/1to2/1 2/1to3/1 3/1to3/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car3350" depart="3350.00"> + <routeDistribution last="0"> + <route cost="44.16" probability="1.00000000" edges="4/1to4/2 4/2to4/1 4/1to4/0 4/0to3/0 3/0to2/0 2/0to1/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car3351" depart="3351.00"> + <routeDistribution last="0"> + <route cost="52.30" probability="1.00000000" edges="2/0to3/0 3/0to4/0 4/0to4/1 4/1to4/2 4/2to4/3 4/3to4/4 4/4to4/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car3352" depart="3352.00"> + <routeDistribution last="0"> + <route cost="42.46" probability="1.00000000" edges="2/4to3/4 3/4to3/3 3/3to3/2 3/2to2/2 2/2to2/1 2/1to1/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car3353" depart="3353.00"> + <routeDistribution last="0"> + <route cost="37.42" probability="1.00000000" edges="2/1to2/2 2/2to3/2 3/2to3/3 3/3to4/3 4/3to4/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car3354" depart="3354.00"> + <routeDistribution last="0"> + <route cost="45.21" probability="1.00000000" edges="4/3to4/4 4/4to3/4 3/4to2/4 2/4to2/3 2/3to2/2 2/2to2/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car3355" depart="3355.00"> + <routeDistribution last="0"> + <route cost="44.73" probability="1.00000000" edges="0/4to1/4 1/4to2/4 2/4to3/4 3/4to4/4 4/4to4/3 4/3to4/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car3356" depart="3356.00"> + <routeDistribution last="0"> + <route cost="67.43" probability="1.00000000" edges="3/3to4/3 4/3to4/2 4/2to4/1 4/1to4/0 4/0to3/0 3/0to2/0 2/0to1/0 1/0to0/0 0/0to1/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car3357" depart="3357.00"> + <routeDistribution last="0"> + <route cost="21.65" probability="1.00000000" edges="0/1to0/2 0/2to1/2 1/2to1/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car3358" depart="3358.00"> + <routeDistribution last="0"> + <route cost="43.64" probability="1.00000000" edges="2/4to2/3 2/3to1/3 1/3to1/2 1/2to1/1 1/1to0/1 0/1to1/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car3359" depart="3359.00"> + <routeDistribution last="0"> + <route cost="45.16" probability="1.00000000" edges="1/3to0/3 0/3to1/3 1/3to2/3 2/3to2/2 2/2to2/1 2/1to1/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car3360" depart="3360.00"> + <routeDistribution last="0"> + <route cost="37.26" probability="1.00000000" edges="3/1to2/1 2/1to2/0 2/0to1/0 1/0to0/0 0/0to0/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car3361" depart="3361.00"> + <routeDistribution last="0"> + <route cost="38.36" probability="1.00000000" edges="1/2to0/2 0/2to0/3 0/3to0/4 0/4to1/4 1/4to0/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car3362" depart="3362.00"> + <routeDistribution last="0"> + <route cost="58.83" probability="1.00000000" edges="1/2to1/3 1/3to2/3 2/3to2/2 2/2to2/1 2/1to2/0 2/0to3/0 3/0to4/0 4/0to4/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car3363" depart="3363.00"> + <routeDistribution last="0"> + <route cost="59.66" probability="1.00000000" edges="1/2to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to2/4 2/4to3/4 3/4to4/4 4/4to4/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car3364" depart="3364.00"> + <routeDistribution last="0"> + <route cost="46.60" probability="1.00000000" edges="1/0to2/0 2/0to2/1 2/1to2/2 2/2to2/3 2/3to2/4 2/4to1/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car3365" depart="3365.00"> + <routeDistribution last="0"> + <route cost="35.66" probability="1.00000000" edges="0/2to0/3 0/3to1/3 1/3to1/2 1/2to1/1 1/1to1/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car3366" depart="3366.00"> + <routeDistribution last="0"> + <route cost="52.58" probability="1.00000000" edges="2/1to3/1 3/1to3/2 3/2to3/3 3/3to3/4 3/4to2/4 2/4to1/4 1/4to0/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car3367" depart="3367.00"> + <routeDistribution last="0"> + <route cost="52.04" probability="1.00000000" edges="3/4to2/4 2/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to3/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car3368" depart="3368.00"> + <routeDistribution last="0"> + <route cost="42.51" probability="1.00000000" edges="2/0to3/0 3/0to4/0 4/0to4/1 4/1to4/2 4/2to4/3 4/3to4/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car3369" depart="3369.00"> + <routeDistribution last="0"> + <route cost="23.53" probability="1.00000000" edges="0/3to1/3 1/3to2/3 2/3to2/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car3370" depart="3370.00"> + <routeDistribution last="0"> + <route cost="36.85" probability="1.00000000" edges="2/3to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to3/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car3371" depart="3371.00"> + <routeDistribution last="0"> + <route cost="37.26" probability="1.00000000" edges="4/1to4/0 4/0to3/0 3/0to2/0 2/0to2/1 2/1to1/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car3372" depart="3372.00"> + <routeDistribution last="0"> + <route cost="48.02" probability="1.00000000" edges="0/4to0/3 0/3to0/2 0/2to1/2 1/2to2/2 2/2to2/1 2/1to2/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car3373" depart="3373.00"> + <routeDistribution last="0"> + <route cost="42.41" probability="1.00000000" edges="1/3to1/2 1/2to2/2 2/2to3/2 3/2to4/2 4/2to4/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car3374" depart="3374.00"> + <routeDistribution last="0"> + <route cost="34.00" probability="1.00000000" edges="2/0to2/1 2/1to1/1 1/1to0/1 0/1to0/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car3375" depart="3375.00"> + <routeDistribution last="0"> + <route cost="35.77" probability="1.00000000" edges="2/3to2/4 2/4to3/4 3/4to4/4 4/4to4/3 4/3to4/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car3376" depart="3376.00"> + <routeDistribution last="0"> + <route cost="40.91" probability="1.00000000" edges="2/0to3/0 3/0to3/1 3/1to3/2 3/2to3/3 3/3to2/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car3377" depart="3377.00"> + <routeDistribution last="0"> + <route cost="44.73" probability="1.00000000" edges="3/0to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to0/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car3378" depart="3378.00"> + <routeDistribution last="0"> + <route cost="22.03" probability="1.00000000" edges="1/1to2/1 2/1to2/2 2/2to2/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car3379" depart="3379.00"> + <routeDistribution last="0"> + <route cost="23.16" probability="1.00000000" edges="0/3to1/3 1/3to2/3 2/3to2/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car3380" depart="3380.00"> + <routeDistribution last="0"> + <route cost="37.53" probability="1.00000000" edges="3/3to2/3 2/3to2/2 2/2to2/1 2/1to2/0 2/0to1/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car3381" depart="3381.00"> + <routeDistribution last="0"> + <route cost="38.07" probability="1.00000000" edges="2/0to2/1 2/1to2/0 2/0to1/0 1/0to0/0 0/0to0/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car3382" depart="3382.00"> + <routeDistribution last="0"> + <route cost="50.96" probability="1.00000000" edges="3/4to2/4 2/4to3/4 3/4to4/4 4/4to4/3 4/3to4/2 4/2to4/1 4/1to3/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car3383" depart="3383.00"> + <routeDistribution last="0"> + <route cost="52.21" probability="1.00000000" edges="0/1to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to2/4 2/4to3/4 3/4to4/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car3384" depart="3384.00"> + <routeDistribution last="0"> + <route cost="59.01" probability="1.00000000" edges="3/0to4/0 4/0to3/0 3/0to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to1/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car3385" depart="3385.00"> + <routeDistribution last="0"> + <route cost="14.85" probability="1.00000000" edges="0/2to1/2 1/2to2/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car3386" depart="3386.00"> + <routeDistribution last="0"> + <route cost="21.66" probability="1.00000000" edges="2/2to1/2 1/2to1/3 1/3to1/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car3387" depart="3387.00"> + <routeDistribution last="0"> + <route cost="39.03" probability="1.00000000" edges="0/1to1/1 1/1to2/1 2/1to2/2 2/2to3/2 3/2to4/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car3388" depart="3388.00"> + <routeDistribution last="0"> + <route cost="49.90" probability="1.00000000" edges="0/4to0/3 0/3to0/2 0/2to1/2 1/2to2/2 2/2to3/2 3/2to4/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car3389" depart="3389.00"> + <routeDistribution last="0"> + <route cost="21.65" probability="1.00000000" edges="2/2to2/1 2/1to1/1 1/1to1/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car3390" depart="3390.00"> + <routeDistribution last="0"> + <route cost="63.45" probability="1.00000000" edges="4/4to4/3 4/3to4/2 4/2to4/1 4/1to4/0 4/0to3/0 3/0to2/0 2/0to1/0 1/0to0/0 0/0to0/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car3391" depart="3391.00"> + <routeDistribution last="0"> + <route cost="41.33" probability="1.00000000" edges="2/2to1/2 1/2to2/2 2/2to3/2 3/2to3/1 3/1to4/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car3392" depart="3392.00"> + <routeDistribution last="0"> + <route cost="47.88" probability="1.00000000" edges="0/3to0/4 0/4to0/3 0/3to0/2 0/2to0/1 0/1to0/0 0/0to0/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car3393" depart="3393.00"> + <routeDistribution last="0"> + <route cost="45.76" probability="1.00000000" edges="2/4to3/4 3/4to3/3 3/3to2/3 2/3to1/3 1/3to0/3 0/3to0/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car3394" depart="3394.00"> + <routeDistribution last="0"> + <route cost="37.82" probability="1.00000000" edges="2/1to3/1 3/1to3/2 3/2to3/3 3/3to3/4 3/4to4/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car3395" depart="3395.00"> + <routeDistribution last="0"> + <route cost="56.66" probability="1.00000000" edges="0/3to0/4 0/4to1/4 1/4to2/4 2/4to2/3 2/3to2/2 2/2to2/1 2/1to2/0 2/0to2/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car3396" depart="3396.00"> + <routeDistribution last="0"> + <route cost="44.33" probability="1.00000000" edges="4/0to3/0 3/0to2/0 2/0to2/1 2/1to2/2 2/2to2/3 2/3to2/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car3397" depart="3397.00"> + <routeDistribution last="0"> + <route cost="30.04" probability="1.00000000" edges="3/4to3/3 3/3to3/2 3/2to3/1 3/1to3/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car3398" depart="3398.00"> + <routeDistribution last="0"> + <route cost="30.05" probability="1.00000000" edges="4/0to4/1 4/1to4/0 4/0to3/0 3/0to2/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car3399" depart="3399.00"> + <routeDistribution last="0"> + <route cost="50.05" probability="1.00000000" edges="1/0to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to2/4 2/4to3/4 3/4to3/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car3400" depart="3400.00"> + <routeDistribution last="0"> + <route cost="30.63" probability="1.00000000" edges="3/1to2/1 2/1to2/0 2/0to1/0 1/0to0/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car3401" depart="3401.00"> + <routeDistribution last="0"> + <route cost="24.65" probability="1.00000000" edges="2/2to2/1 2/1to3/1 3/1to3/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car3402" depart="3402.00"> + <routeDistribution last="0"> + <route cost="37.16" probability="1.00000000" edges="2/0to1/0 1/0to1/1 1/1to2/1 2/1to3/1 3/1to4/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car3403" depart="3403.00"> + <routeDistribution last="0"> + <route cost="42.23" probability="1.00000000" edges="0/3to0/2 0/2to0/1 0/1to0/0 0/0to1/0 1/0to2/0 2/0to3/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car3404" depart="3404.00"> + <routeDistribution last="0"> + <route cost="46.74" probability="1.00000000" edges="2/0to3/0 3/0to2/0 2/0to1/0 1/0to0/0 0/0to0/1 0/1to0/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car3405" depart="3405.00"> + <routeDistribution last="0"> + <route cost="20.16" probability="1.00000000" edges="2/1to2/2 2/2to2/3 2/3to3/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car3406" depart="3406.00"> + <routeDistribution last="0"> + <route cost="35.64" probability="1.00000000" edges="0/0to0/1 0/1to0/2 0/2to0/3 0/3to1/3 1/3to0/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car3407" depart="3407.00"> + <routeDistribution last="0"> + <route cost="20.64" probability="1.00000000" edges="3/0to4/0 4/0to4/1 4/1to4/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car3408" depart="3408.00"> + <routeDistribution last="0"> + <route cost="34.66" probability="1.00000000" edges="3/0to2/0 2/0to1/0 1/0to0/0 0/0to0/1 0/1to0/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car3409" depart="3409.00"> + <routeDistribution last="0"> + <route cost="30.24" probability="1.00000000" edges="4/2to3/2 3/2to3/3 3/3to4/3 4/3to4/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car3410" depart="3410.00"> + <routeDistribution last="0"> + <route cost="46.12" probability="1.00000000" edges="1/2to1/3 1/3to1/4 1/4to2/4 2/4to3/4 3/4to4/4 4/4to3/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car3411" depart="3411.00"> + <routeDistribution last="0"> + <route cost="71.20" probability="1.00000000" edges="1/4to0/4 0/4to0/3 0/3to0/2 0/2to0/1 0/1to0/0 0/0to1/0 1/0to2/0 2/0to3/0 3/0to4/0 4/0to4/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car3412" depart="3412.00"> + <routeDistribution last="0"> + <route cost="30.34" probability="1.00000000" edges="3/2to2/2 2/2to2/1 2/1to2/0 2/0to1/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car3413" depart="3413.00"> + <routeDistribution last="0"> + <route cost="41.72" probability="1.00000000" edges="0/2to0/1 0/1to1/1 1/1to2/1 2/1to3/1 3/1to2/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car3414" depart="3414.00"> + <routeDistribution last="0"> + <route cost="51.81" probability="1.00000000" edges="1/4to0/4 0/4to1/4 1/4to2/4 2/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car3415" depart="3415.00"> + <routeDistribution last="0"> + <route cost="30.35" probability="1.00000000" edges="1/3to2/3 2/3to3/3 3/3to3/2 3/2to3/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car3416" depart="3416.00"> + <routeDistribution last="0"> + <route cost="44.76" probability="1.00000000" edges="3/3to3/4 3/4to3/3 3/3to2/3 2/3to2/2 2/2to1/2 1/2to1/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car3417" depart="3417.00"> + <routeDistribution last="0"> + <route cost="40.15" probability="1.00000000" edges="3/3to3/2 3/2to2/2 2/2to1/2 1/2to1/3 1/3to0/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car3418" depart="3418.00"> + <routeDistribution last="0"> + <route cost="52.26" probability="1.00000000" edges="2/0to1/0 1/0to1/1 1/1to2/1 2/1to2/2 2/2to3/2 3/2to4/2 4/2to4/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car3419" depart="3419.00"> + <routeDistribution last="0"> + <route cost="66.21" probability="1.00000000" edges="3/0to4/0 4/0to4/1 4/1to4/2 4/2to4/3 4/3to4/4 4/4to3/4 3/4to2/4 2/4to1/4 1/4to2/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car3420" depart="3420.00"> + <routeDistribution last="0"> + <route cost="53.65" probability="1.00000000" edges="2/4to1/4 1/4to2/4 2/4to3/4 3/4to4/4 4/4to4/3 4/3to4/2 4/2to4/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car3421" depart="3421.00"> + <routeDistribution last="0"> + <route cost="29.65" probability="1.00000000" edges="3/3to3/4 3/4to3/3 3/3to2/3 2/3to1/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car3422" depart="3422.00"> + <routeDistribution last="0"> + <route cost="45.47" probability="1.00000000" edges="4/3to4/2 4/2to3/2 3/2to2/2 2/2to1/2 1/2to1/3 1/3to2/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car3423" depart="3423.00"> + <routeDistribution last="0"> + <route cost="58.83" probability="1.00000000" edges="0/1to0/2 0/2to1/2 1/2to1/1 1/1to1/0 1/0to2/0 2/0to3/0 3/0to4/0 4/0to4/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car3424" depart="3424.00"> + <routeDistribution last="0"> + <route cost="35.25" probability="1.00000000" edges="0/4to1/4 1/4to1/3 1/3to1/2 1/2to0/2 0/2to1/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car3425" depart="3425.00"> + <routeDistribution last="0"> + <route cost="51.10" probability="1.00000000" edges="0/3to0/2 0/2to1/2 1/2to2/2 2/2to3/2 3/2to4/2 4/2to4/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car3426" depart="3426.00"> + <routeDistribution last="0"> + <route cost="13.64" probability="1.00000000" edges="4/4to3/4 3/4to2/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car3427" depart="3427.00"> + <routeDistribution last="0"> + <route cost="46.26" probability="1.00000000" edges="3/2to3/3 3/3to3/2 3/2to2/2 2/2to2/1 2/1to1/1 1/1to1/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car3428" depart="3428.00"> + <routeDistribution last="0"> + <route cost="51.64" probability="1.00000000" edges="4/1to4/2 4/2to4/1 4/1to4/0 4/0to3/0 3/0to2/0 2/0to1/0 1/0to0/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car3429" depart="3429.00"> + <routeDistribution last="0"> + <route cost="32.23" probability="1.00000000" edges="4/1to4/2 4/2to4/3 4/3to3/3 3/3to2/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car3430" depart="3430.00"> + <routeDistribution last="0"> + <route cost="53.65" probability="1.00000000" edges="2/0to3/0 3/0to2/0 2/0to1/0 1/0to0/0 0/0to0/1 0/1to0/2 0/2to0/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car3431" depart="3431.00"> + <routeDistribution last="0"> + <route cost="45.76" probability="1.00000000" edges="2/4to3/4 3/4to3/3 3/3to2/3 2/3to1/3 1/3to0/3 0/3to0/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car3432" depart="3432.00"> + <routeDistribution last="0"> + <route cost="51.64" probability="1.00000000" edges="4/0to3/0 3/0to2/0 2/0to1/0 1/0to0/0 0/0to0/1 0/1to0/2 0/2to0/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car3433" depart="3433.00"> + <routeDistribution last="0"> + <route cost="40.92" probability="1.00000000" edges="1/3to1/2 1/2to1/1 1/1to2/1 2/1to3/1 3/1to4/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car3434" depart="3434.00"> + <routeDistribution last="0"> + <route cost="27.47" probability="1.00000000" edges="1/4to2/4 2/4to3/4 3/4to4/4 4/4to4/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car3435" depart="3435.00"> + <routeDistribution last="0"> + <route cost="53.85" probability="1.00000000" edges="2/3to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to2/0 2/0to1/0 1/0to2/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car3436" depart="3436.00"> + <routeDistribution last="0"> + <route cost="38.35" probability="1.00000000" edges="1/2to0/2 0/2to1/2 1/2to2/2 2/2to2/1 2/1to2/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car3437" depart="3437.00"> + <routeDistribution last="0"> + <route cost="27.64" probability="1.00000000" edges="0/4to1/4 1/4to2/4 2/4to3/4 3/4to3/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car3438" depart="3438.00"> + <routeDistribution last="0"> + <route cost="53.79" probability="1.00000000" edges="3/4to2/4 2/4to1/4 1/4to1/3 1/3to1/2 1/2to1/1 1/1to1/0 1/0to2/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car3439" depart="3439.00"> + <routeDistribution last="0"> + <route cost="59.23" probability="1.00000000" edges="2/4to1/4 1/4to2/4 2/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to3/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car3440" depart="3440.00"> + <routeDistribution last="0"> + <route cost="38.65" probability="1.00000000" edges="3/1to3/0 3/0to2/0 2/0to1/0 1/0to1/1 1/1to0/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car3441" depart="3441.00"> + <routeDistribution last="0"> + <route cost="53.65" probability="1.00000000" edges="3/4to2/4 2/4to3/4 3/4to4/4 4/4to4/3 4/3to4/2 4/2to4/1 4/1to4/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car3442" depart="3442.00"> + <routeDistribution last="0"> + <route cost="59.70" probability="1.00000000" edges="1/4to0/4 0/4to0/3 0/3to0/2 0/2to0/1 0/1to0/0 0/0to1/0 1/0to2/0 2/0to2/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car3443" depart="3443.00"> + <routeDistribution last="0"> + <route cost="30.34" probability="1.00000000" edges="2/3to2/2 2/2to1/2 1/2to0/2 0/2to0/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car3444" depart="3444.00"> + <routeDistribution last="0"> + <route cost="37.13" probability="1.00000000" edges="1/0to1/1 1/1to2/1 2/1to2/2 2/2to3/2 3/2to3/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car3445" depart="3445.00"> + <routeDistribution last="0"> + <route cost="31.00" probability="1.00000000" edges="4/2to3/2 3/2to3/1 3/1to3/0 3/0to4/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car3446" depart="3446.00"> + <routeDistribution last="0"> + <route cost="45.83" probability="1.00000000" edges="2/2to2/1 2/1to2/2 2/2to2/3 2/3to2/4 2/4to3/4 3/4to4/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car3447" depart="3447.00"> + <routeDistribution last="0"> + <route cost="36.46" probability="1.00000000" edges="2/3to3/3 3/3to3/2 3/2to3/1 3/1to2/1 2/1to3/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car3448" depart="3448.00"> + <routeDistribution last="0"> + <route cost="66.21" probability="1.00000000" edges="1/4to0/4 0/4to0/3 0/3to0/2 0/2to0/1 0/1to0/0 0/0to1/0 1/0to2/0 2/0to3/0 3/0to2/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car3449" depart="3449.00"> + <routeDistribution last="0"> + <route cost="29.32" probability="1.00000000" edges="2/3to2/4 2/4to1/4 1/4to0/4 0/4to0/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car3450" depart="3450.00"> + <routeDistribution last="0"> + <route cost="43.94" probability="1.00000000" edges="1/4to2/4 2/4to2/3 2/3to1/3 1/3to1/2 1/2to0/2 0/2to0/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car3451" depart="3451.00"> + <routeDistribution last="0"> + <route cost="39.03" probability="1.00000000" edges="0/2to0/3 0/3to1/3 1/3to2/3 2/3to3/3 3/3to3/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car3452" depart="3452.00"> + <routeDistribution last="0"> + <route cost="38.64" probability="1.00000000" edges="1/2to2/2 2/2to1/2 1/2to0/2 0/2to0/3 0/3to0/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car3453" depart="3453.00"> + <routeDistribution last="0"> + <route cost="36.05" probability="1.00000000" edges="1/1to1/2 1/2to1/3 1/3to1/4 1/4to2/4 2/4to3/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car3454" depart="3454.00"> + <routeDistribution last="0"> + <route cost="35.74" probability="1.00000000" edges="1/3to1/4 1/4to1/3 1/3to1/2 1/2to1/1 1/1to1/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car3455" depart="3455.00"> + <routeDistribution last="0"> + <route cost="29.65" probability="1.00000000" edges="4/3to3/3 3/3to4/3 4/3to4/2 4/2to4/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car3456" depart="3456.00"> + <routeDistribution last="0"> + <route cost="50.41" probability="1.00000000" edges="0/2to0/1 0/1to1/1 1/1to2/1 2/1to3/1 3/1to4/1 4/1to3/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car3457" depart="3457.00"> + <routeDistribution last="0"> + <route cost="56.71" probability="1.00000000" edges="4/3to4/4 4/4to3/4 3/4to2/4 2/4to1/4 1/4to0/4 0/4to0/3 0/3to0/2 0/2to0/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car3458" depart="3458.00"> + <routeDistribution last="0"> + <route cost="67.21" probability="1.00000000" edges="2/4to1/4 1/4to2/4 2/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to4/0 4/0to4/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car3459" depart="3459.00"> + <routeDistribution last="0"> + <route cost="39.46" probability="1.00000000" edges="4/2to4/3 4/3to4/2 4/2to3/2 3/2to2/2 2/2to2/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car3460" depart="3460.00"> + <routeDistribution last="0"> + <route cost="65.23" probability="1.00000000" edges="3/1to4/1 4/1to3/1 3/1to2/1 2/1to1/1 1/1to0/1 0/1to0/2 0/2to0/3 0/3to0/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car3461" depart="3461.00"> + <routeDistribution last="0"> + <route cost="29.95" probability="1.00000000" edges="2/1to3/1 3/1to3/2 3/2to4/2 4/2to4/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car3462" depart="3462.00"> + <routeDistribution last="0"> + <route cost="21.93" probability="1.00000000" edges="1/2to1/1 1/1to0/1 0/1to0/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car3463" depart="3463.00"> + <routeDistribution last="0"> + <route cost="35.66" probability="1.00000000" edges="1/3to1/4 1/4to2/4 2/4to3/4 3/4to3/3 3/3to3/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car3464" depart="3464.00"> + <routeDistribution last="0"> + <route cost="33.63" probability="1.00000000" edges="0/4to0/3 0/3to1/3 1/3to2/3 2/3to2/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car3465" depart="3465.00"> + <routeDistribution last="0"> + <route cost="71.20" probability="1.00000000" edges="0/1to0/0 0/0to1/0 1/0to2/0 2/0to3/0 3/0to4/0 4/0to4/1 4/1to4/2 4/2to4/3 4/3to4/4 4/4to3/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car3466" depart="3466.00"> + <routeDistribution last="0"> + <route cost="31.15" probability="1.00000000" edges="4/3to3/3 3/3to2/3 2/3to2/4 2/4to2/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car3467" depart="3467.00"> + <routeDistribution last="0"> + <route cost="52.26" probability="1.00000000" edges="2/4to3/4 3/4to3/3 3/3to2/3 2/3to2/2 2/2to1/2 1/2to0/2 0/2to0/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car3468" depart="3468.00"> + <routeDistribution last="0"> + <route cost="45.21" probability="1.00000000" edges="0/1to0/0 0/0to1/0 1/0to2/0 2/0to2/1 2/1to2/2 2/2to2/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car3469" depart="3469.00"> + <routeDistribution last="0"> + <route cost="14.85" probability="1.00000000" edges="3/1to2/1 2/1to1/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car3470" depart="3470.00"> + <routeDistribution last="0"> + <route cost="68.17" probability="1.00000000" edges="1/3to0/3 0/3to0/2 0/2to0/1 0/1to0/0 0/0to1/0 1/0to2/0 2/0to3/0 3/0to4/0 4/0to3/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car3471" depart="3471.00"> + <routeDistribution last="0"> + <route cost="71.20" probability="1.00000000" edges="4/3to4/4 4/4to3/4 3/4to2/4 2/4to1/4 1/4to0/4 0/4to0/3 0/3to0/2 0/2to0/1 0/1to0/0 0/0to1/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car3472" depart="3472.00"> + <routeDistribution last="0"> + <route cost="45.44" probability="1.00000000" edges="0/1to1/1 1/1to1/2 1/2to2/2 2/2to2/3 2/3to3/3 3/3to3/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car3473" depart="3473.00"> + <routeDistribution last="0"> + <route cost="23.15" probability="1.00000000" edges="3/4to2/4 2/4to2/3 2/3to1/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car3474" depart="3474.00"> + <routeDistribution last="0"> + <route cost="24.93" probability="1.00000000" edges="4/0to4/1 4/1to3/1 3/1to3/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car3475" depart="3475.00"> + <routeDistribution last="0"> + <route cost="38.35" probability="1.00000000" edges="3/2to4/2 4/2to3/2 3/2to2/2 2/2to2/3 2/3to2/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car3476" depart="3476.00"> + <routeDistribution last="0"> + <route cost="45.44" probability="1.00000000" edges="0/1to1/1 1/1to1/2 1/2to2/2 2/2to2/3 2/3to3/3 3/3to3/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car3477" depart="3477.00"> + <routeDistribution last="0"> + <route cost="31.54" probability="1.00000000" edges="3/1to4/1 4/1to3/1 3/1to2/1 2/1to1/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car3478" depart="3478.00"> + <routeDistribution last="0"> + <route cost="44.82" probability="1.00000000" edges="2/1to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to0/4 0/4to0/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car3479" depart="3479.00"> + <routeDistribution last="0"> + <route cost="36.52" probability="1.00000000" edges="2/1to2/0 2/0to3/0 3/0to4/0 4/0to4/1 4/1to4/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car3480" depart="3480.00"> + <routeDistribution last="0"> + <route cost="31.01" probability="1.00000000" edges="4/4to3/4 3/4to2/4 2/4to1/4 1/4to1/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car3481" depart="3481.00"> + <routeDistribution last="0"> + <route cost="35.66" probability="1.00000000" edges="2/4to2/3 2/3to2/2 2/2to2/1 2/1to1/1 1/1to1/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car3482" depart="3482.00"> + <routeDistribution last="0"> + <route cost="66.60" probability="1.00000000" edges="4/4to4/3 4/3to4/2 4/2to4/1 4/1to4/0 4/0to3/0 3/0to2/0 2/0to1/0 1/0to0/0 0/0to1/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car3483" depart="3483.00"> + <routeDistribution last="0"> + <route cost="24.65" probability="1.00000000" edges="1/0to1/1 1/1to0/1 0/1to0/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car3484" depart="3484.00"> + <routeDistribution last="0"> + <route cost="37.16" probability="1.00000000" edges="1/3to2/3 2/3to3/3 3/3to3/2 3/2to3/1 3/1to2/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car3485" depart="3485.00"> + <routeDistribution last="0"> + <route cost="35.26" probability="1.00000000" edges="2/4to3/4 3/4to3/3 3/3to2/3 2/3to2/2 2/2to1/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car3486" depart="3486.00"> + <routeDistribution last="0"> + <route cost="59.12" probability="1.00000000" edges="1/4to0/4 0/4to1/4 1/4to2/4 2/4to3/4 3/4to4/4 4/4to4/3 4/3to4/2 4/2to4/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car3487" depart="3487.00"> + <routeDistribution last="0"> + <route cost="44.76" probability="1.00000000" edges="1/1to1/0 1/0to1/1 1/1to2/1 2/1to2/2 2/2to3/2 3/2to3/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car3488" depart="3488.00"> + <routeDistribution last="0"> + <route cost="22.03" probability="1.00000000" edges="2/3to1/3 1/3to1/2 1/2to1/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car3489" depart="3489.00"> + <routeDistribution last="0"> + <route cost="38.35" probability="1.00000000" edges="3/1to4/1 4/1to3/1 3/1to2/1 2/1to2/2 2/2to2/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car3490" depart="3490.00"> + <routeDistribution last="0"> + <route cost="47.03" probability="1.00000000" edges="0/1to1/1 1/1to2/1 2/1to2/2 2/2to3/2 3/2to4/2 4/2to3/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car3491" depart="3491.00"> + <routeDistribution last="0"> + <route cost="37.96" probability="1.00000000" edges="3/2to2/2 2/2to3/2 3/2to3/1 3/1to3/0 3/0to2/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car3492" depart="3492.00"> + <routeDistribution last="0"> + <route cost="47.60" probability="1.00000000" edges="0/3to1/3 1/3to1/4 1/4to2/4 2/4to3/4 3/4to4/4 4/4to3/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car3493" depart="3493.00"> + <routeDistribution last="0"> + <route cost="30.35" probability="1.00000000" edges="1/1to1/2 1/2to2/2 2/2to3/2 3/2to4/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car3494" depart="3494.00"> + <routeDistribution last="0"> + <route cost="42.58" probability="1.00000000" edges="1/1to0/1 0/1to0/2 0/2to0/3 0/3to0/4 0/4to1/4 1/4to1/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car3495" depart="3495.00"> + <routeDistribution last="0"> + <route cost="44.44" probability="1.00000000" edges="3/4to3/3 3/3to2/3 2/3to2/4 2/4to1/4 1/4to0/4 0/4to0/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car3496" depart="3496.00"> + <routeDistribution last="0"> + <route cost="41.19" probability="1.00000000" edges="4/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to4/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car3497" depart="3497.00"> + <routeDistribution last="0"> + <route cost="37.42" probability="1.00000000" edges="3/0to4/0 4/0to3/0 3/0to2/0 2/0to2/1 2/1to2/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car3498" depart="3498.00"> + <routeDistribution last="0"> + <route cost="41.47" probability="1.00000000" edges="0/3to0/4 0/4to1/4 1/4to2/4 2/4to2/3 2/3to2/2 2/2to2/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car3499" depart="3499.00"> + <routeDistribution last="0"> + <route cost="38.02" probability="1.00000000" edges="0/1to0/0 0/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car3500" depart="3500.00"> + <routeDistribution last="0"> + <route cost="20.83" probability="1.00000000" edges="1/4to2/4 2/4to3/4 3/4to4/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car3501" depart="3501.00"> + <routeDistribution last="0"> + <route cost="35.65" probability="1.00000000" edges="2/4to3/4 3/4to3/3 3/3to3/2 3/2to2/2 2/2to2/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car3502" depart="3502.00"> + <routeDistribution last="0"> + <route cost="54.22" probability="1.00000000" edges="4/1to3/1 3/1to3/2 3/2to3/3 3/3to3/4 3/4to2/4 2/4to1/4 1/4to2/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car3503" depart="3503.00"> + <routeDistribution last="0"> + <route cost="32.21" probability="1.00000000" edges="0/1to1/1 1/1to1/2 1/2to1/3 1/3to0/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car3504" depart="3504.00"> + <routeDistribution last="0"> + <route cost="59.12" probability="1.00000000" edges="0/1to0/0 0/0to0/1 0/1to0/2 0/2to0/3 0/3to0/4 0/4to1/4 1/4to2/4 2/4to3/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car3505" depart="3505.00"> + <routeDistribution last="0"> + <route cost="30.34" probability="1.00000000" edges="4/2to3/2 3/2to3/3 3/3to3/4 3/4to2/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car3506" depart="3506.00"> + <routeDistribution last="0"> + <route cost="30.63" probability="1.00000000" edges="1/3to2/3 2/3to2/4 2/4to3/4 3/4to4/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car3507" depart="3507.00"> + <routeDistribution last="0"> + <route cost="36.83" probability="1.00000000" edges="4/3to3/3 3/3to3/2 3/2to3/1 3/1to2/1 2/1to3/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car3508" depart="3508.00"> + <routeDistribution last="0"> + <route cost="44.64" probability="1.00000000" edges="2/2to3/2 3/2to3/1 3/1to3/0 3/0to2/0 2/0to1/0 1/0to0/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car3509" depart="3509.00"> + <routeDistribution last="0"> + <route cost="37.53" probability="1.00000000" edges="1/4to2/4 2/4to3/4 3/4to3/3 3/3to3/2 3/2to4/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car3510" depart="3510.00"> + <routeDistribution last="0"> + <route cost="61.36" probability="1.00000000" edges="4/2to4/1 4/1to3/1 3/1to2/1 2/1to1/1 1/1to0/1 0/1to0/2 0/2to0/3 0/3to1/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car3511" depart="3511.00"> + <routeDistribution last="0"> + <route cost="52.21" probability="1.00000000" edges="0/0to1/0 1/0to2/0 2/0to3/0 3/0to3/1 3/1to3/2 3/2to3/3 3/3to4/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car3512" depart="3512.00"> + <routeDistribution last="0"> + <route cost="47.36" probability="1.00000000" edges="4/3to4/2 4/2to3/2 3/2to2/2 2/2to1/2 1/2to0/2 0/2to0/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car3513" depart="3513.00"> + <routeDistribution last="0"> + <route cost="37.16" probability="1.00000000" edges="1/3to2/3 2/3to2/2 2/2to2/1 2/1to2/0 2/0to1/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car3514" depart="3514.00"> + <routeDistribution last="0"> + <route cost="50.71" probability="1.00000000" edges="3/0to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to0/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car3515" depart="3515.00"> + <routeDistribution last="0"> + <route cost="37.15" probability="1.00000000" edges="3/1to2/1 2/1to2/2 2/2to2/3 2/3to3/3 3/3to3/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car3516" depart="3516.00"> + <routeDistribution last="0"> + <route cost="37.26" probability="1.00000000" edges="0/3to0/4 0/4to1/4 1/4to2/4 2/4to2/3 2/3to3/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car3517" depart="3517.00"> + <routeDistribution last="0"> + <route cost="13.35" probability="1.00000000" edges="1/3to1/2 1/2to1/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car3518" depart="3518.00"> + <routeDistribution last="0"> + <route cost="21.66" probability="1.00000000" edges="1/0to1/1 1/1to2/1 2/1to3/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car3519" depart="3519.00"> + <routeDistribution last="0"> + <route cost="44.82" probability="1.00000000" edges="4/3to4/4 4/4to3/4 3/4to2/4 2/4to2/3 2/3to2/2 2/2to1/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car3520" depart="3520.00"> + <routeDistribution last="0"> + <route cost="37.14" probability="1.00000000" edges="4/0to3/0 3/0to2/0 2/0to1/0 1/0to1/1 1/1to1/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car3521" depart="3521.00"> + <routeDistribution last="0"> + <route cost="53.82" probability="1.00000000" edges="0/1to1/1 1/1to1/2 1/2to2/2 2/2to2/3 2/3to3/3 3/3to4/3 4/3to3/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car3522" depart="3522.00"> + <routeDistribution last="0"> + <route cost="28.85" probability="1.00000000" edges="1/2to1/3 1/3to1/4 1/4to2/4 2/4to3/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car3523" depart="3523.00"> + <routeDistribution last="0"> + <route cost="21.65" probability="1.00000000" edges="1/3to1/2 1/2to0/2 0/2to0/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car3524" depart="3524.00"> + <routeDistribution last="0"> + <route cost="43.96" probability="1.00000000" edges="1/0to1/1 1/1to2/1 2/1to2/2 2/2to2/3 2/3to3/3 3/3to3/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car3525" depart="3525.00"> + <routeDistribution last="0"> + <route cost="52.66" probability="1.00000000" edges="1/2to1/3 1/3to2/3 2/3to3/3 3/3to4/3 4/3to4/2 4/2to4/1 4/1to3/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car3526" depart="3526.00"> + <routeDistribution last="0"> + <route cost="54.24" probability="1.00000000" edges="0/3to1/3 1/3to2/3 2/3to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to3/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car3527" depart="3527.00"> + <routeDistribution last="0"> + <route cost="59.20" probability="1.00000000" edges="0/4to0/3 0/3to0/2 0/2to0/1 0/1to0/0 0/0to1/0 1/0to2/0 2/0to3/0 3/0to2/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car3528" depart="3528.00"> + <routeDistribution last="0"> + <route cost="20.83" probability="1.00000000" edges="0/1to0/2 0/2to0/3 0/3to0/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car3529" depart="3529.00"> + <routeDistribution last="0"> + <route cost="48.16" probability="1.00000000" edges="0/1to0/2 0/2to1/2 1/2to2/2 2/2to3/2 3/2to3/1 3/1to3/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car3530" depart="3530.00"> + <routeDistribution last="0"> + <route cost="49.71" probability="1.00000000" edges="4/0to4/1 4/1to4/2 4/2to4/3 4/3to4/4 4/4to3/4 3/4to2/4 2/4to1/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car3531" depart="3531.00"> + <routeDistribution last="0"> + <route cost="38.66" probability="1.00000000" edges="0/1to0/2 0/2to1/2 1/2to2/2 2/2to3/2 3/2to3/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car3532" depart="3532.00"> + <routeDistribution last="0"> + <route cost="38.65" probability="1.00000000" edges="0/1to1/1 1/1to2/1 2/1to2/2 2/2to3/2 3/2to3/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car3533" depart="3533.00"> + <routeDistribution last="0"> + <route cost="51.81" probability="1.00000000" edges="1/4to0/4 0/4to1/4 1/4to2/4 2/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car3534" depart="3534.00"> + <routeDistribution last="0"> + <route cost="44.36" probability="1.00000000" edges="0/2to0/3 0/3to1/3 1/3to2/3 2/3to2/2 2/2to2/1 2/1to2/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car3535" depart="3535.00"> + <routeDistribution last="0"> + <route cost="44.71" probability="1.00000000" edges="3/4to3/3 3/3to2/3 2/3to2/2 2/2to2/1 2/1to2/0 2/0to3/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car3536" depart="3536.00"> + <routeDistribution last="0"> + <route cost="39.85" probability="1.00000000" edges="3/3to4/3 4/3to3/3 3/3to2/3 2/3to1/3 1/3to1/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car3537" depart="3537.00"> + <routeDistribution last="0"> + <route cost="37.81" probability="1.00000000" edges="2/1to3/1 3/1to3/2 3/2to4/2 4/2to4/3 4/3to4/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car3538" depart="3538.00"> + <routeDistribution last="0"> + <route cost="55.97" probability="1.00000000" edges="3/0to2/0 2/0to1/0 1/0to0/0 0/0to0/1 0/1to0/2 0/2to0/3 0/3to0/4 0/4to1/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car3539" depart="3539.00"> + <routeDistribution last="0"> + <route cost="47.73" probability="1.00000000" edges="0/1to0/2 0/2to1/2 1/2to2/2 2/2to3/2 3/2to4/2 4/2to4/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car3540" depart="3540.00"> + <routeDistribution last="0"> + <route cost="48.00" probability="1.00000000" edges="4/2to3/2 3/2to2/2 2/2to2/1 2/1to1/1 1/1to0/1 0/1to0/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car3541" depart="3541.00"> + <routeDistribution last="0"> + <route cost="21.65" probability="1.00000000" edges="2/2to2/3 2/3to3/3 3/3to3/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car3542" depart="3542.00"> + <routeDistribution last="0"> + <route cost="22.03" probability="1.00000000" edges="2/2to2/3 2/3to2/4 2/4to1/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car3543" depart="3543.00"> + <routeDistribution last="0"> + <route cost="37.15" probability="1.00000000" edges="1/3to2/3 2/3to2/2 2/2to2/1 2/1to1/1 1/1to1/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car3544" depart="3544.00"> + <routeDistribution last="0"> + <route cost="66.97" probability="1.00000000" edges="3/4to4/4 4/4to3/4 3/4to2/4 2/4to1/4 1/4to0/4 0/4to0/3 0/3to0/2 0/2to0/1 0/1to0/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car3545" depart="3545.00"> + <routeDistribution last="0"> + <route cost="38.72" probability="1.00000000" edges="3/2to3/3 3/3to3/4 3/4to2/4 2/4to1/4 1/4to2/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car3546" depart="3546.00"> + <routeDistribution last="0"> + <route cost="54.44" probability="1.00000000" edges="4/4to4/3 4/3to3/3 3/3to3/2 3/2to2/2 2/2to1/2 1/2to0/2 0/2to0/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car3547" depart="3547.00"> + <routeDistribution last="0"> + <route cost="56.85" probability="1.00000000" edges="0/2to0/3 0/3to1/3 1/3to2/3 2/3to3/3 3/3to4/3 4/3to4/2 4/2to4/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car3548" depart="3548.00"> + <routeDistribution last="0"> + <route cost="36.83" probability="1.00000000" edges="1/1to1/0 1/0to1/1 1/1to1/2 1/2to2/2 2/2to2/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car3549" depart="3549.00"> + <routeDistribution last="0"> + <route cost="30.73" probability="1.00000000" edges="2/0to3/0 3/0to3/1 3/1to3/2 3/2to3/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car3550" depart="3550.00"> + <routeDistribution last="0"> + <route cost="45.02" probability="1.00000000" edges="4/0to3/0 3/0to2/0 2/0to2/1 2/1to2/2 2/2to2/3 2/3to1/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car3551" depart="3551.00"> + <routeDistribution last="0"> + <route cost="23.55" probability="1.00000000" edges="0/1to1/1 1/1to2/1 2/1to3/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car3552" depart="3552.00"> + <routeDistribution last="0"> + <route cost="29.95" probability="1.00000000" edges="2/2to3/2 3/2to3/1 3/1to2/1 2/1to2/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car3553" depart="3553.00"> + <routeDistribution last="0"> + <route cost="53.03" probability="1.00000000" edges="1/2to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to2/4 2/4to3/4 3/4to4/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car3554" depart="3554.00"> + <routeDistribution last="0"> + <route cost="37.15" probability="1.00000000" edges="1/1to2/1 2/1to2/2 2/2to2/3 2/3to3/3 3/3to3/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car3555" depart="3555.00"> + <routeDistribution last="0"> + <route cost="54.11" probability="1.00000000" edges="1/4to0/4 0/4to1/4 1/4to2/4 2/4to2/3 2/3to2/2 2/2to2/1 2/1to2/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car3556" depart="3556.00"> + <routeDistribution last="0"> + <route cost="56.03" probability="1.00000000" edges="3/2to4/2 4/2to3/2 3/2to2/2 2/2to1/2 1/2to0/2 0/2to0/3 0/3to0/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car3557" depart="3557.00"> + <routeDistribution last="0"> + <route cost="30.32" probability="1.00000000" edges="1/1to2/1 2/1to2/2 2/2to3/2 3/2to3/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car3558" depart="3558.00"> + <routeDistribution last="0"> + <route cost="64.82" probability="1.00000000" edges="4/1to4/0 4/0to3/0 3/0to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to0/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car3559" depart="3559.00"> + <routeDistribution last="0"> + <route cost="21.66" probability="1.00000000" edges="4/2to4/1 4/1to3/1 3/1to2/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car3560" depart="3560.00"> + <routeDistribution last="0"> + <route cost="42.84" probability="1.00000000" edges="2/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to2/1 2/1to2/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car3561" depart="3561.00"> + <routeDistribution last="0"> + <route cost="43.66" probability="1.00000000" edges="2/0to3/0 3/0to2/0 2/0to2/1 2/1to2/2 2/2to2/3 2/3to3/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car3562" depart="3562.00"> + <routeDistribution last="0"> + <route cost="53.96" probability="1.00000000" edges="3/4to4/4 4/4to4/3 4/3to3/3 3/3to2/3 2/3to1/3 1/3to0/3 0/3to1/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car3563" depart="3563.00"> + <routeDistribution last="0"> + <route cost="36.42" probability="1.00000000" edges="2/0to2/1 2/1to2/2 2/2to2/3 2/3to2/4 2/4to1/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car3564" depart="3564.00"> + <routeDistribution last="0"> + <route cost="31.74" probability="1.00000000" edges="0/4to0/3 0/3to1/3 1/3to1/2 1/2to0/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car3565" depart="3565.00"> + <routeDistribution last="0"> + <route cost="51.54" probability="1.00000000" edges="0/2to0/3 0/3to1/3 1/3to1/2 1/2to1/1 1/1to1/0 1/0to2/0 2/0to3/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car3566" depart="3566.00"> + <routeDistribution last="0"> + <route cost="20.83" probability="1.00000000" edges="4/4to3/4 3/4to2/4 2/4to1/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car3567" depart="3567.00"> + <routeDistribution last="0"> + <route cost="30.04" probability="1.00000000" edges="3/0to3/1 3/1to3/2 3/2to3/3 3/3to3/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car3568" depart="3568.00"> + <routeDistribution last="0"> + <route cost="44.73" probability="1.00000000" edges="0/0to1/0 1/0to0/0 0/0to0/1 0/1to0/2 0/2to0/3 0/3to0/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car3569" depart="3569.00"> + <routeDistribution last="0"> + <route cost="38.33" probability="1.00000000" edges="1/2to1/1 1/1to1/2 1/2to1/3 1/3to2/3 2/3to2/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car3570" depart="3570.00"> + <routeDistribution last="0"> + <route cost="37.44" probability="1.00000000" edges="0/3to1/3 1/3to1/2 1/2to1/1 1/1to0/1 0/1to0/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car3571" depart="3571.00"> + <routeDistribution last="0"> + <route cost="31.54" probability="1.00000000" edges="2/1to1/1 1/1to2/1 2/1to3/1 3/1to4/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car3572" depart="3572.00"> + <routeDistribution last="0"> + <route cost="47.33" probability="1.00000000" edges="4/4to4/3 4/3to3/3 3/3to2/3 2/3to1/3 1/3to0/3 0/3to1/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car3573" depart="3573.00"> + <routeDistribution last="0"> + <route cost="45.02" probability="1.00000000" edges="4/2to3/2 3/2to3/3 3/3to3/4 3/4to2/4 2/4to1/4 1/4to0/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car3574" depart="3574.00"> + <routeDistribution last="0"> + <route cost="27.74" probability="1.00000000" edges="2/0to2/1 2/1to2/2 2/2to2/3 2/3to2/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car3575" depart="3575.00"> + <routeDistribution last="0"> + <route cost="39.34" probability="1.00000000" edges="3/2to2/2 2/2to1/2 1/2to0/2 0/2to0/3 0/3to0/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car3576" depart="3576.00"> + <routeDistribution last="0"> + <route cost="45.92" probability="1.00000000" edges="2/4to2/3 2/3to2/2 2/2to2/1 2/1to2/0 2/0to3/0 3/0to2/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car3577" depart="3577.00"> + <routeDistribution last="0"> + <route cost="61.23" probability="1.00000000" edges="4/4to4/3 4/3to3/3 3/3to3/2 3/2to2/2 2/2to2/1 2/1to1/1 1/1to0/1 0/1to0/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car3578" depart="3578.00"> + <routeDistribution last="0"> + <route cost="51.19" probability="1.00000000" edges="3/2to4/2 4/2to4/3 4/3to4/4 4/4to3/4 3/4to2/4 2/4to1/4 1/4to0/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car3579" depart="3579.00"> + <routeDistribution last="0"> + <route cost="51.53" probability="1.00000000" edges="2/1to2/0 2/0to2/1 2/1to2/2 2/2to2/3 2/3to2/4 2/4to3/4 3/4to4/4"/> + </routeDistribution> + </vehicle> + <vehicle id="car3580" depart="3580.00"> + <routeDistribution last="0"> + <route cost="36.85" probability="1.00000000" edges="0/3to1/3 1/3to1/2 1/2to1/1 1/1to1/0 1/0to1/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car3581" depart="3581.00"> + <routeDistribution last="0"> + <route cost="24.65" probability="1.00000000" edges="3/3to3/2 3/2to4/2 4/2to4/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car3582" depart="3582.00"> + <routeDistribution last="0"> + <route cost="56.85" probability="1.00000000" edges="4/2to4/3 4/3to4/2 4/2to3/2 3/2to2/2 2/2to1/2 1/2to0/2 0/2to0/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car3583" depart="3583.00"> + <routeDistribution last="0"> + <route cost="45.21" probability="1.00000000" edges="4/1to4/2 4/2to4/3 4/3to4/4 4/4to3/4 3/4to2/4 2/4to2/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car3584" depart="3584.00"> + <routeDistribution last="0"> + <route cost="51.10" probability="1.00000000" edges="1/4to1/3 1/3to1/2 1/2to1/1 1/1to1/0 1/0to2/0 2/0to3/0 3/0to4/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car3585" depart="3585.00"> + <routeDistribution last="0"> + <route cost="34.55" probability="1.00000000" edges="1/4to2/4 2/4to2/3 2/3to2/2 2/2to2/1 2/1to2/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car3586" depart="3586.00"> + <routeDistribution last="0"> + <route cost="47.03" probability="1.00000000" edges="4/3to3/3 3/3to2/3 2/3to2/2 2/2to1/2 1/2to0/2 0/2to1/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car3587" depart="3587.00"> + <routeDistribution last="0"> + <route cost="39.85" probability="1.00000000" edges="2/3to3/3 3/3to4/3 4/3to4/2 4/2to4/1 4/1to4/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car3588" depart="3588.00"> + <routeDistribution last="0"> + <route cost="65.46" probability="1.00000000" edges="2/4to1/4 1/4to2/4 2/4to3/4 3/4to4/4 4/4to4/3 4/3to4/2 4/2to4/1 4/1to4/0 4/0to3/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car3589" depart="3589.00"> + <routeDistribution last="0"> + <route cost="28.54" probability="1.00000000" edges="1/3to1/2 1/2to1/1 1/1to1/0 1/0to1/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car3590" depart="3590.00"> + <routeDistribution last="0"> + <route cost="44.06" probability="1.00000000" edges="0/4to0/3 0/3to0/4 0/4to1/4 1/4to2/4 2/4to3/4 3/4to3/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car3591" depart="3591.00"> + <routeDistribution last="0"> + <route cost="38.33" probability="1.00000000" edges="1/1to0/1 0/1to1/1 1/1to1/2 1/2to2/2 2/2to3/2"/> + </routeDistribution> + </vehicle> + <vehicle id="car3592" depart="3592.00"> + <routeDistribution last="0"> + <route cost="59.55" probability="1.00000000" edges="2/4to1/4 1/4to2/4 2/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to2/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car3593" depart="3593.00"> + <routeDistribution last="0"> + <route cost="34.27" probability="1.00000000" edges="0/3to0/4 0/4to1/4 1/4to1/3 1/3to1/2 1/2to1/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car3594" depart="3594.00"> + <routeDistribution last="0"> + <route cost="38.25" probability="1.00000000" edges="2/1to2/0 2/0to2/1 2/1to3/1 3/1to4/1 4/1to4/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car3595" depart="3595.00"> + <routeDistribution last="0"> + <route cost="31.85" probability="1.00000000" edges="1/2to2/2 2/2to3/2 3/2to4/2 4/2to4/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car3596" depart="3596.00"> + <routeDistribution last="0"> + <route cost="21.95" probability="1.00000000" edges="4/4to4/3 4/3to3/3 3/3to2/3"/> + </routeDistribution> + </vehicle> + <vehicle id="car3597" depart="3597.00"> + <routeDistribution last="0"> + <route cost="21.65" probability="1.00000000" edges="4/2to4/1 4/1to3/1 3/1to3/0"/> + </routeDistribution> + </vehicle> + <vehicle id="car3598" depart="3598.00"> + <routeDistribution last="0"> + <route cost="38.94" probability="1.00000000" edges="0/4to0/3 0/3to0/2 0/2to1/2 1/2to1/1 1/1to0/1"/> + </routeDistribution> + </vehicle> + <vehicle id="car3599" depart="3599.00"> + <routeDistribution last="0"> + <route cost="37.82" probability="1.00000000" edges="4/0to3/0 3/0to3/1 3/1to3/2 3/2to3/3 3/3to2/3"/> + </routeDistribution> + </vehicle> +</routes> diff --git a/r.rou.xml b/r.rou.xml new file mode 100644 index 0000000000000000000000000000000000000000..2d80e79c5b3588680052d39ce1211dfe8c0a0892 --- /dev/null +++ b/r.rou.xml @@ -0,0 +1,10831 @@ +<?xml version="1.0" encoding="UTF-8"?> + +<!-- generated on Thu Apr 7 14:14:42 2022 by Eclipse SUMO duarouter Version 1.8.0 +<configuration xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="http://sumo.dlr.de/xsd/duarouterConfiguration.xsd"> + + <input> + <net-file value="net.net.xml"/> + <route-files value="trips.trips.xml"/> + </input> + + <output> + <output-file value="r.rou.xml"/> + <alternatives-output value="r.rou.alt.xml"/> + </output> + + <time> + <begin value="0"/> + <end value="3600"/> + </time> + + <report> + <no-warnings value="true"/> + <ignore-errors value="true"/> + <no-step-log value="true"/> + </report> + +</configuration> +--> + +<routes xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="http://sumo.dlr.de/xsd/routes_file.xsd"> + <vehicle id="car0" depart="0.00"> + <route edges="3/0to4/0 4/0to3/0 3/0to2/0 2/0to1/0 1/0to0/0 0/0to0/1 0/1to0/0"/> + </vehicle> + <vehicle id="car1" depart="1.00"> + <route edges="1/2to1/3 1/3to1/2 1/2to1/1 1/1to1/0"/> + </vehicle> + <vehicle id="car2" depart="2.00"> + <route edges="4/1to4/2 4/2to3/2 3/2to2/2 2/2to1/2 1/2to0/2 0/2to0/3"/> + </vehicle> + <vehicle id="car3" depart="3.00"> + <route edges="2/0to3/0 3/0to2/0 2/0to1/0 1/0to0/0 0/0to0/1 0/1to0/0"/> + </vehicle> + <vehicle id="car4" depart="4.00"> + <route edges="1/1to1/0 1/0to1/1 1/1to1/2 1/2to2/2 2/2to2/3"/> + </vehicle> + <vehicle id="car5" depart="5.00"> + <route edges="0/1to0/0 0/0to1/0 1/0to2/0"/> + </vehicle> + <vehicle id="car6" depart="6.00"> + <route edges="3/0to4/0 4/0to3/0 3/0to2/0 2/0to2/1 2/1to2/2 2/2to2/3 2/3to2/2"/> + </vehicle> + <vehicle id="car7" depart="7.00"> + <route edges="1/1to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to2/4 2/4to2/3"/> + </vehicle> + <vehicle id="car8" depart="8.00"> + <route edges="3/4to2/4 2/4to1/4 1/4to0/4 0/4to0/3 0/3to0/2 0/2to0/1 0/1to0/0 0/0to0/1"/> + </vehicle> + <vehicle id="car9" depart="9.00"> + <route edges="3/4to2/4 2/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to4/1"/> + </vehicle> + <vehicle id="car10" depart="10.00"> + <route edges="4/3to4/2 4/2to3/2 3/2to2/2 2/2to1/2 1/2to1/3 1/3to1/4"/> + </vehicle> + <vehicle id="car11" depart="11.00"> + <route edges="4/0to3/0 3/0to2/0 2/0to2/1 2/1to2/2 2/2to2/3 2/3to2/4 2/4to3/4"/> + </vehicle> + <vehicle id="car12" depart="12.00"> + <route edges="2/3to1/3 1/3to2/3 2/3to3/3 3/3to4/3 4/3to4/4"/> + </vehicle> + <vehicle id="car13" depart="13.00"> + <route edges="3/4to4/4 4/4to4/3 4/3to4/2 4/2to4/1 4/1to4/0 4/0to3/0 3/0to2/0"/> + </vehicle> + <vehicle id="car14" depart="14.00"> + <route edges="4/0to4/1 4/1to4/2 4/2to4/3 4/3to4/4 4/4to3/4 3/4to2/4 2/4to1/4"/> + </vehicle> + <vehicle id="car15" depart="15.00"> + <route edges="3/2to2/2 2/2to1/2 1/2to1/1 1/1to0/1 0/1to0/2"/> + </vehicle> + <vehicle id="car16" depart="16.00"> + <route edges="3/0to3/1 3/1to3/2 3/2to3/3 3/3to3/4 3/4to2/4 2/4to1/4 1/4to1/3"/> + </vehicle> + <vehicle id="car17" depart="17.00"> + <route edges="1/4to1/3 1/3to1/2 1/2to1/1 1/1to0/1"/> + </vehicle> + <vehicle id="car18" depart="18.00"> + <route edges="1/2to1/1 1/1to1/2 1/2to2/2 2/2to3/2 3/2to4/2 4/2to4/3"/> + </vehicle> + <vehicle id="car19" depart="19.00"> + <route edges="3/0to4/0 4/0to4/1 4/1to4/2 4/2to4/3 4/3to4/4 4/4to3/4 3/4to2/4 2/4to3/4"/> + </vehicle> + <vehicle id="car20" depart="20.00"> + <route edges="1/0to0/0 0/0to0/1 0/1to1/1 1/1to1/2 1/2to2/2 2/2to3/2 3/2to3/3"/> + </vehicle> + <vehicle id="car21" depart="21.00"> + <route edges="1/0to0/0 0/0to0/1 0/1to0/2 0/2to0/3 0/3to0/4 0/4to1/4 1/4to2/4"/> + </vehicle> + <vehicle id="car22" depart="22.00"> + <route edges="4/4to4/3 4/3to4/2 4/2to4/1 4/1to4/0 4/0to3/0 3/0to4/0"/> + </vehicle> + <vehicle id="car23" depart="23.00"> + <route edges="4/0to3/0 3/0to3/1 3/1to3/2 3/2to3/3 3/3to3/4"/> + </vehicle> + <vehicle id="car24" depart="24.00"> + <route edges="1/3to1/2 1/2to1/1"/> + </vehicle> + <vehicle id="car25" depart="25.00"> + <route edges="1/1to0/1 0/1to1/1 1/1to1/2 1/2to2/2 2/2to2/3 2/3to3/3 3/3to4/3 4/3to3/3"/> + </vehicle> + <vehicle id="car26" depart="26.00"> + <route edges="4/1to4/0 4/0to3/0 3/0to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to1/2"/> + </vehicle> + <vehicle id="car27" depart="27.00"> + <route edges="3/1to2/1 2/1to2/0 2/0to1/0"/> + </vehicle> + <vehicle id="car28" depart="28.00"> + <route edges="4/2to4/1 4/1to3/1 3/1to2/1 2/1to2/2"/> + </vehicle> + <vehicle id="car29" depart="29.00"> + <route edges="2/3to2/4 2/4to2/3 2/3to2/2 2/2to1/2 1/2to1/1"/> + </vehicle> + <vehicle id="car30" depart="30.00"> + <route edges="2/4to1/4 1/4to2/4 2/4to3/4 3/4to4/4 4/4to4/3 4/3to4/2 4/2to4/1 4/1to4/2"/> + </vehicle> + <vehicle id="car31" depart="31.00"> + <route edges="4/4to4/3 4/3to3/3 3/3to3/2 3/2to2/2 2/2to2/3"/> + </vehicle> + <vehicle id="car32" depart="32.00"> + <route edges="0/3to0/2 0/2to0/1 0/1to0/0 0/0to1/0 1/0to2/0 2/0to3/0 3/0to3/1"/> + </vehicle> + <vehicle id="car33" depart="33.00"> + <route edges="3/3to4/3 4/3to4/2 4/2to4/1 4/1to4/0 4/0to3/0 3/0to2/0 2/0to3/0"/> + </vehicle> + <vehicle id="car34" depart="34.00"> + <route edges="0/2to0/1 0/1to0/2 0/2to0/3 0/3to0/4 0/4to1/4 1/4to2/4"/> + </vehicle> + <vehicle id="car35" depart="35.00"> + <route edges="4/4to4/3 4/3to3/3 3/3to2/3 2/3to1/3"/> + </vehicle> + <vehicle id="car36" depart="36.00"> + <route edges="4/3to4/4 4/4to4/3 4/3to4/2 4/2to4/1 4/1to4/0 4/0to4/1"/> + </vehicle> + <vehicle id="car37" depart="37.00"> + <route edges="0/0to0/1 0/1to1/1 1/1to1/2 1/2to2/2 2/2to3/2 3/2to3/1"/> + </vehicle> + <vehicle id="car38" depart="38.00"> + <route edges="3/1to3/2 3/2to3/3 3/3to2/3 2/3to1/3"/> + </vehicle> + <vehicle id="car39" depart="39.00"> + <route edges="1/2to1/1 1/1to1/0 1/0to2/0 2/0to3/0 3/0to4/0"/> + </vehicle> + <vehicle id="car40" depart="40.00"> + <route edges="0/3to0/2 0/2to1/2 1/2to2/2 2/2to2/1 2/1to1/1"/> + </vehicle> + <vehicle id="car41" depart="41.00"> + <route edges="2/1to2/2 2/2to3/2 3/2to3/3 3/3to4/3 4/3to4/2"/> + </vehicle> + <vehicle id="car42" depart="42.00"> + <route edges="4/1to4/0 4/0to3/0 3/0to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/1"/> + </vehicle> + <vehicle id="car43" depart="43.00"> + <route edges="1/2to2/2 2/2to2/1 2/1to2/0 2/0to3/0 3/0to4/0"/> + </vehicle> + <vehicle id="car44" depart="44.00"> + <route edges="3/3to3/4 3/4to3/3 3/3to2/3 2/3to1/3"/> + </vehicle> + <vehicle id="car45" depart="45.00"> + <route edges="0/0to0/1 0/1to0/2 0/2to0/3 0/3to1/3 1/3to1/2"/> + </vehicle> + <vehicle id="car46" depart="46.00"> + <route edges="0/0to1/0 1/0to2/0 2/0to3/0 3/0to4/0 4/0to4/1 4/1to4/2 4/2to4/3"/> + </vehicle> + <vehicle id="car47" depart="47.00"> + <route edges="4/1to4/0 4/0to3/0 3/0to3/1 3/1to3/2 3/2to3/3 3/3to3/4 3/4to4/4"/> + </vehicle> + <vehicle id="car48" depart="48.00"> + <route edges="1/3to0/3 0/3to0/2 0/2to0/1 0/1to1/1"/> + </vehicle> + <vehicle id="car49" depart="49.00"> + <route edges="4/1to4/0 4/0to4/1 4/1to4/2 4/2to4/3 4/3to3/3"/> + </vehicle> + <vehicle id="car50" depart="50.00"> + <route edges="0/2to0/1 0/1to0/2 0/2to1/2 1/2to1/3 1/3to2/3 2/3to3/3 3/3to2/3"/> + </vehicle> + <vehicle id="car51" depart="51.00"> + <route edges="3/3to3/2 3/2to2/2 2/2to1/2 1/2to0/2 0/2to0/3 0/3to1/3"/> + </vehicle> + <vehicle id="car52" depart="52.00"> + <route edges="1/2to1/1 1/1to2/1 2/1to3/1 3/1to4/1 4/1to3/1"/> + </vehicle> + <vehicle id="car53" depart="53.00"> + <route edges="2/0to3/0 3/0to2/0 2/0to1/0 1/0to1/1 1/1to0/1"/> + </vehicle> + <vehicle id="car54" depart="54.00"> + <route edges="1/1to0/1 0/1to0/2 0/2to0/3 0/3to1/3 1/3to0/3"/> + </vehicle> + <vehicle id="car55" depart="55.00"> + <route edges="4/4to4/3 4/3to4/2 4/2to4/1 4/1to4/0 4/0to3/0 3/0to4/0"/> + </vehicle> + <vehicle id="car56" depart="56.00"> + <route edges="0/3to0/4 0/4to1/4 1/4to1/3 1/3to1/2 1/2to1/1 1/1to1/0"/> + </vehicle> + <vehicle id="car57" depart="57.00"> + <route edges="0/2to0/1 0/1to0/0 0/0to1/0 1/0to2/0 2/0to3/0 3/0to3/1"/> + </vehicle> + <vehicle id="car58" depart="58.00"> + <route edges="1/1to1/2 1/2to2/2 2/2to3/2 3/2to4/2 4/2to3/2"/> + </vehicle> + <vehicle id="car59" depart="59.00"> + <route edges="4/0to4/1 4/1to4/2 4/2to3/2 3/2to2/2 2/2to1/2 1/2to0/2 0/2to0/1"/> + </vehicle> + <vehicle id="car60" depart="60.00"> + <route edges="1/1to2/1 2/1to3/1 3/1to3/0"/> + </vehicle> + <vehicle id="car61" depart="61.00"> + <route edges="1/1to1/0 1/0to0/0 0/0to0/1 0/1to0/2 0/2to0/3 0/3to1/3"/> + </vehicle> + <vehicle id="car62" depart="62.00"> + <route edges="2/1to3/1 3/1to3/2 3/2to3/3 3/3to3/4"/> + </vehicle> + <vehicle id="car63" depart="63.00"> + <route edges="3/4to2/4 2/4to1/4 1/4to1/3 1/3to1/2 1/2to1/1 1/1to1/0 1/0to2/0"/> + </vehicle> + <vehicle id="car64" depart="64.00"> + <route edges="3/2to3/3 3/3to3/2 3/2to3/1 3/1to3/0"/> + </vehicle> + <vehicle id="car65" depart="65.00"> + <route edges="4/4to3/4 3/4to2/4 2/4to1/4 1/4to0/4 0/4to0/3 0/3to0/2 0/2to1/2"/> + </vehicle> + <vehicle id="car66" depart="66.00"> + <route edges="2/0to2/1 2/1to2/2 2/2to1/2 1/2to1/3 1/3to2/3"/> + </vehicle> + <vehicle id="car67" depart="67.00"> + <route edges="4/0to4/1 4/1to3/1 3/1to2/1 2/1to1/1 1/1to2/1"/> + </vehicle> + <vehicle id="car68" depart="68.00"> + <route edges="2/0to3/0 3/0to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3"/> + </vehicle> + <vehicle id="car69" depart="69.00"> + <route edges="1/1to2/1 2/1to3/1 3/1to3/2 3/2to4/2 4/2to4/1"/> + </vehicle> + <vehicle id="car70" depart="70.00"> + <route edges="2/1to2/0 2/0to3/0 3/0to4/0 4/0to4/1"/> + </vehicle> + <vehicle id="car71" depart="71.00"> + <route edges="2/3to2/4 2/4to2/3 2/3to2/2 2/2to1/2 1/2to1/1 1/1to0/1 0/1to1/1"/> + </vehicle> + <vehicle id="car72" depart="72.00"> + <route edges="4/0to3/0 3/0to2/0 2/0to1/0 1/0to0/0"/> + </vehicle> + <vehicle id="car73" depart="73.00"> + <route edges="2/2to1/2 1/2to1/1 1/1to1/0"/> + </vehicle> + <vehicle id="car74" depart="74.00"> + <route edges="1/4to2/4 2/4to3/4 3/4to4/4 4/4to3/4"/> + </vehicle> + <vehicle id="car75" depart="75.00"> + <route edges="1/2to1/1 1/1to1/2 1/2to2/2 2/2to2/3 2/3to3/3 3/3to3/4"/> + </vehicle> + <vehicle id="car76" depart="76.00"> + <route edges="2/3to2/4 2/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1"/> + </vehicle> + <vehicle id="car77" depart="77.00"> + <route edges="0/4to1/4 1/4to1/3 1/3to1/2 1/2to2/2"/> + </vehicle> + <vehicle id="car78" depart="78.00"> + <route edges="4/3to4/4 4/4to3/4 3/4to2/4 2/4to1/4"/> + </vehicle> + <vehicle id="car79" depart="79.00"> + <route edges="2/3to2/2 2/2to3/2 3/2to4/2"/> + </vehicle> + <vehicle id="car80" depart="80.00"> + <route edges="0/1to1/1 1/1to1/2 1/2to2/2 2/2to2/3 2/3to2/4 2/4to1/4"/> + </vehicle> + <vehicle id="car81" depart="81.00"> + <route edges="2/2to2/3 2/3to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to4/0 4/0to4/1"/> + </vehicle> + <vehicle id="car82" depart="82.00"> + <route edges="0/4to1/4 1/4to2/4 2/4to3/4 3/4to4/4 4/4to4/3 4/3to4/2"/> + </vehicle> + <vehicle id="car83" depart="83.00"> + <route edges="2/4to2/3 2/3to2/2 2/2to2/1 2/1to3/1 3/1to3/2"/> + </vehicle> + <vehicle id="car84" depart="84.00"> + <route edges="1/1to1/2 1/2to1/3 1/3to0/3 0/3to0/4"/> + </vehicle> + <vehicle id="car85" depart="85.00"> + <route edges="4/1to4/2 4/2to4/1 4/1to3/1 3/1to2/1 2/1to1/1 1/1to2/1"/> + </vehicle> + <vehicle id="car86" depart="86.00"> + <route edges="2/4to2/3 2/3to2/2 2/2to2/1 2/1to2/0 2/0to3/0 3/0to2/0"/> + </vehicle> + <vehicle id="car87" depart="87.00"> + <route edges="2/0to3/0 3/0to2/0 2/0to2/1 2/1to2/2 2/2to2/3 2/3to2/4 2/4to1/4"/> + </vehicle> + <vehicle id="car88" depart="88.00"> + <route edges="2/2to3/2 3/2to4/2 4/2to4/3"/> + </vehicle> + <vehicle id="car89" depart="89.00"> + <route edges="1/1to0/1 0/1to1/1 1/1to1/2 1/2to2/2 2/2to3/2 3/2to3/1"/> + </vehicle> + <vehicle id="car90" depart="90.00"> + <route edges="0/2to0/1 0/1to1/1 1/1to2/1 2/1to2/2"/> + </vehicle> + <vehicle id="car91" depart="91.00"> + <route edges="0/2to0/1 0/1to1/1 1/1to1/0"/> + </vehicle> + <vehicle id="car92" depart="92.00"> + <route edges="1/2to1/1 1/1to1/2 1/2to2/2 2/2to3/2 3/2to4/2 4/2to4/3"/> + </vehicle> + <vehicle id="car93" depart="93.00"> + <route edges="3/4to4/4 4/4to4/3 4/3to3/3 3/3to3/2 3/2to2/2"/> + </vehicle> + <vehicle id="car94" depart="94.00"> + <route edges="3/1to2/1 2/1to2/0 2/0to1/0 1/0to0/0 0/0to0/1"/> + </vehicle> + <vehicle id="car95" depart="95.00"> + <route edges="3/4to3/3 3/3to2/3 2/3to2/2 2/2to1/2 1/2to2/2"/> + </vehicle> + <vehicle id="car96" depart="96.00"> + <route edges="3/1to3/0 3/0to3/1 3/1to3/2 3/2to3/3 3/3to4/3 4/3to3/3"/> + </vehicle> + <vehicle id="car97" depart="97.00"> + <route edges="0/3to0/2 0/2to0/3 0/3to1/3 1/3to2/3 2/3to2/4"/> + </vehicle> + <vehicle id="car98" depart="98.00"> + <route edges="1/2to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to2/4 2/4to3/4"/> + </vehicle> + <vehicle id="car99" depart="99.00"> + <route edges="3/2to3/1 3/1to2/1 2/1to1/1 1/1to0/1"/> + </vehicle> + <vehicle id="car100" depart="100.00"> + <route edges="3/0to3/1 3/1to3/2 3/2to2/2 2/2to1/2 1/2to1/1"/> + </vehicle> + <vehicle id="car101" depart="101.00"> + <route edges="4/0to3/0 3/0to2/0 2/0to1/0 1/0to0/0 0/0to0/1 0/1to0/2 0/2to1/2"/> + </vehicle> + <vehicle id="car102" depart="102.00"> + <route edges="2/0to3/0 3/0to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3"/> + </vehicle> + <vehicle id="car103" depart="103.00"> + <route edges="0/0to0/1 0/1to1/1 1/1to1/2 1/2to2/2 2/2to2/3 2/3to3/3 3/3to3/2"/> + </vehicle> + <vehicle id="car104" depart="104.00"> + <route edges="3/0to3/1 3/1to3/2 3/2to2/2 2/2to1/2 1/2to0/2"/> + </vehicle> + <vehicle id="car105" depart="105.00"> + <route edges="3/2to4/2 4/2to3/2 3/2to2/2 2/2to2/3 2/3to2/4"/> + </vehicle> + <vehicle id="car106" depart="106.00"> + <route edges="2/1to1/1 1/1to1/0 1/0to0/0 0/0to0/1"/> + </vehicle> + <vehicle id="car107" depart="107.00"> + <route edges="0/2to0/3 0/3to1/3 1/3to2/3 2/3to3/3 3/3to4/3 4/3to4/2 4/2to4/1 4/1to4/0"/> + </vehicle> + <vehicle id="car108" depart="108.00"> + <route edges="4/2to3/2 3/2to2/2 2/2to2/3 2/3to2/2"/> + </vehicle> + <vehicle id="car109" depart="109.00"> + <route edges="3/4to4/4 4/4to3/4 3/4to2/4 2/4to1/4"/> + </vehicle> + <vehicle id="car110" depart="110.00"> + <route edges="1/3to0/3 0/3to1/3 1/3to2/3 2/3to3/3 3/3to4/3 4/3to4/2 4/2to4/1 4/1to4/2"/> + </vehicle> + <vehicle id="car111" depart="111.00"> + <route edges="3/3to4/3 4/3to4/2 4/2to4/1 4/1to4/0 4/0to4/1"/> + </vehicle> + <vehicle id="car112" depart="112.00"> + <route edges="4/1to4/2 4/2to4/1 4/1to3/1 3/1to2/1 2/1to1/1 1/1to0/1"/> + </vehicle> + <vehicle id="car113" depart="113.00"> + <route edges="3/3to3/4 3/4to4/4 4/4to4/3 4/3to4/2 4/2to4/1 4/1to4/0"/> + </vehicle> + <vehicle id="car114" depart="114.00"> + <route edges="0/4to1/4 1/4to2/4 2/4to3/4 3/4to4/4 4/4to4/3 4/3to4/2 4/2to4/3"/> + </vehicle> + <vehicle id="car115" depart="115.00"> + <route edges="4/1to3/1 3/1to3/2 3/2to3/3 3/3to4/3 4/3to4/4 4/4to3/4"/> + </vehicle> + <vehicle id="car116" depart="116.00"> + <route edges="3/4to2/4 2/4to3/4 3/4to4/4 4/4to4/3 4/3to4/2 4/2to4/1 4/1to4/0"/> + </vehicle> + <vehicle id="car117" depart="117.00"> + <route edges="0/0to1/0 1/0to2/0 2/0to3/0 3/0to3/1 3/1to3/2 3/2to3/3"/> + </vehicle> + <vehicle id="car118" depart="118.00"> + <route edges="1/3to1/4 1/4to2/4 2/4to3/4 3/4to4/4 4/4to4/3 4/3to4/2 4/2to4/3"/> + </vehicle> + <vehicle id="car119" depart="119.00"> + <route edges="3/4to2/4 2/4to3/4 3/4to4/4 4/4to4/3 4/3to4/2 4/2to4/1 4/1to3/1"/> + </vehicle> + <vehicle id="car120" depart="120.00"> + <route edges="3/4to2/4 2/4to1/4 1/4to1/3 1/3to1/2 1/2to1/1"/> + </vehicle> + <vehicle id="car121" depart="121.00"> + <route edges="3/3to3/4 3/4to2/4 2/4to1/4 1/4to0/4 0/4to0/3 0/3to0/2"/> + </vehicle> + <vehicle id="car122" depart="122.00"> + <route edges="1/1to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to2/4 2/4to3/4 3/4to3/3"/> + </vehicle> + <vehicle id="car123" depart="123.00"> + <route edges="2/1to2/2 2/2to2/3 2/3to1/3 1/3to0/3"/> + </vehicle> + <vehicle id="car124" depart="124.00"> + <route edges="3/3to4/3 4/3to3/3 3/3to3/2 3/2to2/2 2/2to2/1 2/1to1/1 1/1to1/2"/> + </vehicle> + <vehicle id="car125" depart="125.00"> + <route edges="0/0to1/0 1/0to2/0"/> + </vehicle> + <vehicle id="car126" depart="126.00"> + <route edges="1/3to1/4 1/4to2/4 2/4to3/4 3/4to4/4 4/4to4/3 4/3to4/2 4/2to4/1 4/1to3/1"/> + </vehicle> + <vehicle id="car127" depart="127.00"> + <route edges="4/3to4/4 4/4to3/4 3/4to2/4 2/4to2/3 2/3to2/2 2/2to1/2 1/2to1/3"/> + </vehicle> + <vehicle id="car128" depart="128.00"> + <route edges="3/0to4/0 4/0to3/0 3/0to2/0 2/0to1/0"/> + </vehicle> + <vehicle id="car129" depart="129.00"> + <route edges="4/4to3/4 3/4to2/4 2/4to2/3 2/3to1/3"/> + </vehicle> + <vehicle id="car130" depart="130.00"> + <route edges="4/3to3/3 3/3to2/3 2/3to1/3 1/3to0/3 0/3to0/4"/> + </vehicle> + <vehicle id="car131" depart="131.00"> + <route edges="4/3to4/4 4/4to4/3 4/3to4/2 4/2to4/1 4/1to4/0 4/0to3/0 3/0to2/0 2/0to1/0 1/0to1/1"/> + </vehicle> + <vehicle id="car132" depart="132.00"> + <route edges="4/3to4/4 4/4to3/4 3/4to2/4 2/4to1/4 1/4to1/3 1/3to1/2 1/2to1/1"/> + </vehicle> + <vehicle id="car133" depart="133.00"> + <route edges="0/3to0/2 0/2to1/2 1/2to2/2 2/2to2/1 2/1to1/1"/> + </vehicle> + <vehicle id="car134" depart="134.00"> + <route edges="3/2to3/3 3/3to2/3 2/3to1/3 1/3to1/2"/> + </vehicle> + <vehicle id="car135" depart="135.00"> + <route edges="0/0to0/1 0/1to1/1 1/1to1/2 1/2to2/2 2/2to3/2 3/2to4/2 4/2to4/3"/> + </vehicle> + <vehicle id="car136" depart="136.00"> + <route edges="2/3to2/2 2/2to3/2 3/2to3/1"/> + </vehicle> + <vehicle id="car137" depart="137.00"> + <route edges="3/2to4/2 4/2to4/1 4/1to3/1 3/1to3/0"/> + </vehicle> + <vehicle id="car138" depart="138.00"> + <route edges="1/4to1/3 1/3to0/3 0/3to0/2 0/2to0/1"/> + </vehicle> + <vehicle id="car139" depart="139.00"> + <route edges="3/1to3/0 3/0to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to1/4"/> + </vehicle> + <vehicle id="car140" depart="140.00"> + <route edges="1/3to1/2 1/2to1/1 1/1to1/0 1/0to2/0 2/0to3/0 3/0to4/0 4/0to3/0"/> + </vehicle> + <vehicle id="car141" depart="141.00"> + <route edges="3/2to3/1 3/1to2/1 2/1to1/1 1/1to1/2 1/2to1/3 1/3to0/3"/> + </vehicle> + <vehicle id="car142" depart="142.00"> + <route edges="1/3to0/3 0/3to1/3 1/3to2/3 2/3to2/2 2/2to2/1 2/1to2/0 2/0to2/1"/> + </vehicle> + <vehicle id="car143" depart="143.00"> + <route edges="2/0to2/1 2/1to1/1 1/1to1/2 1/2to2/2"/> + </vehicle> + <vehicle id="car144" depart="144.00"> + <route edges="0/3to1/3 1/3to1/2 1/2to1/1 1/1to1/0 1/0to2/0 2/0to3/0"/> + </vehicle> + <vehicle id="car145" depart="145.00"> + <route edges="4/2to3/2 3/2to3/1 3/1to3/0 3/0to2/0"/> + </vehicle> + <vehicle id="car146" depart="146.00"> + <route edges="0/0to0/1 0/1to1/1 1/1to1/2 1/2to1/3"/> + </vehicle> + <vehicle id="car147" depart="147.00"> + <route edges="2/1to1/1 1/1to1/2 1/2to1/3 1/3to2/3 2/3to2/4 2/4to1/4"/> + </vehicle> + <vehicle id="car148" depart="148.00"> + <route edges="3/3to4/3 4/3to4/2 4/2to4/1 4/1to4/0 4/0to3/0 3/0to2/0 2/0to1/0 1/0to0/0"/> + </vehicle> + <vehicle id="car149" depart="149.00"> + <route edges="0/2to0/3 0/3to1/3 1/3to2/3 2/3to2/2 2/2to3/2"/> + </vehicle> + <vehicle id="car150" depart="150.00"> + <route edges="3/0to3/1 3/1to3/2 3/2to2/2 2/2to1/2 1/2to1/3 1/3to1/4"/> + </vehicle> + <vehicle id="car151" depart="151.00"> + <route edges="3/1to3/0 3/0to2/0 2/0to1/0 1/0to1/1 1/1to1/0"/> + </vehicle> + <vehicle id="car152" depart="152.00"> + <route edges="4/0to3/0 3/0to2/0 2/0to1/0 1/0to0/0 0/0to0/1 0/1to0/2 0/2to0/1"/> + </vehicle> + <vehicle id="car153" depart="153.00"> + <route edges="1/0to2/0 2/0to3/0 3/0to3/1 3/1to4/1"/> + </vehicle> + <vehicle id="car154" depart="154.00"> + <route edges="3/1to2/1 2/1to2/0 2/0to1/0 1/0to0/0 0/0to0/1"/> + </vehicle> + <vehicle id="car155" depart="155.00"> + <route edges="0/3to0/2 0/2to1/2 1/2to2/2 2/2to2/1 2/1to1/1"/> + </vehicle> + <vehicle id="car156" depart="156.00"> + <route edges="1/0to1/1 1/1to2/1 2/1to2/2 2/2to3/2 3/2to3/3 3/3to4/3 4/3to4/2"/> + </vehicle> + <vehicle id="car157" depart="157.00"> + <route edges="1/1to2/1 2/1to3/1 3/1to4/1 4/1to4/0 4/0to3/0"/> + </vehicle> + <vehicle id="car158" depart="158.00"> + <route edges="2/1to2/2 2/2to3/2 3/2to3/3 3/3to3/4 3/4to2/4"/> + </vehicle> + <vehicle id="car159" depart="159.00"> + <route edges="3/1to3/0 3/0to3/1 3/1to3/2 3/2to3/3 3/3to3/4 3/4to4/4 4/4to4/3"/> + </vehicle> + <vehicle id="car160" depart="160.00"> + <route edges="2/4to2/3 2/3to3/3 3/3to4/3 4/3to4/2"/> + </vehicle> + <vehicle id="car161" depart="161.00"> + <route edges="4/1to4/2 4/2to4/1 4/1to4/0 4/0to3/0 3/0to2/0"/> + </vehicle> + <vehicle id="car162" depart="162.00"> + <route edges="3/4to4/4 4/4to4/3 4/3to3/3 3/3to2/3 2/3to2/2"/> + </vehicle> + <vehicle id="car163" depart="163.00"> + <route edges="2/1to3/1 3/1to2/1 2/1to1/1 1/1to1/2 1/2to0/2"/> + </vehicle> + <vehicle id="car164" depart="164.00"> + <route edges="1/1to2/1 2/1to2/0 2/0to3/0 3/0to4/0"/> + </vehicle> + <vehicle id="car165" depart="165.00"> + <route edges="3/0to3/1 3/1to3/2 3/2to2/2 2/2to1/2 1/2to1/1"/> + </vehicle> + <vehicle id="car166" depart="166.00"> + <route edges="2/3to2/2 2/2to1/2 1/2to1/3 1/3to1/4 1/4to0/4 0/4to0/3"/> + </vehicle> + <vehicle id="car167" depart="167.00"> + <route edges="1/1to1/2 1/2to2/2 2/2to3/2 3/2to3/1 3/1to4/1"/> + </vehicle> + <vehicle id="car168" depart="168.00"> + <route edges="3/2to2/2 2/2to1/2 1/2to0/2 0/2to0/1"/> + </vehicle> + <vehicle id="car169" depart="169.00"> + <route edges="2/0to2/1 2/1to2/2 2/2to2/3 2/3to2/2"/> + </vehicle> + <vehicle id="car170" depart="170.00"> + <route edges="2/0to3/0 3/0to2/0 2/0to1/0 1/0to1/1 1/1to0/1"/> + </vehicle> + <vehicle id="car171" depart="171.00"> + <route edges="2/0to3/0 3/0to4/0 4/0to4/1 4/1to4/2 4/2to3/2"/> + </vehicle> + <vehicle id="car172" depart="172.00"> + <route edges="2/4to1/4 1/4to2/4 2/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to4/1"/> + </vehicle> + <vehicle id="car173" depart="173.00"> + <route edges="4/0to4/1 4/1to4/2 4/2to4/3 4/3to3/3 3/3to3/2"/> + </vehicle> + <vehicle id="car174" depart="174.00"> + <route edges="1/4to2/4 2/4to2/3 2/3to2/2 2/2to2/1 2/1to2/0 2/0to1/0 1/0to0/0 0/0to0/1"/> + </vehicle> + <vehicle id="car175" depart="175.00"> + <route edges="4/0to4/1 4/1to4/2 4/2to4/3 4/3to4/2"/> + </vehicle> + <vehicle id="car176" depart="176.00"> + <route edges="2/0to3/0 3/0to3/1 3/1to3/2 3/2to4/2"/> + </vehicle> + <vehicle id="car177" depart="177.00"> + <route edges="2/1to1/1 1/1to0/1 0/1to0/0"/> + </vehicle> + <vehicle id="car178" depart="178.00"> + <route edges="1/3to1/4 1/4to2/4 2/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to3/2"/> + </vehicle> + <vehicle id="car179" depart="179.00"> + <route edges="2/0to2/1 2/1to2/0 2/0to1/0 1/0to0/0"/> + </vehicle> + <vehicle id="car180" depart="180.00"> + <route edges="2/1to3/1 3/1to2/1 2/1to1/1 1/1to0/1 0/1to0/2 0/2to0/3 0/3to1/3"/> + </vehicle> + <vehicle id="car181" depart="181.00"> + <route edges="3/0to2/0 2/0to1/0 1/0to0/0 0/0to0/1 0/1to0/0"/> + </vehicle> + <vehicle id="car182" depart="182.00"> + <route edges="2/0to1/0 1/0to1/1 1/1to1/2 1/2to2/2 2/2to2/3 2/3to3/3"/> + </vehicle> + <vehicle id="car183" depart="183.00"> + <route edges="0/1to0/0 0/0to1/0 1/0to2/0 2/0to3/0 3/0to4/0"/> + </vehicle> + <vehicle id="car184" depart="184.00"> + <route edges="0/3to1/3 1/3to2/3 2/3to2/2 2/2to2/1 2/1to2/2"/> + </vehicle> + <vehicle id="car185" depart="185.00"> + <route edges="0/1to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to2/4"/> + </vehicle> + <vehicle id="car186" depart="186.00"> + <route edges="1/1to0/1 0/1to0/2 0/2to0/3 0/3to1/3 1/3to1/4"/> + </vehicle> + <vehicle id="car187" depart="187.00"> + <route edges="0/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to2/3 2/3to2/2"/> + </vehicle> + <vehicle id="car188" depart="188.00"> + <route edges="4/4to4/3 4/3to3/3 3/3to2/3 2/3to1/3 1/3to2/3"/> + </vehicle> + <vehicle id="car189" depart="189.00"> + <route edges="3/1to2/1 2/1to2/2 2/2to2/3 2/3to3/3 3/3to3/4"/> + </vehicle> + <vehicle id="car190" depart="190.00"> + <route edges="3/1to2/1 2/1to2/2 2/2to2/3 2/3to3/3 3/3to2/3"/> + </vehicle> + <vehicle id="car191" depart="191.00"> + <route edges="4/3to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to2/0 2/0to1/0 1/0to2/0"/> + </vehicle> + <vehicle id="car192" depart="192.00"> + <route edges="0/0to1/0 1/0to0/0 0/0to0/1 0/1to0/2 0/2to0/3 0/3to0/4 0/4to1/4"/> + </vehicle> + <vehicle id="car193" depart="193.00"> + <route edges="0/3to1/3 1/3to2/3 2/3to3/3 3/3to3/2 3/2to3/1 3/1to3/0"/> + </vehicle> + <vehicle id="car194" depart="194.00"> + <route edges="2/3to3/3 3/3to3/2 3/2to2/2 2/2to2/1 2/1to1/1 1/1to1/0"/> + </vehicle> + <vehicle id="car195" depart="195.00"> + <route edges="1/0to0/0 0/0to0/1 0/1to0/2 0/2to0/3 0/3to0/4 0/4to1/4 1/4to2/4 2/4to3/4"/> + </vehicle> + <vehicle id="car196" depart="196.00"> + <route edges="3/2to4/2 4/2to3/2 3/2to2/2 2/2to1/2 1/2to0/2 0/2to0/3 0/3to0/4"/> + </vehicle> + <vehicle id="car197" depart="197.00"> + <route edges="0/3to0/2 0/2to0/1 0/1to0/0"/> + </vehicle> + <vehicle id="car198" depart="198.00"> + <route edges="1/3to0/3 0/3to1/3 1/3to2/3 2/3to3/3 3/3to3/2 3/2to3/1 3/1to3/2"/> + </vehicle> + <vehicle id="car199" depart="199.00"> + <route edges="4/3to4/2 4/2to4/1 4/1to4/0 4/0to3/0 3/0to2/0 2/0to1/0"/> + </vehicle> + <vehicle id="car200" depart="200.00"> + <route edges="3/2to3/1 3/1to2/1 2/1to1/1 1/1to0/1 0/1to0/2 0/2to0/3"/> + </vehicle> + <vehicle id="car201" depart="201.00"> + <route edges="0/3to0/2 0/2to0/3 0/3to1/3 1/3to2/3 2/3to3/3 3/3to3/2"/> + </vehicle> + <vehicle id="car202" depart="202.00"> + <route edges="4/0to4/1 4/1to4/2 4/2to4/3 4/3to4/4 4/4to3/4 3/4to2/4 2/4to3/4"/> + </vehicle> + <vehicle id="car203" depart="203.00"> + <route edges="0/3to0/4 0/4to1/4 1/4to2/4 2/4to3/4 3/4to4/4 4/4to3/4"/> + </vehicle> + <vehicle id="car204" depart="204.00"> + <route edges="2/1to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to1/3"/> + </vehicle> + <vehicle id="car205" depart="205.00"> + <route edges="4/0to3/0 3/0to3/1 3/1to3/2 3/2to3/3 3/3to3/4 3/4to3/3"/> + </vehicle> + <vehicle id="car206" depart="206.00"> + <route edges="0/3to0/2 0/2to0/3 0/3to1/3 1/3to2/3 2/3to3/3 3/3to4/3 4/3to4/2"/> + </vehicle> + <vehicle id="car207" depart="207.00"> + <route edges="3/0to3/1 3/1to3/2 3/2to3/3 3/3to3/4 3/4to4/4"/> + </vehicle> + <vehicle id="car208" depart="208.00"> + <route edges="3/2to2/2 2/2to2/1 2/1to1/1"/> + </vehicle> + <vehicle id="car209" depart="209.00"> + <route edges="3/2to3/3 3/3to4/3 4/3to4/4"/> + </vehicle> + <vehicle id="car210" depart="210.00"> + <route edges="1/2to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to2/4 2/4to3/4 3/4to2/4"/> + </vehicle> + <vehicle id="car211" depart="211.00"> + <route edges="2/1to1/1 1/1to2/1 2/1to2/2 2/2to3/2 3/2to3/3"/> + </vehicle> + <vehicle id="car212" depart="212.00"> + <route edges="1/2to1/1 1/1to1/0 1/0to2/0 2/0to3/0 3/0to4/0 4/0to4/1"/> + </vehicle> + <vehicle id="car213" depart="213.00"> + <route edges="3/4to4/4 4/4to4/3 4/3to3/3 3/3to3/2 3/2to2/2 2/2to1/2 1/2to0/2 0/2to0/3"/> + </vehicle> + <vehicle id="car214" depart="214.00"> + <route edges="4/1to4/0 4/0to3/0 3/0to2/0 2/0to1/0 1/0to1/1 1/1to2/1"/> + </vehicle> + <vehicle id="car215" depart="215.00"> + <route edges="2/1to3/1 3/1to2/1 2/1to2/2 2/2to2/3 2/3to2/4 2/4to3/4"/> + </vehicle> + <vehicle id="car216" depart="216.00"> + <route edges="1/4to2/4 2/4to2/3 2/3to2/2 2/2to1/2 1/2to1/1 1/1to0/1 0/1to0/0"/> + </vehicle> + <vehicle id="car217" depart="217.00"> + <route edges="4/0to4/1 4/1to4/0 4/0to3/0 3/0to2/0 2/0to1/0 1/0to1/1"/> + </vehicle> + <vehicle id="car218" depart="218.00"> + <route edges="1/1to0/1 0/1to1/1 1/1to1/2 1/2to2/2 2/2to2/3 2/3to3/3 3/3to4/3"/> + </vehicle> + <vehicle id="car219" depart="219.00"> + <route edges="1/3to2/3 2/3to3/3 3/3to4/3 4/3to4/2 4/2to4/1 4/1to4/0"/> + </vehicle> + <vehicle id="car220" depart="220.00"> + <route edges="3/2to2/2 2/2to1/2 1/2to1/3"/> + </vehicle> + <vehicle id="car221" depart="221.00"> + <route edges="0/0to0/1 0/1to1/1 1/1to1/2 1/2to2/2 2/2to2/3 2/3to3/3 3/3to4/3 4/3to3/3"/> + </vehicle> + <vehicle id="car222" depart="222.00"> + <route edges="0/2to0/3 0/3to1/3 1/3to2/3 2/3to3/3 3/3to3/2 3/2to3/1"/> + </vehicle> + <vehicle id="car223" depart="223.00"> + <route edges="2/2to2/1 2/1to2/2 2/2to3/2 3/2to3/3 3/3to4/3"/> + </vehicle> + <vehicle id="car224" depart="224.00"> + <route edges="0/2to1/2 1/2to1/1 1/1to1/0"/> + </vehicle> + <vehicle id="car225" depart="225.00"> + <route edges="3/1to4/1 4/1to3/1 3/1to2/1 2/1to1/1 1/1to1/2 1/2to1/3 1/3to0/3"/> + </vehicle> + <vehicle id="car226" depart="226.00"> + <route edges="2/4to1/4 1/4to2/4 2/4to2/3 2/3to2/2 2/2to2/1 2/1to3/1"/> + </vehicle> + <vehicle id="car227" depart="227.00"> + <route edges="2/3to1/3 1/3to2/3 2/3to2/2 2/2to2/1 2/1to1/1"/> + </vehicle> + <vehicle id="car228" depart="228.00"> + <route edges="3/2to4/2 4/2to3/2 3/2to2/2 2/2to1/2 1/2to1/3 1/3to1/4"/> + </vehicle> + <vehicle id="car229" depart="229.00"> + <route edges="3/2to2/2 2/2to1/2 1/2to1/1"/> + </vehicle> + <vehicle id="car230" depart="230.00"> + <route edges="1/2to0/2 0/2to0/3 0/3to0/4"/> + </vehicle> + <vehicle id="car231" depart="231.00"> + <route edges="1/0to2/0 2/0to1/0 1/0to0/0 0/0to0/1 0/1to0/2 0/2to0/3 0/3to0/4"/> + </vehicle> + <vehicle id="car232" depart="232.00"> + <route edges="4/4to3/4 3/4to3/3 3/3to3/2 3/2to2/2 2/2to3/2"/> + </vehicle> + <vehicle id="car233" depart="233.00"> + <route edges="1/0to2/0 2/0to1/0 1/0to1/1 1/1to1/2"/> + </vehicle> + <vehicle id="car234" depart="234.00"> + <route edges="2/3to1/3 1/3to1/2 1/2to1/1"/> + </vehicle> + <vehicle id="car235" depart="235.00"> + <route edges="4/3to4/4 4/4to3/4 3/4to3/3 3/3to2/3 2/3to2/4"/> + </vehicle> + <vehicle id="car236" depart="236.00"> + <route edges="3/1to4/1 4/1to3/1 3/1to2/1 2/1to1/1 1/1to0/1 0/1to0/2 0/2to0/3 0/3to1/3"/> + </vehicle> + <vehicle id="car237" depart="237.00"> + <route edges="4/1to3/1 3/1to2/1 2/1to2/2 2/2to2/1"/> + </vehicle> + <vehicle id="car238" depart="238.00"> + <route edges="4/1to3/1 3/1to2/1 2/1to2/2 2/2to2/3 2/3to3/3"/> + </vehicle> + <vehicle id="car239" depart="239.00"> + <route edges="4/3to3/3 3/3to2/3 2/3to2/2 2/2to1/2"/> + </vehicle> + <vehicle id="car240" depart="240.00"> + <route edges="3/4to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to2/0 2/0to2/1"/> + </vehicle> + <vehicle id="car241" depart="241.00"> + <route edges="0/2to0/1 0/1to0/0 0/0to1/0 1/0to2/0 2/0to3/0 3/0to3/1"/> + </vehicle> + <vehicle id="car242" depart="242.00"> + <route edges="0/1to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to0/4 0/4to0/3"/> + </vehicle> + <vehicle id="car243" depart="243.00"> + <route edges="2/3to3/3 3/3to2/3 2/3to1/3 1/3to0/3"/> + </vehicle> + <vehicle id="car244" depart="244.00"> + <route edges="4/4to4/3 4/3to3/3 3/3to2/3 2/3to1/3 1/3to0/3 0/3to0/4"/> + </vehicle> + <vehicle id="car245" depart="245.00"> + <route edges="3/3to4/3 4/3to3/3 3/3to3/2 3/2to2/2 2/2to2/1 2/1to1/1 1/1to1/2"/> + </vehicle> + <vehicle id="car246" depart="246.00"> + <route edges="2/1to2/0 2/0to3/0 3/0to4/0 4/0to4/1"/> + </vehicle> + <vehicle id="car247" depart="247.00"> + <route edges="4/4to4/3 4/3to3/3 3/3to2/3 2/3to1/3 1/3to0/3"/> + </vehicle> + <vehicle id="car248" depart="248.00"> + <route edges="3/0to2/0 2/0to2/1 2/1to2/2 2/2to2/3 2/3to2/4 2/4to3/4"/> + </vehicle> + <vehicle id="car249" depart="249.00"> + <route edges="3/1to2/1 2/1to1/1 1/1to0/1 0/1to0/2 0/2to0/3 0/3to0/4 0/4to1/4"/> + </vehicle> + <vehicle id="car250" depart="250.00"> + <route edges="1/0to0/0 0/0to0/1 0/1to0/2 0/2to0/3"/> + </vehicle> + <vehicle id="car251" depart="251.00"> + <route edges="0/0to0/1 0/1to1/1 1/1to2/1 2/1to2/2"/> + </vehicle> + <vehicle id="car252" depart="252.00"> + <route edges="2/4to2/3 2/3to2/2 2/2to1/2 1/2to2/2"/> + </vehicle> + <vehicle id="car253" depart="253.00"> + <route edges="3/3to4/3 4/3to4/2 4/2to4/1 4/1to4/0 4/0to3/0 3/0to3/1"/> + </vehicle> + <vehicle id="car254" depart="254.00"> + <route edges="3/1to2/1 2/1to3/1 3/1to3/2 3/2to4/2 4/2to4/3"/> + </vehicle> + <vehicle id="car255" depart="255.00"> + <route edges="3/0to4/0 4/0to4/1 4/1to4/2 4/2to3/2"/> + </vehicle> + <vehicle id="car256" depart="256.00"> + <route edges="3/4to4/4 4/4to3/4 3/4to2/4 2/4to1/4 1/4to0/4 0/4to0/3 0/3to0/2 0/2to0/1"/> + </vehicle> + <vehicle id="car257" depart="257.00"> + <route edges="1/0to0/0 0/0to0/1 0/1to0/2 0/2to0/3 0/3to1/3 1/3to0/3"/> + </vehicle> + <vehicle id="car258" depart="258.00"> + <route edges="1/2to2/2 2/2to1/2 1/2to0/2 0/2to0/3 0/3to0/4"/> + </vehicle> + <vehicle id="car259" depart="259.00"> + <route edges="4/3to3/3 3/3to3/2 3/2to2/2 2/2to2/3"/> + </vehicle> + <vehicle id="car260" depart="260.00"> + <route edges="2/2to2/1 2/1to1/1 1/1to0/1 0/1to0/2 0/2to0/3"/> + </vehicle> + <vehicle id="car261" depart="261.00"> + <route edges="0/2to1/2 1/2to2/2 2/2to2/3 2/3to3/3 3/3to4/3 4/3to4/2"/> + </vehicle> + <vehicle id="car262" depart="262.00"> + <route edges="3/4to4/4 4/4to3/4 3/4to2/4 2/4to1/4"/> + </vehicle> + <vehicle id="car263" depart="263.00"> + <route edges="3/1to3/0 3/0to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/1"/> + </vehicle> + <vehicle id="car264" depart="264.00"> + <route edges="0/1to0/2 0/2to1/2 1/2to1/3 1/3to2/3 2/3to3/3 3/3to2/3"/> + </vehicle> + <vehicle id="car265" depart="265.00"> + <route edges="4/2to4/1 4/1to4/0 4/0to3/0 3/0to2/0 2/0to1/0 1/0to1/1"/> + </vehicle> + <vehicle id="car266" depart="266.00"> + <route edges="2/4to1/4 1/4to2/4 2/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to3/1"/> + </vehicle> + <vehicle id="car267" depart="267.00"> + <route edges="1/3to1/4 1/4to2/4 2/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to4/1"/> + </vehicle> + <vehicle id="car268" depart="268.00"> + <route edges="1/2to2/2 2/2to3/2 3/2to3/3 3/3to4/3 4/3to3/3"/> + </vehicle> + <vehicle id="car269" depart="269.00"> + <route edges="1/3to1/2 1/2to1/3 1/3to2/3 2/3to3/3 3/3to4/3 4/3to4/4"/> + </vehicle> + <vehicle id="car270" depart="270.00"> + <route edges="2/0to2/1 2/1to2/2 2/2to3/2"/> + </vehicle> + <vehicle id="car271" depart="271.00"> + <route edges="4/4to4/3 4/3to3/3 3/3to3/2 3/2to3/1 3/1to2/1"/> + </vehicle> + <vehicle id="car272" depart="272.00"> + <route edges="2/3to2/2 2/2to2/1 2/1to2/0 2/0to3/0"/> + </vehicle> + <vehicle id="car273" depart="273.00"> + <route edges="1/0to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to0/4"/> + </vehicle> + <vehicle id="car274" depart="274.00"> + <route edges="3/3to2/3 2/3to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to3/1"/> + </vehicle> + <vehicle id="car275" depart="275.00"> + <route edges="3/3to2/3 2/3to2/2 2/2to1/2 1/2to1/1 1/1to0/1"/> + </vehicle> + <vehicle id="car276" depart="276.00"> + <route edges="2/3to2/2 2/2to3/2 3/2to4/2 4/2to4/3"/> + </vehicle> + <vehicle id="car277" depart="277.00"> + <route edges="2/1to2/0 2/0to2/1 2/1to3/1 3/1to4/1"/> + </vehicle> + <vehicle id="car278" depart="278.00"> + <route edges="0/3to0/4 0/4to1/4 1/4to2/4 2/4to3/4 3/4to4/4 4/4to4/3 4/3to4/4"/> + </vehicle> + <vehicle id="car279" depart="279.00"> + <route edges="2/4to3/4 3/4to3/3 3/3to3/2 3/2to2/2 2/2to2/1 2/1to1/1 1/1to2/1"/> + </vehicle> + <vehicle id="car280" depart="280.00"> + <route edges="0/4to1/4 1/4to2/4 2/4to2/3 2/3to2/4"/> + </vehicle> + <vehicle id="car281" depart="281.00"> + <route edges="4/4to4/3 4/3to4/2 4/2to4/1"/> + </vehicle> + <vehicle id="car282" depart="282.00"> + <route edges="2/1to2/2 2/2to2/3 2/3to1/3 1/3to0/3 0/3to0/4"/> + </vehicle> + <vehicle id="car283" depart="283.00"> + <route edges="3/4to4/4 4/4to4/3 4/3to3/3 3/3to3/2 3/2to2/2 2/2to2/1"/> + </vehicle> + <vehicle id="car284" depart="284.00"> + <route edges="1/2to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to2/4 2/4to3/4 3/4to4/4"/> + </vehicle> + <vehicle id="car285" depart="285.00"> + <route edges="4/4to3/4 3/4to2/4 2/4to2/3 2/3to2/2 2/2to2/1 2/1to1/1 1/1to2/1"/> + </vehicle> + <vehicle id="car286" depart="286.00"> + <route edges="4/2to4/1 4/1to3/1 3/1to2/1 2/1to2/2 2/2to2/3"/> + </vehicle> + <vehicle id="car287" depart="287.00"> + <route edges="1/2to1/3 1/3to2/3 2/3to3/3 3/3to4/3"/> + </vehicle> + <vehicle id="car288" depart="288.00"> + <route edges="2/0to3/0 3/0to4/0 4/0to4/1 4/1to4/2 4/2to4/3"/> + </vehicle> + <vehicle id="car289" depart="289.00"> + <route edges="2/4to1/4 1/4to2/4 2/4to3/4 3/4to4/4 4/4to4/3"/> + </vehicle> + <vehicle id="car290" depart="290.00"> + <route edges="2/2to2/1 2/1to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to0/4 0/4to0/3"/> + </vehicle> + <vehicle id="car291" depart="291.00"> + <route edges="1/0to2/0 2/0to3/0 3/0to3/1 3/1to4/1"/> + </vehicle> + <vehicle id="car292" depart="292.00"> + <route edges="3/3to3/4 3/4to3/3 3/3to2/3 2/3to2/2 2/2to1/2 1/2to1/1 1/1to0/1 0/1to0/2"/> + </vehicle> + <vehicle id="car293" depart="293.00"> + <route edges="3/1to3/0 3/0to3/1 3/1to3/2 3/2to3/3 3/3to3/4 3/4to3/3"/> + </vehicle> + <vehicle id="car294" depart="294.00"> + <route edges="4/4to3/4 3/4to2/4 2/4to2/3 2/3to2/2 2/2to2/1"/> + </vehicle> + <vehicle id="car295" depart="295.00"> + <route edges="0/1to0/0 0/0to1/0 1/0to2/0 2/0to2/1 2/1to2/2 2/2to2/3"/> + </vehicle> + <vehicle id="car296" depart="296.00"> + <route edges="2/4to2/3 2/3to2/2 2/2to3/2 3/2to4/2 4/2to4/1 4/1to3/1"/> + </vehicle> + <vehicle id="car297" depart="297.00"> + <route edges="4/1to3/1 3/1to2/1 2/1to2/0"/> + </vehicle> + <vehicle id="car298" depart="298.00"> + <route edges="3/1to2/1 2/1to1/1 1/1to0/1 0/1to0/2 0/2to0/3 0/3to0/4 0/4to1/4"/> + </vehicle> + <vehicle id="car299" depart="299.00"> + <route edges="2/1to3/1 3/1to3/2 3/2to4/2 4/2to4/3 4/3to4/4"/> + </vehicle> + <vehicle id="car300" depart="300.00"> + <route edges="1/3to2/3 2/3to3/3 3/3to3/2 3/2to3/1 3/1to4/1"/> + </vehicle> + <vehicle id="car301" depart="301.00"> + <route edges="1/4to2/4 2/4to2/3 2/3to1/3 1/3to1/2"/> + </vehicle> + <vehicle id="car302" depart="302.00"> + <route edges="4/1to3/1 3/1to2/1 2/1to1/1 1/1to0/1 0/1to0/0"/> + </vehicle> + <vehicle id="car303" depart="303.00"> + <route edges="0/2to0/1 0/1to0/0 0/0to1/0 1/0to2/0 2/0to3/0 3/0to3/1"/> + </vehicle> + <vehicle id="car304" depart="304.00"> + <route edges="3/2to4/2 4/2to3/2 3/2to3/1 3/1to2/1 2/1to1/1"/> + </vehicle> + <vehicle id="car305" depart="305.00"> + <route edges="0/2to1/2 1/2to2/2 2/2to3/2 3/2to3/1 3/1to3/0 3/0to3/1"/> + </vehicle> + <vehicle id="car306" depart="306.00"> + <route edges="4/1to3/1 3/1to2/1 2/1to2/0"/> + </vehicle> + <vehicle id="car307" depart="307.00"> + <route edges="0/1to0/2 0/2to1/2 1/2to1/3 1/3to2/3 2/3to3/3 3/3to4/3"/> + </vehicle> + <vehicle id="car308" depart="308.00"> + <route edges="2/3to3/3 3/3to4/3"/> + </vehicle> + <vehicle id="car309" depart="309.00"> + <route edges="1/0to0/0 0/0to0/1 0/1to0/2 0/2to0/3"/> + </vehicle> + <vehicle id="car310" depart="310.00"> + <route edges="4/1to3/1 3/1to3/0 3/0to2/0"/> + </vehicle> + <vehicle id="car311" depart="311.00"> + <route edges="1/1to2/1 2/1to3/1 3/1to3/2 3/2to4/2 4/2to4/1"/> + </vehicle> + <vehicle id="car312" depart="312.00"> + <route edges="0/4to0/3 0/3to0/2 0/2to0/1 0/1to1/1 1/1to2/1 2/1to2/2"/> + </vehicle> + <vehicle id="car313" depart="313.00"> + <route edges="0/0to0/1 0/1to0/2 0/2to0/3 0/3to0/4 0/4to1/4 1/4to2/4 2/4to3/4 3/4to2/4"/> + </vehicle> + <vehicle id="car314" depart="314.00"> + <route edges="0/4to1/4 1/4to2/4 2/4to2/3 2/3to2/2 2/2to2/1 2/1to2/0"/> + </vehicle> + <vehicle id="car315" depart="315.00"> + <route edges="1/2to0/2 0/2to0/1 0/1to0/0 0/0to1/0 1/0to2/0 2/0to3/0 3/0to4/0 4/0to3/0"/> + </vehicle> + <vehicle id="car316" depart="316.00"> + <route edges="1/0to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to2/4"/> + </vehicle> + <vehicle id="car317" depart="317.00"> + <route edges="4/4to4/3 4/3to3/3 3/3to3/2 3/2to2/2 2/2to1/2 1/2to2/2"/> + </vehicle> + <vehicle id="car318" depart="318.00"> + <route edges="4/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to2/1"/> + </vehicle> + <vehicle id="car319" depart="319.00"> + <route edges="1/2to1/1 1/1to1/2 1/2to2/2 2/2to2/3 2/3to3/3"/> + </vehicle> + <vehicle id="car320" depart="320.00"> + <route edges="0/1to0/2 0/2to0/3 0/3to0/4 0/4to1/4 1/4to2/4 2/4to3/4"/> + </vehicle> + <vehicle id="car321" depart="321.00"> + <route edges="1/2to1/3 1/3to2/3 2/3to3/3 3/3to4/3"/> + </vehicle> + <vehicle id="car322" depart="322.00"> + <route edges="2/4to3/4 3/4to2/4 2/4to1/4 1/4to0/4"/> + </vehicle> + <vehicle id="car323" depart="323.00"> + <route edges="3/0to3/1 3/1to3/2 3/2to4/2 4/2to3/2"/> + </vehicle> + <vehicle id="car324" depart="324.00"> + <route edges="3/0to4/0 4/0to3/0 3/0to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to0/3"/> + </vehicle> + <vehicle id="car325" depart="325.00"> + <route edges="2/1to2/0 2/0to2/1 2/1to2/2 2/2to2/3 2/3to2/4 2/4to1/4"/> + </vehicle> + <vehicle id="car326" depart="326.00"> + <route edges="3/2to3/3 3/3to3/2 3/2to2/2 2/2to1/2 1/2to0/2 0/2to1/2"/> + </vehicle> + <vehicle id="car327" depart="327.00"> + <route edges="1/2to2/2 2/2to3/2 3/2to4/2"/> + </vehicle> + <vehicle id="car328" depart="328.00"> + <route edges="1/0to1/1 1/1to1/2 1/2to0/2 0/2to0/3 0/3to1/3"/> + </vehicle> + <vehicle id="car329" depart="329.00"> + <route edges="2/3to2/2 2/2to2/3 2/3to3/3 3/3to4/3 4/3to4/4"/> + </vehicle> + <vehicle id="car330" depart="330.00"> + <route edges="2/3to1/3 1/3to2/3 2/3to3/3 3/3to4/3 4/3to4/2 4/2to4/1"/> + </vehicle> + <vehicle id="car331" depart="331.00"> + <route edges="3/4to4/4 4/4to4/3 4/3to3/3 3/3to3/2 3/2to2/2 2/2to1/2 1/2to0/2"/> + </vehicle> + <vehicle id="car332" depart="332.00"> + <route edges="3/4to3/3 3/3to2/3 2/3to2/2 2/2to1/2"/> + </vehicle> + <vehicle id="car333" depart="333.00"> + <route edges="3/4to2/4 2/4to3/4 3/4to3/3 3/3to3/2 3/2to4/2"/> + </vehicle> + <vehicle id="car334" depart="334.00"> + <route edges="4/3to4/4 4/4to3/4 3/4to2/4 2/4to1/4 1/4to0/4 0/4to0/3"/> + </vehicle> + <vehicle id="car335" depart="335.00"> + <route edges="4/3to4/4 4/4to4/3 4/3to4/2 4/2to4/1 4/1to4/0 4/0to4/1"/> + </vehicle> + <vehicle id="car336" depart="336.00"> + <route edges="3/2to3/1 3/1to3/2 3/2to3/3 3/3to4/3 4/3to4/4 4/4to3/4"/> + </vehicle> + <vehicle id="car337" depart="337.00"> + <route edges="4/3to4/4 4/4to3/4 3/4to2/4"/> + </vehicle> + <vehicle id="car338" depart="338.00"> + <route edges="1/4to1/3 1/3to2/3 2/3to3/3 3/3to4/3"/> + </vehicle> + <vehicle id="car339" depart="339.00"> + <route edges="0/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to2/3 2/3to1/3"/> + </vehicle> + <vehicle id="car340" depart="340.00"> + <route edges="3/1to3/0 3/0to2/0 2/0to2/1 2/1to2/2 2/2to2/3 2/3to2/4 2/4to1/4"/> + </vehicle> + <vehicle id="car341" depart="341.00"> + <route edges="0/1to0/0 0/0to1/0 1/0to2/0 2/0to3/0 3/0to4/0 4/0to4/1 4/1to4/0"/> + </vehicle> + <vehicle id="car342" depart="342.00"> + <route edges="2/3to2/4 2/4to3/4 3/4to4/4 4/4to4/3 4/3to4/2 4/2to4/1"/> + </vehicle> + <vehicle id="car343" depart="343.00"> + <route edges="3/4to3/3 3/3to4/3 4/3to4/2 4/2to3/2"/> + </vehicle> + <vehicle id="car344" depart="344.00"> + <route edges="1/3to0/3 0/3to1/3 1/3to2/3 2/3to2/2 2/2to2/1 2/1to2/0 2/0to2/1"/> + </vehicle> + <vehicle id="car345" depart="345.00"> + <route edges="0/4to0/3 0/3to1/3 1/3to2/3 2/3to3/3 3/3to4/3 4/3to3/3"/> + </vehicle> + <vehicle id="car346" depart="346.00"> + <route edges="1/3to0/3 0/3to1/3 1/3to2/3 2/3to2/2 2/2to2/1"/> + </vehicle> + <vehicle id="car347" depart="347.00"> + <route edges="0/2to1/2 1/2to2/2 2/2to3/2 3/2to4/2 4/2to4/1 4/1to4/0"/> + </vehicle> + <vehicle id="car348" depart="348.00"> + <route edges="0/3to1/3 1/3to2/3 2/3to2/2 2/2to2/1 2/1to2/2"/> + </vehicle> + <vehicle id="car349" depart="349.00"> + <route edges="4/3to3/3 3/3to3/2 3/2to2/2 2/2to2/1 2/1to2/0 2/0to3/0"/> + </vehicle> + <vehicle id="car350" depart="350.00"> + <route edges="3/2to4/2 4/2to4/3 4/3to4/4 4/4to3/4 3/4to2/4 2/4to1/4 1/4to0/4 0/4to1/4"/> + </vehicle> + <vehicle id="car351" depart="351.00"> + <route edges="2/0to3/0 3/0to2/0 2/0to1/0 1/0to0/0 0/0to0/1 0/1to0/2 0/2to1/2"/> + </vehicle> + <vehicle id="car352" depart="352.00"> + <route edges="4/3to4/2 4/2to3/2 3/2to3/1 3/1to2/1 2/1to1/1 1/1to0/1 0/1to0/0"/> + </vehicle> + <vehicle id="car353" depart="353.00"> + <route edges="1/4to1/3 1/3to1/2 1/2to2/2 2/2to2/1 2/1to2/0"/> + </vehicle> + <vehicle id="car354" depart="354.00"> + <route edges="4/3to4/2 4/2to4/1 4/1to4/0 4/0to4/1"/> + </vehicle> + <vehicle id="car355" depart="355.00"> + <route edges="0/2to1/2 1/2to2/2 2/2to3/2 3/2to3/1 3/1to3/2"/> + </vehicle> + <vehicle id="car356" depart="356.00"> + <route edges="1/4to0/4 0/4to0/3 0/3to0/2 0/2to0/1 0/1to0/0 0/0to1/0 1/0to2/0 2/0to1/0"/> + </vehicle> + <vehicle id="car357" depart="357.00"> + <route edges="1/0to2/0 2/0to1/0 1/0to0/0 0/0to0/1 0/1to0/2 0/2to0/3 0/3to0/4"/> + </vehicle> + <vehicle id="car358" depart="358.00"> + <route edges="4/0to3/0 3/0to2/0 2/0to2/1 2/1to2/2"/> + </vehicle> + <vehicle id="car359" depart="359.00"> + <route edges="2/4to2/3 2/3to1/3 1/3to1/2 1/2to1/1 1/1to0/1 0/1to0/0 0/0to1/0"/> + </vehicle> + <vehicle id="car360" depart="360.00"> + <route edges="3/3to3/4 3/4to3/3 3/3to3/2 3/2to2/2 2/2to2/1 2/1to1/1 1/1to2/1"/> + </vehicle> + <vehicle id="car361" depart="361.00"> + <route edges="0/3to1/3 1/3to2/3 2/3to3/3"/> + </vehicle> + <vehicle id="car362" depart="362.00"> + <route edges="0/2to0/1 0/1to0/2 0/2to1/2 1/2to1/3 1/3to2/3 2/3to3/3 3/3to3/2"/> + </vehicle> + <vehicle id="car363" depart="363.00"> + <route edges="4/1to3/1 3/1to2/1 2/1to1/1 1/1to1/2 1/2to1/3 1/3to1/4"/> + </vehicle> + <vehicle id="car364" depart="364.00"> + <route edges="0/4to0/3 0/3to1/3 1/3to2/3 2/3to3/3 3/3to4/3 4/3to4/2 4/2to3/2"/> + </vehicle> + <vehicle id="car365" depart="365.00"> + <route edges="0/0to0/1 0/1to1/1 1/1to1/0 1/0to2/0 2/0to3/0 3/0to4/0 4/0to4/1"/> + </vehicle> + <vehicle id="car366" depart="366.00"> + <route edges="1/2to0/2 0/2to1/2 1/2to1/1 1/1to1/0 1/0to0/0"/> + </vehicle> + <vehicle id="car367" depart="367.00"> + <route edges="3/1to2/1 2/1to1/1 1/1to0/1 0/1to0/0"/> + </vehicle> + <vehicle id="car368" depart="368.00"> + <route edges="0/0to1/0 1/0to2/0 2/0to3/0 3/0to3/1 3/1to3/2 3/2to3/3 3/3to4/3"/> + </vehicle> + <vehicle id="car369" depart="369.00"> + <route edges="3/2to4/2 4/2to3/2 3/2to2/2 2/2to2/3 2/3to1/3"/> + </vehicle> + <vehicle id="car370" depart="370.00"> + <route edges="3/2to4/2 4/2to3/2 3/2to2/2 2/2to1/2"/> + </vehicle> + <vehicle id="car371" depart="371.00"> + <route edges="0/3to0/2 0/2to1/2 1/2to2/2 2/2to2/3"/> + </vehicle> + <vehicle id="car372" depart="372.00"> + <route edges="4/3to3/3 3/3to3/2 3/2to2/2 2/2to2/1 2/1to1/1 1/1to0/1 0/1to0/2"/> + </vehicle> + <vehicle id="car373" depart="373.00"> + <route edges="3/3to3/4 3/4to4/4 4/4to4/3 4/3to4/2 4/2to4/1 4/1to3/1"/> + </vehicle> + <vehicle id="car374" depart="374.00"> + <route edges="4/3to4/4 4/4to3/4 3/4to2/4 2/4to1/4 1/4to0/4 0/4to0/3 0/3to0/2 0/2to0/1 0/1to1/1"/> + </vehicle> + <vehicle id="car375" depart="375.00"> + <route edges="4/2to3/2 3/2to2/2 2/2to1/2 1/2to0/2 0/2to0/1"/> + </vehicle> + <vehicle id="car376" depart="376.00"> + <route edges="0/2to0/3 0/3to0/4 0/4to1/4 1/4to2/4 2/4to3/4"/> + </vehicle> + <vehicle id="car377" depart="377.00"> + <route edges="3/0to3/1 3/1to3/2 3/2to3/3 3/3to2/3 2/3to2/2"/> + </vehicle> + <vehicle id="car378" depart="378.00"> + <route edges="1/3to1/4 1/4to2/4 2/4to3/4 3/4to4/4 4/4to4/3"/> + </vehicle> + <vehicle id="car379" depart="379.00"> + <route edges="2/4to3/4 3/4to3/3 3/3to2/3 2/3to2/2 2/2to1/2 1/2to0/2 0/2to1/2"/> + </vehicle> + <vehicle id="car380" depart="380.00"> + <route edges="3/2to3/1 3/1to2/1 2/1to1/1 1/1to1/0"/> + </vehicle> + <vehicle id="car381" depart="381.00"> + <route edges="2/0to3/0 3/0to2/0 2/0to1/0 1/0to0/0 0/0to0/1 0/1to0/2 0/2to1/2"/> + </vehicle> + <vehicle id="car382" depart="382.00"> + <route edges="4/2to4/1 4/1to3/1 3/1to2/1 2/1to1/1 1/1to0/1 0/1to0/2 0/2to0/1"/> + </vehicle> + <vehicle id="car383" depart="383.00"> + <route edges="3/4to4/4 4/4to4/3 4/3to3/3 3/3to3/2 3/2to2/2 2/2to1/2 1/2to0/2 0/2to1/2"/> + </vehicle> + <vehicle id="car384" depart="384.00"> + <route edges="0/2to1/2 1/2to2/2 2/2to3/2 3/2to4/2"/> + </vehicle> + <vehicle id="car385" depart="385.00"> + <route edges="1/4to0/4 0/4to1/4 1/4to2/4 2/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to3/0"/> + </vehicle> + <vehicle id="car386" depart="386.00"> + <route edges="3/3to2/3 2/3to3/3 3/3to4/3 4/3to4/2 4/2to4/1 4/1to3/1"/> + </vehicle> + <vehicle id="car387" depart="387.00"> + <route edges="3/2to3/1 3/1to3/2 3/2to3/3 3/3to4/3 4/3to4/4"/> + </vehicle> + <vehicle id="car388" depart="388.00"> + <route edges="2/4to3/4 3/4to2/4 2/4to1/4 1/4to0/4"/> + </vehicle> + <vehicle id="car389" depart="389.00"> + <route edges="2/4to1/4 1/4to1/3 1/3to1/2 1/2to1/1 1/1to1/0"/> + </vehicle> + <vehicle id="car390" depart="390.00"> + <route edges="3/1to2/1 2/1to1/1 1/1to1/0"/> + </vehicle> + <vehicle id="car391" depart="391.00"> + <route edges="0/3to0/2 0/2to0/1 0/1to0/0 0/0to1/0 1/0to2/0 2/0to3/0 3/0to4/0 4/0to3/0"/> + </vehicle> + <vehicle id="car392" depart="392.00"> + <route edges="1/4to1/3 1/3to2/3 2/3to3/3 3/3to3/2"/> + </vehicle> + <vehicle id="car393" depart="393.00"> + <route edges="4/0to3/0 3/0to3/1 3/1to3/2 3/2to3/3 3/3to4/3 4/3to4/4"/> + </vehicle> + <vehicle id="car394" depart="394.00"> + <route edges="3/4to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to2/0"/> + </vehicle> + <vehicle id="car395" depart="395.00"> + <route edges="3/0to4/0 4/0to3/0 3/0to2/0 2/0to1/0 1/0to0/0 0/0to0/1 0/1to0/0"/> + </vehicle> + <vehicle id="car396" depart="396.00"> + <route edges="4/2to4/3 4/3to4/4 4/4to3/4 3/4to4/4"/> + </vehicle> + <vehicle id="car397" depart="397.00"> + <route edges="3/2to2/2 2/2to1/2 1/2to1/3 1/3to0/3"/> + </vehicle> + <vehicle id="car398" depart="398.00"> + <route edges="1/3to2/3 2/3to2/2 2/2to2/1 2/1to2/0 2/0to1/0 1/0to0/0 0/0to0/1"/> + </vehicle> + <vehicle id="car399" depart="399.00"> + <route edges="4/1to3/1 3/1to2/1 2/1to2/2 2/2to2/3 2/3to3/3"/> + </vehicle> + <vehicle id="car400" depart="400.00"> + <route edges="2/0to2/1 2/1to2/2 2/2to2/3 2/3to2/4 2/4to1/4 1/4to0/4 0/4to0/3"/> + </vehicle> + <vehicle id="car401" depart="401.00"> + <route edges="3/0to3/1 3/1to2/1 2/1to1/1 1/1to0/1 0/1to0/0"/> + </vehicle> + <vehicle id="car402" depart="402.00"> + <route edges="3/2to4/2 4/2to3/2 3/2to3/1 3/1to2/1 2/1to1/1 1/1to1/0"/> + </vehicle> + <vehicle id="car403" depart="403.00"> + <route edges="2/0to3/0 3/0to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to2/3"/> + </vehicle> + <vehicle id="car404" depart="404.00"> + <route edges="1/4to1/3 1/3to1/2 1/2to2/2 2/2to3/2 3/2to3/1"/> + </vehicle> + <vehicle id="car405" depart="405.00"> + <route edges="0/4to1/4 1/4to2/4 2/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to2/0"/> + </vehicle> + <vehicle id="car406" depart="406.00"> + <route edges="3/1to3/0 3/0to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/1"/> + </vehicle> + <vehicle id="car407" depart="407.00"> + <route edges="3/1to2/1 2/1to2/2 2/2to1/2"/> + </vehicle> + <vehicle id="car408" depart="408.00"> + <route edges="3/3to2/3 2/3to1/3 1/3to0/3 0/3to0/4"/> + </vehicle> + <vehicle id="car409" depart="409.00"> + <route edges="2/1to1/1 1/1to1/2 1/2to1/3"/> + </vehicle> + <vehicle id="car410" depart="410.00"> + <route edges="3/1to3/2 3/2to2/2 2/2to1/2"/> + </vehicle> + <vehicle id="car411" depart="411.00"> + <route edges="3/1to3/0 3/0to2/0 2/0to1/0 1/0to0/0 0/0to0/1 0/1to0/2"/> + </vehicle> + <vehicle id="car412" depart="412.00"> + <route edges="2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to2/4 2/4to2/3"/> + </vehicle> + <vehicle id="car413" depart="413.00"> + <route edges="0/0to0/1 0/1to0/2 0/2to0/3 0/3to1/3 1/3to0/3"/> + </vehicle> + <vehicle id="car414" depart="414.00"> + <route edges="1/1to0/1 0/1to0/2 0/2to0/3 0/3to1/3"/> + </vehicle> + <vehicle id="car415" depart="415.00"> + <route edges="1/2to0/2 0/2to0/3 0/3to1/3 1/3to1/4"/> + </vehicle> + <vehicle id="car416" depart="416.00"> + <route edges="0/0to0/1 0/1to1/1 1/1to1/2 1/2to2/2 2/2to3/2 3/2to4/2"/> + </vehicle> + <vehicle id="car417" depart="417.00"> + <route edges="1/0to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to2/4"/> + </vehicle> + <vehicle id="car418" depart="418.00"> + <route edges="0/2to0/1 0/1to0/0 0/0to1/0 1/0to2/0 2/0to3/0 3/0to4/0 4/0to4/1"/> + </vehicle> + <vehicle id="car419" depart="419.00"> + <route edges="3/2to2/2 2/2to2/1 2/1to2/0 2/0to3/0"/> + </vehicle> + <vehicle id="car420" depart="420.00"> + <route edges="0/3to0/4 0/4to0/3 0/3to0/2 0/2to0/1 0/1to0/0 0/0to1/0"/> + </vehicle> + <vehicle id="car421" depart="421.00"> + <route edges="3/0to2/0 2/0to2/1 2/1to2/2 2/2to2/3 2/3to2/4 2/4to3/4 3/4to4/4"/> + </vehicle> + <vehicle id="car422" depart="422.00"> + <route edges="4/2to4/1 4/1to3/1 3/1to2/1 2/1to1/1 1/1to0/1 0/1to0/2 0/2to1/2"/> + </vehicle> + <vehicle id="car423" depart="423.00"> + <route edges="4/0to3/0 3/0to2/0 2/0to1/0 1/0to1/1 1/1to2/1"/> + </vehicle> + <vehicle id="car424" depart="424.00"> + <route edges="2/4to2/3 2/3to2/2 2/2to3/2"/> + </vehicle> + <vehicle id="car425" depart="425.00"> + <route edges="2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to0/3"/> + </vehicle> + <vehicle id="car426" depart="426.00"> + <route edges="1/0to0/0 0/0to0/1 0/1to1/1 1/1to1/2 1/2to2/2 2/2to2/3"/> + </vehicle> + <vehicle id="car427" depart="427.00"> + <route edges="0/3to0/4 0/4to1/4 1/4to2/4 2/4to2/3 2/3to2/2 2/2to2/3"/> + </vehicle> + <vehicle id="car428" depart="428.00"> + <route edges="4/2to3/2 3/2to2/2 2/2to1/2 1/2to1/3 1/3to2/3"/> + </vehicle> + <vehicle id="car429" depart="429.00"> + <route edges="3/4to3/3 3/3to2/3 2/3to2/2 2/2to2/1 2/1to1/1 1/1to1/2"/> + </vehicle> + <vehicle id="car430" depart="430.00"> + <route edges="0/4to0/3 0/3to0/2 0/2to0/1 0/1to0/0 0/0to1/0 1/0to2/0"/> + </vehicle> + <vehicle id="car431" depart="431.00"> + <route edges="3/1to2/1 2/1to2/0 2/0to1/0 1/0to1/1"/> + </vehicle> + <vehicle id="car432" depart="432.00"> + <route edges="3/3to3/2 3/2to2/2 2/2to2/1"/> + </vehicle> + <vehicle id="car433" depart="433.00"> + <route edges="2/1to2/0 2/0to2/1 2/1to3/1 3/1to3/2 3/2to4/2 4/2to4/1"/> + </vehicle> + <vehicle id="car434" depart="434.00"> + <route edges="2/3to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to3/1"/> + </vehicle> + <vehicle id="car435" depart="435.00"> + <route edges="3/0to3/1 3/1to3/2 3/2to3/3 3/3to3/4 3/4to2/4 2/4to1/4 1/4to0/4 0/4to1/4"/> + </vehicle> + <vehicle id="car436" depart="436.00"> + <route edges="0/2to0/1 0/1to1/1 1/1to2/1 2/1to2/0"/> + </vehicle> + <vehicle id="car437" depart="437.00"> + <route edges="1/3to0/3 0/3to1/3 1/3to1/2 1/2to1/1"/> + </vehicle> + <vehicle id="car438" depart="438.00"> + <route edges="0/1to1/1 1/1to1/2 1/2to2/2 2/2to2/3"/> + </vehicle> + <vehicle id="car439" depart="439.00"> + <route edges="0/1to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to2/4 2/4to3/4 3/4to4/4"/> + </vehicle> + <vehicle id="car440" depart="440.00"> + <route edges="0/2to0/3 0/3to1/3 1/3to2/3 2/3to3/3 3/3to4/3 4/3to4/2 4/2to4/1 4/1to3/1"/> + </vehicle> + <vehicle id="car441" depart="441.00"> + <route edges="4/0to4/1 4/1to4/0 4/0to3/0 3/0to2/0"/> + </vehicle> + <vehicle id="car442" depart="442.00"> + <route edges="2/3to2/4 2/4to3/4 3/4to3/3 3/3to4/3"/> + </vehicle> + <vehicle id="car443" depart="443.00"> + <route edges="4/1to4/2 4/2to4/1 4/1to3/1 3/1to2/1 2/1to2/0"/> + </vehicle> + <vehicle id="car444" depart="444.00"> + <route edges="3/4to2/4 2/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to2/1"/> + </vehicle> + <vehicle id="car445" depart="445.00"> + <route edges="0/4to1/4 1/4to1/3 1/3to1/2 1/2to1/1 1/1to0/1 0/1to1/1"/> + </vehicle> + <vehicle id="car446" depart="446.00"> + <route edges="0/3to0/2 0/2to0/1 0/1to1/1 1/1to2/1 2/1to3/1 3/1to4/1 4/1to4/2"/> + </vehicle> + <vehicle id="car447" depart="447.00"> + <route edges="1/3to2/3 2/3to3/3 3/3to3/2 3/2to3/1"/> + </vehicle> + <vehicle id="car448" depart="448.00"> + <route edges="2/2to2/3 2/3to2/2 2/2to2/1 2/1to2/0 2/0to1/0 1/0to0/0"/> + </vehicle> + <vehicle id="car449" depart="449.00"> + <route edges="3/3to4/3 4/3to4/2 4/2to4/1 4/1to4/0 4/0to3/0 3/0to4/0"/> + </vehicle> + <vehicle id="car450" depart="450.00"> + <route edges="3/1to3/2 3/2to2/2 2/2to1/2 1/2to1/3"/> + </vehicle> + <vehicle id="car451" depart="451.00"> + <route edges="0/4to0/3 0/3to1/3 1/3to2/3"/> + </vehicle> + <vehicle id="car452" depart="452.00"> + <route edges="4/3to4/4 4/4to4/3 4/3to4/2 4/2to4/1 4/1to3/1 3/1to4/1"/> + </vehicle> + <vehicle id="car453" depart="453.00"> + <route edges="2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to2/4 2/4to2/3"/> + </vehicle> + <vehicle id="car454" depart="454.00"> + <route edges="4/3to3/3 3/3to2/3 2/3to1/3 1/3to0/3"/> + </vehicle> + <vehicle id="car455" depart="455.00"> + <route edges="1/4to2/4 2/4to3/4 3/4to3/3 3/3to4/3"/> + </vehicle> + <vehicle id="car456" depart="456.00"> + <route edges="3/4to3/3 3/3to3/2 3/2to3/1 3/1to3/0"/> + </vehicle> + <vehicle id="car457" depart="457.00"> + <route edges="3/4to4/4 4/4to4/3 4/3to4/2 4/2to3/2 3/2to4/2"/> + </vehicle> + <vehicle id="car458" depart="458.00"> + <route edges="3/1to3/2 3/2to3/3 3/3to2/3 2/3to1/3"/> + </vehicle> + <vehicle id="car459" depart="459.00"> + <route edges="4/3to3/3 3/3to2/3 2/3to2/2 2/2to1/2"/> + </vehicle> + <vehicle id="car460" depart="460.00"> + <route edges="1/1to1/2 1/2to1/3 1/3to1/4 1/4to0/4 0/4to0/3"/> + </vehicle> + <vehicle id="car461" depart="461.00"> + <route edges="0/2to0/3 0/3to1/3 1/3to2/3 2/3to3/3 3/3to4/3 4/3to4/2 4/2to4/1 4/1to4/0 4/0to3/0"/> + </vehicle> + <vehicle id="car462" depart="462.00"> + <route edges="0/3to0/2 0/2to0/3 0/3to1/3 1/3to2/3 2/3to3/3 3/3to3/2"/> + </vehicle> + <vehicle id="car463" depart="463.00"> + <route edges="3/4to4/4 4/4to4/3 4/3to4/2 4/2to4/1 4/1to4/0"/> + </vehicle> + <vehicle id="car464" depart="464.00"> + <route edges="0/1to0/2 0/2to1/2 1/2to1/3 1/3to1/4"/> + </vehicle> + <vehicle id="car465" depart="465.00"> + <route edges="3/3to3/2 3/2to2/2 2/2to1/2 1/2to0/2 0/2to0/3 0/3to1/3"/> + </vehicle> + <vehicle id="car466" depart="466.00"> + <route edges="3/4to4/4 4/4to4/3 4/3to3/3 3/3to3/2"/> + </vehicle> + <vehicle id="car467" depart="467.00"> + <route edges="3/4to2/4 2/4to1/4 1/4to1/3 1/3to1/2 1/2to1/1 1/1to1/0 1/0to0/0"/> + </vehicle> + <vehicle id="car468" depart="468.00"> + <route edges="2/1to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3"/> + </vehicle> + <vehicle id="car469" depart="469.00"> + <route edges="3/2to4/2 4/2to3/2 3/2to3/1 3/1to2/1 2/1to2/0"/> + </vehicle> + <vehicle id="car470" depart="470.00"> + <route edges="2/3to1/3 1/3to0/3"/> + </vehicle> + <vehicle id="car471" depart="471.00"> + <route edges="3/4to2/4 2/4to2/3 2/3to2/2 2/2to2/1 2/1to3/1"/> + </vehicle> + <vehicle id="car472" depart="472.00"> + <route edges="3/4to4/4 4/4to3/4 3/4to2/4 2/4to1/4 1/4to1/3"/> + </vehicle> + <vehicle id="car473" depart="473.00"> + <route edges="2/1to2/2 2/2to1/2 1/2to1/3"/> + </vehicle> + <vehicle id="car474" depart="474.00"> + <route edges="3/4to2/4 2/4to1/4 1/4to0/4 0/4to0/3"/> + </vehicle> + <vehicle id="car475" depart="475.00"> + <route edges="1/2to0/2 0/2to0/1 0/1to0/0 0/0to1/0 1/0to2/0 2/0to3/0 3/0to4/0"/> + </vehicle> + <vehicle id="car476" depart="476.00"> + <route edges="4/1to3/1 3/1to2/1 2/1to2/2 2/2to2/3 2/3to2/4"/> + </vehicle> + <vehicle id="car477" depart="477.00"> + <route edges="0/3to0/2 0/2to0/1 0/1to0/0 0/0to1/0 1/0to2/0 2/0to3/0 3/0to4/0 4/0to3/0"/> + </vehicle> + <vehicle id="car478" depart="478.00"> + <route edges="4/0to4/1 4/1to4/2 4/2to3/2 3/2to2/2 2/2to1/2 1/2to1/3"/> + </vehicle> + <vehicle id="car479" depart="479.00"> + <route edges="3/3to3/2 3/2to2/2 2/2to1/2 1/2to1/1"/> + </vehicle> + <vehicle id="car480" depart="480.00"> + <route edges="4/2to3/2 3/2to3/3 3/3to3/4 3/4to2/4 2/4to1/4 1/4to0/4 0/4to0/3"/> + </vehicle> + <vehicle id="car481" depart="481.00"> + <route edges="2/1to1/1 1/1to2/1 2/1to2/2 2/2to3/2 3/2to3/3 3/3to4/3 4/3to3/3"/> + </vehicle> + <vehicle id="car482" depart="482.00"> + <route edges="1/3to2/3 2/3to2/2 2/2to1/2 1/2to1/1 1/1to0/1 0/1to0/0"/> + </vehicle> + <vehicle id="car483" depart="483.00"> + <route edges="0/1to1/1 1/1to1/2 1/2to2/2 2/2to2/3"/> + </vehicle> + <vehicle id="car484" depart="484.00"> + <route edges="1/1to1/2 1/2to1/3 1/3to1/4 1/4to2/4 2/4to3/4 3/4to4/4 4/4to4/3"/> + </vehicle> + <vehicle id="car485" depart="485.00"> + <route edges="1/4to1/3 1/3to0/3 0/3to0/2 0/2to0/1 0/1to0/0"/> + </vehicle> + <vehicle id="car486" depart="486.00"> + <route edges="4/2to4/3 4/3to4/2 4/2to4/1 4/1to4/0 4/0to3/0"/> + </vehicle> + <vehicle id="car487" depart="487.00"> + <route edges="3/0to4/0 4/0to3/0 3/0to3/1 3/1to3/2 3/2to3/3 3/3to4/3"/> + </vehicle> + <vehicle id="car488" depart="488.00"> + <route edges="3/4to4/4 4/4to4/3 4/3to4/2 4/2to4/1 4/1to3/1 3/1to4/1"/> + </vehicle> + <vehicle id="car489" depart="489.00"> + <route edges="0/4to0/3 0/3to1/3 1/3to2/3 2/3to3/3 3/3to3/2 3/2to2/2"/> + </vehicle> + <vehicle id="car490" depart="490.00"> + <route edges="2/1to2/0 2/0to1/0 1/0to0/0 0/0to0/1"/> + </vehicle> + <vehicle id="car491" depart="491.00"> + <route edges="3/4to4/4 4/4to4/3 4/3to3/3 3/3to2/3 2/3to2/2"/> + </vehicle> + <vehicle id="car492" depart="492.00"> + <route edges="3/2to3/3 3/3to2/3 2/3to1/3"/> + </vehicle> + <vehicle id="car493" depart="493.00"> + <route edges="0/3to0/2 0/2to1/2 1/2to2/2"/> + </vehicle> + <vehicle id="car494" depart="494.00"> + <route edges="2/0to3/0 3/0to3/1 3/1to3/2 3/2to3/3 3/3to4/3"/> + </vehicle> + <vehicle id="car495" depart="495.00"> + <route edges="2/1to2/2 2/2to2/3 2/3to1/3 1/3to0/3 0/3to0/2"/> + </vehicle> + <vehicle id="car496" depart="496.00"> + <route edges="4/2to3/2 3/2to2/2 2/2to2/3 2/3to2/4 2/4to2/3"/> + </vehicle> + <vehicle id="car497" depart="497.00"> + <route edges="0/0to1/0 1/0to2/0 2/0to2/1 2/1to2/2 2/2to3/2"/> + </vehicle> + <vehicle id="car498" depart="498.00"> + <route edges="1/1to2/1 2/1to2/2 2/2to2/3 2/3to2/4 2/4to1/4 1/4to0/4 0/4to0/3"/> + </vehicle> + <vehicle id="car499" depart="499.00"> + <route edges="1/1to2/1 2/1to2/0 2/0to3/0"/> + </vehicle> + <vehicle id="car500" depart="500.00"> + <route edges="3/1to3/0 3/0to2/0 2/0to1/0 1/0to0/0 0/0to0/1 0/1to0/2 0/2to0/3"/> + </vehicle> + <vehicle id="car501" depart="501.00"> + <route edges="4/3to4/4 4/4to3/4 3/4to2/4 2/4to1/4 1/4to0/4 0/4to0/3 0/3to0/2 0/2to0/1"/> + </vehicle> + <vehicle id="car502" depart="502.00"> + <route edges="4/4to4/3 4/3to3/3 3/3to2/3 2/3to2/4"/> + </vehicle> + <vehicle id="car503" depart="503.00"> + <route edges="3/0to3/1 3/1to4/1 4/1to4/2 4/2to4/3 4/3to4/4 4/4to3/4"/> + </vehicle> + <vehicle id="car504" depart="504.00"> + <route edges="1/2to0/2 0/2to0/1 0/1to0/0 0/0to1/0"/> + </vehicle> + <vehicle id="car505" depart="505.00"> + <route edges="1/0to1/1 1/1to2/1 2/1to2/2 2/2to2/3 2/3to3/3 3/3to3/4"/> + </vehicle> + <vehicle id="car506" depart="506.00"> + <route edges="2/1to3/1 3/1to4/1"/> + </vehicle> + <vehicle id="car507" depart="507.00"> + <route edges="3/0to3/1 3/1to3/2 3/2to3/3 3/3to3/4 3/4to2/4"/> + </vehicle> + <vehicle id="car508" depart="508.00"> + <route edges="0/2to0/1 0/1to0/2 0/2to1/2 1/2to1/3 1/3to2/3 2/3to3/3 3/3to3/4"/> + </vehicle> + <vehicle id="car509" depart="509.00"> + <route edges="0/1to0/2 0/2to1/2 1/2to1/1 1/1to1/0 1/0to2/0"/> + </vehicle> + <vehicle id="car510" depart="510.00"> + <route edges="0/1to0/2 0/2to1/2 1/2to2/2 2/2to3/2 3/2to4/2 4/2to4/3"/> + </vehicle> + <vehicle id="car511" depart="511.00"> + <route edges="2/2to3/2 3/2to3/3 3/3to3/4 3/4to4/4 4/4to4/3"/> + </vehicle> + <vehicle id="car512" depart="512.00"> + <route edges="2/3to2/2 2/2to1/2 1/2to0/2"/> + </vehicle> + <vehicle id="car513" depart="513.00"> + <route edges="3/3to2/3 2/3to2/2 2/2to1/2 1/2to1/1 1/1to1/0 1/0to2/0"/> + </vehicle> + <vehicle id="car514" depart="514.00"> + <route edges="1/4to0/4 0/4to1/4 1/4to2/4 2/4to3/4 3/4to3/3 3/3to3/4"/> + </vehicle> + <vehicle id="car515" depart="515.00"> + <route edges="4/1to3/1 3/1to2/1 2/1to1/1 1/1to1/2 1/2to1/3 1/3to1/4"/> + </vehicle> + <vehicle id="car516" depart="516.00"> + <route edges="4/1to4/2 4/2to4/3 4/3to4/4 4/4to3/4 3/4to2/4 2/4to1/4 1/4to2/4"/> + </vehicle> + <vehicle id="car517" depart="517.00"> + <route edges="4/3to4/4 4/4to3/4 3/4to2/4 2/4to2/3 2/3to2/2 2/2to2/1"/> + </vehicle> + <vehicle id="car518" depart="518.00"> + <route edges="2/2to2/1 2/1to2/2 2/2to3/2 3/2to4/2 4/2to4/1"/> + </vehicle> + <vehicle id="car519" depart="519.00"> + <route edges="2/2to3/2 3/2to3/3 3/3to3/4 3/4to2/4"/> + </vehicle> + <vehicle id="car520" depart="520.00"> + <route edges="3/2to3/3 3/3to3/2 3/2to2/2 2/2to1/2 1/2to0/2 0/2to0/3"/> + </vehicle> + <vehicle id="car521" depart="521.00"> + <route edges="0/2to0/3 0/3to1/3 1/3to2/3 2/3to3/3 3/3to3/2 3/2to3/1 3/1to2/1"/> + </vehicle> + <vehicle id="car522" depart="522.00"> + <route edges="1/3to0/3 0/3to0/4 0/4to1/4 1/4to2/4 2/4to3/4"/> + </vehicle> + <vehicle id="car523" depart="523.00"> + <route edges="2/1to1/1 1/1to2/1 2/1to3/1 3/1to4/1"/> + </vehicle> + <vehicle id="car524" depart="524.00"> + <route edges="1/4to0/4 0/4to0/3 0/3to0/2 0/2to0/1 0/1to0/2"/> + </vehicle> + <vehicle id="car525" depart="525.00"> + <route edges="4/1to3/1 3/1to3/2 3/2to3/3 3/3to3/4 3/4to2/4 2/4to1/4 1/4to0/4"/> + </vehicle> + <vehicle id="car526" depart="526.00"> + <route edges="4/4to4/3 4/3to3/3 3/3to3/2 3/2to2/2 2/2to1/2 1/2to1/1"/> + </vehicle> + <vehicle id="car527" depart="527.00"> + <route edges="0/2to0/3 0/3to1/3 1/3to1/2 1/2to1/1 1/1to1/0 1/0to2/0 2/0to3/0 3/0to4/0"/> + </vehicle> + <vehicle id="car528" depart="528.00"> + <route edges="0/4to0/3 0/3to0/4 0/4to1/4 1/4to2/4 2/4to3/4"/> + </vehicle> + <vehicle id="car529" depart="529.00"> + <route edges="3/3to3/4 3/4to2/4 2/4to1/4 1/4to0/4 0/4to0/3 0/3to0/2 0/2to0/1 0/1to0/0"/> + </vehicle> + <vehicle id="car530" depart="530.00"> + <route edges="0/2to0/1 0/1to0/2 0/2to1/2 1/2to1/3 1/3to2/3 2/3to3/3 3/3to3/4"/> + </vehicle> + <vehicle id="car531" depart="531.00"> + <route edges="3/1to3/2 3/2to3/3 3/3to4/3 4/3to3/3"/> + </vehicle> + <vehicle id="car532" depart="532.00"> + <route edges="1/4to1/3 1/3to2/3 2/3to3/3 3/3to3/2"/> + </vehicle> + <vehicle id="car533" depart="533.00"> + <route edges="2/0to1/0 1/0to2/0 2/0to3/0 3/0to4/0"/> + </vehicle> + <vehicle id="car534" depart="534.00"> + <route edges="1/1to2/1 2/1to1/1 1/1to0/1 0/1to0/2 0/2to0/3 0/3to0/4"/> + </vehicle> + <vehicle id="car535" depart="535.00"> + <route edges="2/1to2/0 2/0to2/1 2/1to2/2 2/2to2/3 2/3to2/4 2/4to3/4 3/4to4/4 4/4to4/3"/> + </vehicle> + <vehicle id="car536" depart="536.00"> + <route edges="1/2to1/3 1/3to2/3 2/3to3/3 3/3to4/3 4/3to4/2 4/2to4/1"/> + </vehicle> + <vehicle id="car537" depart="537.00"> + <route edges="2/2to2/1 2/1to1/1 1/1to0/1 0/1to0/2 0/2to0/3 0/3to0/4"/> + </vehicle> + <vehicle id="car538" depart="538.00"> + <route edges="4/0to4/1 4/1to3/1 3/1to2/1 2/1to2/2"/> + </vehicle> + <vehicle id="car539" depart="539.00"> + <route edges="4/1to4/2 4/2to4/1 4/1to3/1 3/1to2/1 2/1to2/0"/> + </vehicle> + <vehicle id="car540" depart="540.00"> + <route edges="0/2to1/2 1/2to2/2 2/2to3/2 3/2to3/1 3/1to3/2"/> + </vehicle> + <vehicle id="car541" depart="541.00"> + <route edges="4/0to3/0 3/0to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to1/2"/> + </vehicle> + <vehicle id="car542" depart="542.00"> + <route edges="1/3to2/3 2/3to1/3 1/3to1/2 1/2to0/2 0/2to0/1"/> + </vehicle> + <vehicle id="car543" depart="543.00"> + <route edges="2/3to2/2 2/2to2/1 2/1to3/1 3/1to4/1 4/1to4/2"/> + </vehicle> + <vehicle id="car544" depart="544.00"> + <route edges="4/0to4/1 4/1to4/2 4/2to3/2 3/2to2/2"/> + </vehicle> + <vehicle id="car545" depart="545.00"> + <route edges="4/2to4/3 4/3to4/2 4/2to4/1 4/1to4/0 4/0to3/0 3/0to4/0"/> + </vehicle> + <vehicle id="car546" depart="546.00"> + <route edges="0/3to0/4 0/4to1/4 1/4to1/3 1/3to1/2 1/2to1/1 1/1to0/1"/> + </vehicle> + <vehicle id="car547" depart="547.00"> + <route edges="0/4to0/3 0/3to1/3 1/3to2/3 2/3to3/3 3/3to4/3"/> + </vehicle> + <vehicle id="car548" depart="548.00"> + <route edges="0/1to0/0 0/0to1/0 1/0to2/0 2/0to2/1 2/1to2/2 2/2to2/3 2/3to2/4"/> + </vehicle> + <vehicle id="car549" depart="549.00"> + <route edges="4/4to4/3 4/3to3/3 3/3to3/2 3/2to3/1"/> + </vehicle> + <vehicle id="car550" depart="550.00"> + <route edges="3/4to3/3 3/3to2/3 2/3to2/2 2/2to1/2 1/2to0/2 0/2to0/1"/> + </vehicle> + <vehicle id="car551" depart="551.00"> + <route edges="4/3to4/4 4/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to4/0"/> + </vehicle> + <vehicle id="car552" depart="552.00"> + <route edges="1/3to2/3 2/3to3/3 3/3to4/3 4/3to4/2 4/2to4/1 4/1to4/0"/> + </vehicle> + <vehicle id="car553" depart="553.00"> + <route edges="3/3to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to4/0"/> + </vehicle> + <vehicle id="car554" depart="554.00"> + <route edges="1/0to1/1 1/1to2/1 2/1to2/2 2/2to3/2 3/2to3/3 3/3to4/3 4/3to4/4"/> + </vehicle> + <vehicle id="car555" depart="555.00"> + <route edges="0/1to1/1 1/1to0/1 0/1to0/2 0/2to0/3 0/3to0/4"/> + </vehicle> + <vehicle id="car556" depart="556.00"> + <route edges="0/4to1/4 1/4to1/3 1/3to1/2 1/2to1/1 1/1to1/0 1/0to0/0"/> + </vehicle> + <vehicle id="car557" depart="557.00"> + <route edges="1/3to2/3 2/3to3/3 3/3to4/3 4/3to3/3"/> + </vehicle> + <vehicle id="car558" depart="558.00"> + <route edges="1/2to0/2 0/2to0/1 0/1to0/0 0/0to1/0 1/0to2/0 2/0to3/0 3/0to3/1"/> + </vehicle> + <vehicle id="car559" depart="559.00"> + <route edges="2/2to2/3 2/3to2/2 2/2to2/1 2/1to2/0 2/0to1/0 1/0to0/0"/> + </vehicle> + <vehicle id="car560" depart="560.00"> + <route edges="4/3to3/3 3/3to2/3 2/3to1/3 1/3to0/3 0/3to0/4 0/4to1/4"/> + </vehicle> + <vehicle id="car561" depart="561.00"> + <route edges="2/4to3/4 3/4to4/4 4/4to4/3 4/3to4/2 4/2to4/1 4/1to4/0 4/0to3/0"/> + </vehicle> + <vehicle id="car562" depart="562.00"> + <route edges="2/3to3/3 3/3to3/4 3/4to4/4"/> + </vehicle> + <vehicle id="car563" depart="563.00"> + <route edges="3/0to4/0 4/0to4/1 4/1to4/2 4/2to4/3 4/3to4/4 4/4to3/4 3/4to2/4 2/4to1/4"/> + </vehicle> + <vehicle id="car564" depart="564.00"> + <route edges="2/0to3/0 3/0to4/0"/> + </vehicle> + <vehicle id="car565" depart="565.00"> + <route edges="1/2to2/2 2/2to3/2 3/2to3/3 3/3to4/3 4/3to4/2"/> + </vehicle> + <vehicle id="car566" depart="566.00"> + <route edges="2/2to1/2 1/2to1/3 1/3to1/4 1/4to2/4 2/4to3/4 3/4to2/4"/> + </vehicle> + <vehicle id="car567" depart="567.00"> + <route edges="1/1to0/1 0/1to0/2 0/2to0/3 0/3to0/4 0/4to1/4 1/4to2/4 2/4to3/4"/> + </vehicle> + <vehicle id="car568" depart="568.00"> + <route edges="1/3to1/2 1/2to2/2 2/2to3/2 3/2to3/1"/> + </vehicle> + <vehicle id="car569" depart="569.00"> + <route edges="4/4to3/4 3/4to2/4 2/4to1/4 1/4to0/4 0/4to0/3 0/3to1/3"/> + </vehicle> + <vehicle id="car570" depart="570.00"> + <route edges="1/3to1/2 1/2to1/1 1/1to2/1 2/1to3/1"/> + </vehicle> + <vehicle id="car571" depart="571.00"> + <route edges="0/2to1/2 1/2to2/2"/> + </vehicle> + <vehicle id="car572" depart="572.00"> + <route edges="1/4to2/4 2/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to2/0"/> + </vehicle> + <vehicle id="car573" depart="573.00"> + <route edges="1/1to2/1 2/1to3/1 3/1to4/1 4/1to3/1"/> + </vehicle> + <vehicle id="car574" depart="574.00"> + <route edges="2/4to1/4 1/4to1/3 1/3to1/2"/> + </vehicle> + <vehicle id="car575" depart="575.00"> + <route edges="3/3to3/2 3/2to2/2 2/2to2/1"/> + </vehicle> + <vehicle id="car576" depart="576.00"> + <route edges="1/3to0/3 0/3to0/2 0/2to0/1 0/1to0/0 0/0to1/0"/> + </vehicle> + <vehicle id="car577" depart="577.00"> + <route edges="4/3to3/3 3/3to3/2 3/2to2/2 2/2to2/3"/> + </vehicle> + <vehicle id="car578" depart="578.00"> + <route edges="4/3to4/4 4/4to3/4 3/4to2/4 2/4to1/4 1/4to1/3 1/3to1/2 1/2to1/1 1/1to1/0"/> + </vehicle> + <vehicle id="car579" depart="579.00"> + <route edges="1/4to0/4 0/4to0/3 0/3to0/2 0/2to0/1 0/1to1/1"/> + </vehicle> + <vehicle id="car580" depart="580.00"> + <route edges="2/2to2/1 2/1to3/1 3/1to4/1 4/1to4/0"/> + </vehicle> + <vehicle id="car581" depart="581.00"> + <route edges="2/3to1/3 1/3to2/3 2/3to3/3 3/3to4/3 4/3to4/2 4/2to4/1 4/1to4/0 4/0to3/0"/> + </vehicle> + <vehicle id="car582" depart="582.00"> + <route edges="2/1to1/1 1/1to2/1 2/1to3/1 3/1to4/1 4/1to4/0"/> + </vehicle> + <vehicle id="car583" depart="583.00"> + <route edges="1/4to1/3 1/3to1/2 1/2to1/1 1/1to1/0 1/0to2/0 2/0to2/1"/> + </vehicle> + <vehicle id="car584" depart="584.00"> + <route edges="2/3to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to2/0 2/0to1/0 1/0to2/0"/> + </vehicle> + <vehicle id="car585" depart="585.00"> + <route edges="2/3to2/4 2/4to1/4 1/4to0/4 0/4to0/3 0/3to0/2 0/2to0/1"/> + </vehicle> + <vehicle id="car586" depart="586.00"> + <route edges="1/2to1/3 1/3to1/4 1/4to2/4 2/4to3/4 3/4to4/4 4/4to4/3"/> + </vehicle> + <vehicle id="car587" depart="587.00"> + <route edges="3/1to3/2 3/2to3/3 3/3to2/3 2/3to1/3 1/3to0/3 0/3to0/4"/> + </vehicle> + <vehicle id="car588" depart="588.00"> + <route edges="4/4to3/4 3/4to2/4 2/4to2/3 2/3to2/2 2/2to2/1 2/1to2/0 2/0to1/0"/> + </vehicle> + <vehicle id="car589" depart="589.00"> + <route edges="4/3to3/3 3/3to2/3"/> + </vehicle> + <vehicle id="car590" depart="590.00"> + <route edges="1/0to2/0 2/0to2/1 2/1to2/2 2/2to2/3"/> + </vehicle> + <vehicle id="car591" depart="591.00"> + <route edges="2/2to2/3 2/3to2/2 2/2to1/2 1/2to1/1 1/1to0/1 0/1to0/2"/> + </vehicle> + <vehicle id="car592" depart="592.00"> + <route edges="2/4to3/4 3/4to3/3 3/3to3/2 3/2to2/2 2/2to3/2"/> + </vehicle> + <vehicle id="car593" depart="593.00"> + <route edges="1/3to1/4 1/4to2/4 2/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to2/0"/> + </vehicle> + <vehicle id="car594" depart="594.00"> + <route edges="1/0to0/0 0/0to0/1 0/1to0/2 0/2to0/3 0/3to0/4 0/4to1/4 1/4to2/4 2/4to3/4 3/4to4/4 4/4to4/3"/> + </vehicle> + <vehicle id="car595" depart="595.00"> + <route edges="1/3to1/4 1/4to2/4 2/4to3/4 3/4to4/4"/> + </vehicle> + <vehicle id="car596" depart="596.00"> + <route edges="1/2to2/2 2/2to2/3 2/3to2/4 2/4to3/4 3/4to3/3"/> + </vehicle> + <vehicle id="car597" depart="597.00"> + <route edges="1/4to1/3 1/3to1/2 1/2to2/2 2/2to3/2 3/2to3/1 3/1to3/0"/> + </vehicle> + <vehicle id="car598" depart="598.00"> + <route edges="4/4to3/4 3/4to2/4 2/4to1/4"/> + </vehicle> + <vehicle id="car599" depart="599.00"> + <route edges="3/1to4/1 4/1to3/1 3/1to2/1 2/1to1/1 1/1to0/1 0/1to0/0"/> + </vehicle> + <vehicle id="car600" depart="600.00"> + <route edges="2/1to3/1 3/1to3/2 3/2to4/2 4/2to4/3 4/3to4/4"/> + </vehicle> + <vehicle id="car601" depart="601.00"> + <route edges="2/4to1/4 1/4to2/4 2/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1"/> + </vehicle> + <vehicle id="car602" depart="602.00"> + <route edges="2/4to1/4 1/4to1/3 1/3to1/2 1/2to1/1 1/1to1/0 1/0to0/0"/> + </vehicle> + <vehicle id="car603" depart="603.00"> + <route edges="4/0to3/0 3/0to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to0/4 0/4to0/3"/> + </vehicle> + <vehicle id="car604" depart="604.00"> + <route edges="3/1to3/2 3/2to3/1 3/1to2/1 2/1to1/1 1/1to0/1 0/1to0/0"/> + </vehicle> + <vehicle id="car605" depart="605.00"> + <route edges="4/3to3/3 3/3to2/3 2/3to1/3 1/3to0/3 0/3to0/2"/> + </vehicle> + <vehicle id="car606" depart="606.00"> + <route edges="0/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to1/2"/> + </vehicle> + <vehicle id="car607" depart="607.00"> + <route edges="0/4to1/4 1/4to2/4 2/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to4/1"/> + </vehicle> + <vehicle id="car608" depart="608.00"> + <route edges="2/0to2/1 2/1to2/2 2/2to2/3 2/3to3/3 3/3to3/2"/> + </vehicle> + <vehicle id="car609" depart="609.00"> + <route edges="3/2to3/3 3/3to3/2 3/2to2/2 2/2to2/1 2/1to1/1 1/1to0/1 0/1to1/1"/> + </vehicle> + <vehicle id="car610" depart="610.00"> + <route edges="0/4to0/3 0/3to0/2 0/2to1/2 1/2to1/1 1/1to0/1"/> + </vehicle> + <vehicle id="car611" depart="611.00"> + <route edges="1/3to1/4 1/4to2/4 2/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to2/1"/> + </vehicle> + <vehicle id="car612" depart="612.00"> + <route edges="1/0to0/0 0/0to0/1 0/1to1/1 1/1to1/2 1/2to2/2 2/2to3/2 3/2to4/2 4/2to3/2"/> + </vehicle> + <vehicle id="car613" depart="613.00"> + <route edges="3/3to3/2 3/2to3/1"/> + </vehicle> + <vehicle id="car614" depart="614.00"> + <route edges="2/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to2/0 2/0to1/0 1/0to2/0"/> + </vehicle> + <vehicle id="car615" depart="615.00"> + <route edges="1/1to2/1 2/1to2/2 2/2to2/3 2/3to2/4"/> + </vehicle> + <vehicle id="car616" depart="616.00"> + <route edges="1/1to1/0 1/0to2/0 2/0to3/0 3/0to4/0 4/0to4/1 4/1to4/2 4/2to4/3 4/3to4/4"/> + </vehicle> + <vehicle id="car617" depart="617.00"> + <route edges="1/2to1/1 1/1to0/1 0/1to0/2 0/2to0/3 0/3to0/4"/> + </vehicle> + <vehicle id="car618" depart="618.00"> + <route edges="3/1to3/2 3/2to3/3 3/3to3/4 3/4to2/4 2/4to1/4 1/4to2/4"/> + </vehicle> + <vehicle id="car619" depart="619.00"> + <route edges="4/3to4/2 4/2to3/2 3/2to3/3 3/3to3/4 3/4to2/4"/> + </vehicle> + <vehicle id="car620" depart="620.00"> + <route edges="2/1to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to0/2"/> + </vehicle> + <vehicle id="car621" depart="621.00"> + <route edges="2/2to1/2 1/2to1/1 1/1to0/1"/> + </vehicle> + <vehicle id="car622" depart="622.00"> + <route edges="2/3to2/2 2/2to3/2 3/2to4/2 4/2to4/3"/> + </vehicle> + <vehicle id="car623" depart="623.00"> + <route edges="3/1to4/1 4/1to3/1 3/1to2/1 2/1to1/1 1/1to0/1 0/1to0/2 0/2to0/3 0/3to1/3"/> + </vehicle> + <vehicle id="car624" depart="624.00"> + <route edges="3/0to2/0 2/0to2/1 2/1to2/2 2/2to2/3 2/3to2/4 2/4to1/4"/> + </vehicle> + <vehicle id="car625" depart="625.00"> + <route edges="1/1to2/1 2/1to3/1 3/1to3/0"/> + </vehicle> + <vehicle id="car626" depart="626.00"> + <route edges="2/3to1/3 1/3to1/2 1/2to1/1 1/1to1/0 1/0to2/0 2/0to3/0 3/0to4/0"/> + </vehicle> + <vehicle id="car627" depart="627.00"> + <route edges="0/1to1/1 1/1to1/0 1/0to2/0 2/0to3/0"/> + </vehicle> + <vehicle id="car628" depart="628.00"> + <route edges="3/2to3/1 3/1to2/1 2/1to1/1 1/1to0/1 0/1to0/2 0/2to0/3 0/3to0/2"/> + </vehicle> + <vehicle id="car629" depart="629.00"> + <route edges="3/3to3/2 3/2to3/1 3/1to3/0 3/0to2/0 2/0to1/0 1/0to0/0 0/0to0/1"/> + </vehicle> + <vehicle id="car630" depart="630.00"> + <route edges="2/3to2/4 2/4to3/4 3/4to4/4 4/4to4/3 4/3to4/2 4/2to4/3"/> + </vehicle> + <vehicle id="car631" depart="631.00"> + <route edges="2/0to2/1 2/1to3/1 3/1to3/2 3/2to4/2 4/2to4/3"/> + </vehicle> + <vehicle id="car632" depart="632.00"> + <route edges="4/1to4/0 4/0to3/0 3/0to2/0 2/0to2/1 2/1to2/2 2/2to1/2"/> + </vehicle> + <vehicle id="car633" depart="633.00"> + <route edges="1/0to2/0 2/0to3/0 3/0to4/0 4/0to4/1 4/1to4/2 4/2to4/3 4/3to4/4"/> + </vehicle> + <vehicle id="car634" depart="634.00"> + <route edges="1/3to1/2 1/2to1/1 1/1to1/0 1/0to2/0 2/0to3/0 3/0to4/0"/> + </vehicle> + <vehicle id="car635" depart="635.00"> + <route edges="4/2to3/2 3/2to2/2 2/2to1/2 1/2to0/2 0/2to1/2"/> + </vehicle> + <vehicle id="car636" depart="636.00"> + <route edges="4/2to4/1 4/1to4/0 4/0to3/0 3/0to2/0 2/0to1/0 1/0to1/1"/> + </vehicle> + <vehicle id="car637" depart="637.00"> + <route edges="4/1to4/0 4/0to3/0 3/0to2/0 2/0to1/0 1/0to1/1"/> + </vehicle> + <vehicle id="car638" depart="638.00"> + <route edges="4/2to4/3 4/3to4/2 4/2to4/1 4/1to4/0"/> + </vehicle> + <vehicle id="car639" depart="639.00"> + <route edges="0/0to0/1 0/1to1/1 1/1to1/2 1/2to2/2 2/2to2/3 2/3to3/3"/> + </vehicle> + <vehicle id="car640" depart="640.00"> + <route edges="0/3to0/2 0/2to0/3 0/3to0/4 0/4to1/4 1/4to2/4 2/4to3/4 3/4to4/4 4/4to3/4"/> + </vehicle> + <vehicle id="car641" depart="641.00"> + <route edges="1/2to1/3 1/3to1/4 1/4to2/4 2/4to3/4 3/4to4/4 4/4to4/3"/> + </vehicle> + <vehicle id="car642" depart="642.00"> + <route edges="2/3to2/2 2/2to2/1"/> + </vehicle> + <vehicle id="car643" depart="643.00"> + <route edges="4/3to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to4/0 4/0to4/1"/> + </vehicle> + <vehicle id="car644" depart="644.00"> + <route edges="2/1to2/2 2/2to1/2 1/2to0/2"/> + </vehicle> + <vehicle id="car645" depart="645.00"> + <route edges="1/0to1/1 1/1to2/1 2/1to2/2 2/2to3/2 3/2to3/3"/> + </vehicle> + <vehicle id="car646" depart="646.00"> + <route edges="3/3to2/3 2/3to2/2 2/2to2/1 2/1to2/0 2/0to1/0 1/0to1/1"/> + </vehicle> + <vehicle id="car647" depart="647.00"> + <route edges="4/0to4/1 4/1to4/2"/> + </vehicle> + <vehicle id="car648" depart="648.00"> + <route edges="3/4to4/4 4/4to4/3 4/3to3/3 3/3to3/2 3/2to2/2 2/2to3/2"/> + </vehicle> + <vehicle id="car649" depart="649.00"> + <route edges="0/2to0/3 0/3to1/3 1/3to2/3 2/3to3/3 3/3to3/2 3/2to3/1 3/1to3/0"/> + </vehicle> + <vehicle id="car650" depart="650.00"> + <route edges="1/0to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to0/4 0/4to0/3"/> + </vehicle> + <vehicle id="car651" depart="651.00"> + <route edges="1/3to1/2 1/2to1/1 1/1to2/1"/> + </vehicle> + <vehicle id="car652" depart="652.00"> + <route edges="1/3to0/3 0/3to1/3 1/3to2/3 2/3to3/3 3/3to3/2 3/2to3/1"/> + </vehicle> + <vehicle id="car653" depart="653.00"> + <route edges="0/0to0/1 0/1to1/1 1/1to2/1 2/1to3/1 3/1to2/1"/> + </vehicle> + <vehicle id="car654" depart="654.00"> + <route edges="3/1to4/1 4/1to3/1 3/1to2/1 2/1to1/1 1/1to0/1 0/1to1/1"/> + </vehicle> + <vehicle id="car655" depart="655.00"> + <route edges="2/0to2/1 2/1to2/2 2/2to2/3"/> + </vehicle> + <vehicle id="car656" depart="656.00"> + <route edges="4/1to4/2 4/2to3/2 3/2to2/2"/> + </vehicle> + <vehicle id="car657" depart="657.00"> + <route edges="4/2to4/1 4/1to3/1 3/1to2/1 2/1to1/1 1/1to1/2 1/2to2/2"/> + </vehicle> + <vehicle id="car658" depart="658.00"> + <route edges="3/0to2/0 2/0to1/0 1/0to1/1 1/1to1/0"/> + </vehicle> + <vehicle id="car659" depart="659.00"> + <route edges="3/2to4/2 4/2to4/3 4/3to4/4 4/4to3/4 3/4to2/4 2/4to3/4"/> + </vehicle> + <vehicle id="car660" depart="660.00"> + <route edges="2/0to3/0 3/0to2/0 2/0to2/1 2/1to2/2 2/2to2/3 2/3to2/2"/> + </vehicle> + <vehicle id="car661" depart="661.00"> + <route edges="3/1to3/0 3/0to2/0 2/0to1/0 1/0to1/1 1/1to1/0"/> + </vehicle> + <vehicle id="car662" depart="662.00"> + <route edges="1/1to2/1 2/1to2/2 2/2to2/3 2/3to3/3 3/3to2/3"/> + </vehicle> + <vehicle id="car663" depart="663.00"> + <route edges="4/1to3/1 3/1to2/1 2/1to1/1 1/1to0/1 0/1to0/2 0/2to0/3"/> + </vehicle> + <vehicle id="car664" depart="664.00"> + <route edges="0/2to0/3 0/3to1/3 1/3to2/3 2/3to3/3"/> + </vehicle> + <vehicle id="car665" depart="665.00"> + <route edges="0/1to1/1 1/1to1/2 1/2to1/3 1/3to2/3 2/3to2/2"/> + </vehicle> + <vehicle id="car666" depart="666.00"> + <route edges="2/2to3/2 3/2to2/2 2/2to1/2 1/2to0/2 0/2to0/3 0/3to0/4"/> + </vehicle> + <vehicle id="car667" depart="667.00"> + <route edges="1/1to0/1 0/1to0/2 0/2to0/3 0/3to0/4 0/4to1/4 1/4to2/4 2/4to1/4"/> + </vehicle> + <vehicle id="car668" depart="668.00"> + <route edges="0/2to1/2 1/2to2/2 2/2to2/3"/> + </vehicle> + <vehicle id="car669" depart="669.00"> + <route edges="3/4to2/4 2/4to2/3 2/3to2/2 2/2to2/1 2/1to2/2"/> + </vehicle> + <vehicle id="car670" depart="670.00"> + <route edges="0/1to1/1 1/1to2/1 2/1to2/2"/> + </vehicle> + <vehicle id="car671" depart="671.00"> + <route edges="3/4to2/4 2/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1"/> + </vehicle> + <vehicle id="car672" depart="672.00"> + <route edges="2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to2/4 2/4to3/4 3/4to3/3"/> + </vehicle> + <vehicle id="car673" depart="673.00"> + <route edges="3/2to4/2 4/2to4/3 4/3to4/4 4/4to3/4 3/4to2/4 2/4to1/4"/> + </vehicle> + <vehicle id="car674" depart="674.00"> + <route edges="0/1to0/2 0/2to1/2 1/2to1/3 1/3to2/3"/> + </vehicle> + <vehicle id="car675" depart="675.00"> + <route edges="0/2to0/1 0/1to0/2 0/2to0/3 0/3to0/4 0/4to1/4 1/4to2/4 2/4to3/4 3/4to4/4 4/4to4/3"/> + </vehicle> + <vehicle id="car676" depart="676.00"> + <route edges="4/2to4/3 4/3to4/2 4/2to3/2 3/2to2/2 2/2to1/2 1/2to0/2 0/2to0/1"/> + </vehicle> + <vehicle id="car677" depart="677.00"> + <route edges="4/2to4/3 4/3to4/2 4/2to3/2 3/2to3/1 3/1to2/1 2/1to1/1 1/1to0/1 0/1to0/0"/> + </vehicle> + <vehicle id="car678" depart="678.00"> + <route edges="2/0to2/1 2/1to2/2 2/2to2/3 2/3to3/3 3/3to3/2"/> + </vehicle> + <vehicle id="car679" depart="679.00"> + <route edges="4/4to4/3 4/3to3/3 3/3to3/4 3/4to2/4 2/4to1/4 1/4to2/4"/> + </vehicle> + <vehicle id="car680" depart="680.00"> + <route edges="1/4to2/4 2/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to3/2"/> + </vehicle> + <vehicle id="car681" depart="681.00"> + <route edges="3/1to2/1 2/1to1/1 1/1to1/2 1/2to1/3 1/3to2/3"/> + </vehicle> + <vehicle id="car682" depart="682.00"> + <route edges="1/0to1/1 1/1to1/2 1/2to1/3 1/3to2/3 2/3to1/3"/> + </vehicle> + <vehicle id="car683" depart="683.00"> + <route edges="0/0to1/0 1/0to1/1 1/1to1/2 1/2to2/2"/> + </vehicle> + <vehicle id="car684" depart="684.00"> + <route edges="1/1to2/1 2/1to1/1 1/1to1/2 1/2to1/3 1/3to2/3"/> + </vehicle> + <vehicle id="car685" depart="685.00"> + <route edges="1/2to1/3 1/3to2/3 2/3to3/3 3/3to4/3 4/3to4/2 4/2to4/3"/> + </vehicle> + <vehicle id="car686" depart="686.00"> + <route edges="3/2to3/3 3/3to2/3 2/3to1/3 1/3to0/3 0/3to0/4"/> + </vehicle> + <vehicle id="car687" depart="687.00"> + <route edges="3/4to2/4 2/4to2/3 2/3to2/2 2/2to2/1 2/1to2/0 2/0to3/0"/> + </vehicle> + <vehicle id="car688" depart="688.00"> + <route edges="3/3to3/2 3/2to3/1 3/1to4/1 4/1to4/0"/> + </vehicle> + <vehicle id="car689" depart="689.00"> + <route edges="0/3to0/2 0/2to0/1 0/1to0/0"/> + </vehicle> + <vehicle id="car690" depart="690.00"> + <route edges="2/4to2/3 2/3to3/3 3/3to3/2 3/2to2/2"/> + </vehicle> + <vehicle id="car691" depart="691.00"> + <route edges="0/1to0/2 0/2to1/2 1/2to2/2 2/2to3/2 3/2to4/2"/> + </vehicle> + <vehicle id="car692" depart="692.00"> + <route edges="2/0to2/1 2/1to1/1 1/1to1/2"/> + </vehicle> + <vehicle id="car693" depart="693.00"> + <route edges="1/1to1/0 1/0to1/1 1/1to2/1 2/1to3/1 3/1to4/1 4/1to3/1"/> + </vehicle> + <vehicle id="car694" depart="694.00"> + <route edges="0/1to1/1 1/1to1/2 1/2to2/2 2/2to2/3"/> + </vehicle> + <vehicle id="car695" depart="695.00"> + <route edges="1/2to2/2 2/2to2/3 2/3to2/4 2/4to3/4 3/4to3/3"/> + </vehicle> + <vehicle id="car696" depart="696.00"> + <route edges="3/2to3/3 3/3to2/3 2/3to1/3 1/3to1/2"/> + </vehicle> + <vehicle id="car697" depart="697.00"> + <route edges="2/4to2/3 2/3to2/2 2/2to3/2 3/2to3/1 3/1to3/0"/> + </vehicle> + <vehicle id="car698" depart="698.00"> + <route edges="0/4to0/3 0/3to0/2 0/2to1/2 1/2to2/2 2/2to3/2 3/2to3/1 3/1to2/1"/> + </vehicle> + <vehicle id="car699" depart="699.00"> + <route edges="1/1to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to0/3"/> + </vehicle> + <vehicle id="car700" depart="700.00"> + <route edges="0/1to1/1 1/1to1/2 1/2to2/2 2/2to2/3 2/3to3/3 3/3to4/3 4/3to3/3"/> + </vehicle> + <vehicle id="car701" depart="701.00"> + <route edges="3/0to3/1 3/1to2/1 2/1to1/1"/> + </vehicle> + <vehicle id="car702" depart="702.00"> + <route edges="2/2to2/1 2/1to2/2 2/2to3/2 3/2to3/3 3/3to4/3 4/3to4/4"/> + </vehicle> + <vehicle id="car703" depart="703.00"> + <route edges="4/3to3/3 3/3to3/2 3/2to3/1 3/1to3/0"/> + </vehicle> + <vehicle id="car704" depart="704.00"> + <route edges="3/3to3/4 3/4to3/3 3/3to2/3 2/3to1/3 1/3to1/2"/> + </vehicle> + <vehicle id="car705" depart="705.00"> + <route edges="2/0to3/0 3/0to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to0/4 0/4to0/3"/> + </vehicle> + <vehicle id="car706" depart="706.00"> + <route edges="3/4to2/4 2/4to3/4 3/4to4/4 4/4to4/3 4/3to4/2 4/2to4/1"/> + </vehicle> + <vehicle id="car707" depart="707.00"> + <route edges="2/3to2/4 2/4to3/4 3/4to4/4 4/4to4/3 4/3to4/4"/> + </vehicle> + <vehicle id="car708" depart="708.00"> + <route edges="4/0to3/0 3/0to2/0 2/0to1/0 1/0to0/0 0/0to0/1 0/1to0/2 0/2to1/2"/> + </vehicle> + <vehicle id="car709" depart="709.00"> + <route edges="3/2to3/1 3/1to3/0 3/0to2/0 2/0to1/0 1/0to2/0"/> + </vehicle> + <vehicle id="car710" depart="710.00"> + <route edges="1/2to1/1 1/1to2/1 2/1to3/1 3/1to3/0"/> + </vehicle> + <vehicle id="car711" depart="711.00"> + <route edges="2/4to3/4 3/4to4/4 4/4to4/3 4/3to4/2 4/2to4/1 4/1to3/1"/> + </vehicle> + <vehicle id="car712" depart="712.00"> + <route edges="1/0to2/0 2/0to2/1 2/1to2/2 2/2to2/3 2/3to3/3 3/3to2/3"/> + </vehicle> + <vehicle id="car713" depart="713.00"> + <route edges="3/2to3/1 3/1to2/1 2/1to2/2 2/2to2/3 2/3to2/4"/> + </vehicle> + <vehicle id="car714" depart="714.00"> + <route edges="1/3to1/4 1/4to2/4 2/4to3/4 3/4to4/4 4/4to4/3 4/3to4/2"/> + </vehicle> + <vehicle id="car715" depart="715.00"> + <route edges="0/0to1/0 1/0to2/0 2/0to3/0 3/0to4/0 4/0to4/1 4/1to4/2 4/2to4/3"/> + </vehicle> + <vehicle id="car716" depart="716.00"> + <route edges="4/3to4/2 4/2to3/2 3/2to2/2 2/2to1/2 1/2to0/2 0/2to0/3 0/3to0/4"/> + </vehicle> + <vehicle id="car717" depart="717.00"> + <route edges="4/4to4/3 4/3to3/3 3/3to3/2 3/2to2/2 2/2to1/2"/> + </vehicle> + <vehicle id="car718" depart="718.00"> + <route edges="1/1to2/1 2/1to2/2 2/2to2/3 2/3to2/4 2/4to3/4"/> + </vehicle> + <vehicle id="car719" depart="719.00"> + <route edges="1/1to0/1 0/1to1/1 1/1to1/2 1/2to2/2 2/2to3/2 3/2to4/2 4/2to4/1"/> + </vehicle> + <vehicle id="car720" depart="720.00"> + <route edges="1/4to0/4 0/4to1/4 1/4to1/3 1/3to1/2 1/2to0/2"/> + </vehicle> + <vehicle id="car721" depart="721.00"> + <route edges="0/2to1/2 1/2to1/3 1/3to1/4 1/4to2/4 2/4to3/4 3/4to4/4 4/4to3/4"/> + </vehicle> + <vehicle id="car722" depart="722.00"> + <route edges="4/2to4/1 4/1to3/1 3/1to2/1 2/1to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to1/3"/> + </vehicle> + <vehicle id="car723" depart="723.00"> + <route edges="2/0to3/0 3/0to2/0 2/0to2/1 2/1to2/2 2/2to2/3 2/3to3/3"/> + </vehicle> + <vehicle id="car724" depart="724.00"> + <route edges="1/1to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to0/4 0/4to0/3"/> + </vehicle> + <vehicle id="car725" depart="725.00"> + <route edges="1/2to0/2 0/2to1/2 1/2to2/2 2/2to3/2 3/2to4/2 4/2to4/3"/> + </vehicle> + <vehicle id="car726" depart="726.00"> + <route edges="2/4to1/4 1/4to2/4 2/4to2/3 2/3to2/2 2/2to2/1 2/1to2/0 2/0to3/0"/> + </vehicle> + <vehicle id="car727" depart="727.00"> + <route edges="1/4to2/4 2/4to3/4 3/4to4/4"/> + </vehicle> + <vehicle id="car728" depart="728.00"> + <route edges="3/1to3/2 3/2to2/2 2/2to1/2 1/2to0/2"/> + </vehicle> + <vehicle id="car729" depart="729.00"> + <route edges="1/0to0/0 0/0to0/1 0/1to1/1 1/1to1/2 1/2to2/2 2/2to2/3 2/3to3/3 3/3to4/3"/> + </vehicle> + <vehicle id="car730" depart="730.00"> + <route edges="1/0to0/0 0/0to0/1 0/1to1/1 1/1to1/2 1/2to2/2 2/2to3/2 3/2to3/1"/> + </vehicle> + <vehicle id="car731" depart="731.00"> + <route edges="2/2to2/1 2/1to2/2 2/2to3/2 3/2to4/2 4/2to4/1"/> + </vehicle> + <vehicle id="car732" depart="732.00"> + <route edges="2/3to2/2 2/2to2/1 2/1to2/0 2/0to3/0 3/0to4/0"/> + </vehicle> + <vehicle id="car733" depart="733.00"> + <route edges="4/0to3/0 3/0to3/1 3/1to3/2 3/2to3/3 3/3to4/3 4/3to3/3"/> + </vehicle> + <vehicle id="car734" depart="734.00"> + <route edges="0/0to0/1 0/1to1/1 1/1to1/2 1/2to2/2 2/2to2/3"/> + </vehicle> + <vehicle id="car735" depart="735.00"> + <route edges="1/4to1/3 1/3to1/2 1/2to1/1 1/1to1/0 1/0to2/0 2/0to3/0 3/0to2/0"/> + </vehicle> + <vehicle id="car736" depart="736.00"> + <route edges="0/0to0/1 0/1to1/1 1/1to1/2 1/2to1/3 1/3to2/3 2/3to2/4"/> + </vehicle> + <vehicle id="car737" depart="737.00"> + <route edges="0/0to0/1 0/1to1/1 1/1to1/2 1/2to1/3 1/3to2/3 2/3to1/3"/> + </vehicle> + <vehicle id="car738" depart="738.00"> + <route edges="1/2to1/1 1/1to1/2 1/2to2/2 2/2to2/3 2/3to3/3 3/3to4/3 4/3to4/4 4/4to3/4"/> + </vehicle> + <vehicle id="car739" depart="739.00"> + <route edges="0/0to1/0 1/0to2/0 2/0to2/1 2/1to2/2 2/2to2/3 2/3to2/4 2/4to3/4 3/4to3/3"/> + </vehicle> + <vehicle id="car740" depart="740.00"> + <route edges="3/1to3/0 3/0to3/1 3/1to3/2 3/2to3/3 3/3to3/4 3/4to2/4"/> + </vehicle> + <vehicle id="car741" depart="741.00"> + <route edges="4/2to3/2 3/2to2/2 2/2to1/2 1/2to0/2 0/2to0/3 0/3to0/2"/> + </vehicle> + <vehicle id="car742" depart="742.00"> + <route edges="1/0to2/0 2/0to2/1 2/1to2/2 2/2to2/3 2/3to1/3"/> + </vehicle> + <vehicle id="car743" depart="743.00"> + <route edges="3/4to3/3 3/3to2/3 2/3to2/2 2/2to1/2 1/2to1/1"/> + </vehicle> + <vehicle id="car744" depart="744.00"> + <route edges="2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to1/3"/> + </vehicle> + <vehicle id="car745" depart="745.00"> + <route edges="2/0to2/1 2/1to2/2 2/2to2/3 2/3to3/3"/> + </vehicle> + <vehicle id="car746" depart="746.00"> + <route edges="4/4to4/3 4/3to3/3 3/3to3/2 3/2to2/2 2/2to2/1 2/1to1/1 1/1to1/2"/> + </vehicle> + <vehicle id="car747" depart="747.00"> + <route edges="3/3to2/3 2/3to1/3 1/3to1/2 1/2to0/2 0/2to1/2"/> + </vehicle> + <vehicle id="car748" depart="748.00"> + <route edges="2/1to1/1 1/1to1/2 1/2to2/2 2/2to2/3 2/3to3/3 3/3to3/4"/> + </vehicle> + <vehicle id="car749" depart="749.00"> + <route edges="2/3to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to4/0 4/0to4/1"/> + </vehicle> + <vehicle id="car750" depart="750.00"> + <route edges="2/2to1/2 1/2to1/1 1/1to0/1 0/1to0/2"/> + </vehicle> + <vehicle id="car751" depart="751.00"> + <route edges="0/2to0/1 0/1to0/2 0/2to1/2 1/2to2/2 2/2to3/2 3/2to4/2 4/2to4/3"/> + </vehicle> + <vehicle id="car752" depart="752.00"> + <route edges="4/1to4/2 4/2to3/2 3/2to2/2 2/2to2/3 2/3to3/3"/> + </vehicle> + <vehicle id="car753" depart="753.00"> + <route edges="0/1to0/0 0/0to1/0 1/0to2/0 2/0to3/0 3/0to4/0 4/0to4/1 4/1to4/2 4/2to4/3"/> + </vehicle> + <vehicle id="car754" depart="754.00"> + <route edges="1/3to1/2 1/2to1/3 1/3to2/3 2/3to3/3 3/3to4/3 4/3to4/2"/> + </vehicle> + <vehicle id="car755" depart="755.00"> + <route edges="3/2to3/1 3/1to3/0 3/0to2/0 2/0to1/0"/> + </vehicle> + <vehicle id="car756" depart="756.00"> + <route edges="0/2to0/3 0/3to0/4 0/4to1/4"/> + </vehicle> + <vehicle id="car757" depart="757.00"> + <route edges="1/1to2/1 2/1to2/2 2/2to2/3 2/3to2/4 2/4to3/4 3/4to4/4"/> + </vehicle> + <vehicle id="car758" depart="758.00"> + <route edges="2/0to1/0 1/0to2/0 2/0to3/0 3/0to4/0 4/0to4/1 4/1to4/2"/> + </vehicle> + <vehicle id="car759" depart="759.00"> + <route edges="0/4to0/3 0/3to0/4 0/4to1/4 1/4to2/4 2/4to3/4 3/4to4/4 4/4to4/3"/> + </vehicle> + <vehicle id="car760" depart="760.00"> + <route edges="4/3to4/4 4/4to3/4 3/4to2/4 2/4to1/4 1/4to0/4 0/4to0/3 0/3to0/2 0/2to0/1 0/1to1/1"/> + </vehicle> + <vehicle id="car761" depart="761.00"> + <route edges="1/3to2/3 2/3to3/3 3/3to3/2"/> + </vehicle> + <vehicle id="car762" depart="762.00"> + <route edges="4/3to4/2 4/2to4/1 4/1to4/0 4/0to3/0 3/0to2/0 2/0to1/0"/> + </vehicle> + <vehicle id="car763" depart="763.00"> + <route edges="3/3to3/2 3/2to2/2 2/2to2/1 2/1to1/1 1/1to0/1 0/1to0/0"/> + </vehicle> + <vehicle id="car764" depart="764.00"> + <route edges="1/2to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to2/4 2/4to3/4 3/4to4/4 4/4to4/3"/> + </vehicle> + <vehicle id="car765" depart="765.00"> + <route edges="2/2to2/1 2/1to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to0/4"/> + </vehicle> + <vehicle id="car766" depart="766.00"> + <route edges="4/3to3/3 3/3to3/2 3/2to2/2 2/2to2/1 2/1to1/1"/> + </vehicle> + <vehicle id="car767" depart="767.00"> + <route edges="0/2to0/3 0/3to1/3 1/3to1/2 1/2to1/1 1/1to1/0 1/0to2/0 2/0to3/0 3/0to2/0"/> + </vehicle> + <vehicle id="car768" depart="768.00"> + <route edges="3/3to4/3 4/3to4/2 4/2to3/2 3/2to3/1"/> + </vehicle> + <vehicle id="car769" depart="769.00"> + <route edges="0/2to0/3 0/3to0/4 0/4to1/4"/> + </vehicle> + <vehicle id="car770" depart="770.00"> + <route edges="3/2to4/2 4/2to3/2 3/2to2/2 2/2to1/2 1/2to1/3 1/3to1/2"/> + </vehicle> + <vehicle id="car771" depart="771.00"> + <route edges="0/3to0/2 0/2to0/1 0/1to0/0 0/0to0/1"/> + </vehicle> + <vehicle id="car772" depart="772.00"> + <route edges="2/3to2/4 2/4to2/3 2/3to2/2 2/2to2/1 2/1to2/0 2/0to2/1"/> + </vehicle> + <vehicle id="car773" depart="773.00"> + <route edges="0/1to0/0 0/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to0/4"/> + </vehicle> + <vehicle id="car774" depart="774.00"> + <route edges="0/2to1/2 1/2to1/3 1/3to1/4 1/4to2/4 2/4to2/3"/> + </vehicle> + <vehicle id="car775" depart="775.00"> + <route edges="1/2to2/2 2/2to2/1 2/1to2/0 2/0to1/0"/> + </vehicle> + <vehicle id="car776" depart="776.00"> + <route edges="0/2to0/3 0/3to1/3 1/3to2/3 2/3to3/3 3/3to4/3 4/3to4/2 4/2to3/2"/> + </vehicle> + <vehicle id="car777" depart="777.00"> + <route edges="4/2to3/2 3/2to3/3 3/3to4/3 4/3to4/4 4/4to3/4"/> + </vehicle> + <vehicle id="car778" depart="778.00"> + <route edges="2/3to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to2/0 2/0to1/0 1/0to0/0"/> + </vehicle> + <vehicle id="car779" depart="779.00"> + <route edges="1/3to0/3 0/3to1/3 1/3to2/3 2/3to2/2 2/2to2/1"/> + </vehicle> + <vehicle id="car780" depart="780.00"> + <route edges="2/0to3/0 3/0to2/0 2/0to2/1 2/1to2/2 2/2to1/2"/> + </vehicle> + <vehicle id="car781" depart="781.00"> + <route edges="1/1to2/1 2/1to3/1 3/1to3/0 3/0to3/1"/> + </vehicle> + <vehicle id="car782" depart="782.00"> + <route edges="2/4to2/3 2/3to1/3 1/3to1/2 1/2to1/1 1/1to1/0 1/0to2/0"/> + </vehicle> + <vehicle id="car783" depart="783.00"> + <route edges="4/3to3/3 3/3to2/3 2/3to1/3 1/3to1/4"/> + </vehicle> + <vehicle id="car784" depart="784.00"> + <route edges="3/0to2/0 2/0to2/1 2/1to2/2 2/2to2/3 2/3to3/3 3/3to3/4 3/4to2/4"/> + </vehicle> + <vehicle id="car785" depart="785.00"> + <route edges="3/4to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to4/0 4/0to4/1"/> + </vehicle> + <vehicle id="car786" depart="786.00"> + <route edges="4/3to4/4 4/4to3/4 3/4to2/4 2/4to1/4 1/4to0/4 0/4to0/3 0/3to1/3"/> + </vehicle> + <vehicle id="car787" depart="787.00"> + <route edges="1/3to1/2 1/2to1/3 1/3to2/3 2/3to3/3 3/3to4/3 4/3to3/3"/> + </vehicle> + <vehicle id="car788" depart="788.00"> + <route edges="1/2to2/2 2/2to3/2 3/2to3/1 3/1to4/1"/> + </vehicle> + <vehicle id="car789" depart="789.00"> + <route edges="2/2to2/1 2/1to2/2 2/2to2/3 2/3to2/4 2/4to1/4"/> + </vehicle> + <vehicle id="car790" depart="790.00"> + <route edges="1/1to2/1 2/1to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to2/4"/> + </vehicle> + <vehicle id="car791" depart="791.00"> + <route edges="3/4to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to2/0 2/0to1/0"/> + </vehicle> + <vehicle id="car792" depart="792.00"> + <route edges="0/3to0/4 0/4to1/4 1/4to2/4 2/4to2/3 2/3to3/3"/> + </vehicle> + <vehicle id="car793" depart="793.00"> + <route edges="2/4to2/3 2/3to2/2"/> + </vehicle> + <vehicle id="car794" depart="794.00"> + <route edges="3/1to3/2 3/2to3/3 3/3to2/3 2/3to2/4"/> + </vehicle> + <vehicle id="car795" depart="795.00"> + <route edges="4/3to4/2 4/2to3/2 3/2to3/1 3/1to2/1 2/1to2/2"/> + </vehicle> + <vehicle id="car796" depart="796.00"> + <route edges="3/2to2/2 2/2to2/1 2/1to2/0"/> + </vehicle> + <vehicle id="car797" depart="797.00"> + <route edges="1/2to2/2 2/2to3/2 3/2to3/1 3/1to4/1"/> + </vehicle> + <vehicle id="car798" depart="798.00"> + <route edges="3/3to4/3 4/3to3/3 3/3to3/2 3/2to2/2 2/2to1/2 1/2to0/2 0/2to0/1"/> + </vehicle> + <vehicle id="car799" depart="799.00"> + <route edges="4/4to4/3 4/3to3/3 3/3to3/2 3/2to2/2 2/2to1/2"/> + </vehicle> + <vehicle id="car800" depart="800.00"> + <route edges="2/0to2/1 2/1to2/2 2/2to2/3"/> + </vehicle> + <vehicle id="car801" depart="801.00"> + <route edges="2/3to2/2 2/2to2/3 2/3to3/3 3/3to4/3"/> + </vehicle> + <vehicle id="car802" depart="802.00"> + <route edges="1/4to0/4 0/4to1/4 1/4to2/4 2/4to3/4 3/4to4/4 4/4to4/3 4/3to4/2 4/2to4/1 4/1to4/2"/> + </vehicle> + <vehicle id="car803" depart="803.00"> + <route edges="2/3to1/3 1/3to1/2 1/2to1/1 1/1to1/0 1/0to2/0 2/0to3/0 3/0to4/0"/> + </vehicle> + <vehicle id="car804" depart="804.00"> + <route edges="0/2to0/3 0/3to1/3 1/3to2/3 2/3to3/3 3/3to3/2"/> + </vehicle> + <vehicle id="car805" depart="805.00"> + <route edges="3/1to2/1 2/1to2/2 2/2to2/3 2/3to2/4 2/4to1/4 1/4to0/4"/> + </vehicle> + <vehicle id="car806" depart="806.00"> + <route edges="3/0to4/0 4/0to3/0 3/0to2/0 2/0to1/0 1/0to0/0 0/0to0/1 0/1to0/2"/> + </vehicle> + <vehicle id="car807" depart="807.00"> + <route edges="4/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to3/2"/> + </vehicle> + <vehicle id="car808" depart="808.00"> + <route edges="2/0to1/0 1/0to1/1 1/1to1/2 1/2to2/2 2/2to2/3 2/3to3/3 3/3to2/3"/> + </vehicle> + <vehicle id="car809" depart="809.00"> + <route edges="4/3to4/4 4/4to3/4 3/4to2/4 2/4to2/3 2/3to2/2 2/2to2/1 2/1to1/1"/> + </vehicle> + <vehicle id="car810" depart="810.00"> + <route edges="0/0to0/1 0/1to0/2 0/2to1/2 1/2to0/2"/> + </vehicle> + <vehicle id="car811" depart="811.00"> + <route edges="0/0to1/0 1/0to0/0 0/0to0/1 0/1to0/2 0/2to0/3 0/3to0/2"/> + </vehicle> + <vehicle id="car812" depart="812.00"> + <route edges="2/0to3/0 3/0to4/0 4/0to4/1 4/1to4/2 4/2to4/3 4/3to4/2"/> + </vehicle> + <vehicle id="car813" depart="813.00"> + <route edges="0/3to0/4 0/4to1/4 1/4to2/4 2/4to3/4 3/4to4/4 4/4to4/3 4/3to3/3"/> + </vehicle> + <vehicle id="car814" depart="814.00"> + <route edges="2/1to2/2 2/2to2/1 2/1to1/1 1/1to0/1"/> + </vehicle> + <vehicle id="car815" depart="815.00"> + <route edges="2/1to2/0 2/0to2/1 2/1to3/1 3/1to4/1"/> + </vehicle> + <vehicle id="car816" depart="816.00"> + <route edges="3/4to2/4 2/4to1/4 1/4to0/4 0/4to0/3 0/3to0/4"/> + </vehicle> + <vehicle id="car817" depart="817.00"> + <route edges="3/1to3/2 3/2to3/1 3/1to3/0 3/0to2/0 2/0to1/0 1/0to0/0"/> + </vehicle> + <vehicle id="car818" depart="818.00"> + <route edges="4/4to3/4 3/4to2/4 2/4to2/3 2/3to2/2 2/2to2/1 2/1to1/1 1/1to2/1"/> + </vehicle> + <vehicle id="car819" depart="819.00"> + <route edges="1/0to0/0 0/0to0/1 0/1to0/2 0/2to0/3 0/3to0/4 0/4to1/4"/> + </vehicle> + <vehicle id="car820" depart="820.00"> + <route edges="2/3to2/4 2/4to3/4 3/4to4/4 4/4to4/3 4/3to4/2"/> + </vehicle> + <vehicle id="car821" depart="821.00"> + <route edges="1/0to1/1 1/1to2/1 2/1to2/0 2/0to3/0 3/0to4/0"/> + </vehicle> + <vehicle id="car822" depart="822.00"> + <route edges="2/1to1/1 1/1to0/1 0/1to0/0"/> + </vehicle> + <vehicle id="car823" depart="823.00"> + <route edges="2/4to2/3 2/3to2/2 2/2to2/1 2/1to2/0 2/0to1/0"/> + </vehicle> + <vehicle id="car824" depart="824.00"> + <route edges="3/2to2/2 2/2to1/2 1/2to1/1 1/1to0/1"/> + </vehicle> + <vehicle id="car825" depart="825.00"> + <route edges="4/1to3/1 3/1to3/0 3/0to2/0 2/0to1/0 1/0to1/1"/> + </vehicle> + <vehicle id="car826" depart="826.00"> + <route edges="1/2to0/2 0/2to1/2 1/2to2/2 2/2to3/2 3/2to4/2 4/2to4/1 4/1to3/1"/> + </vehicle> + <vehicle id="car827" depart="827.00"> + <route edges="2/3to1/3 1/3to1/2 1/2to1/1 1/1to1/0 1/0to2/0 2/0to3/0 3/0to4/0"/> + </vehicle> + <vehicle id="car828" depart="828.00"> + <route edges="4/0to3/0 3/0to2/0"/> + </vehicle> + <vehicle id="car829" depart="829.00"> + <route edges="3/4to3/3 3/3to3/2 3/2to2/2"/> + </vehicle> + <vehicle id="car830" depart="830.00"> + <route edges="1/2to2/2 2/2to3/2 3/2to3/1 3/1to3/0 3/0to2/0"/> + </vehicle> + <vehicle id="car831" depart="831.00"> + <route edges="1/0to1/1 1/1to2/1 2/1to3/1 3/1to4/1"/> + </vehicle> + <vehicle id="car832" depart="832.00"> + <route edges="2/2to2/3 2/3to2/2 2/2to2/1 2/1to2/0 2/0to3/0"/> + </vehicle> + <vehicle id="car833" depart="833.00"> + <route edges="0/4to0/3 0/3to0/4 0/4to1/4 1/4to2/4"/> + </vehicle> + <vehicle id="car834" depart="834.00"> + <route edges="1/0to1/1 1/1to2/1 2/1to3/1 3/1to3/0 3/0to3/1"/> + </vehicle> + <vehicle id="car835" depart="835.00"> + <route edges="4/4to4/3 4/3to3/3 3/3to2/3 2/3to2/4"/> + </vehicle> + <vehicle id="car836" depart="836.00"> + <route edges="2/2to2/1 2/1to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to0/4 0/4to0/3"/> + </vehicle> + <vehicle id="car837" depart="837.00"> + <route edges="0/1to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to0/4"/> + </vehicle> + <vehicle id="car838" depart="838.00"> + <route edges="0/0to0/1 0/1to0/2 0/2to0/3 0/3to1/3"/> + </vehicle> + <vehicle id="car839" depart="839.00"> + <route edges="4/0to3/0 3/0to2/0 2/0to2/1 2/1to2/2 2/2to2/1"/> + </vehicle> + <vehicle id="car840" depart="840.00"> + <route edges="0/2to0/3 0/3to0/2 0/2to0/1 0/1to0/0"/> + </vehicle> + <vehicle id="car841" depart="841.00"> + <route edges="1/0to0/0 0/0to0/1 0/1to1/1 1/1to2/1 2/1to2/2"/> + </vehicle> + <vehicle id="car842" depart="842.00"> + <route edges="2/3to2/2 2/2to1/2 1/2to0/2 0/2to0/3 0/3to0/4"/> + </vehicle> + <vehicle id="car843" depart="843.00"> + <route edges="0/3to0/4 0/4to1/4 1/4to2/4 2/4to3/4 3/4to3/3 3/3to3/4"/> + </vehicle> + <vehicle id="car844" depart="844.00"> + <route edges="3/4to3/3 3/3to2/3 2/3to1/3 1/3to1/4 1/4to1/3"/> + </vehicle> + <vehicle id="car845" depart="845.00"> + <route edges="3/4to3/3 3/3to2/3 2/3to2/2 2/2to1/2 1/2to1/1 1/1to0/1 0/1to0/2"/> + </vehicle> + <vehicle id="car846" depart="846.00"> + <route edges="4/4to4/3 4/3to3/3 3/3to2/3 2/3to1/3 1/3to0/3 0/3to0/2"/> + </vehicle> + <vehicle id="car847" depart="847.00"> + <route edges="1/2to2/2 2/2to2/3 2/3to2/4 2/4to3/4 3/4to4/4 4/4to4/3"/> + </vehicle> + <vehicle id="car848" depart="848.00"> + <route edges="2/1to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to2/3"/> + </vehicle> + <vehicle id="car849" depart="849.00"> + <route edges="3/4to3/3 3/3to2/3 2/3to2/2 2/2to2/1 2/1to2/0"/> + </vehicle> + <vehicle id="car850" depart="850.00"> + <route edges="1/1to1/2 1/2to1/3 1/3to1/4 1/4to2/4 2/4to3/4 3/4to2/4"/> + </vehicle> + <vehicle id="car851" depart="851.00"> + <route edges="2/4to2/3 2/3to1/3 1/3to1/4 1/4to0/4"/> + </vehicle> + <vehicle id="car852" depart="852.00"> + <route edges="1/0to0/0 0/0to0/1 0/1to0/2 0/2to0/3 0/3to0/4 0/4to0/3"/> + </vehicle> + <vehicle id="car853" depart="853.00"> + <route edges="0/1to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to0/4"/> + </vehicle> + <vehicle id="car854" depart="854.00"> + <route edges="4/0to4/1 4/1to4/2 4/2to4/3 4/3to4/4 4/4to3/4"/> + </vehicle> + <vehicle id="car855" depart="855.00"> + <route edges="3/1to3/2 3/2to2/2 2/2to1/2 1/2to0/2 0/2to1/2"/> + </vehicle> + <vehicle id="car856" depart="856.00"> + <route edges="4/1to3/1 3/1to2/1 2/1to1/1 1/1to0/1 0/1to0/2 0/2to0/3 0/3to1/3"/> + </vehicle> + <vehicle id="car857" depart="857.00"> + <route edges="4/1to3/1 3/1to2/1 2/1to1/1 1/1to2/1"/> + </vehicle> + <vehicle id="car858" depart="858.00"> + <route edges="3/2to2/2 2/2to2/3 2/3to2/4 2/4to3/4 3/4to4/4"/> + </vehicle> + <vehicle id="car859" depart="859.00"> + <route edges="2/2to2/1 2/1to2/2 2/2to2/3 2/3to2/4 2/4to1/4"/> + </vehicle> + <vehicle id="car860" depart="860.00"> + <route edges="1/2to1/1 1/1to1/0 1/0to2/0 2/0to3/0"/> + </vehicle> + <vehicle id="car861" depart="861.00"> + <route edges="4/1to4/0 4/0to3/0 3/0to2/0 2/0to1/0 1/0to0/0 0/0to0/1 0/1to0/2 0/2to1/2"/> + </vehicle> + <vehicle id="car862" depart="862.00"> + <route edges="4/2to4/3 4/3to4/4 4/4to3/4 3/4to2/4 2/4to1/4 1/4to1/3"/> + </vehicle> + <vehicle id="car863" depart="863.00"> + <route edges="4/3to4/2 4/2to3/2 3/2to2/2 2/2to1/2 1/2to1/3 1/3to1/4"/> + </vehicle> + <vehicle id="car864" depart="864.00"> + <route edges="0/0to0/1 0/1to1/1 1/1to1/2 1/2to2/2 2/2to2/3 2/3to3/3 3/3to3/2"/> + </vehicle> + <vehicle id="car865" depart="865.00"> + <route edges="1/4to0/4 0/4to0/3 0/3to0/2 0/2to0/1"/> + </vehicle> + <vehicle id="car866" depart="866.00"> + <route edges="2/3to1/3 1/3to1/2 1/2to1/1 1/1to1/0"/> + </vehicle> + <vehicle id="car867" depart="867.00"> + <route edges="2/1to1/1 1/1to0/1"/> + </vehicle> + <vehicle id="car868" depart="868.00"> + <route edges="1/2to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to2/4 2/4to3/4 3/4to4/4"/> + </vehicle> + <vehicle id="car869" depart="869.00"> + <route edges="1/3to2/3 2/3to3/3 3/3to3/2 3/2to3/1 3/1to3/2"/> + </vehicle> + <vehicle id="car870" depart="870.00"> + <route edges="0/3to0/4 0/4to1/4 1/4to2/4 2/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to4/0 4/0to4/1"/> + </vehicle> + <vehicle id="car871" depart="871.00"> + <route edges="2/1to2/0 2/0to1/0 1/0to0/0 0/0to0/1"/> + </vehicle> + <vehicle id="car872" depart="872.00"> + <route edges="4/3to4/2 4/2to3/2 3/2to3/1 3/1to2/1 2/1to1/1 1/1to0/1"/> + </vehicle> + <vehicle id="car873" depart="873.00"> + <route edges="3/1to4/1 4/1to3/1 3/1to2/1 2/1to1/1 1/1to0/1 0/1to0/2 0/2to0/3 0/3to1/3"/> + </vehicle> + <vehicle id="car874" depart="874.00"> + <route edges="3/0to4/0 4/0to3/0 3/0to2/0 2/0to1/0 1/0to0/0 0/0to0/1 0/1to0/2 0/2to0/3 0/3to0/4 0/4to1/4"/> + </vehicle> + <vehicle id="car875" depart="875.00"> + <route edges="4/2to4/3 4/3to4/2 4/2to3/2 3/2to2/2 2/2to1/2 1/2to1/1"/> + </vehicle> + <vehicle id="car876" depart="876.00"> + <route edges="3/1to2/1 2/1to1/1 1/1to1/2 1/2to0/2"/> + </vehicle> + <vehicle id="car877" depart="877.00"> + <route edges="1/4to1/3 1/3to2/3 2/3to3/3 3/3to4/3 4/3to4/2 4/2to3/2"/> + </vehicle> + <vehicle id="car878" depart="878.00"> + <route edges="1/3to0/3 0/3to1/3 1/3to2/3 2/3to3/3 3/3to3/2 3/2to3/1 3/1to4/1"/> + </vehicle> + <vehicle id="car879" depart="879.00"> + <route edges="3/2to2/2 2/2to2/1 2/1to2/0 2/0to1/0 1/0to0/0 0/0to0/1"/> + </vehicle> + <vehicle id="car880" depart="880.00"> + <route edges="1/1to1/2 1/2to2/2 2/2to3/2 3/2to3/1 3/1to3/2"/> + </vehicle> + <vehicle id="car881" depart="881.00"> + <route edges="0/0to0/1 0/1to1/1 1/1to2/1 2/1to3/1 3/1to4/1"/> + </vehicle> + <vehicle id="car882" depart="882.00"> + <route edges="2/0to3/0 3/0to2/0 2/0to1/0 1/0to0/0 0/0to0/1 0/1to0/2 0/2to0/3 0/3to1/3"/> + </vehicle> + <vehicle id="car883" depart="883.00"> + <route edges="0/2to0/1 0/1to0/2 0/2to0/3 0/3to0/4 0/4to1/4 1/4to2/4"/> + </vehicle> + <vehicle id="car884" depart="884.00"> + <route edges="3/2to3/3 3/3to2/3 2/3to1/3 1/3to0/3 0/3to0/2"/> + </vehicle> + <vehicle id="car885" depart="885.00"> + <route edges="1/3to1/2 1/2to1/1 1/1to2/1 2/1to3/1 3/1to4/1 4/1to4/0"/> + </vehicle> + <vehicle id="car886" depart="886.00"> + <route edges="0/3to1/3 1/3to2/3 2/3to3/3 3/3to3/2"/> + </vehicle> + <vehicle id="car887" depart="887.00"> + <route edges="3/3to2/3 2/3to1/3 1/3to0/3 0/3to1/3"/> + </vehicle> + <vehicle id="car888" depart="888.00"> + <route edges="4/4to4/3 4/3to3/3 3/3to3/4 3/4to2/4 2/4to1/4 1/4to0/4 0/4to0/3"/> + </vehicle> + <vehicle id="car889" depart="889.00"> + <route edges="2/3to1/3 1/3to1/2 1/2to1/1 1/1to1/0 1/0to0/0 0/0to0/1"/> + </vehicle> + <vehicle id="car890" depart="890.00"> + <route edges="0/4to1/4 1/4to2/4 2/4to2/3 2/3to2/2 2/2to2/1 2/1to2/0 2/0to2/1"/> + </vehicle> + <vehicle id="car891" depart="891.00"> + <route edges="1/4to2/4 2/4to3/4 3/4to4/4 4/4to4/3 4/3to4/4"/> + </vehicle> + <vehicle id="car892" depart="892.00"> + <route edges="3/1to2/1 2/1to1/1 1/1to1/2 1/2to1/3 1/3to0/3"/> + </vehicle> + <vehicle id="car893" depart="893.00"> + <route edges="0/1to1/1 1/1to2/1 2/1to3/1 3/1to4/1 4/1to4/2"/> + </vehicle> + <vehicle id="car894" depart="894.00"> + <route edges="4/3to4/2 4/2to3/2 3/2to2/2 2/2to2/1"/> + </vehicle> + <vehicle id="car895" depart="895.00"> + <route edges="0/3to0/4 0/4to1/4 1/4to2/4 2/4to2/3 2/3to2/2 2/2to2/1"/> + </vehicle> + <vehicle id="car896" depart="896.00"> + <route edges="4/2to4/3 4/3to3/3 3/3to2/3 2/3to1/3 1/3to0/3 0/3to1/3"/> + </vehicle> + <vehicle id="car897" depart="897.00"> + <route edges="4/0to4/1 4/1to4/2 4/2to3/2 3/2to2/2 2/2to2/3 2/3to3/3"/> + </vehicle> + <vehicle id="car898" depart="898.00"> + <route edges="1/4to1/3 1/3to1/2 1/2to1/1 1/1to2/1 2/1to3/1 3/1to3/2"/> + </vehicle> + <vehicle id="car899" depart="899.00"> + <route edges="3/3to3/2 3/2to2/2 2/2to2/1 2/1to1/1 1/1to0/1 0/1to0/0 0/0to1/0"/> + </vehicle> + <vehicle id="car900" depart="900.00"> + <route edges="3/0to3/1 3/1to3/2 3/2to2/2 2/2to2/3"/> + </vehicle> + <vehicle id="car901" depart="901.00"> + <route edges="2/0to3/0 3/0to3/1 3/1to3/2 3/2to2/2"/> + </vehicle> + <vehicle id="car902" depart="902.00"> + <route edges="3/0to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3"/> + </vehicle> + <vehicle id="car903" depart="903.00"> + <route edges="1/1to0/1 0/1to0/2 0/2to0/3 0/3to0/4 0/4to1/4 1/4to2/4 2/4to3/4 3/4to2/4"/> + </vehicle> + <vehicle id="car904" depart="904.00"> + <route edges="2/3to1/3 1/3to2/3 2/3to2/2 2/2to2/1 2/1to2/0 2/0to1/0"/> + </vehicle> + <vehicle id="car905" depart="905.00"> + <route edges="3/0to3/1 3/1to3/2 3/2to3/3 3/3to3/4 3/4to4/4"/> + </vehicle> + <vehicle id="car906" depart="906.00"> + <route edges="3/1to3/2 3/2to2/2 2/2to1/2 1/2to0/2 0/2to0/1"/> + </vehicle> + <vehicle id="car907" depart="907.00"> + <route edges="3/1to4/1 4/1to3/1 3/1to3/2 3/2to3/3"/> + </vehicle> + <vehicle id="car908" depart="908.00"> + <route edges="4/0to3/0 3/0to2/0 2/0to1/0 1/0to0/0 0/0to0/1 0/1to1/1"/> + </vehicle> + <vehicle id="car909" depart="909.00"> + <route edges="2/1to2/2 2/2to2/3 2/3to2/4 2/4to3/4"/> + </vehicle> + <vehicle id="car910" depart="910.00"> + <route edges="1/3to0/3 0/3to1/3 1/3to2/3 2/3to2/2 2/2to3/2 3/2to4/2"/> + </vehicle> + <vehicle id="car911" depart="911.00"> + <route edges="3/2to4/2 4/2to3/2 3/2to2/2 2/2to1/2 1/2to0/2 0/2to0/3 0/3to0/4"/> + </vehicle> + <vehicle id="car912" depart="912.00"> + <route edges="1/0to0/0 0/0to0/1 0/1to1/1 1/1to1/2 1/2to2/2 2/2to2/3 2/3to3/3 3/3to4/3 4/3to4/2"/> + </vehicle> + <vehicle id="car913" depart="913.00"> + <route edges="2/2to3/2 3/2to3/3 3/3to3/4"/> + </vehicle> + <vehicle id="car914" depart="914.00"> + <route edges="3/2to3/1 3/1to3/0 3/0to2/0 2/0to1/0 1/0to0/0"/> + </vehicle> + <vehicle id="car915" depart="915.00"> + <route edges="0/3to1/3 1/3to2/3 2/3to3/3 3/3to3/4"/> + </vehicle> + <vehicle id="car916" depart="916.00"> + <route edges="1/2to1/1 1/1to2/1 2/1to3/1 3/1to4/1 4/1to4/0"/> + </vehicle> + <vehicle id="car917" depart="917.00"> + <route edges="3/3to3/2 3/2to2/2 2/2to2/1 2/1to1/1 1/1to0/1 0/1to0/0"/> + </vehicle> + <vehicle id="car918" depart="918.00"> + <route edges="3/4to2/4 2/4to1/4 1/4to1/3 1/3to1/2 1/2to1/1"/> + </vehicle> + <vehicle id="car919" depart="919.00"> + <route edges="0/2to0/1 0/1to0/2 0/2to1/2 1/2to2/2 2/2to3/2 3/2to2/2"/> + </vehicle> + <vehicle id="car920" depart="920.00"> + <route edges="2/4to1/4 1/4to0/4 0/4to0/3 0/3to0/2 0/2to0/3"/> + </vehicle> + <vehicle id="car921" depart="921.00"> + <route edges="2/1to2/2 2/2to2/3 2/3to2/4 2/4to1/4 1/4to0/4"/> + </vehicle> + <vehicle id="car922" depart="922.00"> + <route edges="1/4to1/3 1/3to1/2 1/2to0/2"/> + </vehicle> + <vehicle id="car923" depart="923.00"> + <route edges="0/3to0/2 0/2to0/3 0/3to1/3 1/3to2/3 2/3to3/3"/> + </vehicle> + <vehicle id="car924" depart="924.00"> + <route edges="3/2to3/1 3/1to2/1 2/1to1/1 1/1to1/2"/> + </vehicle> + <vehicle id="car925" depart="925.00"> + <route edges="2/2to2/3 2/3to2/2 2/2to1/2 1/2to1/1 1/1to0/1 0/1to0/2"/> + </vehicle> + <vehicle id="car926" depart="926.00"> + <route edges="4/1to3/1 3/1to2/1 2/1to1/1 1/1to2/1"/> + </vehicle> + <vehicle id="car927" depart="927.00"> + <route edges="2/1to3/1 3/1to2/1 2/1to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to2/4"/> + </vehicle> + <vehicle id="car928" depart="928.00"> + <route edges="0/4to1/4 1/4to2/4 2/4to3/4 3/4to4/4 4/4to4/3 4/3to4/2 4/2to4/3"/> + </vehicle> + <vehicle id="car929" depart="929.00"> + <route edges="4/0to4/1 4/1to4/2 4/2to3/2 3/2to2/2 2/2to2/3 2/3to2/4"/> + </vehicle> + <vehicle id="car930" depart="930.00"> + <route edges="2/0to3/0 3/0to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to1/2"/> + </vehicle> + <vehicle id="car931" depart="931.00"> + <route edges="4/2to3/2 3/2to3/1 3/1to3/0 3/0to2/0 2/0to1/0 1/0to1/1"/> + </vehicle> + <vehicle id="car932" depart="932.00"> + <route edges="4/3to4/2 4/2to3/2 3/2to2/2 2/2to1/2 1/2to0/2 0/2to0/1"/> + </vehicle> + <vehicle id="car933" depart="933.00"> + <route edges="2/1to3/1 3/1to2/1 2/1to1/1 1/1to1/2 1/2to1/3"/> + </vehicle> + <vehicle id="car934" depart="934.00"> + <route edges="4/0to3/0 3/0to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to1/4"/> + </vehicle> + <vehicle id="car935" depart="935.00"> + <route edges="2/3to2/4 2/4to2/3 2/3to2/2 2/2to2/1 2/1to2/0 2/0to1/0 1/0to0/0 0/0to0/1"/> + </vehicle> + <vehicle id="car936" depart="936.00"> + <route edges="1/1to0/1 0/1to1/1 1/1to1/2 1/2to2/2 2/2to2/3 2/3to3/3"/> + </vehicle> + <vehicle id="car937" depart="937.00"> + <route edges="1/3to0/3 0/3to0/2 0/2to0/1 0/1to0/0 0/0to1/0 1/0to2/0 2/0to3/0 3/0to2/0"/> + </vehicle> + <vehicle id="car938" depart="938.00"> + <route edges="2/1to3/1 3/1to2/1 2/1to2/2 2/2to2/3 2/3to2/4 2/4to2/3"/> + </vehicle> + <vehicle id="car939" depart="939.00"> + <route edges="1/0to2/0 2/0to3/0 3/0to4/0 4/0to4/1 4/1to4/2 4/2to3/2"/> + </vehicle> + <vehicle id="car940" depart="940.00"> + <route edges="3/3to2/3 2/3to2/2 2/2to2/1 2/1to1/1 1/1to2/1"/> + </vehicle> + <vehicle id="car941" depart="941.00"> + <route edges="0/0to0/1 0/1to1/1 1/1to2/1 2/1to2/0 2/0to2/1"/> + </vehicle> + <vehicle id="car942" depart="942.00"> + <route edges="1/1to1/2 1/2to1/3 1/3to2/3"/> + </vehicle> + <vehicle id="car943" depart="943.00"> + <route edges="4/3to4/2 4/2to4/1 4/1to4/0 4/0to3/0 3/0to2/0 2/0to1/0 1/0to0/0 0/0to0/1"/> + </vehicle> + <vehicle id="car944" depart="944.00"> + <route edges="3/2to3/3 3/3to2/3 2/3to1/3 1/3to0/3 0/3to0/2"/> + </vehicle> + <vehicle id="car945" depart="945.00"> + <route edges="2/3to1/3 1/3to1/2 1/2to1/1 1/1to2/1"/> + </vehicle> + <vehicle id="car946" depart="946.00"> + <route edges="4/4to4/3 4/3to3/3 3/3to3/2 3/2to2/2"/> + </vehicle> + <vehicle id="car947" depart="947.00"> + <route edges="0/2to1/2 1/2to2/2 2/2to3/2 3/2to4/2 4/2to4/1"/> + </vehicle> + <vehicle id="car948" depart="948.00"> + <route edges="3/2to2/2 2/2to1/2 1/2to1/3 1/3to1/4 1/4to1/3"/> + </vehicle> + <vehicle id="car949" depart="949.00"> + <route edges="4/3to4/4 4/4to3/4 3/4to2/4 2/4to1/4 1/4to0/4 0/4to0/3 0/3to0/2 0/2to0/3"/> + </vehicle> + <vehicle id="car950" depart="950.00"> + <route edges="3/4to3/3 3/3to2/3 2/3to2/2 2/2to1/2 1/2to0/2 0/2to0/1"/> + </vehicle> + <vehicle id="car951" depart="951.00"> + <route edges="2/3to3/3 3/3to3/2 3/2to2/2 2/2to2/1 2/1to1/1"/> + </vehicle> + <vehicle id="car952" depart="952.00"> + <route edges="4/3to4/4 4/4to3/4 3/4to2/4 2/4to2/3 2/3to2/2 2/2to2/1 2/1to1/1 1/1to1/2"/> + </vehicle> + <vehicle id="car953" depart="953.00"> + <route edges="3/4to2/4 2/4to3/4 3/4to3/3 3/3to3/2 3/2to2/2"/> + </vehicle> + <vehicle id="car954" depart="954.00"> + <route edges="3/2to3/3 3/3to2/3 2/3to1/3 1/3to1/2"/> + </vehicle> + <vehicle id="car955" depart="955.00"> + <route edges="1/1to0/1 0/1to1/1 1/1to1/2 1/2to2/2 2/2to2/3 2/3to3/3 3/3to3/4"/> + </vehicle> + <vehicle id="car956" depart="956.00"> + <route edges="1/0to0/0 0/0to0/1 0/1to1/1 1/1to2/1 2/1to3/1"/> + </vehicle> + <vehicle id="car957" depart="957.00"> + <route edges="2/0to2/1 2/1to2/2 2/2to2/3 2/3to1/3"/> + </vehicle> + <vehicle id="car958" depart="958.00"> + <route edges="4/3to4/4 4/4to3/4 3/4to2/4 2/4to1/4 1/4to1/3 1/3to1/2 1/2to1/1 1/1to0/1"/> + </vehicle> + <vehicle id="car959" depart="959.00"> + <route edges="1/3to0/3 0/3to1/3 1/3to1/2 1/2to1/1"/> + </vehicle> + <vehicle id="car960" depart="960.00"> + <route edges="3/1to3/2 3/2to3/3 3/3to3/4 3/4to4/4"/> + </vehicle> + <vehicle id="car961" depart="961.00"> + <route edges="3/1to4/1 4/1to3/1 3/1to2/1 2/1to1/1 1/1to0/1 0/1to0/2"/> + </vehicle> + <vehicle id="car962" depart="962.00"> + <route edges="3/4to4/4 4/4to4/3 4/3to3/3 3/3to2/3 2/3to1/3 1/3to1/4"/> + </vehicle> + <vehicle id="car963" depart="963.00"> + <route edges="0/2to1/2 1/2to1/1 1/1to2/1"/> + </vehicle> + <vehicle id="car964" depart="964.00"> + <route edges="1/4to0/4 0/4to1/4 1/4to2/4 2/4to2/3 2/3to2/2 2/2to3/2"/> + </vehicle> + <vehicle id="car965" depart="965.00"> + <route edges="3/1to3/2 3/2to2/2 2/2to1/2 1/2to0/2"/> + </vehicle> + <vehicle id="car966" depart="966.00"> + <route edges="4/4to4/3 4/3to3/3 3/3to3/2 3/2to2/2 2/2to2/1 2/1to1/1 1/1to0/1 0/1to0/0"/> + </vehicle> + <vehicle id="car967" depart="967.00"> + <route edges="2/0to2/1 2/1to2/2"/> + </vehicle> + <vehicle id="car968" depart="968.00"> + <route edges="2/1to2/2 2/2to3/2 3/2to3/3 3/3to3/4 3/4to2/4"/> + </vehicle> + <vehicle id="car969" depart="969.00"> + <route edges="0/4to0/3 0/3to0/2 0/2to0/1 0/1to0/0 0/0to0/1"/> + </vehicle> + <vehicle id="car970" depart="970.00"> + <route edges="0/3to1/3 1/3to1/4 1/4to2/4 2/4to3/4 3/4to3/3"/> + </vehicle> + <vehicle id="car971" depart="971.00"> + <route edges="1/4to1/3 1/3to1/2 1/2to1/1 1/1to1/0 1/0to2/0 2/0to3/0 3/0to3/1"/> + </vehicle> + <vehicle id="car972" depart="972.00"> + <route edges="3/0to4/0 4/0to4/1 4/1to4/2 4/2to4/3 4/3to4/4 4/4to3/4 3/4to2/4 2/4to1/4"/> + </vehicle> + <vehicle id="car973" depart="973.00"> + <route edges="1/2to0/2 0/2to0/3 0/3to0/4 0/4to1/4 1/4to2/4 2/4to3/4 3/4to3/3"/> + </vehicle> + <vehicle id="car974" depart="974.00"> + <route edges="4/2to3/2 3/2to3/1 3/1to2/1 2/1to2/0"/> + </vehicle> + <vehicle id="car975" depart="975.00"> + <route edges="0/3to1/3 1/3to2/3 2/3to3/3 3/3to4/3 4/3to4/2 4/2to3/2"/> + </vehicle> + <vehicle id="car976" depart="976.00"> + <route edges="3/4to4/4 4/4to4/3 4/3to3/3 3/3to2/3 2/3to1/3 1/3to1/4"/> + </vehicle> + <vehicle id="car977" depart="977.00"> + <route edges="0/1to0/2 0/2to1/2 1/2to2/2 2/2to2/1 2/1to2/2"/> + </vehicle> + <vehicle id="car978" depart="978.00"> + <route edges="1/0to0/0 0/0to0/1 0/1to1/1 1/1to1/2 1/2to2/2 2/2to2/3 2/3to3/3"/> + </vehicle> + <vehicle id="car979" depart="979.00"> + <route edges="3/4to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to2/0 2/0to1/0"/> + </vehicle> + <vehicle id="car980" depart="980.00"> + <route edges="0/1to0/0 0/0to1/0 1/0to2/0 2/0to3/0 3/0to3/1 3/1to3/2"/> + </vehicle> + <vehicle id="car981" depart="981.00"> + <route edges="1/0to1/1 1/1to1/2 1/2to1/3"/> + </vehicle> + <vehicle id="car982" depart="982.00"> + <route edges="4/1to4/0 4/0to3/0 3/0to2/0 2/0to1/0 1/0to0/0 0/0to0/1 0/1to0/0"/> + </vehicle> + <vehicle id="car983" depart="983.00"> + <route edges="2/3to2/4 2/4to2/3 2/3to2/2 2/2to1/2 1/2to1/1 1/1to0/1 0/1to1/1"/> + </vehicle> + <vehicle id="car984" depart="984.00"> + <route edges="1/0to2/0 2/0to3/0 3/0to4/0 4/0to4/1 4/1to4/0"/> + </vehicle> + <vehicle id="car985" depart="985.00"> + <route edges="2/3to1/3 1/3to2/3 2/3to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to3/1"/> + </vehicle> + <vehicle id="car986" depart="986.00"> + <route edges="1/4to0/4 0/4to1/4 1/4to2/4 2/4to2/3 2/3to2/2"/> + </vehicle> + <vehicle id="car987" depart="987.00"> + <route edges="2/2to1/2 1/2to2/2 2/2to3/2 3/2to4/2 4/2to4/1"/> + </vehicle> + <vehicle id="car988" depart="988.00"> + <route edges="2/2to2/3 2/3to2/2 2/2to2/1 2/1to2/0 2/0to1/0"/> + </vehicle> + <vehicle id="car989" depart="989.00"> + <route edges="1/0to1/1 1/1to1/2 1/2to1/3 1/3to1/2"/> + </vehicle> + <vehicle id="car990" depart="990.00"> + <route edges="1/1to1/0 1/0to2/0 2/0to3/0 3/0to4/0 4/0to4/1 4/1to4/2"/> + </vehicle> + <vehicle id="car991" depart="991.00"> + <route edges="3/3to3/4 3/4to3/3 3/3to2/3 2/3to2/2 2/2to1/2 1/2to1/1 1/1to0/1 0/1to1/1"/> + </vehicle> + <vehicle id="car992" depart="992.00"> + <route edges="4/4to4/3 4/3to3/3 3/3to2/3 2/3to1/3"/> + </vehicle> + <vehicle id="car993" depart="993.00"> + <route edges="4/3to4/4 4/4to3/4 3/4to2/4 2/4to1/4 1/4to0/4 0/4to0/3 0/3to0/2"/> + </vehicle> + <vehicle id="car994" depart="994.00"> + <route edges="3/1to2/1 2/1to1/1 1/1to1/2 1/2to1/1"/> + </vehicle> + <vehicle id="car995" depart="995.00"> + <route edges="3/4to3/3 3/3to3/2 3/2to4/2 4/2to4/1"/> + </vehicle> + <vehicle id="car996" depart="996.00"> + <route edges="0/1to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to2/4 2/4to3/4 3/4to4/4 4/4to4/3"/> + </vehicle> + <vehicle id="car997" depart="997.00"> + <route edges="1/1to1/0 1/0to2/0 2/0to3/0 3/0to4/0 4/0to3/0"/> + </vehicle> + <vehicle id="car998" depart="998.00"> + <route edges="3/3to4/3 4/3to4/4 4/4to3/4 3/4to2/4 2/4to1/4 1/4to0/4"/> + </vehicle> + <vehicle id="car999" depart="999.00"> + <route edges="1/0to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to2/4 2/4to2/3"/> + </vehicle> + <vehicle id="car1000" depart="1000.00"> + <route edges="3/4to2/4 2/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to4/1"/> + </vehicle> + <vehicle id="car1001" depart="1001.00"> + <route edges="4/2to4/1 4/1to3/1 3/1to2/1 2/1to1/1 1/1to0/1 0/1to0/0"/> + </vehicle> + <vehicle id="car1002" depart="1002.00"> + <route edges="1/0to2/0 2/0to3/0 3/0to4/0 4/0to4/1 4/1to4/2 4/2to4/3 4/3to4/4 4/4to4/3"/> + </vehicle> + <vehicle id="car1003" depart="1003.00"> + <route edges="4/1to4/0 4/0to3/0 3/0to2/0 2/0to2/1 2/1to2/2 2/2to2/1"/> + </vehicle> + <vehicle id="car1004" depart="1004.00"> + <route edges="1/3to0/3 0/3to1/3 1/3to2/3 2/3to2/2 2/2to2/1"/> + </vehicle> + <vehicle id="car1005" depart="1005.00"> + <route edges="1/1to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to2/3 2/3to1/3"/> + </vehicle> + <vehicle id="car1006" depart="1006.00"> + <route edges="0/0to0/1 0/1to1/1 1/1to1/2 1/2to2/2 2/2to3/2 3/2to4/2 4/2to4/1"/> + </vehicle> + <vehicle id="car1007" depart="1007.00"> + <route edges="1/1to0/1 0/1to0/2 0/2to0/3 0/3to1/3"/> + </vehicle> + <vehicle id="car1008" depart="1008.00"> + <route edges="4/0to3/0 3/0to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to1/2"/> + </vehicle> + <vehicle id="car1009" depart="1009.00"> + <route edges="0/0to1/0 1/0to2/0 2/0to2/1 2/1to2/2 2/2to2/3 2/3to2/4 2/4to1/4"/> + </vehicle> + <vehicle id="car1010" depart="1010.00"> + <route edges="4/3to4/2 4/2to3/2 3/2to2/2 2/2to1/2 1/2to1/3 1/3to1/4 1/4to1/3"/> + </vehicle> + <vehicle id="car1011" depart="1011.00"> + <route edges="4/3to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to2/0 2/0to1/0"/> + </vehicle> + <vehicle id="car1012" depart="1012.00"> + <route edges="4/3to4/2 4/2to4/1 4/1to4/0 4/0to3/0 3/0to4/0"/> + </vehicle> + <vehicle id="car1013" depart="1013.00"> + <route edges="1/0to0/0 0/0to1/0 1/0to2/0 2/0to3/0 3/0to4/0 4/0to4/1 4/1to4/2 4/2to4/3 4/3to4/4"/> + </vehicle> + <vehicle id="car1014" depart="1014.00"> + <route edges="3/1to4/1 4/1to4/2 4/2to4/3"/> + </vehicle> + <vehicle id="car1015" depart="1015.00"> + <route edges="3/3to3/4 3/4to3/3 3/3to3/2 3/2to2/2 2/2to2/1 2/1to1/1 1/1to1/0"/> + </vehicle> + <vehicle id="car1016" depart="1016.00"> + <route edges="2/4to2/3 2/3to2/2 2/2to2/1 2/1to2/0 2/0to1/0 1/0to1/1"/> + </vehicle> + <vehicle id="car1017" depart="1017.00"> + <route edges="1/3to0/3 0/3to1/3 1/3to2/3 2/3to3/3 3/3to3/2 3/2to3/1 3/1to4/1"/> + </vehicle> + <vehicle id="car1018" depart="1018.00"> + <route edges="0/3to1/3 1/3to2/3 2/3to3/3 3/3to3/2 3/2to3/3"/> + </vehicle> + <vehicle id="car1019" depart="1019.00"> + <route edges="2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to2/4 2/4to3/4 3/4to4/4 4/4to4/3"/> + </vehicle> + <vehicle id="car1020" depart="1020.00"> + <route edges="4/3to4/4 4/4to3/4 3/4to2/4 2/4to1/4 1/4to0/4 0/4to0/3 0/3to0/2 0/2to0/1 0/1to0/0"/> + </vehicle> + <vehicle id="car1021" depart="1021.00"> + <route edges="2/4to3/4 3/4to4/4 4/4to4/3 4/3to4/2 4/2to4/1"/> + </vehicle> + <vehicle id="car1022" depart="1022.00"> + <route edges="4/3to4/4 4/4to3/4 3/4to2/4 2/4to1/4 1/4to1/3 1/3to1/2 1/2to1/1 1/1to1/0"/> + </vehicle> + <vehicle id="car1023" depart="1023.00"> + <route edges="2/3to3/3 3/3to4/3 4/3to4/2 4/2to4/3"/> + </vehicle> + <vehicle id="car1024" depart="1024.00"> + <route edges="0/4to0/3 0/3to0/2 0/2to1/2 1/2to2/2 2/2to3/2 3/2to4/2"/> + </vehicle> + <vehicle id="car1025" depart="1025.00"> + <route edges="1/1to2/1 2/1to2/2 2/2to3/2 3/2to3/3 3/3to4/3 4/3to4/4 4/4to3/4"/> + </vehicle> + <vehicle id="car1026" depart="1026.00"> + <route edges="1/0to0/0 0/0to0/1 0/1to1/1 1/1to2/1 2/1to3/1 3/1to4/1 4/1to4/0"/> + </vehicle> + <vehicle id="car1027" depart="1027.00"> + <route edges="0/2to1/2 1/2to2/2 2/2to3/2 3/2to2/2"/> + </vehicle> + <vehicle id="car1028" depart="1028.00"> + <route edges="0/0to0/1 0/1to0/2 0/2to0/3 0/3to0/4 0/4to1/4 1/4to2/4"/> + </vehicle> + <vehicle id="car1029" depart="1029.00"> + <route edges="3/2to3/3 3/3to4/3 4/3to4/4"/> + </vehicle> + <vehicle id="car1030" depart="1030.00"> + <route edges="4/1to4/0 4/0to3/0 3/0to2/0 2/0to2/1 2/1to2/2 2/2to2/1"/> + </vehicle> + <vehicle id="car1031" depart="1031.00"> + <route edges="1/4to2/4 2/4to2/3 2/3to2/2"/> + </vehicle> + <vehicle id="car1032" depart="1032.00"> + <route edges="4/1to3/1 3/1to2/1"/> + </vehicle> + <vehicle id="car1033" depart="1033.00"> + <route edges="3/1to3/2 3/2to3/1 3/1to3/0 3/0to2/0 2/0to1/0 1/0to0/0"/> + </vehicle> + <vehicle id="car1034" depart="1034.00"> + <route edges="0/2to0/1 0/1to0/0 0/0to1/0 1/0to2/0 2/0to3/0 3/0to4/0 4/0to3/0"/> + </vehicle> + <vehicle id="car1035" depart="1035.00"> + <route edges="4/3to4/2 4/2to3/2 3/2to2/2 2/2to1/2 1/2to0/2 0/2to0/1"/> + </vehicle> + <vehicle id="car1036" depart="1036.00"> + <route edges="1/0to0/0 0/0to0/1 0/1to0/2 0/2to0/3 0/3to0/4 0/4to1/4 1/4to2/4"/> + </vehicle> + <vehicle id="car1037" depart="1037.00"> + <route edges="4/1to4/2 4/2to3/2 3/2to2/2 2/2to1/2 1/2to0/2 0/2to1/2"/> + </vehicle> + <vehicle id="car1038" depart="1038.00"> + <route edges="2/4to2/3 2/3to2/2 2/2to2/1 2/1to2/0 2/0to3/0 3/0to2/0"/> + </vehicle> + <vehicle id="car1039" depart="1039.00"> + <route edges="2/2to1/2 1/2to1/1 1/1to0/1 0/1to0/0"/> + </vehicle> + <vehicle id="car1040" depart="1040.00"> + <route edges="4/3to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to2/0 2/0to1/0 1/0to0/0"/> + </vehicle> + <vehicle id="car1041" depart="1041.00"> + <route edges="4/1to4/2 4/2to4/3 4/3to4/4 4/4to3/4 3/4to2/4 2/4to1/4 1/4to0/4 0/4to1/4"/> + </vehicle> + <vehicle id="car1042" depart="1042.00"> + <route edges="0/3to0/2 0/2to1/2 1/2to1/1 1/1to0/1"/> + </vehicle> + <vehicle id="car1043" depart="1043.00"> + <route edges="1/0to2/0 2/0to3/0 3/0to3/1 3/1to4/1"/> + </vehicle> + <vehicle id="car1044" depart="1044.00"> + <route edges="2/3to3/3 3/3to4/3 4/3to4/2 4/2to4/1 4/1to4/0 4/0to3/0"/> + </vehicle> + <vehicle id="car1045" depart="1045.00"> + <route edges="3/1to2/1 2/1to2/2 2/2to2/3 2/3to2/4 2/4to3/4"/> + </vehicle> + <vehicle id="car1046" depart="1046.00"> + <route edges="1/0to0/0 0/0to0/1 0/1to1/1 1/1to1/2 1/2to2/2"/> + </vehicle> + <vehicle id="car1047" depart="1047.00"> + <route edges="0/2to0/3 0/3to1/3 1/3to2/3 2/3to3/3 3/3to4/3 4/3to4/2 4/2to4/1 4/1to4/0 4/0to3/0"/> + </vehicle> + <vehicle id="car1048" depart="1048.00"> + <route edges="1/3to0/3 0/3to0/2 0/2to0/1 0/1to0/0 0/0to1/0 1/0to2/0 2/0to1/0"/> + </vehicle> + <vehicle id="car1049" depart="1049.00"> + <route edges="0/2to1/2 1/2to1/3 1/3to2/3 2/3to2/2"/> + </vehicle> + <vehicle id="car1050" depart="1050.00"> + <route edges="1/0to1/1 1/1to2/1 2/1to3/1 3/1to4/1 4/1to4/0"/> + </vehicle> + <vehicle id="car1051" depart="1051.00"> + <route edges="1/4to1/3 1/3to1/2 1/2to2/2 2/2to2/1 2/1to2/0"/> + </vehicle> + <vehicle id="car1052" depart="1052.00"> + <route edges="1/2to1/1 1/1to2/1 2/1to3/1"/> + </vehicle> + <vehicle id="car1053" depart="1053.00"> + <route edges="0/1to1/1 1/1to1/2 1/2to2/2 2/2to2/3 2/3to3/3 3/3to2/3"/> + </vehicle> + <vehicle id="car1054" depart="1054.00"> + <route edges="3/1to3/0 3/0to2/0 2/0to1/0 1/0to0/0 0/0to0/1 0/1to0/2 0/2to0/3"/> + </vehicle> + <vehicle id="car1055" depart="1055.00"> + <route edges="4/3to4/4 4/4to3/4 3/4to2/4 2/4to2/3"/> + </vehicle> + <vehicle id="car1056" depart="1056.00"> + <route edges="2/3to2/4 2/4to3/4 3/4to4/4 4/4to4/3 4/3to4/2 4/2to4/1 4/1to4/0 4/0to3/0"/> + </vehicle> + <vehicle id="car1057" depart="1057.00"> + <route edges="3/4to3/3 3/3to2/3 2/3to2/2 2/2to2/1 2/1to2/0 2/0to3/0"/> + </vehicle> + <vehicle id="car1058" depart="1058.00"> + <route edges="2/3to1/3 1/3to2/3 2/3to3/3 3/3to4/3 4/3to4/2 4/2to4/1 4/1to3/1"/> + </vehicle> + <vehicle id="car1059" depart="1059.00"> + <route edges="2/1to3/1 3/1to4/1 4/1to4/0"/> + </vehicle> + <vehicle id="car1060" depart="1060.00"> + <route edges="2/2to1/2 1/2to0/2 0/2to0/3"/> + </vehicle> + <vehicle id="car1061" depart="1061.00"> + <route edges="3/4to2/4 2/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to3/2"/> + </vehicle> + <vehicle id="car1062" depart="1062.00"> + <route edges="3/0to2/0 2/0to1/0 1/0to0/0 0/0to0/1 0/1to0/2 0/2to0/3 0/3to0/4"/> + </vehicle> + <vehicle id="car1063" depart="1063.00"> + <route edges="3/3to2/3 2/3to2/2 2/2to2/1 2/1to2/0 2/0to1/0 1/0to0/0"/> + </vehicle> + <vehicle id="car1064" depart="1064.00"> + <route edges="3/4to2/4 2/4to1/4 1/4to0/4 0/4to0/3 0/3to1/3"/> + </vehicle> + <vehicle id="car1065" depart="1065.00"> + <route edges="2/0to3/0 3/0to4/0 4/0to4/1 4/1to4/2 4/2to4/3 4/3to4/4 4/4to4/3"/> + </vehicle> + <vehicle id="car1066" depart="1066.00"> + <route edges="2/1to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to2/4 2/4to3/4 3/4to4/4 4/4to4/3"/> + </vehicle> + <vehicle id="car1067" depart="1067.00"> + <route edges="3/0to3/1 3/1to3/2 3/2to3/3 3/3to3/4 3/4to4/4"/> + </vehicle> + <vehicle id="car1068" depart="1068.00"> + <route edges="1/2to0/2 0/2to1/2 1/2to2/2 2/2to3/2 3/2to4/2 4/2to3/2"/> + </vehicle> + <vehicle id="car1069" depart="1069.00"> + <route edges="4/2to4/1 4/1to3/1 3/1to2/1 2/1to1/1 1/1to0/1 0/1to0/2 0/2to0/1"/> + </vehicle> + <vehicle id="car1070" depart="1070.00"> + <route edges="3/3to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to2/0"/> + </vehicle> + <vehicle id="car1071" depart="1071.00"> + <route edges="2/2to3/2 3/2to3/1 3/1to2/1 2/1to2/0 2/0to3/0"/> + </vehicle> + <vehicle id="car1072" depart="1072.00"> + <route edges="2/0to3/0 3/0to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to0/4 0/4to0/3"/> + </vehicle> + <vehicle id="car1073" depart="1073.00"> + <route edges="4/3to3/3 3/3to4/3 4/3to4/2 4/2to4/1"/> + </vehicle> + <vehicle id="car1074" depart="1074.00"> + <route edges="2/3to3/3 3/3to2/3 2/3to1/3 1/3to0/3 0/3to0/2"/> + </vehicle> + <vehicle id="car1075" depart="1075.00"> + <route edges="1/3to2/3 2/3to2/2 2/2to2/1 2/1to2/0 2/0to2/1"/> + </vehicle> + <vehicle id="car1076" depart="1076.00"> + <route edges="1/4to2/4 2/4to2/3 2/3to2/2 2/2to1/2"/> + </vehicle> + <vehicle id="car1077" depart="1077.00"> + <route edges="2/4to3/4 3/4to2/4 2/4to1/4 1/4to0/4 0/4to0/3 0/3to0/2 0/2to0/1 0/1to0/0"/> + </vehicle> + <vehicle id="car1078" depart="1078.00"> + <route edges="2/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to4/1"/> + </vehicle> + <vehicle id="car1079" depart="1079.00"> + <route edges="0/1to0/2 0/2to1/2 1/2to2/2 2/2to3/2 3/2to4/2 4/2to4/1 4/1to4/2"/> + </vehicle> + <vehicle id="car1080" depart="1080.00"> + <route edges="1/3to1/4 1/4to1/3 1/3to1/2 1/2to1/1 1/1to2/1"/> + </vehicle> + <vehicle id="car1081" depart="1081.00"> + <route edges="4/1to4/2 4/2to4/1 4/1to4/0 4/0to3/0 3/0to2/0 2/0to1/0 1/0to0/0 0/0to1/0"/> + </vehicle> + <vehicle id="car1082" depart="1082.00"> + <route edges="3/4to3/3 3/3to2/3 2/3to1/3 1/3to0/3"/> + </vehicle> + <vehicle id="car1083" depart="1083.00"> + <route edges="3/1to4/1 4/1to3/1 3/1to2/1 2/1to1/1 1/1to0/1 0/1to0/2 0/2to1/2"/> + </vehicle> + <vehicle id="car1084" depart="1084.00"> + <route edges="4/1to3/1 3/1to2/1 2/1to1/1 1/1to0/1 0/1to0/2 0/2to0/3 0/3to1/3"/> + </vehicle> + <vehicle id="car1085" depart="1085.00"> + <route edges="4/3to4/4 4/4to3/4 3/4to2/4 2/4to2/3 2/3to2/2 2/2to2/1 2/1to2/0"/> + </vehicle> + <vehicle id="car1086" depart="1086.00"> + <route edges="3/4to4/4 4/4to4/3 4/3to3/3 3/3to3/2 3/2to2/2 2/2to1/2 1/2to1/1"/> + </vehicle> + <vehicle id="car1087" depart="1087.00"> + <route edges="2/0to3/0 3/0to4/0"/> + </vehicle> + <vehicle id="car1088" depart="1088.00"> + <route edges="3/4to3/3 3/3to3/2 3/2to4/2"/> + </vehicle> + <vehicle id="car1089" depart="1089.00"> + <route edges="3/3to2/3 2/3to3/3 3/3to4/3 4/3to4/2 4/2to4/1 4/1to3/1"/> + </vehicle> + <vehicle id="car1090" depart="1090.00"> + <route edges="3/4to3/3 3/3to3/2 3/2to2/2 2/2to3/2"/> + </vehicle> + <vehicle id="car1091" depart="1091.00"> + <route edges="0/1to0/0 0/0to1/0 1/0to2/0"/> + </vehicle> + <vehicle id="car1092" depart="1092.00"> + <route edges="4/2to4/1 4/1to3/1 3/1to3/2 3/2to2/2"/> + </vehicle> + <vehicle id="car1093" depart="1093.00"> + <route edges="1/2to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to2/4 2/4to3/4 3/4to3/3"/> + </vehicle> + <vehicle id="car1094" depart="1094.00"> + <route edges="0/3to0/4 0/4to0/3 0/3to0/2 0/2to0/1 0/1to0/0"/> + </vehicle> + <vehicle id="car1095" depart="1095.00"> + <route edges="1/0to1/1 1/1to2/1 2/1to3/1 3/1to4/1 4/1to3/1"/> + </vehicle> + <vehicle id="car1096" depart="1096.00"> + <route edges="1/0to0/0 0/0to1/0 1/0to2/0 2/0to3/0 3/0to4/0 4/0to4/1 4/1to4/2"/> + </vehicle> + <vehicle id="car1097" depart="1097.00"> + <route edges="1/2to1/3 1/3to1/4 1/4to2/4"/> + </vehicle> + <vehicle id="car1098" depart="1098.00"> + <route edges="1/0to0/0 0/0to0/1 0/1to1/1 1/1to1/2 1/2to2/2 2/2to2/3 2/3to3/3"/> + </vehicle> + <vehicle id="car1099" depart="1099.00"> + <route edges="4/3to4/4 4/4to4/3 4/3to4/2 4/2to4/1 4/1to4/0 4/0to4/1"/> + </vehicle> + <vehicle id="car1100" depart="1100.00"> + <route edges="3/0to4/0 4/0to3/0 3/0to3/1 3/1to3/2"/> + </vehicle> + <vehicle id="car1101" depart="1101.00"> + <route edges="0/0to1/0 1/0to2/0 2/0to3/0 3/0to3/1 3/1to3/2 3/2to3/3 3/3to3/4"/> + </vehicle> + <vehicle id="car1102" depart="1102.00"> + <route edges="3/3to3/2 3/2to3/1 3/1to3/0 3/0to2/0 2/0to1/0 1/0to0/0 0/0to0/1"/> + </vehicle> + <vehicle id="car1103" depart="1103.00"> + <route edges="4/2to3/2 3/2to3/1 3/1to3/0 3/0to4/0"/> + </vehicle> + <vehicle id="car1104" depart="1104.00"> + <route edges="2/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to2/0 2/0to1/0 1/0to0/0 0/0to0/1"/> + </vehicle> + <vehicle id="car1105" depart="1105.00"> + <route edges="1/2to0/2 0/2to0/3 0/3to0/4 0/4to1/4 1/4to2/4 2/4to3/4 3/4to2/4"/> + </vehicle> + <vehicle id="car1106" depart="1106.00"> + <route edges="1/3to0/3 0/3to1/3 1/3to2/3 2/3to3/3 3/3to4/3 4/3to4/4"/> + </vehicle> + <vehicle id="car1107" depart="1107.00"> + <route edges="1/2to0/2 0/2to1/2 1/2to2/2 2/2to2/1 2/1to3/1"/> + </vehicle> + <vehicle id="car1108" depart="1108.00"> + <route edges="3/1to3/2 3/2to3/3 3/3to3/4 3/4to3/3"/> + </vehicle> + <vehicle id="car1109" depart="1109.00"> + <route edges="2/0to1/0 1/0to0/0 0/0to0/1 0/1to0/2 0/2to0/3 0/3to0/2"/> + </vehicle> + <vehicle id="car1110" depart="1110.00"> + <route edges="4/0to3/0 3/0to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to1/3"/> + </vehicle> + <vehicle id="car1111" depart="1111.00"> + <route edges="3/0to4/0 4/0to4/1 4/1to4/2 4/2to4/3 4/3to4/4 4/4to3/4 3/4to2/4 2/4to3/4"/> + </vehicle> + <vehicle id="car1112" depart="1112.00"> + <route edges="0/2to0/1 0/1to0/2 0/2to0/3 0/3to0/4 0/4to1/4 1/4to2/4 2/4to3/4 3/4to4/4 4/4to4/3"/> + </vehicle> + <vehicle id="car1113" depart="1113.00"> + <route edges="4/1to4/2 4/2to3/2 3/2to2/2 2/2to1/2 1/2to2/2"/> + </vehicle> + <vehicle id="car1114" depart="1114.00"> + <route edges="0/4to0/3 0/3to1/3 1/3to2/3 2/3to3/3 3/3to3/2"/> + </vehicle> + <vehicle id="car1115" depart="1115.00"> + <route edges="4/1to4/2 4/2to4/3 4/3to4/4 4/4to3/4 3/4to2/4"/> + </vehicle> + <vehicle id="car1116" depart="1116.00"> + <route edges="4/4to4/3 4/3to3/3 3/3to3/2 3/2to2/2 2/2to1/2 1/2to0/2"/> + </vehicle> + <vehicle id="car1117" depart="1117.00"> + <route edges="0/1to0/0 0/0to1/0 1/0to2/0 2/0to2/1 2/1to2/2 2/2to3/2 3/2to2/2"/> + </vehicle> + <vehicle id="car1118" depart="1118.00"> + <route edges="2/3to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to2/0 2/0to1/0 1/0to2/0"/> + </vehicle> + <vehicle id="car1119" depart="1119.00"> + <route edges="3/2to3/3 3/3to3/2 3/2to2/2 2/2to2/1 2/1to1/1 1/1to1/0"/> + </vehicle> + <vehicle id="car1120" depart="1120.00"> + <route edges="4/2to3/2 3/2to3/1 3/1to3/0"/> + </vehicle> + <vehicle id="car1121" depart="1121.00"> + <route edges="2/2to2/3 2/3to3/3 3/3to4/3 4/3to4/2 4/2to4/1 4/1to4/0 4/0to3/0"/> + </vehicle> + <vehicle id="car1122" depart="1122.00"> + <route edges="1/0to1/1 1/1to0/1 0/1to0/2 0/2to1/2"/> + </vehicle> + <vehicle id="car1123" depart="1123.00"> + <route edges="3/4to2/4 2/4to3/4 3/4to3/3 3/3to3/2"/> + </vehicle> + <vehicle id="car1124" depart="1124.00"> + <route edges="1/0to1/1 1/1to2/1 2/1to3/1 3/1to3/2"/> + </vehicle> + <vehicle id="car1125" depart="1125.00"> + <route edges="1/4to0/4 0/4to1/4 1/4to2/4 2/4to3/4 3/4to3/3 3/3to3/2 3/2to4/2"/> + </vehicle> + <vehicle id="car1126" depart="1126.00"> + <route edges="1/3to0/3 0/3to1/3 1/3to2/3 2/3to3/3 3/3to4/3"/> + </vehicle> + <vehicle id="car1127" depart="1127.00"> + <route edges="1/2to2/2 2/2to2/1 2/1to2/0 2/0to3/0 3/0to4/0 4/0to4/1"/> + </vehicle> + <vehicle id="car1128" depart="1128.00"> + <route edges="0/2to0/1 0/1to1/1 1/1to2/1 2/1to3/1 3/1to4/1 4/1to4/2"/> + </vehicle> + <vehicle id="car1129" depart="1129.00"> + <route edges="1/4to2/4 2/4to2/3 2/3to2/2 2/2to1/2 1/2to2/2"/> + </vehicle> + <vehicle id="car1130" depart="1130.00"> + <route edges="0/1to1/1 1/1to1/0 1/0to2/0 2/0to3/0 3/0to4/0 4/0to4/1"/> + </vehicle> + <vehicle id="car1131" depart="1131.00"> + <route edges="0/3to1/3 1/3to1/2 1/2to1/1 1/1to0/1"/> + </vehicle> + <vehicle id="car1132" depart="1132.00"> + <route edges="2/0to2/1 2/1to2/2 2/2to2/3 2/3to3/3"/> + </vehicle> + <vehicle id="car1133" depart="1133.00"> + <route edges="4/2to3/2 3/2to3/1 3/1to2/1 2/1to2/2"/> + </vehicle> + <vehicle id="car1134" depart="1134.00"> + <route edges="1/3to1/2 1/2to2/2 2/2to3/2 3/2to3/1"/> + </vehicle> + <vehicle id="car1135" depart="1135.00"> + <route edges="3/3to3/4 3/4to3/3 3/3to3/2 3/2to2/2 2/2to2/1"/> + </vehicle> + <vehicle id="car1136" depart="1136.00"> + <route edges="3/0to3/1 3/1to3/0 3/0to2/0 2/0to1/0 1/0to1/1"/> + </vehicle> + <vehicle id="car1137" depart="1137.00"> + <route edges="3/0to3/1 3/1to3/0 3/0to2/0 2/0to1/0 1/0to0/0 0/0to0/1"/> + </vehicle> + <vehicle id="car1138" depart="1138.00"> + <route edges="1/0to0/0 0/0to0/1 0/1to1/1 1/1to1/2 1/2to2/2 2/2to2/3 2/3to3/3 3/3to3/2"/> + </vehicle> + <vehicle id="car1139" depart="1139.00"> + <route edges="0/2to1/2 1/2to1/1 1/1to1/0 1/0to2/0 2/0to3/0 3/0to2/0"/> + </vehicle> + <vehicle id="car1140" depart="1140.00"> + <route edges="4/3to4/4 4/4to3/4 3/4to2/4 2/4to1/4 1/4to2/4"/> + </vehicle> + <vehicle id="car1141" depart="1141.00"> + <route edges="0/1to0/2 0/2to1/2 1/2to1/1 1/1to1/0 1/0to2/0"/> + </vehicle> + <vehicle id="car1142" depart="1142.00"> + <route edges="1/4to1/3 1/3to0/3 0/3to0/2 0/2to0/1 0/1to0/0 0/0to1/0"/> + </vehicle> + <vehicle id="car1143" depart="1143.00"> + <route edges="1/3to1/2 1/2to1/3 1/3to1/4 1/4to2/4 2/4to3/4 3/4to4/4"/> + </vehicle> + <vehicle id="car1144" depart="1144.00"> + <route edges="1/0to2/0 2/0to3/0 3/0to3/1 3/1to3/2"/> + </vehicle> + <vehicle id="car1145" depart="1145.00"> + <route edges="3/1to4/1 4/1to3/1 3/1to2/1 2/1to1/1 1/1to1/2 1/2to1/3 1/3to2/3"/> + </vehicle> + <vehicle id="car1146" depart="1146.00"> + <route edges="0/3to1/3 1/3to1/4 1/4to2/4"/> + </vehicle> + <vehicle id="car1147" depart="1147.00"> + <route edges="2/4to2/3 2/3to2/2 2/2to2/1 2/1to2/0 2/0to1/0 1/0to0/0"/> + </vehicle> + <vehicle id="car1148" depart="1148.00"> + <route edges="3/4to3/3 3/3to2/3 2/3to2/2 2/2to1/2 1/2to2/2"/> + </vehicle> + <vehicle id="car1149" depart="1149.00"> + <route edges="1/2to2/2 2/2to3/2 3/2to3/3"/> + </vehicle> + <vehicle id="car1150" depart="1150.00"> + <route edges="4/1to4/2 4/2to4/3 4/3to4/4 4/4to4/3"/> + </vehicle> + <vehicle id="car1151" depart="1151.00"> + <route edges="1/3to2/3 2/3to3/3 3/3to4/3 4/3to4/2 4/2to3/2"/> + </vehicle> + <vehicle id="car1152" depart="1152.00"> + <route edges="1/4to0/4 0/4to0/3 0/3to0/2 0/2to0/1 0/1to0/0 0/0to1/0 1/0to2/0"/> + </vehicle> + <vehicle id="car1153" depart="1153.00"> + <route edges="4/3to3/3 3/3to4/3 4/3to4/2 4/2to4/1"/> + </vehicle> + <vehicle id="car1154" depart="1154.00"> + <route edges="2/0to2/1 2/1to1/1 1/1to1/2"/> + </vehicle> + <vehicle id="car1155" depart="1155.00"> + <route edges="3/2to3/3 3/3to2/3 2/3to1/3 1/3to0/3 0/3to1/3"/> + </vehicle> + <vehicle id="car1156" depart="1156.00"> + <route edges="1/0to0/0 0/0to0/1 0/1to0/2 0/2to0/3 0/3to0/4 0/4to1/4 1/4to1/3"/> + </vehicle> + <vehicle id="car1157" depart="1157.00"> + <route edges="3/1to2/1 2/1to1/1 1/1to0/1 0/1to0/0"/> + </vehicle> + <vehicle id="car1158" depart="1158.00"> + <route edges="4/1to4/0 4/0to3/0 3/0to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to0/2"/> + </vehicle> + <vehicle id="car1159" depart="1159.00"> + <route edges="2/3to1/3 1/3to1/2 1/2to1/1 1/1to0/1 0/1to0/2"/> + </vehicle> + <vehicle id="car1160" depart="1160.00"> + <route edges="4/4to4/3 4/3to3/3 3/3to3/2 3/2to3/1 3/1to2/1"/> + </vehicle> + <vehicle id="car1161" depart="1161.00"> + <route edges="3/1to2/1 2/1to1/1 1/1to0/1 0/1to0/0 0/0to1/0"/> + </vehicle> + <vehicle id="car1162" depart="1162.00"> + <route edges="1/4to2/4 2/4to2/3 2/3to2/2"/> + </vehicle> + <vehicle id="car1163" depart="1163.00"> + <route edges="2/1to3/1 3/1to2/1 2/1to1/1 1/1to0/1 0/1to0/2 0/2to0/3 0/3to0/4 0/4to1/4"/> + </vehicle> + <vehicle id="car1164" depart="1164.00"> + <route edges="1/3to0/3 0/3to1/3 1/3to2/3 2/3to3/3 3/3to3/2 3/2to3/1 3/1to2/1"/> + </vehicle> + <vehicle id="car1165" depart="1165.00"> + <route edges="3/1to2/1 2/1to1/1 1/1to1/2 1/2to1/1"/> + </vehicle> + <vehicle id="car1166" depart="1166.00"> + <route edges="3/4to4/4 4/4to3/4 3/4to2/4 2/4to1/4 1/4to0/4 0/4to0/3 0/3to0/2"/> + </vehicle> + <vehicle id="car1167" depart="1167.00"> + <route edges="3/2to3/1 3/1to2/1 2/1to1/1 1/1to0/1 0/1to0/2 0/2to0/3 0/3to0/4"/> + </vehicle> + <vehicle id="car1168" depart="1168.00"> + <route edges="1/2to1/1 1/1to1/2 1/2to2/2 2/2to3/2"/> + </vehicle> + <vehicle id="car1169" depart="1169.00"> + <route edges="2/2to2/1 2/1to1/1 1/1to0/1"/> + </vehicle> + <vehicle id="car1170" depart="1170.00"> + <route edges="4/2to4/3 4/3to3/3 3/3to2/3 2/3to1/3 1/3to1/4"/> + </vehicle> + <vehicle id="car1171" depart="1171.00"> + <route edges="0/0to0/1 0/1to1/1 1/1to2/1 2/1to3/1 3/1to3/0"/> + </vehicle> + <vehicle id="car1172" depart="1172.00"> + <route edges="4/2to3/2 3/2to3/3 3/3to3/4 3/4to4/4"/> + </vehicle> + <vehicle id="car1173" depart="1173.00"> + <route edges="3/1to3/0 3/0to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to0/4 0/4to0/3"/> + </vehicle> + <vehicle id="car1174" depart="1174.00"> + <route edges="0/2to1/2 1/2to2/2 2/2to2/3"/> + </vehicle> + <vehicle id="car1175" depart="1175.00"> + <route edges="3/2to3/1 3/1to2/1 2/1to1/1 1/1to0/1 0/1to0/2 0/2to0/3 0/3to0/2"/> + </vehicle> + <vehicle id="car1176" depart="1176.00"> + <route edges="4/4to4/3 4/3to3/3 3/3to3/2 3/2to2/2 2/2to1/2 1/2to2/2"/> + </vehicle> + <vehicle id="car1177" depart="1177.00"> + <route edges="1/0to0/0 0/0to0/1 0/1to0/2"/> + </vehicle> + <vehicle id="car1178" depart="1178.00"> + <route edges="1/2to2/2 2/2to2/3 2/3to3/3 3/3to3/4 3/4to2/4"/> + </vehicle> + <vehicle id="car1179" depart="1179.00"> + <route edges="1/3to1/2 1/2to2/2 2/2to3/2 3/2to4/2"/> + </vehicle> + <vehicle id="car1180" depart="1180.00"> + <route edges="0/2to1/2 1/2to2/2 2/2to2/3 2/3to3/3 3/3to2/3"/> + </vehicle> + <vehicle id="car1181" depart="1181.00"> + <route edges="0/1to0/2 0/2to1/2 1/2to1/1 1/1to1/0 1/0to2/0 2/0to3/0 3/0to4/0 4/0to4/1"/> + </vehicle> + <vehicle id="car1182" depart="1182.00"> + <route edges="3/1to3/0 3/0to2/0 2/0to1/0 1/0to0/0"/> + </vehicle> + <vehicle id="car1183" depart="1183.00"> + <route edges="1/4to0/4 0/4to1/4 1/4to2/4 2/4to2/3 2/3to2/2 2/2to2/1 2/1to2/0"/> + </vehicle> + <vehicle id="car1184" depart="1184.00"> + <route edges="0/2to1/2 1/2to1/3 1/3to1/4 1/4to2/4 2/4to3/4 3/4to3/3"/> + </vehicle> + <vehicle id="car1185" depart="1185.00"> + <route edges="4/3to4/2 4/2to3/2 3/2to2/2 2/2to1/2 1/2to1/1"/> + </vehicle> + <vehicle id="car1186" depart="1186.00"> + <route edges="1/4to2/4 2/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to4/0 4/0to4/1"/> + </vehicle> + <vehicle id="car1187" depart="1187.00"> + <route edges="3/3to4/3 4/3to4/2 4/2to4/1 4/1to4/0 4/0to3/0 3/0to4/0"/> + </vehicle> + <vehicle id="car1188" depart="1188.00"> + <route edges="3/3to4/3 4/3to3/3 3/3to2/3 2/3to1/3 1/3to0/3 0/3to0/4"/> + </vehicle> + <vehicle id="car1189" depart="1189.00"> + <route edges="3/1to4/1 4/1to3/1 3/1to2/1 2/1to1/1 1/1to0/1 0/1to1/1"/> + </vehicle> + <vehicle id="car1190" depart="1190.00"> + <route edges="4/3to3/3 3/3to2/3 2/3to1/3 1/3to0/3 0/3to0/4 0/4to1/4"/> + </vehicle> + <vehicle id="car1191" depart="1191.00"> + <route edges="2/0to3/0 3/0to2/0 2/0to2/1 2/1to2/2 2/2to2/3 2/3to2/4 2/4to2/3"/> + </vehicle> + <vehicle id="car1192" depart="1192.00"> + <route edges="3/4to2/4 2/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to3/2"/> + </vehicle> + <vehicle id="car1193" depart="1193.00"> + <route edges="1/0to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to2/4"/> + </vehicle> + <vehicle id="car1194" depart="1194.00"> + <route edges="1/4to0/4 0/4to0/3 0/3to0/2 0/2to0/1 0/1to0/0"/> + </vehicle> + <vehicle id="car1195" depart="1195.00"> + <route edges="4/3to4/4 4/4to3/4 3/4to2/4 2/4to1/4 1/4to0/4 0/4to0/3 0/3to1/3"/> + </vehicle> + <vehicle id="car1196" depart="1196.00"> + <route edges="4/2to4/1 4/1to3/1 3/1to2/1 2/1to1/1 1/1to0/1 0/1to0/2 0/2to0/3 0/3to0/4"/> + </vehicle> + <vehicle id="car1197" depart="1197.00"> + <route edges="2/0to2/1 2/1to1/1 1/1to0/1 0/1to0/2"/> + </vehicle> + <vehicle id="car1198" depart="1198.00"> + <route edges="3/3to3/2 3/2to2/2 2/2to2/3 2/3to2/4 2/4to1/4"/> + </vehicle> + <vehicle id="car1199" depart="1199.00"> + <route edges="3/1to3/0 3/0to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to2/3"/> + </vehicle> + <vehicle id="car1200" depart="1200.00"> + <route edges="0/2to1/2 1/2to2/2 2/2to3/2 3/2to3/1 3/1to2/1"/> + </vehicle> + <vehicle id="car1201" depart="1201.00"> + <route edges="1/1to2/1 2/1to1/1 1/1to1/2 1/2to1/3 1/3to2/3"/> + </vehicle> + <vehicle id="car1202" depart="1202.00"> + <route edges="3/1to3/2 3/2to3/3 3/3to3/4 3/4to2/4 2/4to1/4 1/4to2/4"/> + </vehicle> + <vehicle id="car1203" depart="1203.00"> + <route edges="4/0to3/0 3/0to2/0 2/0to2/1 2/1to2/2 2/2to2/3 2/3to2/4"/> + </vehicle> + <vehicle id="car1204" depart="1204.00"> + <route edges="4/4to4/3 4/3to3/3 3/3to3/2 3/2to2/2 2/2to2/1 2/1to1/1 1/1to0/1 0/1to1/1"/> + </vehicle> + <vehicle id="car1205" depart="1205.00"> + <route edges="3/0to4/0 4/0to3/0 3/0to2/0 2/0to1/0 1/0to0/0 0/0to0/1 0/1to0/2 0/2to0/3 0/3to0/4 0/4to1/4"/> + </vehicle> + <vehicle id="car1206" depart="1206.00"> + <route edges="4/1to3/1 3/1to2/1 2/1to1/1 1/1to0/1 0/1to0/2 0/2to0/1"/> + </vehicle> + <vehicle id="car1207" depart="1207.00"> + <route edges="4/3to4/4 4/4to3/4 3/4to2/4 2/4to1/4 1/4to0/4 0/4to0/3 0/3to0/2 0/2to0/1 0/1to1/1"/> + </vehicle> + <vehicle id="car1208" depart="1208.00"> + <route edges="1/1to1/0 1/0to2/0 2/0to3/0 3/0to4/0"/> + </vehicle> + <vehicle id="car1209" depart="1209.00"> + <route edges="2/0to2/1 2/1to1/1 1/1to1/2"/> + </vehicle> + <vehicle id="car1210" depart="1210.00"> + <route edges="2/1to2/2 2/2to3/2 3/2to3/3 3/3to3/4 3/4to2/4"/> + </vehicle> + <vehicle id="car1211" depart="1211.00"> + <route edges="2/1to2/0 2/0to3/0 3/0to4/0 4/0to4/1"/> + </vehicle> + <vehicle id="car1212" depart="1212.00"> + <route edges="2/1to2/0 2/0to1/0 1/0to0/0 0/0to0/1 0/1to0/2 0/2to0/3 0/3to0/4"/> + </vehicle> + <vehicle id="car1213" depart="1213.00"> + <route edges="0/3to0/2 0/2to0/1 0/1to0/0 0/0to1/0 1/0to2/0 2/0to2/1"/> + </vehicle> + <vehicle id="car1214" depart="1214.00"> + <route edges="2/3to2/4 2/4to2/3 2/3to2/2 2/2to2/1 2/1to2/0 2/0to1/0 1/0to0/0 0/0to0/1"/> + </vehicle> + <vehicle id="car1215" depart="1215.00"> + <route edges="0/2to1/2 1/2to1/3 1/3to1/4 1/4to2/4 2/4to3/4"/> + </vehicle> + <vehicle id="car1216" depart="1216.00"> + <route edges="3/0to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to0/3"/> + </vehicle> + <vehicle id="car1217" depart="1217.00"> + <route edges="2/2to2/3 2/3to2/2 2/2to1/2 1/2to1/1 1/1to0/1"/> + </vehicle> + <vehicle id="car1218" depart="1218.00"> + <route edges="1/4to1/3 1/3to1/2 1/2to1/1 1/1to0/1 0/1to1/1"/> + </vehicle> + <vehicle id="car1219" depart="1219.00"> + <route edges="2/3to2/4 2/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to2/0"/> + </vehicle> + <vehicle id="car1220" depart="1220.00"> + <route edges="3/2to3/1 3/1to2/1 2/1to1/1 1/1to0/1 0/1to0/2 0/2to0/3 0/3to0/4"/> + </vehicle> + <vehicle id="car1221" depart="1221.00"> + <route edges="3/3to2/3 2/3to2/2 2/2to1/2 1/2to1/1 1/1to1/0"/> + </vehicle> + <vehicle id="car1222" depart="1222.00"> + <route edges="1/3to2/3 2/3to2/4 2/4to3/4 3/4to4/4"/> + </vehicle> + <vehicle id="car1223" depart="1223.00"> + <route edges="4/3to4/4 4/4to3/4 3/4to2/4 2/4to2/3 2/3to2/2 2/2to1/2 1/2to2/2"/> + </vehicle> + <vehicle id="car1224" depart="1224.00"> + <route edges="0/4to0/3 0/3to0/2 0/2to1/2 1/2to2/2 2/2to3/2 3/2to3/1"/> + </vehicle> + <vehicle id="car1225" depart="1225.00"> + <route edges="3/2to3/1 3/1to2/1 2/1to1/1 1/1to0/1 0/1to0/2 0/2to0/3 0/3to0/2"/> + </vehicle> + <vehicle id="car1226" depart="1226.00"> + <route edges="2/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to2/0 2/0to1/0 1/0to2/0"/> + </vehicle> + <vehicle id="car1227" depart="1227.00"> + <route edges="4/2to4/3 4/3to4/2 4/2to4/1 4/1to4/0 4/0to3/0 3/0to2/0 2/0to1/0"/> + </vehicle> + <vehicle id="car1228" depart="1228.00"> + <route edges="2/1to2/2 2/2to3/2 3/2to3/3 3/3to3/4"/> + </vehicle> + <vehicle id="car1229" depart="1229.00"> + <route edges="3/2to3/1 3/1to2/1 2/1to1/1 1/1to0/1 0/1to0/2 0/2to0/3 0/3to0/2"/> + </vehicle> + <vehicle id="car1230" depart="1230.00"> + <route edges="2/0to3/0 3/0to4/0 4/0to4/1 4/1to4/2 4/2to4/3"/> + </vehicle> + <vehicle id="car1231" depart="1231.00"> + <route edges="0/3to1/3 1/3to2/3 2/3to2/2 2/2to2/1"/> + </vehicle> + <vehicle id="car1232" depart="1232.00"> + <route edges="2/3to1/3 1/3to1/2 1/2to1/1 1/1to0/1 0/1to0/2"/> + </vehicle> + <vehicle id="car1233" depart="1233.00"> + <route edges="4/2to4/3 4/3to4/2 4/2to4/1 4/1to4/0 4/0to3/0"/> + </vehicle> + <vehicle id="car1234" depart="1234.00"> + <route edges="4/2to4/1 4/1to4/0 4/0to3/0 3/0to2/0 2/0to1/0 1/0to1/1"/> + </vehicle> + <vehicle id="car1235" depart="1235.00"> + <route edges="0/3to1/3 1/3to1/4 1/4to2/4"/> + </vehicle> + <vehicle id="car1236" depart="1236.00"> + <route edges="2/4to3/4 3/4to4/4 4/4to4/3 4/3to4/2 4/2to4/1 4/1to4/0"/> + </vehicle> + <vehicle id="car1237" depart="1237.00"> + <route edges="2/2to2/3 2/3to2/4 2/4to1/4 1/4to2/4"/> + </vehicle> + <vehicle id="car1238" depart="1238.00"> + <route edges="4/4to3/4 3/4to4/4 4/4to4/3 4/3to4/2 4/2to4/1"/> + </vehicle> + <vehicle id="car1239" depart="1239.00"> + <route edges="3/3to2/3 2/3to2/2 2/2to1/2 1/2to1/1"/> + </vehicle> + <vehicle id="car1240" depart="1240.00"> + <route edges="2/1to2/2 2/2to1/2 1/2to0/2 0/2to0/3 0/3to1/3"/> + </vehicle> + <vehicle id="car1241" depart="1241.00"> + <route edges="2/0to3/0 3/0to3/1 3/1to3/2 3/2to2/2"/> + </vehicle> + <vehicle id="car1242" depart="1242.00"> + <route edges="3/0to3/1 3/1to2/1 2/1to1/1 1/1to0/1"/> + </vehicle> + <vehicle id="car1243" depart="1243.00"> + <route edges="3/0to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to2/2"/> + </vehicle> + <vehicle id="car1244" depart="1244.00"> + <route edges="1/3to2/3 2/3to3/3 3/3to3/2 3/2to3/1 3/1to3/0"/> + </vehicle> + <vehicle id="car1245" depart="1245.00"> + <route edges="4/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to2/1"/> + </vehicle> + <vehicle id="car1246" depart="1246.00"> + <route edges="4/3to4/2 4/2to3/2 3/2to2/2 2/2to2/3"/> + </vehicle> + <vehicle id="car1247" depart="1247.00"> + <route edges="3/1to4/1 4/1to3/1 3/1to2/1 2/1to1/1 1/1to1/2 1/2to1/3 1/3to1/2"/> + </vehicle> + <vehicle id="car1248" depart="1248.00"> + <route edges="3/2to4/2 4/2to4/1 4/1to4/0 4/0to3/0"/> + </vehicle> + <vehicle id="car1249" depart="1249.00"> + <route edges="1/2to1/3 1/3to2/3 2/3to3/3 3/3to4/3 4/3to4/2 4/2to4/1 4/1to4/0 4/0to3/0"/> + </vehicle> + <vehicle id="car1250" depart="1250.00"> + <route edges="3/4to2/4 2/4to2/3 2/3to2/2 2/2to3/2"/> + </vehicle> + <vehicle id="car1251" depart="1251.00"> + <route edges="0/1to0/0 0/0to0/1 0/1to0/2 0/2to0/3 0/3to0/4 0/4to0/3"/> + </vehicle> + <vehicle id="car1252" depart="1252.00"> + <route edges="3/3to2/3 2/3to1/3 1/3to0/3 0/3to0/4 0/4to1/4"/> + </vehicle> + <vehicle id="car1253" depart="1253.00"> + <route edges="0/1to0/0 0/0to0/1 0/1to0/2 0/2to0/3 0/3to0/4 0/4to1/4 1/4to2/4 2/4to3/4 3/4to3/3"/> + </vehicle> + <vehicle id="car1254" depart="1254.00"> + <route edges="0/3to0/2 0/2to1/2 1/2to2/2 2/2to3/2 3/2to4/2 4/2to4/1 4/1to3/1"/> + </vehicle> + <vehicle id="car1255" depart="1255.00"> + <route edges="3/2to4/2 4/2to3/2 3/2to2/2 2/2to2/3 2/3to2/4"/> + </vehicle> + <vehicle id="car1256" depart="1256.00"> + <route edges="1/1to2/1 2/1to2/2 2/2to3/2 3/2to3/3 3/3to3/4"/> + </vehicle> + <vehicle id="car1257" depart="1257.00"> + <route edges="3/1to3/0 3/0to4/0 4/0to4/1 4/1to4/2 4/2to4/3"/> + </vehicle> + <vehicle id="car1258" depart="1258.00"> + <route edges="2/0to1/0 1/0to1/1 1/1to2/1 2/1to2/2 2/2to3/2 3/2to3/3 3/3to4/3 4/3to4/2"/> + </vehicle> + <vehicle id="car1259" depart="1259.00"> + <route edges="4/4to3/4 3/4to2/4 2/4to1/4 1/4to1/3 1/3to1/2"/> + </vehicle> + <vehicle id="car1260" depart="1260.00"> + <route edges="2/3to2/4 2/4to1/4 1/4to0/4 0/4to0/3 0/3to0/2 0/2to0/1 0/1to0/0 0/0to1/0"/> + </vehicle> + <vehicle id="car1261" depart="1261.00"> + <route edges="1/2to0/2 0/2to0/1 0/1to0/0 0/0to1/0 1/0to2/0 2/0to3/0 3/0to2/0"/> + </vehicle> + <vehicle id="car1262" depart="1262.00"> + <route edges="3/3to3/4 3/4to4/4 4/4to4/3 4/3to4/2 4/2to4/1 4/1to3/1"/> + </vehicle> + <vehicle id="car1263" depart="1263.00"> + <route edges="3/4to4/4 4/4to4/3 4/3to4/2 4/2to3/2"/> + </vehicle> + <vehicle id="car1264" depart="1264.00"> + <route edges="3/2to2/2 2/2to2/1 2/1to2/0 2/0to3/0 3/0to4/0"/> + </vehicle> + <vehicle id="car1265" depart="1265.00"> + <route edges="4/3to4/4 4/4to3/4 3/4to2/4 2/4to2/3 2/3to2/2 2/2to1/2 1/2to2/2"/> + </vehicle> + <vehicle id="car1266" depart="1266.00"> + <route edges="1/0to1/1 1/1to2/1 2/1to3/1 3/1to3/2"/> + </vehicle> + <vehicle id="car1267" depart="1267.00"> + <route edges="2/2to3/2 3/2to2/2 2/2to1/2 1/2to1/3 1/3to1/4 1/4to2/4"/> + </vehicle> + <vehicle id="car1268" depart="1268.00"> + <route edges="2/1to1/1 1/1to1/2 1/2to1/3 1/3to2/3 2/3to2/4"/> + </vehicle> + <vehicle id="car1269" depart="1269.00"> + <route edges="1/2to0/2 0/2to0/3 0/3to1/3 1/3to1/4"/> + </vehicle> + <vehicle id="car1270" depart="1270.00"> + <route edges="3/2to2/2 2/2to1/2 1/2to0/2 0/2to0/3 0/3to0/4 0/4to1/4"/> + </vehicle> + <vehicle id="car1271" depart="1271.00"> + <route edges="0/4to1/4 1/4to1/3 1/3to1/2"/> + </vehicle> + <vehicle id="car1272" depart="1272.00"> + <route edges="0/1to1/1 1/1to2/1 2/1to2/2 2/2to3/2 3/2to4/2 4/2to4/3"/> + </vehicle> + <vehicle id="car1273" depart="1273.00"> + <route edges="1/4to0/4 0/4to1/4 1/4to2/4 2/4to3/4 3/4to3/3 3/3to3/4"/> + </vehicle> + <vehicle id="car1274" depart="1274.00"> + <route edges="1/3to1/2 1/2to1/1 1/1to1/0"/> + </vehicle> + <vehicle id="car1275" depart="1275.00"> + <route edges="2/2to2/3 2/3to2/2 2/2to2/1 2/1to2/0 2/0to3/0"/> + </vehicle> + <vehicle id="car1276" depart="1276.00"> + <route edges="1/1to1/0 1/0to1/1 1/1to1/2 1/2to2/2 2/2to2/3 2/3to3/3 3/3to2/3"/> + </vehicle> + <vehicle id="car1277" depart="1277.00"> + <route edges="2/3to1/3 1/3to1/4 1/4to2/4 2/4to3/4 3/4to4/4 4/4to4/3"/> + </vehicle> + <vehicle id="car1278" depart="1278.00"> + <route edges="0/0to0/1 0/1to1/1 1/1to2/1 2/1to3/1 3/1to3/0"/> + </vehicle> + <vehicle id="car1279" depart="1279.00"> + <route edges="1/3to1/2 1/2to2/2 2/2to3/2 3/2to4/2 4/2to4/1"/> + </vehicle> + <vehicle id="car1280" depart="1280.00"> + <route edges="4/3to3/3 3/3to3/4 3/4to2/4 2/4to1/4 1/4to2/4"/> + </vehicle> + <vehicle id="car1281" depart="1281.00"> + <route edges="2/1to2/0 2/0to1/0 1/0to0/0 0/0to0/1 0/1to0/2"/> + </vehicle> + <vehicle id="car1282" depart="1282.00"> + <route edges="4/1to4/2 4/2to4/1 4/1to4/0 4/0to3/0 3/0to2/0 2/0to1/0 1/0to2/0"/> + </vehicle> + <vehicle id="car1283" depart="1283.00"> + <route edges="1/0to0/0 0/0to0/1 0/1to1/1 1/1to1/2 1/2to2/2 2/2to2/3 2/3to3/3 3/3to4/3 4/3to4/2"/> + </vehicle> + <vehicle id="car1284" depart="1284.00"> + <route edges="2/3to2/2 2/2to2/1 2/1to2/0 2/0to1/0 1/0to0/0 0/0to0/1"/> + </vehicle> + <vehicle id="car1285" depart="1285.00"> + <route edges="0/2to0/1 0/1to1/1 1/1to2/1 2/1to3/1 3/1to3/0"/> + </vehicle> + <vehicle id="car1286" depart="1286.00"> + <route edges="3/3to3/2 3/2to4/2 4/2to4/1 4/1to3/1"/> + </vehicle> + <vehicle id="car1287" depart="1287.00"> + <route edges="2/0to3/0 3/0to2/0 2/0to1/0 1/0to0/0 0/0to0/1 0/1to0/2 0/2to0/3 0/3to0/2"/> + </vehicle> + <vehicle id="car1288" depart="1288.00"> + <route edges="3/0to4/0 4/0to4/1 4/1to4/2 4/2to4/3 4/3to3/3"/> + </vehicle> + <vehicle id="car1289" depart="1289.00"> + <route edges="3/2to4/2 4/2to4/3 4/3to4/4 4/4to3/4 3/4to2/4 2/4to1/4 1/4to0/4 0/4to1/4"/> + </vehicle> + <vehicle id="car1290" depart="1290.00"> + <route edges="2/1to2/2 2/2to2/3 2/3to1/3 1/3to1/4"/> + </vehicle> + <vehicle id="car1291" depart="1291.00"> + <route edges="1/2to0/2 0/2to0/1 0/1to0/0 0/0to1/0 1/0to2/0 2/0to1/0"/> + </vehicle> + <vehicle id="car1292" depart="1292.00"> + <route edges="3/0to3/1 3/1to2/1 2/1to1/1"/> + </vehicle> + <vehicle id="car1293" depart="1293.00"> + <route edges="0/0to1/0 1/0to2/0 2/0to2/1 2/1to3/1 3/1to3/0"/> + </vehicle> + <vehicle id="car1294" depart="1294.00"> + <route edges="2/3to1/3 1/3to1/2 1/2to1/1 1/1to1/0 1/0to2/0 2/0to3/0 3/0to4/0"/> + </vehicle> + <vehicle id="car1295" depart="1295.00"> + <route edges="3/0to2/0 2/0to2/1 2/1to2/2 2/2to2/3 2/3to3/3 3/3to2/3"/> + </vehicle> + <vehicle id="car1296" depart="1296.00"> + <route edges="2/4to1/4 1/4to2/4 2/4to3/4 3/4to3/3 3/3to3/2 3/2to2/2"/> + </vehicle> + <vehicle id="car1297" depart="1297.00"> + <route edges="0/2to0/1 0/1to0/2 0/2to1/2 1/2to2/2 2/2to3/2 3/2to4/2 4/2to4/3"/> + </vehicle> + <vehicle id="car1298" depart="1298.00"> + <route edges="0/3to0/2 0/2to0/3 0/3to1/3 1/3to2/3 2/3to3/3 3/3to3/4"/> + </vehicle> + <vehicle id="car1299" depart="1299.00"> + <route edges="3/3to3/2 3/2to2/2 2/2to2/1 2/1to2/0"/> + </vehicle> + <vehicle id="car1300" depart="1300.00"> + <route edges="2/1to3/1 3/1to2/1 2/1to2/2 2/2to2/3 2/3to1/3"/> + </vehicle> + <vehicle id="car1301" depart="1301.00"> + <route edges="0/3to1/3 1/3to2/3 2/3to2/2 2/2to2/1 2/1to2/0 2/0to1/0"/> + </vehicle> + <vehicle id="car1302" depart="1302.00"> + <route edges="4/3to4/2 4/2to3/2 3/2to3/3 3/3to3/4 3/4to2/4 2/4to1/4 1/4to0/4 0/4to0/3"/> + </vehicle> + <vehicle id="car1303" depart="1303.00"> + <route edges="1/4to1/3 1/3to2/3 2/3to3/3 3/3to4/3 4/3to3/3"/> + </vehicle> + <vehicle id="car1304" depart="1304.00"> + <route edges="0/3to0/4 0/4to0/3 0/3to0/2 0/2to0/1 0/1to0/0 0/0to0/1"/> + </vehicle> + <vehicle id="car1305" depart="1305.00"> + <route edges="4/3to3/3 3/3to2/3 2/3to1/3 1/3to0/3"/> + </vehicle> + <vehicle id="car1306" depart="1306.00"> + <route edges="1/3to2/3 2/3to2/2 2/2to2/1 2/1to2/0 2/0to3/0"/> + </vehicle> + <vehicle id="car1307" depart="1307.00"> + <route edges="3/0to4/0 4/0to3/0 3/0to2/0 2/0to2/1 2/1to2/2 2/2to3/2"/> + </vehicle> + <vehicle id="car1308" depart="1308.00"> + <route edges="0/4to1/4 1/4to1/3 1/3to1/2 1/2to1/1 1/1to1/0"/> + </vehicle> + <vehicle id="car1309" depart="1309.00"> + <route edges="3/4to4/4 4/4to4/3 4/3to4/2 4/2to4/1 4/1to4/0 4/0to3/0 3/0to2/0 2/0to1/0 1/0to2/0"/> + </vehicle> + <vehicle id="car1310" depart="1310.00"> + <route edges="1/0to1/1 1/1to2/1 2/1to2/2 2/2to3/2 3/2to3/3 3/3to4/3"/> + </vehicle> + <vehicle id="car1311" depart="1311.00"> + <route edges="0/2to1/2 1/2to2/2 2/2to3/2 3/2to3/3"/> + </vehicle> + <vehicle id="car1312" depart="1312.00"> + <route edges="2/2to1/2 1/2to1/3 1/3to1/4"/> + </vehicle> + <vehicle id="car1313" depart="1313.00"> + <route edges="0/3to1/3 1/3to2/3 2/3to3/3 3/3to3/2 3/2to3/1 3/1to2/1"/> + </vehicle> + <vehicle id="car1314" depart="1314.00"> + <route edges="0/3to0/2 0/2to0/1 0/1to0/0 0/0to1/0 1/0to2/0 2/0to3/0 3/0to2/0"/> + </vehicle> + <vehicle id="car1315" depart="1315.00"> + <route edges="4/2to3/2 3/2to2/2 2/2to1/2 1/2to1/3 1/3to1/2"/> + </vehicle> + <vehicle id="car1316" depart="1316.00"> + <route edges="1/3to1/2 1/2to2/2 2/2to2/1 2/1to1/1"/> + </vehicle> + <vehicle id="car1317" depart="1317.00"> + <route edges="0/0to0/1 0/1to1/1 1/1to2/1"/> + </vehicle> + <vehicle id="car1318" depart="1318.00"> + <route edges="1/1to1/0 1/0to1/1 1/1to2/1 2/1to2/2 2/2to3/2 3/2to4/2"/> + </vehicle> + <vehicle id="car1319" depart="1319.00"> + <route edges="0/3to1/3 1/3to2/3 2/3to3/3 3/3to3/2 3/2to3/3"/> + </vehicle> + <vehicle id="car1320" depart="1320.00"> + <route edges="2/3to2/4 2/4to2/3 2/3to2/2 2/2to2/1 2/1to2/0 2/0to1/0 1/0to1/1"/> + </vehicle> + <vehicle id="car1321" depart="1321.00"> + <route edges="2/4to3/4 3/4to4/4 4/4to4/3 4/3to4/2 4/2to4/1 4/1to4/0 4/0to3/0"/> + </vehicle> + <vehicle id="car1322" depart="1322.00"> + <route edges="4/0to4/1 4/1to4/2 4/2to4/3 4/3to4/4 4/4to3/4 3/4to2/4 2/4to1/4 1/4to0/4 0/4to0/3"/> + </vehicle> + <vehicle id="car1323" depart="1323.00"> + <route edges="2/3to2/2 2/2to1/2 1/2to1/1"/> + </vehicle> + <vehicle id="car1324" depart="1324.00"> + <route edges="4/1to4/0 4/0to3/0 3/0to2/0 2/0to1/0 1/0to0/0 0/0to0/1 0/1to0/2 0/2to0/3"/> + </vehicle> + <vehicle id="car1325" depart="1325.00"> + <route edges="0/2to0/3 0/3to0/2 0/2to0/1 0/1to0/0 0/0to1/0"/> + </vehicle> + <vehicle id="car1326" depart="1326.00"> + <route edges="2/2to2/3 2/3to2/2 2/2to1/2 1/2to1/1 1/1to0/1 0/1to0/0"/> + </vehicle> + <vehicle id="car1327" depart="1327.00"> + <route edges="2/4to1/4 1/4to2/4 2/4to2/3 2/3to2/2 2/2to2/1 2/1to2/0 2/0to2/1"/> + </vehicle> + <vehicle id="car1328" depart="1328.00"> + <route edges="2/4to2/3 2/3to3/3 3/3to4/3 4/3to4/2 4/2to3/2"/> + </vehicle> + <vehicle id="car1329" depart="1329.00"> + <route edges="4/4to4/3 4/3to3/3 3/3to3/2 3/2to3/1 3/1to2/1 2/1to3/1"/> + </vehicle> + <vehicle id="car1330" depart="1330.00"> + <route edges="3/3to3/4 3/4to2/4 2/4to1/4 1/4to1/3"/> + </vehicle> + <vehicle id="car1331" depart="1331.00"> + <route edges="1/1to1/0 1/0to1/1 1/1to1/2 1/2to2/2 2/2to2/3 2/3to3/3 3/3to3/2"/> + </vehicle> + <vehicle id="car1332" depart="1332.00"> + <route edges="2/1to3/1 3/1to2/1 2/1to2/2 2/2to2/3"/> + </vehicle> + <vehicle id="car1333" depart="1333.00"> + <route edges="2/0to1/0 1/0to1/1 1/1to1/2 1/2to2/2 2/2to2/3"/> + </vehicle> + <vehicle id="car1334" depart="1334.00"> + <route edges="3/4to2/4 2/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to2/0"/> + </vehicle> + <vehicle id="car1335" depart="1335.00"> + <route edges="1/0to0/0 0/0to0/1 0/1to1/1 1/1to1/2 1/2to2/2 2/2to3/2"/> + </vehicle> + <vehicle id="car1336" depart="1336.00"> + <route edges="4/3to3/3 3/3to3/2 3/2to3/1 3/1to2/1"/> + </vehicle> + <vehicle id="car1337" depart="1337.00"> + <route edges="2/2to1/2 1/2to1/3 1/3to1/4 1/4to0/4"/> + </vehicle> + <vehicle id="car1338" depart="1338.00"> + <route edges="4/2to3/2 3/2to3/3 3/3to3/4 3/4to2/4 2/4to1/4 1/4to0/4"/> + </vehicle> + <vehicle id="car1339" depart="1339.00"> + <route edges="0/1to0/2 0/2to0/3 0/3to0/4 0/4to1/4 1/4to2/4 2/4to3/4 3/4to4/4 4/4to3/4"/> + </vehicle> + <vehicle id="car1340" depart="1340.00"> + <route edges="2/2to3/2 3/2to3/3 3/3to3/4 3/4to4/4"/> + </vehicle> + <vehicle id="car1341" depart="1341.00"> + <route edges="3/4to4/4 4/4to4/3 4/3to3/3 3/3to3/2 3/2to2/2 2/2to1/2 1/2to1/1"/> + </vehicle> + <vehicle id="car1342" depart="1342.00"> + <route edges="2/3to2/2 2/2to2/1 2/1to2/0 2/0to1/0 1/0to0/0"/> + </vehicle> + <vehicle id="car1343" depart="1343.00"> + <route edges="3/1to2/1 2/1to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to1/3"/> + </vehicle> + <vehicle id="car1344" depart="1344.00"> + <route edges="3/1to2/1 2/1to2/2 2/2to2/3 2/3to2/4 2/4to3/4 3/4to4/4"/> + </vehicle> + <vehicle id="car1345" depart="1345.00"> + <route edges="2/2to3/2 3/2to2/2 2/2to1/2 1/2to1/3 1/3to1/4 1/4to2/4"/> + </vehicle> + <vehicle id="car1346" depart="1346.00"> + <route edges="1/4to0/4 0/4to1/4 1/4to2/4 2/4to3/4 3/4to4/4 4/4to4/3 4/3to4/2 4/2to4/1 4/1to3/1"/> + </vehicle> + <vehicle id="car1347" depart="1347.00"> + <route edges="0/4to0/3 0/3to0/2 0/2to0/1 0/1to0/0 0/0to1/0 1/0to0/0"/> + </vehicle> + <vehicle id="car1348" depart="1348.00"> + <route edges="0/2to0/3 0/3to1/3 1/3to1/2 1/2to1/1 1/1to1/0 1/0to2/0 2/0to3/0 3/0to4/0"/> + </vehicle> + <vehicle id="car1349" depart="1349.00"> + <route edges="1/4to0/4 0/4to1/4 1/4to2/4 2/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1"/> + </vehicle> + <vehicle id="car1350" depart="1350.00"> + <route edges="3/4to2/4 2/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1"/> + </vehicle> + <vehicle id="car1351" depart="1351.00"> + <route edges="1/1to0/1 0/1to0/2 0/2to0/3 0/3to0/4 0/4to1/4"/> + </vehicle> + <vehicle id="car1352" depart="1352.00"> + <route edges="3/4to4/4 4/4to4/3 4/3to4/2 4/2to4/1 4/1to4/0 4/0to3/0 3/0to2/0 2/0to1/0 1/0to0/0 0/0to1/0"/> + </vehicle> + <vehicle id="car1353" depart="1353.00"> + <route edges="0/1to0/2 0/2to1/2 1/2to1/3 1/3to2/3 2/3to3/3"/> + </vehicle> + <vehicle id="car1354" depart="1354.00"> + <route edges="0/4to1/4 1/4to2/4 2/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to3/1"/> + </vehicle> + <vehicle id="car1355" depart="1355.00"> + <route edges="0/1to0/2 0/2to1/2 1/2to1/3 1/3to2/3 2/3to3/3"/> + </vehicle> + <vehicle id="car1356" depart="1356.00"> + <route edges="1/0to1/1 1/1to2/1 2/1to2/2 2/2to3/2 3/2to3/3 3/3to4/3 4/3to4/2"/> + </vehicle> + <vehicle id="car1357" depart="1357.00"> + <route edges="0/0to1/0 1/0to2/0 2/0to2/1 2/1to2/2 2/2to3/2 3/2to3/1"/> + </vehicle> + <vehicle id="car1358" depart="1358.00"> + <route edges="3/1to2/1 2/1to1/1 1/1to1/2 1/2to1/3"/> + </vehicle> + <vehicle id="car1359" depart="1359.00"> + <route edges="0/2to0/3 0/3to1/3 1/3to2/3 2/3to2/2 2/2to2/1 2/1to2/0"/> + </vehicle> + <vehicle id="car1360" depart="1360.00"> + <route edges="4/4to4/3 4/3to4/2 4/2to4/1 4/1to3/1"/> + </vehicle> + <vehicle id="car1361" depart="1361.00"> + <route edges="1/0to0/0 0/0to0/1 0/1to0/2 0/2to0/3 0/3to0/4 0/4to1/4 1/4to2/4 2/4to3/4 3/4to4/4"/> + </vehicle> + <vehicle id="car1362" depart="1362.00"> + <route edges="2/4to3/4 3/4to3/3 3/3to4/3"/> + </vehicle> + <vehicle id="car1363" depart="1363.00"> + <route edges="3/4to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to2/0 2/0to1/0 1/0to1/1"/> + </vehicle> + <vehicle id="car1364" depart="1364.00"> + <route edges="3/1to2/1 2/1to1/1 1/1to1/2 1/2to1/1"/> + </vehicle> + <vehicle id="car1365" depart="1365.00"> + <route edges="2/1to2/2 2/2to2/3 2/3to2/4 2/4to2/3"/> + </vehicle> + <vehicle id="car1366" depart="1366.00"> + <route edges="1/1to1/2 1/2to1/3 1/3to1/4 1/4to2/4"/> + </vehicle> + <vehicle id="car1367" depart="1367.00"> + <route edges="0/3to0/2 0/2to1/2 1/2to1/1 1/1to0/1"/> + </vehicle> + <vehicle id="car1368" depart="1368.00"> + <route edges="4/0to4/1 4/1to4/2 4/2to3/2 3/2to2/2 2/2to2/3"/> + </vehicle> + <vehicle id="car1369" depart="1369.00"> + <route edges="2/0to3/0 3/0to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to0/4 0/4to0/3"/> + </vehicle> + <vehicle id="car1370" depart="1370.00"> + <route edges="3/0to2/0 2/0to1/0 1/0to0/0 0/0to0/1 0/1to0/2"/> + </vehicle> + <vehicle id="car1371" depart="1371.00"> + <route edges="0/3to1/3 1/3to1/4 1/4to2/4 2/4to3/4"/> + </vehicle> + <vehicle id="car1372" depart="1372.00"> + <route edges="3/4to4/4 4/4to4/3 4/3to4/2 4/2to4/1 4/1to4/2"/> + </vehicle> + <vehicle id="car1373" depart="1373.00"> + <route edges="3/3to3/2 3/2to3/1 3/1to3/0 3/0to4/0"/> + </vehicle> + <vehicle id="car1374" depart="1374.00"> + <route edges="0/1to0/2 0/2to1/2 1/2to1/3 1/3to2/3 2/3to1/3"/> + </vehicle> + <vehicle id="car1375" depart="1375.00"> + <route edges="1/1to1/2 1/2to1/3 1/3to1/4 1/4to2/4 2/4to3/4 3/4to2/4"/> + </vehicle> + <vehicle id="car1376" depart="1376.00"> + <route edges="2/4to2/3 2/3to2/2 2/2to3/2 3/2to4/2"/> + </vehicle> + <vehicle id="car1377" depart="1377.00"> + <route edges="3/3to2/3 2/3to3/3 3/3to3/2 3/2to3/1 3/1to4/1"/> + </vehicle> + <vehicle id="car1378" depart="1378.00"> + <route edges="4/0to4/1 4/1to4/2 4/2to3/2 3/2to2/2 2/2to1/2 1/2to1/3"/> + </vehicle> + <vehicle id="car1379" depart="1379.00"> + <route edges="4/1to4/0 4/0to3/0 3/0to2/0 2/0to2/1"/> + </vehicle> + <vehicle id="car1380" depart="1380.00"> + <route edges="1/0to2/0 2/0to2/1 2/1to2/2 2/2to3/2 3/2to2/2"/> + </vehicle> + <vehicle id="car1381" depart="1381.00"> + <route edges="3/3to4/3 4/3to4/4 4/4to3/4 3/4to2/4 2/4to1/4"/> + </vehicle> + <vehicle id="car1382" depart="1382.00"> + <route edges="0/3to0/4 0/4to0/3 0/3to0/2 0/2to0/1 0/1to0/0 0/0to0/1"/> + </vehicle> + <vehicle id="car1383" depart="1383.00"> + <route edges="0/4to1/4 1/4to2/4 2/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to2/1"/> + </vehicle> + <vehicle id="car1384" depart="1384.00"> + <route edges="1/2to0/2 0/2to0/1 0/1to0/0 0/0to1/0 1/0to2/0 2/0to3/0 3/0to4/0 4/0to4/1"/> + </vehicle> + <vehicle id="car1385" depart="1385.00"> + <route edges="2/0to3/0 3/0to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to1/3"/> + </vehicle> + <vehicle id="car1386" depart="1386.00"> + <route edges="1/2to1/3 1/3to2/3 2/3to3/3 3/3to3/2 3/2to3/1 3/1to3/2"/> + </vehicle> + <vehicle id="car1387" depart="1387.00"> + <route edges="3/3to2/3 2/3to2/2 2/2to2/1 2/1to2/0 2/0to3/0"/> + </vehicle> + <vehicle id="car1388" depart="1388.00"> + <route edges="3/3to3/4 3/4to3/3 3/3to2/3 2/3to2/2 2/2to1/2"/> + </vehicle> + <vehicle id="car1389" depart="1389.00"> + <route edges="2/1to2/0 2/0to2/1 2/1to3/1 3/1to4/1"/> + </vehicle> + <vehicle id="car1390" depart="1390.00"> + <route edges="0/4to1/4 1/4to1/3 1/3to1/2 1/2to1/1 1/1to1/0"/> + </vehicle> + <vehicle id="car1391" depart="1391.00"> + <route edges="2/0to2/1 2/1to2/2 2/2to1/2 1/2to1/3 1/3to2/3"/> + </vehicle> + <vehicle id="car1392" depart="1392.00"> + <route edges="2/3to2/4 2/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to4/1"/> + </vehicle> + <vehicle id="car1393" depart="1393.00"> + <route edges="3/2to2/2 2/2to1/2 1/2to0/2 0/2to0/3 0/3to0/4 0/4to1/4"/> + </vehicle> + <vehicle id="car1394" depart="1394.00"> + <route edges="4/3to4/4 4/4to4/3 4/3to4/2 4/2to4/1 4/1to4/0 4/0to3/0 3/0to2/0 2/0to1/0 1/0to0/0 0/0to0/1"/> + </vehicle> + <vehicle id="car1395" depart="1395.00"> + <route edges="4/2to4/3 4/3to4/2 4/2to3/2 3/2to3/1 3/1to2/1 2/1to1/1"/> + </vehicle> + <vehicle id="car1396" depart="1396.00"> + <route edges="0/2to0/1 0/1to1/1 1/1to1/0"/> + </vehicle> + <vehicle id="car1397" depart="1397.00"> + <route edges="1/4to2/4 2/4to3/4 3/4to4/4 4/4to3/4"/> + </vehicle> + <vehicle id="car1398" depart="1398.00"> + <route edges="3/0to2/0 2/0to2/1 2/1to2/2 2/2to3/2"/> + </vehicle> + <vehicle id="car1399" depart="1399.00"> + <route edges="3/4to2/4 2/4to2/3 2/3to2/2 2/2to1/2 1/2to1/3"/> + </vehicle> + <vehicle id="car1400" depart="1400.00"> + <route edges="0/1to0/0 0/0to0/1 0/1to0/2 0/2to0/3 0/3to0/4 0/4to1/4 1/4to2/4 2/4to2/3"/> + </vehicle> + <vehicle id="car1401" depart="1401.00"> + <route edges="0/4to1/4 1/4to2/4 2/4to3/4 3/4to4/4 4/4to4/3"/> + </vehicle> + <vehicle id="car1402" depart="1402.00"> + <route edges="3/3to3/4 3/4to2/4 2/4to1/4 1/4to0/4"/> + </vehicle> + <vehicle id="car1403" depart="1403.00"> + <route edges="2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to2/3 2/3to2/4 2/4to1/4"/> + </vehicle> + <vehicle id="car1404" depart="1404.00"> + <route edges="1/2to1/3 1/3to1/4 1/4to2/4 2/4to3/4 3/4to4/4"/> + </vehicle> + <vehicle id="car1405" depart="1405.00"> + <route edges="4/2to4/1 4/1to3/1 3/1to2/1 2/1to1/1 1/1to1/2 1/2to1/3 1/3to2/3"/> + </vehicle> + <vehicle id="car1406" depart="1406.00"> + <route edges="4/3to4/4 4/4to3/4 3/4to2/4 2/4to2/3 2/3to2/2 2/2to1/2 1/2to1/3"/> + </vehicle> + <vehicle id="car1407" depart="1407.00"> + <route edges="2/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to2/0 2/0to1/0 1/0to2/0"/> + </vehicle> + <vehicle id="car1408" depart="1408.00"> + <route edges="0/3to0/2 0/2to0/1"/> + </vehicle> + <vehicle id="car1409" depart="1409.00"> + <route edges="1/2to2/2 2/2to3/2 3/2to3/3 3/3to4/3 4/3to3/3"/> + </vehicle> + <vehicle id="car1410" depart="1410.00"> + <route edges="3/4to2/4 2/4to3/4 3/4to4/4 4/4to4/3 4/3to4/2"/> + </vehicle> + <vehicle id="car1411" depart="1411.00"> + <route edges="4/1to4/0 4/0to3/0 3/0to3/1 3/1to3/2 3/2to3/3 3/3to3/4 3/4to3/3"/> + </vehicle> + <vehicle id="car1412" depart="1412.00"> + <route edges="2/3to3/3 3/3to3/2 3/2to3/1 3/1to4/1"/> + </vehicle> + <vehicle id="car1413" depart="1413.00"> + <route edges="4/3to4/2 4/2to3/2 3/2to3/1 3/1to2/1 2/1to2/2"/> + </vehicle> + <vehicle id="car1414" depart="1414.00"> + <route edges="2/1to2/2 2/2to2/3 2/3to2/4 2/4to1/4"/> + </vehicle> + <vehicle id="car1415" depart="1415.00"> + <route edges="0/1to0/0 0/0to0/1 0/1to0/2 0/2to0/3 0/3to0/4"/> + </vehicle> + <vehicle id="car1416" depart="1416.00"> + <route edges="0/2to0/1 0/1to0/0 0/0to1/0 1/0to2/0 2/0to3/0 3/0to3/1"/> + </vehicle> + <vehicle id="car1417" depart="1417.00"> + <route edges="4/4to4/3 4/3to4/2 4/2to4/1 4/1to3/1 3/1to3/2"/> + </vehicle> + <vehicle id="car1418" depart="1418.00"> + <route edges="0/0to0/1 0/1to0/2 0/2to0/3 0/3to0/4 0/4to1/4 1/4to2/4 2/4to3/4 3/4to4/4"/> + </vehicle> + <vehicle id="car1419" depart="1419.00"> + <route edges="3/1to3/0 3/0to3/1 3/1to3/2 3/2to3/3 3/3to3/4 3/4to3/3"/> + </vehicle> + <vehicle id="car1420" depart="1420.00"> + <route edges="0/2to0/3 0/3to1/3 1/3to2/3 2/3to3/3 3/3to4/3 4/3to4/2 4/2to4/3"/> + </vehicle> + <vehicle id="car1421" depart="1421.00"> + <route edges="2/2to1/2 1/2to1/3 1/3to1/4 1/4to0/4"/> + </vehicle> + <vehicle id="car1422" depart="1422.00"> + <route edges="4/1to4/2 4/2to3/2 3/2to2/2 2/2to1/2 1/2to1/1"/> + </vehicle> + <vehicle id="car1423" depart="1423.00"> + <route edges="4/2to3/2 3/2to2/2 2/2to2/1"/> + </vehicle> + <vehicle id="car1424" depart="1424.00"> + <route edges="1/0to2/0 2/0to3/0 3/0to3/1 3/1to3/2 3/2to3/3"/> + </vehicle> + <vehicle id="car1425" depart="1425.00"> + <route edges="4/1to3/1 3/1to2/1 2/1to1/1 1/1to0/1"/> + </vehicle> + <vehicle id="car1426" depart="1426.00"> + <route edges="3/0to2/0 2/0to1/0 1/0to0/0 0/0to0/1 0/1to0/2 0/2to0/3 0/3to0/4 0/4to1/4"/> + </vehicle> + <vehicle id="car1427" depart="1427.00"> + <route edges="0/3to0/2 0/2to1/2 1/2to2/2 2/2to3/2 3/2to4/2 4/2to4/1"/> + </vehicle> + <vehicle id="car1428" depart="1428.00"> + <route edges="3/0to2/0 2/0to2/1 2/1to2/2 2/2to2/3 2/3to3/3 3/3to3/2"/> + </vehicle> + <vehicle id="car1429" depart="1429.00"> + <route edges="2/3to2/2 2/2to1/2 1/2to1/1 1/1to0/1 0/1to0/2"/> + </vehicle> + <vehicle id="car1430" depart="1430.00"> + <route edges="2/2to1/2 1/2to2/2 2/2to3/2 3/2to3/1 3/1to3/0 3/0to2/0"/> + </vehicle> + <vehicle id="car1431" depart="1431.00"> + <route edges="2/2to2/1 2/1to2/2 2/2to3/2 3/2to3/3 3/3to4/3 4/3to4/4 4/4to3/4"/> + </vehicle> + <vehicle id="car1432" depart="1432.00"> + <route edges="2/2to2/1 2/1to2/2 2/2to3/2 3/2to3/3 3/3to4/3 4/3to4/4 4/4to3/4"/> + </vehicle> + <vehicle id="car1433" depart="1433.00"> + <route edges="4/2to4/1 4/1to3/1 3/1to2/1 2/1to1/1 1/1to1/2 1/2to1/3"/> + </vehicle> + <vehicle id="car1434" depart="1434.00"> + <route edges="1/1to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to2/3 2/3to2/4 2/4to1/4"/> + </vehicle> + <vehicle id="car1435" depart="1435.00"> + <route edges="0/1to1/1 1/1to1/2 1/2to2/2 2/2to2/3 2/3to3/3 3/3to4/3"/> + </vehicle> + <vehicle id="car1436" depart="1436.00"> + <route edges="2/2to2/3 2/3to2/2 2/2to2/1 2/1to2/0 2/0to1/0"/> + </vehicle> + <vehicle id="car1437" depart="1437.00"> + <route edges="3/1to3/2 3/2to3/1 3/1to3/0 3/0to2/0 2/0to1/0 1/0to0/0"/> + </vehicle> + <vehicle id="car1438" depart="1438.00"> + <route edges="4/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to4/1"/> + </vehicle> + <vehicle id="car1439" depart="1439.00"> + <route edges="2/1to2/2 2/2to3/2 3/2to3/1 3/1to4/1"/> + </vehicle> + <vehicle id="car1440" depart="1440.00"> + <route edges="3/0to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to0/2"/> + </vehicle> + <vehicle id="car1441" depart="1441.00"> + <route edges="1/4to1/3 1/3to1/2 1/2to2/2 2/2to2/1"/> + </vehicle> + <vehicle id="car1442" depart="1442.00"> + <route edges="1/4to1/3 1/3to1/2 1/2to1/1 1/1to1/0 1/0to2/0 2/0to3/0 3/0to4/0 4/0to4/1"/> + </vehicle> + <vehicle id="car1443" depart="1443.00"> + <route edges="2/1to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to2/4"/> + </vehicle> + <vehicle id="car1444" depart="1444.00"> + <route edges="0/4to0/3 0/3to1/3 1/3to2/3 2/3to3/3 3/3to4/3 4/3to4/2"/> + </vehicle> + <vehicle id="car1445" depart="1445.00"> + <route edges="0/4to0/3 0/3to0/4 0/4to1/4 1/4to2/4 2/4to3/4 3/4to2/4"/> + </vehicle> + <vehicle id="car1446" depart="1446.00"> + <route edges="4/4to4/3 4/3to4/2 4/2to4/1 4/1to4/0 4/0to3/0"/> + </vehicle> + <vehicle id="car1447" depart="1447.00"> + <route edges="3/3to3/4 3/4to3/3 3/3to2/3 2/3to1/3 1/3to0/3"/> + </vehicle> + <vehicle id="car1448" depart="1448.00"> + <route edges="2/0to1/0 1/0to1/1 1/1to2/1 2/1to3/1 3/1to4/1"/> + </vehicle> + <vehicle id="car1449" depart="1449.00"> + <route edges="0/1to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to2/4 2/4to3/4 3/4to3/3"/> + </vehicle> + <vehicle id="car1450" depart="1450.00"> + <route edges="2/1to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to1/4"/> + </vehicle> + <vehicle id="car1451" depart="1451.00"> + <route edges="4/2to4/3 4/3to4/2 4/2to3/2 3/2to2/2 2/2to1/2 1/2to0/2"/> + </vehicle> + <vehicle id="car1452" depart="1452.00"> + <route edges="0/0to1/0 1/0to0/0 0/0to0/1 0/1to0/2 0/2to0/3 0/3to0/4"/> + </vehicle> + <vehicle id="car1453" depart="1453.00"> + <route edges="4/1to3/1 3/1to3/2 3/2to3/3 3/3to4/3 4/3to4/4"/> + </vehicle> + <vehicle id="car1454" depart="1454.00"> + <route edges="1/0to2/0 2/0to2/1 2/1to2/2 2/2to2/3 2/3to2/4 2/4to1/4"/> + </vehicle> + <vehicle id="car1455" depart="1455.00"> + <route edges="3/0to4/0 4/0to3/0 3/0to2/0 2/0to1/0 1/0to0/0"/> + </vehicle> + <vehicle id="car1456" depart="1456.00"> + <route edges="3/3to3/4 3/4to2/4 2/4to1/4 1/4to0/4"/> + </vehicle> + <vehicle id="car1457" depart="1457.00"> + <route edges="3/1to3/0 3/0to2/0 2/0to2/1 2/1to2/2 2/2to1/2"/> + </vehicle> + <vehicle id="car1458" depart="1458.00"> + <route edges="3/0to3/1 3/1to3/2 3/2to3/3 3/3to3/4 3/4to2/4 2/4to1/4 1/4to0/4 0/4to0/3"/> + </vehicle> + <vehicle id="car1459" depart="1459.00"> + <route edges="1/0to0/0 0/0to0/1 0/1to0/2 0/2to0/3 0/3to0/4 0/4to1/4 1/4to2/4 2/4to3/4 3/4to2/4"/> + </vehicle> + <vehicle id="car1460" depart="1460.00"> + <route edges="1/3to1/4 1/4to2/4 2/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to3/1"/> + </vehicle> + <vehicle id="car1461" depart="1461.00"> + <route edges="2/3to3/3 3/3to4/3 4/3to4/2 4/2to4/1 4/1to4/0 4/0to3/0"/> + </vehicle> + <vehicle id="car1462" depart="1462.00"> + <route edges="0/2to0/1 0/1to0/2 0/2to0/3 0/3to0/4 0/4to1/4"/> + </vehicle> + <vehicle id="car1463" depart="1463.00"> + <route edges="3/0to4/0 4/0to3/0 3/0to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/1"/> + </vehicle> + <vehicle id="car1464" depart="1464.00"> + <route edges="4/3to4/4 4/4to3/4 3/4to2/4 2/4to2/3 2/3to2/2 2/2to2/1 2/1to2/0 2/0to3/0"/> + </vehicle> + <vehicle id="car1465" depart="1465.00"> + <route edges="4/3to3/3 3/3to3/2 3/2to2/2"/> + </vehicle> + <vehicle id="car1466" depart="1466.00"> + <route edges="0/2to0/3 0/3to1/3 1/3to1/2 1/2to1/1 1/1to1/0 1/0to0/0"/> + </vehicle> + <vehicle id="car1467" depart="1467.00"> + <route edges="0/3to0/2 0/2to0/1"/> + </vehicle> + <vehicle id="car1468" depart="1468.00"> + <route edges="4/1to4/0 4/0to3/0 3/0to2/0 2/0to2/1 2/1to2/2 2/2to2/3 2/3to2/2"/> + </vehicle> + <vehicle id="car1469" depart="1469.00"> + <route edges="3/3to3/2 3/2to2/2 2/2to1/2 1/2to0/2 0/2to0/3"/> + </vehicle> + <vehicle id="car1470" depart="1470.00"> + <route edges="1/2to0/2 0/2to0/3 0/3to0/4 0/4to1/4"/> + </vehicle> + <vehicle id="car1471" depart="1471.00"> + <route edges="1/3to0/3 0/3to1/3 1/3to1/2 1/2to1/1 1/1to2/1"/> + </vehicle> + <vehicle id="car1472" depart="1472.00"> + <route edges="1/2to1/3 1/3to2/3 2/3to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to3/1"/> + </vehicle> + <vehicle id="car1473" depart="1473.00"> + <route edges="0/3to1/3 1/3to2/3 2/3to3/3 3/3to4/3 4/3to4/2 4/2to4/1 4/1to4/0 4/0to3/0"/> + </vehicle> + <vehicle id="car1474" depart="1474.00"> + <route edges="0/1to0/0 0/0to1/0 1/0to2/0 2/0to2/1 2/1to3/1 3/1to3/0"/> + </vehicle> + <vehicle id="car1475" depart="1475.00"> + <route edges="4/0to4/1 4/1to4/2 4/2to3/2 3/2to2/2 2/2to1/2 1/2to1/3 1/3to1/4"/> + </vehicle> + <vehicle id="car1476" depart="1476.00"> + <route edges="2/2to1/2 1/2to2/2 2/2to2/3 2/3to3/3 3/3to4/3 4/3to4/4"/> + </vehicle> + <vehicle id="car1477" depart="1477.00"> + <route edges="2/3to2/2 2/2to1/2 1/2to1/1"/> + </vehicle> + <vehicle id="car1478" depart="1478.00"> + <route edges="2/1to2/0 2/0to3/0 3/0to4/0 4/0to4/1 4/1to4/2 4/2to4/3 4/3to4/4"/> + </vehicle> + <vehicle id="car1479" depart="1479.00"> + <route edges="3/1to4/1 4/1to4/0 4/0to3/0 3/0to2/0 2/0to1/0 1/0to1/1"/> + </vehicle> + <vehicle id="car1480" depart="1480.00"> + <route edges="2/4to2/3 2/3to2/2 2/2to2/1 2/1to2/0 2/0to3/0 3/0to3/1"/> + </vehicle> + <vehicle id="car1481" depart="1481.00"> + <route edges="3/0to3/1 3/1to3/2 3/2to2/2 2/2to2/3 2/3to3/3"/> + </vehicle> + <vehicle id="car1482" depart="1482.00"> + <route edges="2/2to3/2 3/2to3/1 3/1to3/0 3/0to4/0"/> + </vehicle> + <vehicle id="car1483" depart="1483.00"> + <route edges="2/1to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to1/3"/> + </vehicle> + <vehicle id="car1484" depart="1484.00"> + <route edges="0/0to0/1 0/1to0/2 0/2to0/3 0/3to0/4 0/4to1/4 1/4to2/4 2/4to3/4 3/4to3/3"/> + </vehicle> + <vehicle id="car1485" depart="1485.00"> + <route edges="4/0to3/0 3/0to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to2/3"/> + </vehicle> + <vehicle id="car1486" depart="1486.00"> + <route edges="2/1to3/1 3/1to3/0 3/0to2/0 2/0to1/0 1/0to0/0 0/0to0/1"/> + </vehicle> + <vehicle id="car1487" depart="1487.00"> + <route edges="2/2to1/2 1/2to1/1 1/1to1/0 1/0to0/0 0/0to0/1"/> + </vehicle> + <vehicle id="car1488" depart="1488.00"> + <route edges="1/4to1/3 1/3to1/2 1/2to1/1 1/1to1/0 1/0to2/0 2/0to2/1"/> + </vehicle> + <vehicle id="car1489" depart="1489.00"> + <route edges="2/3to2/4 2/4to2/3 2/3to2/2 2/2to2/1 2/1to2/0 2/0to1/0"/> + </vehicle> + <vehicle id="car1490" depart="1490.00"> + <route edges="1/0to0/0 0/0to0/1 0/1to1/1 1/1to1/2 1/2to2/2 2/2to3/2 3/2to3/3"/> + </vehicle> + <vehicle id="car1491" depart="1491.00"> + <route edges="2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to2/4"/> + </vehicle> + <vehicle id="car1492" depart="1492.00"> + <route edges="1/2to1/1 1/1to1/0 1/0to2/0 2/0to3/0"/> + </vehicle> + <vehicle id="car1493" depart="1493.00"> + <route edges="1/1to2/1 2/1to2/2 2/2to2/3 2/3to3/3 3/3to3/2"/> + </vehicle> + <vehicle id="car1494" depart="1494.00"> + <route edges="4/2to3/2 3/2to3/3 3/3to3/4 3/4to2/4"/> + </vehicle> + <vehicle id="car1495" depart="1495.00"> + <route edges="3/1to3/2 3/2to2/2 2/2to1/2 1/2to1/3"/> + </vehicle> + <vehicle id="car1496" depart="1496.00"> + <route edges="3/2to4/2 4/2to4/3 4/3to4/4 4/4to3/4 3/4to2/4"/> + </vehicle> + <vehicle id="car1497" depart="1497.00"> + <route edges="2/0to3/0 3/0to4/0 4/0to4/1"/> + </vehicle> + <vehicle id="car1498" depart="1498.00"> + <route edges="1/0to1/1 1/1to1/2 1/2to2/2"/> + </vehicle> + <vehicle id="car1499" depart="1499.00"> + <route edges="1/2to1/1 1/1to1/0 1/0to2/0 2/0to3/0 3/0to2/0"/> + </vehicle> + <vehicle id="car1500" depart="1500.00"> + <route edges="0/1to0/2 0/2to1/2 1/2to1/3 1/3to2/3 2/3to1/3"/> + </vehicle> + <vehicle id="car1501" depart="1501.00"> + <route edges="1/0to1/1 1/1to1/2 1/2to1/3 1/3to0/3 0/3to0/2"/> + </vehicle> + <vehicle id="car1502" depart="1502.00"> + <route edges="1/2to1/1 1/1to1/2 1/2to2/2 2/2to3/2 3/2to3/1"/> + </vehicle> + <vehicle id="car1503" depart="1503.00"> + <route edges="3/2to3/3 3/3to3/2 3/2to2/2 2/2to2/1 2/1to1/1 1/1to1/2"/> + </vehicle> + <vehicle id="car1504" depart="1504.00"> + <route edges="0/4to1/4 1/4to2/4 2/4to2/3 2/3to2/2 2/2to2/1"/> + </vehicle> + <vehicle id="car1505" depart="1505.00"> + <route edges="2/1to3/1 3/1to3/2 3/2to3/3 3/3to4/3"/> + </vehicle> + <vehicle id="car1506" depart="1506.00"> + <route edges="1/3to1/4 1/4to2/4 2/4to3/4 3/4to4/4 4/4to4/3 4/3to4/2 4/2to4/1 4/1to4/0 4/0to3/0"/> + </vehicle> + <vehicle id="car1507" depart="1507.00"> + <route edges="4/3to4/2 4/2to3/2 3/2to3/1 3/1to2/1 2/1to1/1 1/1to0/1 0/1to1/1"/> + </vehicle> + <vehicle id="car1508" depart="1508.00"> + <route edges="3/3to3/4 3/4to2/4 2/4to1/4 1/4to0/4 0/4to0/3 0/3to0/2 0/2to0/1"/> + </vehicle> + <vehicle id="car1509" depart="1509.00"> + <route edges="4/0to3/0 3/0to3/1 3/1to3/2 3/2to3/3 3/3to3/4 3/4to3/3"/> + </vehicle> + <vehicle id="car1510" depart="1510.00"> + <route edges="3/4to4/4 4/4to4/3 4/3to3/3 3/3to2/3 2/3to1/3 1/3to0/3 0/3to0/4"/> + </vehicle> + <vehicle id="car1511" depart="1511.00"> + <route edges="3/3to3/2 3/2to2/2 2/2to2/1 2/1to1/1 1/1to2/1"/> + </vehicle> + <vehicle id="car1512" depart="1512.00"> + <route edges="3/3to3/2 3/2to2/2 2/2to2/1 2/1to2/0"/> + </vehicle> + <vehicle id="car1513" depart="1513.00"> + <route edges="3/2to4/2 4/2to3/2 3/2to3/1 3/1to2/1 2/1to1/1 1/1to0/1 0/1to0/0"/> + </vehicle> + <vehicle id="car1514" depart="1514.00"> + <route edges="2/2to3/2 3/2to3/3 3/3to4/3 4/3to4/4 4/4to3/4"/> + </vehicle> + <vehicle id="car1515" depart="1515.00"> + <route edges="3/0to3/1 3/1to2/1 2/1to1/1 1/1to0/1 0/1to0/2"/> + </vehicle> + <vehicle id="car1516" depart="1516.00"> + <route edges="1/2to0/2 0/2to0/1 0/1to0/0 0/0to1/0 1/0to2/0 2/0to3/0 3/0to4/0"/> + </vehicle> + <vehicle id="car1517" depart="1517.00"> + <route edges="1/0to2/0 2/0to3/0 3/0to4/0 4/0to4/1 4/1to4/2"/> + </vehicle> + <vehicle id="car1518" depart="1518.00"> + <route edges="4/1to3/1 3/1to2/1 2/1to1/1 1/1to1/0"/> + </vehicle> + <vehicle id="car1519" depart="1519.00"> + <route edges="0/3to0/4 0/4to1/4 1/4to2/4 2/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to3/1"/> + </vehicle> + <vehicle id="car1520" depart="1520.00"> + <route edges="1/3to1/2 1/2to1/1 1/1to1/0 1/0to0/0"/> + </vehicle> + <vehicle id="car1521" depart="1521.00"> + <route edges="1/2to1/3 1/3to0/3 0/3to0/4"/> + </vehicle> + <vehicle id="car1522" depart="1522.00"> + <route edges="3/3to4/3 4/3to4/2 4/2to4/1 4/1to4/0 4/0to3/0 3/0to2/0 2/0to1/0 1/0to0/0 0/0to0/1"/> + </vehicle> + <vehicle id="car1523" depart="1523.00"> + <route edges="0/1to0/2 0/2to1/2 1/2to1/3 1/3to2/3 2/3to3/3 3/3to3/4"/> + </vehicle> + <vehicle id="car1524" depart="1524.00"> + <route edges="1/4to1/3 1/3to1/2 1/2to0/2 0/2to1/2"/> + </vehicle> + <vehicle id="car1525" depart="1525.00"> + <route edges="0/4to1/4 1/4to1/3 1/3to1/2 1/2to0/2 0/2to1/2"/> + </vehicle> + <vehicle id="car1526" depart="1526.00"> + <route edges="3/0to2/0 2/0to2/1 2/1to3/1 3/1to3/2 3/2to4/2 4/2to4/3"/> + </vehicle> + <vehicle id="car1527" depart="1527.00"> + <route edges="4/4to4/3 4/3to4/2 4/2to4/1 4/1to4/0 4/0to3/0 3/0to3/1"/> + </vehicle> + <vehicle id="car1528" depart="1528.00"> + <route edges="0/1to1/1 1/1to1/0 1/0to2/0 2/0to3/0 3/0to4/0"/> + </vehicle> + <vehicle id="car1529" depart="1529.00"> + <route edges="3/1to4/1 4/1to4/2 4/2to4/3 4/3to4/4 4/4to3/4 3/4to2/4 2/4to1/4 1/4to0/4"/> + </vehicle> + <vehicle id="car1530" depart="1530.00"> + <route edges="0/3to1/3 1/3to2/3 2/3to3/3 3/3to4/3 4/3to4/2 4/2to4/1 4/1to4/2"/> + </vehicle> + <vehicle id="car1531" depart="1531.00"> + <route edges="2/2to1/2 1/2to2/2 2/2to2/1 2/1to2/0"/> + </vehicle> + <vehicle id="car1532" depart="1532.00"> + <route edges="1/2to2/2 2/2to3/2 3/2to3/1 3/1to4/1"/> + </vehicle> + <vehicle id="car1533" depart="1533.00"> + <route edges="1/3to2/3 2/3to3/3 3/3to3/2 3/2to3/3"/> + </vehicle> + <vehicle id="car1534" depart="1534.00"> + <route edges="1/2to1/3 1/3to1/4 1/4to2/4 2/4to3/4 3/4to4/4"/> + </vehicle> + <vehicle id="car1535" depart="1535.00"> + <route edges="4/2to4/1 4/1to3/1 3/1to2/1 2/1to2/2 2/2to2/3 2/3to2/4"/> + </vehicle> + <vehicle id="car1536" depart="1536.00"> + <route edges="0/2to0/1 0/1to0/2 0/2to0/3 0/3to0/4 0/4to1/4"/> + </vehicle> + <vehicle id="car1537" depart="1537.00"> + <route edges="1/4to1/3 1/3to1/2 1/2to1/1 1/1to1/0 1/0to0/0 0/0to0/1"/> + </vehicle> + <vehicle id="car1538" depart="1538.00"> + <route edges="3/0to4/0 4/0to4/1 4/1to4/2 4/2to4/3 4/3to4/4 4/4to3/4 3/4to2/4 2/4to1/4 1/4to2/4"/> + </vehicle> + <vehicle id="car1539" depart="1539.00"> + <route edges="4/0to4/1 4/1to4/2 4/2to3/2 3/2to3/3 3/3to3/4"/> + </vehicle> + <vehicle id="car1540" depart="1540.00"> + <route edges="1/1to2/1 2/1to2/2 2/2to3/2 3/2to3/1"/> + </vehicle> + <vehicle id="car1541" depart="1541.00"> + <route edges="1/4to2/4 2/4to2/3 2/3to2/2 2/2to3/2"/> + </vehicle> + <vehicle id="car1542" depart="1542.00"> + <route edges="2/2to2/1 2/1to2/2 2/2to2/3 2/3to2/4"/> + </vehicle> + <vehicle id="car1543" depart="1543.00"> + <route edges="3/0to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to1/2"/> + </vehicle> + <vehicle id="car1544" depart="1544.00"> + <route edges="3/0to4/0 4/0to3/0 3/0to2/0 2/0to1/0 1/0to0/0 0/0to0/1 0/1to0/2 0/2to0/3 0/3to0/2"/> + </vehicle> + <vehicle id="car1545" depart="1545.00"> + <route edges="2/2to3/2 3/2to2/2 2/2to1/2 1/2to0/2 0/2to0/1"/> + </vehicle> + <vehicle id="car1546" depart="1546.00"> + <route edges="3/4to4/4 4/4to4/3 4/3to3/3 3/3to2/3 2/3to1/3 1/3to0/3 0/3to1/3"/> + </vehicle> + <vehicle id="car1547" depart="1547.00"> + <route edges="4/1to3/1 3/1to2/1 2/1to1/1 1/1to0/1"/> + </vehicle> + <vehicle id="car1548" depart="1548.00"> + <route edges="2/3to3/3 3/3to3/4 3/4to4/4"/> + </vehicle> + <vehicle id="car1549" depart="1549.00"> + <route edges="3/1to2/1 2/1to2/2 2/2to2/3 2/3to1/3"/> + </vehicle> + <vehicle id="car1550" depart="1550.00"> + <route edges="3/2to2/2 2/2to1/2 1/2to0/2"/> + </vehicle> + <vehicle id="car1551" depart="1551.00"> + <route edges="1/4to1/3 1/3to1/4 1/4to2/4 2/4to3/4"/> + </vehicle> + <vehicle id="car1552" depart="1552.00"> + <route edges="0/2to0/1 0/1to0/2 0/2to1/2 1/2to2/2 2/2to3/2 3/2to4/2 4/2to4/3"/> + </vehicle> + <vehicle id="car1553" depart="1553.00"> + <route edges="4/1to4/2 4/2to3/2 3/2to2/2 2/2to1/2 1/2to0/2 0/2to0/3"/> + </vehicle> + <vehicle id="car1554" depart="1554.00"> + <route edges="3/4to2/4 2/4to1/4 1/4to0/4 0/4to0/3 0/3to0/2 0/2to0/1 0/1to1/1"/> + </vehicle> + <vehicle id="car1555" depart="1555.00"> + <route edges="2/0to3/0 3/0to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to1/3"/> + </vehicle> + <vehicle id="car1556" depart="1556.00"> + <route edges="0/2to1/2 1/2to2/2 2/2to3/2 3/2to3/3"/> + </vehicle> + <vehicle id="car1557" depart="1557.00"> + <route edges="2/3to1/3 1/3to1/2 1/2to1/1 1/1to1/0 1/0to2/0"/> + </vehicle> + <vehicle id="car1558" depart="1558.00"> + <route edges="2/3to1/3 1/3to1/2 1/2to1/1 1/1to2/1"/> + </vehicle> + <vehicle id="car1559" depart="1559.00"> + <route edges="3/0to3/1 3/1to3/0 3/0to2/0 2/0to1/0 1/0to1/1"/> + </vehicle> + <vehicle id="car1560" depart="1560.00"> + <route edges="3/2to4/2 4/2to4/1 4/1to4/0 4/0to3/0 3/0to2/0 2/0to3/0"/> + </vehicle> + <vehicle id="car1561" depart="1561.00"> + <route edges="0/3to0/2 0/2to0/1 0/1to0/0 0/0to1/0 1/0to2/0 2/0to3/0 3/0to4/0"/> + </vehicle> + <vehicle id="car1562" depart="1562.00"> + <route edges="1/4to0/4 0/4to1/4 1/4to2/4 2/4to2/3 2/3to2/2 2/2to2/1 2/1to2/2"/> + </vehicle> + <vehicle id="car1563" depart="1563.00"> + <route edges="2/0to2/1 2/1to2/2 2/2to1/2 1/2to1/3 1/3to2/3"/> + </vehicle> + <vehicle id="car1564" depart="1564.00"> + <route edges="0/4to1/4 1/4to2/4 2/4to3/4 3/4to4/4 4/4to4/3"/> + </vehicle> + <vehicle id="car1565" depart="1565.00"> + <route edges="2/1to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to0/4"/> + </vehicle> + <vehicle id="car1566" depart="1566.00"> + <route edges="1/3to1/2 1/2to1/3 1/3to1/4 1/4to2/4 2/4to3/4 3/4to4/4 4/4to4/3"/> + </vehicle> + <vehicle id="car1567" depart="1567.00"> + <route edges="3/3to3/2 3/2to2/2 2/2to2/1 2/1to1/1"/> + </vehicle> + <vehicle id="car1568" depart="1568.00"> + <route edges="3/2to3/3 3/3to3/4 3/4to2/4 2/4to3/4"/> + </vehicle> + <vehicle id="car1569" depart="1569.00"> + <route edges="2/3to3/3 3/3to3/2 3/2to2/2 2/2to2/1 2/1to1/1 1/1to1/0"/> + </vehicle> + <vehicle id="car1570" depart="1570.00"> + <route edges="1/2to0/2 0/2to1/2 1/2to1/3 1/3to2/3 2/3to3/3 3/3to4/3 4/3to4/2"/> + </vehicle> + <vehicle id="car1571" depart="1571.00"> + <route edges="3/2to3/3 3/3to4/3 4/3to4/4 4/4to3/4"/> + </vehicle> + <vehicle id="car1572" depart="1572.00"> + <route edges="2/4to2/3 2/3to2/2 2/2to3/2"/> + </vehicle> + <vehicle id="car1573" depart="1573.00"> + <route edges="4/4to4/3 4/3to3/3 3/3to2/3 2/3to1/3 1/3to0/3"/> + </vehicle> + <vehicle id="car1574" depart="1574.00"> + <route edges="1/3to0/3 0/3to1/3 1/3to1/2 1/2to1/1 1/1to1/0"/> + </vehicle> + <vehicle id="car1575" depart="1575.00"> + <route edges="4/0to4/1 4/1to4/0 4/0to3/0 3/0to2/0 2/0to1/0 1/0to0/0 0/0to1/0"/> + </vehicle> + <vehicle id="car1576" depart="1576.00"> + <route edges="3/4to3/3 3/3to3/2 3/2to3/1 3/1to4/1"/> + </vehicle> + <vehicle id="car1577" depart="1577.00"> + <route edges="1/2to1/3 1/3to2/3 2/3to2/4"/> + </vehicle> + <vehicle id="car1578" depart="1578.00"> + <route edges="2/3to2/4 2/4to3/4 3/4to4/4 4/4to4/3 4/3to4/2 4/2to4/3"/> + </vehicle> + <vehicle id="car1579" depart="1579.00"> + <route edges="0/4to1/4 1/4to1/3 1/3to1/2 1/2to1/1 1/1to0/1 0/1to0/2"/> + </vehicle> + <vehicle id="car1580" depart="1580.00"> + <route edges="1/1to1/2 1/2to1/3 1/3to1/4 1/4to2/4 2/4to3/4 3/4to2/4"/> + </vehicle> + <vehicle id="car1581" depart="1581.00"> + <route edges="0/2to1/2 1/2to2/2 2/2to2/1 2/1to2/0 2/0to1/0"/> + </vehicle> + <vehicle id="car1582" depart="1582.00"> + <route edges="1/0to0/0 0/0to0/1 0/1to0/2 0/2to0/3 0/3to0/4 0/4to1/4 1/4to2/4 2/4to3/4 3/4to4/4"/> + </vehicle> + <vehicle id="car1583" depart="1583.00"> + <route edges="3/1to4/1 4/1to4/2 4/2to4/3 4/3to4/4 4/4to3/4 3/4to2/4 2/4to1/4"/> + </vehicle> + <vehicle id="car1584" depart="1584.00"> + <route edges="4/2to3/2 3/2to2/2 2/2to2/3 2/3to2/4 2/4to2/3"/> + </vehicle> + <vehicle id="car1585" depart="1585.00"> + <route edges="1/3to0/3 0/3to1/3 1/3to2/3 2/3to3/3 3/3to3/2 3/2to3/3"/> + </vehicle> + <vehicle id="car1586" depart="1586.00"> + <route edges="2/4to1/4 1/4to0/4 0/4to0/3 0/3to0/2 0/2to0/3"/> + </vehicle> + <vehicle id="car1587" depart="1587.00"> + <route edges="0/1to1/1 1/1to1/2 1/2to2/2 2/2to2/3 2/3to3/3 3/3to3/2"/> + </vehicle> + <vehicle id="car1588" depart="1588.00"> + <route edges="1/3to2/3 2/3to2/4 2/4to3/4 3/4to3/3"/> + </vehicle> + <vehicle id="car1589" depart="1589.00"> + <route edges="4/1to3/1 3/1to2/1 2/1to1/1 1/1to1/2"/> + </vehicle> + <vehicle id="car1590" depart="1590.00"> + <route edges="3/1to2/1 2/1to2/2 2/2to2/3 2/3to2/4 2/4to3/4"/> + </vehicle> + <vehicle id="car1591" depart="1591.00"> + <route edges="0/0to0/1 0/1to1/1 1/1to1/2 1/2to2/2 2/2to2/3 2/3to3/3 3/3to3/4"/> + </vehicle> + <vehicle id="car1592" depart="1592.00"> + <route edges="0/1to0/2 0/2to1/2 1/2to1/3 1/3to2/3 2/3to2/2"/> + </vehicle> + <vehicle id="car1593" depart="1593.00"> + <route edges="0/4to0/3 0/3to0/2 0/2to1/2 1/2to2/2 2/2to2/3"/> + </vehicle> + <vehicle id="car1594" depart="1594.00"> + <route edges="3/2to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to2/0 2/0to1/0"/> + </vehicle> + <vehicle id="car1595" depart="1595.00"> + <route edges="2/1to2/0 2/0to2/1 2/1to2/2 2/2to2/3 2/3to2/4 2/4to2/3"/> + </vehicle> + <vehicle id="car1596" depart="1596.00"> + <route edges="2/2to2/3 2/3to2/2 2/2to2/1 2/1to1/1 1/1to1/0"/> + </vehicle> + <vehicle id="car1597" depart="1597.00"> + <route edges="1/2to2/2 2/2to2/1 2/1to2/0 2/0to1/0"/> + </vehicle> + <vehicle id="car1598" depart="1598.00"> + <route edges="2/3to3/3 3/3to2/3 2/3to2/2 2/2to1/2 1/2to1/1 1/1to0/1 0/1to0/2"/> + </vehicle> + <vehicle id="car1599" depart="1599.00"> + <route edges="2/0to1/0 1/0to0/0 0/0to0/1 0/1to0/2 0/2to0/3"/> + </vehicle> + <vehicle id="car1600" depart="1600.00"> + <route edges="2/3to2/4 2/4to2/3 2/3to2/2 2/2to2/1"/> + </vehicle> + <vehicle id="car1601" depart="1601.00"> + <route edges="3/0to2/0 2/0to2/1 2/1to2/2 2/2to3/2 3/2to3/3"/> + </vehicle> + <vehicle id="car1602" depart="1602.00"> + <route edges="3/3to3/4 3/4to3/3 3/3to2/3 2/3to1/3 1/3to1/2"/> + </vehicle> + <vehicle id="car1603" depart="1603.00"> + <route edges="4/2to4/1 4/1to3/1 3/1to2/1 2/1to1/1 1/1to0/1 0/1to0/2 0/2to1/2"/> + </vehicle> + <vehicle id="car1604" depart="1604.00"> + <route edges="2/4to2/3 2/3to1/3 1/3to1/2 1/2to1/1 1/1to0/1 0/1to0/0 0/0to1/0"/> + </vehicle> + <vehicle id="car1605" depart="1605.00"> + <route edges="1/3to0/3 0/3to0/4 0/4to1/4 1/4to2/4 2/4to3/4 3/4to4/4 4/4to4/3"/> + </vehicle> + <vehicle id="car1606" depart="1606.00"> + <route edges="3/0to2/0 2/0to2/1 2/1to2/2 2/2to2/3 2/3to2/4 2/4to3/4 3/4to4/4 4/4to4/3"/> + </vehicle> + <vehicle id="car1607" depart="1607.00"> + <route edges="2/1to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to0/4 0/4to0/3"/> + </vehicle> + <vehicle id="car1608" depart="1608.00"> + <route edges="0/1to0/2 0/2to0/3 0/3to0/4 0/4to1/4 1/4to2/4 2/4to3/4 3/4to3/3"/> + </vehicle> + <vehicle id="car1609" depart="1609.00"> + <route edges="1/0to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to1/3"/> + </vehicle> + <vehicle id="car1610" depart="1610.00"> + <route edges="3/3to2/3 2/3to2/2 2/2to2/1 2/1to2/0 2/0to3/0 3/0to4/0 4/0to4/1"/> + </vehicle> + <vehicle id="car1611" depart="1611.00"> + <route edges="0/3to0/2 0/2to0/1 0/1to1/1"/> + </vehicle> + <vehicle id="car1612" depart="1612.00"> + <route edges="4/1to3/1 3/1to3/2 3/2to3/3 3/3to3/4 3/4to3/3"/> + </vehicle> + <vehicle id="car1613" depart="1613.00"> + <route edges="0/0to1/0 1/0to2/0 2/0to3/0 3/0to3/1 3/1to4/1"/> + </vehicle> + <vehicle id="car1614" depart="1614.00"> + <route edges="0/3to0/2 0/2to0/1 0/1to1/1 1/1to2/1 2/1to2/2"/> + </vehicle> + <vehicle id="car1615" depart="1615.00"> + <route edges="2/3to2/2 2/2to1/2 1/2to1/1 1/1to0/1"/> + </vehicle> + <vehicle id="car1616" depart="1616.00"> + <route edges="2/2to3/2 3/2to2/2 2/2to1/2 1/2to0/2"/> + </vehicle> + <vehicle id="car1617" depart="1617.00"> + <route edges="0/4to0/3 0/3to0/2 0/2to0/1 0/1to1/1 1/1to2/1 2/1to3/1 3/1to4/1"/> + </vehicle> + <vehicle id="car1618" depart="1618.00"> + <route edges="0/0to1/0 1/0to2/0 2/0to2/1 2/1to2/2 2/2to2/3 2/3to2/4 2/4to1/4"/> + </vehicle> + <vehicle id="car1619" depart="1619.00"> + <route edges="3/1to3/0 3/0to2/0 2/0to1/0 1/0to0/0 0/0to0/1 0/1to0/2"/> + </vehicle> + <vehicle id="car1620" depart="1620.00"> + <route edges="1/0to0/0 0/0to0/1 0/1to0/2 0/2to1/2 1/2to1/3"/> + </vehicle> + <vehicle id="car1621" depart="1621.00"> + <route edges="3/3to4/3 4/3to4/2 4/2to4/1 4/1to4/0 4/0to3/0 3/0to2/0"/> + </vehicle> + <vehicle id="car1622" depart="1622.00"> + <route edges="0/1to1/1 1/1to2/1 2/1to3/1 3/1to2/1"/> + </vehicle> + <vehicle id="car1623" depart="1623.00"> + <route edges="1/2to1/1 1/1to1/0 1/0to2/0 2/0to3/0 3/0to4/0 4/0to4/1"/> + </vehicle> + <vehicle id="car1624" depart="1624.00"> + <route edges="0/0to1/0 1/0to2/0 2/0to3/0 3/0to4/0 4/0to4/1 4/1to3/1"/> + </vehicle> + <vehicle id="car1625" depart="1625.00"> + <route edges="3/0to4/0 4/0to3/0 3/0to2/0 2/0to1/0 1/0to1/1 1/1to1/2"/> + </vehicle> + <vehicle id="car1626" depart="1626.00"> + <route edges="1/4to2/4 2/4to3/4 3/4to4/4 4/4to3/4"/> + </vehicle> + <vehicle id="car1627" depart="1627.00"> + <route edges="4/1to3/1 3/1to2/1 2/1to2/2 2/2to2/3 2/3to1/3"/> + </vehicle> + <vehicle id="car1628" depart="1628.00"> + <route edges="1/0to1/1 1/1to2/1 2/1to2/2 2/2to2/3"/> + </vehicle> + <vehicle id="car1629" depart="1629.00"> + <route edges="2/1to2/2 2/2to3/2 3/2to4/2 4/2to4/3"/> + </vehicle> + <vehicle id="car1630" depart="1630.00"> + <route edges="0/0to1/0 1/0to1/1 1/1to2/1"/> + </vehicle> + <vehicle id="car1631" depart="1631.00"> + <route edges="2/0to1/0 1/0to0/0 0/0to0/1 0/1to0/2 0/2to0/3 0/3to0/4 0/4to1/4"/> + </vehicle> + <vehicle id="car1632" depart="1632.00"> + <route edges="3/0to3/1 3/1to2/1 2/1to1/1 1/1to1/2"/> + </vehicle> + <vehicle id="car1633" depart="1633.00"> + <route edges="4/4to3/4 3/4to3/3 3/3to3/2 3/2to2/2 2/2to2/3"/> + </vehicle> + <vehicle id="car1634" depart="1634.00"> + <route edges="3/4to2/4 2/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to3/1"/> + </vehicle> + <vehicle id="car1635" depart="1635.00"> + <route edges="3/4to3/3 3/3to2/3 2/3to2/2 2/2to1/2 1/2to1/1 1/1to0/1 0/1to0/0"/> + </vehicle> + <vehicle id="car1636" depart="1636.00"> + <route edges="0/4to1/4 1/4to2/4 2/4to3/4 3/4to4/4 4/4to4/3 4/3to4/2 4/2to4/1 4/1to4/2"/> + </vehicle> + <vehicle id="car1637" depart="1637.00"> + <route edges="3/1to2/1 2/1to1/1 1/1to0/1 0/1to0/2 0/2to1/2"/> + </vehicle> + <vehicle id="car1638" depart="1638.00"> + <route edges="1/4to2/4 2/4to3/4 3/4to4/4 4/4to4/3 4/3to4/2"/> + </vehicle> + <vehicle id="car1639" depart="1639.00"> + <route edges="2/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to3/1"/> + </vehicle> + <vehicle id="car1640" depart="1640.00"> + <route edges="0/4to1/4 1/4to2/4 2/4to3/4 3/4to4/4 4/4to4/3 4/3to4/4"/> + </vehicle> + <vehicle id="car1641" depart="1641.00"> + <route edges="4/2to3/2 3/2to2/2 2/2to1/2 1/2to1/3 1/3to1/4"/> + </vehicle> + <vehicle id="car1642" depart="1642.00"> + <route edges="2/3to2/2 2/2to1/2 1/2to1/1 1/1to0/1"/> + </vehicle> + <vehicle id="car1643" depart="1643.00"> + <route edges="0/4to0/3 0/3to1/3 1/3to2/3 2/3to2/2"/> + </vehicle> + <vehicle id="car1644" depart="1644.00"> + <route edges="3/4to2/4 2/4to3/4 3/4to4/4 4/4to4/3 4/3to4/2 4/2to4/1 4/1to3/1"/> + </vehicle> + <vehicle id="car1645" depart="1645.00"> + <route edges="0/4to0/3 0/3to0/2 0/2to1/2 1/2to2/2 2/2to3/2 3/2to4/2 4/2to4/3"/> + </vehicle> + <vehicle id="car1646" depart="1646.00"> + <route edges="4/2to4/1 4/1to3/1 3/1to2/1 2/1to1/1 1/1to1/2 1/2to1/3 1/3to1/2"/> + </vehicle> + <vehicle id="car1647" depart="1647.00"> + <route edges="4/1to4/0 4/0to3/0 3/0to3/1 3/1to3/2 3/2to3/3"/> + </vehicle> + <vehicle id="car1648" depart="1648.00"> + <route edges="3/3to3/2 3/2to3/1 3/1to4/1 4/1to4/0"/> + </vehicle> + <vehicle id="car1649" depart="1649.00"> + <route edges="2/1to2/0 2/0to3/0 3/0to4/0 4/0to4/1 4/1to4/2 4/2to4/3"/> + </vehicle> + <vehicle id="car1650" depart="1650.00"> + <route edges="4/1to4/2 4/2to4/3"/> + </vehicle> + <vehicle id="car1651" depart="1651.00"> + <route edges="1/2to1/1 1/1to1/2 1/2to2/2 2/2to2/3 2/3to3/3 3/3to3/4"/> + </vehicle> + <vehicle id="car1652" depart="1652.00"> + <route edges="0/3to0/2 0/2to0/1 0/1to0/0 0/0to1/0 1/0to1/1"/> + </vehicle> + <vehicle id="car1653" depart="1653.00"> + <route edges="1/2to1/1 1/1to1/2 1/2to2/2 2/2to2/3 2/3to3/3"/> + </vehicle> + <vehicle id="car1654" depart="1654.00"> + <route edges="3/1to3/2 3/2to3/3 3/3to3/4 3/4to2/4 2/4to1/4 1/4to0/4"/> + </vehicle> + <vehicle id="car1655" depart="1655.00"> + <route edges="3/1to4/1 4/1to3/1 3/1to2/1 2/1to2/2 2/2to1/2"/> + </vehicle> + <vehicle id="car1656" depart="1656.00"> + <route edges="2/2to2/3 2/3to2/4 2/4to3/4"/> + </vehicle> + <vehicle id="car1657" depart="1657.00"> + <route edges="3/2to2/2 2/2to1/2 1/2to1/3 1/3to1/4 1/4to1/3"/> + </vehicle> + <vehicle id="car1658" depart="1658.00"> + <route edges="4/0to4/1 4/1to4/2 4/2to3/2 3/2to2/2 2/2to2/1"/> + </vehicle> + <vehicle id="car1659" depart="1659.00"> + <route edges="0/4to0/3 0/3to0/2 0/2to0/1 0/1to0/0 0/0to1/0 1/0to2/0"/> + </vehicle> + <vehicle id="car1660" depart="1660.00"> + <route edges="0/1to0/0 0/0to1/0 1/0to2/0 2/0to2/1 2/1to2/2 2/2to2/3 2/3to3/3 3/3to3/2"/> + </vehicle> + <vehicle id="car1661" depart="1661.00"> + <route edges="2/0to3/0 3/0to3/1 3/1to3/2 3/2to4/2"/> + </vehicle> + <vehicle id="car1662" depart="1662.00"> + <route edges="4/4to4/3 4/3to3/3 3/3to2/3"/> + </vehicle> + <vehicle id="car1663" depart="1663.00"> + <route edges="0/2to0/1 0/1to0/2 0/2to1/2 1/2to2/2 2/2to3/2 3/2to4/2 4/2to4/3"/> + </vehicle> + <vehicle id="car1664" depart="1664.00"> + <route edges="4/4to3/4 3/4to4/4 4/4to4/3 4/3to4/2 4/2to4/1 4/1to3/1"/> + </vehicle> + <vehicle id="car1665" depart="1665.00"> + <route edges="2/0to2/1 2/1to1/1 1/1to0/1 0/1to0/2"/> + </vehicle> + <vehicle id="car1666" depart="1666.00"> + <route edges="3/2to3/3 3/3to3/4 3/4to2/4 2/4to1/4 1/4to2/4"/> + </vehicle> + <vehicle id="car1667" depart="1667.00"> + <route edges="1/3to1/2 1/2to1/3 1/3to1/4 1/4to2/4 2/4to3/4"/> + </vehicle> + <vehicle id="car1668" depart="1668.00"> + <route edges="2/3to1/3 1/3to2/3 2/3to3/3 3/3to4/3 4/3to4/2 4/2to4/1 4/1to4/0"/> + </vehicle> + <vehicle id="car1669" depart="1669.00"> + <route edges="2/1to2/2 2/2to2/3 2/3to2/4 2/4to3/4 3/4to4/4"/> + </vehicle> + <vehicle id="car1670" depart="1670.00"> + <route edges="0/1to0/2 0/2to0/3 0/3to0/4 0/4to1/4 1/4to2/4 2/4to3/4 3/4to4/4 4/4to4/3"/> + </vehicle> + <vehicle id="car1671" depart="1671.00"> + <route edges="2/2to3/2 3/2to3/1 3/1to3/0 3/0to2/0 2/0to1/0"/> + </vehicle> + <vehicle id="car1672" depart="1672.00"> + <route edges="3/2to3/3 3/3to2/3 2/3to2/4"/> + </vehicle> + <vehicle id="car1673" depart="1673.00"> + <route edges="0/1to0/2 0/2to1/2 1/2to2/2"/> + </vehicle> + <vehicle id="car1674" depart="1674.00"> + <route edges="2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to0/3"/> + </vehicle> + <vehicle id="car1675" depart="1675.00"> + <route edges="3/4to4/4 4/4to4/3 4/3to4/2 4/2to3/2 3/2to3/1 3/1to2/1 2/1to2/2"/> + </vehicle> + <vehicle id="car1676" depart="1676.00"> + <route edges="0/1to1/1 1/1to2/1 2/1to2/2 2/2to3/2"/> + </vehicle> + <vehicle id="car1677" depart="1677.00"> + <route edges="0/4to0/3 0/3to0/4 0/4to1/4 1/4to2/4 2/4to3/4 3/4to4/4"/> + </vehicle> + <vehicle id="car1678" depart="1678.00"> + <route edges="0/3to0/4 0/4to1/4 1/4to2/4 2/4to3/4 3/4to3/3 3/3to3/4"/> + </vehicle> + <vehicle id="car1679" depart="1679.00"> + <route edges="4/3to3/3 3/3to3/2 3/2to3/1 3/1to4/1"/> + </vehicle> + <vehicle id="car1680" depart="1680.00"> + <route edges="0/3to1/3 1/3to1/2 1/2to1/1 1/1to1/0 1/0to2/0 2/0to3/0"/> + </vehicle> + <vehicle id="car1681" depart="1681.00"> + <route edges="2/4to2/3 2/3to2/2 2/2to3/2 3/2to3/1"/> + </vehicle> + <vehicle id="car1682" depart="1682.00"> + <route edges="1/2to0/2 0/2to1/2 1/2to2/2 2/2to2/1 2/1to3/1 3/1to4/1"/> + </vehicle> + <vehicle id="car1683" depart="1683.00"> + <route edges="3/2to3/1 3/1to2/1 2/1to1/1 1/1to0/1 0/1to0/2 0/2to0/3 0/3to0/4"/> + </vehicle> + <vehicle id="car1684" depart="1684.00"> + <route edges="0/3to0/4 0/4to1/4 1/4to2/4 2/4to2/3 2/3to2/2 2/2to2/1 2/1to2/0"/> + </vehicle> + <vehicle id="car1685" depart="1685.00"> + <route edges="1/4to1/3 1/3to1/2 1/2to2/2 2/2to3/2"/> + </vehicle> + <vehicle id="car1686" depart="1686.00"> + <route edges="1/4to2/4 2/4to3/4 3/4to3/3 3/3to4/3"/> + </vehicle> + <vehicle id="car1687" depart="1687.00"> + <route edges="2/3to3/3 3/3to3/2 3/2to3/1 3/1to2/1"/> + </vehicle> + <vehicle id="car1688" depart="1688.00"> + <route edges="0/4to1/4 1/4to2/4 2/4to3/4 3/4to4/4 4/4to4/3 4/3to4/2 4/2to4/1 4/1to3/1"/> + </vehicle> + <vehicle id="car1689" depart="1689.00"> + <route edges="1/0to1/1 1/1to2/1 2/1to2/2 2/2to3/2 3/2to2/2"/> + </vehicle> + <vehicle id="car1690" depart="1690.00"> + <route edges="2/0to3/0 3/0to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to0/3"/> + </vehicle> + <vehicle id="car1691" depart="1691.00"> + <route edges="3/3to3/2 3/2to2/2 2/2to2/1 2/1to2/0"/> + </vehicle> + <vehicle id="car1692" depart="1692.00"> + <route edges="3/0to3/1 3/1to3/2 3/2to2/2 2/2to1/2 1/2to0/2 0/2to0/3 0/3to0/4"/> + </vehicle> + <vehicle id="car1693" depart="1693.00"> + <route edges="0/3to1/3 1/3to1/2 1/2to1/1 1/1to0/1"/> + </vehicle> + <vehicle id="car1694" depart="1694.00"> + <route edges="3/0to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to0/2"/> + </vehicle> + <vehicle id="car1695" depart="1695.00"> + <route edges="2/1to2/2 2/2to3/2 3/2to3/1 3/1to3/0 3/0to4/0 4/0to4/1"/> + </vehicle> + <vehicle id="car1696" depart="1696.00"> + <route edges="2/3to2/2 2/2to2/1 2/1to2/0 2/0to1/0 1/0to0/0 0/0to0/1"/> + </vehicle> + <vehicle id="car1697" depart="1697.00"> + <route edges="4/1to4/0 4/0to3/0 3/0to2/0 2/0to1/0 1/0to1/1 1/1to2/1"/> + </vehicle> + <vehicle id="car1698" depart="1698.00"> + <route edges="2/4to2/3 2/3to2/2 2/2to1/2"/> + </vehicle> + <vehicle id="car1699" depart="1699.00"> + <route edges="2/0to2/1 2/1to2/2 2/2to1/2 1/2to0/2 0/2to0/3"/> + </vehicle> + <vehicle id="car1700" depart="1700.00"> + <route edges="2/4to3/4 3/4to3/3 3/3to3/2 3/2to2/2 2/2to2/1 2/1to1/1 1/1to2/1"/> + </vehicle> + <vehicle id="car1701" depart="1701.00"> + <route edges="2/3to2/2 2/2to2/1 2/1to2/0 2/0to3/0 3/0to2/0"/> + </vehicle> + <vehicle id="car1702" depart="1702.00"> + <route edges="2/3to2/4 2/4to3/4 3/4to4/4"/> + </vehicle> + <vehicle id="car1703" depart="1703.00"> + <route edges="0/1to0/2 0/2to0/3 0/3to0/4 0/4to0/3"/> + </vehicle> + <vehicle id="car1704" depart="1704.00"> + <route edges="3/1to2/1 2/1to1/1 1/1to0/1 0/1to0/0"/> + </vehicle> + <vehicle id="car1705" depart="1705.00"> + <route edges="4/0to3/0 3/0to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to2/2"/> + </vehicle> + <vehicle id="car1706" depart="1706.00"> + <route edges="4/2to4/1 4/1to3/1 3/1to2/1 2/1to1/1 1/1to0/1 0/1to0/2"/> + </vehicle> + <vehicle id="car1707" depart="1707.00"> + <route edges="3/1to3/0 3/0to2/0 2/0to2/1 2/1to2/2 2/2to2/3 2/3to2/4 2/4to3/4"/> + </vehicle> + <vehicle id="car1708" depart="1708.00"> + <route edges="3/1to4/1 4/1to3/1 3/1to2/1 2/1to2/2 2/2to2/3 2/3to2/4 2/4to2/3"/> + </vehicle> + <vehicle id="car1709" depart="1709.00"> + <route edges="3/3to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to2/0 2/0to1/0 1/0to1/1"/> + </vehicle> + <vehicle id="car1710" depart="1710.00"> + <route edges="2/1to2/2 2/2to2/3 2/3to2/4 2/4to1/4"/> + </vehicle> + <vehicle id="car1711" depart="1711.00"> + <route edges="4/2to4/3 4/3to4/2 4/2to3/2 3/2to2/2 2/2to1/2 1/2to0/2 0/2to1/2"/> + </vehicle> + <vehicle id="car1712" depart="1712.00"> + <route edges="1/4to2/4 2/4to2/3 2/3to1/3 1/3to1/2 1/2to0/2 0/2to0/1"/> + </vehicle> + <vehicle id="car1713" depart="1713.00"> + <route edges="2/1to1/1 1/1to1/2 1/2to1/3 1/3to2/3 2/3to2/4"/> + </vehicle> + <vehicle id="car1714" depart="1714.00"> + <route edges="3/1to4/1 4/1to3/1 3/1to2/1 2/1to1/1 1/1to1/2 1/2to1/1"/> + </vehicle> + <vehicle id="car1715" depart="1715.00"> + <route edges="3/1to4/1 4/1to4/2 4/2to4/3 4/3to4/4 4/4to3/4 3/4to2/4 2/4to3/4"/> + </vehicle> + <vehicle id="car1716" depart="1716.00"> + <route edges="0/3to0/2 0/2to1/2 1/2to2/2 2/2to3/2 3/2to3/3"/> + </vehicle> + <vehicle id="car1717" depart="1717.00"> + <route edges="3/0to3/1 3/1to4/1 4/1to4/2 4/2to4/3 4/3to4/4 4/4to3/4"/> + </vehicle> + <vehicle id="car1718" depart="1718.00"> + <route edges="2/2to1/2 1/2to2/2 2/2to3/2 3/2to3/1 3/1to4/1"/> + </vehicle> + <vehicle id="car1719" depart="1719.00"> + <route edges="4/2to4/3 4/3to4/4 4/4to3/4"/> + </vehicle> + <vehicle id="car1720" depart="1720.00"> + <route edges="1/2to1/3 1/3to1/4 1/4to2/4 2/4to3/4"/> + </vehicle> + <vehicle id="car1721" depart="1721.00"> + <route edges="4/4to4/3 4/3to3/3 3/3to3/4 3/4to2/4 2/4to1/4 1/4to0/4"/> + </vehicle> + <vehicle id="car1722" depart="1722.00"> + <route edges="0/3to1/3 1/3to2/3 2/3to3/3"/> + </vehicle> + <vehicle id="car1723" depart="1723.00"> + <route edges="2/4to3/4 3/4to3/3 3/3to3/2 3/2to2/2"/> + </vehicle> + <vehicle id="car1724" depart="1724.00"> + <route edges="4/4to3/4 3/4to2/4 2/4to1/4 1/4to0/4 0/4to0/3 0/3to0/2 0/2to0/1 0/1to0/0 0/0to0/1"/> + </vehicle> + <vehicle id="car1725" depart="1725.00"> + <route edges="0/0to1/0 1/0to2/0 2/0to3/0 3/0to3/1"/> + </vehicle> + <vehicle id="car1726" depart="1726.00"> + <route edges="0/3to0/4 0/4to1/4 1/4to2/4 2/4to3/4 3/4to4/4 4/4to4/3 4/3to4/2 4/2to4/1 4/1to4/0 4/0to3/0"/> + </vehicle> + <vehicle id="car1727" depart="1727.00"> + <route edges="2/0to3/0 3/0to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to1/4"/> + </vehicle> + <vehicle id="car1728" depart="1728.00"> + <route edges="2/3to2/4 2/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to4/0"/> + </vehicle> + <vehicle id="car1729" depart="1729.00"> + <route edges="1/2to1/3 1/3to2/3 2/3to3/3 3/3to4/3"/> + </vehicle> + <vehicle id="car1730" depart="1730.00"> + <route edges="1/3to1/2 1/2to1/1 1/1to1/0 1/0to0/0 0/0to0/1"/> + </vehicle> + <vehicle id="car1731" depart="1731.00"> + <route edges="3/1to3/2 3/2to2/2 2/2to1/2 1/2to1/3 1/3to2/3"/> + </vehicle> + <vehicle id="car1732" depart="1732.00"> + <route edges="3/2to3/1 3/1to3/0 3/0to2/0"/> + </vehicle> + <vehicle id="car1733" depart="1733.00"> + <route edges="3/3to4/3 4/3to4/2 4/2to4/1 4/1to4/0 4/0to3/0 3/0to4/0"/> + </vehicle> + <vehicle id="car1734" depart="1734.00"> + <route edges="4/1to4/2 4/2to4/3 4/3to3/3 3/3to2/3 2/3to1/3"/> + </vehicle> + <vehicle id="car1735" depart="1735.00"> + <route edges="1/3to1/4 1/4to2/4 2/4to3/4 3/4to3/3 3/3to3/4"/> + </vehicle> + <vehicle id="car1736" depart="1736.00"> + <route edges="2/0to3/0 3/0to3/1 3/1to3/2 3/2to4/2"/> + </vehicle> + <vehicle id="car1737" depart="1737.00"> + <route edges="3/4to4/4 4/4to4/3 4/3to3/3 3/3to3/2 3/2to2/2 2/2to1/2 1/2to2/2"/> + </vehicle> + <vehicle id="car1738" depart="1738.00"> + <route edges="3/2to3/1 3/1to2/1 2/1to1/1 1/1to1/2 1/2to1/3 1/3to1/2"/> + </vehicle> + <vehicle id="car1739" depart="1739.00"> + <route edges="2/3to1/3 1/3to1/2 1/2to1/1 1/1to0/1"/> + </vehicle> + <vehicle id="car1740" depart="1740.00"> + <route edges="3/1to3/2 3/2to3/3 3/3to4/3"/> + </vehicle> + <vehicle id="car1741" depart="1741.00"> + <route edges="4/1to4/2 4/2to4/3 4/3to4/4 4/4to3/4 3/4to2/4 2/4to1/4 1/4to0/4"/> + </vehicle> + <vehicle id="car1742" depart="1742.00"> + <route edges="4/3to4/4 4/4to3/4 3/4to2/4 2/4to2/3 2/3to2/2 2/2to1/2 1/2to1/3"/> + </vehicle> + <vehicle id="car1743" depart="1743.00"> + <route edges="0/1to0/0 0/0to1/0 1/0to2/0 2/0to3/0 3/0to4/0 4/0to4/1 4/1to4/2 4/2to4/3 4/3to4/4 4/4to3/4"/> + </vehicle> + <vehicle id="car1744" depart="1744.00"> + <route edges="2/3to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to2/0 2/0to1/0"/> + </vehicle> + <vehicle id="car1745" depart="1745.00"> + <route edges="2/4to2/3 2/3to2/2 2/2to3/2 3/2to4/2 4/2to4/1 4/1to3/1"/> + </vehicle> + <vehicle id="car1746" depart="1746.00"> + <route edges="1/3to1/2 1/2to0/2 0/2to0/1 0/1to0/0"/> + </vehicle> + <vehicle id="car1747" depart="1747.00"> + <route edges="4/3to4/2 4/2to3/2 3/2to3/1 3/1to2/1 2/1to1/1 1/1to1/0"/> + </vehicle> + <vehicle id="car1748" depart="1748.00"> + <route edges="4/2to4/1 4/1to3/1 3/1to2/1 2/1to2/0"/> + </vehicle> + <vehicle id="car1749" depart="1749.00"> + <route edges="0/0to1/0 1/0to1/1 1/1to1/2 1/2to2/2 2/2to1/2"/> + </vehicle> + <vehicle id="car1750" depart="1750.00"> + <route edges="2/2to2/3 2/3to2/2 2/2to2/1 2/1to1/1 1/1to1/0 1/0to2/0"/> + </vehicle> + <vehicle id="car1751" depart="1751.00"> + <route edges="2/2to3/2 3/2to3/3 3/3to3/4"/> + </vehicle> + <vehicle id="car1752" depart="1752.00"> + <route edges="0/4to0/3 0/3to0/2 0/2to1/2 1/2to2/2 2/2to3/2 3/2to4/2 4/2to4/1 4/1to3/1"/> + </vehicle> + <vehicle id="car1753" depart="1753.00"> + <route edges="3/1to3/2 3/2to2/2 2/2to1/2 1/2to0/2 0/2to0/3 0/3to1/3"/> + </vehicle> + <vehicle id="car1754" depart="1754.00"> + <route edges="0/0to0/1 0/1to1/1 1/1to1/2 1/2to2/2 2/2to3/2 3/2to4/2 4/2to4/3"/> + </vehicle> + <vehicle id="car1755" depart="1755.00"> + <route edges="3/1to3/2 3/2to3/3 3/3to3/4 3/4to2/4 2/4to2/3"/> + </vehicle> + <vehicle id="car1756" depart="1756.00"> + <route edges="0/2to0/3 0/3to1/3 1/3to2/3 2/3to2/2 2/2to2/1 2/1to3/1"/> + </vehicle> + <vehicle id="car1757" depart="1757.00"> + <route edges="0/1to0/2 0/2to1/2 1/2to2/2 2/2to3/2"/> + </vehicle> + <vehicle id="car1758" depart="1758.00"> + <route edges="3/1to2/1 2/1to1/1 1/1to1/2 1/2to1/3 1/3to0/3"/> + </vehicle> + <vehicle id="car1759" depart="1759.00"> + <route edges="2/4to1/4 1/4to1/3 1/3to0/3"/> + </vehicle> + <vehicle id="car1760" depart="1760.00"> + <route edges="4/1to4/2 4/2to4/3 4/3to3/3 3/3to2/3 2/3to1/3 1/3to1/2"/> + </vehicle> + <vehicle id="car1761" depart="1761.00"> + <route edges="1/0to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3"/> + </vehicle> + <vehicle id="car1762" depart="1762.00"> + <route edges="1/3to1/2 1/2to1/1 1/1to2/1 2/1to2/0"/> + </vehicle> + <vehicle id="car1763" depart="1763.00"> + <route edges="1/2to1/1 1/1to0/1 0/1to0/0 0/0to1/0"/> + </vehicle> + <vehicle id="car1764" depart="1764.00"> + <route edges="3/0to2/0 2/0to2/1 2/1to2/2 2/2to3/2"/> + </vehicle> + <vehicle id="car1765" depart="1765.00"> + <route edges="1/1to0/1 0/1to0/2 0/2to0/3 0/3to0/4 0/4to1/4 1/4to0/4"/> + </vehicle> + <vehicle id="car1766" depart="1766.00"> + <route edges="3/2to2/2 2/2to1/2 1/2to1/3"/> + </vehicle> + <vehicle id="car1767" depart="1767.00"> + <route edges="3/0to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to2/3"/> + </vehicle> + <vehicle id="car1768" depart="1768.00"> + <route edges="2/1to2/0 2/0to1/0 1/0to0/0 0/0to0/1 0/1to0/2 0/2to0/3 0/3to1/3"/> + </vehicle> + <vehicle id="car1769" depart="1769.00"> + <route edges="0/3to0/2 0/2to0/1 0/1to1/1"/> + </vehicle> + <vehicle id="car1770" depart="1770.00"> + <route edges="3/4to4/4 4/4to4/3 4/3to4/2 4/2to4/1 4/1to3/1 3/1to4/1"/> + </vehicle> + <vehicle id="car1771" depart="1771.00"> + <route edges="3/0to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to0/3"/> + </vehicle> + <vehicle id="car1772" depart="1772.00"> + <route edges="3/4to3/3 3/3to3/2 3/2to3/1"/> + </vehicle> + <vehicle id="car1773" depart="1773.00"> + <route edges="3/1to3/0 3/0to2/0 2/0to2/1 2/1to2/2 2/2to2/3 2/3to1/3"/> + </vehicle> + <vehicle id="car1774" depart="1774.00"> + <route edges="4/3to4/4 4/4to3/4 3/4to3/3 3/3to2/3"/> + </vehicle> + <vehicle id="car1775" depart="1775.00"> + <route edges="2/1to3/1 3/1to2/1 2/1to1/1 1/1to0/1 0/1to0/2 0/2to0/3 0/3to1/3"/> + </vehicle> + <vehicle id="car1776" depart="1776.00"> + <route edges="3/4to3/3 3/3to3/2 3/2to4/2 4/2to4/1"/> + </vehicle> + <vehicle id="car1777" depart="1777.00"> + <route edges="1/1to1/0 1/0to2/0 2/0to3/0 3/0to4/0 4/0to4/1"/> + </vehicle> + <vehicle id="car1778" depart="1778.00"> + <route edges="2/0to1/0 1/0to1/1 1/1to2/1 2/1to3/1 3/1to4/1"/> + </vehicle> + <vehicle id="car1779" depart="1779.00"> + <route edges="3/1to3/0 3/0to3/1 3/1to3/2 3/2to3/3 3/3to4/3"/> + </vehicle> + <vehicle id="car1780" depart="1780.00"> + <route edges="4/1to4/0 4/0to3/0 3/0to2/0 2/0to2/1 2/1to2/2"/> + </vehicle> + <vehicle id="car1781" depart="1781.00"> + <route edges="1/4to0/4 0/4to1/4 1/4to2/4 2/4to2/3 2/3to2/2 2/2to2/1 2/1to2/2"/> + </vehicle> + <vehicle id="car1782" depart="1782.00"> + <route edges="1/0to0/0 0/0to0/1 0/1to1/1 1/1to1/2 1/2to2/2 2/2to2/3 2/3to3/3 3/3to3/2"/> + </vehicle> + <vehicle id="car1783" depart="1783.00"> + <route edges="0/3to0/2 0/2to0/3 0/3to0/4 0/4to1/4 1/4to2/4 2/4to3/4 3/4to3/3"/> + </vehicle> + <vehicle id="car1784" depart="1784.00"> + <route edges="3/3to4/3 4/3to3/3 3/3to2/3 2/3to1/3 1/3to1/4"/> + </vehicle> + <vehicle id="car1785" depart="1785.00"> + <route edges="3/0to4/0 4/0to3/0 3/0to3/1 3/1to3/2 3/2to3/3 3/3to4/3"/> + </vehicle> + <vehicle id="car1786" depart="1786.00"> + <route edges="2/3to1/3 1/3to2/3 2/3to2/2 2/2to2/1 2/1to2/0 2/0to2/1"/> + </vehicle> + <vehicle id="car1787" depart="1787.00"> + <route edges="2/3to2/2 2/2to2/3 2/3to3/3 3/3to4/3 4/3to4/4"/> + </vehicle> + <vehicle id="car1788" depart="1788.00"> + <route edges="3/3to3/4 3/4to3/3 3/3to3/2 3/2to2/2 2/2to2/1 2/1to1/1"/> + </vehicle> + <vehicle id="car1789" depart="1789.00"> + <route edges="1/1to1/2 1/2to2/2 2/2to3/2 3/2to3/1 3/1to3/0"/> + </vehicle> + <vehicle id="car1790" depart="1790.00"> + <route edges="0/2to0/3 0/3to1/3 1/3to2/3 2/3to3/3 3/3to4/3 4/3to4/2 4/2to4/3"/> + </vehicle> + <vehicle id="car1791" depart="1791.00"> + <route edges="2/4to2/3 2/3to2/2 2/2to2/1 2/1to3/1"/> + </vehicle> + <vehicle id="car1792" depart="1792.00"> + <route edges="1/0to1/1 1/1to2/1 2/1to2/2 2/2to3/2 3/2to3/3 3/3to4/3 4/3to4/2"/> + </vehicle> + <vehicle id="car1793" depart="1793.00"> + <route edges="3/4to3/3 3/3to3/2"/> + </vehicle> + <vehicle id="car1794" depart="1794.00"> + <route edges="1/4to2/4 2/4to2/3 2/3to2/2 2/2to2/1"/> + </vehicle> + <vehicle id="car1795" depart="1795.00"> + <route edges="3/1to2/1 2/1to1/1 1/1to0/1 0/1to0/2 0/2to1/2"/> + </vehicle> + <vehicle id="car1796" depart="1796.00"> + <route edges="3/4to3/3 3/3to3/2 3/2to4/2 4/2to4/1 4/1to4/0"/> + </vehicle> + <vehicle id="car1797" depart="1797.00"> + <route edges="0/0to0/1 0/1to0/2 0/2to0/3 0/3to0/4 0/4to0/3"/> + </vehicle> + <vehicle id="car1798" depart="1798.00"> + <route edges="2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to2/3 2/3to2/4 2/4to1/4"/> + </vehicle> + <vehicle id="car1799" depart="1799.00"> + <route edges="1/0to2/0 2/0to3/0 3/0to3/1 3/1to3/2"/> + </vehicle> + <vehicle id="car1800" depart="1800.00"> + <route edges="1/3to1/2 1/2to1/3 1/3to2/3 2/3to3/3"/> + </vehicle> + <vehicle id="car1801" depart="1801.00"> + <route edges="4/2to4/1 4/1to3/1 3/1to2/1 2/1to2/2 2/2to2/3 2/3to1/3 1/3to0/3"/> + </vehicle> + <vehicle id="car1802" depart="1802.00"> + <route edges="4/3to3/3 3/3to3/2 3/2to2/2 2/2to2/1 2/1to1/1"/> + </vehicle> + <vehicle id="car1803" depart="1803.00"> + <route edges="4/4to3/4 3/4to2/4 2/4to2/3 2/3to1/3 1/3to2/3"/> + </vehicle> + <vehicle id="car1804" depart="1804.00"> + <route edges="4/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to2/0 2/0to2/1"/> + </vehicle> + <vehicle id="car1805" depart="1805.00"> + <route edges="0/3to1/3 1/3to1/2 1/2to2/2"/> + </vehicle> + <vehicle id="car1806" depart="1806.00"> + <route edges="1/4to1/3 1/3to2/3 2/3to2/2"/> + </vehicle> + <vehicle id="car1807" depart="1807.00"> + <route edges="0/1to1/1 1/1to2/1 2/1to2/2 2/2to3/2 3/2to2/2"/> + </vehicle> + <vehicle id="car1808" depart="1808.00"> + <route edges="3/4to3/3 3/3to2/3 2/3to2/4 2/4to1/4 1/4to0/4"/> + </vehicle> + <vehicle id="car1809" depart="1809.00"> + <route edges="2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to1/2"/> + </vehicle> + <vehicle id="car1810" depart="1810.00"> + <route edges="2/3to2/2 2/2to3/2 3/2to3/1 3/1to2/1"/> + </vehicle> + <vehicle id="car1811" depart="1811.00"> + <route edges="1/4to2/4 2/4to3/4 3/4to4/4 4/4to4/3 4/3to4/2 4/2to4/1"/> + </vehicle> + <vehicle id="car1812" depart="1812.00"> + <route edges="4/0to3/0 3/0to2/0 2/0to1/0 1/0to0/0 0/0to0/1 0/1to0/2 0/2to0/3 0/3to0/4 0/4to1/4"/> + </vehicle> + <vehicle id="car1813" depart="1813.00"> + <route edges="4/4to4/3 4/3to3/3 3/3to3/2 3/2to3/1 3/1to3/0"/> + </vehicle> + <vehicle id="car1814" depart="1814.00"> + <route edges="0/3to1/3 1/3to1/2 1/2to0/2 0/2to0/1"/> + </vehicle> + <vehicle id="car1815" depart="1815.00"> + <route edges="0/0to1/0 1/0to2/0 2/0to2/1 2/1to2/2 2/2to3/2 3/2to3/1"/> + </vehicle> + <vehicle id="car1816" depart="1816.00"> + <route edges="4/4to4/3 4/3to3/3 3/3to3/2 3/2to2/2 2/2to1/2 1/2to0/2 0/2to0/3"/> + </vehicle> + <vehicle id="car1817" depart="1817.00"> + <route edges="2/1to2/2 2/2to3/2 3/2to3/3 3/3to4/3"/> + </vehicle> + <vehicle id="car1818" depart="1818.00"> + <route edges="2/4to3/4 3/4to3/3 3/3to3/2 3/2to2/2 2/2to2/1 2/1to1/1"/> + </vehicle> + <vehicle id="car1819" depart="1819.00"> + <route edges="1/0to1/1 1/1to2/1 2/1to2/2 2/2to2/3"/> + </vehicle> + <vehicle id="car1820" depart="1820.00"> + <route edges="1/4to0/4 0/4to0/3 0/3to0/2 0/2to0/1 0/1to0/0 0/0to1/0 1/0to1/1"/> + </vehicle> + <vehicle id="car1821" depart="1821.00"> + <route edges="4/0to3/0 3/0to2/0 2/0to1/0 1/0to1/1 1/1to1/2"/> + </vehicle> + <vehicle id="car1822" depart="1822.00"> + <route edges="3/2to2/2 2/2to1/2 1/2to0/2 0/2to0/3 0/3to0/4"/> + </vehicle> + <vehicle id="car1823" depart="1823.00"> + <route edges="2/2to1/2 1/2to2/2 2/2to3/2 3/2to3/1 3/1to4/1"/> + </vehicle> + <vehicle id="car1824" depart="1824.00"> + <route edges="0/4to0/3 0/3to0/2 0/2to1/2 1/2to2/2 2/2to3/2 3/2to3/3"/> + </vehicle> + <vehicle id="car1825" depart="1825.00"> + <route edges="3/3to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to2/1 2/1to3/1"/> + </vehicle> + <vehicle id="car1826" depart="1826.00"> + <route edges="0/2to0/3 0/3to1/3 1/3to2/3 2/3to3/3 3/3to4/3 4/3to4/2 4/2to4/1 4/1to4/2"/> + </vehicle> + <vehicle id="car1827" depart="1827.00"> + <route edges="0/2to1/2 1/2to2/2 2/2to2/1 2/1to3/1"/> + </vehicle> + <vehicle id="car1828" depart="1828.00"> + <route edges="0/2to0/3 0/3to1/3 1/3to2/3 2/3to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to3/1"/> + </vehicle> + <vehicle id="car1829" depart="1829.00"> + <route edges="3/3to4/3 4/3to3/3 3/3to2/3 2/3to1/3 1/3to0/3"/> + </vehicle> + <vehicle id="car1830" depart="1830.00"> + <route edges="0/1to1/1 1/1to1/2 1/2to1/3 1/3to2/3"/> + </vehicle> + <vehicle id="car1831" depart="1831.00"> + <route edges="3/3to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to2/1 2/1to3/1"/> + </vehicle> + <vehicle id="car1832" depart="1832.00"> + <route edges="3/2to3/3 3/3to3/2 3/2to3/1 3/1to2/1 2/1to2/0 2/0to3/0"/> + </vehicle> + <vehicle id="car1833" depart="1833.00"> + <route edges="1/2to2/2 2/2to1/2 1/2to1/1 1/1to0/1 0/1to0/0"/> + </vehicle> + <vehicle id="car1834" depart="1834.00"> + <route edges="0/1to1/1 1/1to2/1 2/1to3/1"/> + </vehicle> + <vehicle id="car1835" depart="1835.00"> + <route edges="4/4to4/3 4/3to3/3 3/3to3/4 3/4to2/4"/> + </vehicle> + <vehicle id="car1836" depart="1836.00"> + <route edges="3/0to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3"/> + </vehicle> + <vehicle id="car1837" depart="1837.00"> + <route edges="0/2to0/3 0/3to1/3 1/3to2/3 2/3to2/2 2/2to2/3"/> + </vehicle> + <vehicle id="car1838" depart="1838.00"> + <route edges="4/0to4/1 4/1to4/2 4/2to3/2 3/2to2/2 2/2to1/2 1/2to1/3"/> + </vehicle> + <vehicle id="car1839" depart="1839.00"> + <route edges="4/0to4/1 4/1to4/0 4/0to3/0 3/0to2/0 2/0to1/0 1/0to0/0 0/0to1/0"/> + </vehicle> + <vehicle id="car1840" depart="1840.00"> + <route edges="0/3to0/2 0/2to0/1 0/1to0/0 0/0to1/0 1/0to0/0"/> + </vehicle> + <vehicle id="car1841" depart="1841.00"> + <route edges="2/1to2/0 2/0to2/1 2/1to2/2 2/2to2/3 2/3to3/3 3/3to3/4 3/4to2/4"/> + </vehicle> + <vehicle id="car1842" depart="1842.00"> + <route edges="2/2to1/2 1/2to2/2 2/2to2/3 2/3to3/3 3/3to4/3"/> + </vehicle> + <vehicle id="car1843" depart="1843.00"> + <route edges="4/0to4/1 4/1to4/2 4/2to3/2 3/2to2/2 2/2to1/2 1/2to1/3 1/3to2/3"/> + </vehicle> + <vehicle id="car1844" depart="1844.00"> + <route edges="4/2to4/3 4/3to4/4 4/4to3/4 3/4to2/4 2/4to1/4 1/4to0/4 0/4to1/4"/> + </vehicle> + <vehicle id="car1845" depart="1845.00"> + <route edges="2/2to2/1 2/1to2/2 2/2to2/3 2/3to2/4 2/4to3/4 3/4to4/4 4/4to4/3"/> + </vehicle> + <vehicle id="car1846" depart="1846.00"> + <route edges="3/3to3/2 3/2to2/2 2/2to2/1 2/1to1/1 1/1to2/1"/> + </vehicle> + <vehicle id="car1847" depart="1847.00"> + <route edges="2/1to2/0 2/0to3/0 3/0to4/0"/> + </vehicle> + <vehicle id="car1848" depart="1848.00"> + <route edges="1/1to0/1 0/1to1/1 1/1to1/2 1/2to2/2 2/2to3/2 3/2to3/3"/> + </vehicle> + <vehicle id="car1849" depart="1849.00"> + <route edges="1/3to2/3 2/3to2/2 2/2to2/1 2/1to2/0 2/0to3/0 3/0to4/0"/> + </vehicle> + <vehicle id="car1850" depart="1850.00"> + <route edges="3/3to2/3 2/3to1/3 1/3to0/3 0/3to0/4"/> + </vehicle> + <vehicle id="car1851" depart="1851.00"> + <route edges="1/3to0/3 0/3to1/3 1/3to2/3 2/3to2/2 2/2to3/2 3/2to4/2"/> + </vehicle> + <vehicle id="car1852" depart="1852.00"> + <route edges="3/3to2/3 2/3to1/3"/> + </vehicle> + <vehicle id="car1853" depart="1853.00"> + <route edges="1/4to2/4 2/4to3/4 3/4to3/3 3/3to3/2 3/2to2/2"/> + </vehicle> + <vehicle id="car1854" depart="1854.00"> + <route edges="2/1to3/1 3/1to3/2 3/2to3/3 3/3to3/4 3/4to2/4 2/4to1/4 1/4to0/4 0/4to0/3"/> + </vehicle> + <vehicle id="car1855" depart="1855.00"> + <route edges="4/1to3/1 3/1to3/0 3/0to2/0 2/0to1/0 1/0to0/0 0/0to0/1"/> + </vehicle> + <vehicle id="car1856" depart="1856.00"> + <route edges="4/2to4/3 4/3to4/2 4/2to3/2 3/2to3/1 3/1to2/1 2/1to2/0"/> + </vehicle> + <vehicle id="car1857" depart="1857.00"> + <route edges="3/1to3/2 3/2to3/1 3/1to2/1 2/1to1/1 1/1to0/1 0/1to0/2"/> + </vehicle> + <vehicle id="car1858" depart="1858.00"> + <route edges="4/3to4/2 4/2to3/2 3/2to3/1 3/1to2/1 2/1to1/1"/> + </vehicle> + <vehicle id="car1859" depart="1859.00"> + <route edges="1/3to1/4 1/4to1/3 1/3to1/2 1/2to1/1"/> + </vehicle> + <vehicle id="car1860" depart="1860.00"> + <route edges="0/2to1/2 1/2to2/2 2/2to3/2 3/2to3/1 3/1to2/1"/> + </vehicle> + <vehicle id="car1861" depart="1861.00"> + <route edges="2/0to1/0 1/0to1/1 1/1to1/2 1/2to2/2 2/2to2/3 2/3to3/3 3/3to3/2"/> + </vehicle> + <vehicle id="car1862" depart="1862.00"> + <route edges="2/4to2/3 2/3to1/3 1/3to1/2 1/2to1/1 1/1to1/0 1/0to2/0"/> + </vehicle> + <vehicle id="car1863" depart="1863.00"> + <route edges="1/3to1/4 1/4to2/4 2/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to4/1"/> + </vehicle> + <vehicle id="car1864" depart="1864.00"> + <route edges="1/0to1/1 1/1to1/2 1/2to1/3 1/3to2/3 2/3to2/2"/> + </vehicle> + <vehicle id="car1865" depart="1865.00"> + <route edges="3/1to3/0 3/0to3/1 3/1to3/2 3/2to3/3 3/3to3/4 3/4to4/4"/> + </vehicle> + <vehicle id="car1866" depart="1866.00"> + <route edges="0/0to0/1 0/1to0/2 0/2to1/2"/> + </vehicle> + <vehicle id="car1867" depart="1867.00"> + <route edges="0/3to0/2 0/2to0/1 0/1to1/1 1/1to2/1 2/1to2/0"/> + </vehicle> + <vehicle id="car1868" depart="1868.00"> + <route edges="1/1to1/0 1/0to1/1 1/1to1/2 1/2to1/3"/> + </vehicle> + <vehicle id="car1869" depart="1869.00"> + <route edges="0/2to1/2 1/2to2/2 2/2to2/3 2/3to3/3 3/3to4/3 4/3to3/3"/> + </vehicle> + <vehicle id="car1870" depart="1870.00"> + <route edges="3/1to2/1 2/1to2/2 2/2to2/3 2/3to2/4 2/4to3/4 3/4to4/4"/> + </vehicle> + <vehicle id="car1871" depart="1871.00"> + <route edges="4/3to4/2 4/2to4/1 4/1to4/0 4/0to3/0 3/0to4/0"/> + </vehicle> + <vehicle id="car1872" depart="1872.00"> + <route edges="3/2to2/2 2/2to1/2 1/2to0/2 0/2to0/3 0/3to0/4"/> + </vehicle> + <vehicle id="car1873" depart="1873.00"> + <route edges="4/0to4/1 4/1to4/2 4/2to3/2 3/2to2/2 2/2to1/2 1/2to0/2 0/2to0/3 0/3to1/3"/> + </vehicle> + <vehicle id="car1874" depart="1874.00"> + <route edges="2/3to3/3 3/3to4/3 4/3to4/4"/> + </vehicle> + <vehicle id="car1875" depart="1875.00"> + <route edges="1/2to0/2 0/2to1/2 1/2to2/2 2/2to2/1 2/1to3/1"/> + </vehicle> + <vehicle id="car1876" depart="1876.00"> + <route edges="4/2to4/3 4/3to4/2 4/2to4/1 4/1to4/0 4/0to3/0 3/0to4/0"/> + </vehicle> + <vehicle id="car1877" depart="1877.00"> + <route edges="4/2to4/1 4/1to3/1 3/1to2/1 2/1to1/1 1/1to1/2 1/2to1/3"/> + </vehicle> + <vehicle id="car1878" depart="1878.00"> + <route edges="3/3to3/2 3/2to2/2 2/2to1/2 1/2to1/3 1/3to1/2"/> + </vehicle> + <vehicle id="car1879" depart="1879.00"> + <route edges="0/4to1/4 1/4to1/3 1/3to1/2 1/2to0/2 0/2to0/1"/> + </vehicle> + <vehicle id="car1880" depart="1880.00"> + <route edges="1/3to1/4 1/4to1/3 1/3to1/2 1/2to1/1 1/1to0/1 0/1to1/1"/> + </vehicle> + <vehicle id="car1881" depart="1881.00"> + <route edges="4/3to4/2 4/2to3/2 3/2to2/2 2/2to1/2 1/2to1/1"/> + </vehicle> + <vehicle id="car1882" depart="1882.00"> + <route edges="4/2to4/3 4/3to4/4 4/4to3/4 3/4to2/4 2/4to3/4"/> + </vehicle> + <vehicle id="car1883" depart="1883.00"> + <route edges="0/4to0/3 0/3to1/3 1/3to2/3 2/3to3/3 3/3to3/2"/> + </vehicle> + <vehicle id="car1884" depart="1884.00"> + <route edges="1/1to1/0 1/0to2/0 2/0to3/0 3/0to4/0"/> + </vehicle> + <vehicle id="car1885" depart="1885.00"> + <route edges="0/3to0/2 0/2to0/1"/> + </vehicle> + <vehicle id="car1886" depart="1886.00"> + <route edges="2/3to3/3 3/3to2/3 2/3to2/2 2/2to1/2 1/2to0/2"/> + </vehicle> + <vehicle id="car1887" depart="1887.00"> + <route edges="2/1to2/0 2/0to3/0 3/0to4/0 4/0to4/1 4/1to4/2"/> + </vehicle> + <vehicle id="car1888" depart="1888.00"> + <route edges="0/4to0/3 0/3to0/2 0/2to0/1 0/1to0/0 0/0to1/0 1/0to2/0 2/0to3/0 3/0to4/0"/> + </vehicle> + <vehicle id="car1889" depart="1889.00"> + <route edges="4/2to4/3 4/3to4/2 4/2to4/1 4/1to3/1 3/1to3/0"/> + </vehicle> + <vehicle id="car1890" depart="1890.00"> + <route edges="4/0to3/0 3/0to3/1 3/1to3/2 3/2to3/3 3/3to3/4"/> + </vehicle> + <vehicle id="car1891" depart="1891.00"> + <route edges="0/0to0/1 0/1to1/1 1/1to1/2 1/2to2/2 2/2to2/3 2/3to3/3 3/3to4/3 4/3to4/2"/> + </vehicle> + <vehicle id="car1892" depart="1892.00"> + <route edges="3/4to3/3 3/3to2/3 2/3to2/2 2/2to1/2"/> + </vehicle> + <vehicle id="car1893" depart="1893.00"> + <route edges="2/3to3/3 3/3to4/3 4/3to4/2 4/2to4/3"/> + </vehicle> + <vehicle id="car1894" depart="1894.00"> + <route edges="1/4to0/4 0/4to1/4 1/4to2/4 2/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to3/2"/> + </vehicle> + <vehicle id="car1895" depart="1895.00"> + <route edges="4/3to4/2 4/2to3/2 3/2to2/2 2/2to1/2 1/2to0/2 0/2to1/2"/> + </vehicle> + <vehicle id="car1896" depart="1896.00"> + <route edges="2/3to1/3 1/3to2/3 2/3to3/3 3/3to4/3 4/3to4/2"/> + </vehicle> + <vehicle id="car1897" depart="1897.00"> + <route edges="0/2to0/3 0/3to1/3 1/3to2/3 2/3to2/2 2/2to2/1 2/1to2/2"/> + </vehicle> + <vehicle id="car1898" depart="1898.00"> + <route edges="3/3to3/2 3/2to3/1 3/1to3/0 3/0to4/0"/> + </vehicle> + <vehicle id="car1899" depart="1899.00"> + <route edges="1/0to1/1 1/1to0/1 0/1to0/2"/> + </vehicle> + <vehicle id="car1900" depart="1900.00"> + <route edges="1/4to2/4 2/4to2/3 2/3to2/2 2/2to2/1 2/1to1/1 1/1to1/0 1/0to2/0"/> + </vehicle> + <vehicle id="car1901" depart="1901.00"> + <route edges="3/0to3/1 3/1to3/2 3/2to3/3 3/3to3/4 3/4to2/4 2/4to1/4 1/4to0/4"/> + </vehicle> + <vehicle id="car1902" depart="1902.00"> + <route edges="0/2to0/3 0/3to1/3 1/3to2/3 2/3to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to3/1"/> + </vehicle> + <vehicle id="car1903" depart="1903.00"> + <route edges="3/2to3/3 3/3to3/4 3/4to2/4 2/4to1/4 1/4to0/4 0/4to0/3"/> + </vehicle> + <vehicle id="car1904" depart="1904.00"> + <route edges="1/0to2/0 2/0to2/1 2/1to2/2 2/2to3/2 3/2to3/1"/> + </vehicle> + <vehicle id="car1905" depart="1905.00"> + <route edges="2/4to2/3 2/3to2/2 2/2to2/1"/> + </vehicle> + <vehicle id="car1906" depart="1906.00"> + <route edges="0/2to0/1 0/1to0/2 0/2to1/2 1/2to1/3 1/3to2/3 2/3to2/2"/> + </vehicle> + <vehicle id="car1907" depart="1907.00"> + <route edges="3/4to4/4 4/4to4/3 4/3to4/2 4/2to3/2 3/2to3/1 3/1to2/1 2/1to2/0"/> + </vehicle> + <vehicle id="car1908" depart="1908.00"> + <route edges="4/4to4/3 4/3to3/3 3/3to3/2 3/2to2/2 2/2to2/1 2/1to1/1 1/1to0/1 0/1to0/0"/> + </vehicle> + <vehicle id="car1909" depart="1909.00"> + <route edges="0/1to1/1 1/1to1/2 1/2to2/2 2/2to2/3 2/3to3/3 3/3to4/3"/> + </vehicle> + <vehicle id="car1910" depart="1910.00"> + <route edges="0/1to0/2 0/2to0/3 0/3to0/4"/> + </vehicle> + <vehicle id="car1911" depart="1911.00"> + <route edges="3/4to2/4 2/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to3/0"/> + </vehicle> + <vehicle id="car1912" depart="1912.00"> + <route edges="4/1to3/1 3/1to3/2 3/2to3/3 3/3to3/4 3/4to2/4 2/4to1/4 1/4to0/4 0/4to0/3"/> + </vehicle> + <vehicle id="car1913" depart="1913.00"> + <route edges="2/4to1/4 1/4to2/4 2/4to3/4 3/4to4/4 4/4to4/3 4/3to4/2 4/2to4/1"/> + </vehicle> + <vehicle id="car1914" depart="1914.00"> + <route edges="0/1to0/0 0/0to0/1 0/1to0/2 0/2to0/3 0/3to0/4 0/4to0/3"/> + </vehicle> + <vehicle id="car1915" depart="1915.00"> + <route edges="4/2to4/1 4/1to3/1 3/1to2/1 2/1to1/1 1/1to0/1 0/1to0/2"/> + </vehicle> + <vehicle id="car1916" depart="1916.00"> + <route edges="3/2to2/2 2/2to1/2 1/2to0/2 0/2to0/3 0/3to1/3"/> + </vehicle> + <vehicle id="car1917" depart="1917.00"> + <route edges="1/0to0/0 0/0to0/1 0/1to0/2"/> + </vehicle> + <vehicle id="car1918" depart="1918.00"> + <route edges="1/3to0/3 0/3to1/3 1/3to2/3 2/3to3/3 3/3to4/3"/> + </vehicle> + <vehicle id="car1919" depart="1919.00"> + <route edges="2/1to2/2 2/2to2/1 2/1to2/0 2/0to1/0 1/0to0/0"/> + </vehicle> + <vehicle id="car1920" depart="1920.00"> + <route edges="0/3to0/2 0/2to1/2 1/2to2/2 2/2to2/1"/> + </vehicle> + <vehicle id="car1921" depart="1921.00"> + <route edges="3/3to4/3 4/3to3/3 3/3to3/2 3/2to2/2 2/2to2/1 2/1to1/1 1/1to1/0"/> + </vehicle> + <vehicle id="car1922" depart="1922.00"> + <route edges="3/4to2/4 2/4to2/3 2/3to2/2 2/2to2/1 2/1to1/1"/> + </vehicle> + <vehicle id="car1923" depart="1923.00"> + <route edges="3/1to3/2 3/2to3/3 3/3to2/3 2/3to1/3 1/3to1/2"/> + </vehicle> + <vehicle id="car1924" depart="1924.00"> + <route edges="4/4to3/4 3/4to2/4 2/4to1/4"/> + </vehicle> + <vehicle id="car1925" depart="1925.00"> + <route edges="0/3to1/3 1/3to1/4 1/4to2/4 2/4to3/4 3/4to4/4"/> + </vehicle> + <vehicle id="car1926" depart="1926.00"> + <route edges="2/0to3/0 3/0to3/1 3/1to4/1"/> + </vehicle> + <vehicle id="car1927" depart="1927.00"> + <route edges="2/3to2/4 2/4to2/3 2/3to2/2 2/2to2/1 2/1to2/0"/> + </vehicle> + <vehicle id="car1928" depart="1928.00"> + <route edges="4/2to4/3 4/3to4/2 4/2to3/2 3/2to3/1 3/1to2/1 2/1to1/1 1/1to0/1 0/1to0/2"/> + </vehicle> + <vehicle id="car1929" depart="1929.00"> + <route edges="0/2to1/2 1/2to2/2 2/2to3/2 3/2to4/2 4/2to4/1 4/1to4/0 4/0to3/0"/> + </vehicle> + <vehicle id="car1930" depart="1930.00"> + <route edges="0/0to1/0 1/0to1/1 1/1to1/2 1/2to2/2 2/2to1/2"/> + </vehicle> + <vehicle id="car1931" depart="1931.00"> + <route edges="0/2to1/2 1/2to2/2 2/2to3/2 3/2to3/1 3/1to2/1"/> + </vehicle> + <vehicle id="car1932" depart="1932.00"> + <route edges="3/4to2/4 2/4to3/4 3/4to3/3 3/3to3/2"/> + </vehicle> + <vehicle id="car1933" depart="1933.00"> + <route edges="3/1to4/1 4/1to3/1 3/1to2/1 2/1to1/1 1/1to0/1"/> + </vehicle> + <vehicle id="car1934" depart="1934.00"> + <route edges="3/0to4/0 4/0to3/0 3/0to2/0 2/0to2/1 2/1to2/2 2/2to3/2"/> + </vehicle> + <vehicle id="car1935" depart="1935.00"> + <route edges="2/0to2/1 2/1to3/1 3/1to3/2 3/2to3/3 3/3to4/3 4/3to3/3"/> + </vehicle> + <vehicle id="car1936" depart="1936.00"> + <route edges="2/4to3/4 3/4to3/3 3/3to2/3 2/3to2/2 2/2to1/2 1/2to1/1 1/1to0/1 0/1to0/2"/> + </vehicle> + <vehicle id="car1937" depart="1937.00"> + <route edges="4/3to4/2 4/2to4/1 4/1to4/0 4/0to3/0 3/0to3/1"/> + </vehicle> + <vehicle id="car1938" depart="1938.00"> + <route edges="0/0to0/1 0/1to1/1 1/1to1/2"/> + </vehicle> + <vehicle id="car1939" depart="1939.00"> + <route edges="0/2to1/2 1/2to1/3 1/3to1/4 1/4to0/4"/> + </vehicle> + <vehicle id="car1940" depart="1940.00"> + <route edges="1/1to1/0 1/0to1/1 1/1to1/2 1/2to2/2 2/2to2/3 2/3to3/3 3/3to3/2"/> + </vehicle> + <vehicle id="car1941" depart="1941.00"> + <route edges="3/1to2/1 2/1to1/1 1/1to1/2 1/2to1/3"/> + </vehicle> + <vehicle id="car1942" depart="1942.00"> + <route edges="1/0to2/0 2/0to3/0 3/0to3/1 3/1to3/2 3/2to3/3 3/3to4/3"/> + </vehicle> + <vehicle id="car1943" depart="1943.00"> + <route edges="3/1to3/2 3/2to4/2 4/2to4/3 4/3to4/4"/> + </vehicle> + <vehicle id="car1944" depart="1944.00"> + <route edges="3/1to3/0 3/0to2/0 2/0to1/0 1/0to0/0 0/0to0/1 0/1to0/2"/> + </vehicle> + <vehicle id="car1945" depart="1945.00"> + <route edges="3/0to4/0 4/0to3/0 3/0to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3"/> + </vehicle> + <vehicle id="car1946" depart="1946.00"> + <route edges="2/1to1/1 1/1to1/2 1/2to1/3 1/3to1/4"/> + </vehicle> + <vehicle id="car1947" depart="1947.00"> + <route edges="0/1to0/2 0/2to1/2 1/2to2/2 2/2to3/2 3/2to4/2"/> + </vehicle> + <vehicle id="car1948" depart="1948.00"> + <route edges="4/2to4/1 4/1to4/0 4/0to3/0 3/0to2/0 2/0to1/0 1/0to1/1"/> + </vehicle> + <vehicle id="car1949" depart="1949.00"> + <route edges="3/3to3/4 3/4to3/3 3/3to2/3 2/3to2/2 2/2to1/2"/> + </vehicle> + <vehicle id="car1950" depart="1950.00"> + <route edges="0/3to0/4 0/4to1/4 1/4to2/4 2/4to3/4 3/4to4/4 4/4to4/3 4/3to4/2 4/2to4/1 4/1to4/2"/> + </vehicle> + <vehicle id="car1951" depart="1951.00"> + <route edges="1/3to1/4 1/4to1/3 1/3to1/2 1/2to1/1 1/1to1/0 1/0to2/0"/> + </vehicle> + <vehicle id="car1952" depart="1952.00"> + <route edges="3/1to3/2 3/2to3/3 3/3to2/3 2/3to1/3 1/3to1/4"/> + </vehicle> + <vehicle id="car1953" depart="1953.00"> + <route edges="3/3to3/4 3/4to3/3 3/3to2/3 2/3to1/3 1/3to1/4"/> + </vehicle> + <vehicle id="car1954" depart="1954.00"> + <route edges="0/2to1/2 1/2to2/2 2/2to3/2 3/2to4/2"/> + </vehicle> + <vehicle id="car1955" depart="1955.00"> + <route edges="4/1to3/1 3/1to3/2 3/2to3/3 3/3to3/4 3/4to2/4 2/4to1/4 1/4to2/4"/> + </vehicle> + <vehicle id="car1956" depart="1956.00"> + <route edges="1/1to1/0 1/0to1/1 1/1to2/1 2/1to3/1"/> + </vehicle> + <vehicle id="car1957" depart="1957.00"> + <route edges="2/2to1/2 1/2to2/2 2/2to3/2 3/2to4/2 4/2to4/1 4/1to4/2"/> + </vehicle> + <vehicle id="car1958" depart="1958.00"> + <route edges="0/4to0/3 0/3to0/2 0/2to1/2 1/2to2/2 2/2to3/2 3/2to4/2 4/2to4/3"/> + </vehicle> + <vehicle id="car1959" depart="1959.00"> + <route edges="2/1to2/2 2/2to2/3 2/3to2/4 2/4to1/4 1/4to2/4"/> + </vehicle> + <vehicle id="car1960" depart="1960.00"> + <route edges="0/3to1/3 1/3to2/3 2/3to3/3 3/3to3/2 3/2to3/1"/> + </vehicle> + <vehicle id="car1961" depart="1961.00"> + <route edges="3/0to3/1 3/1to4/1 4/1to4/2 4/2to4/3 4/3to4/4 4/4to3/4"/> + </vehicle> + <vehicle id="car1962" depart="1962.00"> + <route edges="1/1to0/1 0/1to0/2 0/2to0/3 0/3to1/3"/> + </vehicle> + <vehicle id="car1963" depart="1963.00"> + <route edges="3/1to4/1 4/1to3/1 3/1to2/1 2/1to1/1 1/1to0/1 0/1to1/1"/> + </vehicle> + <vehicle id="car1964" depart="1964.00"> + <route edges="0/3to1/3 1/3to1/2 1/2to1/1 1/1to1/0 1/0to2/0 2/0to3/0 3/0to4/0 4/0to4/1"/> + </vehicle> + <vehicle id="car1965" depart="1965.00"> + <route edges="2/1to2/2 2/2to2/1 2/1to2/0 2/0to1/0 1/0to0/0"/> + </vehicle> + <vehicle id="car1966" depart="1966.00"> + <route edges="1/3to2/3 2/3to3/3 3/3to4/3 4/3to4/2 4/2to4/1 4/1to4/0"/> + </vehicle> + <vehicle id="car1967" depart="1967.00"> + <route edges="2/4to3/4 3/4to3/3 3/3to4/3"/> + </vehicle> + <vehicle id="car1968" depart="1968.00"> + <route edges="3/0to4/0 4/0to4/1 4/1to4/2 4/2to4/3 4/3to4/4 4/4to3/4 3/4to2/4 2/4to3/4"/> + </vehicle> + <vehicle id="car1969" depart="1969.00"> + <route edges="1/0to0/0 0/0to1/0 1/0to2/0 2/0to3/0 3/0to4/0 4/0to4/1 4/1to4/2 4/2to4/3 4/3to4/4"/> + </vehicle> + <vehicle id="car1970" depart="1970.00"> + <route edges="4/0to4/1 4/1to4/2 4/2to3/2 3/2to2/2 2/2to1/2 1/2to0/2 0/2to0/3"/> + </vehicle> + <vehicle id="car1971" depart="1971.00"> + <route edges="4/0to4/1 4/1to4/2 4/2to3/2 3/2to2/2 2/2to2/1"/> + </vehicle> + <vehicle id="car1972" depart="1972.00"> + <route edges="4/4to4/3 4/3to3/3 3/3to2/3 2/3to2/4 2/4to2/3"/> + </vehicle> + <vehicle id="car1973" depart="1973.00"> + <route edges="3/4to4/4 4/4to4/3 4/3to3/3 3/3to3/2 3/2to2/2 2/2to1/2 1/2to1/3"/> + </vehicle> + <vehicle id="car1974" depart="1974.00"> + <route edges="1/1to2/1 2/1to1/1 1/1to1/2 1/2to1/3 1/3to1/4"/> + </vehicle> + <vehicle id="car1975" depart="1975.00"> + <route edges="2/4to1/4 1/4to2/4 2/4to3/4 3/4to4/4 4/4to4/3 4/3to4/2 4/2to4/1 4/1to4/2"/> + </vehicle> + <vehicle id="car1976" depart="1976.00"> + <route edges="2/4to2/3 2/3to1/3 1/3to1/4 1/4to0/4 0/4to0/3"/> + </vehicle> + <vehicle id="car1977" depart="1977.00"> + <route edges="2/3to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to2/0 2/0to1/0 1/0to0/0 0/0to0/1"/> + </vehicle> + <vehicle id="car1978" depart="1978.00"> + <route edges="4/4to3/4 3/4to2/4 2/4to1/4 1/4to0/4 0/4to0/3 0/3to0/2 0/2to0/1 0/1to0/2"/> + </vehicle> + <vehicle id="car1979" depart="1979.00"> + <route edges="0/1to0/0 0/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to2/3 2/3to1/3"/> + </vehicle> + <vehicle id="car1980" depart="1980.00"> + <route edges="2/2to1/2 1/2to2/2 2/2to2/3 2/3to3/3 3/3to4/3"/> + </vehicle> + <vehicle id="car1981" depart="1981.00"> + <route edges="3/4to3/3 3/3to3/2 3/2to3/1 3/1to2/1 2/1to2/2"/> + </vehicle> + <vehicle id="car1982" depart="1982.00"> + <route edges="1/1to2/1 2/1to2/2 2/2to2/3 2/3to2/4"/> + </vehicle> + <vehicle id="car1983" depart="1983.00"> + <route edges="0/0to0/1 0/1to1/1 1/1to1/2 1/2to2/2 2/2to3/2 3/2to3/3"/> + </vehicle> + <vehicle id="car1984" depart="1984.00"> + <route edges="4/3to3/3 3/3to2/3 2/3to1/3 1/3to0/3 0/3to1/3"/> + </vehicle> + <vehicle id="car1985" depart="1985.00"> + <route edges="1/2to2/2 2/2to2/1 2/1to2/0 2/0to3/0 3/0to4/0"/> + </vehicle> + <vehicle id="car1986" depart="1986.00"> + <route edges="4/0to4/1 4/1to3/1 3/1to3/2 3/2to4/2"/> + </vehicle> + <vehicle id="car1987" depart="1987.00"> + <route edges="0/0to1/0 1/0to2/0 2/0to2/1 2/1to2/2"/> + </vehicle> + <vehicle id="car1988" depart="1988.00"> + <route edges="3/3to3/2 3/2to4/2 4/2to4/1 4/1to3/1"/> + </vehicle> + <vehicle id="car1989" depart="1989.00"> + <route edges="2/0to2/1 2/1to3/1 3/1to3/2 3/2to3/3 3/3to4/3"/> + </vehicle> + <vehicle id="car1990" depart="1990.00"> + <route edges="1/4to1/3 1/3to1/2 1/2to1/1 1/1to2/1 2/1to3/1"/> + </vehicle> + <vehicle id="car1991" depart="1991.00"> + <route edges="0/2to0/1 0/1to1/1 1/1to2/1 2/1to3/1 3/1to4/1 4/1to4/2"/> + </vehicle> + <vehicle id="car1992" depart="1992.00"> + <route edges="1/3to1/4 1/4to0/4 0/4to0/3 0/3to0/2 0/2to0/1 0/1to0/0"/> + </vehicle> + <vehicle id="car1993" depart="1993.00"> + <route edges="4/3to3/3 3/3to2/3 2/3to2/2"/> + </vehicle> + <vehicle id="car1994" depart="1994.00"> + <route edges="0/2to0/3 0/3to1/3 1/3to2/3 2/3to3/3 3/3to4/3 4/3to4/2 4/2to4/1 4/1to4/0"/> + </vehicle> + <vehicle id="car1995" depart="1995.00"> + <route edges="3/2to3/3 3/3to3/2 3/2to2/2 2/2to2/1 2/1to1/1 1/1to0/1 0/1to1/1"/> + </vehicle> + <vehicle id="car1996" depart="1996.00"> + <route edges="4/3to3/3 3/3to3/2 3/2to3/1 3/1to3/0"/> + </vehicle> + <vehicle id="car1997" depart="1997.00"> + <route edges="4/1to4/2 4/2to4/3 4/3to3/3 3/3to2/3 2/3to1/3 1/3to0/3 0/3to0/2"/> + </vehicle> + <vehicle id="car1998" depart="1998.00"> + <route edges="1/4to1/3 1/3to1/2 1/2to1/1 1/1to1/0 1/0to2/0 2/0to3/0 3/0to2/0"/> + </vehicle> + <vehicle id="car1999" depart="1999.00"> + <route edges="1/4to1/3 1/3to1/2 1/2to1/1 1/1to1/0 1/0to1/1"/> + </vehicle> + <vehicle id="car2000" depart="2000.00"> + <route edges="2/3to2/4 2/4to1/4 1/4to0/4 0/4to0/3 0/3to0/2 0/2to0/1"/> + </vehicle> + <vehicle id="car2001" depart="2001.00"> + <route edges="3/2to2/2 2/2to1/2 1/2to1/1 1/1to0/1"/> + </vehicle> + <vehicle id="car2002" depart="2002.00"> + <route edges="4/4to3/4 3/4to2/4 2/4to2/3 2/3to2/2 2/2to2/1 2/1to1/1 1/1to2/1"/> + </vehicle> + <vehicle id="car2003" depart="2003.00"> + <route edges="4/3to3/3 3/3to3/4 3/4to2/4 2/4to1/4"/> + </vehicle> + <vehicle id="car2004" depart="2004.00"> + <route edges="4/3to4/2 4/2to3/2 3/2to3/1 3/1to2/1 2/1to1/1 1/1to0/1"/> + </vehicle> + <vehicle id="car2005" depart="2005.00"> + <route edges="3/2to4/2 4/2to3/2 3/2to3/1 3/1to2/1 2/1to1/1 1/1to1/2"/> + </vehicle> + <vehicle id="car2006" depart="2006.00"> + <route edges="1/4to0/4 0/4to1/4 1/4to1/3 1/3to1/2 1/2to1/1"/> + </vehicle> + <vehicle id="car2007" depart="2007.00"> + <route edges="3/1to3/2 3/2to2/2 2/2to1/2 1/2to1/3"/> + </vehicle> + <vehicle id="car2008" depart="2008.00"> + <route edges="0/2to0/1 0/1to0/2 0/2to1/2 1/2to1/3 1/3to2/3"/> + </vehicle> + <vehicle id="car2009" depart="2009.00"> + <route edges="0/3to0/4 0/4to1/4 1/4to2/4 2/4to3/4 3/4to3/3 3/3to3/2 3/2to2/2"/> + </vehicle> + <vehicle id="car2010" depart="2010.00"> + <route edges="3/1to3/2 3/2to3/3 3/3to2/3 2/3to1/3"/> + </vehicle> + <vehicle id="car2011" depart="2011.00"> + <route edges="1/2to2/2 2/2to3/2 3/2to3/1 3/1to3/0 3/0to2/0"/> + </vehicle> + <vehicle id="car2012" depart="2012.00"> + <route edges="0/2to0/1 0/1to1/1 1/1to2/1 2/1to3/1 3/1to4/1 4/1to4/2"/> + </vehicle> + <vehicle id="car2013" depart="2013.00"> + <route edges="2/1to2/2 2/2to1/2 1/2to0/2 0/2to0/3"/> + </vehicle> + <vehicle id="car2014" depart="2014.00"> + <route edges="4/1to4/2 4/2to3/2 3/2to2/2 2/2to1/2 1/2to2/2"/> + </vehicle> + <vehicle id="car2015" depart="2015.00"> + <route edges="4/3to4/2 4/2to3/2 3/2to2/2 2/2to1/2 1/2to0/2 0/2to0/3 0/3to0/2"/> + </vehicle> + <vehicle id="car2016" depart="2016.00"> + <route edges="1/2to1/3 1/3to2/3 2/3to3/3 3/3to3/2 3/2to3/1 3/1to4/1"/> + </vehicle> + <vehicle id="car2017" depart="2017.00"> + <route edges="1/2to2/2 2/2to3/2 3/2to3/3 3/3to4/3 4/3to4/4"/> + </vehicle> + <vehicle id="car2018" depart="2018.00"> + <route edges="1/3to2/3 2/3to2/2 2/2to2/1 2/1to2/0"/> + </vehicle> + <vehicle id="car2019" depart="2019.00"> + <route edges="3/0to4/0 4/0to3/0 3/0to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to2/2"/> + </vehicle> + <vehicle id="car2020" depart="2020.00"> + <route edges="0/2to0/1 0/1to1/1 1/1to2/1 2/1to3/1 3/1to4/1 4/1to3/1"/> + </vehicle> + <vehicle id="car2021" depart="2021.00"> + <route edges="1/1to1/2 1/2to2/2 2/2to2/3 2/3to3/3 3/3to4/3 4/3to3/3"/> + </vehicle> + <vehicle id="car2022" depart="2022.00"> + <route edges="1/3to2/3 2/3to2/2 2/2to2/1 2/1to2/0 2/0to3/0 3/0to4/0"/> + </vehicle> + <vehicle id="car2023" depart="2023.00"> + <route edges="2/1to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to0/3"/> + </vehicle> + <vehicle id="car2024" depart="2024.00"> + <route edges="0/3to1/3 1/3to2/3 2/3to3/3 3/3to4/3"/> + </vehicle> + <vehicle id="car2025" depart="2025.00"> + <route edges="1/0to0/0 0/0to0/1 0/1to0/2 0/2to1/2 1/2to0/2"/> + </vehicle> + <vehicle id="car2026" depart="2026.00"> + <route edges="2/2to1/2 1/2to2/2 2/2to2/3 2/3to3/3 3/3to4/3 4/3to4/4"/> + </vehicle> + <vehicle id="car2027" depart="2027.00"> + <route edges="3/3to3/2 3/2to2/2 2/2to2/1 2/1to1/1 1/1to0/1 0/1to0/2"/> + </vehicle> + <vehicle id="car2028" depart="2028.00"> + <route edges="1/4to0/4 0/4to1/4 1/4to2/4 2/4to2/3 2/3to2/2 2/2to2/1 2/1to2/2"/> + </vehicle> + <vehicle id="car2029" depart="2029.00"> + <route edges="1/0to0/0 0/0to0/1 0/1to1/1 1/1to1/2 1/2to2/2 2/2to3/2 3/2to4/2 4/2to4/1"/> + </vehicle> + <vehicle id="car2030" depart="2030.00"> + <route edges="3/2to2/2 2/2to1/2 1/2to1/3"/> + </vehicle> + <vehicle id="car2031" depart="2031.00"> + <route edges="4/3to4/4 4/4to4/3 4/3to4/2 4/2to4/1 4/1to4/0 4/0to3/0"/> + </vehicle> + <vehicle id="car2032" depart="2032.00"> + <route edges="0/4to1/4 1/4to1/3 1/3to1/2 1/2to1/1 1/1to2/1"/> + </vehicle> + <vehicle id="car2033" depart="2033.00"> + <route edges="1/0to1/1 1/1to2/1 2/1to2/2 2/2to2/3 2/3to2/4"/> + </vehicle> + <vehicle id="car2034" depart="2034.00"> + <route edges="2/3to2/2 2/2to2/1 2/1to2/0 2/0to1/0 1/0to0/0"/> + </vehicle> + <vehicle id="car2035" depart="2035.00"> + <route edges="1/3to0/3 0/3to1/3 1/3to2/3 2/3to3/3 3/3to4/3 4/3to4/2 4/2to4/1"/> + </vehicle> + <vehicle id="car2036" depart="2036.00"> + <route edges="0/4to0/3 0/3to0/2 0/2to0/1 0/1to1/1 1/1to2/1 2/1to2/2"/> + </vehicle> + <vehicle id="car2037" depart="2037.00"> + <route edges="1/3to1/2 1/2to1/1 1/1to1/0 1/0to0/0 0/0to0/1"/> + </vehicle> + <vehicle id="car2038" depart="2038.00"> + <route edges="3/2to4/2 4/2to4/3 4/3to4/4 4/4to3/4"/> + </vehicle> + <vehicle id="car2039" depart="2039.00"> + <route edges="2/3to3/3 3/3to3/4 3/4to2/4 2/4to1/4 1/4to0/4 0/4to0/3"/> + </vehicle> + <vehicle id="car2040" depart="2040.00"> + <route edges="2/1to2/0 2/0to2/1 2/1to3/1 3/1to4/1"/> + </vehicle> + <vehicle id="car2041" depart="2041.00"> + <route edges="0/4to0/3 0/3to1/3 1/3to2/3 2/3to2/4"/> + </vehicle> + <vehicle id="car2042" depart="2042.00"> + <route edges="1/3to0/3 0/3to1/3 1/3to2/3 2/3to2/2 2/2to2/1 2/1to2/0 2/0to2/1"/> + </vehicle> + <vehicle id="car2043" depart="2043.00"> + <route edges="4/0to3/0 3/0to2/0 2/0to2/1 2/1to2/0"/> + </vehicle> + <vehicle id="car2044" depart="2044.00"> + <route edges="3/0to4/0 4/0to4/1 4/1to4/2 4/2to4/3 4/3to4/4 4/4to3/4 3/4to2/4 2/4to1/4"/> + </vehicle> + <vehicle id="car2045" depart="2045.00"> + <route edges="1/1to1/0 1/0to2/0 2/0to3/0 3/0to4/0 4/0to4/1 4/1to4/2 4/2to4/3"/> + </vehicle> + <vehicle id="car2046" depart="2046.00"> + <route edges="1/2to1/3 1/3to1/2 1/2to1/1 1/1to0/1 0/1to0/0 0/0to1/0"/> + </vehicle> + <vehicle id="car2047" depart="2047.00"> + <route edges="2/3to2/2 2/2to2/1 2/1to2/0"/> + </vehicle> + <vehicle id="car2048" depart="2048.00"> + <route edges="3/1to3/0 3/0to2/0 2/0to1/0 1/0to0/0 0/0to0/1 0/1to0/2 0/2to0/3"/> + </vehicle> + <vehicle id="car2049" depart="2049.00"> + <route edges="2/2to2/3 2/3to2/2 2/2to2/1 2/1to1/1 1/1to1/0 1/0to2/0"/> + </vehicle> + <vehicle id="car2050" depart="2050.00"> + <route edges="1/3to1/2 1/2to1/3 1/3to1/4 1/4to2/4 2/4to3/4"/> + </vehicle> + <vehicle id="car2051" depart="2051.00"> + <route edges="4/0to4/1 4/1to4/2 4/2to4/3 4/3to4/4 4/4to3/4 3/4to2/4 2/4to1/4 1/4to1/3"/> + </vehicle> + <vehicle id="car2052" depart="2052.00"> + <route edges="1/4to0/4 0/4to1/4 1/4to2/4 2/4to3/4 3/4to4/4 4/4to3/4"/> + </vehicle> + <vehicle id="car2053" depart="2053.00"> + <route edges="4/1to3/1 3/1to2/1 2/1to1/1 1/1to0/1 0/1to0/2 0/2to1/2"/> + </vehicle> + <vehicle id="car2054" depart="2054.00"> + <route edges="3/2to3/3 3/3to3/2 3/2to3/1 3/1to2/1 2/1to2/0"/> + </vehicle> + <vehicle id="car2055" depart="2055.00"> + <route edges="4/4to4/3 4/3to3/3 3/3to3/4 3/4to2/4"/> + </vehicle> + <vehicle id="car2056" depart="2056.00"> + <route edges="1/2to2/2 2/2to2/3 2/3to3/3 3/3to3/4 3/4to2/4"/> + </vehicle> + <vehicle id="car2057" depart="2057.00"> + <route edges="4/3to4/4 4/4to3/4 3/4to2/4 2/4to2/3 2/3to2/2 2/2to2/1 2/1to2/0 2/0to3/0"/> + </vehicle> + <vehicle id="car2058" depart="2058.00"> + <route edges="4/1to4/2 4/2to4/3 4/3to4/4 4/4to3/4 3/4to2/4 2/4to1/4 1/4to0/4 0/4to0/3"/> + </vehicle> + <vehicle id="car2059" depart="2059.00"> + <route edges="2/4to1/4 1/4to0/4 0/4to0/3 0/3to0/2 0/2to0/3"/> + </vehicle> + <vehicle id="car2060" depart="2060.00"> + <route edges="1/1to0/1 0/1to1/1 1/1to2/1 2/1to3/1"/> + </vehicle> + <vehicle id="car2061" depart="2061.00"> + <route edges="4/1to3/1 3/1to3/2 3/2to3/3 3/3to4/3 4/3to4/4 4/4to3/4"/> + </vehicle> + <vehicle id="car2062" depart="2062.00"> + <route edges="0/2to0/1 0/1to0/2 0/2to1/2 1/2to1/3 1/3to2/3 2/3to3/3 3/3to4/3 4/3to4/2"/> + </vehicle> + <vehicle id="car2063" depart="2063.00"> + <route edges="3/3to2/3 2/3to1/3 1/3to1/2 1/2to0/2 0/2to1/2"/> + </vehicle> + <vehicle id="car2064" depart="2064.00"> + <route edges="2/0to2/1 2/1to3/1 3/1to3/2 3/2to4/2 4/2to4/1"/> + </vehicle> + <vehicle id="car2065" depart="2065.00"> + <route edges="2/0to3/0 3/0to2/0 2/0to2/1 2/1to2/2 2/2to2/3 2/3to2/4"/> + </vehicle> + <vehicle id="car2066" depart="2066.00"> + <route edges="0/3to1/3 1/3to1/2 1/2to1/1 1/1to1/0 1/0to1/1"/> + </vehicle> + <vehicle id="car2067" depart="2067.00"> + <route edges="0/1to0/2 0/2to0/3 0/3to0/4 0/4to1/4 1/4to2/4 2/4to3/4 3/4to4/4"/> + </vehicle> + <vehicle id="car2068" depart="2068.00"> + <route edges="3/4to4/4 4/4to4/3 4/3to3/3 3/3to2/3 2/3to1/3 1/3to0/3"/> + </vehicle> + <vehicle id="car2069" depart="2069.00"> + <route edges="2/3to2/4 2/4to2/3 2/3to2/2 2/2to2/1 2/1to3/1"/> + </vehicle> + <vehicle id="car2070" depart="2070.00"> + <route edges="1/2to1/1 1/1to1/2 1/2to2/2 2/2to2/3 2/3to3/3 3/3to4/3 4/3to4/2"/> + </vehicle> + <vehicle id="car2071" depart="2071.00"> + <route edges="3/4to4/4 4/4to4/3 4/3to4/2 4/2to3/2 3/2to3/1 3/1to2/1 2/1to3/1"/> + </vehicle> + <vehicle id="car2072" depart="2072.00"> + <route edges="4/4to4/3 4/3to3/3 3/3to3/2 3/2to2/2 2/2to1/2 1/2to0/2 0/2to0/1"/> + </vehicle> + <vehicle id="car2073" depart="2073.00"> + <route edges="3/2to4/2 4/2to4/3 4/3to4/4 4/4to3/4 3/4to2/4 2/4to1/4"/> + </vehicle> + <vehicle id="car2074" depart="2074.00"> + <route edges="2/3to3/3 3/3to4/3 4/3to4/2 4/2to4/1 4/1to3/1"/> + </vehicle> + <vehicle id="car2075" depart="2075.00"> + <route edges="3/0to3/1 3/1to3/2 3/2to2/2 2/2to1/2"/> + </vehicle> + <vehicle id="car2076" depart="2076.00"> + <route edges="3/1to4/1 4/1to3/1 3/1to2/1 2/1to1/1 1/1to0/1 0/1to0/2 0/2to0/3 0/3to0/4"/> + </vehicle> + <vehicle id="car2077" depart="2077.00"> + <route edges="2/2to3/2 3/2to3/3 3/3to3/4 3/4to2/4 2/4to1/4"/> + </vehicle> + <vehicle id="car2078" depart="2078.00"> + <route edges="4/0to3/0 3/0to2/0 2/0to1/0 1/0to0/0"/> + </vehicle> + <vehicle id="car2079" depart="2079.00"> + <route edges="4/1to4/0 4/0to3/0 3/0to2/0 2/0to1/0 1/0to0/0 0/0to0/1 0/1to0/2 0/2to0/3 0/3to1/3"/> + </vehicle> + <vehicle id="car2080" depart="2080.00"> + <route edges="2/0to3/0 3/0to4/0 4/0to4/1 4/1to4/2 4/2to3/2"/> + </vehicle> + <vehicle id="car2081" depart="2081.00"> + <route edges="1/4to0/4 0/4to0/3 0/3to0/2 0/2to1/2 1/2to2/2"/> + </vehicle> + <vehicle id="car2082" depart="2082.00"> + <route edges="2/3to1/3 1/3to2/3 2/3to3/3 3/3to4/3 4/3to4/2 4/2to4/3"/> + </vehicle> + <vehicle id="car2083" depart="2083.00"> + <route edges="1/0to1/1 1/1to0/1 0/1to0/2 0/2to1/2"/> + </vehicle> + <vehicle id="car2084" depart="2084.00"> + <route edges="4/1to3/1 3/1to3/2 3/2to3/3 3/3to3/4 3/4to4/4"/> + </vehicle> + <vehicle id="car2085" depart="2085.00"> + <route edges="3/1to3/2 3/2to3/3 3/3to2/3 2/3to1/3 1/3to0/3"/> + </vehicle> + <vehicle id="car2086" depart="2086.00"> + <route edges="0/2to1/2 1/2to1/3 1/3to2/3 2/3to2/4 2/4to1/4"/> + </vehicle> + <vehicle id="car2087" depart="2087.00"> + <route edges="3/4to3/3 3/3to2/3 2/3to2/2 2/2to1/2 1/2to1/1 1/1to0/1 0/1to0/0 0/0to1/0"/> + </vehicle> + <vehicle id="car2088" depart="2088.00"> + <route edges="4/2to3/2 3/2to2/2 2/2to1/2 1/2to0/2 0/2to0/3 0/3to0/2"/> + </vehicle> + <vehicle id="car2089" depart="2089.00"> + <route edges="0/4to1/4 1/4to1/3 1/3to1/2 1/2to1/1 1/1to1/0"/> + </vehicle> + <vehicle id="car2090" depart="2090.00"> + <route edges="1/0to2/0 2/0to3/0 3/0to4/0 4/0to4/1 4/1to4/2"/> + </vehicle> + <vehicle id="car2091" depart="2091.00"> + <route edges="3/0to2/0 2/0to2/1 2/1to2/2 2/2to2/3 2/3to2/4 2/4to3/4 3/4to4/4"/> + </vehicle> + <vehicle id="car2092" depart="2092.00"> + <route edges="0/3to0/4 0/4to1/4 1/4to2/4 2/4to2/3 2/3to2/2 2/2to2/1 2/1to2/2"/> + </vehicle> + <vehicle id="car2093" depart="2093.00"> + <route edges="0/2to0/3 0/3to0/4 0/4to1/4 1/4to2/4 2/4to3/4 3/4to3/3"/> + </vehicle> + <vehicle id="car2094" depart="2094.00"> + <route edges="4/2to4/1 4/1to3/1 3/1to2/1 2/1to2/2 2/2to1/2"/> + </vehicle> + <vehicle id="car2095" depart="2095.00"> + <route edges="3/4to3/3 3/3to3/2 3/2to3/1 3/1to4/1 4/1to4/2"/> + </vehicle> + <vehicle id="car2096" depart="2096.00"> + <route edges="2/4to2/3 2/3to3/3 3/3to3/2"/> + </vehicle> + <vehicle id="car2097" depart="2097.00"> + <route edges="0/1to0/0 0/0to0/1 0/1to0/2 0/2to0/3 0/3to0/4 0/4to1/4 1/4to2/4 2/4to3/4 3/4to3/3"/> + </vehicle> + <vehicle id="car2098" depart="2098.00"> + <route edges="1/1to1/0 1/0to2/0 2/0to3/0 3/0to4/0 4/0to4/1"/> + </vehicle> + <vehicle id="car2099" depart="2099.00"> + <route edges="0/4to0/3 0/3to0/2 0/2to0/1 0/1to1/1 1/1to1/2"/> + </vehicle> + <vehicle id="car2100" depart="2100.00"> + <route edges="0/2to0/3 0/3to1/3 1/3to2/3 2/3to2/2 2/2to2/1 2/1to3/1 3/1to4/1"/> + </vehicle> + <vehicle id="car2101" depart="2101.00"> + <route edges="3/3to3/4 3/4to2/4 2/4to1/4 1/4to0/4 0/4to0/3 0/3to0/2 0/2to0/3"/> + </vehicle> + <vehicle id="car2102" depart="2102.00"> + <route edges="0/1to1/1 1/1to0/1 0/1to0/2 0/2to0/3 0/3to0/4"/> + </vehicle> + <vehicle id="car2103" depart="2103.00"> + <route edges="3/1to3/0 3/0to3/1 3/1to3/2 3/2to3/3 3/3to2/3"/> + </vehicle> + <vehicle id="car2104" depart="2104.00"> + <route edges="3/3to3/4 3/4to4/4 4/4to4/3 4/3to4/2 4/2to4/1"/> + </vehicle> + <vehicle id="car2105" depart="2105.00"> + <route edges="1/1to0/1 0/1to1/1 1/1to1/2 1/2to2/2 2/2to3/2 3/2to4/2 4/2to3/2"/> + </vehicle> + <vehicle id="car2106" depart="2106.00"> + <route edges="1/0to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to0/4"/> + </vehicle> + <vehicle id="car2107" depart="2107.00"> + <route edges="0/2to1/2 1/2to2/2 2/2to3/2 3/2to4/2 4/2to4/1 4/1to4/0 4/0to3/0"/> + </vehicle> + <vehicle id="car2108" depart="2108.00"> + <route edges="1/1to2/1 2/1to2/2 2/2to2/3 2/3to3/3"/> + </vehicle> + <vehicle id="car2109" depart="2109.00"> + <route edges="0/2to1/2 1/2to1/3 1/3to2/3 2/3to2/4 2/4to1/4"/> + </vehicle> + <vehicle id="car2110" depart="2110.00"> + <route edges="1/0to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3"/> + </vehicle> + <vehicle id="car2111" depart="2111.00"> + <route edges="4/2to3/2 3/2to2/2 2/2to2/3 2/3to1/3"/> + </vehicle> + <vehicle id="car2112" depart="2112.00"> + <route edges="4/3to4/4 4/4to3/4 3/4to2/4 2/4to1/4 1/4to0/4 0/4to0/3 0/3to0/2 0/2to1/2"/> + </vehicle> + <vehicle id="car2113" depart="2113.00"> + <route edges="1/1to1/0 1/0to1/1 1/1to1/2 1/2to2/2 2/2to2/3"/> + </vehicle> + <vehicle id="car2114" depart="2114.00"> + <route edges="3/2to2/2 2/2to1/2 1/2to1/3 1/3to1/4 1/4to1/3"/> + </vehicle> + <vehicle id="car2115" depart="2115.00"> + <route edges="2/4to2/3 2/3to2/2 2/2to2/1 2/1to2/0"/> + </vehicle> + <vehicle id="car2116" depart="2116.00"> + <route edges="4/3to4/2 4/2to4/1 4/1to4/0 4/0to3/0 3/0to2/0 2/0to1/0 1/0to1/1"/> + </vehicle> + <vehicle id="car2117" depart="2117.00"> + <route edges="0/3to0/4 0/4to1/4 1/4to2/4 2/4to3/4 3/4to4/4 4/4to3/4"/> + </vehicle> + <vehicle id="car2118" depart="2118.00"> + <route edges="0/3to1/3 1/3to2/3 2/3to3/3 3/3to2/3"/> + </vehicle> + <vehicle id="car2119" depart="2119.00"> + <route edges="3/2to2/2 2/2to2/3 2/3to2/4"/> + </vehicle> + <vehicle id="car2120" depart="2120.00"> + <route edges="0/1to0/2 0/2to1/2 1/2to1/3 1/3to1/4"/> + </vehicle> + <vehicle id="car2121" depart="2121.00"> + <route edges="2/4to3/4 3/4to3/3 3/3to2/3 2/3to1/3 1/3to0/3"/> + </vehicle> + <vehicle id="car2122" depart="2122.00"> + <route edges="4/4to3/4 3/4to2/4 2/4to2/3 2/3to2/2 2/2to2/1 2/1to2/0"/> + </vehicle> + <vehicle id="car2123" depart="2123.00"> + <route edges="4/0to4/1 4/1to4/0 4/0to3/0 3/0to2/0 2/0to1/0 1/0to2/0"/> + </vehicle> + <vehicle id="car2124" depart="2124.00"> + <route edges="0/2to0/1 0/1to0/0 0/0to1/0 1/0to2/0 2/0to3/0 3/0to4/0 4/0to3/0"/> + </vehicle> + <vehicle id="car2125" depart="2125.00"> + <route edges="1/0to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to2/4 2/4to3/4 3/4to4/4 4/4to4/3"/> + </vehicle> + <vehicle id="car2126" depart="2126.00"> + <route edges="2/2to2/1 2/1to1/1 1/1to0/1 0/1to0/2 0/2to0/3 0/3to0/2"/> + </vehicle> + <vehicle id="car2127" depart="2127.00"> + <route edges="2/0to2/1 2/1to2/2 2/2to2/3 2/3to2/4 2/4to2/3"/> + </vehicle> + <vehicle id="car2128" depart="2128.00"> + <route edges="0/3to0/2 0/2to1/2 1/2to2/2 2/2to3/2 3/2to4/2 4/2to4/3"/> + </vehicle> + <vehicle id="car2129" depart="2129.00"> + <route edges="4/4to3/4 3/4to2/4 2/4to1/4 1/4to0/4 0/4to0/3 0/3to0/2 0/2to0/1"/> + </vehicle> + <vehicle id="car2130" depart="2130.00"> + <route edges="4/4to3/4 3/4to2/4 2/4to2/3 2/3to1/3 1/3to2/3"/> + </vehicle> + <vehicle id="car2131" depart="2131.00"> + <route edges="2/4to2/3 2/3to2/4 2/4to3/4 3/4to4/4 4/4to4/3"/> + </vehicle> + <vehicle id="car2132" depart="2132.00"> + <route edges="0/3to0/4 0/4to1/4 1/4to2/4 2/4to3/4 3/4to4/4 4/4to4/3 4/3to4/2 4/2to4/1 4/1to4/0 4/0to3/0"/> + </vehicle> + <vehicle id="car2133" depart="2133.00"> + <route edges="3/2to3/3 3/3to3/2 3/2to2/2 2/2to1/2 1/2to1/3"/> + </vehicle> + <vehicle id="car2134" depart="2134.00"> + <route edges="3/2to3/1 3/1to2/1 2/1to2/2 2/2to2/3 2/3to2/4 2/4to1/4"/> + </vehicle> + <vehicle id="car2135" depart="2135.00"> + <route edges="1/2to1/1 1/1to1/2 1/2to2/2 2/2to2/3 2/3to3/3 3/3to4/3"/> + </vehicle> + <vehicle id="car2136" depart="2136.00"> + <route edges="2/2to1/2 1/2to1/3 1/3to1/4 1/4to2/4 2/4to3/4"/> + </vehicle> + <vehicle id="car2137" depart="2137.00"> + <route edges="2/0to2/1 2/1to2/2 2/2to1/2"/> + </vehicle> + <vehicle id="car2138" depart="2138.00"> + <route edges="1/2to1/3 1/3to2/3 2/3to3/3 3/3to3/2"/> + </vehicle> + <vehicle id="car2139" depart="2139.00"> + <route edges="3/1to3/2 3/2to4/2 4/2to4/3 4/3to4/4"/> + </vehicle> + <vehicle id="car2140" depart="2140.00"> + <route edges="1/4to2/4 2/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to3/2"/> + </vehicle> + <vehicle id="car2141" depart="2141.00"> + <route edges="0/4to1/4 1/4to2/4 2/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to2/0"/> + </vehicle> + <vehicle id="car2142" depart="2142.00"> + <route edges="3/3to4/3 4/3to3/3 3/3to3/2 3/2to2/2 2/2to2/1 2/1to1/1 1/1to0/1"/> + </vehicle> + <vehicle id="car2143" depart="2143.00"> + <route edges="4/0to4/1 4/1to4/2 4/2to4/3 4/3to3/3 3/3to2/3 2/3to2/2"/> + </vehicle> + <vehicle id="car2144" depart="2144.00"> + <route edges="4/3to4/2 4/2to3/2 3/2to3/1 3/1to2/1 2/1to1/1 1/1to0/1 0/1to0/0"/> + </vehicle> + <vehicle id="car2145" depart="2145.00"> + <route edges="2/1to1/1 1/1to2/1 2/1to2/2 2/2to3/2 3/2to4/2 4/2to4/1"/> + </vehicle> + <vehicle id="car2146" depart="2146.00"> + <route edges="1/4to2/4 2/4to2/3 2/3to1/3 1/3to1/2"/> + </vehicle> + <vehicle id="car2147" depart="2147.00"> + <route edges="1/4to2/4 2/4to2/3 2/3to2/2 2/2to2/1 2/1to2/2"/> + </vehicle> + <vehicle id="car2148" depart="2148.00"> + <route edges="0/1to0/0 0/0to1/0 1/0to2/0 2/0to2/1 2/1to2/2 2/2to2/3 2/3to2/4"/> + </vehicle> + <vehicle id="car2149" depart="2149.00"> + <route edges="4/0to4/1 4/1to4/2 4/2to4/3 4/3to3/3 3/3to2/3 2/3to1/3 1/3to0/3"/> + </vehicle> + <vehicle id="car2150" depart="2150.00"> + <route edges="0/3to1/3 1/3to2/3 2/3to3/3 3/3to3/2 3/2to3/1"/> + </vehicle> + <vehicle id="car2151" depart="2151.00"> + <route edges="2/2to1/2 1/2to0/2 0/2to0/3 0/3to0/2"/> + </vehicle> + <vehicle id="car2152" depart="2152.00"> + <route edges="3/1to3/2 3/2to2/2 2/2to2/3 2/3to3/3"/> + </vehicle> + <vehicle id="car2153" depart="2153.00"> + <route edges="2/2to1/2 1/2to1/1 1/1to1/0 1/0to2/0 2/0to3/0 3/0to4/0 4/0to4/1"/> + </vehicle> + <vehicle id="car2154" depart="2154.00"> + <route edges="2/2to2/3 2/3to2/2 2/2to2/1 2/1to2/0 2/0to1/0"/> + </vehicle> + <vehicle id="car2155" depart="2155.00"> + <route edges="2/2to2/1 2/1to2/2 2/2to3/2 3/2to3/3 3/3to4/3 4/3to4/4"/> + </vehicle> + <vehicle id="car2156" depart="2156.00"> + <route edges="3/0to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to0/4"/> + </vehicle> + <vehicle id="car2157" depart="2157.00"> + <route edges="4/4to3/4 3/4to2/4 2/4to1/4 1/4to1/3 1/3to1/2"/> + </vehicle> + <vehicle id="car2158" depart="2158.00"> + <route edges="3/2to4/2 4/2to3/2 3/2to3/1 3/1to2/1 2/1to1/1 1/1to0/1 0/1to0/0"/> + </vehicle> + <vehicle id="car2159" depart="2159.00"> + <route edges="4/1to4/2 4/2to3/2 3/2to2/2 2/2to1/2 1/2to1/3 1/3to2/3"/> + </vehicle> + <vehicle id="car2160" depart="2160.00"> + <route edges="0/2to1/2 1/2to1/3 1/3to2/3"/> + </vehicle> + <vehicle id="car2161" depart="2161.00"> + <route edges="3/0to4/0 4/0to4/1 4/1to4/2 4/2to4/3 4/3to4/4 4/4to3/4 3/4to2/4 2/4to2/3"/> + </vehicle> + <vehicle id="car2162" depart="2162.00"> + <route edges="4/2to3/2 3/2to2/2 2/2to1/2 1/2to0/2 0/2to0/1"/> + </vehicle> + <vehicle id="car2163" depart="2163.00"> + <route edges="0/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to1/4"/> + </vehicle> + <vehicle id="car2164" depart="2164.00"> + <route edges="1/2to1/1 1/1to2/1 2/1to3/1 3/1to4/1"/> + </vehicle> + <vehicle id="car2165" depart="2165.00"> + <route edges="1/4to2/4 2/4to2/3 2/3to2/2 2/2to2/1 2/1to2/0 2/0to1/0"/> + </vehicle> + <vehicle id="car2166" depart="2166.00"> + <route edges="0/3to0/2 0/2to0/1 0/1to1/1 1/1to2/1 2/1to3/1 3/1to3/2"/> + </vehicle> + <vehicle id="car2167" depart="2167.00"> + <route edges="3/0to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to1/3"/> + </vehicle> + <vehicle id="car2168" depart="2168.00"> + <route edges="4/0to3/0 3/0to3/1 3/1to3/2 3/2to3/3 3/3to3/4"/> + </vehicle> + <vehicle id="car2169" depart="2169.00"> + <route edges="4/0to3/0 3/0to2/0 2/0to2/1 2/1to2/2 2/2to2/3 2/3to1/3"/> + </vehicle> + <vehicle id="car2170" depart="2170.00"> + <route edges="4/4to4/3 4/3to4/2 4/2to4/1 4/1to4/0 4/0to3/0 3/0to2/0 2/0to2/1"/> + </vehicle> + <vehicle id="car2171" depart="2171.00"> + <route edges="1/1to1/2 1/2to2/2 2/2to3/2 3/2to4/2"/> + </vehicle> + <vehicle id="car2172" depart="2172.00"> + <route edges="0/2to1/2 1/2to2/2 2/2to3/2 3/2to4/2 4/2to4/1 4/1to4/0 4/0to3/0"/> + </vehicle> + <vehicle id="car2173" depart="2173.00"> + <route edges="0/2to1/2 1/2to1/3 1/3to1/4"/> + </vehicle> + <vehicle id="car2174" depart="2174.00"> + <route edges="0/2to0/1 0/1to0/2 0/2to0/3 0/3to0/4 0/4to1/4 1/4to2/4 2/4to3/4 3/4to2/4"/> + </vehicle> + <vehicle id="car2175" depart="2175.00"> + <route edges="2/2to1/2 1/2to1/1 1/1to0/1"/> + </vehicle> + <vehicle id="car2176" depart="2176.00"> + <route edges="3/3to4/3 4/3to4/2 4/2to3/2 3/2to3/1 3/1to2/1"/> + </vehicle> + <vehicle id="car2177" depart="2177.00"> + <route edges="3/0to2/0 2/0to2/1 2/1to2/2"/> + </vehicle> + <vehicle id="car2178" depart="2178.00"> + <route edges="3/3to3/2 3/2to3/1 3/1to3/0 3/0to2/0 2/0to1/0 1/0to1/1"/> + </vehicle> + <vehicle id="car2179" depart="2179.00"> + <route edges="0/0to1/0 1/0to2/0 2/0to2/1 2/1to2/2 2/2to3/2 3/2to2/2"/> + </vehicle> + <vehicle id="car2180" depart="2180.00"> + <route edges="4/1to3/1 3/1to3/2 3/2to3/3 3/3to3/4 3/4to2/4 2/4to1/4"/> + </vehicle> + <vehicle id="car2181" depart="2181.00"> + <route edges="1/1to1/0 1/0to1/1 1/1to2/1 2/1to2/2 2/2to3/2 3/2to3/3 3/3to4/3 4/3to4/2"/> + </vehicle> + <vehicle id="car2182" depart="2182.00"> + <route edges="4/2to4/3 4/3to3/3 3/3to2/3 2/3to1/3"/> + </vehicle> + <vehicle id="car2183" depart="2183.00"> + <route edges="3/0to2/0 2/0to2/1 2/1to2/2 2/2to2/3 2/3to3/3 3/3to3/2"/> + </vehicle> + <vehicle id="car2184" depart="2184.00"> + <route edges="2/1to1/1 1/1to1/2 1/2to2/2 2/2to2/3 2/3to3/3"/> + </vehicle> + <vehicle id="car2185" depart="2185.00"> + <route edges="3/0to3/1 3/1to2/1 2/1to2/2 2/2to3/2"/> + </vehicle> + <vehicle id="car2186" depart="2186.00"> + <route edges="0/4to1/4 1/4to2/4 2/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to3/2"/> + </vehicle> + <vehicle id="car2187" depart="2187.00"> + <route edges="1/3to0/3 0/3to1/3 1/3to2/3 2/3to2/2 2/2to2/1 2/1to1/1"/> + </vehicle> + <vehicle id="car2188" depart="2188.00"> + <route edges="1/3to1/2 1/2to1/3 1/3to1/4 1/4to2/4 2/4to3/4 3/4to4/4"/> + </vehicle> + <vehicle id="car2189" depart="2189.00"> + <route edges="2/0to2/1 2/1to2/2 2/2to2/3 2/3to2/4 2/4to3/4 3/4to3/3"/> + </vehicle> + <vehicle id="car2190" depart="2190.00"> + <route edges="3/0to4/0 4/0to3/0 3/0to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to0/2"/> + </vehicle> + <vehicle id="car2191" depart="2191.00"> + <route edges="2/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to2/0 2/0to2/1"/> + </vehicle> + <vehicle id="car2192" depart="2192.00"> + <route edges="0/3to0/4 0/4to1/4 1/4to1/3 1/3to1/2 1/2to1/1 1/1to1/0 1/0to2/0"/> + </vehicle> + <vehicle id="car2193" depart="2193.00"> + <route edges="1/1to2/1 2/1to2/2 2/2to2/3 2/3to2/4 2/4to3/4 3/4to4/4"/> + </vehicle> + <vehicle id="car2194" depart="2194.00"> + <route edges="2/1to3/1 3/1to2/1 2/1to2/2 2/2to2/3 2/3to2/4"/> + </vehicle> + <vehicle id="car2195" depart="2195.00"> + <route edges="2/1to1/1 1/1to1/0 1/0to2/0 2/0to3/0 3/0to4/0"/> + </vehicle> + <vehicle id="car2196" depart="2196.00"> + <route edges="0/1to0/0 0/0to0/1 0/1to0/2 0/2to0/3 0/3to0/4 0/4to1/4"/> + </vehicle> + <vehicle id="car2197" depart="2197.00"> + <route edges="3/4to2/4 2/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to2/1"/> + </vehicle> + <vehicle id="car2198" depart="2198.00"> + <route edges="1/0to1/1 1/1to2/1 2/1to2/0 2/0to3/0 3/0to4/0 4/0to4/1"/> + </vehicle> + <vehicle id="car2199" depart="2199.00"> + <route edges="4/3to4/4 4/4to3/4 3/4to2/4 2/4to2/3 2/3to2/2 2/2to1/2"/> + </vehicle> + <vehicle id="car2200" depart="2200.00"> + <route edges="0/0to1/0 1/0to2/0 2/0to3/0 3/0to4/0 4/0to4/1"/> + </vehicle> + <vehicle id="car2201" depart="2201.00"> + <route edges="0/2to0/3 0/3to0/4 0/4to1/4 1/4to2/4 2/4to3/4"/> + </vehicle> + <vehicle id="car2202" depart="2202.00"> + <route edges="2/0to2/1 2/1to2/2 2/2to2/3 2/3to2/4 2/4to1/4 1/4to1/3"/> + </vehicle> + <vehicle id="car2203" depart="2203.00"> + <route edges="3/1to2/1 2/1to1/1 1/1to0/1 0/1to0/2 0/2to1/2"/> + </vehicle> + <vehicle id="car2204" depart="2204.00"> + <route edges="4/3to3/3 3/3to3/2 3/2to3/1"/> + </vehicle> + <vehicle id="car2205" depart="2205.00"> + <route edges="0/4to0/3 0/3to0/2"/> + </vehicle> + <vehicle id="car2206" depart="2206.00"> + <route edges="2/2to3/2 3/2to3/3 3/3to3/4 3/4to4/4"/> + </vehicle> + <vehicle id="car2207" depart="2207.00"> + <route edges="1/2to0/2 0/2to1/2 1/2to2/2 2/2to3/2 3/2to4/2 4/2to4/1 4/1to4/0"/> + </vehicle> + <vehicle id="car2208" depart="2208.00"> + <route edges="1/1to2/1 2/1to1/1 1/1to0/1 0/1to0/2 0/2to0/3 0/3to0/4"/> + </vehicle> + <vehicle id="car2209" depart="2209.00"> + <route edges="3/4to2/4 2/4to2/3 2/3to1/3 1/3to1/4"/> + </vehicle> + <vehicle id="car2210" depart="2210.00"> + <route edges="2/4to1/4 1/4to2/4 2/4to2/3 2/3to2/2 2/2to2/1 2/1to2/0 2/0to1/0"/> + </vehicle> + <vehicle id="car2211" depart="2211.00"> + <route edges="3/2to4/2 4/2to3/2 3/2to3/1 3/1to2/1 2/1to1/1 1/1to1/2"/> + </vehicle> + <vehicle id="car2212" depart="2212.00"> + <route edges="2/0to3/0 3/0to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to0/4 0/4to0/3"/> + </vehicle> + <vehicle id="car2213" depart="2213.00"> + <route edges="1/0to1/1 1/1to2/1 2/1to2/2 2/2to3/2 3/2to3/3 3/3to4/3 4/3to4/4"/> + </vehicle> + <vehicle id="car2214" depart="2214.00"> + <route edges="2/1to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to0/2"/> + </vehicle> + <vehicle id="car2215" depart="2215.00"> + <route edges="2/4to2/3 2/3to2/2 2/2to2/1"/> + </vehicle> + <vehicle id="car2216" depart="2216.00"> + <route edges="1/4to1/3 1/3to2/3 2/3to3/3 3/3to4/3 4/3to3/3"/> + </vehicle> + <vehicle id="car2217" depart="2217.00"> + <route edges="1/3to1/2 1/2to1/1 1/1to1/0 1/0to2/0 2/0to3/0"/> + </vehicle> + <vehicle id="car2218" depart="2218.00"> + <route edges="3/1to3/2 3/2to4/2 4/2to4/3 4/3to4/4"/> + </vehicle> + <vehicle id="car2219" depart="2219.00"> + <route edges="4/1to4/0 4/0to4/1 4/1to4/2 4/2to4/3"/> + </vehicle> + <vehicle id="car2220" depart="2220.00"> + <route edges="1/4to1/3 1/3to1/2 1/2to2/2 2/2to3/2 3/2to3/1"/> + </vehicle> + <vehicle id="car2221" depart="2221.00"> + <route edges="3/4to3/3 3/3to2/3 2/3to2/2 2/2to1/2 1/2to1/1 1/1to0/1 0/1to0/0 0/0to1/0"/> + </vehicle> + <vehicle id="car2222" depart="2222.00"> + <route edges="4/0to3/0 3/0to3/1 3/1to2/1"/> + </vehicle> + <vehicle id="car2223" depart="2223.00"> + <route edges="4/3to3/3 3/3to3/2 3/2to3/1 3/1to4/1"/> + </vehicle> + <vehicle id="car2224" depart="2224.00"> + <route edges="3/3to4/3 4/3to3/3 3/3to3/2 3/2to2/2 2/2to2/1 2/1to1/1 1/1to2/1"/> + </vehicle> + <vehicle id="car2225" depart="2225.00"> + <route edges="2/3to2/4 2/4to2/3 2/3to1/3 1/3to0/3"/> + </vehicle> + <vehicle id="car2226" depart="2226.00"> + <route edges="4/3to4/2 4/2to3/2 3/2to2/2 2/2to1/2 1/2to1/3 1/3to1/4 1/4to1/3"/> + </vehicle> + <vehicle id="car2227" depart="2227.00"> + <route edges="3/4to2/4 2/4to1/4 1/4to0/4 0/4to0/3 0/3to0/4"/> + </vehicle> + <vehicle id="car2228" depart="2228.00"> + <route edges="2/0to1/0 1/0to1/1 1/1to2/1 2/1to2/2 2/2to3/2 3/2to4/2 4/2to3/2"/> + </vehicle> + <vehicle id="car2229" depart="2229.00"> + <route edges="2/0to1/0 1/0to2/0 2/0to3/0 3/0to4/0 4/0to4/1 4/1to4/2 4/2to4/3 4/3to4/4 4/4to3/4"/> + </vehicle> + <vehicle id="car2230" depart="2230.00"> + <route edges="3/4to3/3 3/3to2/3 2/3to2/2 2/2to2/1 2/1to1/1 1/1to1/2"/> + </vehicle> + <vehicle id="car2231" depart="2231.00"> + <route edges="1/1to0/1 0/1to1/1 1/1to2/1 2/1to3/1 3/1to4/1 4/1to4/2"/> + </vehicle> + <vehicle id="car2232" depart="2232.00"> + <route edges="2/0to2/1 2/1to1/1 1/1to0/1 0/1to0/0"/> + </vehicle> + <vehicle id="car2233" depart="2233.00"> + <route edges="4/1to3/1 3/1to3/2 3/2to3/3 3/3to3/4 3/4to3/3"/> + </vehicle> + <vehicle id="car2234" depart="2234.00"> + <route edges="4/3to3/3 3/3to3/2 3/2to3/1 3/1to2/1 2/1to3/1"/> + </vehicle> + <vehicle id="car2235" depart="2235.00"> + <route edges="3/2to3/1 3/1to4/1 4/1to4/0"/> + </vehicle> + <vehicle id="car2236" depart="2236.00"> + <route edges="3/1to4/1 4/1to3/1 3/1to2/1 2/1to2/2 2/2to2/3"/> + </vehicle> + <vehicle id="car2237" depart="2237.00"> + <route edges="1/4to0/4 0/4to1/4 1/4to2/4 2/4to3/4"/> + </vehicle> + <vehicle id="car2238" depart="2238.00"> + <route edges="3/4to3/3 3/3to3/2 3/2to4/2"/> + </vehicle> + <vehicle id="car2239" depart="2239.00"> + <route edges="2/1to2/2 2/2to2/1 2/1to1/1 1/1to0/1 0/1to0/0"/> + </vehicle> + <vehicle id="car2240" depart="2240.00"> + <route edges="0/1to1/1 1/1to1/0 1/0to2/0 2/0to3/0 3/0to4/0"/> + </vehicle> + <vehicle id="car2241" depart="2241.00"> + <route edges="3/0to3/1 3/1to3/2 3/2to3/3 3/3to4/3"/> + </vehicle> + <vehicle id="car2242" depart="2242.00"> + <route edges="0/3to1/3 1/3to2/3 2/3to2/2 2/2to2/1 2/1to2/0 2/0to2/1"/> + </vehicle> + <vehicle id="car2243" depart="2243.00"> + <route edges="3/0to3/1 3/1to3/2 3/2to3/3 3/3to2/3 2/3to1/3 1/3to1/2"/> + </vehicle> + <vehicle id="car2244" depart="2244.00"> + <route edges="0/2to0/3 0/3to0/4 0/4to1/4"/> + </vehicle> + <vehicle id="car2245" depart="2245.00"> + <route edges="2/2to3/2 3/2to3/3 3/3to4/3 4/3to4/4"/> + </vehicle> + <vehicle id="car2246" depart="2246.00"> + <route edges="3/4to4/4 4/4to4/3 4/3to3/3 3/3to3/2"/> + </vehicle> + <vehicle id="car2247" depart="2247.00"> + <route edges="4/0to3/0 3/0to3/1 3/1to3/2"/> + </vehicle> + <vehicle id="car2248" depart="2248.00"> + <route edges="3/3to4/3 4/3to3/3 3/3to2/3 2/3to1/3 1/3to1/2"/> + </vehicle> + <vehicle id="car2249" depart="2249.00"> + <route edges="1/2to0/2 0/2to1/2 1/2to2/2 2/2to3/2 3/2to3/1 3/1to3/2"/> + </vehicle> + <vehicle id="car2250" depart="2250.00"> + <route edges="1/0to2/0 2/0to3/0"/> + </vehicle> + <vehicle id="car2251" depart="2251.00"> + <route edges="1/0to1/1 1/1to2/1 2/1to3/1 3/1to4/1 4/1to4/0"/> + </vehicle> + <vehicle id="car2252" depart="2252.00"> + <route edges="4/3to3/3 3/3to4/3 4/3to4/2 4/2to4/1 4/1to4/0"/> + </vehicle> + <vehicle id="car2253" depart="2253.00"> + <route edges="1/1to1/0 1/0to1/1 1/1to2/1 2/1to2/2 2/2to3/2 3/2to3/3 3/3to4/3 4/3to3/3"/> + </vehicle> + <vehicle id="car2254" depart="2254.00"> + <route edges="4/2to4/1 4/1to4/0 4/0to3/0 3/0to4/0"/> + </vehicle> + <vehicle id="car2255" depart="2255.00"> + <route edges="3/0to3/1 3/1to3/2 3/2to4/2 4/2to3/2"/> + </vehicle> + <vehicle id="car2256" depart="2256.00"> + <route edges="4/3to4/4 4/4to3/4 3/4to2/4 2/4to1/4 1/4to1/3 1/3to1/2 1/2to1/1 1/1to1/0 1/0to2/0"/> + </vehicle> + <vehicle id="car2257" depart="2257.00"> + <route edges="3/2to2/2 2/2to2/1 2/1to2/0 2/0to1/0 1/0to0/0"/> + </vehicle> + <vehicle id="car2258" depart="2258.00"> + <route edges="1/4to1/3 1/3to2/3 2/3to3/3 3/3to4/3 4/3to3/3"/> + </vehicle> + <vehicle id="car2259" depart="2259.00"> + <route edges="0/3to0/4 0/4to1/4 1/4to2/4 2/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1"/> + </vehicle> + <vehicle id="car2260" depart="2260.00"> + <route edges="2/1to1/1 1/1to2/1 2/1to2/2 2/2to3/2 3/2to4/2 4/2to4/1"/> + </vehicle> + <vehicle id="car2261" depart="2261.00"> + <route edges="0/3to0/4 0/4to1/4 1/4to2/4 2/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1"/> + </vehicle> + <vehicle id="car2262" depart="2262.00"> + <route edges="1/0to2/0 2/0to3/0 3/0to4/0 4/0to4/1"/> + </vehicle> + <vehicle id="car2263" depart="2263.00"> + <route edges="4/0to4/1 4/1to4/2 4/2to4/3 4/3to4/4 4/4to3/4 3/4to2/4 2/4to3/4"/> + </vehicle> + <vehicle id="car2264" depart="2264.00"> + <route edges="4/4to4/3 4/3to3/3 3/3to3/2 3/2to2/2 2/2to1/2 1/2to1/3"/> + </vehicle> + <vehicle id="car2265" depart="2265.00"> + <route edges="2/0to2/1 2/1to2/2 2/2to2/3 2/3to2/4 2/4to1/4 1/4to0/4 0/4to0/3"/> + </vehicle> + <vehicle id="car2266" depart="2266.00"> + <route edges="3/0to2/0 2/0to2/1 2/1to3/1 3/1to3/2 3/2to4/2 4/2to3/2"/> + </vehicle> + <vehicle id="car2267" depart="2267.00"> + <route edges="1/4to1/3 1/3to1/2 1/2to1/1 1/1to2/1 2/1to3/1 3/1to3/2"/> + </vehicle> + <vehicle id="car2268" depart="2268.00"> + <route edges="2/1to2/2 2/2to2/1 2/1to2/0 2/0to1/0 1/0to0/0 0/0to0/1"/> + </vehicle> + <vehicle id="car2269" depart="2269.00"> + <route edges="3/2to3/3 3/3to3/2 3/2to2/2 2/2to1/2 1/2to0/2"/> + </vehicle> + <vehicle id="car2270" depart="2270.00"> + <route edges="2/4to2/3 2/3to2/2 2/2to3/2 3/2to4/2"/> + </vehicle> + <vehicle id="car2271" depart="2271.00"> + <route edges="3/0to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to0/3"/> + </vehicle> + <vehicle id="car2272" depart="2272.00"> + <route edges="2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to1/3"/> + </vehicle> + <vehicle id="car2273" depart="2273.00"> + <route edges="4/3to4/4 4/4to3/4 3/4to3/3 3/3to2/3 2/3to2/4"/> + </vehicle> + <vehicle id="car2274" depart="2274.00"> + <route edges="2/4to1/4 1/4to1/3 1/3to1/2 1/2to0/2"/> + </vehicle> + <vehicle id="car2275" depart="2275.00"> + <route edges="2/2to2/3 2/3to3/3 3/3to4/3 4/3to4/2 4/2to4/3"/> + </vehicle> + <vehicle id="car2276" depart="2276.00"> + <route edges="4/1to4/0 4/0to3/0 3/0to2/0 2/0to1/0 1/0to0/0 0/0to0/1 0/1to0/2 0/2to0/3 0/3to1/3"/> + </vehicle> + <vehicle id="car2277" depart="2277.00"> + <route edges="0/1to0/2 0/2to0/3 0/3to1/3"/> + </vehicle> + <vehicle id="car2278" depart="2278.00"> + <route edges="4/1to3/1 3/1to3/2 3/2to3/3 3/3to3/4 3/4to4/4"/> + </vehicle> + <vehicle id="car2279" depart="2279.00"> + <route edges="1/2to1/3 1/3to2/3 2/3to3/3 3/3to4/3 4/3to4/2 4/2to4/1 4/1to4/0"/> + </vehicle> + <vehicle id="car2280" depart="2280.00"> + <route edges="3/0to2/0 2/0to2/1 2/1to2/2 2/2to2/3 2/3to3/3 3/3to2/3"/> + </vehicle> + <vehicle id="car2281" depart="2281.00"> + <route edges="4/1to4/2 4/2to4/3 4/3to3/3 3/3to2/3 2/3to1/3 1/3to1/2"/> + </vehicle> + <vehicle id="car2282" depart="2282.00"> + <route edges="4/4to4/3 4/3to3/3 3/3to3/2"/> + </vehicle> + <vehicle id="car2283" depart="2283.00"> + <route edges="0/4to1/4 1/4to2/4 2/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to4/0 4/0to4/1"/> + </vehicle> + <vehicle id="car2284" depart="2284.00"> + <route edges="3/1to2/1 2/1to2/2 2/2to3/2 3/2to3/3 3/3to4/3"/> + </vehicle> + <vehicle id="car2285" depart="2285.00"> + <route edges="0/1to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to0/4 0/4to0/3"/> + </vehicle> + <vehicle id="car2286" depart="2286.00"> + <route edges="2/1to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to2/4 2/4to3/4 3/4to4/4 4/4to4/3"/> + </vehicle> + <vehicle id="car2287" depart="2287.00"> + <route edges="4/2to4/3 4/3to4/2 4/2to3/2 3/2to3/1 3/1to2/1 2/1to1/1 1/1to0/1 0/1to0/2"/> + </vehicle> + <vehicle id="car2288" depart="2288.00"> + <route edges="1/4to0/4 0/4to1/4 1/4to2/4 2/4to3/4 3/4to3/3 3/3to3/2 3/2to2/2"/> + </vehicle> + <vehicle id="car2289" depart="2289.00"> + <route edges="4/1to3/1 3/1to3/0 3/0to2/0 2/0to1/0 1/0to1/1"/> + </vehicle> + <vehicle id="car2290" depart="2290.00"> + <route edges="1/0to0/0 0/0to0/1 0/1to1/1 1/1to1/2 1/2to2/2 2/2to2/3"/> + </vehicle> + <vehicle id="car2291" depart="2291.00"> + <route edges="1/2to1/1 1/1to2/1 2/1to3/1 3/1to4/1 4/1to4/2"/> + </vehicle> + <vehicle id="car2292" depart="2292.00"> + <route edges="4/3to4/4 4/4to3/4 3/4to2/4 2/4to2/3 2/3to1/3"/> + </vehicle> + <vehicle id="car2293" depart="2293.00"> + <route edges="2/3to3/3 3/3to3/2 3/2to3/1 3/1to2/1 2/1to2/0 2/0to3/0"/> + </vehicle> + <vehicle id="car2294" depart="2294.00"> + <route edges="0/2to0/3 0/3to1/3 1/3to2/3 2/3to3/3 3/3to3/2"/> + </vehicle> + <vehicle id="car2295" depart="2295.00"> + <route edges="0/1to0/0 0/0to1/0 1/0to2/0 2/0to3/0 3/0to3/1 3/1to3/2"/> + </vehicle> + <vehicle id="car2296" depart="2296.00"> + <route edges="3/1to3/2 3/2to3/1 3/1to3/0 3/0to2/0 2/0to1/0"/> + </vehicle> + <vehicle id="car2297" depart="2297.00"> + <route edges="2/4to2/3 2/3to3/3 3/3to4/3 4/3to4/2"/> + </vehicle> + <vehicle id="car2298" depart="2298.00"> + <route edges="3/4to4/4 4/4to3/4 3/4to2/4 2/4to1/4 1/4to0/4 0/4to1/4"/> + </vehicle> + <vehicle id="car2299" depart="2299.00"> + <route edges="0/2to0/3 0/3to0/4 0/4to1/4 1/4to2/4 2/4to3/4 3/4to4/4"/> + </vehicle> + <vehicle id="car2300" depart="2300.00"> + <route edges="4/3to4/2 4/2to3/2 3/2to2/2 2/2to2/3 2/3to2/4 2/4to2/3"/> + </vehicle> + <vehicle id="car2301" depart="2301.00"> + <route edges="0/0to0/1 0/1to1/1 1/1to1/2 1/2to2/2 2/2to2/3 2/3to3/3 3/3to4/3 4/3to4/4"/> + </vehicle> + <vehicle id="car2302" depart="2302.00"> + <route edges="1/3to1/2 1/2to2/2 2/2to3/2 3/2to3/3"/> + </vehicle> + <vehicle id="car2303" depart="2303.00"> + <route edges="2/3to3/3 3/3to2/3 2/3to2/2 2/2to1/2 1/2to1/1 1/1to0/1"/> + </vehicle> + <vehicle id="car2304" depart="2304.00"> + <route edges="0/1to0/2 0/2to1/2 1/2to1/1 1/1to1/0 1/0to2/0 2/0to3/0 3/0to4/0"/> + </vehicle> + <vehicle id="car2305" depart="2305.00"> + <route edges="1/3to1/2 1/2to1/1 1/1to0/1 0/1to1/1"/> + </vehicle> + <vehicle id="car2306" depart="2306.00"> + <route edges="0/2to0/1 0/1to0/2 0/2to1/2 1/2to1/3 1/3to2/3 2/3to3/3 3/3to4/3 4/3to4/2"/> + </vehicle> + <vehicle id="car2307" depart="2307.00"> + <route edges="1/4to2/4 2/4to2/3 2/3to2/2 2/2to2/1 2/1to2/0 2/0to1/0"/> + </vehicle> + <vehicle id="car2308" depart="2308.00"> + <route edges="1/0to1/1 1/1to2/1 2/1to2/2 2/2to3/2 3/2to3/3 3/3to4/3 4/3to4/4"/> + </vehicle> + <vehicle id="car2309" depart="2309.00"> + <route edges="4/1to3/1 3/1to2/1 2/1to1/1 1/1to0/1 0/1to0/2 0/2to1/2"/> + </vehicle> + <vehicle id="car2310" depart="2310.00"> + <route edges="4/0to4/1 4/1to4/0 4/0to3/0 3/0to2/0 2/0to1/0 1/0to0/0"/> + </vehicle> + <vehicle id="car2311" depart="2311.00"> + <route edges="3/3to3/4 3/4to3/3 3/3to2/3 2/3to2/2 2/2to1/2 1/2to1/3"/> + </vehicle> + <vehicle id="car2312" depart="2312.00"> + <route edges="3/3to2/3 2/3to3/3 3/3to3/2 3/2to3/1 3/1to2/1"/> + </vehicle> + <vehicle id="car2313" depart="2313.00"> + <route edges="0/3to0/4 0/4to1/4 1/4to2/4 2/4to2/3 2/3to2/2 2/2to2/1"/> + </vehicle> + <vehicle id="car2314" depart="2314.00"> + <route edges="2/1to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to2/4 2/4to3/4 3/4to2/4"/> + </vehicle> + <vehicle id="car2315" depart="2315.00"> + <route edges="1/3to0/3 0/3to1/3 1/3to2/3 2/3to3/3 3/3to3/2 3/2to3/1 3/1to3/2"/> + </vehicle> + <vehicle id="car2316" depart="2316.00"> + <route edges="0/3to1/3 1/3to2/3 2/3to3/3 3/3to3/2 3/2to3/1 3/1to3/0"/> + </vehicle> + <vehicle id="car2317" depart="2317.00"> + <route edges="3/4to4/4 4/4to4/3 4/3to3/3 3/3to3/2 3/2to2/2 2/2to3/2"/> + </vehicle> + <vehicle id="car2318" depart="2318.00"> + <route edges="2/2to2/1 2/1to3/1 3/1to4/1 4/1to4/0"/> + </vehicle> + <vehicle id="car2319" depart="2319.00"> + <route edges="2/0to3/0 3/0to3/1 3/1to3/2 3/2to3/3 3/3to2/3"/> + </vehicle> + <vehicle id="car2320" depart="2320.00"> + <route edges="3/4to2/4 2/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to2/0"/> + </vehicle> + <vehicle id="car2321" depart="2321.00"> + <route edges="0/1to0/2 0/2to1/2 1/2to1/3 1/3to2/3"/> + </vehicle> + <vehicle id="car2322" depart="2322.00"> + <route edges="3/1to3/2 3/2to3/3 3/3to3/4 3/4to2/4 2/4to1/4 1/4to0/4 0/4to1/4"/> + </vehicle> + <vehicle id="car2323" depart="2323.00"> + <route edges="2/2to1/2 1/2to1/3 1/3to1/4 1/4to0/4 0/4to0/3"/> + </vehicle> + <vehicle id="car2324" depart="2324.00"> + <route edges="0/3to1/3 1/3to2/3 2/3to3/3 3/3to4/3 4/3to4/2 4/2to3/2"/> + </vehicle> + <vehicle id="car2325" depart="2325.00"> + <route edges="4/0to3/0 3/0to2/0 2/0to2/1 2/1to2/2 2/2to3/2"/> + </vehicle> + <vehicle id="car2326" depart="2326.00"> + <route edges="0/3to0/2 0/2to0/1 0/1to0/0 0/0to1/0 1/0to2/0 2/0to3/0"/> + </vehicle> + <vehicle id="car2327" depart="2327.00"> + <route edges="0/2to1/2 1/2to2/2 2/2to3/2 3/2to3/1 3/1to2/1"/> + </vehicle> + <vehicle id="car2328" depart="2328.00"> + <route edges="2/3to3/3 3/3to2/3 2/3to2/2 2/2to1/2 1/2to0/2"/> + </vehicle> + <vehicle id="car2329" depart="2329.00"> + <route edges="2/2to2/3 2/3to1/3 1/3to0/3 0/3to0/4"/> + </vehicle> + <vehicle id="car2330" depart="2330.00"> + <route edges="3/1to2/1 2/1to2/0 2/0to1/0 1/0to1/1"/> + </vehicle> + <vehicle id="car2331" depart="2331.00"> + <route edges="0/2to0/3 0/3to1/3 1/3to2/3 2/3to3/3 3/3to4/3 4/3to4/2 4/2to4/1 4/1to4/0"/> + </vehicle> + <vehicle id="car2332" depart="2332.00"> + <route edges="1/2to2/2 2/2to2/3 2/3to2/4 2/4to1/4"/> + </vehicle> + <vehicle id="car2333" depart="2333.00"> + <route edges="3/0to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/1"/> + </vehicle> + <vehicle id="car2334" depart="2334.00"> + <route edges="4/3to4/4 4/4to4/3 4/3to4/2 4/2to4/1 4/1to3/1"/> + </vehicle> + <vehicle id="car2335" depart="2335.00"> + <route edges="3/2to4/2 4/2to4/3 4/3to4/4 4/4to3/4 3/4to2/4 2/4to3/4"/> + </vehicle> + <vehicle id="car2336" depart="2336.00"> + <route edges="4/1to3/1 3/1to2/1 2/1to1/1 1/1to0/1 0/1to0/2 0/2to0/3 0/3to0/2"/> + </vehicle> + <vehicle id="car2337" depart="2337.00"> + <route edges="2/3to1/3 1/3to1/2 1/2to1/1 1/1to1/0 1/0to0/0 0/0to0/1"/> + </vehicle> + <vehicle id="car2338" depart="2338.00"> + <route edges="0/3to0/4 0/4to1/4 1/4to1/3 1/3to1/2 1/2to1/1 1/1to1/0 1/0to0/0"/> + </vehicle> + <vehicle id="car2339" depart="2339.00"> + <route edges="2/2to1/2 1/2to2/2 2/2to3/2 3/2to3/1 3/1to4/1"/> + </vehicle> + <vehicle id="car2340" depart="2340.00"> + <route edges="4/1to3/1 3/1to3/2 3/2to3/3 3/3to4/3 4/3to4/4"/> + </vehicle> + <vehicle id="car2341" depart="2341.00"> + <route edges="2/4to3/4 3/4to3/3 3/3to2/3 2/3to2/2 2/2to1/2"/> + </vehicle> + <vehicle id="car2342" depart="2342.00"> + <route edges="3/0to2/0 2/0to2/1 2/1to2/2 2/2to3/2 3/2to3/3 3/3to4/3 4/3to4/4"/> + </vehicle> + <vehicle id="car2343" depart="2343.00"> + <route edges="1/4to0/4 0/4to1/4 1/4to2/4 2/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to3/0"/> + </vehicle> + <vehicle id="car2344" depart="2344.00"> + <route edges="3/1to4/1 4/1to4/0 4/0to3/0 3/0to2/0 2/0to1/0"/> + </vehicle> + <vehicle id="car2345" depart="2345.00"> + <route edges="0/0to1/0 1/0to0/0 0/0to0/1 0/1to0/2 0/2to0/3 0/3to0/2"/> + </vehicle> + <vehicle id="car2346" depart="2346.00"> + <route edges="0/0to1/0 1/0to2/0 2/0to3/0 3/0to4/0 4/0to4/1 4/1to4/2 4/2to4/3 4/3to4/4"/> + </vehicle> + <vehicle id="car2347" depart="2347.00"> + <route edges="4/0to4/1 4/1to3/1 3/1to2/1 2/1to1/1 1/1to0/1"/> + </vehicle> + <vehicle id="car2348" depart="2348.00"> + <route edges="3/3to4/3 4/3to4/2 4/2to4/1 4/1to4/0 4/0to3/0 3/0to2/0 2/0to1/0 1/0to2/0"/> + </vehicle> + <vehicle id="car2349" depart="2349.00"> + <route edges="1/3to0/3 0/3to1/3 1/3to1/2 1/2to1/1 1/1to2/1 2/1to3/1"/> + </vehicle> + <vehicle id="car2350" depart="2350.00"> + <route edges="1/0to0/0 0/0to0/1 0/1to0/2 0/2to0/3 0/3to0/4 0/4to1/4"/> + </vehicle> + <vehicle id="car2351" depart="2351.00"> + <route edges="3/2to2/2 2/2to3/2 3/2to3/3 3/3to4/3 4/3to4/4"/> + </vehicle> + <vehicle id="car2352" depart="2352.00"> + <route edges="2/1to3/1 3/1to3/0 3/0to4/0 4/0to4/1"/> + </vehicle> + <vehicle id="car2353" depart="2353.00"> + <route edges="2/4to1/4 1/4to1/3 1/3to1/2 1/2to1/1 1/1to0/1"/> + </vehicle> + <vehicle id="car2354" depart="2354.00"> + <route edges="2/3to3/3 3/3to3/4 3/4to4/4"/> + </vehicle> + <vehicle id="car2355" depart="2355.00"> + <route edges="4/4to3/4 3/4to4/4 4/4to4/3 4/3to4/2 4/2to4/1 4/1to4/0 4/0to3/0"/> + </vehicle> + <vehicle id="car2356" depart="2356.00"> + <route edges="3/1to3/2 3/2to3/3 3/3to3/4 3/4to3/3"/> + </vehicle> + <vehicle id="car2357" depart="2357.00"> + <route edges="2/3to1/3 1/3to1/2 1/2to1/1 1/1to1/0 1/0to2/0 2/0to3/0"/> + </vehicle> + <vehicle id="car2358" depart="2358.00"> + <route edges="1/3to1/2 1/2to0/2 0/2to0/1"/> + </vehicle> + <vehicle id="car2359" depart="2359.00"> + <route edges="4/3to3/3 3/3to2/3 2/3to1/3 1/3to2/3"/> + </vehicle> + <vehicle id="car2360" depart="2360.00"> + <route edges="3/1to4/1 4/1to4/0 4/0to3/0 3/0to2/0 2/0to1/0 1/0to0/0 0/0to1/0"/> + </vehicle> + <vehicle id="car2361" depart="2361.00"> + <route edges="1/2to2/2 2/2to2/1 2/1to1/1 1/1to1/0 1/0to2/0"/> + </vehicle> + <vehicle id="car2362" depart="2362.00"> + <route edges="1/1to1/0 1/0to1/1 1/1to2/1 2/1to2/2 2/2to3/2 3/2to4/2 4/2to3/2"/> + </vehicle> + <vehicle id="car2363" depart="2363.00"> + <route edges="1/3to2/3 2/3to2/4 2/4to3/4"/> + </vehicle> + <vehicle id="car2364" depart="2364.00"> + <route edges="4/0to3/0 3/0to3/1 3/1to2/1"/> + </vehicle> + <vehicle id="car2365" depart="2365.00"> + <route edges="0/3to1/3 1/3to1/2 1/2to2/2"/> + </vehicle> + <vehicle id="car2366" depart="2366.00"> + <route edges="3/4to4/4 4/4to4/3 4/3to4/2 4/2to4/1 4/1to3/1 3/1to3/0"/> + </vehicle> + <vehicle id="car2367" depart="2367.00"> + <route edges="3/3to4/3 4/3to4/2 4/2to4/1 4/1to4/0 4/0to3/0"/> + </vehicle> + <vehicle id="car2368" depart="2368.00"> + <route edges="3/0to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3"/> + </vehicle> + <vehicle id="car2369" depart="2369.00"> + <route edges="3/2to4/2 4/2to4/1 4/1to3/1 3/1to3/0"/> + </vehicle> + <vehicle id="car2370" depart="2370.00"> + <route edges="0/3to1/3 1/3to1/2 1/2to1/1 1/1to1/0 1/0to2/0"/> + </vehicle> + <vehicle id="car2371" depart="2371.00"> + <route edges="2/4to3/4 3/4to2/4 2/4to1/4 1/4to0/4 0/4to0/3 0/3to0/2"/> + </vehicle> + <vehicle id="car2372" depart="2372.00"> + <route edges="2/0to3/0 3/0to4/0 4/0to4/1 4/1to4/2 4/2to4/3 4/3to4/4 4/4to4/3"/> + </vehicle> + <vehicle id="car2373" depart="2373.00"> + <route edges="1/3to0/3 0/3to1/3 1/3to1/2 1/2to1/1 1/1to0/1"/> + </vehicle> + <vehicle id="car2374" depart="2374.00"> + <route edges="4/1to4/0 4/0to3/0 3/0to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to0/4"/> + </vehicle> + <vehicle id="car2375" depart="2375.00"> + <route edges="0/4to1/4 1/4to2/4 2/4to3/4 3/4to4/4"/> + </vehicle> + <vehicle id="car2376" depart="2376.00"> + <route edges="4/1to4/2 4/2to4/1 4/1to3/1 3/1to2/1 2/1to1/1 1/1to0/1 0/1to0/0"/> + </vehicle> + <vehicle id="car2377" depart="2377.00"> + <route edges="3/0to2/0 2/0to1/0 1/0to0/0 0/0to0/1 0/1to0/2 0/2to0/3 0/3to0/4"/> + </vehicle> + <vehicle id="car2378" depart="2378.00"> + <route edges="0/1to0/2 0/2to1/2 1/2to2/2 2/2to3/2 3/2to4/2 4/2to4/1 4/1to4/0"/> + </vehicle> + <vehicle id="car2379" depart="2379.00"> + <route edges="1/2to1/1 1/1to0/1 0/1to0/2 0/2to0/3 0/3to0/4 0/4to1/4"/> + </vehicle> + <vehicle id="car2380" depart="2380.00"> + <route edges="4/2to4/3 4/3to4/2 4/2to3/2 3/2to3/1 3/1to2/1 2/1to2/0"/> + </vehicle> + <vehicle id="car2381" depart="2381.00"> + <route edges="4/2to3/2 3/2to2/2 2/2to1/2 1/2to0/2 0/2to0/3 0/3to0/4 0/4to1/4"/> + </vehicle> + <vehicle id="car2382" depart="2382.00"> + <route edges="1/2to2/2 2/2to2/1 2/1to2/0"/> + </vehicle> + <vehicle id="car2383" depart="2383.00"> + <route edges="0/2to1/2 1/2to1/1 1/1to1/0 1/0to2/0 2/0to3/0 3/0to4/0"/> + </vehicle> + <vehicle id="car2384" depart="2384.00"> + <route edges="4/0to3/0 3/0to2/0 2/0to2/1 2/1to2/0"/> + </vehicle> + <vehicle id="car2385" depart="2385.00"> + <route edges="2/0to3/0 3/0to3/1 3/1to3/2 3/2to3/3 3/3to3/2"/> + </vehicle> + <vehicle id="car2386" depart="2386.00"> + <route edges="1/1to2/1 2/1to2/2 2/2to3/2 3/2to3/3 3/3to3/4 3/4to2/4"/> + </vehicle> + <vehicle id="car2387" depart="2387.00"> + <route edges="3/3to2/3 2/3to2/4 2/4to1/4 1/4to0/4"/> + </vehicle> + <vehicle id="car2388" depart="2388.00"> + <route edges="3/1to3/0 3/0to2/0 2/0to1/0 1/0to0/0 0/0to0/1 0/1to0/2 0/2to0/3 0/3to0/4 0/4to1/4"/> + </vehicle> + <vehicle id="car2389" depart="2389.00"> + <route edges="3/3to2/3 2/3to2/2 2/2to2/1 2/1to2/0 2/0to3/0"/> + </vehicle> + <vehicle id="car2390" depart="2390.00"> + <route edges="1/1to1/2 1/2to1/3 1/3to1/4 1/4to2/4 2/4to3/4 3/4to2/4"/> + </vehicle> + <vehicle id="car2391" depart="2391.00"> + <route edges="2/1to2/2 2/2to3/2 3/2to3/1 3/1to3/0 3/0to4/0 4/0to4/1"/> + </vehicle> + <vehicle id="car2392" depart="2392.00"> + <route edges="3/3to4/3 4/3to4/4 4/4to3/4 3/4to2/4 2/4to1/4 1/4to0/4"/> + </vehicle> + <vehicle id="car2393" depart="2393.00"> + <route edges="0/1to0/0 0/0to0/1 0/1to0/2 0/2to0/3 0/3to0/4 0/4to0/3"/> + </vehicle> + <vehicle id="car2394" depart="2394.00"> + <route edges="0/0to0/1 0/1to0/2 0/2to0/3 0/3to0/4 0/4to1/4 1/4to2/4 2/4to3/4 3/4to2/4"/> + </vehicle> + <vehicle id="car2395" depart="2395.00"> + <route edges="4/3to3/3 3/3to2/3 2/3to2/2 2/2to1/2 1/2to0/2 0/2to0/3"/> + </vehicle> + <vehicle id="car2396" depart="2396.00"> + <route edges="1/3to1/2 1/2to1/3 1/3to1/4 1/4to2/4 2/4to3/4 3/4to4/4 4/4to3/4"/> + </vehicle> + <vehicle id="car2397" depart="2397.00"> + <route edges="3/3to2/3 2/3to3/3 3/3to3/2 3/2to3/1 3/1to2/1"/> + </vehicle> + <vehicle id="car2398" depart="2398.00"> + <route edges="3/0to4/0 4/0to4/1 4/1to4/2 4/2to3/2"/> + </vehicle> + <vehicle id="car2399" depart="2399.00"> + <route edges="0/1to1/1 1/1to2/1 2/1to3/1 3/1to3/0 3/0to3/1"/> + </vehicle> + <vehicle id="car2400" depart="2400.00"> + <route edges="2/0to2/1 2/1to3/1 3/1to3/2"/> + </vehicle> + <vehicle id="car2401" depart="2401.00"> + <route edges="2/3to2/4 2/4to2/3 2/3to1/3 1/3to0/3"/> + </vehicle> + <vehicle id="car2402" depart="2402.00"> + <route edges="0/0to0/1 0/1to1/1 1/1to1/2 1/2to1/3"/> + </vehicle> + <vehicle id="car2403" depart="2403.00"> + <route edges="2/3to1/3 1/3to2/3 2/3to3/3 3/3to4/3 4/3to4/2 4/2to4/1"/> + </vehicle> + <vehicle id="car2404" depart="2404.00"> + <route edges="3/2to2/2 2/2to2/1 2/1to2/0"/> + </vehicle> + <vehicle id="car2405" depart="2405.00"> + <route edges="3/3to4/3 4/3to4/2 4/2to3/2 3/2to3/1 3/1to2/1"/> + </vehicle> + <vehicle id="car2406" depart="2406.00"> + <route edges="3/3to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to2/0 2/0to2/1"/> + </vehicle> + <vehicle id="car2407" depart="2407.00"> + <route edges="1/0to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to0/3"/> + </vehicle> + <vehicle id="car2408" depart="2408.00"> + <route edges="0/1to0/0 0/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to1/4"/> + </vehicle> + <vehicle id="car2409" depart="2409.00"> + <route edges="0/3to1/3 1/3to1/4 1/4to2/4 2/4to3/4 3/4to4/4 4/4to4/3"/> + </vehicle> + <vehicle id="car2410" depart="2410.00"> + <route edges="3/3to2/3 2/3to1/3 1/3to0/3 0/3to0/4 0/4to1/4"/> + </vehicle> + <vehicle id="car2411" depart="2411.00"> + <route edges="0/1to0/0 0/0to1/0 1/0to2/0 2/0to3/0 3/0to3/1 3/1to3/2 3/2to3/3 3/3to4/3"/> + </vehicle> + <vehicle id="car2412" depart="2412.00"> + <route edges="2/4to2/3 2/3to2/2 2/2to2/1 2/1to1/1 1/1to2/1"/> + </vehicle> + <vehicle id="car2413" depart="2413.00"> + <route edges="4/4to3/4 3/4to2/4 2/4to1/4 1/4to0/4 0/4to0/3 0/3to0/2"/> + </vehicle> + <vehicle id="car2414" depart="2414.00"> + <route edges="0/1to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to1/3"/> + </vehicle> + <vehicle id="car2415" depart="2415.00"> + <route edges="3/0to3/1 3/1to3/2 3/2to3/3 3/3to3/4 3/4to2/4 2/4to1/4 1/4to0/4"/> + </vehicle> + <vehicle id="car2416" depart="2416.00"> + <route edges="0/1to0/2 0/2to1/2 1/2to2/2 2/2to3/2 3/2to3/1 3/1to2/1"/> + </vehicle> + <vehicle id="car2417" depart="2417.00"> + <route edges="0/3to0/4 0/4to1/4 1/4to1/3 1/3to1/2 1/2to2/2"/> + </vehicle> + <vehicle id="car2418" depart="2418.00"> + <route edges="4/4to3/4 3/4to2/4"/> + </vehicle> + <vehicle id="car2419" depart="2419.00"> + <route edges="3/3to3/4 3/4to3/3 3/3to3/2 3/2to3/1"/> + </vehicle> + <vehicle id="car2420" depart="2420.00"> + <route edges="3/4to3/3 3/3to2/3 2/3to2/4 2/4to1/4 1/4to0/4"/> + </vehicle> + <vehicle id="car2421" depart="2421.00"> + <route edges="0/2to1/2 1/2to2/2 2/2to3/2 3/2to2/2"/> + </vehicle> + <vehicle id="car2422" depart="2422.00"> + <route edges="3/4to4/4 4/4to4/3 4/3to3/3 3/3to3/2 3/2to2/2 2/2to1/2 1/2to0/2 0/2to0/3"/> + </vehicle> + <vehicle id="car2423" depart="2423.00"> + <route edges="0/1to1/1 1/1to2/1 2/1to3/1 3/1to4/1 4/1to4/2"/> + </vehicle> + <vehicle id="car2424" depart="2424.00"> + <route edges="2/2to1/2 1/2to2/2 2/2to2/1 2/1to2/0"/> + </vehicle> + <vehicle id="car2425" depart="2425.00"> + <route edges="2/4to2/3 2/3to2/2 2/2to3/2"/> + </vehicle> + <vehicle id="car2426" depart="2426.00"> + <route edges="2/2to2/1 2/1to2/0 2/0to3/0"/> + </vehicle> + <vehicle id="car2427" depart="2427.00"> + <route edges="2/1to2/0 2/0to3/0 3/0to4/0 4/0to4/1 4/1to4/2 4/2to4/3"/> + </vehicle> + <vehicle id="car2428" depart="2428.00"> + <route edges="2/2to2/1 2/1to2/2 2/2to3/2 3/2to3/3 3/3to4/3 4/3to4/4"/> + </vehicle> + <vehicle id="car2429" depart="2429.00"> + <route edges="3/4to3/3 3/3to2/3 2/3to2/4 2/4to1/4 1/4to0/4 0/4to0/3"/> + </vehicle> + <vehicle id="car2430" depart="2430.00"> + <route edges="0/3to1/3 1/3to2/3 2/3to3/3 3/3to3/2 3/2to2/2"/> + </vehicle> + <vehicle id="car2431" depart="2431.00"> + <route edges="0/3to1/3 1/3to2/3 2/3to3/3 3/3to3/2 3/2to2/2"/> + </vehicle> + <vehicle id="car2432" depart="2432.00"> + <route edges="4/1to3/1 3/1to2/1 2/1to1/1 1/1to0/1 0/1to0/2 0/2to0/3 0/3to0/4"/> + </vehicle> + <vehicle id="car2433" depart="2433.00"> + <route edges="1/1to1/0 1/0to1/1 1/1to2/1 2/1to3/1"/> + </vehicle> + <vehicle id="car2434" depart="2434.00"> + <route edges="1/4to1/3 1/3to2/3 2/3to3/3 3/3to4/3 4/3to4/2"/> + </vehicle> + <vehicle id="car2435" depart="2435.00"> + <route edges="2/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to2/0 2/0to2/1"/> + </vehicle> + <vehicle id="car2436" depart="2436.00"> + <route edges="0/3to0/4 0/4to1/4 1/4to2/4 2/4to2/3 2/3to3/3"/> + </vehicle> + <vehicle id="car2437" depart="2437.00"> + <route edges="0/1to0/2 0/2to0/3 0/3to0/4 0/4to1/4"/> + </vehicle> + <vehicle id="car2438" depart="2438.00"> + <route edges="1/4to1/3 1/3to1/4 1/4to2/4 2/4to3/4 3/4to4/4 4/4to4/3"/> + </vehicle> + <vehicle id="car2439" depart="2439.00"> + <route edges="3/3to4/3 4/3to4/4 4/4to3/4 3/4to2/4 2/4to1/4 1/4to0/4 0/4to0/3"/> + </vehicle> + <vehicle id="car2440" depart="2440.00"> + <route edges="2/4to2/3 2/3to1/3 1/3to1/2 1/2to1/1 1/1to0/1 0/1to0/2"/> + </vehicle> + <vehicle id="car2441" depart="2441.00"> + <route edges="1/1to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to2/4 2/4to3/4 3/4to3/3"/> + </vehicle> + <vehicle id="car2442" depart="2442.00"> + <route edges="2/2to2/1 2/1to1/1 1/1to0/1 0/1to0/2 0/2to0/3 0/3to0/4"/> + </vehicle> + <vehicle id="car2443" depart="2443.00"> + <route edges="1/3to2/3 2/3to3/3 3/3to4/3 4/3to4/2 4/2to4/1 4/1to3/1"/> + </vehicle> + <vehicle id="car2444" depart="2444.00"> + <route edges="2/0to3/0 3/0to2/0 2/0to2/1 2/1to2/2 2/2to2/3 2/3to3/3"/> + </vehicle> + <vehicle id="car2445" depart="2445.00"> + <route edges="3/3to3/4 3/4to3/3 3/3to2/3 2/3to2/2 2/2to1/2"/> + </vehicle> + <vehicle id="car2446" depart="2446.00"> + <route edges="3/2to3/1 3/1to2/1 2/1to2/2 2/2to2/3 2/3to2/4 2/4to3/4"/> + </vehicle> + <vehicle id="car2447" depart="2447.00"> + <route edges="1/3to1/4 1/4to2/4 2/4to3/4 3/4to3/3 3/3to4/3"/> + </vehicle> + <vehicle id="car2448" depart="2448.00"> + <route edges="2/3to2/2 2/2to2/3 2/3to3/3 3/3to4/3 4/3to4/2"/> + </vehicle> + <vehicle id="car2449" depart="2449.00"> + <route edges="4/1to4/2 4/2to3/2 3/2to3/3"/> + </vehicle> + <vehicle id="car2450" depart="2450.00"> + <route edges="2/3to2/4 2/4to2/3 2/3to1/3 1/3to0/3 0/3to0/4"/> + </vehicle> + <vehicle id="car2451" depart="2451.00"> + <route edges="2/3to2/4 2/4to2/3 2/3to2/2 2/2to2/1 2/1to1/1 1/1to1/0 1/0to2/0"/> + </vehicle> + <vehicle id="car2452" depart="2452.00"> + <route edges="3/0to2/0 2/0to2/1 2/1to2/2 2/2to2/3 2/3to2/4 2/4to1/4"/> + </vehicle> + <vehicle id="car2453" depart="2453.00"> + <route edges="0/1to1/1 1/1to1/2 1/2to2/2 2/2to2/3 2/3to3/3"/> + </vehicle> + <vehicle id="car2454" depart="2454.00"> + <route edges="1/0to2/0 2/0to2/1 2/1to2/2 2/2to1/2"/> + </vehicle> + <vehicle id="car2455" depart="2455.00"> + <route edges="4/1to4/2 4/2to4/3 4/3to3/3 3/3to2/3 2/3to1/3 1/3to0/3 0/3to0/4"/> + </vehicle> + <vehicle id="car2456" depart="2456.00"> + <route edges="4/2to4/3 4/3to4/2 4/2to4/1 4/1to4/0 4/0to3/0 3/0to2/0 2/0to1/0 1/0to1/1"/> + </vehicle> + <vehicle id="car2457" depart="2457.00"> + <route edges="0/0to1/0 1/0to2/0 2/0to3/0 3/0to3/1 3/1to3/2 3/2to3/3 3/3to3/4"/> + </vehicle> + <vehicle id="car2458" depart="2458.00"> + <route edges="4/1to4/2 4/2to4/1 4/1to3/1 3/1to2/1 2/1to2/0"/> + </vehicle> + <vehicle id="car2459" depart="2459.00"> + <route edges="2/0to2/1 2/1to1/1 1/1to0/1 0/1to0/2"/> + </vehicle> + <vehicle id="car2460" depart="2460.00"> + <route edges="4/0to4/1 4/1to4/0 4/0to3/0 3/0to2/0 2/0to1/0 1/0to0/0 0/0to1/0"/> + </vehicle> + <vehicle id="car2461" depart="2461.00"> + <route edges="4/0to4/1 4/1to4/2 4/2to4/3 4/3to3/3 3/3to2/3 2/3to1/3 1/3to1/2"/> + </vehicle> + <vehicle id="car2462" depart="2462.00"> + <route edges="1/2to0/2 0/2to0/3 0/3to0/4"/> + </vehicle> + <vehicle id="car2463" depart="2463.00"> + <route edges="0/2to1/2 1/2to1/1 1/1to1/0 1/0to0/0"/> + </vehicle> + <vehicle id="car2464" depart="2464.00"> + <route edges="0/4to0/3 0/3to1/3 1/3to1/2 1/2to0/2"/> + </vehicle> + <vehicle id="car2465" depart="2465.00"> + <route edges="2/0to2/1 2/1to2/0 2/0to1/0 1/0to0/0"/> + </vehicle> + <vehicle id="car2466" depart="2466.00"> + <route edges="3/0to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to1/4"/> + </vehicle> + <vehicle id="car2467" depart="2467.00"> + <route edges="2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to1/2"/> + </vehicle> + <vehicle id="car2468" depart="2468.00"> + <route edges="2/0to3/0 3/0to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to1/2"/> + </vehicle> + <vehicle id="car2469" depart="2469.00"> + <route edges="1/4to2/4 2/4to3/4 3/4to4/4"/> + </vehicle> + <vehicle id="car2470" depart="2470.00"> + <route edges="0/3to0/4 0/4to1/4 1/4to1/3 1/3to1/2 1/2to1/1 1/1to0/1"/> + </vehicle> + <vehicle id="car2471" depart="2471.00"> + <route edges="3/3to2/3 2/3to2/4 2/4to1/4"/> + </vehicle> + <vehicle id="car2472" depart="2472.00"> + <route edges="0/1to1/1 1/1to2/1 2/1to3/1"/> + </vehicle> + <vehicle id="car2473" depart="2473.00"> + <route edges="2/0to2/1 2/1to2/2 2/2to1/2"/> + </vehicle> + <vehicle id="car2474" depart="2474.00"> + <route edges="2/0to2/1 2/1to1/1 1/1to1/2"/> + </vehicle> + <vehicle id="car2475" depart="2475.00"> + <route edges="4/1to4/0 4/0to3/0 3/0to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/1"/> + </vehicle> + <vehicle id="car2476" depart="2476.00"> + <route edges="1/1to2/1 2/1to2/2 2/2to2/3 2/3to2/4"/> + </vehicle> + <vehicle id="car2477" depart="2477.00"> + <route edges="3/3to3/4 3/4to3/3 3/3to2/3 2/3to1/3 1/3to0/3"/> + </vehicle> + <vehicle id="car2478" depart="2478.00"> + <route edges="2/0to2/1 2/1to2/2 2/2to1/2 1/2to0/2 0/2to0/3"/> + </vehicle> + <vehicle id="car2479" depart="2479.00"> + <route edges="3/0to3/1 3/1to2/1 2/1to1/1 1/1to0/1"/> + </vehicle> + <vehicle id="car2480" depart="2480.00"> + <route edges="4/3to4/4 4/4to3/4 3/4to2/4 2/4to1/4 1/4to1/3"/> + </vehicle> + <vehicle id="car2481" depart="2481.00"> + <route edges="2/3to2/2 2/2to2/1 2/1to2/0 2/0to3/0"/> + </vehicle> + <vehicle id="car2482" depart="2482.00"> + <route edges="4/2to3/2 3/2to3/1 3/1to2/1 2/1to2/2"/> + </vehicle> + <vehicle id="car2483" depart="2483.00"> + <route edges="0/0to0/1 0/1to1/1 1/1to2/1 2/1to3/1"/> + </vehicle> + <vehicle id="car2484" depart="2484.00"> + <route edges="3/4to4/4 4/4to4/3 4/3to3/3 3/3to3/2 3/2to2/2 2/2to1/2 1/2to2/2"/> + </vehicle> + <vehicle id="car2485" depart="2485.00"> + <route edges="4/3to4/4 4/4to4/3 4/3to4/2 4/2to4/1 4/1to4/0 4/0to3/0 3/0to2/0 2/0to1/0 1/0to0/0 0/0to0/1"/> + </vehicle> + <vehicle id="car2486" depart="2486.00"> + <route edges="4/2to4/3 4/3to4/2 4/2to3/2 3/2to2/2 2/2to1/2"/> + </vehicle> + <vehicle id="car2487" depart="2487.00"> + <route edges="2/4to2/3 2/3to2/2 2/2to2/1 2/1to2/0 2/0to3/0 3/0to4/0 4/0to3/0"/> + </vehicle> + <vehicle id="car2488" depart="2488.00"> + <route edges="3/0to3/1 3/1to3/2 3/2to3/3 3/3to3/4 3/4to2/4 2/4to1/4"/> + </vehicle> + <vehicle id="car2489" depart="2489.00"> + <route edges="2/2to2/3 2/3to2/2 2/2to1/2 1/2to1/1 1/1to0/1 0/1to0/2"/> + </vehicle> + <vehicle id="car2490" depart="2490.00"> + <route edges="1/3to0/3 0/3to0/2 0/2to0/1 0/1to0/0 0/0to1/0 1/0to2/0 2/0to1/0"/> + </vehicle> + <vehicle id="car2491" depart="2491.00"> + <route edges="2/1to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to2/4 2/4to3/4"/> + </vehicle> + <vehicle id="car2492" depart="2492.00"> + <route edges="4/3to4/2 4/2to3/2 3/2to2/2 2/2to1/2 1/2to1/3 1/3to1/2"/> + </vehicle> + <vehicle id="car2493" depart="2493.00"> + <route edges="3/1to3/2 3/2to2/2 2/2to1/2 1/2to1/3 1/3to2/3"/> + </vehicle> + <vehicle id="car2494" depart="2494.00"> + <route edges="4/4to3/4 3/4to2/4 2/4to2/3 2/3to1/3 1/3to2/3"/> + </vehicle> + <vehicle id="car2495" depart="2495.00"> + <route edges="2/1to2/2 2/2to2/3 2/3to2/4 2/4to2/3"/> + </vehicle> + <vehicle id="car2496" depart="2496.00"> + <route edges="0/0to1/0 1/0to2/0 2/0to3/0 3/0to3/1 3/1to4/1"/> + </vehicle> + <vehicle id="car2497" depart="2497.00"> + <route edges="3/0to4/0 4/0to3/0 3/0to2/0 2/0to1/0 1/0to0/0 0/0to0/1"/> + </vehicle> + <vehicle id="car2498" depart="2498.00"> + <route edges="4/1to4/2 4/2to3/2 3/2to2/2"/> + </vehicle> + <vehicle id="car2499" depart="2499.00"> + <route edges="3/3to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to4/0"/> + </vehicle> + <vehicle id="car2500" depart="2500.00"> + <route edges="0/2to0/3 0/3to0/2 0/2to0/1 0/1to0/0"/> + </vehicle> + <vehicle id="car2501" depart="2501.00"> + <route edges="3/4to4/4 4/4to4/3 4/3to4/2 4/2to4/1 4/1to3/1 3/1to3/0"/> + </vehicle> + <vehicle id="car2502" depart="2502.00"> + <route edges="3/1to3/0 3/0to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to0/4"/> + </vehicle> + <vehicle id="car2503" depart="2503.00"> + <route edges="1/4to0/4 0/4to0/3 0/3to0/2 0/2to0/1 0/1to0/0 0/0to1/0 1/0to1/1"/> + </vehicle> + <vehicle id="car2504" depart="2504.00"> + <route edges="3/3to3/2 3/2to3/1 3/1to4/1"/> + </vehicle> + <vehicle id="car2505" depart="2505.00"> + <route edges="0/0to0/1 0/1to1/1 1/1to2/1 2/1to3/1"/> + </vehicle> + <vehicle id="car2506" depart="2506.00"> + <route edges="4/2to4/3 4/3to4/2 4/2to3/2 3/2to3/1 3/1to2/1 2/1to2/0"/> + </vehicle> + <vehicle id="car2507" depart="2507.00"> + <route edges="1/2to1/3 1/3to2/3 2/3to3/3 3/3to4/3 4/3to4/2 4/2to4/1"/> + </vehicle> + <vehicle id="car2508" depart="2508.00"> + <route edges="1/4to0/4 0/4to0/3 0/3to0/2 0/2to1/2"/> + </vehicle> + <vehicle id="car2509" depart="2509.00"> + <route edges="3/0to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to0/3"/> + </vehicle> + <vehicle id="car2510" depart="2510.00"> + <route edges="3/2to3/1 3/1to2/1 2/1to1/1 1/1to1/2"/> + </vehicle> + <vehicle id="car2511" depart="2511.00"> + <route edges="1/2to1/3 1/3to2/3 2/3to3/3 3/3to4/3 4/3to4/2 4/2to3/2"/> + </vehicle> + <vehicle id="car2512" depart="2512.00"> + <route edges="3/2to2/2 2/2to1/2 1/2to1/1 1/1to0/1"/> + </vehicle> + <vehicle id="car2513" depart="2513.00"> + <route edges="1/0to2/0 2/0to2/1 2/1to2/2 2/2to2/3 2/3to2/4 2/4to3/4 3/4to3/3"/> + </vehicle> + <vehicle id="car2514" depart="2514.00"> + <route edges="2/3to3/3 3/3to3/2 3/2to2/2 2/2to2/1"/> + </vehicle> + <vehicle id="car2515" depart="2515.00"> + <route edges="2/3to2/4 2/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to2/1"/> + </vehicle> + <vehicle id="car2516" depart="2516.00"> + <route edges="2/3to3/3 3/3to2/3 2/3to2/2 2/2to1/2 1/2to0/2 0/2to0/1"/> + </vehicle> + <vehicle id="car2517" depart="2517.00"> + <route edges="0/3to1/3 1/3to1/2 1/2to0/2 0/2to0/1"/> + </vehicle> + <vehicle id="car2518" depart="2518.00"> + <route edges="1/2to0/2 0/2to1/2 1/2to1/3 1/3to2/3 2/3to3/3"/> + </vehicle> + <vehicle id="car2519" depart="2519.00"> + <route edges="1/1to1/2 1/2to2/2 2/2to3/2"/> + </vehicle> + <vehicle id="car2520" depart="2520.00"> + <route edges="3/3to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to2/0 2/0to1/0 1/0to2/0"/> + </vehicle> + <vehicle id="car2521" depart="2521.00"> + <route edges="3/1to3/2 3/2to3/3 3/3to3/4 3/4to4/4 4/4to4/3"/> + </vehicle> + <vehicle id="car2522" depart="2522.00"> + <route edges="3/1to4/1 4/1to3/1 3/1to3/2 3/2to3/3 3/3to2/3 2/3to1/3"/> + </vehicle> + <vehicle id="car2523" depart="2523.00"> + <route edges="1/2to0/2 0/2to1/2 1/2to1/3 1/3to2/3 2/3to2/4"/> + </vehicle> + <vehicle id="car2524" depart="2524.00"> + <route edges="2/1to2/2 2/2to3/2 3/2to3/3 3/3to4/3 4/3to3/3"/> + </vehicle> + <vehicle id="car2525" depart="2525.00"> + <route edges="3/0to4/0 4/0to4/1 4/1to4/2 4/2to4/3 4/3to3/3"/> + </vehicle> + <vehicle id="car2526" depart="2526.00"> + <route edges="0/1to1/1 1/1to1/2 1/2to2/2 2/2to2/3 2/3to3/3 3/3to4/3 4/3to3/3"/> + </vehicle> + <vehicle id="car2527" depart="2527.00"> + <route edges="2/1to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to2/4 2/4to3/4 3/4to4/4 4/4to4/3"/> + </vehicle> + <vehicle id="car2528" depart="2528.00"> + <route edges="1/2to1/1 1/1to2/1 2/1to3/1 3/1to3/2"/> + </vehicle> + <vehicle id="car2529" depart="2529.00"> + <route edges="2/1to3/1 3/1to3/2 3/2to3/3 3/3to3/4 3/4to2/4 2/4to1/4 1/4to0/4"/> + </vehicle> + <vehicle id="car2530" depart="2530.00"> + <route edges="3/3to2/3 2/3to3/3 3/3to4/3 4/3to4/2 4/2to4/1 4/1to4/0"/> + </vehicle> + <vehicle id="car2531" depart="2531.00"> + <route edges="1/1to1/0 1/0to1/1 1/1to1/2 1/2to1/3"/> + </vehicle> + <vehicle id="car2532" depart="2532.00"> + <route edges="0/0to0/1 0/1to1/1 1/1to1/0 1/0to2/0"/> + </vehicle> + <vehicle id="car2533" depart="2533.00"> + <route edges="0/2to0/3 0/3to1/3 1/3to2/3 2/3to3/3"/> + </vehicle> + <vehicle id="car2534" depart="2534.00"> + <route edges="0/1to0/0 0/0to1/0 1/0to2/0 2/0to3/0 3/0to3/1 3/1to3/2 3/2to3/3"/> + </vehicle> + <vehicle id="car2535" depart="2535.00"> + <route edges="4/4to3/4 3/4to2/4 2/4to2/3 2/3to2/2 2/2to2/1 2/1to2/0 2/0to3/0"/> + </vehicle> + <vehicle id="car2536" depart="2536.00"> + <route edges="0/2to0/1 0/1to1/1 1/1to2/1"/> + </vehicle> + <vehicle id="car2537" depart="2537.00"> + <route edges="1/0to0/0 0/0to0/1 0/1to0/2 0/2to0/3 0/3to1/3 1/3to0/3"/> + </vehicle> + <vehicle id="car2538" depart="2538.00"> + <route edges="3/0to3/1 3/1to2/1 2/1to1/1 1/1to0/1 0/1to0/2 0/2to1/2"/> + </vehicle> + <vehicle id="car2539" depart="2539.00"> + <route edges="2/2to1/2 1/2to1/3 1/3to1/4 1/4to2/4 2/4to3/4 3/4to2/4"/> + </vehicle> + <vehicle id="car2540" depart="2540.00"> + <route edges="2/4to2/3 2/3to2/2 2/2to2/1 2/1to2/0 2/0to3/0 3/0to3/1"/> + </vehicle> + <vehicle id="car2541" depart="2541.00"> + <route edges="0/3to0/2 0/2to0/1 0/1to1/1 1/1to2/1"/> + </vehicle> + <vehicle id="car2542" depart="2542.00"> + <route edges="1/3to2/3 2/3to2/2 2/2to1/2 1/2to1/1 1/1to0/1 0/1to1/1"/> + </vehicle> + <vehicle id="car2543" depart="2543.00"> + <route edges="1/3to1/4 1/4to2/4 2/4to3/4 3/4to3/3 3/3to4/3"/> + </vehicle> + <vehicle id="car2544" depart="2544.00"> + <route edges="3/0to2/0 2/0to2/1 2/1to2/2 2/2to2/3 2/3to3/3 3/3to3/2"/> + </vehicle> + <vehicle id="car2545" depart="2545.00"> + <route edges="3/0to3/1 3/1to3/2 3/2to3/3 3/3to3/4 3/4to2/4 2/4to1/4"/> + </vehicle> + <vehicle id="car2546" depart="2546.00"> + <route edges="4/0to3/0 3/0to2/0 2/0to1/0 1/0to0/0 0/0to0/1 0/1to0/2 0/2to0/1"/> + </vehicle> + <vehicle id="car2547" depart="2547.00"> + <route edges="0/3to1/3 1/3to2/3 2/3to3/3 3/3to4/3 4/3to4/2 4/2to4/1"/> + </vehicle> + <vehicle id="car2548" depart="2548.00"> + <route edges="2/1to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to0/3"/> + </vehicle> + <vehicle id="car2549" depart="2549.00"> + <route edges="3/0to3/1 3/1to3/2 3/2to2/2 2/2to1/2 1/2to0/2 0/2to0/1"/> + </vehicle> + <vehicle id="car2550" depart="2550.00"> + <route edges="3/1to3/2 3/2to3/3 3/3to2/3 2/3to2/4"/> + </vehicle> + <vehicle id="car2551" depart="2551.00"> + <route edges="1/2to2/2 2/2to1/2 1/2to1/3 1/3to1/4 1/4to2/4"/> + </vehicle> + <vehicle id="car2552" depart="2552.00"> + <route edges="0/2to1/2 1/2to2/2 2/2to2/3 2/3to3/3 3/3to2/3"/> + </vehicle> + <vehicle id="car2553" depart="2553.00"> + <route edges="1/1to1/2 1/2to1/3 1/3to1/4 1/4to2/4 2/4to2/3"/> + </vehicle> + <vehicle id="car2554" depart="2554.00"> + <route edges="3/1to2/1 2/1to2/0 2/0to1/0 1/0to0/0 0/0to0/1"/> + </vehicle> + <vehicle id="car2555" depart="2555.00"> + <route edges="1/4to2/4 2/4to3/4 3/4to3/3 3/3to4/3"/> + </vehicle> + <vehicle id="car2556" depart="2556.00"> + <route edges="4/1to4/0 4/0to3/0 3/0to2/0"/> + </vehicle> + <vehicle id="car2557" depart="2557.00"> + <route edges="1/3to2/3 2/3to3/3 3/3to4/3 4/3to3/3"/> + </vehicle> + <vehicle id="car2558" depart="2558.00"> + <route edges="1/3to1/4 1/4to1/3 1/3to1/2 1/2to1/1 1/1to1/0 1/0to2/0"/> + </vehicle> + <vehicle id="car2559" depart="2559.00"> + <route edges="0/3to0/2 0/2to0/3 0/3to0/4 0/4to1/4 1/4to2/4 2/4to2/3"/> + </vehicle> + <vehicle id="car2560" depart="2560.00"> + <route edges="0/2to0/1 0/1to0/2 0/2to1/2 1/2to1/3 1/3to2/3 2/3to3/3 3/3to4/3"/> + </vehicle> + <vehicle id="car2561" depart="2561.00"> + <route edges="1/0to2/0 2/0to2/1 2/1to2/2 2/2to2/3 2/3to3/3"/> + </vehicle> + <vehicle id="car2562" depart="2562.00"> + <route edges="3/0to3/1 3/1to3/2 3/2to2/2 2/2to1/2 1/2to0/2"/> + </vehicle> + <vehicle id="car2563" depart="2563.00"> + <route edges="3/3to4/3 4/3to3/3 3/3to3/2 3/2to2/2 2/2to2/1 2/1to1/1 1/1to0/1 0/1to1/1"/> + </vehicle> + <vehicle id="car2564" depart="2564.00"> + <route edges="1/3to0/3 0/3to1/3 1/3to2/3 2/3to2/2 2/2to2/1 2/1to1/1"/> + </vehicle> + <vehicle id="car2565" depart="2565.00"> + <route edges="4/3to4/2 4/2to3/2 3/2to3/3 3/3to2/3"/> + </vehicle> + <vehicle id="car2566" depart="2566.00"> + <route edges="1/3to0/3 0/3to1/3 1/3to2/3 2/3to3/3 3/3to4/3 4/3to4/2 4/2to4/1 4/1to4/0"/> + </vehicle> + <vehicle id="car2567" depart="2567.00"> + <route edges="3/3to3/4 3/4to2/4 2/4to1/4 1/4to0/4 0/4to0/3"/> + </vehicle> + <vehicle id="car2568" depart="2568.00"> + <route edges="1/4to1/3 1/3to1/2 1/2to1/1 1/1to1/0 1/0to0/0 0/0to0/1"/> + </vehicle> + <vehicle id="car2569" depart="2569.00"> + <route edges="2/4to1/4 1/4to2/4 2/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to3/2"/> + </vehicle> + <vehicle id="car2570" depart="2570.00"> + <route edges="0/1to1/1 1/1to1/2 1/2to2/2 2/2to2/3"/> + </vehicle> + <vehicle id="car2571" depart="2571.00"> + <route edges="3/4to4/4 4/4to4/3 4/3to4/2 4/2to4/1 4/1to4/0 4/0to4/1"/> + </vehicle> + <vehicle id="car2572" depart="2572.00"> + <route edges="1/1to0/1 0/1to1/1 1/1to1/2 1/2to2/2 2/2to3/2 3/2to4/2 4/2to3/2"/> + </vehicle> + <vehicle id="car2573" depart="2573.00"> + <route edges="4/4to3/4 3/4to2/4 2/4to2/3"/> + </vehicle> + <vehicle id="car2574" depart="2574.00"> + <route edges="4/3to4/4 4/4to4/3 4/3to4/2 4/2to4/1 4/1to4/0 4/0to3/0 3/0to2/0"/> + </vehicle> + <vehicle id="car2575" depart="2575.00"> + <route edges="2/0to3/0 3/0to2/0 2/0to1/0 1/0to0/0 0/0to0/1 0/1to0/2 0/2to0/3 0/3to0/4 0/4to1/4"/> + </vehicle> + <vehicle id="car2576" depart="2576.00"> + <route edges="2/1to2/2 2/2to3/2 3/2to3/3 3/3to4/3"/> + </vehicle> + <vehicle id="car2577" depart="2577.00"> + <route edges="1/1to2/1 2/1to2/2 2/2to3/2 3/2to3/3"/> + </vehicle> + <vehicle id="car2578" depart="2578.00"> + <route edges="4/3to4/2 4/2to3/2 3/2to2/2 2/2to1/2 1/2to1/3 1/3to1/4"/> + </vehicle> + <vehicle id="car2579" depart="2579.00"> + <route edges="3/2to4/2 4/2to3/2 3/2to3/1 3/1to2/1 2/1to1/1 1/1to0/1"/> + </vehicle> + <vehicle id="car2580" depart="2580.00"> + <route edges="1/0to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to2/4 2/4to3/4 3/4to4/4 4/4to4/3"/> + </vehicle> + <vehicle id="car2581" depart="2581.00"> + <route edges="1/4to1/3 1/3to0/3 0/3to0/2 0/2to0/1"/> + </vehicle> + <vehicle id="car2582" depart="2582.00"> + <route edges="0/1to0/0 0/0to0/1 0/1to0/2 0/2to0/3 0/3to0/4"/> + </vehicle> + <vehicle id="car2583" depart="2583.00"> + <route edges="1/2to2/2 2/2to2/1 2/1to1/1 1/1to1/0 1/0to2/0"/> + </vehicle> + <vehicle id="car2584" depart="2584.00"> + <route edges="2/4to1/4 1/4to2/4 2/4to3/4 3/4to3/3 3/3to3/2"/> + </vehicle> + <vehicle id="car2585" depart="2585.00"> + <route edges="4/0to3/0 3/0to3/1 3/1to3/2 3/2to4/2 4/2to3/2"/> + </vehicle> + <vehicle id="car2586" depart="2586.00"> + <route edges="0/0to1/0 1/0to2/0 2/0to3/0 3/0to3/1 3/1to3/2"/> + </vehicle> + <vehicle id="car2587" depart="2587.00"> + <route edges="1/4to2/4 2/4to3/4 3/4to3/3 3/3to3/4"/> + </vehicle> + <vehicle id="car2588" depart="2588.00"> + <route edges="0/3to0/2 0/2to1/2 1/2to2/2 2/2to3/2 3/2to4/2 4/2to4/3"/> + </vehicle> + <vehicle id="car2589" depart="2589.00"> + <route edges="1/3to0/3 0/3to1/3 1/3to1/2 1/2to1/1 1/1to2/1"/> + </vehicle> + <vehicle id="car2590" depart="2590.00"> + <route edges="3/4to2/4 2/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to2/1"/> + </vehicle> + <vehicle id="car2591" depart="2591.00"> + <route edges="4/4to4/3 4/3to4/2 4/2to4/1 4/1to4/0"/> + </vehicle> + <vehicle id="car2592" depart="2592.00"> + <route edges="4/1to4/0 4/0to3/0 3/0to2/0 2/0to1/0 1/0to0/0 0/0to0/1 0/1to0/2 0/2to0/1"/> + </vehicle> + <vehicle id="car2593" depart="2593.00"> + <route edges="0/4to0/3 0/3to0/2 0/2to1/2 1/2to2/2 2/2to3/2 3/2to4/2 4/2to4/1"/> + </vehicle> + <vehicle id="car2594" depart="2594.00"> + <route edges="3/3to4/3 4/3to4/2 4/2to4/1 4/1to4/0 4/0to3/0 3/0to2/0 2/0to1/0 1/0to2/0"/> + </vehicle> + <vehicle id="car2595" depart="2595.00"> + <route edges="2/3to1/3 1/3to2/3 2/3to3/3 3/3to4/3"/> + </vehicle> + <vehicle id="car2596" depart="2596.00"> + <route edges="1/3to1/4 1/4to1/3 1/3to1/2 1/2to1/1 1/1to0/1 0/1to1/1"/> + </vehicle> + <vehicle id="car2597" depart="2597.00"> + <route edges="3/3to4/3 4/3to4/2 4/2to4/1 4/1to3/1"/> + </vehicle> + <vehicle id="car2598" depart="2598.00"> + <route edges="4/0to4/1 4/1to4/2 4/2to4/3 4/3to4/4"/> + </vehicle> + <vehicle id="car2599" depart="2599.00"> + <route edges="4/1to4/0 4/0to3/0 3/0to2/0 2/0to1/0 1/0to1/1 1/1to0/1"/> + </vehicle> + <vehicle id="car2600" depart="2600.00"> + <route edges="0/2to0/3 0/3to1/3 1/3to2/3 2/3to2/2 2/2to2/1 2/1to3/1"/> + </vehicle> + <vehicle id="car2601" depart="2601.00"> + <route edges="3/1to3/0 3/0to2/0 2/0to1/0 1/0to0/0 0/0to0/1 0/1to0/2 0/2to0/1"/> + </vehicle> + <vehicle id="car2602" depart="2602.00"> + <route edges="3/0to4/0 4/0to3/0 3/0to2/0 2/0to2/1 2/1to2/2 2/2to2/3"/> + </vehicle> + <vehicle id="car2603" depart="2603.00"> + <route edges="2/0to2/1 2/1to3/1 3/1to3/2 3/2to4/2 4/2to4/1"/> + </vehicle> + <vehicle id="car2604" depart="2604.00"> + <route edges="2/4to1/4 1/4to0/4 0/4to0/3 0/3to0/2 0/2to0/1 0/1to0/0"/> + </vehicle> + <vehicle id="car2605" depart="2605.00"> + <route edges="4/1to3/1 3/1to3/0 3/0to2/0 2/0to1/0"/> + </vehicle> + <vehicle id="car2606" depart="2606.00"> + <route edges="1/3to0/3 0/3to1/3 1/3to2/3 2/3to3/3 3/3to4/3 4/3to4/2 4/2to4/1 4/1to4/2"/> + </vehicle> + <vehicle id="car2607" depart="2607.00"> + <route edges="2/3to3/3 3/3to4/3 4/3to4/2 4/2to4/3"/> + </vehicle> + <vehicle id="car2608" depart="2608.00"> + <route edges="2/1to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to0/4"/> + </vehicle> + <vehicle id="car2609" depart="2609.00"> + <route edges="2/4to1/4 1/4to2/4 2/4to2/3 2/3to2/2 2/2to2/1 2/1to3/1"/> + </vehicle> + <vehicle id="car2610" depart="2610.00"> + <route edges="3/0to2/0 2/0to2/1 2/1to1/1"/> + </vehicle> + <vehicle id="car2611" depart="2611.00"> + <route edges="3/4to2/4 2/4to1/4 1/4to1/3 1/3to1/2"/> + </vehicle> + <vehicle id="car2612" depart="2612.00"> + <route edges="1/4to2/4 2/4to2/3 2/3to2/2 2/2to2/1 2/1to2/0 2/0to1/0 1/0to1/1"/> + </vehicle> + <vehicle id="car2613" depart="2613.00"> + <route edges="1/1to1/2 1/2to2/2 2/2to2/1 2/1to2/0 2/0to3/0 3/0to4/0"/> + </vehicle> + <vehicle id="car2614" depart="2614.00"> + <route edges="4/0to3/0 3/0to2/0 2/0to2/1 2/1to2/2 2/2to3/2"/> + </vehicle> + <vehicle id="car2615" depart="2615.00"> + <route edges="3/0to4/0 4/0to3/0 3/0to3/1 3/1to3/2 3/2to3/3 3/3to3/4"/> + </vehicle> + <vehicle id="car2616" depart="2616.00"> + <route edges="4/2to4/3 4/3to4/2 4/2to3/2 3/2to2/2 2/2to1/2 1/2to0/2 0/2to1/2"/> + </vehicle> + <vehicle id="car2617" depart="2617.00"> + <route edges="3/4to3/3 3/3to3/2 3/2to3/1 3/1to3/2"/> + </vehicle> + <vehicle id="car2618" depart="2618.00"> + <route edges="4/2to3/2 3/2to3/1 3/1to3/0 3/0to2/0 2/0to1/0 1/0to0/0 0/0to0/1"/> + </vehicle> + <vehicle id="car2619" depart="2619.00"> + <route edges="1/2to2/2 2/2to2/3 2/3to2/4 2/4to3/4 3/4to3/3"/> + </vehicle> + <vehicle id="car2620" depart="2620.00"> + <route edges="3/3to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to2/0 2/0to2/1"/> + </vehicle> + <vehicle id="car2621" depart="2621.00"> + <route edges="2/0to2/1 2/1to2/2 2/2to2/3 2/3to2/4 2/4to1/4"/> + </vehicle> + <vehicle id="car2622" depart="2622.00"> + <route edges="0/4to0/3 0/3to0/2 0/2to0/1 0/1to0/0 0/0to1/0 1/0to2/0 2/0to1/0"/> + </vehicle> + <vehicle id="car2623" depart="2623.00"> + <route edges="1/1to1/2 1/2to2/2 2/2to3/2 3/2to4/2"/> + </vehicle> + <vehicle id="car2624" depart="2624.00"> + <route edges="3/3to4/3 4/3to3/3 3/3to2/3 2/3to1/3 1/3to1/2"/> + </vehicle> + <vehicle id="car2625" depart="2625.00"> + <route edges="1/0to2/0 2/0to2/1 2/1to2/2 2/2to2/3 2/3to3/3 3/3to3/2"/> + </vehicle> + <vehicle id="car2626" depart="2626.00"> + <route edges="3/1to4/1 4/1to3/1 3/1to2/1 2/1to1/1 1/1to0/1"/> + </vehicle> + <vehicle id="car2627" depart="2627.00"> + <route edges="2/1to2/0 2/0to2/1 2/1to2/2 2/2to2/3 2/3to2/4"/> + </vehicle> + <vehicle id="car2628" depart="2628.00"> + <route edges="0/3to1/3 1/3to2/3 2/3to3/3 3/3to4/3 4/3to3/3"/> + </vehicle> + <vehicle id="car2629" depart="2629.00"> + <route edges="0/0to0/1 0/1to0/2 0/2to0/3 0/3to0/4 0/4to1/4 1/4to2/4 2/4to3/4 3/4to2/4"/> + </vehicle> + <vehicle id="car2630" depart="2630.00"> + <route edges="2/0to3/0 3/0to3/1 3/1to3/2"/> + </vehicle> + <vehicle id="car2631" depart="2631.00"> + <route edges="2/0to2/1 2/1to3/1 3/1to3/2 3/2to3/3 3/3to3/4"/> + </vehicle> + <vehicle id="car2632" depart="2632.00"> + <route edges="0/0to1/0 1/0to2/0 2/0to3/0 3/0to3/1 3/1to3/2 3/2to3/3 3/3to3/4"/> + </vehicle> + <vehicle id="car2633" depart="2633.00"> + <route edges="4/2to4/1 4/1to3/1 3/1to2/1 2/1to1/1 1/1to0/1 0/1to0/2 0/2to0/3 0/3to0/4 0/4to1/4"/> + </vehicle> + <vehicle id="car2634" depart="2634.00"> + <route edges="4/3to4/2 4/2to3/2 3/2to2/2 2/2to1/2 1/2to1/3 1/3to1/4"/> + </vehicle> + <vehicle id="car2635" depart="2635.00"> + <route edges="3/0to3/1 3/1to3/2 3/2to3/3 3/3to3/4 3/4to2/4 2/4to3/4"/> + </vehicle> + <vehicle id="car2636" depart="2636.00"> + <route edges="2/4to3/4 3/4to4/4 4/4to4/3 4/3to4/2 4/2to4/1 4/1to3/1"/> + </vehicle> + <vehicle id="car2637" depart="2637.00"> + <route edges="4/4to3/4 3/4to2/4 2/4to1/4 1/4to1/3 1/3to1/2 1/2to1/1 1/1to0/1"/> + </vehicle> + <vehicle id="car2638" depart="2638.00"> + <route edges="2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to2/3 2/3to1/3"/> + </vehicle> + <vehicle id="car2639" depart="2639.00"> + <route edges="1/0to2/0 2/0to1/0 1/0to0/0 0/0to0/1 0/1to0/2 0/2to0/3 0/3to0/2"/> + </vehicle> + <vehicle id="car2640" depart="2640.00"> + <route edges="4/1to4/2 4/2to3/2 3/2to2/2 2/2to1/2 1/2to0/2 0/2to1/2"/> + </vehicle> + <vehicle id="car2641" depart="2641.00"> + <route edges="0/3to0/2 0/2to0/3 0/3to1/3 1/3to2/3 2/3to2/4"/> + </vehicle> + <vehicle id="car2642" depart="2642.00"> + <route edges="0/1to0/0 0/0to1/0 1/0to2/0 2/0to3/0 3/0to3/1 3/1to4/1"/> + </vehicle> + <vehicle id="car2643" depart="2643.00"> + <route edges="0/2to0/1 0/1to0/2 0/2to1/2 1/2to1/3 1/3to2/3 2/3to3/3 3/3to4/3 4/3to4/4"/> + </vehicle> + <vehicle id="car2644" depart="2644.00"> + <route edges="3/1to2/1 2/1to1/1 1/1to0/1 0/1to0/2 0/2to0/1"/> + </vehicle> + <vehicle id="car2645" depart="2645.00"> + <route edges="0/1to1/1 1/1to2/1 2/1to2/2 2/2to3/2"/> + </vehicle> + <vehicle id="car2646" depart="2646.00"> + <route edges="1/0to0/0 0/0to1/0 1/0to2/0 2/0to3/0 3/0to4/0 4/0to4/1"/> + </vehicle> + <vehicle id="car2647" depart="2647.00"> + <route edges="2/0to2/1 2/1to2/2 2/2to2/3 2/3to2/4 2/4to1/4 1/4to0/4 0/4to1/4"/> + </vehicle> + <vehicle id="car2648" depart="2648.00"> + <route edges="2/2to1/2 1/2to0/2 0/2to0/1"/> + </vehicle> + <vehicle id="car2649" depart="2649.00"> + <route edges="4/3to4/2 4/2to4/1 4/1to3/1"/> + </vehicle> + <vehicle id="car2650" depart="2650.00"> + <route edges="0/3to1/3 1/3to1/2 1/2to1/1 1/1to0/1"/> + </vehicle> + <vehicle id="car2651" depart="2651.00"> + <route edges="2/1to3/1 3/1to2/1 2/1to2/2 2/2to2/3 2/3to2/4 2/4to3/4"/> + </vehicle> + <vehicle id="car2652" depart="2652.00"> + <route edges="4/3to3/3 3/3to3/4 3/4to2/4 2/4to1/4"/> + </vehicle> + <vehicle id="car2653" depart="2653.00"> + <route edges="0/4to0/3 0/3to0/2 0/2to0/1"/> + </vehicle> + <vehicle id="car2654" depart="2654.00"> + <route edges="2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to2/4 2/4to3/4 3/4to2/4"/> + </vehicle> + <vehicle id="car2655" depart="2655.00"> + <route edges="4/1to4/0 4/0to3/0 3/0to2/0 2/0to2/1 2/1to2/2"/> + </vehicle> + <vehicle id="car2656" depart="2656.00"> + <route edges="1/2to2/2 2/2to3/2 3/2to4/2 4/2to4/1 4/1to4/0"/> + </vehicle> + <vehicle id="car2657" depart="2657.00"> + <route edges="3/0to2/0 2/0to2/1 2/1to2/2 2/2to2/3 2/3to3/3 3/3to3/4 3/4to2/4"/> + </vehicle> + <vehicle id="car2658" depart="2658.00"> + <route edges="4/1to4/2 4/2to3/2 3/2to3/3"/> + </vehicle> + <vehicle id="car2659" depart="2659.00"> + <route edges="1/0to1/1 1/1to2/1 2/1to2/2 2/2to2/3 2/3to3/3"/> + </vehicle> + <vehicle id="car2660" depart="2660.00"> + <route edges="2/0to1/0 1/0to1/1 1/1to2/1 2/1to2/2 2/2to3/2 3/2to3/3 3/3to4/3 4/3to3/3"/> + </vehicle> + <vehicle id="car2661" depart="2661.00"> + <route edges="1/1to2/1 2/1to3/1 3/1to4/1 4/1to3/1"/> + </vehicle> + <vehicle id="car2662" depart="2662.00"> + <route edges="1/2to1/1 1/1to1/0 1/0to2/0 2/0to3/0 3/0to3/1"/> + </vehicle> + <vehicle id="car2663" depart="2663.00"> + <route edges="1/2to2/2 2/2to3/2 3/2to4/2 4/2to4/1"/> + </vehicle> + <vehicle id="car2664" depart="2664.00"> + <route edges="4/4to4/3 4/3to3/3 3/3to2/3 2/3to2/4"/> + </vehicle> + <vehicle id="car2665" depart="2665.00"> + <route edges="4/4to4/3 4/3to3/3 3/3to3/2 3/2to2/2 2/2to1/2 1/2to0/2 0/2to0/3"/> + </vehicle> + <vehicle id="car2666" depart="2666.00"> + <route edges="0/3to0/2 0/2to0/3 0/3to1/3 1/3to2/3 2/3to3/3 3/3to3/2"/> + </vehicle> + <vehicle id="car2667" depart="2667.00"> + <route edges="2/1to2/2 2/2to1/2 1/2to0/2 0/2to0/1"/> + </vehicle> + <vehicle id="car2668" depart="2668.00"> + <route edges="1/4to2/4 2/4to3/4 3/4to3/3 3/3to3/2 3/2to4/2"/> + </vehicle> + <vehicle id="car2669" depart="2669.00"> + <route edges="4/0to4/1 4/1to4/0 4/0to3/0 3/0to2/0 2/0to1/0"/> + </vehicle> + <vehicle id="car2670" depart="2670.00"> + <route edges="0/0to0/1 0/1to0/2 0/2to0/3 0/3to0/4"/> + </vehicle> + <vehicle id="car2671" depart="2671.00"> + <route edges="4/2to4/1 4/1to3/1 3/1to2/1 2/1to1/1 1/1to1/2 1/2to1/3 1/3to1/4"/> + </vehicle> + <vehicle id="car2672" depart="2672.00"> + <route edges="3/2to4/2 4/2to3/2 3/2to2/2 2/2to1/2"/> + </vehicle> + <vehicle id="car2673" depart="2673.00"> + <route edges="0/2to0/1 0/1to0/2 0/2to1/2 1/2to1/3 1/3to2/3 2/3to2/2"/> + </vehicle> + <vehicle id="car2674" depart="2674.00"> + <route edges="1/1to2/1 2/1to2/2 2/2to3/2 3/2to3/3 3/3to4/3 4/3to4/2"/> + </vehicle> + <vehicle id="car2675" depart="2675.00"> + <route edges="0/4to0/3 0/3to0/4 0/4to1/4 1/4to2/4 2/4to3/4 3/4to3/3"/> + </vehicle> + <vehicle id="car2676" depart="2676.00"> + <route edges="4/0to3/0 3/0to2/0 2/0to1/0 1/0to0/0"/> + </vehicle> + <vehicle id="car2677" depart="2677.00"> + <route edges="0/0to1/0 1/0to0/0 0/0to0/1 0/1to0/2 0/2to0/3 0/3to0/2"/> + </vehicle> + <vehicle id="car2678" depart="2678.00"> + <route edges="2/0to1/0 1/0to0/0 0/0to0/1 0/1to0/2 0/2to0/3"/> + </vehicle> + <vehicle id="car2679" depart="2679.00"> + <route edges="3/1to3/2 3/2to3/1 3/1to2/1 2/1to1/1 1/1to1/0"/> + </vehicle> + <vehicle id="car2680" depart="2680.00"> + <route edges="3/1to4/1 4/1to3/1 3/1to3/2 3/2to3/3 3/3to3/4 3/4to4/4"/> + </vehicle> + <vehicle id="car2681" depart="2681.00"> + <route edges="3/4to2/4 2/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to4/0"/> + </vehicle> + <vehicle id="car2682" depart="2682.00"> + <route edges="2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to0/3"/> + </vehicle> + <vehicle id="car2683" depart="2683.00"> + <route edges="4/2to4/3 4/3to4/4 4/4to3/4 3/4to2/4 2/4to1/4 1/4to1/3"/> + </vehicle> + <vehicle id="car2684" depart="2684.00"> + <route edges="2/0to3/0 3/0to4/0 4/0to4/1 4/1to4/2 4/2to4/3 4/3to4/4 4/4to4/3"/> + </vehicle> + <vehicle id="car2685" depart="2685.00"> + <route edges="1/3to1/4 1/4to1/3 1/3to1/2 1/2to1/1 1/1to1/0 1/0to2/0"/> + </vehicle> + <vehicle id="car2686" depart="2686.00"> + <route edges="3/1to3/0 3/0to2/0 2/0to1/0 1/0to1/1 1/1to1/0"/> + </vehicle> + <vehicle id="car2687" depart="2687.00"> + <route edges="4/1to4/0 4/0to3/0 3/0to3/1 3/1to3/2 3/2to3/3 3/3to4/3"/> + </vehicle> + <vehicle id="car2688" depart="2688.00"> + <route edges="3/4to4/4 4/4to4/3 4/3to4/2 4/2to4/1 4/1to4/0 4/0to3/0 3/0to2/0 2/0to1/0 1/0to0/0"/> + </vehicle> + <vehicle id="car2689" depart="2689.00"> + <route edges="1/0to0/0 0/0to1/0 1/0to2/0 2/0to3/0"/> + </vehicle> + <vehicle id="car2690" depart="2690.00"> + <route edges="2/3to2/4 2/4to2/3 2/3to2/2 2/2to2/1 2/1to1/1 1/1to1/0 1/0to2/0"/> + </vehicle> + <vehicle id="car2691" depart="2691.00"> + <route edges="4/3to3/3 3/3to2/3 2/3to1/3 1/3to0/3 0/3to0/4"/> + </vehicle> + <vehicle id="car2692" depart="2692.00"> + <route edges="1/1to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to0/4"/> + </vehicle> + <vehicle id="car2693" depart="2693.00"> + <route edges="1/3to1/2 1/2to1/1 1/1to1/0 1/0to2/0 2/0to1/0"/> + </vehicle> + <vehicle id="car2694" depart="2694.00"> + <route edges="2/1to2/2 2/2to1/2 1/2to0/2 0/2to0/1"/> + </vehicle> + <vehicle id="car2695" depart="2695.00"> + <route edges="3/4to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to4/0"/> + </vehicle> + <vehicle id="car2696" depart="2696.00"> + <route edges="1/4to1/3 1/3to0/3 0/3to0/2 0/2to0/1"/> + </vehicle> + <vehicle id="car2697" depart="2697.00"> + <route edges="1/1to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to0/3"/> + </vehicle> + <vehicle id="car2698" depart="2698.00"> + <route edges="4/4to4/3 4/3to4/2 4/2to4/1 4/1to4/0 4/0to4/1"/> + </vehicle> + <vehicle id="car2699" depart="2699.00"> + <route edges="1/0to0/0 0/0to0/1 0/1to1/1 1/1to1/2 1/2to2/2 2/2to2/3 2/3to3/3 3/3to4/3 4/3to4/2"/> + </vehicle> + <vehicle id="car2700" depart="2700.00"> + <route edges="4/3to4/4 4/4to4/3 4/3to4/2 4/2to4/1 4/1to3/1 3/1to4/1"/> + </vehicle> + <vehicle id="car2701" depart="2701.00"> + <route edges="1/3to1/4 1/4to2/4 2/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to3/1"/> + </vehicle> + <vehicle id="car2702" depart="2702.00"> + <route edges="4/1to4/0 4/0to3/0 3/0to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to1/2"/> + </vehicle> + <vehicle id="car2703" depart="2703.00"> + <route edges="4/0to4/1 4/1to4/2 4/2to3/2 3/2to2/2 2/2to1/2"/> + </vehicle> + <vehicle id="car2704" depart="2704.00"> + <route edges="1/3to1/4 1/4to2/4 2/4to3/4"/> + </vehicle> + <vehicle id="car2705" depart="2705.00"> + <route edges="3/0to4/0 4/0to3/0 3/0to2/0 2/0to1/0 1/0to1/1 1/1to1/2"/> + </vehicle> + <vehicle id="car2706" depart="2706.00"> + <route edges="2/4to1/4 1/4to2/4 2/4to3/4 3/4to4/4 4/4to4/3"/> + </vehicle> + <vehicle id="car2707" depart="2707.00"> + <route edges="4/1to4/2 4/2to4/3 4/3to3/3 3/3to2/3 2/3to1/3 1/3to0/3"/> + </vehicle> + <vehicle id="car2708" depart="2708.00"> + <route edges="3/0to2/0 2/0to1/0 1/0to0/0 0/0to0/1 0/1to1/1"/> + </vehicle> + <vehicle id="car2709" depart="2709.00"> + <route edges="1/4to1/3 1/3to1/2 1/2to2/2"/> + </vehicle> + <vehicle id="car2710" depart="2710.00"> + <route edges="0/4to1/4 1/4to1/3 1/3to1/2 1/2to1/1 1/1to0/1"/> + </vehicle> + <vehicle id="car2711" depart="2711.00"> + <route edges="0/1to0/2 0/2to1/2 1/2to2/2 2/2to3/2 3/2to4/2 4/2to4/1"/> + </vehicle> + <vehicle id="car2712" depart="2712.00"> + <route edges="3/2to4/2 4/2to3/2 3/2to2/2 2/2to1/2 1/2to1/3 1/3to1/4"/> + </vehicle> + <vehicle id="car2713" depart="2713.00"> + <route edges="1/2to1/3 1/3to2/3 2/3to2/2 2/2to2/1 2/1to2/0 2/0to3/0 3/0to4/0"/> + </vehicle> + <vehicle id="car2714" depart="2714.00"> + <route edges="4/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to4/0"/> + </vehicle> + <vehicle id="car2715" depart="2715.00"> + <route edges="1/2to2/2 2/2to1/2 1/2to1/1 1/1to0/1 0/1to0/0 0/0to1/0"/> + </vehicle> + <vehicle id="car2716" depart="2716.00"> + <route edges="4/0to3/0 3/0to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to1/4"/> + </vehicle> + <vehicle id="car2717" depart="2717.00"> + <route edges="4/2to3/2 3/2to3/1 3/1to3/0"/> + </vehicle> + <vehicle id="car2718" depart="2718.00"> + <route edges="1/1to2/1 2/1to3/1 3/1to3/2"/> + </vehicle> + <vehicle id="car2719" depart="2719.00"> + <route edges="3/2to3/1 3/1to2/1 2/1to2/2 2/2to2/3 2/3to2/4 2/4to3/4"/> + </vehicle> + <vehicle id="car2720" depart="2720.00"> + <route edges="1/4to2/4 2/4to2/3 2/3to1/3 1/3to1/2"/> + </vehicle> + <vehicle id="car2721" depart="2721.00"> + <route edges="2/1to2/0 2/0to1/0 1/0to0/0 0/0to0/1"/> + </vehicle> + <vehicle id="car2722" depart="2722.00"> + <route edges="4/1to3/1 3/1to2/1 2/1to1/1 1/1to0/1 0/1to0/2 0/2to0/1"/> + </vehicle> + <vehicle id="car2723" depart="2723.00"> + <route edges="1/0to2/0 2/0to3/0 3/0to3/1"/> + </vehicle> + <vehicle id="car2724" depart="2724.00"> + <route edges="0/4to0/3 0/3to0/2 0/2to1/2 1/2to1/1 1/1to0/1"/> + </vehicle> + <vehicle id="car2725" depart="2725.00"> + <route edges="0/2to1/2 1/2to1/3 1/3to1/4 1/4to2/4 2/4to2/3"/> + </vehicle> + <vehicle id="car2726" depart="2726.00"> + <route edges="1/1to1/2 1/2to0/2 0/2to0/3"/> + </vehicle> + <vehicle id="car2727" depart="2727.00"> + <route edges="3/2to3/1 3/1to2/1 2/1to1/1 1/1to1/2 1/2to1/3 1/3to0/3"/> + </vehicle> + <vehicle id="car2728" depart="2728.00"> + <route edges="1/2to1/3 1/3to2/3 2/3to2/2 2/2to2/1 2/1to2/0"/> + </vehicle> + <vehicle id="car2729" depart="2729.00"> + <route edges="3/0to3/1 3/1to3/2 3/2to2/2 2/2to1/2 1/2to1/1"/> + </vehicle> + <vehicle id="car2730" depart="2730.00"> + <route edges="3/3to3/4 3/4to2/4 2/4to1/4 1/4to0/4 0/4to0/3 0/3to0/2 0/2to0/3"/> + </vehicle> + <vehicle id="car2731" depart="2731.00"> + <route edges="4/3to4/4 4/4to4/3 4/3to4/2 4/2to4/1 4/1to4/0 4/0to3/0 3/0to2/0 2/0to1/0"/> + </vehicle> + <vehicle id="car2732" depart="2732.00"> + <route edges="3/3to4/3 4/3to4/2 4/2to4/1 4/1to4/0 4/0to3/0 3/0to2/0 2/0to1/0 1/0to0/0 0/0to1/0"/> + </vehicle> + <vehicle id="car2733" depart="2733.00"> + <route edges="1/4to2/4 2/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to4/0 4/0to4/1"/> + </vehicle> + <vehicle id="car2734" depart="2734.00"> + <route edges="3/3to2/3 2/3to3/3 3/3to4/3 4/3to4/2 4/2to4/1"/> + </vehicle> + <vehicle id="car2735" depart="2735.00"> + <route edges="3/2to3/3 3/3to3/2 3/2to2/2 2/2to1/2 1/2to0/2"/> + </vehicle> + <vehicle id="car2736" depart="2736.00"> + <route edges="1/4to2/4 2/4to3/4"/> + </vehicle> + <vehicle id="car2737" depart="2737.00"> + <route edges="2/1to3/1 3/1to2/1 2/1to1/1 1/1to0/1 0/1to0/2 0/2to0/3 0/3to0/4 0/4to1/4"/> + </vehicle> + <vehicle id="car2738" depart="2738.00"> + <route edges="2/2to2/1 2/1to2/2 2/2to3/2 3/2to4/2 4/2to4/3"/> + </vehicle> + <vehicle id="car2739" depart="2739.00"> + <route edges="1/4to1/3 1/3to1/2 1/2to2/2 2/2to2/1"/> + </vehicle> + <vehicle id="car2740" depart="2740.00"> + <route edges="3/0to4/0 4/0to4/1 4/1to4/2 4/2to4/3 4/3to4/4 4/4to3/4 3/4to2/4 2/4to2/3"/> + </vehicle> + <vehicle id="car2741" depart="2741.00"> + <route edges="2/0to2/1 2/1to1/1 1/1to0/1 0/1to0/2"/> + </vehicle> + <vehicle id="car2742" depart="2742.00"> + <route edges="4/2to4/1 4/1to3/1 3/1to3/2 3/2to3/3 3/3to3/4 3/4to2/4 2/4to1/4 1/4to2/4"/> + </vehicle> + <vehicle id="car2743" depart="2743.00"> + <route edges="2/3to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to2/0 2/0to1/0 1/0to2/0"/> + </vehicle> + <vehicle id="car2744" depart="2744.00"> + <route edges="2/1to1/1 1/1to1/2 1/2to0/2"/> + </vehicle> + <vehicle id="car2745" depart="2745.00"> + <route edges="3/1to2/1 2/1to3/1 3/1to3/2 3/2to4/2 4/2to4/3"/> + </vehicle> + <vehicle id="car2746" depart="2746.00"> + <route edges="0/1to0/0 0/0to0/1 0/1to0/2 0/2to0/3 0/3to0/4 0/4to1/4 1/4to2/4 2/4to3/4 3/4to3/3"/> + </vehicle> + <vehicle id="car2747" depart="2747.00"> + <route edges="3/0to3/1 3/1to3/2"/> + </vehicle> + <vehicle id="car2748" depart="2748.00"> + <route edges="3/1to3/2 3/2to2/2 2/2to1/2 1/2to0/2"/> + </vehicle> + <vehicle id="car2749" depart="2749.00"> + <route edges="2/4to3/4 3/4to4/4 4/4to4/3 4/3to4/2"/> + </vehicle> + <vehicle id="car2750" depart="2750.00"> + <route edges="4/0to3/0 3/0to2/0 2/0to1/0 1/0to0/0 0/0to0/1"/> + </vehicle> + <vehicle id="car2751" depart="2751.00"> + <route edges="3/3to3/2 3/2to3/1 3/1to3/0 3/0to4/0"/> + </vehicle> + <vehicle id="car2752" depart="2752.00"> + <route edges="4/2to4/1 4/1to4/0 4/0to3/0 3/0to2/0 2/0to1/0"/> + </vehicle> + <vehicle id="car2753" depart="2753.00"> + <route edges="2/4to1/4 1/4to2/4 2/4to3/4 3/4to4/4 4/4to4/3 4/3to4/2 4/2to3/2"/> + </vehicle> + <vehicle id="car2754" depart="2754.00"> + <route edges="2/2to3/2 3/2to3/1 3/1to3/0 3/0to2/0 2/0to1/0 1/0to2/0"/> + </vehicle> + <vehicle id="car2755" depart="2755.00"> + <route edges="2/0to3/0 3/0to3/1 3/1to3/2 3/2to3/3 3/3to3/4 3/4to4/4"/> + </vehicle> + <vehicle id="car2756" depart="2756.00"> + <route edges="4/3to4/4 4/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to2/1"/> + </vehicle> + <vehicle id="car2757" depart="2757.00"> + <route edges="2/0to2/1 2/1to3/1 3/1to4/1 4/1to4/0"/> + </vehicle> + <vehicle id="car2758" depart="2758.00"> + <route edges="3/2to3/3 3/3to3/2 3/2to2/2 2/2to1/2 1/2to0/2 0/2to1/2"/> + </vehicle> + <vehicle id="car2759" depart="2759.00"> + <route edges="3/0to3/1 3/1to3/2 3/2to3/3 3/3to3/4"/> + </vehicle> + <vehicle id="car2760" depart="2760.00"> + <route edges="2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to0/3"/> + </vehicle> + <vehicle id="car2761" depart="2761.00"> + <route edges="3/1to2/1 2/1to2/2 2/2to3/2 3/2to3/3"/> + </vehicle> + <vehicle id="car2762" depart="2762.00"> + <route edges="1/0to0/0 0/0to0/1 0/1to0/2 0/2to0/3 0/3to0/4 0/4to1/4 1/4to1/3"/> + </vehicle> + <vehicle id="car2763" depart="2763.00"> + <route edges="3/2to2/2 2/2to2/1 2/1to1/1 1/1to1/0 1/0to2/0"/> + </vehicle> + <vehicle id="car2764" depart="2764.00"> + <route edges="1/0to1/1 1/1to2/1 2/1to2/2 2/2to3/2 3/2to3/3 3/3to4/3 4/3to3/3"/> + </vehicle> + <vehicle id="car2765" depart="2765.00"> + <route edges="2/1to2/2 2/2to2/3 2/3to2/4 2/4to3/4 3/4to3/3"/> + </vehicle> + <vehicle id="car2766" depart="2766.00"> + <route edges="1/0to1/1 1/1to2/1 2/1to2/2 2/2to2/3 2/3to3/3 3/3to2/3"/> + </vehicle> + <vehicle id="car2767" depart="2767.00"> + <route edges="1/2to0/2 0/2to1/2 1/2to2/2 2/2to3/2 3/2to4/2 4/2to3/2"/> + </vehicle> + <vehicle id="car2768" depart="2768.00"> + <route edges="1/0to0/0 0/0to0/1 0/1to1/1 1/1to1/2 1/2to2/2"/> + </vehicle> + <vehicle id="car2769" depart="2769.00"> + <route edges="2/2to1/2 1/2to2/2 2/2to3/2 3/2to3/1 3/1to3/0"/> + </vehicle> + <vehicle id="car2770" depart="2770.00"> + <route edges="0/3to0/2 0/2to0/1 0/1to1/1"/> + </vehicle> + <vehicle id="car2771" depart="2771.00"> + <route edges="3/3to2/3 2/3to2/2 2/2to2/1 2/1to2/0 2/0to1/0 1/0to0/0 0/0to0/1"/> + </vehicle> + <vehicle id="car2772" depart="2772.00"> + <route edges="2/4to1/4 1/4to2/4 2/4to3/4 3/4to4/4 4/4to4/3"/> + </vehicle> + <vehicle id="car2773" depart="2773.00"> + <route edges="0/2to1/2 1/2to2/2 2/2to3/2"/> + </vehicle> + <vehicle id="car2774" depart="2774.00"> + <route edges="0/0to0/1 0/1to0/2 0/2to0/3 0/3to0/4 0/4to1/4 1/4to2/4 2/4to3/4"/> + </vehicle> + <vehicle id="car2775" depart="2775.00"> + <route edges="4/4to3/4 3/4to3/3 3/3to2/3"/> + </vehicle> + <vehicle id="car2776" depart="2776.00"> + <route edges="1/3to1/4 1/4to2/4 2/4to2/3 2/3to2/2 2/2to2/1 2/1to1/1"/> + </vehicle> + <vehicle id="car2777" depart="2777.00"> + <route edges="1/4to1/3 1/3to1/2 1/2to1/1 1/1to2/1 2/1to3/1 3/1to4/1 4/1to4/2"/> + </vehicle> + <vehicle id="car2778" depart="2778.00"> + <route edges="4/3to3/3 3/3to3/2 3/2to3/1 3/1to3/0"/> + </vehicle> + <vehicle id="car2779" depart="2779.00"> + <route edges="1/4to2/4 2/4to2/3 2/3to2/2 2/2to1/2 1/2to1/1 1/1to0/1 0/1to1/1"/> + </vehicle> + <vehicle id="car2780" depart="2780.00"> + <route edges="0/3to0/2 0/2to0/1 0/1to1/1 1/1to2/1 2/1to2/2"/> + </vehicle> + <vehicle id="car2781" depart="2781.00"> + <route edges="3/1to4/1 4/1to3/1 3/1to3/2 3/2to3/3"/> + </vehicle> + <vehicle id="car2782" depart="2782.00"> + <route edges="4/1to4/2 4/2to4/3 4/3to4/4 4/4to3/4 3/4to2/4 2/4to1/4 1/4to0/4 0/4to0/3"/> + </vehicle> + <vehicle id="car2783" depart="2783.00"> + <route edges="2/4to3/4 3/4to4/4 4/4to4/3 4/3to4/2 4/2to4/1 4/1to3/1"/> + </vehicle> + <vehicle id="car2784" depart="2784.00"> + <route edges="1/2to1/3 1/3to2/3 2/3to3/3 3/3to3/2 3/2to3/1 3/1to4/1"/> + </vehicle> + <vehicle id="car2785" depart="2785.00"> + <route edges="3/4to3/3 3/3to2/3 2/3to1/3 1/3to1/4 1/4to1/3"/> + </vehicle> + <vehicle id="car2786" depart="2786.00"> + <route edges="2/2to1/2 1/2to1/1 1/1to1/0 1/0to2/0 2/0to3/0"/> + </vehicle> + <vehicle id="car2787" depart="2787.00"> + <route edges="1/0to2/0 2/0to3/0 3/0to4/0 4/0to4/1 4/1to4/2 4/2to4/3 4/3to4/4 4/4to3/4"/> + </vehicle> + <vehicle id="car2788" depart="2788.00"> + <route edges="0/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to0/4"/> + </vehicle> + <vehicle id="car2789" depart="2789.00"> + <route edges="0/1to0/2 0/2to0/3 0/3to0/4 0/4to1/4 1/4to2/4 2/4to3/4 3/4to2/4"/> + </vehicle> + <vehicle id="car2790" depart="2790.00"> + <route edges="1/3to1/4 1/4to2/4 2/4to2/3 2/3to2/2 2/2to2/1 2/1to2/0"/> + </vehicle> + <vehicle id="car2791" depart="2791.00"> + <route edges="2/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to2/0 2/0to2/1"/> + </vehicle> + <vehicle id="car2792" depart="2792.00"> + <route edges="3/0to2/0 2/0to1/0 1/0to0/0 0/0to0/1 0/1to0/2 0/2to0/3"/> + </vehicle> + <vehicle id="car2793" depart="2793.00"> + <route edges="2/1to1/1 1/1to2/1 2/1to2/2 2/2to3/2 3/2to4/2 4/2to4/3"/> + </vehicle> + <vehicle id="car2794" depart="2794.00"> + <route edges="4/2to4/3 4/3to4/4 4/4to3/4"/> + </vehicle> + <vehicle id="car2795" depart="2795.00"> + <route edges="4/0to4/1 4/1to4/2 4/2to3/2"/> + </vehicle> + <vehicle id="car2796" depart="2796.00"> + <route edges="1/0to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to0/4 0/4to0/3"/> + </vehicle> + <vehicle id="car2797" depart="2797.00"> + <route edges="4/0to4/1 4/1to4/2 4/2to3/2 3/2to2/2 2/2to2/3"/> + </vehicle> + <vehicle id="car2798" depart="2798.00"> + <route edges="0/3to1/3 1/3to2/3 2/3to3/3 3/3to4/3"/> + </vehicle> + <vehicle id="car2799" depart="2799.00"> + <route edges="1/3to0/3 0/3to1/3 1/3to2/3 2/3to3/3 3/3to3/2 3/2to3/1 3/1to3/0"/> + </vehicle> + <vehicle id="car2800" depart="2800.00"> + <route edges="2/3to2/2 2/2to3/2 3/2to4/2 4/2to4/1 4/1to3/1"/> + </vehicle> + <vehicle id="car2801" depart="2801.00"> + <route edges="0/3to0/4 0/4to1/4 1/4to2/4 2/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to3/0"/> + </vehicle> + <vehicle id="car2802" depart="2802.00"> + <route edges="3/3to2/3 2/3to3/3 3/3to3/2 3/2to3/1 3/1to2/1"/> + </vehicle> + <vehicle id="car2803" depart="2803.00"> + <route edges="3/2to3/1 3/1to2/1 2/1to1/1 1/1to0/1 0/1to0/2 0/2to0/3 0/3to0/4 0/4to1/4"/> + </vehicle> + <vehicle id="car2804" depart="2804.00"> + <route edges="3/3to3/2 3/2to2/2 2/2to2/1 2/1to1/1 1/1to1/0"/> + </vehicle> + <vehicle id="car2805" depart="2805.00"> + <route edges="4/1to4/2 4/2to4/3 4/3to3/3 3/3to2/3 2/3to1/3 1/3to0/3 0/3to0/4"/> + </vehicle> + <vehicle id="car2806" depart="2806.00"> + <route edges="3/2to3/3 3/3to3/2 3/2to2/2 2/2to1/2 1/2to0/2 0/2to1/2"/> + </vehicle> + <vehicle id="car2807" depart="2807.00"> + <route edges="2/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to4/0"/> + </vehicle> + <vehicle id="car2808" depart="2808.00"> + <route edges="1/4to2/4 2/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1"/> + </vehicle> + <vehicle id="car2809" depart="2809.00"> + <route edges="3/2to3/3 3/3to3/4 3/4to2/4 2/4to1/4 1/4to2/4"/> + </vehicle> + <vehicle id="car2810" depart="2810.00"> + <route edges="3/0to4/0 4/0to3/0 3/0to2/0 2/0to2/1 2/1to2/2 2/2to2/3 2/3to2/4"/> + </vehicle> + <vehicle id="car2811" depart="2811.00"> + <route edges="4/0to4/1 4/1to4/2 4/2to4/3 4/3to4/4 4/4to3/4 3/4to2/4"/> + </vehicle> + <vehicle id="car2812" depart="2812.00"> + <route edges="1/1to1/0 1/0to0/0 0/0to0/1 0/1to0/2 0/2to0/3 0/3to0/4"/> + </vehicle> + <vehicle id="car2813" depart="2813.00"> + <route edges="3/2to4/2 4/2to3/2 3/2to2/2 2/2to1/2 1/2to0/2 0/2to0/3 0/3to0/4"/> + </vehicle> + <vehicle id="car2814" depart="2814.00"> + <route edges="1/4to1/3 1/3to1/2 1/2to1/1 1/1to1/0 1/0to2/0 2/0to3/0 3/0to4/0 4/0to4/1"/> + </vehicle> + <vehicle id="car2815" depart="2815.00"> + <route edges="4/3to4/2 4/2to3/2 3/2to3/3 3/3to3/4 3/4to2/4 2/4to1/4"/> + </vehicle> + <vehicle id="car2816" depart="2816.00"> + <route edges="2/3to1/3 1/3to2/3 2/3to3/3 3/3to4/3 4/3to4/2 4/2to4/1 4/1to4/0 4/0to3/0"/> + </vehicle> + <vehicle id="car2817" depart="2817.00"> + <route edges="4/4to3/4 3/4to2/4 2/4to1/4 1/4to1/3 1/3to1/2"/> + </vehicle> + <vehicle id="car2818" depart="2818.00"> + <route edges="1/4to1/3 1/3to1/2 1/2to1/1 1/1to2/1 2/1to3/1 3/1to3/2"/> + </vehicle> + <vehicle id="car2819" depart="2819.00"> + <route edges="2/4to3/4 3/4to3/3 3/3to3/2 3/2to2/2 2/2to2/1 2/1to1/1 1/1to1/0"/> + </vehicle> + <vehicle id="car2820" depart="2820.00"> + <route edges="2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to2/3 2/3to2/2"/> + </vehicle> + <vehicle id="car2821" depart="2821.00"> + <route edges="2/1to2/2 2/2to2/3 2/3to2/4 2/4to1/4 1/4to0/4 0/4to0/3"/> + </vehicle> + <vehicle id="car2822" depart="2822.00"> + <route edges="2/4to3/4 3/4to2/4 2/4to1/4 1/4to0/4 0/4to0/3"/> + </vehicle> + <vehicle id="car2823" depart="2823.00"> + <route edges="3/1to3/0 3/0to3/1 3/1to3/2 3/2to3/3 3/3to3/4 3/4to2/4"/> + </vehicle> + <vehicle id="car2824" depart="2824.00"> + <route edges="1/3to0/3 0/3to0/4 0/4to1/4 1/4to2/4 2/4to3/4 3/4to4/4 4/4to4/3"/> + </vehicle> + <vehicle id="car2825" depart="2825.00"> + <route edges="0/3to0/4 0/4to1/4 1/4to2/4 2/4to3/4 3/4to4/4 4/4to4/3"/> + </vehicle> + <vehicle id="car2826" depart="2826.00"> + <route edges="3/2to2/2 2/2to1/2"/> + </vehicle> + <vehicle id="car2827" depart="2827.00"> + <route edges="3/4to4/4 4/4to4/3 4/3to3/3 3/3to3/2 3/2to2/2 2/2to2/1"/> + </vehicle> + <vehicle id="car2828" depart="2828.00"> + <route edges="3/2to2/2 2/2to1/2 1/2to1/3 1/3to1/4 1/4to2/4"/> + </vehicle> + <vehicle id="car2829" depart="2829.00"> + <route edges="4/4to3/4 3/4to2/4 2/4to2/3 2/3to1/3 1/3to1/4"/> + </vehicle> + <vehicle id="car2830" depart="2830.00"> + <route edges="3/4to4/4 4/4to4/3 4/3to3/3 3/3to3/2 3/2to2/2 2/2to2/1 2/1to1/1 1/1to0/1"/> + </vehicle> + <vehicle id="car2831" depart="2831.00"> + <route edges="3/2to3/3 3/3to3/4 3/4to2/4"/> + </vehicle> + <vehicle id="car2832" depart="2832.00"> + <route edges="3/2to2/2 2/2to1/2 1/2to1/1 1/1to0/1 0/1to1/1"/> + </vehicle> + <vehicle id="car2833" depart="2833.00"> + <route edges="4/1to3/1 3/1to3/0 3/0to2/0 2/0to1/0 1/0to1/1"/> + </vehicle> + <vehicle id="car2834" depart="2834.00"> + <route edges="2/2to2/1 2/1to2/0 2/0to1/0"/> + </vehicle> + <vehicle id="car2835" depart="2835.00"> + <route edges="4/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to2/1"/> + </vehicle> + <vehicle id="car2836" depart="2836.00"> + <route edges="4/0to3/0 3/0to3/1 3/1to3/2 3/2to3/3 3/3to3/4 3/4to4/4 4/4to4/3"/> + </vehicle> + <vehicle id="car2837" depart="2837.00"> + <route edges="3/1to3/2 3/2to3/3 3/3to3/4 3/4to4/4 4/4to4/3"/> + </vehicle> + <vehicle id="car2838" depart="2838.00"> + <route edges="3/3to2/3 2/3to2/2 2/2to2/1 2/1to2/0 2/0to1/0"/> + </vehicle> + <vehicle id="car2839" depart="2839.00"> + <route edges="4/0to4/1 4/1to4/0 4/0to3/0 3/0to2/0 2/0to1/0"/> + </vehicle> + <vehicle id="car2840" depart="2840.00"> + <route edges="0/3to1/3 1/3to2/3 2/3to3/3 3/3to2/3"/> + </vehicle> + <vehicle id="car2841" depart="2841.00"> + <route edges="4/0to3/0 3/0to3/1 3/1to3/2 3/2to2/2"/> + </vehicle> + <vehicle id="car2842" depart="2842.00"> + <route edges="2/1to2/2 2/2to2/1 2/1to2/0 2/0to1/0 1/0to0/0"/> + </vehicle> + <vehicle id="car2843" depart="2843.00"> + <route edges="0/4to0/3 0/3to0/2 0/2to0/1 0/1to1/1 1/1to2/1 2/1to3/1 3/1to4/1"/> + </vehicle> + <vehicle id="car2844" depart="2844.00"> + <route edges="1/1to1/0 1/0to1/1 1/1to2/1 2/1to2/2 2/2to3/2 3/2to4/2"/> + </vehicle> + <vehicle id="car2845" depart="2845.00"> + <route edges="3/2to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to2/0 2/0to1/0 1/0to0/0 0/0to0/1"/> + </vehicle> + <vehicle id="car2846" depart="2846.00"> + <route edges="3/2to3/3 3/3to3/4 3/4to2/4 2/4to1/4"/> + </vehicle> + <vehicle id="car2847" depart="2847.00"> + <route edges="3/1to3/2 3/2to3/3 3/3to3/4 3/4to4/4 4/4to4/3"/> + </vehicle> + <vehicle id="car2848" depart="2848.00"> + <route edges="0/4to0/3 0/3to1/3 1/3to2/3 2/3to3/3 3/3to4/3 4/3to4/2"/> + </vehicle> + <vehicle id="car2849" depart="2849.00"> + <route edges="4/2to4/3 4/3to4/2 4/2to3/2 3/2to2/2 2/2to1/2 1/2to0/2 0/2to1/2"/> + </vehicle> + <vehicle id="car2850" depart="2850.00"> + <route edges="4/3to4/4 4/4to4/3 4/3to4/2 4/2to4/1 4/1to4/0 4/0to3/0 3/0to2/0 2/0to1/0 1/0to1/1"/> + </vehicle> + <vehicle id="car2851" depart="2851.00"> + <route edges="0/1to1/1 1/1to1/2 1/2to2/2 2/2to2/3 2/3to3/3 3/3to4/3 4/3to4/4 4/4to3/4"/> + </vehicle> + <vehicle id="car2852" depart="2852.00"> + <route edges="3/1to2/1 2/1to2/2 2/2to2/3 2/3to2/4 2/4to2/3"/> + </vehicle> + <vehicle id="car2853" depart="2853.00"> + <route edges="4/3to4/4 4/4to4/3 4/3to4/2 4/2to4/1 4/1to4/0 4/0to3/0 3/0to3/1"/> + </vehicle> + <vehicle id="car2854" depart="2854.00"> + <route edges="2/0to2/1 2/1to1/1 1/1to0/1 0/1to0/0"/> + </vehicle> + <vehicle id="car2855" depart="2855.00"> + <route edges="3/1to2/1 2/1to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to2/4"/> + </vehicle> + <vehicle id="car2856" depart="2856.00"> + <route edges="3/1to4/1 4/1to3/1 3/1to3/2 3/2to3/3 3/3to4/3"/> + </vehicle> + <vehicle id="car2857" depart="2857.00"> + <route edges="3/1to2/1 2/1to2/2 2/2to2/3 2/3to3/3 3/3to3/4"/> + </vehicle> + <vehicle id="car2858" depart="2858.00"> + <route edges="4/1to3/1 3/1to2/1"/> + </vehicle> + <vehicle id="car2859" depart="2859.00"> + <route edges="0/2to0/3 0/3to1/3 1/3to2/3 2/3to2/2 2/2to2/1"/> + </vehicle> + <vehicle id="car2860" depart="2860.00"> + <route edges="3/1to3/0 3/0to2/0 2/0to2/1 2/1to2/2 2/2to2/3"/> + </vehicle> + <vehicle id="car2861" depart="2861.00"> + <route edges="0/0to1/0 1/0to2/0 2/0to2/1 2/1to2/2 2/2to2/3 2/3to3/3"/> + </vehicle> + <vehicle id="car2862" depart="2862.00"> + <route edges="2/3to3/3 3/3to2/3 2/3to2/2 2/2to1/2 1/2to1/1"/> + </vehicle> + <vehicle id="car2863" depart="2863.00"> + <route edges="1/0to1/1 1/1to1/2 1/2to2/2 2/2to1/2"/> + </vehicle> + <vehicle id="car2864" depart="2864.00"> + <route edges="3/0to4/0 4/0to3/0 3/0to2/0 2/0to2/1 2/1to1/1"/> + </vehicle> + <vehicle id="car2865" depart="2865.00"> + <route edges="0/2to0/1 0/1to0/2 0/2to1/2 1/2to2/2 2/2to3/2 3/2to4/2 4/2to3/2"/> + </vehicle> + <vehicle id="car2866" depart="2866.00"> + <route edges="3/3to4/3 4/3to4/2 4/2to4/1 4/1to4/0 4/0to3/0 3/0to2/0 2/0to1/0 1/0to1/1"/> + </vehicle> + <vehicle id="car2867" depart="2867.00"> + <route edges="3/4to3/3 3/3to2/3 2/3to2/2 2/2to1/2 1/2to1/1 1/1to0/1 0/1to0/0 0/0to1/0"/> + </vehicle> + <vehicle id="car2868" depart="2868.00"> + <route edges="3/4to2/4 2/4to2/3 2/3to2/2 2/2to2/1"/> + </vehicle> + <vehicle id="car2869" depart="2869.00"> + <route edges="2/2to3/2 3/2to3/3 3/3to3/4 3/4to2/4 2/4to1/4"/> + </vehicle> + <vehicle id="car2870" depart="2870.00"> + <route edges="0/3to0/4 0/4to1/4 1/4to2/4 2/4to3/4 3/4to3/3 3/3to2/3"/> + </vehicle> + <vehicle id="car2871" depart="2871.00"> + <route edges="1/0to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to2/4 2/4to2/3"/> + </vehicle> + <vehicle id="car2872" depart="2872.00"> + <route edges="1/0to1/1 1/1to2/1 2/1to2/2 2/2to2/3 2/3to2/4"/> + </vehicle> + <vehicle id="car2873" depart="2873.00"> + <route edges="3/4to2/4 2/4to1/4 1/4to0/4 0/4to0/3 0/3to0/4"/> + </vehicle> + <vehicle id="car2874" depart="2874.00"> + <route edges="0/3to1/3 1/3to1/2 1/2to1/1 1/1to0/1"/> + </vehicle> + <vehicle id="car2875" depart="2875.00"> + <route edges="0/4to1/4 1/4to2/4 2/4to2/3 2/3to2/4"/> + </vehicle> + <vehicle id="car2876" depart="2876.00"> + <route edges="4/0to4/1 4/1to3/1 3/1to2/1 2/1to1/1 1/1to0/1 0/1to0/0"/> + </vehicle> + <vehicle id="car2877" depart="2877.00"> + <route edges="4/4to3/4 3/4to3/3 3/3to3/2 3/2to2/2 2/2to2/3"/> + </vehicle> + <vehicle id="car2878" depart="2878.00"> + <route edges="1/4to1/3 1/3to2/3 2/3to2/2"/> + </vehicle> + <vehicle id="car2879" depart="2879.00"> + <route edges="2/0to3/0 3/0to4/0 4/0to4/1 4/1to4/2 4/2to4/3 4/3to3/3"/> + </vehicle> + <vehicle id="car2880" depart="2880.00"> + <route edges="0/0to0/1 0/1to0/2 0/2to0/3 0/3to1/3 1/3to0/3"/> + </vehicle> + <vehicle id="car2881" depart="2881.00"> + <route edges="3/3to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to2/1"/> + </vehicle> + <vehicle id="car2882" depart="2882.00"> + <route edges="2/1to2/0 2/0to2/1 2/1to2/2 2/2to2/3 2/3to2/4 2/4to1/4"/> + </vehicle> + <vehicle id="car2883" depart="2883.00"> + <route edges="4/4to3/4 3/4to2/4 2/4to1/4 1/4to0/4"/> + </vehicle> + <vehicle id="car2884" depart="2884.00"> + <route edges="2/3to2/2 2/2to1/2 1/2to1/1 1/1to0/1"/> + </vehicle> + <vehicle id="car2885" depart="2885.00"> + <route edges="0/2to1/2 1/2to1/3 1/3to1/4 1/4to2/4 2/4to3/4 3/4to3/3"/> + </vehicle> + <vehicle id="car2886" depart="2886.00"> + <route edges="1/2to2/2 2/2to2/3 2/3to2/4 2/4to3/4 3/4to4/4"/> + </vehicle> + <vehicle id="car2887" depart="2887.00"> + <route edges="1/1to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to0/4"/> + </vehicle> + <vehicle id="car2888" depart="2888.00"> + <route edges="0/3to1/3 1/3to1/2 1/2to1/1 1/1to1/0 1/0to2/0 2/0to3/0 3/0to2/0"/> + </vehicle> + <vehicle id="car2889" depart="2889.00"> + <route edges="1/4to2/4 2/4to3/4 3/4to4/4 4/4to4/3 4/3to4/2 4/2to3/2"/> + </vehicle> + <vehicle id="car2890" depart="2890.00"> + <route edges="2/0to2/1 2/1to2/2 2/2to1/2 1/2to0/2 0/2to0/3"/> + </vehicle> + <vehicle id="car2891" depart="2891.00"> + <route edges="3/1to4/1 4/1to3/1 3/1to3/2 3/2to3/3 3/3to2/3 2/3to1/3"/> + </vehicle> + <vehicle id="car2892" depart="2892.00"> + <route edges="0/2to0/1 0/1to0/2 0/2to1/2 1/2to2/2 2/2to3/2 3/2to3/3"/> + </vehicle> + <vehicle id="car2893" depart="2893.00"> + <route edges="4/4to4/3 4/3to4/2 4/2to4/1 4/1to3/1 3/1to4/1"/> + </vehicle> + <vehicle id="car2894" depart="2894.00"> + <route edges="1/0to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to1/3"/> + </vehicle> + <vehicle id="car2895" depart="2895.00"> + <route edges="3/1to2/1 2/1to2/2 2/2to2/3 2/3to2/4 2/4to3/4 3/4to3/3"/> + </vehicle> + <vehicle id="car2896" depart="2896.00"> + <route edges="2/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to2/1 2/1to2/0 2/0to3/0"/> + </vehicle> + <vehicle id="car2897" depart="2897.00"> + <route edges="0/4to1/4 1/4to2/4 2/4to3/4 3/4to4/4 4/4to4/3"/> + </vehicle> + <vehicle id="car2898" depart="2898.00"> + <route edges="2/1to1/1 1/1to0/1 0/1to0/0"/> + </vehicle> + <vehicle id="car2899" depart="2899.00"> + <route edges="2/4to3/4 3/4to3/3 3/3to2/3 2/3to2/2 2/2to1/2 1/2to0/2 0/2to0/3"/> + </vehicle> + <vehicle id="car2900" depart="2900.00"> + <route edges="2/3to2/2 2/2to1/2 1/2to0/2 0/2to0/1"/> + </vehicle> + <vehicle id="car2901" depart="2901.00"> + <route edges="3/0to4/0 4/0to4/1 4/1to4/2 4/2to4/3 4/3to4/4 4/4to3/4 3/4to2/4 2/4to1/4 1/4to1/3"/> + </vehicle> + <vehicle id="car2902" depart="2902.00"> + <route edges="1/3to1/4 1/4to1/3 1/3to1/2 1/2to1/1"/> + </vehicle> + <vehicle id="car2903" depart="2903.00"> + <route edges="4/1to3/1 3/1to2/1 2/1to1/1 1/1to1/2"/> + </vehicle> + <vehicle id="car2904" depart="2904.00"> + <route edges="0/0to0/1 0/1to0/2 0/2to0/3 0/3to0/4 0/4to1/4 1/4to2/4"/> + </vehicle> + <vehicle id="car2905" depart="2905.00"> + <route edges="4/3to4/4 4/4to3/4 3/4to2/4 2/4to1/4 1/4to2/4"/> + </vehicle> + <vehicle id="car2906" depart="2906.00"> + <route edges="0/3to0/2 0/2to1/2 1/2to2/2 2/2to3/2 3/2to4/2 4/2to4/3"/> + </vehicle> + <vehicle id="car2907" depart="2907.00"> + <route edges="1/0to1/1 1/1to2/1 2/1to2/2 2/2to3/2 3/2to3/3"/> + </vehicle> + <vehicle id="car2908" depart="2908.00"> + <route edges="1/3to0/3 0/3to0/4 0/4to1/4 1/4to2/4 2/4to3/4 3/4to3/3"/> + </vehicle> + <vehicle id="car2909" depart="2909.00"> + <route edges="4/1to4/2 4/2to4/1 4/1to4/0 4/0to3/0 3/0to2/0 2/0to1/0 1/0to0/0"/> + </vehicle> + <vehicle id="car2910" depart="2910.00"> + <route edges="4/3to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to2/0 2/0to1/0"/> + </vehicle> + <vehicle id="car2911" depart="2911.00"> + <route edges="1/3to2/3 2/3to3/3 3/3to3/2 3/2to4/2"/> + </vehicle> + <vehicle id="car2912" depart="2912.00"> + <route edges="4/3to4/4 4/4to3/4 3/4to2/4 2/4to2/3 2/3to1/3"/> + </vehicle> + <vehicle id="car2913" depart="2913.00"> + <route edges="2/4to2/3 2/3to2/2 2/2to2/1 2/1to2/0 2/0to3/0 3/0to4/0 4/0to3/0"/> + </vehicle> + <vehicle id="car2914" depart="2914.00"> + <route edges="0/0to0/1 0/1to1/1 1/1to1/2 1/2to2/2 2/2to3/2"/> + </vehicle> + <vehicle id="car2915" depart="2915.00"> + <route edges="1/4to2/4 2/4to3/4 3/4to3/3 3/3to3/2 3/2to3/3"/> + </vehicle> + <vehicle id="car2916" depart="2916.00"> + <route edges="0/1to1/1 1/1to2/1 2/1to2/2 2/2to3/2 3/2to3/3"/> + </vehicle> + <vehicle id="car2917" depart="2917.00"> + <route edges="4/3to4/4 4/4to3/4 3/4to3/3 3/3to3/2 3/2to2/2"/> + </vehicle> + <vehicle id="car2918" depart="2918.00"> + <route edges="1/1to2/1 2/1to2/2 2/2to2/3 2/3to2/4 2/4to3/4"/> + </vehicle> + <vehicle id="car2919" depart="2919.00"> + <route edges="3/2to2/2 2/2to2/1 2/1to2/0 2/0to1/0 1/0to1/1"/> + </vehicle> + <vehicle id="car2920" depart="2920.00"> + <route edges="2/1to1/1 1/1to2/1 2/1to2/2 2/2to3/2 3/2to3/3 3/3to4/3 4/3to3/3"/> + </vehicle> + <vehicle id="car2921" depart="2921.00"> + <route edges="4/1to4/0 4/0to3/0 3/0to3/1 3/1to3/2 3/2to3/3 3/3to3/4 3/4to3/3"/> + </vehicle> + <vehicle id="car2922" depart="2922.00"> + <route edges="1/3to0/3 0/3to0/2 0/2to0/1 0/1to0/0 0/0to1/0 1/0to2/0 2/0to3/0 3/0to4/0 4/0to4/1"/> + </vehicle> + <vehicle id="car2923" depart="2923.00"> + <route edges="4/3to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to2/0 2/0to2/1"/> + </vehicle> + <vehicle id="car2924" depart="2924.00"> + <route edges="0/2to0/3 0/3to1/3 1/3to2/3 2/3to3/3 3/3to3/2 3/2to3/3"/> + </vehicle> + <vehicle id="car2925" depart="2925.00"> + <route edges="4/3to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to2/0 2/0to1/0 1/0to0/0"/> + </vehicle> + <vehicle id="car2926" depart="2926.00"> + <route edges="0/1to1/1 1/1to2/1 2/1to2/2 2/2to3/2 3/2to4/2"/> + </vehicle> + <vehicle id="car2927" depart="2927.00"> + <route edges="2/3to2/4 2/4to2/3 2/3to2/2 2/2to2/1"/> + </vehicle> + <vehicle id="car2928" depart="2928.00"> + <route edges="2/0to3/0 3/0to2/0 2/0to2/1 2/1to2/2 2/2to2/3"/> + </vehicle> + <vehicle id="car2929" depart="2929.00"> + <route edges="3/2to3/3 3/3to3/2 3/2to2/2 2/2to1/2"/> + </vehicle> + <vehicle id="car2930" depart="2930.00"> + <route edges="2/2to3/2 3/2to3/3 3/3to3/4 3/4to4/4 4/4to4/3"/> + </vehicle> + <vehicle id="car2931" depart="2931.00"> + <route edges="3/4to3/3 3/3to3/2 3/2to4/2 4/2to4/1 4/1to4/0"/> + </vehicle> + <vehicle id="car2932" depart="2932.00"> + <route edges="2/4to3/4 3/4to4/4 4/4to4/3 4/3to4/4"/> + </vehicle> + <vehicle id="car2933" depart="2933.00"> + <route edges="0/2to0/3 0/3to1/3 1/3to2/3 2/3to3/3 3/3to4/3 4/3to4/2 4/2to4/1 4/1to4/0 4/0to3/0"/> + </vehicle> + <vehicle id="car2934" depart="2934.00"> + <route edges="2/2to3/2 3/2to3/3 3/3to4/3 4/3to4/2"/> + </vehicle> + <vehicle id="car2935" depart="2935.00"> + <route edges="2/0to3/0 3/0to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to2/4"/> + </vehicle> + <vehicle id="car2936" depart="2936.00"> + <route edges="4/2to4/1 4/1to3/1 3/1to2/1 2/1to1/1 1/1to2/1"/> + </vehicle> + <vehicle id="car2937" depart="2937.00"> + <route edges="0/3to0/4 0/4to1/4 1/4to1/3 1/3to1/2 1/2to2/2"/> + </vehicle> + <vehicle id="car2938" depart="2938.00"> + <route edges="1/2to2/2 2/2to2/1 2/1to1/1 1/1to1/0"/> + </vehicle> + <vehicle id="car2939" depart="2939.00"> + <route edges="1/1to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to0/3"/> + </vehicle> + <vehicle id="car2940" depart="2940.00"> + <route edges="4/2to4/3 4/3to4/2 4/2to4/1 4/1to4/0 4/0to3/0 3/0to4/0"/> + </vehicle> + <vehicle id="car2941" depart="2941.00"> + <route edges="3/4to4/4 4/4to3/4 3/4to2/4 2/4to1/4 1/4to0/4 0/4to0/3 0/3to0/2 0/2to0/1 0/1to0/0"/> + </vehicle> + <vehicle id="car2942" depart="2942.00"> + <route edges="2/2to2/1 2/1to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to0/4"/> + </vehicle> + <vehicle id="car2943" depart="2943.00"> + <route edges="3/0to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to1/4"/> + </vehicle> + <vehicle id="car2944" depart="2944.00"> + <route edges="1/4to0/4 0/4to0/3 0/3to0/2 0/2to0/1 0/1to0/0 0/0to0/1"/> + </vehicle> + <vehicle id="car2945" depart="2945.00"> + <route edges="4/1to4/2 4/2to4/1 4/1to4/0 4/0to3/0 3/0to2/0 2/0to1/0 1/0to1/1"/> + </vehicle> + <vehicle id="car2946" depart="2946.00"> + <route edges="1/4to0/4 0/4to0/3 0/3to0/2"/> + </vehicle> + <vehicle id="car2947" depart="2947.00"> + <route edges="2/2to2/1 2/1to1/1 1/1to0/1 0/1to0/2 0/2to0/3"/> + </vehicle> + <vehicle id="car2948" depart="2948.00"> + <route edges="2/2to3/2 3/2to2/2 2/2to1/2 1/2to0/2 0/2to0/3 0/3to0/4 0/4to1/4"/> + </vehicle> + <vehicle id="car2949" depart="2949.00"> + <route edges="0/4to1/4 1/4to2/4 2/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to2/1"/> + </vehicle> + <vehicle id="car2950" depart="2950.00"> + <route edges="1/0to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to2/4 2/4to3/4 3/4to2/4"/> + </vehicle> + <vehicle id="car2951" depart="2951.00"> + <route edges="0/3to0/2 0/2to0/1 0/1to1/1 1/1to2/1 2/1to2/0"/> + </vehicle> + <vehicle id="car2952" depart="2952.00"> + <route edges="4/0to3/0 3/0to2/0 2/0to1/0 1/0to0/0 0/0to0/1 0/1to0/2 0/2to0/3 0/3to0/4 0/4to1/4"/> + </vehicle> + <vehicle id="car2953" depart="2953.00"> + <route edges="1/4to0/4 0/4to1/4 1/4to2/4 2/4to2/3 2/3to2/2 2/2to2/1 2/1to1/1"/> + </vehicle> + <vehicle id="car2954" depart="2954.00"> + <route edges="1/4to0/4 0/4to1/4 1/4to2/4 2/4to3/4 3/4to4/4 4/4to4/3 4/3to4/2 4/2to4/1 4/1to3/1"/> + </vehicle> + <vehicle id="car2955" depart="2955.00"> + <route edges="0/4to1/4 1/4to1/3 1/3to1/2 1/2to1/1 1/1to1/0 1/0to2/0"/> + </vehicle> + <vehicle id="car2956" depart="2956.00"> + <route edges="2/2to1/2 1/2to2/2 2/2to3/2 3/2to3/1 3/1to3/0"/> + </vehicle> + <vehicle id="car2957" depart="2957.00"> + <route edges="1/2to1/1 1/1to1/0 1/0to2/0 2/0to3/0"/> + </vehicle> + <vehicle id="car2958" depart="2958.00"> + <route edges="2/3to2/4 2/4to3/4 3/4to3/3 3/3to4/3"/> + </vehicle> + <vehicle id="car2959" depart="2959.00"> + <route edges="3/2to3/1 3/1to2/1 2/1to1/1 1/1to1/2 1/2to1/3 1/3to1/2"/> + </vehicle> + <vehicle id="car2960" depart="2960.00"> + <route edges="3/3to3/2 3/2to3/1 3/1to4/1 4/1to4/0"/> + </vehicle> + <vehicle id="car2961" depart="2961.00"> + <route edges="2/2to2/3 2/3to3/3 3/3to4/3 4/3to4/2 4/2to4/1"/> + </vehicle> + <vehicle id="car2962" depart="2962.00"> + <route edges="4/0to3/0 3/0to2/0 2/0to1/0"/> + </vehicle> + <vehicle id="car2963" depart="2963.00"> + <route edges="0/0to1/0 1/0to0/0 0/0to0/1 0/1to0/2 0/2to0/3 0/3to0/4 0/4to1/4"/> + </vehicle> + <vehicle id="car2964" depart="2964.00"> + <route edges="1/1to1/2 1/2to2/2 2/2to3/2 3/2to3/1 3/1to3/2"/> + </vehicle> + <vehicle id="car2965" depart="2965.00"> + <route edges="1/3to2/3 2/3to3/3 3/3to4/3 4/3to4/4 4/4to3/4"/> + </vehicle> + <vehicle id="car2966" depart="2966.00"> + <route edges="3/2to3/3 3/3to3/2 3/2to2/2 2/2to2/1 2/1to1/1"/> + </vehicle> + <vehicle id="car2967" depart="2967.00"> + <route edges="3/3to2/3 2/3to2/2 2/2to2/1 2/1to1/1 1/1to2/1"/> + </vehicle> + <vehicle id="car2968" depart="2968.00"> + <route edges="0/4to1/4 1/4to2/4 2/4to2/3 2/3to2/2 2/2to2/3"/> + </vehicle> + <vehicle id="car2969" depart="2969.00"> + <route edges="1/1to2/1 2/1to2/2 2/2to2/3 2/3to3/3 3/3to3/2"/> + </vehicle> + <vehicle id="car2970" depart="2970.00"> + <route edges="4/1to3/1 3/1to3/2 3/2to3/3 3/3to3/4 3/4to4/4 4/4to4/3"/> + </vehicle> + <vehicle id="car2971" depart="2971.00"> + <route edges="1/1to2/1 2/1to2/2 2/2to2/3 2/3to2/4 2/4to3/4 3/4to3/3"/> + </vehicle> + <vehicle id="car2972" depart="2972.00"> + <route edges="1/0to2/0 2/0to2/1 2/1to2/2 2/2to3/2 3/2to2/2"/> + </vehicle> + <vehicle id="car2973" depart="2973.00"> + <route edges="3/4to2/4 2/4to3/4 3/4to3/3 3/3to3/2 3/2to2/2"/> + </vehicle> + <vehicle id="car2974" depart="2974.00"> + <route edges="4/4to4/3 4/3to3/3 3/3to2/3 2/3to2/4 2/4to2/3"/> + </vehicle> + <vehicle id="car2975" depart="2975.00"> + <route edges="3/0to3/1 3/1to2/1 2/1to1/1 1/1to1/2"/> + </vehicle> + <vehicle id="car2976" depart="2976.00"> + <route edges="2/0to2/1 2/1to2/2 2/2to2/3 2/3to1/3 1/3to0/3"/> + </vehicle> + <vehicle id="car2977" depart="2977.00"> + <route edges="3/0to3/1 3/1to2/1 2/1to1/1 1/1to1/2"/> + </vehicle> + <vehicle id="car2978" depart="2978.00"> + <route edges="2/2to2/3 2/3to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to4/0"/> + </vehicle> + <vehicle id="car2979" depart="2979.00"> + <route edges="1/3to0/3 0/3to1/3 1/3to1/2 1/2to1/1"/> + </vehicle> + <vehicle id="car2980" depart="2980.00"> + <route edges="1/2to1/3 1/3to1/4 1/4to0/4"/> + </vehicle> + <vehicle id="car2981" depart="2981.00"> + <route edges="2/0to3/0 3/0to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to1/2"/> + </vehicle> + <vehicle id="car2982" depart="2982.00"> + <route edges="0/1to1/1 1/1to2/1 2/1to2/2 2/2to3/2 3/2to4/2"/> + </vehicle> + <vehicle id="car2983" depart="2983.00"> + <route edges="1/1to0/1 0/1to1/1 1/1to2/1 2/1to3/1"/> + </vehicle> + <vehicle id="car2984" depart="2984.00"> + <route edges="4/2to3/2 3/2to2/2 2/2to1/2 1/2to0/2 0/2to0/3 0/3to0/2"/> + </vehicle> + <vehicle id="car2985" depart="2985.00"> + <route edges="1/0to1/1 1/1to2/1 2/1to2/2 2/2to3/2 3/2to3/3 3/3to4/3 4/3to3/3"/> + </vehicle> + <vehicle id="car2986" depart="2986.00"> + <route edges="0/2to1/2 1/2to1/1 1/1to0/1 0/1to0/0 0/0to1/0"/> + </vehicle> + <vehicle id="car2987" depart="2987.00"> + <route edges="2/3to2/4 2/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to4/0 4/0to4/1"/> + </vehicle> + <vehicle id="car2988" depart="2988.00"> + <route edges="1/3to1/4 1/4to2/4 2/4to3/4 3/4to3/3 3/3to3/2 3/2to4/2"/> + </vehicle> + <vehicle id="car2989" depart="2989.00"> + <route edges="1/4to0/4 0/4to1/4 1/4to2/4 2/4to3/4 3/4to3/3 3/3to3/4"/> + </vehicle> + <vehicle id="car2990" depart="2990.00"> + <route edges="3/1to2/1 2/1to1/1 1/1to0/1"/> + </vehicle> + <vehicle id="car2991" depart="2991.00"> + <route edges="1/4to2/4 2/4to3/4 3/4to4/4 4/4to4/3 4/3to4/2 4/2to4/1 4/1to4/0"/> + </vehicle> + <vehicle id="car2992" depart="2992.00"> + <route edges="0/3to1/3 1/3to2/3 2/3to3/3 3/3to3/2 3/2to4/2"/> + </vehicle> + <vehicle id="car2993" depart="2993.00"> + <route edges="4/2to3/2 3/2to3/1 3/1to2/1"/> + </vehicle> + <vehicle id="car2994" depart="2994.00"> + <route edges="1/0to2/0 2/0to2/1 2/1to2/2 2/2to3/2 3/2to2/2"/> + </vehicle> + <vehicle id="car2995" depart="2995.00"> + <route edges="4/2to4/3 4/3to4/2 4/2to3/2 3/2to2/2 2/2to1/2 1/2to0/2 0/2to0/1"/> + </vehicle> + <vehicle id="car2996" depart="2996.00"> + <route edges="1/1to0/1 0/1to1/1 1/1to1/2 1/2to2/2 2/2to3/2 3/2to3/1"/> + </vehicle> + <vehicle id="car2997" depart="2997.00"> + <route edges="0/1to0/2 0/2to1/2 1/2to1/1 1/1to1/0 1/0to2/0"/> + </vehicle> + <vehicle id="car2998" depart="2998.00"> + <route edges="2/3to2/4 2/4to2/3 2/3to1/3 1/3to1/2 1/2to0/2"/> + </vehicle> + <vehicle id="car2999" depart="2999.00"> + <route edges="4/2to3/2 3/2to3/3 3/3to4/3 4/3to4/4 4/4to3/4"/> + </vehicle> + <vehicle id="car3000" depart="3000.00"> + <route edges="4/1to4/2 4/2to4/1 4/1to3/1 3/1to2/1 2/1to2/0"/> + </vehicle> + <vehicle id="car3001" depart="3001.00"> + <route edges="0/2to0/1 0/1to0/0 0/0to1/0 1/0to2/0 2/0to3/0"/> + </vehicle> + <vehicle id="car3002" depart="3002.00"> + <route edges="4/2to4/3 4/3to4/2 4/2to3/2 3/2to2/2 2/2to2/3"/> + </vehicle> + <vehicle id="car3003" depart="3003.00"> + <route edges="0/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to2/4 2/4to2/3"/> + </vehicle> + <vehicle id="car3004" depart="3004.00"> + <route edges="3/1to4/1 4/1to3/1 3/1to2/1 2/1to1/1 1/1to0/1 0/1to0/2 0/2to0/3 0/3to1/3"/> + </vehicle> + <vehicle id="car3005" depart="3005.00"> + <route edges="0/1to0/2 0/2to1/2 1/2to1/3 1/3to2/3 2/3to3/3"/> + </vehicle> + <vehicle id="car3006" depart="3006.00"> + <route edges="3/3to4/3 4/3to4/2 4/2to4/1 4/1to3/1 3/1to4/1"/> + </vehicle> + <vehicle id="car3007" depart="3007.00"> + <route edges="3/2to4/2 4/2to4/1 4/1to4/0 4/0to3/0 3/0to2/0 2/0to1/0"/> + </vehicle> + <vehicle id="car3008" depart="3008.00"> + <route edges="4/3to4/4 4/4to4/3 4/3to4/2 4/2to4/1 4/1to4/0 4/0to3/0 3/0to2/0 2/0to1/0 1/0to0/0"/> + </vehicle> + <vehicle id="car3009" depart="3009.00"> + <route edges="3/3to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to2/0 2/0to2/1"/> + </vehicle> + <vehicle id="car3010" depart="3010.00"> + <route edges="0/4to1/4 1/4to1/3 1/3to1/2 1/2to1/1 1/1to1/0"/> + </vehicle> + <vehicle id="car3011" depart="3011.00"> + <route edges="3/2to2/2 2/2to2/3 2/3to1/3"/> + </vehicle> + <vehicle id="car3012" depart="3012.00"> + <route edges="1/3to0/3 0/3to1/3 1/3to1/2 1/2to1/1 1/1to1/0"/> + </vehicle> + <vehicle id="car3013" depart="3013.00"> + <route edges="3/2to2/2 2/2to2/3 2/3to2/4"/> + </vehicle> + <vehicle id="car3014" depart="3014.00"> + <route edges="1/0to0/0 0/0to0/1 0/1to0/2"/> + </vehicle> + <vehicle id="car3015" depart="3015.00"> + <route edges="0/4to0/3 0/3to0/2 0/2to1/2 1/2to2/2 2/2to3/2 3/2to4/2 4/2to4/1 4/1to4/0"/> + </vehicle> + <vehicle id="car3016" depart="3016.00"> + <route edges="4/2to4/3 4/3to4/2 4/2to3/2 3/2to2/2 2/2to1/2 1/2to1/1"/> + </vehicle> + <vehicle id="car3017" depart="3017.00"> + <route edges="3/3to4/3 4/3to4/2 4/2to4/1 4/1to4/0 4/0to3/0 3/0to4/0"/> + </vehicle> + <vehicle id="car3018" depart="3018.00"> + <route edges="1/1to2/1 2/1to2/2 2/2to2/3 2/3to2/4 2/4to3/4 3/4to3/3"/> + </vehicle> + <vehicle id="car3019" depart="3019.00"> + <route edges="2/3to1/3 1/3to1/2 1/2to1/1 1/1to1/0 1/0to0/0 0/0to0/1"/> + </vehicle> + <vehicle id="car3020" depart="3020.00"> + <route edges="1/3to2/3 2/3to2/4 2/4to3/4"/> + </vehicle> + <vehicle id="car3021" depart="3021.00"> + <route edges="2/4to3/4 3/4to3/3 3/3to2/3 2/3to1/3 1/3to1/2"/> + </vehicle> + <vehicle id="car3022" depart="3022.00"> + <route edges="0/1to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to2/4 2/4to3/4 3/4to3/3"/> + </vehicle> + <vehicle id="car3023" depart="3023.00"> + <route edges="3/4to3/3 3/3to2/3 2/3to2/2 2/2to2/1 2/1to1/1 1/1to1/0"/> + </vehicle> + <vehicle id="car3024" depart="3024.00"> + <route edges="4/3to4/4 4/4to4/3 4/3to4/2 4/2to4/1 4/1to4/0 4/0to3/0 3/0to2/0 2/0to1/0 1/0to1/1"/> + </vehicle> + <vehicle id="car3025" depart="3025.00"> + <route edges="4/3to4/4 4/4to3/4 3/4to2/4 2/4to2/3 2/3to1/3"/> + </vehicle> + <vehicle id="car3026" depart="3026.00"> + <route edges="3/3to3/4 3/4to2/4 2/4to1/4 1/4to0/4 0/4to0/3 0/3to0/2"/> + </vehicle> + <vehicle id="car3027" depart="3027.00"> + <route edges="3/2to4/2 4/2to4/3 4/3to4/4 4/4to3/4 3/4to2/4 2/4to1/4 1/4to2/4"/> + </vehicle> + <vehicle id="car3028" depart="3028.00"> + <route edges="3/0to3/1 3/1to3/2 3/2to2/2 2/2to2/3 2/3to2/4"/> + </vehicle> + <vehicle id="car3029" depart="3029.00"> + <route edges="3/4to3/3 3/3to2/3 2/3to2/2 2/2to2/1 2/1to1/1 1/1to1/0"/> + </vehicle> + <vehicle id="car3030" depart="3030.00"> + <route edges="1/2to1/1 1/1to1/2 1/2to1/3 1/3to2/3 2/3to2/4 2/4to1/4"/> + </vehicle> + <vehicle id="car3031" depart="3031.00"> + <route edges="0/4to1/4 1/4to1/3 1/3to1/2 1/2to1/1 1/1to1/2"/> + </vehicle> + <vehicle id="car3032" depart="3032.00"> + <route edges="3/2to3/3 3/3to3/4 3/4to2/4 2/4to1/4 1/4to1/3"/> + </vehicle> + <vehicle id="car3033" depart="3033.00"> + <route edges="4/2to3/2 3/2to2/2 2/2to1/2 1/2to0/2 0/2to1/2"/> + </vehicle> + <vehicle id="car3034" depart="3034.00"> + <route edges="4/0to4/1 4/1to4/0 4/0to3/0 3/0to2/0 2/0to1/0 1/0to2/0"/> + </vehicle> + <vehicle id="car3035" depart="3035.00"> + <route edges="3/0to4/0 4/0to3/0 3/0to2/0 2/0to1/0 1/0to0/0 0/0to1/0"/> + </vehicle> + <vehicle id="car3036" depart="3036.00"> + <route edges="2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to2/4 2/4to3/4"/> + </vehicle> + <vehicle id="car3037" depart="3037.00"> + <route edges="1/1to2/1 2/1to3/1 3/1to3/2 3/2to4/2 4/2to3/2"/> + </vehicle> + <vehicle id="car3038" depart="3038.00"> + <route edges="4/3to4/4 4/4to3/4 3/4to2/4 2/4to1/4 1/4to0/4 0/4to0/3 0/3to0/2"/> + </vehicle> + <vehicle id="car3039" depart="3039.00"> + <route edges="1/4to2/4 2/4to2/3 2/3to2/2 2/2to1/2 1/2to1/1 1/1to0/1 0/1to0/0 0/0to1/0"/> + </vehicle> + <vehicle id="car3040" depart="3040.00"> + <route edges="3/4to4/4 4/4to4/3 4/3to3/3 3/3to3/2"/> + </vehicle> + <vehicle id="car3041" depart="3041.00"> + <route edges="3/0to4/0 4/0to3/0 3/0to2/0 2/0to1/0 1/0to0/0 0/0to0/1 0/1to0/2"/> + </vehicle> + <vehicle id="car3042" depart="3042.00"> + <route edges="1/1to2/1 2/1to1/1 1/1to0/1 0/1to0/2 0/2to0/3"/> + </vehicle> + <vehicle id="car3043" depart="3043.00"> + <route edges="0/4to0/3 0/3to0/2 0/2to0/1 0/1to0/0 0/0to1/0 1/0to2/0 2/0to3/0 3/0to3/1"/> + </vehicle> + <vehicle id="car3044" depart="3044.00"> + <route edges="0/0to1/0 1/0to2/0 2/0to3/0 3/0to4/0 4/0to4/1 4/1to4/2 4/2to4/3 4/3to4/4"/> + </vehicle> + <vehicle id="car3045" depart="3045.00"> + <route edges="4/3to4/2 4/2to3/2 3/2to2/2 2/2to1/2 1/2to0/2 0/2to0/3 0/3to0/2"/> + </vehicle> + <vehicle id="car3046" depart="3046.00"> + <route edges="3/2to2/2 2/2to1/2 1/2to1/1 1/1to0/1"/> + </vehicle> + <vehicle id="car3047" depart="3047.00"> + <route edges="2/1to2/0 2/0to1/0 1/0to0/0"/> + </vehicle> + <vehicle id="car3048" depart="3048.00"> + <route edges="0/1to1/1 1/1to2/1 2/1to3/1 3/1to4/1"/> + </vehicle> + <vehicle id="car3049" depart="3049.00"> + <route edges="3/0to3/1 3/1to3/2 3/2to2/2 2/2to1/2 1/2to0/2 0/2to0/3 0/3to0/4"/> + </vehicle> + <vehicle id="car3050" depart="3050.00"> + <route edges="3/4to3/3 3/3to2/3 2/3to1/3 1/3to0/3 0/3to0/2"/> + </vehicle> + <vehicle id="car3051" depart="3051.00"> + <route edges="3/4to4/4 4/4to3/4 3/4to2/4 2/4to1/4 1/4to0/4 0/4to0/3"/> + </vehicle> + <vehicle id="car3052" depart="3052.00"> + <route edges="4/2to3/2 3/2to3/1 3/1to3/0 3/0to2/0 2/0to1/0 1/0to0/0 0/0to1/0"/> + </vehicle> + <vehicle id="car3053" depart="3053.00"> + <route edges="2/1to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to0/4 0/4to0/3"/> + </vehicle> + <vehicle id="car3054" depart="3054.00"> + <route edges="3/1to2/1 2/1to1/1 1/1to1/2"/> + </vehicle> + <vehicle id="car3055" depart="3055.00"> + <route edges="4/1to4/0 4/0to3/0 3/0to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to2/4"/> + </vehicle> + <vehicle id="car3056" depart="3056.00"> + <route edges="4/1to4/0 4/0to3/0 3/0to3/1 3/1to3/2 3/2to3/3 3/3to3/4 3/4to3/3"/> + </vehicle> + <vehicle id="car3057" depart="3057.00"> + <route edges="0/3to0/2 0/2to0/1 0/1to0/0 0/0to1/0 1/0to0/0"/> + </vehicle> + <vehicle id="car3058" depart="3058.00"> + <route edges="4/3to4/2 4/2to3/2 3/2to3/3 3/3to3/4 3/4to2/4 2/4to1/4 1/4to0/4"/> + </vehicle> + <vehicle id="car3059" depart="3059.00"> + <route edges="3/0to2/0 2/0to1/0 1/0to0/0 0/0to0/1 0/1to0/2 0/2to0/3 0/3to0/4"/> + </vehicle> + <vehicle id="car3060" depart="3060.00"> + <route edges="4/1to4/2 4/2to4/3 4/3to4/4 4/4to3/4 3/4to2/4 2/4to3/4"/> + </vehicle> + <vehicle id="car3061" depart="3061.00"> + <route edges="1/0to1/1 1/1to1/2 1/2to1/3 1/3to2/3 2/3to1/3"/> + </vehicle> + <vehicle id="car3062" depart="3062.00"> + <route edges="2/4to2/3 2/3to2/2 2/2to2/1 2/1to3/1 3/1to3/2"/> + </vehicle> + <vehicle id="car3063" depart="3063.00"> + <route edges="0/4to1/4 1/4to2/4 2/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to3/0"/> + </vehicle> + <vehicle id="car3064" depart="3064.00"> + <route edges="1/3to0/3 0/3to0/4 0/4to1/4 1/4to2/4 2/4to3/4 3/4to3/3"/> + </vehicle> + <vehicle id="car3065" depart="3065.00"> + <route edges="4/2to4/1 4/1to3/1 3/1to2/1"/> + </vehicle> + <vehicle id="car3066" depart="3066.00"> + <route edges="4/2to4/3 4/3to4/4 4/4to3/4 3/4to2/4"/> + </vehicle> + <vehicle id="car3067" depart="3067.00"> + <route edges="3/2to2/2 2/2to1/2 1/2to0/2 0/2to0/3"/> + </vehicle> + <vehicle id="car3068" depart="3068.00"> + <route edges="0/0to0/1 0/1to1/1 1/1to1/2 1/2to2/2 2/2to3/2 3/2to4/2 4/2to4/3"/> + </vehicle> + <vehicle id="car3069" depart="3069.00"> + <route edges="0/4to0/3 0/3to0/2 0/2to1/2 1/2to2/2 2/2to3/2 3/2to3/1 3/1to2/1"/> + </vehicle> + <vehicle id="car3070" depart="3070.00"> + <route edges="1/3to1/2 1/2to1/1 1/1to1/0 1/0to2/0 2/0to1/0"/> + </vehicle> + <vehicle id="car3071" depart="3071.00"> + <route edges="3/2to3/1 3/1to3/2 3/2to3/3 3/3to3/4"/> + </vehicle> + <vehicle id="car3072" depart="3072.00"> + <route edges="2/2to1/2 1/2to0/2 0/2to0/1"/> + </vehicle> + <vehicle id="car3073" depart="3073.00"> + <route edges="2/4to1/4 1/4to2/4 2/4to3/4 3/4to4/4 4/4to4/3 4/3to4/2"/> + </vehicle> + <vehicle id="car3074" depart="3074.00"> + <route edges="4/4to4/3 4/3to4/2 4/2to4/1 4/1to4/0 4/0to3/0 3/0to2/0 2/0to1/0 1/0to1/1"/> + </vehicle> + <vehicle id="car3075" depart="3075.00"> + <route edges="1/4to2/4 2/4to2/3 2/3to1/3 1/3to1/2"/> + </vehicle> + <vehicle id="car3076" depart="3076.00"> + <route edges="2/0to3/0 3/0to3/1 3/1to4/1"/> + </vehicle> + <vehicle id="car3077" depart="3077.00"> + <route edges="2/0to3/0 3/0to3/1 3/1to3/2 3/2to3/3 3/3to4/3"/> + </vehicle> + <vehicle id="car3078" depart="3078.00"> + <route edges="2/4to1/4 1/4to2/4 2/4to2/3 2/3to2/2 2/2to2/1 2/1to2/0 2/0to3/0"/> + </vehicle> + <vehicle id="car3079" depart="3079.00"> + <route edges="2/4to1/4 1/4to2/4 2/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to4/1"/> + </vehicle> + <vehicle id="car3080" depart="3080.00"> + <route edges="4/4to4/3 4/3to4/2 4/2to4/1 4/1to4/0 4/0to3/0 3/0to2/0 2/0to1/0 1/0to0/0 0/0to1/0"/> + </vehicle> + <vehicle id="car3081" depart="3081.00"> + <route edges="2/3to2/4 2/4to3/4 3/4to4/4 4/4to4/3 4/3to4/2"/> + </vehicle> + <vehicle id="car3082" depart="3082.00"> + <route edges="4/2to4/1 4/1to3/1 3/1to2/1 2/1to1/1 1/1to0/1 0/1to1/1"/> + </vehicle> + <vehicle id="car3083" depart="3083.00"> + <route edges="1/3to2/3 2/3to3/3 3/3to4/3 4/3to4/2 4/2to4/1 4/1to4/0 4/0to3/0"/> + </vehicle> + <vehicle id="car3084" depart="3084.00"> + <route edges="4/1to3/1 3/1to3/2 3/2to3/3 3/3to3/4 3/4to3/3"/> + </vehicle> + <vehicle id="car3085" depart="3085.00"> + <route edges="4/0to4/1 4/1to4/2 4/2to4/3 4/3to4/4"/> + </vehicle> + <vehicle id="car3086" depart="3086.00"> + <route edges="4/2to4/1 4/1to3/1 3/1to2/1 2/1to1/1 1/1to2/1"/> + </vehicle> + <vehicle id="car3087" depart="3087.00"> + <route edges="3/4to4/4 4/4to4/3 4/3to3/3 3/3to3/2 3/2to2/2 2/2to2/1 2/1to1/1 1/1to0/1 0/1to1/1"/> + </vehicle> + <vehicle id="car3088" depart="3088.00"> + <route edges="0/4to0/3 0/3to1/3 1/3to2/3 2/3to3/3 3/3to4/3 4/3to4/2"/> + </vehicle> + <vehicle id="car3089" depart="3089.00"> + <route edges="3/2to2/2 2/2to1/2 1/2to1/3 1/3to1/4 1/4to2/4"/> + </vehicle> + <vehicle id="car3090" depart="3090.00"> + <route edges="0/1to0/0 0/0to1/0 1/0to2/0 2/0to3/0 3/0to4/0 4/0to4/1 4/1to4/2 4/2to4/3 4/3to4/4"/> + </vehicle> + <vehicle id="car3091" depart="3091.00"> + <route edges="1/4to1/3 1/3to2/3 2/3to3/3 3/3to3/2 3/2to2/2"/> + </vehicle> + <vehicle id="car3092" depart="3092.00"> + <route edges="3/1to3/0 3/0to2/0 2/0to1/0 1/0to0/0 0/0to0/1 0/1to0/2 0/2to0/1"/> + </vehicle> + <vehicle id="car3093" depart="3093.00"> + <route edges="3/4to4/4 4/4to4/3 4/3to4/2 4/2to4/1 4/1to3/1"/> + </vehicle> + <vehicle id="car3094" depart="3094.00"> + <route edges="0/1to0/0 0/0to0/1 0/1to0/2 0/2to0/3 0/3to0/4 0/4to1/4 1/4to1/3"/> + </vehicle> + <vehicle id="car3095" depart="3095.00"> + <route edges="0/4to0/3 0/3to0/2 0/2to0/1 0/1to0/0 0/0to1/0 1/0to1/1"/> + </vehicle> + <vehicle id="car3096" depart="3096.00"> + <route edges="2/0to2/1 2/1to2/2 2/2to1/2 1/2to1/3 1/3to1/4"/> + </vehicle> + <vehicle id="car3097" depart="3097.00"> + <route edges="3/3to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to4/1"/> + </vehicle> + <vehicle id="car3098" depart="3098.00"> + <route edges="1/2to1/3 1/3to0/3 0/3to0/4 0/4to1/4"/> + </vehicle> + <vehicle id="car3099" depart="3099.00"> + <route edges="4/1to4/0 4/0to3/0 3/0to2/0 2/0to1/0 1/0to0/0 0/0to0/1 0/1to0/0"/> + </vehicle> + <vehicle id="car3100" depart="3100.00"> + <route edges="0/0to0/1 0/1to0/2 0/2to0/3 0/3to0/4 0/4to1/4 1/4to2/4 2/4to3/4 3/4to4/4"/> + </vehicle> + <vehicle id="car3101" depart="3101.00"> + <route edges="2/3to2/4 2/4to3/4 3/4to4/4"/> + </vehicle> + <vehicle id="car3102" depart="3102.00"> + <route edges="4/2to4/1 4/1to3/1 3/1to2/1 2/1to2/2 2/2to2/3"/> + </vehicle> + <vehicle id="car3103" depart="3103.00"> + <route edges="3/2to2/2 2/2to2/1 2/1to2/0 2/0to3/0"/> + </vehicle> + <vehicle id="car3104" depart="3104.00"> + <route edges="0/4to1/4 1/4to2/4 2/4to3/4 3/4to4/4 4/4to4/3 4/3to4/4"/> + </vehicle> + <vehicle id="car3105" depart="3105.00"> + <route edges="2/2to3/2 3/2to3/3 3/3to4/3 4/3to4/4 4/4to3/4"/> + </vehicle> + <vehicle id="car3106" depart="3106.00"> + <route edges="0/3to1/3 1/3to1/2 1/2to1/1 1/1to0/1"/> + </vehicle> + <vehicle id="car3107" depart="3107.00"> + <route edges="3/0to2/0 2/0to1/0 1/0to1/1 1/1to1/0"/> + </vehicle> + <vehicle id="car3108" depart="3108.00"> + <route edges="1/0to1/1 1/1to2/1 2/1to2/2 2/2to3/2 3/2to4/2"/> + </vehicle> + <vehicle id="car3109" depart="3109.00"> + <route edges="2/3to2/4 2/4to3/4 3/4to4/4 4/4to4/3 4/3to4/2 4/2to4/1 4/1to4/0 4/0to3/0"/> + </vehicle> + <vehicle id="car3110" depart="3110.00"> + <route edges="3/4to3/3 3/3to3/2 3/2to3/1 3/1to2/1 2/1to3/1"/> + </vehicle> + <vehicle id="car3111" depart="3111.00"> + <route edges="1/3to1/2 1/2to1/1 1/1to1/0 1/0to2/0 2/0to3/0 3/0to4/0"/> + </vehicle> + <vehicle id="car3112" depart="3112.00"> + <route edges="3/4to4/4 4/4to4/3 4/3to4/2 4/2to4/1 4/1to4/0 4/0to3/0 3/0to2/0 2/0to1/0 1/0to0/0"/> + </vehicle> + <vehicle id="car3113" depart="3113.00"> + <route edges="3/4to2/4 2/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to4/0"/> + </vehicle> + <vehicle id="car3114" depart="3114.00"> + <route edges="1/0to2/0 2/0to1/0 1/0to0/0 0/0to0/1 0/1to0/2 0/2to0/3 0/3to0/2"/> + </vehicle> + <vehicle id="car3115" depart="3115.00"> + <route edges="0/2to0/3 0/3to0/4 0/4to1/4 1/4to2/4 2/4to3/4"/> + </vehicle> + <vehicle id="car3116" depart="3116.00"> + <route edges="4/0to3/0 3/0to2/0 2/0to1/0 1/0to0/0 0/0to0/1 0/1to0/0"/> + </vehicle> + <vehicle id="car3117" depart="3117.00"> + <route edges="0/2to0/1 0/1to0/2 0/2to0/3 0/3to0/4 0/4to1/4 1/4to2/4 2/4to2/3"/> + </vehicle> + <vehicle id="car3118" depart="3118.00"> + <route edges="3/3to2/3 2/3to1/3 1/3to0/3"/> + </vehicle> + <vehicle id="car3119" depart="3119.00"> + <route edges="2/3to2/4 2/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to4/0"/> + </vehicle> + <vehicle id="car3120" depart="3120.00"> + <route edges="2/3to3/3 3/3to4/3"/> + </vehicle> + <vehicle id="car3121" depart="3121.00"> + <route edges="4/3to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to2/0 2/0to1/0 1/0to0/0 0/0to0/1"/> + </vehicle> + <vehicle id="car3122" depart="3122.00"> + <route edges="4/3to4/4 4/4to3/4 3/4to3/3 3/3to3/2 3/2to2/2"/> + </vehicle> + <vehicle id="car3123" depart="3123.00"> + <route edges="0/2to1/2 1/2to2/2 2/2to2/1 2/1to2/0 2/0to2/1"/> + </vehicle> + <vehicle id="car3124" depart="3124.00"> + <route edges="3/2to4/2 4/2to3/2 3/2to2/2 2/2to1/2 1/2to0/2 0/2to0/3 0/3to0/2"/> + </vehicle> + <vehicle id="car3125" depart="3125.00"> + <route edges="3/4to2/4 2/4to1/4 1/4to0/4 0/4to1/4"/> + </vehicle> + <vehicle id="car3126" depart="3126.00"> + <route edges="2/4to1/4 1/4to2/4 2/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to4/0 4/0to4/1"/> + </vehicle> + <vehicle id="car3127" depart="3127.00"> + <route edges="1/2to2/2 2/2to1/2 1/2to0/2 0/2to0/3 0/3to0/4 0/4to1/4"/> + </vehicle> + <vehicle id="car3128" depart="3128.00"> + <route edges="2/1to3/1 3/1to4/1 4/1to4/0"/> + </vehicle> + <vehicle id="car3129" depart="3129.00"> + <route edges="0/2to1/2 1/2to2/2 2/2to3/2 3/2to3/1"/> + </vehicle> + <vehicle id="car3130" depart="3130.00"> + <route edges="4/1to4/0 4/0to3/0 3/0to3/1 3/1to3/2 3/2to3/3 3/3to3/4 3/4to2/4"/> + </vehicle> + <vehicle id="car3131" depart="3131.00"> + <route edges="0/4to1/4 1/4to2/4 2/4to3/4 3/4to4/4 4/4to4/3 4/3to4/4"/> + </vehicle> + <vehicle id="car3132" depart="3132.00"> + <route edges="3/1to2/1 2/1to3/1 3/1to3/2 3/2to4/2 4/2to4/3"/> + </vehicle> + <vehicle id="car3133" depart="3133.00"> + <route edges="1/3to2/3 2/3to3/3 3/3to3/4"/> + </vehicle> + <vehicle id="car3134" depart="3134.00"> + <route edges="4/0to4/1 4/1to3/1 3/1to2/1 2/1to1/1"/> + </vehicle> + <vehicle id="car3135" depart="3135.00"> + <route edges="2/0to1/0 1/0to1/1 1/1to0/1"/> + </vehicle> + <vehicle id="car3136" depart="3136.00"> + <route edges="2/4to3/4 3/4to2/4 2/4to1/4 1/4to0/4 0/4to0/3 0/3to0/2 0/2to0/1"/> + </vehicle> + <vehicle id="car3137" depart="3137.00"> + <route edges="0/4to1/4 1/4to2/4 2/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to3/1"/> + </vehicle> + <vehicle id="car3138" depart="3138.00"> + <route edges="2/2to2/1 2/1to2/2 2/2to2/3 2/3to3/3 3/3to3/4 3/4to2/4"/> + </vehicle> + <vehicle id="car3139" depart="3139.00"> + <route edges="0/4to0/3 0/3to0/2 0/2to1/2 1/2to2/2 2/2to3/2 3/2to4/2 4/2to4/1 4/1to3/1"/> + </vehicle> + <vehicle id="car3140" depart="3140.00"> + <route edges="2/3to2/2 2/2to2/3 2/3to3/3 3/3to4/3 4/3to4/4"/> + </vehicle> + <vehicle id="car3141" depart="3141.00"> + <route edges="3/3to3/4 3/4to2/4 2/4to1/4 1/4to0/4 0/4to0/3 0/3to0/2 0/2to0/3"/> + </vehicle> + <vehicle id="car3142" depart="3142.00"> + <route edges="4/2to4/3 4/3to4/4 4/4to3/4 3/4to2/4 2/4to1/4 1/4to0/4 0/4to1/4"/> + </vehicle> + <vehicle id="car3143" depart="3143.00"> + <route edges="3/3to3/2 3/2to2/2 2/2to1/2 1/2to0/2"/> + </vehicle> + <vehicle id="car3144" depart="3144.00"> + <route edges="2/1to3/1 3/1to2/1 2/1to1/1 1/1to1/2 1/2to0/2"/> + </vehicle> + <vehicle id="car3145" depart="3145.00"> + <route edges="4/1to4/0 4/0to3/0 3/0to3/1 3/1to2/1"/> + </vehicle> + <vehicle id="car3146" depart="3146.00"> + <route edges="2/3to3/3 3/3to2/3 2/3to2/2 2/2to1/2 1/2to1/1 1/1to0/1 0/1to0/2"/> + </vehicle> + <vehicle id="car3147" depart="3147.00"> + <route edges="4/0to4/1 4/1to4/0 4/0to3/0 3/0to2/0 2/0to2/1"/> + </vehicle> + <vehicle id="car3148" depart="3148.00"> + <route edges="4/0to3/0 3/0to3/1 3/1to3/2 3/2to3/3 3/3to4/3 4/3to4/2"/> + </vehicle> + <vehicle id="car3149" depart="3149.00"> + <route edges="1/4to1/3 1/3to1/2 1/2to1/1 1/1to2/1 2/1to3/1 3/1to3/2"/> + </vehicle> + <vehicle id="car3150" depart="3150.00"> + <route edges="3/4to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to2/0 2/0to1/0 1/0to0/0 0/0to0/1"/> + </vehicle> + <vehicle id="car3151" depart="3151.00"> + <route edges="4/0to4/1 4/1to3/1 3/1to2/1 2/1to1/1 1/1to1/2 1/2to2/2"/> + </vehicle> + <vehicle id="car3152" depart="3152.00"> + <route edges="0/4to1/4 1/4to2/4 2/4to2/3 2/3to2/2 2/2to2/1 2/1to2/0 2/0to1/0"/> + </vehicle> + <vehicle id="car3153" depart="3153.00"> + <route edges="0/2to0/1 0/1to0/0 0/0to1/0 1/0to2/0 2/0to1/0"/> + </vehicle> + <vehicle id="car3154" depart="3154.00"> + <route edges="2/1to3/1 3/1to3/0 3/0to4/0"/> + </vehicle> + <vehicle id="car3155" depart="3155.00"> + <route edges="0/2to0/3 0/3to1/3 1/3to2/3 2/3to3/3 3/3to3/2 3/2to3/3"/> + </vehicle> + <vehicle id="car3156" depart="3156.00"> + <route edges="3/3to3/2 3/2to3/1 3/1to3/0 3/0to2/0 2/0to1/0 1/0to2/0"/> + </vehicle> + <vehicle id="car3157" depart="3157.00"> + <route edges="4/4to4/3 4/3to3/3 3/3to3/2 3/2to2/2 2/2to1/2"/> + </vehicle> + <vehicle id="car3158" depart="3158.00"> + <route edges="3/2to2/2 2/2to1/2"/> + </vehicle> + <vehicle id="car3159" depart="3159.00"> + <route edges="0/4to1/4 1/4to2/4 2/4to2/3 2/3to2/2 2/2to2/1 2/1to3/1"/> + </vehicle> + <vehicle id="car3160" depart="3160.00"> + <route edges="3/0to4/0 4/0to3/0 3/0to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to1/2"/> + </vehicle> + <vehicle id="car3161" depart="3161.00"> + <route edges="0/1to0/0 0/0to0/1 0/1to0/2 0/2to0/3 0/3to0/4 0/4to1/4 1/4to2/4 2/4to3/4"/> + </vehicle> + <vehicle id="car3162" depart="3162.00"> + <route edges="1/4to2/4 2/4to3/4 3/4to4/4 4/4to4/3 4/3to4/2 4/2to4/3"/> + </vehicle> + <vehicle id="car3163" depart="3163.00"> + <route edges="1/4to0/4 0/4to1/4 1/4to2/4 2/4to2/3 2/3to2/2 2/2to2/1 2/1to1/1"/> + </vehicle> + <vehicle id="car3164" depart="3164.00"> + <route edges="3/1to3/2 3/2to2/2 2/2to1/2 1/2to1/1"/> + </vehicle> + <vehicle id="car3165" depart="3165.00"> + <route edges="3/0to3/1 3/1to3/2 3/2to2/2 2/2to1/2 1/2to0/2 0/2to0/3"/> + </vehicle> + <vehicle id="car3166" depart="3166.00"> + <route edges="0/2to0/1 0/1to0/0 0/0to1/0 1/0to2/0 2/0to2/1"/> + </vehicle> + <vehicle id="car3167" depart="3167.00"> + <route edges="3/1to3/0 3/0to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to0/2"/> + </vehicle> + <vehicle id="car3168" depart="3168.00"> + <route edges="3/4to4/4 4/4to4/3 4/3to3/3 3/3to3/2 3/2to2/2 2/2to1/2 1/2to0/2 0/2to1/2"/> + </vehicle> + <vehicle id="car3169" depart="3169.00"> + <route edges="4/2to3/2 3/2to2/2 2/2to1/2 1/2to1/3 1/3to2/3"/> + </vehicle> + <vehicle id="car3170" depart="3170.00"> + <route edges="3/3to2/3 2/3to2/2 2/2to2/1 2/1to2/0 2/0to1/0 1/0to0/0"/> + </vehicle> + <vehicle id="car3171" depart="3171.00"> + <route edges="1/3to2/3 2/3to2/2 2/2to2/1 2/1to2/0 2/0to3/0"/> + </vehicle> + <vehicle id="car3172" depart="3172.00"> + <route edges="2/2to1/2 1/2to2/2 2/2to3/2 3/2to3/1 3/1to4/1"/> + </vehicle> + <vehicle id="car3173" depart="3173.00"> + <route edges="0/4to1/4 1/4to2/4 2/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to4/1"/> + </vehicle> + <vehicle id="car3174" depart="3174.00"> + <route edges="1/4to0/4 0/4to1/4 1/4to2/4 2/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to4/1"/> + </vehicle> + <vehicle id="car3175" depart="3175.00"> + <route edges="2/0to1/0 1/0to0/0 0/0to0/1"/> + </vehicle> + <vehicle id="car3176" depart="3176.00"> + <route edges="0/2to0/3 0/3to1/3 1/3to2/3 2/3to3/3 3/3to3/2 3/2to3/1 3/1to3/0"/> + </vehicle> + <vehicle id="car3177" depart="3177.00"> + <route edges="3/0to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to1/2"/> + </vehicle> + <vehicle id="car3178" depart="3178.00"> + <route edges="2/1to2/2 2/2to2/3 2/3to2/4 2/4to1/4 1/4to0/4 0/4to0/3"/> + </vehicle> + <vehicle id="car3179" depart="3179.00"> + <route edges="4/1to3/1 3/1to2/1 2/1to1/1 1/1to0/1 0/1to0/2 0/2to0/3 0/3to0/4"/> + </vehicle> + <vehicle id="car3180" depart="3180.00"> + <route edges="4/3to4/4 4/4to4/3 4/3to4/2 4/2to4/1 4/1to4/0 4/0to3/0 3/0to2/0 2/0to2/1"/> + </vehicle> + <vehicle id="car3181" depart="3181.00"> + <route edges="2/2to3/2 3/2to3/1 3/1to3/0 3/0to2/0 2/0to1/0 1/0to0/0 0/0to0/1"/> + </vehicle> + <vehicle id="car3182" depart="3182.00"> + <route edges="2/1to2/2 2/2to2/3 2/3to2/4 2/4to3/4 3/4to4/4"/> + </vehicle> + <vehicle id="car3183" depart="3183.00"> + <route edges="0/3to1/3 1/3to2/3 2/3to2/2 2/2to2/1 2/1to2/0"/> + </vehicle> + <vehicle id="car3184" depart="3184.00"> + <route edges="4/3to4/4 4/4to3/4 3/4to2/4 2/4to1/4 1/4to0/4 0/4to0/3 0/3to0/2 0/2to1/2"/> + </vehicle> + <vehicle id="car3185" depart="3185.00"> + <route edges="1/1to1/0 1/0to2/0 2/0to3/0 3/0to4/0 4/0to4/1 4/1to4/2 4/2to4/3 4/3to4/4 4/4to3/4"/> + </vehicle> + <vehicle id="car3186" depart="3186.00"> + <route edges="2/0to3/0 3/0to2/0 2/0to2/1 2/1to2/2 2/2to2/3 2/3to2/2"/> + </vehicle> + <vehicle id="car3187" depart="3187.00"> + <route edges="1/0to0/0 0/0to0/1 0/1to0/2 0/2to0/3 0/3to0/4 0/4to1/4 1/4to2/4"/> + </vehicle> + <vehicle id="car3188" depart="3188.00"> + <route edges="1/3to2/3 2/3to3/3 3/3to4/3 4/3to4/2"/> + </vehicle> + <vehicle id="car3189" depart="3189.00"> + <route edges="4/3to4/4 4/4to3/4 3/4to2/4 2/4to1/4"/> + </vehicle> + <vehicle id="car3190" depart="3190.00"> + <route edges="0/0to1/0 1/0to2/0 2/0to2/1 2/1to2/2 2/2to2/3 2/3to2/4 2/4to3/4 3/4to3/3"/> + </vehicle> + <vehicle id="car3191" depart="3191.00"> + <route edges="0/0to1/0 1/0to2/0 2/0to3/0 3/0to4/0 4/0to4/1 4/1to4/2"/> + </vehicle> + <vehicle id="car3192" depart="3192.00"> + <route edges="1/4to0/4 0/4to1/4 1/4to2/4 2/4to2/3 2/3to2/2"/> + </vehicle> + <vehicle id="car3193" depart="3193.00"> + <route edges="0/3to0/4 0/4to1/4 1/4to1/3 1/3to1/2 1/2to1/1 1/1to1/0 1/0to1/1"/> + </vehicle> + <vehicle id="car3194" depart="3194.00"> + <route edges="2/4to2/3 2/3to2/2"/> + </vehicle> + <vehicle id="car3195" depart="3195.00"> + <route edges="1/4to2/4 2/4to3/4 3/4to4/4 4/4to4/3 4/3to4/2 4/2to4/1 4/1to4/0 4/0to3/0"/> + </vehicle> + <vehicle id="car3196" depart="3196.00"> + <route edges="3/1to4/1 4/1to3/1 3/1to2/1 2/1to1/1"/> + </vehicle> + <vehicle id="car3197" depart="3197.00"> + <route edges="1/2to1/3 1/3to2/3 2/3to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to2/0"/> + </vehicle> + <vehicle id="car3198" depart="3198.00"> + <route edges="4/4to4/3 4/3to3/3 3/3to3/4 3/4to2/4"/> + </vehicle> + <vehicle id="car3199" depart="3199.00"> + <route edges="0/3to0/2 0/2to0/1 0/1to0/0 0/0to1/0 1/0to2/0 2/0to3/0 3/0to4/0"/> + </vehicle> + <vehicle id="car3200" depart="3200.00"> + <route edges="4/2to4/3 4/3to4/2 4/2to3/2 3/2to2/2 2/2to1/2 1/2to0/2 0/2to1/2"/> + </vehicle> + <vehicle id="car3201" depart="3201.00"> + <route edges="2/1to2/0 2/0to2/1 2/1to2/2 2/2to2/3 2/3to2/4 2/4to1/4"/> + </vehicle> + <vehicle id="car3202" depart="3202.00"> + <route edges="0/1to0/0 0/0to1/0 1/0to1/1 1/1to1/2 1/2to2/2"/> + </vehicle> + <vehicle id="car3203" depart="3203.00"> + <route edges="2/1to2/2 2/2to2/3 2/3to2/4 2/4to1/4 1/4to2/4"/> + </vehicle> + <vehicle id="car3204" depart="3204.00"> + <route edges="1/0to2/0 2/0to2/1 2/1to3/1"/> + </vehicle> + <vehicle id="car3205" depart="3205.00"> + <route edges="0/3to0/4 0/4to1/4 1/4to2/4 2/4to3/4 3/4to4/4 4/4to4/3 4/3to4/4"/> + </vehicle> + <vehicle id="car3206" depart="3206.00"> + <route edges="4/2to4/1 4/1to4/0 4/0to3/0 3/0to2/0 2/0to3/0"/> + </vehicle> + <vehicle id="car3207" depart="3207.00"> + <route edges="3/4to3/3 3/3to3/2 3/2to2/2"/> + </vehicle> + <vehicle id="car3208" depart="3208.00"> + <route edges="3/2to4/2 4/2to4/1 4/1to4/0 4/0to3/0 3/0to2/0 2/0to1/0 1/0to0/0 0/0to0/1"/> + </vehicle> + <vehicle id="car3209" depart="3209.00"> + <route edges="1/4to1/3 1/3to1/2 1/2to1/1 1/1to1/0"/> + </vehicle> + <vehicle id="car3210" depart="3210.00"> + <route edges="1/2to1/3 1/3to2/3 2/3to3/3 3/3to4/3 4/3to4/2 4/2to4/1 4/1to4/0"/> + </vehicle> + <vehicle id="car3211" depart="3211.00"> + <route edges="1/2to1/1 1/1to1/0 1/0to2/0 2/0to3/0 3/0to4/0 4/0to3/0"/> + </vehicle> + <vehicle id="car3212" depart="3212.00"> + <route edges="3/3to4/3 4/3to4/2 4/2to4/1 4/1to4/0 4/0to3/0 3/0to2/0 2/0to3/0"/> + </vehicle> + <vehicle id="car3213" depart="3213.00"> + <route edges="1/1to2/1 2/1to3/1 3/1to3/2 3/2to4/2 4/2to3/2"/> + </vehicle> + <vehicle id="car3214" depart="3214.00"> + <route edges="1/1to2/1 2/1to2/2 2/2to3/2 3/2to3/3 3/3to4/3 4/3to4/4"/> + </vehicle> + <vehicle id="car3215" depart="3215.00"> + <route edges="1/0to2/0 2/0to3/0 3/0to4/0"/> + </vehicle> + <vehicle id="car3216" depart="3216.00"> + <route edges="3/0to3/1 3/1to4/1 4/1to4/2 4/2to4/3 4/3to4/4 4/4to3/4"/> + </vehicle> + <vehicle id="car3217" depart="3217.00"> + <route edges="1/0to0/0 0/0to0/1 0/1to1/1 1/1to1/2 1/2to2/2 2/2to3/2 3/2to4/2 4/2to3/2"/> + </vehicle> + <vehicle id="car3218" depart="3218.00"> + <route edges="0/2to1/2 1/2to1/3 1/3to1/4 1/4to2/4 2/4to3/4 3/4to2/4"/> + </vehicle> + <vehicle id="car3219" depart="3219.00"> + <route edges="3/3to3/4 3/4to4/4 4/4to4/3 4/3to4/2 4/2to4/1 4/1to4/0 4/0to3/0"/> + </vehicle> + <vehicle id="car3220" depart="3220.00"> + <route edges="3/0to3/1 3/1to3/2 3/2to2/2 2/2to1/2 1/2to0/2"/> + </vehicle> + <vehicle id="car3221" depart="3221.00"> + <route edges="2/4to2/3 2/3to1/3 1/3to1/2 1/2to1/1 1/1to0/1 0/1to0/0"/> + </vehicle> + <vehicle id="car3222" depart="3222.00"> + <route edges="0/2to0/3 0/3to0/4 0/4to1/4 1/4to2/4"/> + </vehicle> + <vehicle id="car3223" depart="3223.00"> + <route edges="3/2to4/2 4/2to3/2 3/2to2/2 2/2to1/2 1/2to0/2 0/2to0/3 0/3to1/3"/> + </vehicle> + <vehicle id="car3224" depart="3224.00"> + <route edges="1/4to0/4 0/4to0/3 0/3to0/2 0/2to0/1 0/1to1/1 1/1to2/1"/> + </vehicle> + <vehicle id="car3225" depart="3225.00"> + <route edges="4/1to4/2 4/2to3/2 3/2to2/2 2/2to1/2 1/2to2/2"/> + </vehicle> + <vehicle id="car3226" depart="3226.00"> + <route edges="2/3to1/3 1/3to1/2 1/2to1/1 1/1to2/1"/> + </vehicle> + <vehicle id="car3227" depart="3227.00"> + <route edges="3/3to3/2 3/2to3/1 3/1to2/1"/> + </vehicle> + <vehicle id="car3228" depart="3228.00"> + <route edges="1/2to1/1 1/1to1/2 1/2to2/2 2/2to3/2 3/2to4/2 4/2to4/3"/> + </vehicle> + <vehicle id="car3229" depart="3229.00"> + <route edges="2/4to1/4 1/4to0/4 0/4to0/3 0/3to0/2"/> + </vehicle> + <vehicle id="car3230" depart="3230.00"> + <route edges="2/1to2/2 2/2to2/3 2/3to2/4 2/4to2/3"/> + </vehicle> + <vehicle id="car3231" depart="3231.00"> + <route edges="4/1to4/2 4/2to3/2 3/2to2/2 2/2to1/2 1/2to0/2 0/2to1/2"/> + </vehicle> + <vehicle id="car3232" depart="3232.00"> + <route edges="2/2to2/1 2/1to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to0/4"/> + </vehicle> + <vehicle id="car3233" depart="3233.00"> + <route edges="4/0to3/0 3/0to2/0 2/0to1/0"/> + </vehicle> + <vehicle id="car3234" depart="3234.00"> + <route edges="2/2to2/1 2/1to1/1 1/1to0/1 0/1to0/0 0/0to1/0"/> + </vehicle> + <vehicle id="car3235" depart="3235.00"> + <route edges="0/2to0/1 0/1to0/2 0/2to1/2 1/2to1/3 1/3to2/3 2/3to3/3 3/3to4/3 4/3to4/2"/> + </vehicle> + <vehicle id="car3236" depart="3236.00"> + <route edges="0/2to0/3 0/3to1/3 1/3to2/3 2/3to3/3 3/3to3/2 3/2to3/1 3/1to3/2"/> + </vehicle> + <vehicle id="car3237" depart="3237.00"> + <route edges="1/4to2/4 2/4to2/3 2/3to1/3 1/3to1/2"/> + </vehicle> + <vehicle id="car3238" depart="3238.00"> + <route edges="4/2to3/2 3/2to3/3 3/3to3/4 3/4to2/4"/> + </vehicle> + <vehicle id="car3239" depart="3239.00"> + <route edges="1/0to1/1 1/1to2/1 2/1to2/2 2/2to2/3 2/3to3/3"/> + </vehicle> + <vehicle id="car3240" depart="3240.00"> + <route edges="2/4to3/4 3/4to2/4 2/4to1/4 1/4to0/4 0/4to0/3 0/3to0/2 0/2to0/1 0/1to0/0"/> + </vehicle> + <vehicle id="car3241" depart="3241.00"> + <route edges="2/2to1/2 1/2to2/2 2/2to3/2 3/2to3/1 3/1to3/0 3/0to2/0"/> + </vehicle> + <vehicle id="car3242" depart="3242.00"> + <route edges="0/0to1/0 1/0to2/0 2/0to2/1 2/1to2/2 2/2to2/3"/> + </vehicle> + <vehicle id="car3243" depart="3243.00"> + <route edges="0/4to1/4 1/4to2/4 2/4to3/4 3/4to4/4 4/4to4/3 4/3to4/2 4/2to4/1 4/1to3/1"/> + </vehicle> + <vehicle id="car3244" depart="3244.00"> + <route edges="0/3to0/4 0/4to1/4 1/4to1/3 1/3to1/2 1/2to1/1 1/1to1/0"/> + </vehicle> + <vehicle id="car3245" depart="3245.00"> + <route edges="1/3to1/4 1/4to1/3 1/3to1/2 1/2to1/1 1/1to1/0"/> + </vehicle> + <vehicle id="car3246" depart="3246.00"> + <route edges="4/3to4/2 4/2to3/2 3/2to2/2 2/2to1/2 1/2to1/3 1/3to2/3"/> + </vehicle> + <vehicle id="car3247" depart="3247.00"> + <route edges="2/2to3/2 3/2to3/1 3/1to3/0 3/0to2/0 2/0to1/0"/> + </vehicle> + <vehicle id="car3248" depart="3248.00"> + <route edges="1/2to1/3 1/3to2/3 2/3to2/2 2/2to2/1 2/1to2/0 2/0to1/0"/> + </vehicle> + <vehicle id="car3249" depart="3249.00"> + <route edges="2/4to1/4 1/4to2/4 2/4to3/4 3/4to3/3 3/3to3/2"/> + </vehicle> + <vehicle id="car3250" depart="3250.00"> + <route edges="1/3to0/3 0/3to1/3 1/3to2/3 2/3to3/3 3/3to4/3"/> + </vehicle> + <vehicle id="car3251" depart="3251.00"> + <route edges="4/3to4/2 4/2to3/2 3/2to2/2 2/2to2/1"/> + </vehicle> + <vehicle id="car3252" depart="3252.00"> + <route edges="3/0to2/0 2/0to2/1 2/1to2/2 2/2to2/3 2/3to2/4 2/4to3/4"/> + </vehicle> + <vehicle id="car3253" depart="3253.00"> + <route edges="2/1to1/1 1/1to1/2 1/2to2/2 2/2to2/3 2/3to3/3"/> + </vehicle> + <vehicle id="car3254" depart="3254.00"> + <route edges="1/4to1/3 1/3to1/2 1/2to1/1 1/1to1/0 1/0to2/0 2/0to3/0 3/0to3/1"/> + </vehicle> + <vehicle id="car3255" depart="3255.00"> + <route edges="0/2to0/1 0/1to0/0 0/0to1/0 1/0to0/0"/> + </vehicle> + <vehicle id="car3256" depart="3256.00"> + <route edges="0/1to0/0 0/0to1/0 1/0to2/0 2/0to2/1 2/1to2/2 2/2to2/3"/> + </vehicle> + <vehicle id="car3257" depart="3257.00"> + <route edges="2/4to1/4 1/4to1/3 1/3to1/2 1/2to2/2"/> + </vehicle> + <vehicle id="car3258" depart="3258.00"> + <route edges="3/4to4/4 4/4to4/3 4/3to4/2 4/2to4/1 4/1to4/0 4/0to3/0 3/0to4/0"/> + </vehicle> + <vehicle id="car3259" depart="3259.00"> + <route edges="4/3to4/4 4/4to3/4 3/4to2/4 2/4to1/4 1/4to0/4"/> + </vehicle> + <vehicle id="car3260" depart="3260.00"> + <route edges="1/3to1/2 1/2to1/3 1/3to2/3 2/3to3/3 3/3to4/3"/> + </vehicle> + <vehicle id="car3261" depart="3261.00"> + <route edges="1/4to0/4 0/4to0/3 0/3to0/2 0/2to0/1"/> + </vehicle> + <vehicle id="car3262" depart="3262.00"> + <route edges="3/1to2/1 2/1to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to1/3"/> + </vehicle> + <vehicle id="car3263" depart="3263.00"> + <route edges="3/3to3/4 3/4to2/4 2/4to1/4 1/4to0/4 0/4to0/3 0/3to0/4"/> + </vehicle> + <vehicle id="car3264" depart="3264.00"> + <route edges="1/3to1/2 1/2to1/1 1/1to1/0 1/0to0/0 0/0to0/1"/> + </vehicle> + <vehicle id="car3265" depart="3265.00"> + <route edges="1/3to1/4 1/4to2/4 2/4to2/3 2/3to2/2 2/2to2/1 2/1to3/1"/> + </vehicle> + <vehicle id="car3266" depart="3266.00"> + <route edges="2/4to3/4 3/4to4/4 4/4to4/3 4/3to4/2 4/2to4/1 4/1to4/0"/> + </vehicle> + <vehicle id="car3267" depart="3267.00"> + <route edges="4/0to4/1 4/1to4/2 4/2to3/2 3/2to2/2 2/2to1/2 1/2to0/2 0/2to0/1"/> + </vehicle> + <vehicle id="car3268" depart="3268.00"> + <route edges="3/3to2/3 2/3to1/3 1/3to1/2"/> + </vehicle> + <vehicle id="car3269" depart="3269.00"> + <route edges="1/3to1/2 1/2to1/1 1/1to1/0 1/0to2/0"/> + </vehicle> + <vehicle id="car3270" depart="3270.00"> + <route edges="3/4to2/4 2/4to2/3 2/3to2/2 2/2to2/1"/> + </vehicle> + <vehicle id="car3271" depart="3271.00"> + <route edges="4/4to4/3 4/3to4/2 4/2to4/1 4/1to4/0 4/0to3/0 3/0to2/0 2/0to3/0"/> + </vehicle> + <vehicle id="car3272" depart="3272.00"> + <route edges="0/3to0/4 0/4to1/4 1/4to1/3 1/3to1/2 1/2to1/1 1/1to1/0 1/0to0/0"/> + </vehicle> + <vehicle id="car3273" depart="3273.00"> + <route edges="4/4to4/3 4/3to4/2 4/2to3/2"/> + </vehicle> + <vehicle id="car3274" depart="3274.00"> + <route edges="1/2to1/3 1/3to2/3 2/3to3/3 3/3to4/3 4/3to4/2 4/2to4/1 4/1to4/0 4/0to3/0"/> + </vehicle> + <vehicle id="car3275" depart="3275.00"> + <route edges="2/0to2/1 2/1to3/1 3/1to4/1 4/1to4/2"/> + </vehicle> + <vehicle id="car3276" depart="3276.00"> + <route edges="4/2to4/1 4/1to3/1 3/1to2/1 2/1to1/1 1/1to0/1 0/1to0/2"/> + </vehicle> + <vehicle id="car3277" depart="3277.00"> + <route edges="3/0to4/0 4/0to3/0 3/0to2/0 2/0to1/0 1/0to0/0 0/0to0/1 0/1to0/2 0/2to0/1"/> + </vehicle> + <vehicle id="car3278" depart="3278.00"> + <route edges="0/2to1/2 1/2to1/3 1/3to1/4 1/4to2/4 2/4to3/4 3/4to2/4"/> + </vehicle> + <vehicle id="car3279" depart="3279.00"> + <route edges="3/2to3/1 3/1to2/1 2/1to1/1 1/1to1/2 1/2to1/1"/> + </vehicle> + <vehicle id="car3280" depart="3280.00"> + <route edges="3/3to2/3 2/3to2/2 2/2to2/1 2/1to2/0 2/0to2/1"/> + </vehicle> + <vehicle id="car3281" depart="3281.00"> + <route edges="2/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to2/0 2/0to1/0"/> + </vehicle> + <vehicle id="car3282" depart="3282.00"> + <route edges="4/0to3/0 3/0to3/1 3/1to3/2 3/2to3/3 3/3to4/3 4/3to4/4"/> + </vehicle> + <vehicle id="car3283" depart="3283.00"> + <route edges="3/0to2/0 2/0to1/0 1/0to0/0 0/0to0/1 0/1to0/0"/> + </vehicle> + <vehicle id="car3284" depart="3284.00"> + <route edges="3/1to4/1 4/1to3/1 3/1to2/1 2/1to1/1"/> + </vehicle> + <vehicle id="car3285" depart="3285.00"> + <route edges="4/2to3/2 3/2to2/2 2/2to1/2 1/2to1/3 1/3to1/4 1/4to1/3"/> + </vehicle> + <vehicle id="car3286" depart="3286.00"> + <route edges="1/2to0/2 0/2to1/2 1/2to1/3 1/3to2/3 2/3to3/3 3/3to3/4"/> + </vehicle> + <vehicle id="car3287" depart="3287.00"> + <route edges="0/3to0/2 0/2to0/3 0/3to1/3 1/3to2/3 2/3to3/3 3/3to4/3 4/3to3/3"/> + </vehicle> + <vehicle id="car3288" depart="3288.00"> + <route edges="0/2to0/3 0/3to1/3 1/3to1/4"/> + </vehicle> + <vehicle id="car3289" depart="3289.00"> + <route edges="3/0to2/0 2/0to2/1 2/1to2/2 2/2to2/3 2/3to3/3 3/3to3/4 3/4to2/4"/> + </vehicle> + <vehicle id="car3290" depart="3290.00"> + <route edges="1/2to1/1 1/1to1/0 1/0to0/0"/> + </vehicle> + <vehicle id="car3291" depart="3291.00"> + <route edges="0/4to0/3 0/3to0/2 0/2to0/1 0/1to1/1 1/1to2/1 2/1to2/2"/> + </vehicle> + <vehicle id="car3292" depart="3292.00"> + <route edges="0/3to1/3 1/3to1/2 1/2to1/1 1/1to1/0 1/0to2/0 2/0to3/0 3/0to4/0 4/0to4/1"/> + </vehicle> + <vehicle id="car3293" depart="3293.00"> + <route edges="4/3to4/4 4/4to3/4 3/4to2/4 2/4to2/3 2/3to2/2 2/2to2/1 2/1to2/0 2/0to3/0"/> + </vehicle> + <vehicle id="car3294" depart="3294.00"> + <route edges="2/1to2/0 2/0to1/0 1/0to0/0 0/0to0/1 0/1to0/2 0/2to0/3 0/3to0/4"/> + </vehicle> + <vehicle id="car3295" depart="3295.00"> + <route edges="3/1to2/1 2/1to2/2 2/2to3/2 3/2to3/3 3/3to4/3 4/3to4/4 4/4to3/4"/> + </vehicle> + <vehicle id="car3296" depart="3296.00"> + <route edges="1/3to1/2 1/2to2/2 2/2to3/2 3/2to3/3"/> + </vehicle> + <vehicle id="car3297" depart="3297.00"> + <route edges="2/3to2/4 2/4to3/4 3/4to4/4 4/4to4/3 4/3to4/2 4/2to4/1 4/1to3/1"/> + </vehicle> + <vehicle id="car3298" depart="3298.00"> + <route edges="3/1to2/1 2/1to2/2 2/2to3/2 3/2to3/3"/> + </vehicle> + <vehicle id="car3299" depart="3299.00"> + <route edges="1/1to0/1 0/1to0/2 0/2to0/3"/> + </vehicle> + <vehicle id="car3300" depart="3300.00"> + <route edges="4/3to4/4 4/4to3/4 3/4to2/4 2/4to1/4 1/4to0/4 0/4to0/3 0/3to0/2 0/2to0/1 0/1to1/1"/> + </vehicle> + <vehicle id="car3301" depart="3301.00"> + <route edges="3/4to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to2/0 2/0to1/0 1/0to2/0"/> + </vehicle> + <vehicle id="car3302" depart="3302.00"> + <route edges="0/3to0/2 0/2to1/2 1/2to1/1 1/1to0/1"/> + </vehicle> + <vehicle id="car3303" depart="3303.00"> + <route edges="4/0to4/1 4/1to4/2 4/2to4/3 4/3to3/3 3/3to2/3"/> + </vehicle> + <vehicle id="car3304" depart="3304.00"> + <route edges="0/4to1/4 1/4to2/4 2/4to2/3 2/3to2/2 2/2to2/3"/> + </vehicle> + <vehicle id="car3305" depart="3305.00"> + <route edges="4/2to4/1 4/1to3/1 3/1to2/1 2/1to1/1 1/1to1/0"/> + </vehicle> + <vehicle id="car3306" depart="3306.00"> + <route edges="1/4to1/3 1/3to1/4 1/4to2/4 2/4to3/4 3/4to4/4 4/4to3/4"/> + </vehicle> + <vehicle id="car3307" depart="3307.00"> + <route edges="3/3to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to2/0 2/0to1/0 1/0to2/0"/> + </vehicle> + <vehicle id="car3308" depart="3308.00"> + <route edges="1/2to1/3 1/3to1/2 1/2to1/1 1/1to1/0 1/0to0/0"/> + </vehicle> + <vehicle id="car3309" depart="3309.00"> + <route edges="1/3to0/3 0/3to1/3 1/3to2/3 2/3to3/3 3/3to4/3 4/3to4/2 4/2to4/1 4/1to3/1"/> + </vehicle> + <vehicle id="car3310" depart="3310.00"> + <route edges="3/0to4/0 4/0to4/1 4/1to4/2 4/2to4/3 4/3to4/4 4/4to3/4 3/4to2/4 2/4to1/4 1/4to0/4 0/4to0/3"/> + </vehicle> + <vehicle id="car3311" depart="3311.00"> + <route edges="1/1to2/1 2/1to3/1 3/1to4/1 4/1to4/2"/> + </vehicle> + <vehicle id="car3312" depart="3312.00"> + <route edges="1/2to1/1 1/1to1/2 1/2to2/2 2/2to3/2 3/2to4/2 4/2to4/3"/> + </vehicle> + <vehicle id="car3313" depart="3313.00"> + <route edges="0/4to1/4 1/4to2/4 2/4to2/3 2/3to2/2 2/2to2/3"/> + </vehicle> + <vehicle id="car3314" depart="3314.00"> + <route edges="3/0to4/0 4/0to3/0 3/0to3/1 3/1to3/2 3/2to3/3"/> + </vehicle> + <vehicle id="car3315" depart="3315.00"> + <route edges="2/0to3/0 3/0to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to2/2"/> + </vehicle> + <vehicle id="car3316" depart="3316.00"> + <route edges="2/0to2/1 2/1to2/2 2/2to2/3 2/3to2/4 2/4to2/3"/> + </vehicle> + <vehicle id="car3317" depart="3317.00"> + <route edges="2/3to1/3 1/3to2/3 2/3to2/2 2/2to2/1"/> + </vehicle> + <vehicle id="car3318" depart="3318.00"> + <route edges="3/0to4/0 4/0to4/1 4/1to4/2 4/2to4/3 4/3to4/2"/> + </vehicle> + <vehicle id="car3319" depart="3319.00"> + <route edges="3/2to3/1 3/1to3/0 3/0to2/0 2/0to1/0"/> + </vehicle> + <vehicle id="car3320" depart="3320.00"> + <route edges="0/3to0/2 0/2to1/2 1/2to2/2 2/2to3/2 3/2to3/3"/> + </vehicle> + <vehicle id="car3321" depart="3321.00"> + <route edges="4/1to4/0 4/0to3/0 3/0to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/1"/> + </vehicle> + <vehicle id="car3322" depart="3322.00"> + <route edges="1/1to0/1 0/1to1/1 1/1to1/2 1/2to2/2 2/2to2/3 2/3to3/3 3/3to3/4"/> + </vehicle> + <vehicle id="car3323" depart="3323.00"> + <route edges="0/2to1/2 1/2to2/2 2/2to2/3"/> + </vehicle> + <vehicle id="car3324" depart="3324.00"> + <route edges="3/2to2/2 2/2to1/2"/> + </vehicle> + <vehicle id="car3325" depart="3325.00"> + <route edges="1/3to0/3 0/3to1/3 1/3to2/3 2/3to3/3 3/3to4/3 4/3to4/2 4/2to3/2"/> + </vehicle> + <vehicle id="car3326" depart="3326.00"> + <route edges="4/1to4/2 4/2to4/3 4/3to4/4 4/4to3/4 3/4to2/4 2/4to1/4 1/4to0/4 0/4to0/3"/> + </vehicle> + <vehicle id="car3327" depart="3327.00"> + <route edges="0/0to1/0 1/0to2/0 2/0to2/1 2/1to3/1"/> + </vehicle> + <vehicle id="car3328" depart="3328.00"> + <route edges="1/3to1/4 1/4to1/3 1/3to1/2 1/2to1/1 1/1to1/0 1/0to1/1"/> + </vehicle> + <vehicle id="car3329" depart="3329.00"> + <route edges="2/4to2/3 2/3to3/3 3/3to4/3 4/3to4/4"/> + </vehicle> + <vehicle id="car3330" depart="3330.00"> + <route edges="2/4to1/4 1/4to2/4 2/4to2/3 2/3to2/2 2/2to2/1"/> + </vehicle> + <vehicle id="car3331" depart="3331.00"> + <route edges="2/3to1/3 1/3to1/2 1/2to1/1 1/1to1/0 1/0to0/0"/> + </vehicle> + <vehicle id="car3332" depart="3332.00"> + <route edges="0/4to0/3 0/3to0/2 0/2to1/2"/> + </vehicle> + <vehicle id="car3333" depart="3333.00"> + <route edges="1/3to0/3 0/3to1/3 1/3to2/3 2/3to3/3 3/3to3/2 3/2to3/3"/> + </vehicle> + <vehicle id="car3334" depart="3334.00"> + <route edges="2/1to2/2 2/2to3/2 3/2to3/3"/> + </vehicle> + <vehicle id="car3335" depart="3335.00"> + <route edges="4/4to4/3 4/3to3/3 3/3to3/2 3/2to2/2 2/2to1/2 1/2to0/2"/> + </vehicle> + <vehicle id="car3336" depart="3336.00"> + <route edges="0/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to0/4"/> + </vehicle> + <vehicle id="car3337" depart="3337.00"> + <route edges="3/3to3/2 3/2to3/1 3/1to3/0 3/0to4/0 4/0to4/1"/> + </vehicle> + <vehicle id="car3338" depart="3338.00"> + <route edges="4/2to3/2 3/2to2/2 2/2to2/3 2/3to2/4 2/4to2/3"/> + </vehicle> + <vehicle id="car3339" depart="3339.00"> + <route edges="0/3to0/4 0/4to1/4 1/4to2/4 2/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to3/2"/> + </vehicle> + <vehicle id="car3340" depart="3340.00"> + <route edges="3/2to3/3 3/3to3/2 3/2to2/2 2/2to2/1 2/1to1/1 1/1to0/1 0/1to0/0 0/0to1/0"/> + </vehicle> + <vehicle id="car3341" depart="3341.00"> + <route edges="4/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to4/0 4/0to4/1"/> + </vehicle> + <vehicle id="car3342" depart="3342.00"> + <route edges="3/1to2/1 2/1to2/2 2/2to2/3 2/3to2/4 2/4to1/4 1/4to0/4 0/4to0/3"/> + </vehicle> + <vehicle id="car3343" depart="3343.00"> + <route edges="3/2to4/2 4/2to4/3 4/3to4/4"/> + </vehicle> + <vehicle id="car3344" depart="3344.00"> + <route edges="1/4to0/4 0/4to1/4 1/4to2/4 2/4to3/4 3/4to3/3 3/3to3/2 3/2to4/2"/> + </vehicle> + <vehicle id="car3345" depart="3345.00"> + <route edges="1/0to2/0 2/0to3/0 3/0to4/0 4/0to4/1 4/1to4/2 4/2to4/3 4/3to4/2"/> + </vehicle> + <vehicle id="car3346" depart="3346.00"> + <route edges="3/0to4/0 4/0to4/1 4/1to4/2 4/2to4/3 4/3to4/4"/> + </vehicle> + <vehicle id="car3347" depart="3347.00"> + <route edges="4/1to4/2 4/2to4/1 4/1to3/1 3/1to2/1 2/1to2/0"/> + </vehicle> + <vehicle id="car3348" depart="3348.00"> + <route edges="4/3to4/2 4/2to3/2 3/2to2/2 2/2to2/3 2/3to1/3"/> + </vehicle> + <vehicle id="car3349" depart="3349.00"> + <route edges="1/2to1/1 1/1to2/1 2/1to3/1 3/1to3/2"/> + </vehicle> + <vehicle id="car3350" depart="3350.00"> + <route edges="4/1to4/2 4/2to4/1 4/1to4/0 4/0to3/0 3/0to2/0 2/0to1/0"/> + </vehicle> + <vehicle id="car3351" depart="3351.00"> + <route edges="2/0to3/0 3/0to4/0 4/0to4/1 4/1to4/2 4/2to4/3 4/3to4/4 4/4to4/3"/> + </vehicle> + <vehicle id="car3352" depart="3352.00"> + <route edges="2/4to3/4 3/4to3/3 3/3to3/2 3/2to2/2 2/2to2/1 2/1to1/1"/> + </vehicle> + <vehicle id="car3353" depart="3353.00"> + <route edges="2/1to2/2 2/2to3/2 3/2to3/3 3/3to4/3 4/3to4/4"/> + </vehicle> + <vehicle id="car3354" depart="3354.00"> + <route edges="4/3to4/4 4/4to3/4 3/4to2/4 2/4to2/3 2/3to2/2 2/2to2/1"/> + </vehicle> + <vehicle id="car3355" depart="3355.00"> + <route edges="0/4to1/4 1/4to2/4 2/4to3/4 3/4to4/4 4/4to4/3 4/3to4/4"/> + </vehicle> + <vehicle id="car3356" depart="3356.00"> + <route edges="3/3to4/3 4/3to4/2 4/2to4/1 4/1to4/0 4/0to3/0 3/0to2/0 2/0to1/0 1/0to0/0 0/0to1/0"/> + </vehicle> + <vehicle id="car3357" depart="3357.00"> + <route edges="0/1to0/2 0/2to1/2 1/2to1/3"/> + </vehicle> + <vehicle id="car3358" depart="3358.00"> + <route edges="2/4to2/3 2/3to1/3 1/3to1/2 1/2to1/1 1/1to0/1 0/1to1/1"/> + </vehicle> + <vehicle id="car3359" depart="3359.00"> + <route edges="1/3to0/3 0/3to1/3 1/3to2/3 2/3to2/2 2/2to2/1 2/1to1/1"/> + </vehicle> + <vehicle id="car3360" depart="3360.00"> + <route edges="3/1to2/1 2/1to2/0 2/0to1/0 1/0to0/0 0/0to0/1"/> + </vehicle> + <vehicle id="car3361" depart="3361.00"> + <route edges="1/2to0/2 0/2to0/3 0/3to0/4 0/4to1/4 1/4to0/4"/> + </vehicle> + <vehicle id="car3362" depart="3362.00"> + <route edges="1/2to1/3 1/3to2/3 2/3to2/2 2/2to2/1 2/1to2/0 2/0to3/0 3/0to4/0 4/0to4/1"/> + </vehicle> + <vehicle id="car3363" depart="3363.00"> + <route edges="1/2to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to2/4 2/4to3/4 3/4to4/4 4/4to4/3"/> + </vehicle> + <vehicle id="car3364" depart="3364.00"> + <route edges="1/0to2/0 2/0to2/1 2/1to2/2 2/2to2/3 2/3to2/4 2/4to1/4"/> + </vehicle> + <vehicle id="car3365" depart="3365.00"> + <route edges="0/2to0/3 0/3to1/3 1/3to1/2 1/2to1/1 1/1to1/0"/> + </vehicle> + <vehicle id="car3366" depart="3366.00"> + <route edges="2/1to3/1 3/1to3/2 3/2to3/3 3/3to3/4 3/4to2/4 2/4to1/4 1/4to0/4"/> + </vehicle> + <vehicle id="car3367" depart="3367.00"> + <route edges="3/4to2/4 2/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to3/1"/> + </vehicle> + <vehicle id="car3368" depart="3368.00"> + <route edges="2/0to3/0 3/0to4/0 4/0to4/1 4/1to4/2 4/2to4/3 4/3to4/4"/> + </vehicle> + <vehicle id="car3369" depart="3369.00"> + <route edges="0/3to1/3 1/3to2/3 2/3to2/4"/> + </vehicle> + <vehicle id="car3370" depart="3370.00"> + <route edges="2/3to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to3/1"/> + </vehicle> + <vehicle id="car3371" depart="3371.00"> + <route edges="4/1to4/0 4/0to3/0 3/0to2/0 2/0to2/1 2/1to1/1"/> + </vehicle> + <vehicle id="car3372" depart="3372.00"> + <route edges="0/4to0/3 0/3to0/2 0/2to1/2 1/2to2/2 2/2to2/1 2/1to2/0"/> + </vehicle> + <vehicle id="car3373" depart="3373.00"> + <route edges="1/3to1/2 1/2to2/2 2/2to3/2 3/2to4/2 4/2to4/3"/> + </vehicle> + <vehicle id="car3374" depart="3374.00"> + <route edges="2/0to2/1 2/1to1/1 1/1to0/1 0/1to0/0"/> + </vehicle> + <vehicle id="car3375" depart="3375.00"> + <route edges="2/3to2/4 2/4to3/4 3/4to4/4 4/4to4/3 4/3to4/2"/> + </vehicle> + <vehicle id="car3376" depart="3376.00"> + <route edges="2/0to3/0 3/0to3/1 3/1to3/2 3/2to3/3 3/3to2/3"/> + </vehicle> + <vehicle id="car3377" depart="3377.00"> + <route edges="3/0to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to0/3"/> + </vehicle> + <vehicle id="car3378" depart="3378.00"> + <route edges="1/1to2/1 2/1to2/2 2/2to2/3"/> + </vehicle> + <vehicle id="car3379" depart="3379.00"> + <route edges="0/3to1/3 1/3to2/3 2/3to2/2"/> + </vehicle> + <vehicle id="car3380" depart="3380.00"> + <route edges="3/3to2/3 2/3to2/2 2/2to2/1 2/1to2/0 2/0to1/0"/> + </vehicle> + <vehicle id="car3381" depart="3381.00"> + <route edges="2/0to2/1 2/1to2/0 2/0to1/0 1/0to0/0 0/0to0/1"/> + </vehicle> + <vehicle id="car3382" depart="3382.00"> + <route edges="3/4to2/4 2/4to3/4 3/4to4/4 4/4to4/3 4/3to4/2 4/2to4/1 4/1to3/1"/> + </vehicle> + <vehicle id="car3383" depart="3383.00"> + <route edges="0/1to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to2/4 2/4to3/4 3/4to4/4"/> + </vehicle> + <vehicle id="car3384" depart="3384.00"> + <route edges="3/0to4/0 4/0to3/0 3/0to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to1/4"/> + </vehicle> + <vehicle id="car3385" depart="3385.00"> + <route edges="0/2to1/2 1/2to2/2"/> + </vehicle> + <vehicle id="car3386" depart="3386.00"> + <route edges="2/2to1/2 1/2to1/3 1/3to1/4"/> + </vehicle> + <vehicle id="car3387" depart="3387.00"> + <route edges="0/1to1/1 1/1to2/1 2/1to2/2 2/2to3/2 3/2to4/2"/> + </vehicle> + <vehicle id="car3388" depart="3388.00"> + <route edges="0/4to0/3 0/3to0/2 0/2to1/2 1/2to2/2 2/2to3/2 3/2to4/2"/> + </vehicle> + <vehicle id="car3389" depart="3389.00"> + <route edges="2/2to2/1 2/1to1/1 1/1to1/0"/> + </vehicle> + <vehicle id="car3390" depart="3390.00"> + <route edges="4/4to4/3 4/3to4/2 4/2to4/1 4/1to4/0 4/0to3/0 3/0to2/0 2/0to1/0 1/0to0/0 0/0to0/1"/> + </vehicle> + <vehicle id="car3391" depart="3391.00"> + <route edges="2/2to1/2 1/2to2/2 2/2to3/2 3/2to3/1 3/1to4/1"/> + </vehicle> + <vehicle id="car3392" depart="3392.00"> + <route edges="0/3to0/4 0/4to0/3 0/3to0/2 0/2to0/1 0/1to0/0 0/0to0/1"/> + </vehicle> + <vehicle id="car3393" depart="3393.00"> + <route edges="2/4to3/4 3/4to3/3 3/3to2/3 2/3to1/3 1/3to0/3 0/3to0/4"/> + </vehicle> + <vehicle id="car3394" depart="3394.00"> + <route edges="2/1to3/1 3/1to3/2 3/2to3/3 3/3to3/4 3/4to4/4"/> + </vehicle> + <vehicle id="car3395" depart="3395.00"> + <route edges="0/3to0/4 0/4to1/4 1/4to2/4 2/4to2/3 2/3to2/2 2/2to2/1 2/1to2/0 2/0to2/1"/> + </vehicle> + <vehicle id="car3396" depart="3396.00"> + <route edges="4/0to3/0 3/0to2/0 2/0to2/1 2/1to2/2 2/2to2/3 2/3to2/2"/> + </vehicle> + <vehicle id="car3397" depart="3397.00"> + <route edges="3/4to3/3 3/3to3/2 3/2to3/1 3/1to3/2"/> + </vehicle> + <vehicle id="car3398" depart="3398.00"> + <route edges="4/0to4/1 4/1to4/0 4/0to3/0 3/0to2/0"/> + </vehicle> + <vehicle id="car3399" depart="3399.00"> + <route edges="1/0to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to2/4 2/4to3/4 3/4to3/3"/> + </vehicle> + <vehicle id="car3400" depart="3400.00"> + <route edges="3/1to2/1 2/1to2/0 2/0to1/0 1/0to0/0"/> + </vehicle> + <vehicle id="car3401" depart="3401.00"> + <route edges="2/2to2/1 2/1to3/1 3/1to3/0"/> + </vehicle> + <vehicle id="car3402" depart="3402.00"> + <route edges="2/0to1/0 1/0to1/1 1/1to2/1 2/1to3/1 3/1to4/1"/> + </vehicle> + <vehicle id="car3403" depart="3403.00"> + <route edges="0/3to0/2 0/2to0/1 0/1to0/0 0/0to1/0 1/0to2/0 2/0to3/0"/> + </vehicle> + <vehicle id="car3404" depart="3404.00"> + <route edges="2/0to3/0 3/0to2/0 2/0to1/0 1/0to0/0 0/0to0/1 0/1to0/0"/> + </vehicle> + <vehicle id="car3405" depart="3405.00"> + <route edges="2/1to2/2 2/2to2/3 2/3to3/3"/> + </vehicle> + <vehicle id="car3406" depart="3406.00"> + <route edges="0/0to0/1 0/1to0/2 0/2to0/3 0/3to1/3 1/3to0/3"/> + </vehicle> + <vehicle id="car3407" depart="3407.00"> + <route edges="3/0to4/0 4/0to4/1 4/1to4/2"/> + </vehicle> + <vehicle id="car3408" depart="3408.00"> + <route edges="3/0to2/0 2/0to1/0 1/0to0/0 0/0to0/1 0/1to0/2"/> + </vehicle> + <vehicle id="car3409" depart="3409.00"> + <route edges="4/2to3/2 3/2to3/3 3/3to4/3 4/3to4/4"/> + </vehicle> + <vehicle id="car3410" depart="3410.00"> + <route edges="1/2to1/3 1/3to1/4 1/4to2/4 2/4to3/4 3/4to4/4 4/4to3/4"/> + </vehicle> + <vehicle id="car3411" depart="3411.00"> + <route edges="1/4to0/4 0/4to0/3 0/3to0/2 0/2to0/1 0/1to0/0 0/0to1/0 1/0to2/0 2/0to3/0 3/0to4/0 4/0to4/1"/> + </vehicle> + <vehicle id="car3412" depart="3412.00"> + <route edges="3/2to2/2 2/2to2/1 2/1to2/0 2/0to1/0"/> + </vehicle> + <vehicle id="car3413" depart="3413.00"> + <route edges="0/2to0/1 0/1to1/1 1/1to2/1 2/1to3/1 3/1to2/1"/> + </vehicle> + <vehicle id="car3414" depart="3414.00"> + <route edges="1/4to0/4 0/4to1/4 1/4to2/4 2/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1"/> + </vehicle> + <vehicle id="car3415" depart="3415.00"> + <route edges="1/3to2/3 2/3to3/3 3/3to3/2 3/2to3/1"/> + </vehicle> + <vehicle id="car3416" depart="3416.00"> + <route edges="3/3to3/4 3/4to3/3 3/3to2/3 2/3to2/2 2/2to1/2 1/2to1/3"/> + </vehicle> + <vehicle id="car3417" depart="3417.00"> + <route edges="3/3to3/2 3/2to2/2 2/2to1/2 1/2to1/3 1/3to0/3"/> + </vehicle> + <vehicle id="car3418" depart="3418.00"> + <route edges="2/0to1/0 1/0to1/1 1/1to2/1 2/1to2/2 2/2to3/2 3/2to4/2 4/2to4/1"/> + </vehicle> + <vehicle id="car3419" depart="3419.00"> + <route edges="3/0to4/0 4/0to4/1 4/1to4/2 4/2to4/3 4/3to4/4 4/4to3/4 3/4to2/4 2/4to1/4 1/4to2/4"/> + </vehicle> + <vehicle id="car3420" depart="3420.00"> + <route edges="2/4to1/4 1/4to2/4 2/4to3/4 3/4to4/4 4/4to4/3 4/3to4/2 4/2to4/3"/> + </vehicle> + <vehicle id="car3421" depart="3421.00"> + <route edges="3/3to3/4 3/4to3/3 3/3to2/3 2/3to1/3"/> + </vehicle> + <vehicle id="car3422" depart="3422.00"> + <route edges="4/3to4/2 4/2to3/2 3/2to2/2 2/2to1/2 1/2to1/3 1/3to2/3"/> + </vehicle> + <vehicle id="car3423" depart="3423.00"> + <route edges="0/1to0/2 0/2to1/2 1/2to1/1 1/1to1/0 1/0to2/0 2/0to3/0 3/0to4/0 4/0to4/1"/> + </vehicle> + <vehicle id="car3424" depart="3424.00"> + <route edges="0/4to1/4 1/4to1/3 1/3to1/2 1/2to0/2 0/2to1/2"/> + </vehicle> + <vehicle id="car3425" depart="3425.00"> + <route edges="0/3to0/2 0/2to1/2 1/2to2/2 2/2to3/2 3/2to4/2 4/2to4/3"/> + </vehicle> + <vehicle id="car3426" depart="3426.00"> + <route edges="4/4to3/4 3/4to2/4"/> + </vehicle> + <vehicle id="car3427" depart="3427.00"> + <route edges="3/2to3/3 3/3to3/2 3/2to2/2 2/2to2/1 2/1to1/1 1/1to1/2"/> + </vehicle> + <vehicle id="car3428" depart="3428.00"> + <route edges="4/1to4/2 4/2to4/1 4/1to4/0 4/0to3/0 3/0to2/0 2/0to1/0 1/0to0/0"/> + </vehicle> + <vehicle id="car3429" depart="3429.00"> + <route edges="4/1to4/2 4/2to4/3 4/3to3/3 3/3to2/3"/> + </vehicle> + <vehicle id="car3430" depart="3430.00"> + <route edges="2/0to3/0 3/0to2/0 2/0to1/0 1/0to0/0 0/0to0/1 0/1to0/2 0/2to0/1"/> + </vehicle> + <vehicle id="car3431" depart="3431.00"> + <route edges="2/4to3/4 3/4to3/3 3/3to2/3 2/3to1/3 1/3to0/3 0/3to0/4"/> + </vehicle> + <vehicle id="car3432" depart="3432.00"> + <route edges="4/0to3/0 3/0to2/0 2/0to1/0 1/0to0/0 0/0to0/1 0/1to0/2 0/2to0/1"/> + </vehicle> + <vehicle id="car3433" depart="3433.00"> + <route edges="1/3to1/2 1/2to1/1 1/1to2/1 2/1to3/1 3/1to4/1"/> + </vehicle> + <vehicle id="car3434" depart="3434.00"> + <route edges="1/4to2/4 2/4to3/4 3/4to4/4 4/4to4/3"/> + </vehicle> + <vehicle id="car3435" depart="3435.00"> + <route edges="2/3to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to2/0 2/0to1/0 1/0to2/0"/> + </vehicle> + <vehicle id="car3436" depart="3436.00"> + <route edges="1/2to0/2 0/2to1/2 1/2to2/2 2/2to2/1 2/1to2/0"/> + </vehicle> + <vehicle id="car3437" depart="3437.00"> + <route edges="0/4to1/4 1/4to2/4 2/4to3/4 3/4to3/3"/> + </vehicle> + <vehicle id="car3438" depart="3438.00"> + <route edges="3/4to2/4 2/4to1/4 1/4to1/3 1/3to1/2 1/2to1/1 1/1to1/0 1/0to2/0"/> + </vehicle> + <vehicle id="car3439" depart="3439.00"> + <route edges="2/4to1/4 1/4to2/4 2/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to3/1"/> + </vehicle> + <vehicle id="car3440" depart="3440.00"> + <route edges="3/1to3/0 3/0to2/0 2/0to1/0 1/0to1/1 1/1to0/1"/> + </vehicle> + <vehicle id="car3441" depart="3441.00"> + <route edges="3/4to2/4 2/4to3/4 3/4to4/4 4/4to4/3 4/3to4/2 4/2to4/1 4/1to4/2"/> + </vehicle> + <vehicle id="car3442" depart="3442.00"> + <route edges="1/4to0/4 0/4to0/3 0/3to0/2 0/2to0/1 0/1to0/0 0/0to1/0 1/0to2/0 2/0to2/1"/> + </vehicle> + <vehicle id="car3443" depart="3443.00"> + <route edges="2/3to2/2 2/2to1/2 1/2to0/2 0/2to0/1"/> + </vehicle> + <vehicle id="car3444" depart="3444.00"> + <route edges="1/0to1/1 1/1to2/1 2/1to2/2 2/2to3/2 3/2to3/3"/> + </vehicle> + <vehicle id="car3445" depart="3445.00"> + <route edges="4/2to3/2 3/2to3/1 3/1to3/0 3/0to4/0"/> + </vehicle> + <vehicle id="car3446" depart="3446.00"> + <route edges="2/2to2/1 2/1to2/2 2/2to2/3 2/3to2/4 2/4to3/4 3/4to4/4"/> + </vehicle> + <vehicle id="car3447" depart="3447.00"> + <route edges="2/3to3/3 3/3to3/2 3/2to3/1 3/1to2/1 2/1to3/1"/> + </vehicle> + <vehicle id="car3448" depart="3448.00"> + <route edges="1/4to0/4 0/4to0/3 0/3to0/2 0/2to0/1 0/1to0/0 0/0to1/0 1/0to2/0 2/0to3/0 3/0to2/0"/> + </vehicle> + <vehicle id="car3449" depart="3449.00"> + <route edges="2/3to2/4 2/4to1/4 1/4to0/4 0/4to0/3"/> + </vehicle> + <vehicle id="car3450" depart="3450.00"> + <route edges="1/4to2/4 2/4to2/3 2/3to1/3 1/3to1/2 1/2to0/2 0/2to0/1"/> + </vehicle> + <vehicle id="car3451" depart="3451.00"> + <route edges="0/2to0/3 0/3to1/3 1/3to2/3 2/3to3/3 3/3to3/4"/> + </vehicle> + <vehicle id="car3452" depart="3452.00"> + <route edges="1/2to2/2 2/2to1/2 1/2to0/2 0/2to0/3 0/3to0/4"/> + </vehicle> + <vehicle id="car3453" depart="3453.00"> + <route edges="1/1to1/2 1/2to1/3 1/3to1/4 1/4to2/4 2/4to3/4"/> + </vehicle> + <vehicle id="car3454" depart="3454.00"> + <route edges="1/3to1/4 1/4to1/3 1/3to1/2 1/2to1/1 1/1to1/0"/> + </vehicle> + <vehicle id="car3455" depart="3455.00"> + <route edges="4/3to3/3 3/3to4/3 4/3to4/2 4/2to4/1"/> + </vehicle> + <vehicle id="car3456" depart="3456.00"> + <route edges="0/2to0/1 0/1to1/1 1/1to2/1 2/1to3/1 3/1to4/1 4/1to3/1"/> + </vehicle> + <vehicle id="car3457" depart="3457.00"> + <route edges="4/3to4/4 4/4to3/4 3/4to2/4 2/4to1/4 1/4to0/4 0/4to0/3 0/3to0/2 0/2to0/1"/> + </vehicle> + <vehicle id="car3458" depart="3458.00"> + <route edges="2/4to1/4 1/4to2/4 2/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to4/0 4/0to4/1"/> + </vehicle> + <vehicle id="car3459" depart="3459.00"> + <route edges="4/2to4/3 4/3to4/2 4/2to3/2 3/2to2/2 2/2to2/3"/> + </vehicle> + <vehicle id="car3460" depart="3460.00"> + <route edges="3/1to4/1 4/1to3/1 3/1to2/1 2/1to1/1 1/1to0/1 0/1to0/2 0/2to0/3 0/3to0/2"/> + </vehicle> + <vehicle id="car3461" depart="3461.00"> + <route edges="2/1to3/1 3/1to3/2 3/2to4/2 4/2to4/1"/> + </vehicle> + <vehicle id="car3462" depart="3462.00"> + <route edges="1/2to1/1 1/1to0/1 0/1to0/0"/> + </vehicle> + <vehicle id="car3463" depart="3463.00"> + <route edges="1/3to1/4 1/4to2/4 2/4to3/4 3/4to3/3 3/3to3/2"/> + </vehicle> + <vehicle id="car3464" depart="3464.00"> + <route edges="0/4to0/3 0/3to1/3 1/3to2/3 2/3to2/2"/> + </vehicle> + <vehicle id="car3465" depart="3465.00"> + <route edges="0/1to0/0 0/0to1/0 1/0to2/0 2/0to3/0 3/0to4/0 4/0to4/1 4/1to4/2 4/2to4/3 4/3to4/4 4/4to3/4"/> + </vehicle> + <vehicle id="car3466" depart="3466.00"> + <route edges="4/3to3/3 3/3to2/3 2/3to2/4 2/4to2/3"/> + </vehicle> + <vehicle id="car3467" depart="3467.00"> + <route edges="2/4to3/4 3/4to3/3 3/3to2/3 2/3to2/2 2/2to1/2 1/2to0/2 0/2to0/3"/> + </vehicle> + <vehicle id="car3468" depart="3468.00"> + <route edges="0/1to0/0 0/0to1/0 1/0to2/0 2/0to2/1 2/1to2/2 2/2to2/3"/> + </vehicle> + <vehicle id="car3469" depart="3469.00"> + <route edges="3/1to2/1 2/1to1/1"/> + </vehicle> + <vehicle id="car3470" depart="3470.00"> + <route edges="1/3to0/3 0/3to0/2 0/2to0/1 0/1to0/0 0/0to1/0 1/0to2/0 2/0to3/0 3/0to4/0 4/0to3/0"/> + </vehicle> + <vehicle id="car3471" depart="3471.00"> + <route edges="4/3to4/4 4/4to3/4 3/4to2/4 2/4to1/4 1/4to0/4 0/4to0/3 0/3to0/2 0/2to0/1 0/1to0/0 0/0to1/0"/> + </vehicle> + <vehicle id="car3472" depart="3472.00"> + <route edges="0/1to1/1 1/1to1/2 1/2to2/2 2/2to2/3 2/3to3/3 3/3to3/2"/> + </vehicle> + <vehicle id="car3473" depart="3473.00"> + <route edges="3/4to2/4 2/4to2/3 2/3to1/3"/> + </vehicle> + <vehicle id="car3474" depart="3474.00"> + <route edges="4/0to4/1 4/1to3/1 3/1to3/2"/> + </vehicle> + <vehicle id="car3475" depart="3475.00"> + <route edges="3/2to4/2 4/2to3/2 3/2to2/2 2/2to2/3 2/3to2/4"/> + </vehicle> + <vehicle id="car3476" depart="3476.00"> + <route edges="0/1to1/1 1/1to1/2 1/2to2/2 2/2to2/3 2/3to3/3 3/3to3/2"/> + </vehicle> + <vehicle id="car3477" depart="3477.00"> + <route edges="3/1to4/1 4/1to3/1 3/1to2/1 2/1to1/1"/> + </vehicle> + <vehicle id="car3478" depart="3478.00"> + <route edges="2/1to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to0/4 0/4to0/3"/> + </vehicle> + <vehicle id="car3479" depart="3479.00"> + <route edges="2/1to2/0 2/0to3/0 3/0to4/0 4/0to4/1 4/1to4/2"/> + </vehicle> + <vehicle id="car3480" depart="3480.00"> + <route edges="4/4to3/4 3/4to2/4 2/4to1/4 1/4to1/3"/> + </vehicle> + <vehicle id="car3481" depart="3481.00"> + <route edges="2/4to2/3 2/3to2/2 2/2to2/1 2/1to1/1 1/1to1/2"/> + </vehicle> + <vehicle id="car3482" depart="3482.00"> + <route edges="4/4to4/3 4/3to4/2 4/2to4/1 4/1to4/0 4/0to3/0 3/0to2/0 2/0to1/0 1/0to0/0 0/0to1/0"/> + </vehicle> + <vehicle id="car3483" depart="3483.00"> + <route edges="1/0to1/1 1/1to0/1 0/1to0/2"/> + </vehicle> + <vehicle id="car3484" depart="3484.00"> + <route edges="1/3to2/3 2/3to3/3 3/3to3/2 3/2to3/1 3/1to2/1"/> + </vehicle> + <vehicle id="car3485" depart="3485.00"> + <route edges="2/4to3/4 3/4to3/3 3/3to2/3 2/3to2/2 2/2to1/2"/> + </vehicle> + <vehicle id="car3486" depart="3486.00"> + <route edges="1/4to0/4 0/4to1/4 1/4to2/4 2/4to3/4 3/4to4/4 4/4to4/3 4/3to4/2 4/2to4/1"/> + </vehicle> + <vehicle id="car3487" depart="3487.00"> + <route edges="1/1to1/0 1/0to1/1 1/1to2/1 2/1to2/2 2/2to3/2 3/2to3/1"/> + </vehicle> + <vehicle id="car3488" depart="3488.00"> + <route edges="2/3to1/3 1/3to1/2 1/2to1/1"/> + </vehicle> + <vehicle id="car3489" depart="3489.00"> + <route edges="3/1to4/1 4/1to3/1 3/1to2/1 2/1to2/2 2/2to2/3"/> + </vehicle> + <vehicle id="car3490" depart="3490.00"> + <route edges="0/1to1/1 1/1to2/1 2/1to2/2 2/2to3/2 3/2to4/2 4/2to3/2"/> + </vehicle> + <vehicle id="car3491" depart="3491.00"> + <route edges="3/2to2/2 2/2to3/2 3/2to3/1 3/1to3/0 3/0to2/0"/> + </vehicle> + <vehicle id="car3492" depart="3492.00"> + <route edges="0/3to1/3 1/3to1/4 1/4to2/4 2/4to3/4 3/4to4/4 4/4to3/4"/> + </vehicle> + <vehicle id="car3493" depart="3493.00"> + <route edges="1/1to1/2 1/2to2/2 2/2to3/2 3/2to4/2"/> + </vehicle> + <vehicle id="car3494" depart="3494.00"> + <route edges="1/1to0/1 0/1to0/2 0/2to0/3 0/3to0/4 0/4to1/4 1/4to1/3"/> + </vehicle> + <vehicle id="car3495" depart="3495.00"> + <route edges="3/4to3/3 3/3to2/3 2/3to2/4 2/4to1/4 1/4to0/4 0/4to0/3"/> + </vehicle> + <vehicle id="car3496" depart="3496.00"> + <route edges="4/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to4/1"/> + </vehicle> + <vehicle id="car3497" depart="3497.00"> + <route edges="3/0to4/0 4/0to3/0 3/0to2/0 2/0to2/1 2/1to2/2"/> + </vehicle> + <vehicle id="car3498" depart="3498.00"> + <route edges="0/3to0/4 0/4to1/4 1/4to2/4 2/4to2/3 2/3to2/2 2/2to2/1"/> + </vehicle> + <vehicle id="car3499" depart="3499.00"> + <route edges="0/1to0/0 0/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3"/> + </vehicle> + <vehicle id="car3500" depart="3500.00"> + <route edges="1/4to2/4 2/4to3/4 3/4to4/4"/> + </vehicle> + <vehicle id="car3501" depart="3501.00"> + <route edges="2/4to3/4 3/4to3/3 3/3to3/2 3/2to2/2 2/2to2/1"/> + </vehicle> + <vehicle id="car3502" depart="3502.00"> + <route edges="4/1to3/1 3/1to3/2 3/2to3/3 3/3to3/4 3/4to2/4 2/4to1/4 1/4to2/4"/> + </vehicle> + <vehicle id="car3503" depart="3503.00"> + <route edges="0/1to1/1 1/1to1/2 1/2to1/3 1/3to0/3"/> + </vehicle> + <vehicle id="car3504" depart="3504.00"> + <route edges="0/1to0/0 0/0to0/1 0/1to0/2 0/2to0/3 0/3to0/4 0/4to1/4 1/4to2/4 2/4to3/4"/> + </vehicle> + <vehicle id="car3505" depart="3505.00"> + <route edges="4/2to3/2 3/2to3/3 3/3to3/4 3/4to2/4"/> + </vehicle> + <vehicle id="car3506" depart="3506.00"> + <route edges="1/3to2/3 2/3to2/4 2/4to3/4 3/4to4/4"/> + </vehicle> + <vehicle id="car3507" depart="3507.00"> + <route edges="4/3to3/3 3/3to3/2 3/2to3/1 3/1to2/1 2/1to3/1"/> + </vehicle> + <vehicle id="car3508" depart="3508.00"> + <route edges="2/2to3/2 3/2to3/1 3/1to3/0 3/0to2/0 2/0to1/0 1/0to0/0"/> + </vehicle> + <vehicle id="car3509" depart="3509.00"> + <route edges="1/4to2/4 2/4to3/4 3/4to3/3 3/3to3/2 3/2to4/2"/> + </vehicle> + <vehicle id="car3510" depart="3510.00"> + <route edges="4/2to4/1 4/1to3/1 3/1to2/1 2/1to1/1 1/1to0/1 0/1to0/2 0/2to0/3 0/3to1/3"/> + </vehicle> + <vehicle id="car3511" depart="3511.00"> + <route edges="0/0to1/0 1/0to2/0 2/0to3/0 3/0to3/1 3/1to3/2 3/2to3/3 3/3to4/3"/> + </vehicle> + <vehicle id="car3512" depart="3512.00"> + <route edges="4/3to4/2 4/2to3/2 3/2to2/2 2/2to1/2 1/2to0/2 0/2to0/3"/> + </vehicle> + <vehicle id="car3513" depart="3513.00"> + <route edges="1/3to2/3 2/3to2/2 2/2to2/1 2/1to2/0 2/0to1/0"/> + </vehicle> + <vehicle id="car3514" depart="3514.00"> + <route edges="3/0to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to0/4"/> + </vehicle> + <vehicle id="car3515" depart="3515.00"> + <route edges="3/1to2/1 2/1to2/2 2/2to2/3 2/3to3/3 3/3to3/4"/> + </vehicle> + <vehicle id="car3516" depart="3516.00"> + <route edges="0/3to0/4 0/4to1/4 1/4to2/4 2/4to2/3 2/3to3/3"/> + </vehicle> + <vehicle id="car3517" depart="3517.00"> + <route edges="1/3to1/2 1/2to1/1"/> + </vehicle> + <vehicle id="car3518" depart="3518.00"> + <route edges="1/0to1/1 1/1to2/1 2/1to3/1"/> + </vehicle> + <vehicle id="car3519" depart="3519.00"> + <route edges="4/3to4/4 4/4to3/4 3/4to2/4 2/4to2/3 2/3to2/2 2/2to1/2"/> + </vehicle> + <vehicle id="car3520" depart="3520.00"> + <route edges="4/0to3/0 3/0to2/0 2/0to1/0 1/0to1/1 1/1to1/0"/> + </vehicle> + <vehicle id="car3521" depart="3521.00"> + <route edges="0/1to1/1 1/1to1/2 1/2to2/2 2/2to2/3 2/3to3/3 3/3to4/3 4/3to3/3"/> + </vehicle> + <vehicle id="car3522" depart="3522.00"> + <route edges="1/2to1/3 1/3to1/4 1/4to2/4 2/4to3/4"/> + </vehicle> + <vehicle id="car3523" depart="3523.00"> + <route edges="1/3to1/2 1/2to0/2 0/2to0/1"/> + </vehicle> + <vehicle id="car3524" depart="3524.00"> + <route edges="1/0to1/1 1/1to2/1 2/1to2/2 2/2to2/3 2/3to3/3 3/3to3/2"/> + </vehicle> + <vehicle id="car3525" depart="3525.00"> + <route edges="1/2to1/3 1/3to2/3 2/3to3/3 3/3to4/3 4/3to4/2 4/2to4/1 4/1to3/1"/> + </vehicle> + <vehicle id="car3526" depart="3526.00"> + <route edges="0/3to1/3 1/3to2/3 2/3to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to3/1"/> + </vehicle> + <vehicle id="car3527" depart="3527.00"> + <route edges="0/4to0/3 0/3to0/2 0/2to0/1 0/1to0/0 0/0to1/0 1/0to2/0 2/0to3/0 3/0to2/0"/> + </vehicle> + <vehicle id="car3528" depart="3528.00"> + <route edges="0/1to0/2 0/2to0/3 0/3to0/4"/> + </vehicle> + <vehicle id="car3529" depart="3529.00"> + <route edges="0/1to0/2 0/2to1/2 1/2to2/2 2/2to3/2 3/2to3/1 3/1to3/2"/> + </vehicle> + <vehicle id="car3530" depart="3530.00"> + <route edges="4/0to4/1 4/1to4/2 4/2to4/3 4/3to4/4 4/4to3/4 3/4to2/4 2/4to1/4"/> + </vehicle> + <vehicle id="car3531" depart="3531.00"> + <route edges="0/1to0/2 0/2to1/2 1/2to2/2 2/2to3/2 3/2to3/1"/> + </vehicle> + <vehicle id="car3532" depart="3532.00"> + <route edges="0/1to1/1 1/1to2/1 2/1to2/2 2/2to3/2 3/2to3/1"/> + </vehicle> + <vehicle id="car3533" depart="3533.00"> + <route edges="1/4to0/4 0/4to1/4 1/4to2/4 2/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1"/> + </vehicle> + <vehicle id="car3534" depart="3534.00"> + <route edges="0/2to0/3 0/3to1/3 1/3to2/3 2/3to2/2 2/2to2/1 2/1to2/0"/> + </vehicle> + <vehicle id="car3535" depart="3535.00"> + <route edges="3/4to3/3 3/3to2/3 2/3to2/2 2/2to2/1 2/1to2/0 2/0to3/0"/> + </vehicle> + <vehicle id="car3536" depart="3536.00"> + <route edges="3/3to4/3 4/3to3/3 3/3to2/3 2/3to1/3 1/3to1/4"/> + </vehicle> + <vehicle id="car3537" depart="3537.00"> + <route edges="2/1to3/1 3/1to3/2 3/2to4/2 4/2to4/3 4/3to4/4"/> + </vehicle> + <vehicle id="car3538" depart="3538.00"> + <route edges="3/0to2/0 2/0to1/0 1/0to0/0 0/0to0/1 0/1to0/2 0/2to0/3 0/3to0/4 0/4to1/4"/> + </vehicle> + <vehicle id="car3539" depart="3539.00"> + <route edges="0/1to0/2 0/2to1/2 1/2to2/2 2/2to3/2 3/2to4/2 4/2to4/3"/> + </vehicle> + <vehicle id="car3540" depart="3540.00"> + <route edges="4/2to3/2 3/2to2/2 2/2to2/1 2/1to1/1 1/1to0/1 0/1to0/0"/> + </vehicle> + <vehicle id="car3541" depart="3541.00"> + <route edges="2/2to2/3 2/3to3/3 3/3to3/4"/> + </vehicle> + <vehicle id="car3542" depart="3542.00"> + <route edges="2/2to2/3 2/3to2/4 2/4to1/4"/> + </vehicle> + <vehicle id="car3543" depart="3543.00"> + <route edges="1/3to2/3 2/3to2/2 2/2to2/1 2/1to1/1 1/1to1/0"/> + </vehicle> + <vehicle id="car3544" depart="3544.00"> + <route edges="3/4to4/4 4/4to3/4 3/4to2/4 2/4to1/4 1/4to0/4 0/4to0/3 0/3to0/2 0/2to0/1 0/1to0/0"/> + </vehicle> + <vehicle id="car3545" depart="3545.00"> + <route edges="3/2to3/3 3/3to3/4 3/4to2/4 2/4to1/4 1/4to2/4"/> + </vehicle> + <vehicle id="car3546" depart="3546.00"> + <route edges="4/4to4/3 4/3to3/3 3/3to3/2 3/2to2/2 2/2to1/2 1/2to0/2 0/2to0/3"/> + </vehicle> + <vehicle id="car3547" depart="3547.00"> + <route edges="0/2to0/3 0/3to1/3 1/3to2/3 2/3to3/3 3/3to4/3 4/3to4/2 4/2to4/3"/> + </vehicle> + <vehicle id="car3548" depart="3548.00"> + <route edges="1/1to1/0 1/0to1/1 1/1to1/2 1/2to2/2 2/2to2/3"/> + </vehicle> + <vehicle id="car3549" depart="3549.00"> + <route edges="2/0to3/0 3/0to3/1 3/1to3/2 3/2to3/3"/> + </vehicle> + <vehicle id="car3550" depart="3550.00"> + <route edges="4/0to3/0 3/0to2/0 2/0to2/1 2/1to2/2 2/2to2/3 2/3to1/3"/> + </vehicle> + <vehicle id="car3551" depart="3551.00"> + <route edges="0/1to1/1 1/1to2/1 2/1to3/1"/> + </vehicle> + <vehicle id="car3552" depart="3552.00"> + <route edges="2/2to3/2 3/2to3/1 3/1to2/1 2/1to2/0"/> + </vehicle> + <vehicle id="car3553" depart="3553.00"> + <route edges="1/2to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to2/4 2/4to3/4 3/4to4/4"/> + </vehicle> + <vehicle id="car3554" depart="3554.00"> + <route edges="1/1to2/1 2/1to2/2 2/2to2/3 2/3to3/3 3/3to3/2"/> + </vehicle> + <vehicle id="car3555" depart="3555.00"> + <route edges="1/4to0/4 0/4to1/4 1/4to2/4 2/4to2/3 2/3to2/2 2/2to2/1 2/1to2/2"/> + </vehicle> + <vehicle id="car3556" depart="3556.00"> + <route edges="3/2to4/2 4/2to3/2 3/2to2/2 2/2to1/2 1/2to0/2 0/2to0/3 0/3to0/4"/> + </vehicle> + <vehicle id="car3557" depart="3557.00"> + <route edges="1/1to2/1 2/1to2/2 2/2to3/2 3/2to3/3"/> + </vehicle> + <vehicle id="car3558" depart="3558.00"> + <route edges="4/1to4/0 4/0to3/0 3/0to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to0/4"/> + </vehicle> + <vehicle id="car3559" depart="3559.00"> + <route edges="4/2to4/1 4/1to3/1 3/1to2/1"/> + </vehicle> + <vehicle id="car3560" depart="3560.00"> + <route edges="2/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to2/1 2/1to2/0"/> + </vehicle> + <vehicle id="car3561" depart="3561.00"> + <route edges="2/0to3/0 3/0to2/0 2/0to2/1 2/1to2/2 2/2to2/3 2/3to3/3"/> + </vehicle> + <vehicle id="car3562" depart="3562.00"> + <route edges="3/4to4/4 4/4to4/3 4/3to3/3 3/3to2/3 2/3to1/3 1/3to0/3 0/3to1/3"/> + </vehicle> + <vehicle id="car3563" depart="3563.00"> + <route edges="2/0to2/1 2/1to2/2 2/2to2/3 2/3to2/4 2/4to1/4"/> + </vehicle> + <vehicle id="car3564" depart="3564.00"> + <route edges="0/4to0/3 0/3to1/3 1/3to1/2 1/2to0/2"/> + </vehicle> + <vehicle id="car3565" depart="3565.00"> + <route edges="0/2to0/3 0/3to1/3 1/3to1/2 1/2to1/1 1/1to1/0 1/0to2/0 2/0to3/0"/> + </vehicle> + <vehicle id="car3566" depart="3566.00"> + <route edges="4/4to3/4 3/4to2/4 2/4to1/4"/> + </vehicle> + <vehicle id="car3567" depart="3567.00"> + <route edges="3/0to3/1 3/1to3/2 3/2to3/3 3/3to3/2"/> + </vehicle> + <vehicle id="car3568" depart="3568.00"> + <route edges="0/0to1/0 1/0to0/0 0/0to0/1 0/1to0/2 0/2to0/3 0/3to0/4"/> + </vehicle> + <vehicle id="car3569" depart="3569.00"> + <route edges="1/2to1/1 1/1to1/2 1/2to1/3 1/3to2/3 2/3to2/4"/> + </vehicle> + <vehicle id="car3570" depart="3570.00"> + <route edges="0/3to1/3 1/3to1/2 1/2to1/1 1/1to0/1 0/1to0/0"/> + </vehicle> + <vehicle id="car3571" depart="3571.00"> + <route edges="2/1to1/1 1/1to2/1 2/1to3/1 3/1to4/1"/> + </vehicle> + <vehicle id="car3572" depart="3572.00"> + <route edges="4/4to4/3 4/3to3/3 3/3to2/3 2/3to1/3 1/3to0/3 0/3to1/3"/> + </vehicle> + <vehicle id="car3573" depart="3573.00"> + <route edges="4/2to3/2 3/2to3/3 3/3to3/4 3/4to2/4 2/4to1/4 1/4to0/4"/> + </vehicle> + <vehicle id="car3574" depart="3574.00"> + <route edges="2/0to2/1 2/1to2/2 2/2to2/3 2/3to2/4"/> + </vehicle> + <vehicle id="car3575" depart="3575.00"> + <route edges="3/2to2/2 2/2to1/2 1/2to0/2 0/2to0/3 0/3to0/4"/> + </vehicle> + <vehicle id="car3576" depart="3576.00"> + <route edges="2/4to2/3 2/3to2/2 2/2to2/1 2/1to2/0 2/0to3/0 3/0to2/0"/> + </vehicle> + <vehicle id="car3577" depart="3577.00"> + <route edges="4/4to4/3 4/3to3/3 3/3to3/2 3/2to2/2 2/2to2/1 2/1to1/1 1/1to0/1 0/1to0/2"/> + </vehicle> + <vehicle id="car3578" depart="3578.00"> + <route edges="3/2to4/2 4/2to4/3 4/3to4/4 4/4to3/4 3/4to2/4 2/4to1/4 1/4to0/4"/> + </vehicle> + <vehicle id="car3579" depart="3579.00"> + <route edges="2/1to2/0 2/0to2/1 2/1to2/2 2/2to2/3 2/3to2/4 2/4to3/4 3/4to4/4"/> + </vehicle> + <vehicle id="car3580" depart="3580.00"> + <route edges="0/3to1/3 1/3to1/2 1/2to1/1 1/1to1/0 1/0to1/1"/> + </vehicle> + <vehicle id="car3581" depart="3581.00"> + <route edges="3/3to3/2 3/2to4/2 4/2to4/1"/> + </vehicle> + <vehicle id="car3582" depart="3582.00"> + <route edges="4/2to4/3 4/3to4/2 4/2to3/2 3/2to2/2 2/2to1/2 1/2to0/2 0/2to0/3"/> + </vehicle> + <vehicle id="car3583" depart="3583.00"> + <route edges="4/1to4/2 4/2to4/3 4/3to4/4 4/4to3/4 3/4to2/4 2/4to2/3"/> + </vehicle> + <vehicle id="car3584" depart="3584.00"> + <route edges="1/4to1/3 1/3to1/2 1/2to1/1 1/1to1/0 1/0to2/0 2/0to3/0 3/0to4/0"/> + </vehicle> + <vehicle id="car3585" depart="3585.00"> + <route edges="1/4to2/4 2/4to2/3 2/3to2/2 2/2to2/1 2/1to2/0"/> + </vehicle> + <vehicle id="car3586" depart="3586.00"> + <route edges="4/3to3/3 3/3to2/3 2/3to2/2 2/2to1/2 1/2to0/2 0/2to1/2"/> + </vehicle> + <vehicle id="car3587" depart="3587.00"> + <route edges="2/3to3/3 3/3to4/3 4/3to4/2 4/2to4/1 4/1to4/2"/> + </vehicle> + <vehicle id="car3588" depart="3588.00"> + <route edges="2/4to1/4 1/4to2/4 2/4to3/4 3/4to4/4 4/4to4/3 4/3to4/2 4/2to4/1 4/1to4/0 4/0to3/0"/> + </vehicle> + <vehicle id="car3589" depart="3589.00"> + <route edges="1/3to1/2 1/2to1/1 1/1to1/0 1/0to1/1"/> + </vehicle> + <vehicle id="car3590" depart="3590.00"> + <route edges="0/4to0/3 0/3to0/4 0/4to1/4 1/4to2/4 2/4to3/4 3/4to3/3"/> + </vehicle> + <vehicle id="car3591" depart="3591.00"> + <route edges="1/1to0/1 0/1to1/1 1/1to1/2 1/2to2/2 2/2to3/2"/> + </vehicle> + <vehicle id="car3592" depart="3592.00"> + <route edges="2/4to1/4 1/4to2/4 2/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to2/0"/> + </vehicle> + <vehicle id="car3593" depart="3593.00"> + <route edges="0/3to0/4 0/4to1/4 1/4to1/3 1/3to1/2 1/2to1/1"/> + </vehicle> + <vehicle id="car3594" depart="3594.00"> + <route edges="2/1to2/0 2/0to2/1 2/1to3/1 3/1to4/1 4/1to4/0"/> + </vehicle> + <vehicle id="car3595" depart="3595.00"> + <route edges="1/2to2/2 2/2to3/2 3/2to4/2 4/2to4/1"/> + </vehicle> + <vehicle id="car3596" depart="3596.00"> + <route edges="4/4to4/3 4/3to3/3 3/3to2/3"/> + </vehicle> + <vehicle id="car3597" depart="3597.00"> + <route edges="4/2to4/1 4/1to3/1 3/1to3/0"/> + </vehicle> + <vehicle id="car3598" depart="3598.00"> + <route edges="0/4to0/3 0/3to0/2 0/2to1/2 1/2to1/1 1/1to0/1"/> + </vehicle> + <vehicle id="car3599" depart="3599.00"> + <route edges="4/0to3/0 3/0to3/1 3/1to3/2 3/2to3/3 3/3to2/3"/> + </vehicle> +</routes> diff --git a/results/inet-#0.sca b/results/inet-#0.sca new file mode 100644 index 0000000000000000000000000000000000000000..5a4253749d1f83848d11d696390f062c013d3fb1 --- /dev/null +++ b/results/inet-#0.sca @@ -0,0 +1,710 @@ +version 2 +run inet-0-20220411-12:10:47-18595 +attr configname inet +attr datetime 20220411-12:10:47 +attr experiment inet +attr inifile omnetpp.ini +attr iterationvars "" +attr iterationvarsf "" +attr measurement "" +attr network artery.inet.World +attr processid 18595 +attr repetition 0 +attr replication #0 +attr resultdir results +attr runnumber 0 +attr seedset 0 +param *.node[*].wlan[*].typename "\"VanetNic\"" +param *.node[*].wlan[*].radio.channelNumber 180 +param *.node[*].wlan[*].radio.carrierFrequency "5.9 GHz" +param *.node[*].wlan[*].radio.transmitter.power "10 mW" +param *.node[*].middleware.updateInterval 0.3s +param *.node[*].middleware.datetime "\"2013-06-01 12:35:00\"" +param *.node[*].middleware.services "xmldoc(\"services.xml\")" +param *.traci.core.version -1 +param *.traci.launcher.typename "\"PosixLauncher\"" +param *.traci.launcher.sumocfg "\"grid.sumo.cfg\"" +param *.node[*].middleware.updateInterval 0.3s +param *.node[*].middleware.datetime "\"2018-03-19 10:00:00\"" +param *.node[*].middleware.services "xmldoc(\"services.xml\")" +param *.traci.launcher.sumo "\"sumo-gui\"" + +scalar World.traci.launcher port 44521 +scalar World.node[4].wlan[0].mac.rx ChannelLoad:timeavg 0.0013324041811847 +scalar World.node[4].wlan[0].mac rcvdPkFromLL:count 240 +attr interpolationmode none +attr source packetReceivedFromLower +attr title "packets received from lower layer, count" +scalar World.node[4].wlan[0].mac rcvdPkFromLL:sum(packetBytes) 19680 +attr interpolationmode none +attr source packetReceivedFromLower +attr title "packets received from lower layer, sum(packetBytes)" +scalar World.node[4].wlan[0].mac sentDownPk:count 95 +attr interpolationmode none +attr source packetSentToLower +attr title "packets sent to lower layer, count" +scalar World.node[4].wlan[0].mac sentDownPk:sum(packetBytes) 7790 +attr interpolationmode none +attr source packetSentToLower +attr title "packets sent to lower layer, sum(packetBytes)" +scalar World.node[4].wlan[0].mac rcvdPkFromHL:count 95 +attr interpolationmode none +attr source packetReceivedFromUpper +attr title "packets received from higher layer, count" +scalar World.node[4].wlan[0].mac rcvdPkFromHL:sum(packetBytes) 7790 +attr interpolationmode none +attr source packetReceivedFromUpper +attr title "packets received from higher layer, sum(packetBytes)" +scalar World.node[4].wlan[0].mac passedUpPk:count 240 +attr interpolationmode none +attr source packetSentToUpper +attr title "packets passed to higher layer, count" +scalar World.node[4].wlan[0].mac passedUpPk:sum(packetBytes) 19680 +attr interpolationmode none +attr source packetSentToUpper +attr title "packets passed to higher layer, sum(packetBytes)" +statistic World.node[4].wlan[0].radio radioChannel:histogram +field count 1 +field mean 180 +field stddev -nan +field min 180 +field max 180 +field sum 180 +field sqrsum 32400 +attr interpolationmode sample-hold +attr source radioChannelChanged +attr title "Radio channel, histogram" +bin -inf 0 +bin 179 0 +bin 180 1 +bin 181 0 +scalar World.node[4].wlan[0].radio transmissionState:count 380 +attr interpolationmode sample-hold +attr source transmissionStateChanged +attr title "Radio transmission state, count" +scalar World.node[4].wlan[0].radio receptionState:count 673 +attr interpolationmode sample-hold +attr source receptionStateChanged +attr title "Radio reception state, count" +scalar World.node[4].wlan[0].radio radioMode:count 192 +attr interpolationmode sample-hold +attr source radioModeChanged +attr title "Radio mode, count" +statistic World.node[4].wlan[0].radio symbolErrorRate:histogram +field count 0 +field mean -nan +field stddev -nan +field min -nan +field max -nan +field sum 0 +field sqrsum 0 +attr source symbolErrorRate +attr title "Symbol error rate, histogram" +bin -inf 0 +bin 0 0 +bin 1 0 +statistic World.node[4].wlan[0].radio bitErrorRate:histogram +field count 0 +field mean -nan +field stddev -nan +field min -nan +field max -nan +field sum 0 +field sqrsum 0 +attr source bitErrorRate +attr title "Bit error rate, histogram" +bin -inf 0 +bin 0 0 +bin 1 0 +statistic World.node[4].wlan[0].radio packetErrorRate:histogram +field count 240 +field mean 0 +field stddev 0 +field min 0 +field max 0 +field sum 0 +field sqrsum 0 +attr source packetErrorRate +attr title "Packet error rate, histogram" +bin -inf 0 +bin -0.5 0 +bin -0.48 0 +bin -0.46 0 +bin -0.44 0 +bin -0.42 0 +bin -0.4 0 +bin -0.38 0 +bin -0.36 0 +bin -0.34 0 +bin -0.32 0 +bin -0.3 0 +bin -0.28 0 +bin -0.26 0 +bin -0.24 0 +bin -0.22 0 +bin -0.2 0 +bin -0.18 0 +bin -0.16 0 +bin -0.14 0 +bin -0.12 0 +bin -0.1 0 +bin -0.08 0 +bin -0.06 0 +bin -0.04 0 +bin -0.02 0 +bin 0 240 +bin 0.02 0 +bin 0.04 0 +bin 0.06 0 +bin 0.08 0 +bin 0.1 0 +bin 0.12 0 +bin 0.14 0 +bin 0.16 0 +bin 0.18 0 +bin 0.2 0 +bin 0.22 0 +bin 0.24 0 +bin 0.26 0 +bin 0.28 0 +bin 0.3 0 +bin 0.32 0 +bin 0.34 0 +bin 0.36 0 +bin 0.38 0 +bin 0.4 0 +bin 0.42 0 +bin 0.44 0 +bin 0.46 0 +bin 0.48 0 +bin 0.5 0 +statistic World.node[4].wlan[0].radio minSNIR:histogram +field count 240 +field mean 1838.68534352 +field stddev 2683.8880728656 +field min 317.68010108631 +field max 19610.732218122 +field sum 441284.4824448 +field sqrsum 2532961300.0473 +attr source minSNIR +attr title "Min SNIR, histogram" +bin -inf 0 +bin 0 29 +bin 400 106 +bin 800 7 +bin 1200 10 +bin 1600 34 +bin 2000 4 +bin 2400 6 +bin 2800 10 +bin 3200 5 +bin 3600 2 +bin 4000 3 +bin 4400 2 +bin 4800 1 +bin 5200 2 +bin 5600 1 +bin 6000 1 +bin 6400 1 +bin 6800 1 +bin 7200 1 +bin 7600 2 +bin 8000 1 +bin 8400 1 +bin 8800 0 +bin 9200 2 +bin 9600 0 +bin 10000 0 +bin 10400 2 +bin 10800 0 +bin 11200 1 +bin 11600 2 +bin 12000 2 +bin 12400 0 +bin 12800 0 +bin 13200 0 +bin 13600 0 +bin 14000 0 +bin 14400 0 +bin 14800 0 +bin 15200 0 +bin 15600 0 +bin 16000 0 +bin 16400 0 +bin 16800 0 +bin 17200 0 +bin 17600 0 +bin 18000 0 +bin 18400 0 +bin 18800 0 +bin 19200 0 +bin 19600 1 +bin 20000 0 +scalar World.node[0].wlan[0].mac.rx ChannelLoad:timeavg 0.0016594911937378 +scalar World.node[0].wlan[0].mac rcvdPkFromLL:count 528 +attr interpolationmode none +attr source packetReceivedFromLower +attr title "packets received from lower layer, count" +scalar World.node[0].wlan[0].mac rcvdPkFromLL:sum(packetBytes) 43296 +attr interpolationmode none +attr source packetReceivedFromLower +attr title "packets received from lower layer, sum(packetBytes)" +scalar World.node[0].wlan[0].mac sentDownPk:count 169 +attr interpolationmode none +attr source packetSentToLower +attr title "packets sent to lower layer, count" +scalar World.node[0].wlan[0].mac sentDownPk:sum(packetBytes) 13858 +attr interpolationmode none +attr source packetSentToLower +attr title "packets sent to lower layer, sum(packetBytes)" +scalar World.node[0].wlan[0].mac rcvdPkFromHL:count 169 +attr interpolationmode none +attr source packetReceivedFromUpper +attr title "packets received from higher layer, count" +scalar World.node[0].wlan[0].mac rcvdPkFromHL:sum(packetBytes) 13858 +attr interpolationmode none +attr source packetReceivedFromUpper +attr title "packets received from higher layer, sum(packetBytes)" +scalar World.node[0].wlan[0].mac passedUpPk:count 528 +attr interpolationmode none +attr source packetSentToUpper +attr title "packets passed to higher layer, count" +scalar World.node[0].wlan[0].mac passedUpPk:sum(packetBytes) 43296 +attr interpolationmode none +attr source packetSentToUpper +attr title "packets passed to higher layer, sum(packetBytes)" +statistic World.node[0].wlan[0].radio radioChannel:histogram +field count 1 +field mean 180 +field stddev -nan +field min 180 +field max 180 +field sum 180 +field sqrsum 32400 +attr interpolationmode sample-hold +attr source radioChannelChanged +attr title "Radio channel, histogram" +bin -inf 0 +bin 179 0 +bin 180 1 +bin 181 0 +scalar World.node[0].wlan[0].radio transmissionState:count 676 +attr interpolationmode sample-hold +attr source transmissionStateChanged +attr title "Radio transmission state, count" +scalar World.node[0].wlan[0].radio receptionState:count 1399 +attr interpolationmode sample-hold +attr source receptionStateChanged +attr title "Radio reception state, count" +scalar World.node[0].wlan[0].radio radioMode:count 340 +attr interpolationmode sample-hold +attr source radioModeChanged +attr title "Radio mode, count" +statistic World.node[0].wlan[0].radio symbolErrorRate:histogram +field count 0 +field mean -nan +field stddev -nan +field min -nan +field max -nan +field sum 0 +field sqrsum 0 +attr source symbolErrorRate +attr title "Symbol error rate, histogram" +bin -inf 0 +bin 0 0 +bin 1 0 +statistic World.node[0].wlan[0].radio bitErrorRate:histogram +field count 0 +field mean -nan +field stddev -nan +field min -nan +field max -nan +field sum 0 +field sqrsum 0 +attr source bitErrorRate +attr title "Bit error rate, histogram" +bin -inf 0 +bin 0 0 +bin 1 0 +statistic World.node[0].wlan[0].radio packetErrorRate:histogram +field count 528 +field mean 0 +field stddev 0 +field min 0 +field max 0 +field sum 0 +field sqrsum 0 +attr source packetErrorRate +attr title "Packet error rate, histogram" +bin -inf 0 +bin -0.5 0 +bin -0.48 0 +bin -0.46 0 +bin -0.44 0 +bin -0.42 0 +bin -0.4 0 +bin -0.38 0 +bin -0.36 0 +bin -0.34 0 +bin -0.32 0 +bin -0.3 0 +bin -0.28 0 +bin -0.26 0 +bin -0.24 0 +bin -0.22 0 +bin -0.2 0 +bin -0.18 0 +bin -0.16 0 +bin -0.14 0 +bin -0.12 0 +bin -0.1 0 +bin -0.08 0 +bin -0.06 0 +bin -0.04 0 +bin -0.02 0 +bin 0 528 +bin 0.02 0 +bin 0.04 0 +bin 0.06 0 +bin 0.08 0 +bin 0.1 0 +bin 0.12 0 +bin 0.14 0 +bin 0.16 0 +bin 0.18 0 +bin 0.2 0 +bin 0.22 0 +bin 0.24 0 +bin 0.26 0 +bin 0.28 0 +bin 0.3 0 +bin 0.32 0 +bin 0.34 0 +bin 0.36 0 +bin 0.38 0 +bin 0.4 0 +bin 0.42 0 +bin 0.44 0 +bin 0.46 0 +bin 0.48 0 +bin 0.5 0 +statistic World.node[0].wlan[0].radio minSNIR:histogram +field count 528 +field mean 13515.109445646 +field stddev 104070.26177398 +field min 318.27367871433 +field max 1589232.449497 +field sum 7135977.7873012 +field sqrsum 5804179937063 +attr source minSNIR +attr title "Min SNIR, histogram" +bin -inf 0 +bin 0 503 +bin 20000 8 +bin 40000 3 +bin 60000 2 +bin 80000 2 +bin 100000 0 +bin 120000 1 +bin 140000 1 +bin 160000 1 +bin 180000 0 +bin 200000 1 +bin 220000 0 +bin 240000 0 +bin 260000 0 +bin 280000 0 +bin 300000 0 +bin 320000 0 +bin 340000 1 +bin 360000 0 +bin 380000 0 +bin 400000 0 +bin 420000 0 +bin 440000 0 +bin 460000 1 +bin 480000 0 +bin 500000 0 +bin 520000 0 +bin 540000 1 +bin 560000 0 +bin 580000 0 +bin 600000 0 +bin 620000 0 +bin 640000 0 +bin 660000 0 +bin 680000 0 +bin 700000 0 +bin 720000 0 +bin 740000 1 +bin 760000 0 +bin 780000 0 +bin 800000 0 +bin 820000 0 +bin 840000 0 +bin 860000 0 +bin 880000 0 +bin 900000 0 +bin 920000 0 +bin 940000 0 +bin 960000 0 +bin 980000 0 +bin 1000000 0 +bin 1020000 0 +bin 1040000 0 +bin 1060000 0 +bin 1080000 0 +bin 1100000 0 +bin 1120000 0 +bin 1140000 0 +bin 1160000 0 +bin 1180000 0 +bin 1200000 0 +bin 1220000 0 +bin 1240000 0 +bin 1260000 0 +bin 1280000 0 +bin 1300000 0 +bin 1320000 0 +bin 1340000 0 +bin 1360000 0 +bin 1380000 1 +bin 1400000 0 +bin 1420000 0 +bin 1440000 0 +bin 1460000 0 +bin 1480000 0 +bin 1500000 0 +bin 1520000 0 +bin 1540000 0 +bin 1560000 0 +bin 1580000 1 +bin 1600000 0 +bin 1620000 0 +bin 1640000 0 +bin 1660000 0 +bin 1680000 0 +bin 1700000 0 +bin 1720000 0 +bin 1740000 0 +scalar World.node[3].wlan[0].mac.rx ChannelLoad:timeavg 0.0016244741873805 +scalar World.node[3].wlan[0].mac rcvdPkFromLL:count 528 +attr interpolationmode none +attr source packetReceivedFromLower +attr title "packets received from lower layer, count" +scalar World.node[3].wlan[0].mac rcvdPkFromLL:sum(packetBytes) 43296 +attr interpolationmode none +attr source packetReceivedFromLower +attr title "packets received from lower layer, sum(packetBytes)" +scalar World.node[3].wlan[0].mac sentDownPk:count 174 +attr interpolationmode none +attr source packetSentToLower +attr title "packets sent to lower layer, count" +scalar World.node[3].wlan[0].mac sentDownPk:sum(packetBytes) 14268 +attr interpolationmode none +attr source packetSentToLower +attr title "packets sent to lower layer, sum(packetBytes)" +scalar World.node[3].wlan[0].mac rcvdPkFromHL:count 174 +attr interpolationmode none +attr source packetReceivedFromUpper +attr title "packets received from higher layer, count" +scalar World.node[3].wlan[0].mac rcvdPkFromHL:sum(packetBytes) 14268 +attr interpolationmode none +attr source packetReceivedFromUpper +attr title "packets received from higher layer, sum(packetBytes)" +scalar World.node[3].wlan[0].mac passedUpPk:count 528 +attr interpolationmode none +attr source packetSentToUpper +attr title "packets passed to higher layer, count" +scalar World.node[3].wlan[0].mac passedUpPk:sum(packetBytes) 43296 +attr interpolationmode none +attr source packetSentToUpper +attr title "packets passed to higher layer, sum(packetBytes)" +statistic World.node[3].wlan[0].radio radioChannel:histogram +field count 1 +field mean 180 +field stddev -nan +field min 180 +field max 180 +field sum 180 +field sqrsum 32400 +attr interpolationmode sample-hold +attr source radioChannelChanged +attr title "Radio channel, histogram" +bin -inf 0 +bin 179 0 +bin 180 1 +bin 181 0 +scalar World.node[3].wlan[0].radio transmissionState:count 696 +attr interpolationmode sample-hold +attr source transmissionStateChanged +attr title "Radio transmission state, count" +scalar World.node[3].wlan[0].radio receptionState:count 1411 +attr interpolationmode sample-hold +attr source receptionStateChanged +attr title "Radio reception state, count" +scalar World.node[3].wlan[0].radio radioMode:count 350 +attr interpolationmode sample-hold +attr source radioModeChanged +attr title "Radio mode, count" +statistic World.node[3].wlan[0].radio symbolErrorRate:histogram +field count 0 +field mean -nan +field stddev -nan +field min -nan +field max -nan +field sum 0 +field sqrsum 0 +attr source symbolErrorRate +attr title "Symbol error rate, histogram" +bin -inf 0 +bin 0 0 +bin 1 0 +statistic World.node[3].wlan[0].radio bitErrorRate:histogram +field count 0 +field mean -nan +field stddev -nan +field min -nan +field max -nan +field sum 0 +field sqrsum 0 +attr source bitErrorRate +attr title "Bit error rate, histogram" +bin -inf 0 +bin 0 0 +bin 1 0 +statistic World.node[3].wlan[0].radio packetErrorRate:histogram +field count 528 +field mean 0 +field stddev 0 +field min 0 +field max 0 +field sum 0 +field sqrsum 0 +attr source packetErrorRate +attr title "Packet error rate, histogram" +bin -inf 0 +bin -0.5 0 +bin -0.48 0 +bin -0.46 0 +bin -0.44 0 +bin -0.42 0 +bin -0.4 0 +bin -0.38 0 +bin -0.36 0 +bin -0.34 0 +bin -0.32 0 +bin -0.3 0 +bin -0.28 0 +bin -0.26 0 +bin -0.24 0 +bin -0.22 0 +bin -0.2 0 +bin -0.18 0 +bin -0.16 0 +bin -0.14 0 +bin -0.12 0 +bin -0.1 0 +bin -0.08 0 +bin -0.06 0 +bin -0.04 0 +bin -0.02 0 +bin 0 528 +bin 0.02 0 +bin 0.04 0 +bin 0.06 0 +bin 0.08 0 +bin 0.1 0 +bin 0.12 0 +bin 0.14 0 +bin 0.16 0 +bin 0.18 0 +bin 0.2 0 +bin 0.22 0 +bin 0.24 0 +bin 0.26 0 +bin 0.28 0 +bin 0.3 0 +bin 0.32 0 +bin 0.34 0 +bin 0.36 0 +bin 0.38 0 +bin 0.4 0 +bin 0.42 0 +bin 0.44 0 +bin 0.46 0 +bin 0.48 0 +bin 0.5 0 +statistic World.node[3].wlan[0].radio minSNIR:histogram +field count 528 +field mean 9370.2476769253 +field stddev 84664.793189547 +field min 316.66635740441 +field max 1374858.391682 +field sum 4947490.7734165 +field sqrsum 3823962251398 +attr source minSNIR +attr title "Min SNIR, histogram" +bin -inf 0 +bin 0 512 +bin 23040 6 +bin 46080 2 +bin 69120 1 +bin 92160 1 +bin 115200 1 +bin 138240 0 +bin 161280 1 +bin 184320 0 +bin 207360 0 +bin 230400 0 +bin 253440 0 +bin 276480 0 +bin 299520 0 +bin 322560 0 +bin 345600 1 +bin 368640 0 +bin 391680 1 +bin 414720 0 +bin 437760 0 +bin 460800 0 +bin 483840 0 +bin 506880 0 +bin 529920 0 +bin 552960 0 +bin 576000 0 +bin 599040 0 +bin 622080 0 +bin 645120 0 +bin 668160 0 +bin 691200 0 +bin 714240 0 +bin 737280 0 +bin 760320 0 +bin 783360 0 +bin 806400 0 +bin 829440 0 +bin 852480 0 +bin 875520 0 +bin 898560 0 +bin 921600 0 +bin 944640 0 +bin 967680 0 +bin 990720 0 +bin 1013760 0 +bin 1036800 0 +bin 1059840 0 +bin 1082880 0 +bin 1105920 0 +bin 1128960 0 +bin 1152000 0 +bin 1175040 0 +bin 1198080 0 +bin 1221120 0 +bin 1244160 1 +bin 1267200 0 +bin 1290240 0 +bin 1313280 0 +bin 1336320 0 +bin 1359360 1 +bin 1382400 0 + diff --git a/results/inet-#0.vci b/results/inet-#0.vci new file mode 100644 index 0000000000000000000000000000000000000000..d725b22d60afc5ec2143173281e8a30b0c4a094c --- /dev/null +++ b/results/inet-#0.vci @@ -0,0 +1,423 @@ +file 2841526 1649671929 +version 2 +run inet-0-20220411-12:10:47-18595 +attr configname inet +attr datetime 20220411-12:10:47 +attr experiment inet +attr inifile omnetpp.ini +attr iterationvars "" +attr iterationvarsf "" +attr measurement "" +attr network artery.inet.World +attr processid 18595 +attr repetition 0 +attr replication #0 +attr resultdir results +attr runnumber 0 +attr seedset 0 +param *.node[*].wlan[*].typename "\"VanetNic\"" +param *.node[*].wlan[*].radio.channelNumber 180 +param *.node[*].wlan[*].radio.carrierFrequency "5.9 GHz" +param *.node[*].wlan[*].radio.transmitter.power "10 mW" +param *.node[*].middleware.updateInterval 0.3s +param *.node[*].middleware.datetime "\"2013-06-01 12:35:00\"" +param *.node[*].middleware.services "xmldoc(\"services.xml\")" +param *.traci.core.version -1 +param *.traci.launcher.typename "\"PosixLauncher\"" +param *.traci.launcher.sumocfg "\"grid.sumo.cfg\"" +param *.node[*].middleware.updateInterval 0.3s +param *.node[*].middleware.datetime "\"2018-03-19 10:00:00\"" +param *.node[*].middleware.services "xmldoc(\"services.xml\")" +param *.traci.launcher.sumo "\"sumo-gui\"" + +vector 0 World.node[0].wlan[0].radio radioMode:vector ETV +attr interpolationmode sample-hold +attr source radioModeChanged +attr title "Radio mode, vector" +vector 1 World.node[0].wlan[0].radio radioChannel:vector ETV +attr interpolationmode sample-hold +attr source radioChannelChanged +attr title "Radio channel, vector" +vector 2 World.node[0].wlan[0].radio receptionState:vector ETV +attr interpolationmode sample-hold +attr source receptionStateChanged +attr title "Radio reception state, vector" +vector 3 World.node[0].wlan[0].mac.dcf.channelAccess.contention state:vector ETV +attr interpolationmode none +attr source stateChanged +attr title "contention state, vector" +vector 4 World.node[0].wlan[0].mac.hcf.edca.edcaf[0].contention state:vector ETV +attr interpolationmode none +attr source stateChanged +attr title "contention state, vector" +vector 5 World.node[0].wlan[0].mac.hcf.edca.edcaf[1].contention state:vector ETV +attr interpolationmode none +attr source stateChanged +attr title "contention state, vector" +vector 6 World.node[0].wlan[0].mac.hcf.edca.edcaf[2].contention state:vector ETV +attr interpolationmode none +attr source stateChanged +attr title "contention state, vector" +vector 7 World.node[0].wlan[0].mac.hcf.edca.edcaf[3].contention state:vector ETV +attr interpolationmode none +attr source stateChanged +attr title "contention state, vector" +vector 8 World.node[1].wlan[0].radio radioMode:vector ETV +attr interpolationmode sample-hold +attr source radioModeChanged +attr title "Radio mode, vector" +vector 9 World.node[1].wlan[0].radio radioChannel:vector ETV +attr interpolationmode sample-hold +attr source radioChannelChanged +attr title "Radio channel, vector" +vector 10 World.node[1].wlan[0].radio receptionState:vector ETV +attr interpolationmode sample-hold +attr source receptionStateChanged +attr title "Radio reception state, vector" +vector 11 World.node[1].wlan[0].mac.dcf.channelAccess.contention state:vector ETV +attr interpolationmode none +attr source stateChanged +attr title "contention state, vector" +vector 12 World.node[1].wlan[0].mac.hcf.edca.edcaf[0].contention state:vector ETV +attr interpolationmode none +attr source stateChanged +attr title "contention state, vector" +vector 13 World.node[1].wlan[0].mac.hcf.edca.edcaf[1].contention state:vector ETV +attr interpolationmode none +attr source stateChanged +attr title "contention state, vector" +vector 14 World.node[1].wlan[0].mac.hcf.edca.edcaf[2].contention state:vector ETV +attr interpolationmode none +attr source stateChanged +attr title "contention state, vector" +vector 15 World.node[1].wlan[0].mac.hcf.edca.edcaf[3].contention state:vector ETV +attr interpolationmode none +attr source stateChanged +attr title "contention state, vector" +vector 16 World.node[0].wlan[0].mac rcvdPkFromHL:vector(packetBytes) ETV +attr interpolationmode none +attr source packetReceivedFromUpper +attr title "packets received from higher layer, vector(packetBytes)" +vector 17 World.node[0].wlan[0].mac sentDownPk:vector(packetBytes) ETV +attr interpolationmode none +attr source packetSentToLower +attr title "packets sent to lower layer, vector(packetBytes)" +vector 18 World.node[0].wlan[0].radio transmissionState:vector ETV +attr interpolationmode sample-hold +attr source transmissionStateChanged +attr title "Radio transmission state, vector" +vector 19 World.node[1].wlan[0].mac rcvdPkFromLL:vector(packetBytes) ETV +attr interpolationmode none +attr source packetReceivedFromLower +attr title "packets received from lower layer, vector(packetBytes)" +vector 20 World.node[1].wlan[0].mac passedUpPk:vector(packetBytes) ETV +attr interpolationmode none +attr source packetSentToUpper +attr title "packets passed to higher layer, vector(packetBytes)" +vector 21 World.node[1].wlan[0].mac rcvdPkFromHL:vector(packetBytes) ETV +attr interpolationmode none +attr source packetReceivedFromUpper +attr title "packets received from higher layer, vector(packetBytes)" +vector 22 World.node[1].wlan[0].mac sentDownPk:vector(packetBytes) ETV +attr interpolationmode none +attr source packetSentToLower +attr title "packets sent to lower layer, vector(packetBytes)" +vector 23 World.node[1].wlan[0].radio transmissionState:vector ETV +attr interpolationmode sample-hold +attr source transmissionStateChanged +attr title "Radio transmission state, vector" +vector 24 World.node[0].wlan[0].mac rcvdPkFromLL:vector(packetBytes) ETV +attr interpolationmode none +attr source packetReceivedFromLower +attr title "packets received from lower layer, vector(packetBytes)" +vector 25 World.node[0].wlan[0].mac passedUpPk:vector(packetBytes) ETV +attr interpolationmode none +attr source packetSentToUpper +attr title "packets passed to higher layer, vector(packetBytes)" +vector 26 World.node[2].wlan[0].radio radioMode:vector ETV +attr interpolationmode sample-hold +attr source radioModeChanged +attr title "Radio mode, vector" +vector 27 World.node[2].wlan[0].radio radioChannel:vector ETV +attr interpolationmode sample-hold +attr source radioChannelChanged +attr title "Radio channel, vector" +vector 28 World.node[2].wlan[0].radio receptionState:vector ETV +attr interpolationmode sample-hold +attr source receptionStateChanged +attr title "Radio reception state, vector" +vector 29 World.node[2].wlan[0].mac.dcf.channelAccess.contention state:vector ETV +attr interpolationmode none +attr source stateChanged +attr title "contention state, vector" +vector 30 World.node[2].wlan[0].mac.hcf.edca.edcaf[0].contention state:vector ETV +attr interpolationmode none +attr source stateChanged +attr title "contention state, vector" +vector 31 World.node[2].wlan[0].mac.hcf.edca.edcaf[1].contention state:vector ETV +attr interpolationmode none +attr source stateChanged +attr title "contention state, vector" +vector 32 World.node[2].wlan[0].mac.hcf.edca.edcaf[2].contention state:vector ETV +attr interpolationmode none +attr source stateChanged +attr title "contention state, vector" +vector 33 World.node[2].wlan[0].mac.hcf.edca.edcaf[3].contention state:vector ETV +attr interpolationmode none +attr source stateChanged +attr title "contention state, vector" +vector 34 World.node[2].wlan[0].mac rcvdPkFromLL:vector(packetBytes) ETV +attr interpolationmode none +attr source packetReceivedFromLower +attr title "packets received from lower layer, vector(packetBytes)" +vector 35 World.node[2].wlan[0].mac passedUpPk:vector(packetBytes) ETV +attr interpolationmode none +attr source packetSentToUpper +attr title "packets passed to higher layer, vector(packetBytes)" +vector 36 World.node[2].wlan[0].mac rcvdPkFromHL:vector(packetBytes) ETV +attr interpolationmode none +attr source packetReceivedFromUpper +attr title "packets received from higher layer, vector(packetBytes)" +vector 37 World.node[2].wlan[0].mac sentDownPk:vector(packetBytes) ETV +attr interpolationmode none +attr source packetSentToLower +attr title "packets sent to lower layer, vector(packetBytes)" +vector 38 World.node[2].wlan[0].radio transmissionState:vector ETV +attr interpolationmode sample-hold +attr source transmissionStateChanged +attr title "Radio transmission state, vector" +vector 39 World.node[3].wlan[0].radio radioMode:vector ETV +attr interpolationmode sample-hold +attr source radioModeChanged +attr title "Radio mode, vector" +vector 40 World.node[3].wlan[0].radio radioChannel:vector ETV +attr interpolationmode sample-hold +attr source radioChannelChanged +attr title "Radio channel, vector" +vector 41 World.node[3].wlan[0].radio receptionState:vector ETV +attr interpolationmode sample-hold +attr source receptionStateChanged +attr title "Radio reception state, vector" +vector 42 World.node[3].wlan[0].mac.dcf.channelAccess.contention state:vector ETV +attr interpolationmode none +attr source stateChanged +attr title "contention state, vector" +vector 43 World.node[3].wlan[0].mac.hcf.edca.edcaf[0].contention state:vector ETV +attr interpolationmode none +attr source stateChanged +attr title "contention state, vector" +vector 44 World.node[3].wlan[0].mac.hcf.edca.edcaf[1].contention state:vector ETV +attr interpolationmode none +attr source stateChanged +attr title "contention state, vector" +vector 45 World.node[3].wlan[0].mac.hcf.edca.edcaf[2].contention state:vector ETV +attr interpolationmode none +attr source stateChanged +attr title "contention state, vector" +vector 46 World.node[3].wlan[0].mac.hcf.edca.edcaf[3].contention state:vector ETV +attr interpolationmode none +attr source stateChanged +attr title "contention state, vector" +vector 47 World.node[3].wlan[0].mac rcvdPkFromLL:vector(packetBytes) ETV +attr interpolationmode none +attr source packetReceivedFromLower +attr title "packets received from lower layer, vector(packetBytes)" +vector 48 World.node[3].wlan[0].mac passedUpPk:vector(packetBytes) ETV +attr interpolationmode none +attr source packetSentToUpper +attr title "packets passed to higher layer, vector(packetBytes)" +vector 49 World.node[3].wlan[0].mac rcvdPkFromHL:vector(packetBytes) ETV +attr interpolationmode none +attr source packetReceivedFromUpper +attr title "packets received from higher layer, vector(packetBytes)" +vector 50 World.node[3].wlan[0].mac sentDownPk:vector(packetBytes) ETV +attr interpolationmode none +attr source packetSentToLower +attr title "packets sent to lower layer, vector(packetBytes)" +vector 51 World.node[3].wlan[0].radio transmissionState:vector ETV +attr interpolationmode sample-hold +attr source transmissionStateChanged +attr title "Radio transmission state, vector" +vector 52 World.node[4].wlan[0].radio radioMode:vector ETV +attr interpolationmode sample-hold +attr source radioModeChanged +attr title "Radio mode, vector" +vector 53 World.node[4].wlan[0].radio radioChannel:vector ETV +attr interpolationmode sample-hold +attr source radioChannelChanged +attr title "Radio channel, vector" +vector 54 World.node[4].wlan[0].radio receptionState:vector ETV +attr interpolationmode sample-hold +attr source receptionStateChanged +attr title "Radio reception state, vector" +vector 55 World.node[4].wlan[0].mac.dcf.channelAccess.contention state:vector ETV +attr interpolationmode none +attr source stateChanged +attr title "contention state, vector" +vector 56 World.node[4].wlan[0].mac.hcf.edca.edcaf[0].contention state:vector ETV +attr interpolationmode none +attr source stateChanged +attr title "contention state, vector" +vector 57 World.node[4].wlan[0].mac.hcf.edca.edcaf[1].contention state:vector ETV +attr interpolationmode none +attr source stateChanged +attr title "contention state, vector" +vector 58 World.node[4].wlan[0].mac.hcf.edca.edcaf[2].contention state:vector ETV +attr interpolationmode none +attr source stateChanged +attr title "contention state, vector" +vector 59 World.node[4].wlan[0].mac.hcf.edca.edcaf[3].contention state:vector ETV +attr interpolationmode none +attr source stateChanged +attr title "contention state, vector" +vector 60 World.node[4].wlan[0].mac rcvdPkFromLL:vector(packetBytes) ETV +attr interpolationmode none +attr source packetReceivedFromLower +attr title "packets received from lower layer, vector(packetBytes)" +vector 61 World.node[4].wlan[0].mac passedUpPk:vector(packetBytes) ETV +attr interpolationmode none +attr source packetSentToUpper +attr title "packets passed to higher layer, vector(packetBytes)" +vector 62 World.node[4].wlan[0].mac rcvdPkFromHL:vector(packetBytes) ETV +attr interpolationmode none +attr source packetReceivedFromUpper +attr title "packets received from higher layer, vector(packetBytes)" +vector 63 World.node[4].wlan[0].mac sentDownPk:vector(packetBytes) ETV +attr interpolationmode none +attr source packetSentToLower +attr title "packets sent to lower layer, vector(packetBytes)" +vector 64 World.node[4].wlan[0].radio transmissionState:vector ETV +attr interpolationmode sample-hold +attr source transmissionStateChanged +attr title "Radio transmission state, vector" +vector 65 World.node[5].wlan[0].radio radioMode:vector ETV +attr interpolationmode sample-hold +attr source radioModeChanged +attr title "Radio mode, vector" +vector 66 World.node[5].wlan[0].radio radioChannel:vector ETV +attr interpolationmode sample-hold +attr source radioChannelChanged +attr title "Radio channel, vector" +vector 67 World.node[5].wlan[0].radio receptionState:vector ETV +attr interpolationmode sample-hold +attr source receptionStateChanged +attr title "Radio reception state, vector" +vector 68 World.node[5].wlan[0].mac.dcf.channelAccess.contention state:vector ETV +attr interpolationmode none +attr source stateChanged +attr title "contention state, vector" +vector 69 World.node[5].wlan[0].mac.hcf.edca.edcaf[0].contention state:vector ETV +attr interpolationmode none +attr source stateChanged +attr title "contention state, vector" +vector 70 World.node[5].wlan[0].mac.hcf.edca.edcaf[1].contention state:vector ETV +attr interpolationmode none +attr source stateChanged +attr title "contention state, vector" +vector 71 World.node[5].wlan[0].mac.hcf.edca.edcaf[2].contention state:vector ETV +attr interpolationmode none +attr source stateChanged +attr title "contention state, vector" +vector 72 World.node[5].wlan[0].mac.hcf.edca.edcaf[3].contention state:vector ETV +attr interpolationmode none +attr source stateChanged +attr title "contention state, vector" +vector 73 World.node[5].wlan[0].mac rcvdPkFromLL:vector(packetBytes) ETV +attr interpolationmode none +attr source packetReceivedFromLower +attr title "packets received from lower layer, vector(packetBytes)" +vector 74 World.node[5].wlan[0].mac passedUpPk:vector(packetBytes) ETV +attr interpolationmode none +attr source packetSentToUpper +attr title "packets passed to higher layer, vector(packetBytes)" +vector 75 World.node[5].wlan[0].mac rcvdPkFromHL:vector(packetBytes) ETV +attr interpolationmode none +attr source packetReceivedFromUpper +attr title "packets received from higher layer, vector(packetBytes)" +vector 76 World.node[5].wlan[0].mac sentDownPk:vector(packetBytes) ETV +attr interpolationmode none +attr source packetSentToLower +attr title "packets sent to lower layer, vector(packetBytes)" +vector 77 World.node[5].wlan[0].radio transmissionState:vector ETV +attr interpolationmode sample-hold +attr source transmissionStateChanged +attr title "Radio transmission state, vector" +60 15120 6605 800 22950 5.144153485014 33.831436259307 240 82 82 19680 1613760 +63 21725 2606 1052 23008 5.693585502869 33.893585502869 95 82 82 7790 638780 +62 24331 2606 1049 23005 5.693585502869 33.893585502869 95 82 82 7790 638780 +61 26937 6605 800 22950 5.144153485014 33.831436259307 240 82 82 19680 1613760 +55 33542 35634 778 23017 5.1 33.893745502869 1346 0 0 0 0 +56 69176 35634 778 23017 5.1 33.893745502869 1346 0 0 0 0 +57 104810 35634 778 23017 5.1 33.893745502869 1346 0 0 0 0 +58 140444 45678 778 23017 5.1 33.893745502869 1726 0 2 380 760 +59 186122 35634 778 23017 5.1 33.893745502869 1346 0 0 0 0 +53 221756 15 778 778 5.1 5.1 1 180 180 180 32400 +64 221771 10044 1053 23017 5.693585502869 33.893745502869 380 0 2 380 570 +54 231815 17817 778 23017 5.1 33.893745502869 673 0 3 1059 2501 +52 249632 5048 778 23017 5.1 33.893745502869 192 0 3 477 1239 +24 254680 14484 71 33748 2.65754405803 53.144153750731 528 82 82 43296 3550272 +17 269164 4644 46 33606 2.614556809491 53.014556809491 169 82 82 13858 1136356 +16 273808 4644 43 33603 2.614556809491 53.014556809491 169 82 82 13858 1136356 +25 278452 14484 71 33748 2.65754405803 53.144153750731 528 82 82 43296 3550272 +3 292936 71164 22 33747 2.1 53.144153750731 2798 0 0 0 0 +4 364100 71164 22 33747 2.1 53.144153750731 2798 0 0 0 0 +5 435264 71164 22 33747 2.1 53.144153750731 2798 0 0 0 0 +6 506428 88388 22 33747 2.1 53.144153750731 3474 0 2 676 1352 +7 594816 71164 22 33747 2.1 53.144153750731 2798 0 0 0 0 +1 665980 13 22 22 2.1 2.1 1 180 180 180 32400 +18 665993 17900 47 33614 2.614556809491 53.014716809491 676 0 2 676 1014 +2 683893 35582 22 33747 2.1 53.144153750731 1399 0 3 2288 5460 +0 719475 8634 22 33614 2.1 53.014716809491 340 0 3 847 2201 +47 728109 14539 402 35111 4.131436647939 56.357544148407 528 82 82 43296 3550272 +50 742648 4806 551 35132 4.543993151421 56.443993151421 174 82 82 14268 1169976 +49 747454 4806 548 35129 4.543993151421 56.443993151421 174 82 82 14268 1169976 +48 752260 14539 402 35111 4.131436647939 56.357544148407 528 82 82 43296 3550272 +42 766799 74908 356 35139 4.1 56.444153151421 2822 0 0 0 0 +43 841707 74908 356 35139 4.1 56.444153151421 2822 0 0 0 0 +44 916615 74908 356 35139 4.1 56.444153151421 2822 0 0 0 0 +45 991523 93436 356 35139 4.1 56.444153151421 3518 0 2 696 1392 +46 1084959 74908 356 35139 4.1 56.444153151421 2822 0 0 0 0 +40 1159867 15 356 356 4.1 4.1 1 180 180 180 32400 +51 1159882 18528 552 35139 4.543993151421 56.444153151421 696 0 2 696 1044 +41 1178410 37454 356 35139 4.1 56.444153151421 1411 0 3 2296 5470 +39 1215864 9290 356 35139 4.1 56.444153151421 350 0 3 872 2266 +8 1225154 10356 22 36904 2.1 62.957543685955 406 0 3 1012 2630 +9 1235510 13 22 22 2.1 2.1 1 180 180 180 32400 +10 1235523 39421 22 36904 2.1 62.957543685955 1487 0 3 2366 5608 +11 1274944 78842 22 36904 2.1 62.957543685955 2974 0 0 0 0 +12 1353786 78842 22 36904 2.1 62.957543685955 2974 0 0 0 0 +13 1432628 78842 22 36904 2.1 62.957543685955 2974 0 0 0 0 +14 1511470 100318 22 36904 2.1 62.957543685955 3782 0 2 808 1616 +15 1611788 78842 22 36904 2.1 62.957543685955 2974 0 0 0 0 +19 1690630 14849 53 36885 2.614717181566 62.931436763684 540 82 82 44280 3630960 +20 1705479 14849 53 36885 2.614717181566 62.931436763684 540 82 82 44280 3630960 +21 1720328 5571 61 36895 2.657383685955 62.957383685955 202 82 82 16564 1358248 +22 1725899 5571 64 36898 2.657383685955 62.957383685955 202 82 82 16564 1358248 +23 1731470 21476 65 36904 2.657383685955 62.957543685955 808 0 2 808 1212 +26 1752946 10619 124 36883 3.1 62.931436162993 400 0 3 997 2591 +27 1763565 15 124 124 3.1 3.1 1 180 180 180 32400 +28 1763580 43132 124 36905 3.1 62.957544286646 1631 0 3 2663 6355 +29 1806712 86264 124 36905 3.1 62.957544286646 3262 0 0 0 0 +30 1892976 86264 124 36905 3.1 62.957544286646 3262 0 0 0 0 +31 1979240 86264 124 36905 3.1 62.957544286646 3262 0 0 0 0 +32 2065504 107448 124 36905 3.1 62.957544286646 4058 0 2 796 1592 +33 2172952 86264 124 36905 3.1 62.957544286646 3262 0 0 0 0 +34 2259216 16852 151 36906 3.21471740282 62.957544286646 615 82 82 50430 4135260 +35 2276068 16852 151 36906 3.21471740282 62.957544286646 615 82 82 50430 4135260 +36 2292920 5495 219 36874 3.531276162993 62.931276162993 199 82 82 16318 1338076 +37 2298415 5495 222 36877 3.531276162993 62.931276162993 199 82 82 16318 1338076 +38 2303910 21185 223 36883 3.531276162993 62.931436162993 796 0 2 796 1194 +65 2325095 10136 1262 36864 6.1 62.924558582336 380 0 3 947 2461 +66 2335231 16 1262 1262 6.1 6.1 1 180 180 180 32400 +67 2335247 38714 1262 36910 6.1 62.957544312531 1457 0 3 2343 5565 +68 2373961 77428 1262 36910 6.1 62.957544312531 2914 0 0 0 0 +69 2451389 77428 1262 36910 6.1 62.957544312531 2914 0 0 0 0 +70 2528817 77428 1262 36910 6.1 62.957544312531 2914 0 0 0 0 +71 2606245 97644 1262 36910 6.1 62.957544312531 3670 0 2 756 1512 +72 2703889 77428 1262 36910 6.1 62.957544312531 2914 0 0 0 0 +73 2781317 14753 1293 36911 6.214717014941 62.957544312531 536 82 82 43952 3604064 +74 2796070 14753 1293 36911 6.214717014941 62.957544312531 536 82 82 43952 3604064 +75 2810823 5243 1495 36855 6.524398582336 62.924398582336 189 82 82 15498 1270836 +76 2816066 5243 1498 36858 6.524398582336 62.924398582336 189 82 82 15498 1270836 +77 2821309 20216 1499 36864 6.524398582336 62.924558582336 756 0 2 756 1134 + diff --git a/results/inet-#0.vec b/results/inet-#0.vec new file mode 100644 index 0000000000000000000000000000000000000000..0aa38c27d2e52e591af3637d55b5042aa3632f29 --- /dev/null +++ b/results/inet-#0.vec @@ -0,0 +1,107310 @@ +version 2 +run inet-0-20220411-12:10:47-18595 +attr configname inet +attr datetime 20220411-12:10:47 +attr experiment inet +attr inifile omnetpp.ini +attr iterationvars "" +attr iterationvarsf "" +attr measurement "" +attr network artery.inet.World +attr processid 18595 +attr repetition 0 +attr replication #0 +attr resultdir results +attr runnumber 0 +attr seedset 0 +param *.node[*].wlan[*].typename "\"VanetNic\"" +param *.node[*].wlan[*].radio.channelNumber 180 +param *.node[*].wlan[*].radio.carrierFrequency "5.9 GHz" +param *.node[*].wlan[*].radio.transmitter.power "10 mW" +param *.node[*].middleware.updateInterval 0.3s +param *.node[*].middleware.datetime "\"2013-06-01 12:35:00\"" +param *.node[*].middleware.services "xmldoc(\"services.xml\")" +param *.traci.core.version -1 +param *.traci.launcher.typename "\"PosixLauncher\"" +param *.traci.launcher.sumocfg "\"grid.sumo.cfg\"" +param *.node[*].middleware.updateInterval 0.3s +param *.node[*].middleware.datetime "\"2018-03-19 10:00:00\"" +param *.node[*].middleware.services "xmldoc(\"services.xml\")" +param *.traci.launcher.sumo "\"sumo-gui\"" + +vector 0 World.node[0].wlan[0].radio radioMode:vector ETV +attr interpolationmode sample-hold +attr source radioModeChanged +attr title "Radio mode, vector" +vector 1 World.node[0].wlan[0].radio radioChannel:vector ETV +attr interpolationmode sample-hold +attr source radioChannelChanged +attr title "Radio channel, vector" +vector 2 World.node[0].wlan[0].radio receptionState:vector ETV +attr interpolationmode sample-hold +attr source receptionStateChanged +attr title "Radio reception state, vector" +vector 3 World.node[0].wlan[0].mac.dcf.channelAccess.contention state:vector ETV +attr interpolationmode none +attr source stateChanged +attr title "contention state, vector" +vector 4 World.node[0].wlan[0].mac.hcf.edca.edcaf[0].contention state:vector ETV +attr interpolationmode none +attr source stateChanged +attr title "contention state, vector" +vector 5 World.node[0].wlan[0].mac.hcf.edca.edcaf[1].contention state:vector ETV +attr interpolationmode none +attr source stateChanged +attr title "contention state, vector" +vector 6 World.node[0].wlan[0].mac.hcf.edca.edcaf[2].contention state:vector ETV +attr interpolationmode none +attr source stateChanged +attr title "contention state, vector" +vector 7 World.node[0].wlan[0].mac.hcf.edca.edcaf[3].contention state:vector ETV +attr interpolationmode none +attr source stateChanged +attr title "contention state, vector" +vector 8 World.node[1].wlan[0].radio radioMode:vector ETV +attr interpolationmode sample-hold +attr source radioModeChanged +attr title "Radio mode, vector" +vector 9 World.node[1].wlan[0].radio radioChannel:vector ETV +attr interpolationmode sample-hold +attr source radioChannelChanged +attr title "Radio channel, vector" +vector 10 World.node[1].wlan[0].radio receptionState:vector ETV +attr interpolationmode sample-hold +attr source receptionStateChanged +attr title "Radio reception state, vector" +vector 11 World.node[1].wlan[0].mac.dcf.channelAccess.contention state:vector ETV +attr interpolationmode none +attr source stateChanged +attr title "contention state, vector" +vector 12 World.node[1].wlan[0].mac.hcf.edca.edcaf[0].contention state:vector ETV +attr interpolationmode none +attr source stateChanged +attr title "contention state, vector" +vector 13 World.node[1].wlan[0].mac.hcf.edca.edcaf[1].contention state:vector ETV +attr interpolationmode none +attr source stateChanged +attr title "contention state, vector" +vector 14 World.node[1].wlan[0].mac.hcf.edca.edcaf[2].contention state:vector ETV +attr interpolationmode none +attr source stateChanged +attr title "contention state, vector" +vector 15 World.node[1].wlan[0].mac.hcf.edca.edcaf[3].contention state:vector ETV +attr interpolationmode none +attr source stateChanged +attr title "contention state, vector" +vector 16 World.node[0].wlan[0].mac rcvdPkFromHL:vector(packetBytes) ETV +attr interpolationmode none +attr source packetReceivedFromUpper +attr title "packets received from higher layer, vector(packetBytes)" +vector 17 World.node[0].wlan[0].mac sentDownPk:vector(packetBytes) ETV +attr interpolationmode none +attr source packetSentToLower +attr title "packets sent to lower layer, vector(packetBytes)" +vector 18 World.node[0].wlan[0].radio transmissionState:vector ETV +attr interpolationmode sample-hold +attr source transmissionStateChanged +attr title "Radio transmission state, vector" +vector 19 World.node[1].wlan[0].mac rcvdPkFromLL:vector(packetBytes) ETV +attr interpolationmode none +attr source packetReceivedFromLower +attr title "packets received from lower layer, vector(packetBytes)" +vector 20 World.node[1].wlan[0].mac passedUpPk:vector(packetBytes) ETV +attr interpolationmode none +attr source packetSentToUpper +attr title "packets passed to higher layer, vector(packetBytes)" +vector 21 World.node[1].wlan[0].mac rcvdPkFromHL:vector(packetBytes) ETV +attr interpolationmode none +attr source packetReceivedFromUpper +attr title "packets received from higher layer, vector(packetBytes)" +vector 22 World.node[1].wlan[0].mac sentDownPk:vector(packetBytes) ETV +attr interpolationmode none +attr source packetSentToLower +attr title "packets sent to lower layer, vector(packetBytes)" +vector 23 World.node[1].wlan[0].radio transmissionState:vector ETV +attr interpolationmode sample-hold +attr source transmissionStateChanged +attr title "Radio transmission state, vector" +vector 24 World.node[0].wlan[0].mac rcvdPkFromLL:vector(packetBytes) ETV +attr interpolationmode none +attr source packetReceivedFromLower +attr title "packets received from lower layer, vector(packetBytes)" +vector 25 World.node[0].wlan[0].mac passedUpPk:vector(packetBytes) ETV +attr interpolationmode none +attr source packetSentToUpper +attr title "packets passed to higher layer, vector(packetBytes)" +vector 26 World.node[2].wlan[0].radio radioMode:vector ETV +attr interpolationmode sample-hold +attr source radioModeChanged +attr title "Radio mode, vector" +vector 27 World.node[2].wlan[0].radio radioChannel:vector ETV +attr interpolationmode sample-hold +attr source radioChannelChanged +attr title "Radio channel, vector" +vector 28 World.node[2].wlan[0].radio receptionState:vector ETV +attr interpolationmode sample-hold +attr source receptionStateChanged +attr title "Radio reception state, vector" +vector 29 World.node[2].wlan[0].mac.dcf.channelAccess.contention state:vector ETV +attr interpolationmode none +attr source stateChanged +attr title "contention state, vector" +vector 30 World.node[2].wlan[0].mac.hcf.edca.edcaf[0].contention state:vector ETV +attr interpolationmode none +attr source stateChanged +attr title "contention state, vector" +vector 31 World.node[2].wlan[0].mac.hcf.edca.edcaf[1].contention state:vector ETV +attr interpolationmode none +attr source stateChanged +attr title "contention state, vector" +vector 32 World.node[2].wlan[0].mac.hcf.edca.edcaf[2].contention state:vector ETV +attr interpolationmode none +attr source stateChanged +attr title "contention state, vector" +vector 33 World.node[2].wlan[0].mac.hcf.edca.edcaf[3].contention state:vector ETV +attr interpolationmode none +attr source stateChanged +attr title "contention state, vector" +vector 34 World.node[2].wlan[0].mac rcvdPkFromLL:vector(packetBytes) ETV +attr interpolationmode none +attr source packetReceivedFromLower +attr title "packets received from lower layer, vector(packetBytes)" +vector 35 World.node[2].wlan[0].mac passedUpPk:vector(packetBytes) ETV +attr interpolationmode none +attr source packetSentToUpper +attr title "packets passed to higher layer, vector(packetBytes)" +vector 36 World.node[2].wlan[0].mac rcvdPkFromHL:vector(packetBytes) ETV +attr interpolationmode none +attr source packetReceivedFromUpper +attr title "packets received from higher layer, vector(packetBytes)" +vector 37 World.node[2].wlan[0].mac sentDownPk:vector(packetBytes) ETV +attr interpolationmode none +attr source packetSentToLower +attr title "packets sent to lower layer, vector(packetBytes)" +vector 38 World.node[2].wlan[0].radio transmissionState:vector ETV +attr interpolationmode sample-hold +attr source transmissionStateChanged +attr title "Radio transmission state, vector" +vector 39 World.node[3].wlan[0].radio radioMode:vector ETV +attr interpolationmode sample-hold +attr source radioModeChanged +attr title "Radio mode, vector" +vector 40 World.node[3].wlan[0].radio radioChannel:vector ETV +attr interpolationmode sample-hold +attr source radioChannelChanged +attr title "Radio channel, vector" +vector 41 World.node[3].wlan[0].radio receptionState:vector ETV +attr interpolationmode sample-hold +attr source receptionStateChanged +attr title "Radio reception state, vector" +vector 42 World.node[3].wlan[0].mac.dcf.channelAccess.contention state:vector ETV +attr interpolationmode none +attr source stateChanged +attr title "contention state, vector" +vector 43 World.node[3].wlan[0].mac.hcf.edca.edcaf[0].contention state:vector ETV +attr interpolationmode none +attr source stateChanged +attr title "contention state, vector" +vector 44 World.node[3].wlan[0].mac.hcf.edca.edcaf[1].contention state:vector ETV +attr interpolationmode none +attr source stateChanged +attr title "contention state, vector" +vector 45 World.node[3].wlan[0].mac.hcf.edca.edcaf[2].contention state:vector ETV +attr interpolationmode none +attr source stateChanged +attr title "contention state, vector" +vector 46 World.node[3].wlan[0].mac.hcf.edca.edcaf[3].contention state:vector ETV +attr interpolationmode none +attr source stateChanged +attr title "contention state, vector" +vector 47 World.node[3].wlan[0].mac rcvdPkFromLL:vector(packetBytes) ETV +attr interpolationmode none +attr source packetReceivedFromLower +attr title "packets received from lower layer, vector(packetBytes)" +vector 48 World.node[3].wlan[0].mac passedUpPk:vector(packetBytes) ETV +attr interpolationmode none +attr source packetSentToUpper +attr title "packets passed to higher layer, vector(packetBytes)" +vector 49 World.node[3].wlan[0].mac rcvdPkFromHL:vector(packetBytes) ETV +attr interpolationmode none +attr source packetReceivedFromUpper +attr title "packets received from higher layer, vector(packetBytes)" +vector 50 World.node[3].wlan[0].mac sentDownPk:vector(packetBytes) ETV +attr interpolationmode none +attr source packetSentToLower +attr title "packets sent to lower layer, vector(packetBytes)" +vector 51 World.node[3].wlan[0].radio transmissionState:vector ETV +attr interpolationmode sample-hold +attr source transmissionStateChanged +attr title "Radio transmission state, vector" +vector 52 World.node[4].wlan[0].radio radioMode:vector ETV +attr interpolationmode sample-hold +attr source radioModeChanged +attr title "Radio mode, vector" +vector 53 World.node[4].wlan[0].radio radioChannel:vector ETV +attr interpolationmode sample-hold +attr source radioChannelChanged +attr title "Radio channel, vector" +vector 54 World.node[4].wlan[0].radio receptionState:vector ETV +attr interpolationmode sample-hold +attr source receptionStateChanged +attr title "Radio reception state, vector" +vector 55 World.node[4].wlan[0].mac.dcf.channelAccess.contention state:vector ETV +attr interpolationmode none +attr source stateChanged +attr title "contention state, vector" +vector 56 World.node[4].wlan[0].mac.hcf.edca.edcaf[0].contention state:vector ETV +attr interpolationmode none +attr source stateChanged +attr title "contention state, vector" +vector 57 World.node[4].wlan[0].mac.hcf.edca.edcaf[1].contention state:vector ETV +attr interpolationmode none +attr source stateChanged +attr title "contention state, vector" +vector 58 World.node[4].wlan[0].mac.hcf.edca.edcaf[2].contention state:vector ETV +attr interpolationmode none +attr source stateChanged +attr title "contention state, vector" +vector 59 World.node[4].wlan[0].mac.hcf.edca.edcaf[3].contention state:vector ETV +attr interpolationmode none +attr source stateChanged +attr title "contention state, vector" +vector 60 World.node[4].wlan[0].mac rcvdPkFromLL:vector(packetBytes) ETV +attr interpolationmode none +attr source packetReceivedFromLower +attr title "packets received from lower layer, vector(packetBytes)" +vector 61 World.node[4].wlan[0].mac passedUpPk:vector(packetBytes) ETV +attr interpolationmode none +attr source packetSentToUpper +attr title "packets passed to higher layer, vector(packetBytes)" +vector 62 World.node[4].wlan[0].mac rcvdPkFromHL:vector(packetBytes) ETV +attr interpolationmode none +attr source packetReceivedFromUpper +attr title "packets received from higher layer, vector(packetBytes)" +vector 63 World.node[4].wlan[0].mac sentDownPk:vector(packetBytes) ETV +attr interpolationmode none +attr source packetSentToLower +attr title "packets sent to lower layer, vector(packetBytes)" +vector 64 World.node[4].wlan[0].radio transmissionState:vector ETV +attr interpolationmode sample-hold +attr source transmissionStateChanged +attr title "Radio transmission state, vector" +vector 65 World.node[5].wlan[0].radio radioMode:vector ETV +attr interpolationmode sample-hold +attr source radioModeChanged +attr title "Radio mode, vector" +vector 66 World.node[5].wlan[0].radio radioChannel:vector ETV +attr interpolationmode sample-hold +attr source radioChannelChanged +attr title "Radio channel, vector" +vector 67 World.node[5].wlan[0].radio receptionState:vector ETV +attr interpolationmode sample-hold +attr source receptionStateChanged +attr title "Radio reception state, vector" +vector 68 World.node[5].wlan[0].mac.dcf.channelAccess.contention state:vector ETV +attr interpolationmode none +attr source stateChanged +attr title "contention state, vector" +vector 69 World.node[5].wlan[0].mac.hcf.edca.edcaf[0].contention state:vector ETV +attr interpolationmode none +attr source stateChanged +attr title "contention state, vector" +vector 70 World.node[5].wlan[0].mac.hcf.edca.edcaf[1].contention state:vector ETV +attr interpolationmode none +attr source stateChanged +attr title "contention state, vector" +vector 71 World.node[5].wlan[0].mac.hcf.edca.edcaf[2].contention state:vector ETV +attr interpolationmode none +attr source stateChanged +attr title "contention state, vector" +vector 72 World.node[5].wlan[0].mac.hcf.edca.edcaf[3].contention state:vector ETV +attr interpolationmode none +attr source stateChanged +attr title "contention state, vector" +vector 73 World.node[5].wlan[0].mac rcvdPkFromLL:vector(packetBytes) ETV +attr interpolationmode none +attr source packetReceivedFromLower +attr title "packets received from lower layer, vector(packetBytes)" +vector 74 World.node[5].wlan[0].mac passedUpPk:vector(packetBytes) ETV +attr interpolationmode none +attr source packetSentToUpper +attr title "packets passed to higher layer, vector(packetBytes)" +vector 75 World.node[5].wlan[0].mac rcvdPkFromHL:vector(packetBytes) ETV +attr interpolationmode none +attr source packetReceivedFromUpper +attr title "packets received from higher layer, vector(packetBytes)" +vector 76 World.node[5].wlan[0].mac sentDownPk:vector(packetBytes) ETV +attr interpolationmode none +attr source packetSentToLower +attr title "packets sent to lower layer, vector(packetBytes)" +vector 77 World.node[5].wlan[0].radio transmissionState:vector ETV +attr interpolationmode sample-hold +attr source transmissionStateChanged +attr title "Radio transmission state, vector" +60 800 5.144153485014 82 +60 934 5.444153485053 82 +60 1092 5.744153485104 82 +60 1250 6.044153485165 82 +60 1432 6.344153485238 82 +60 1649 6.644153485325 82 +60 1866 6.944153485423 82 +60 2083 7.244153485541 82 +60 2300 7.544153485675 82 +60 2517 7.844153485822 82 +60 2734 8.144153485992 82 +60 2955 8.444153486181 82 +60 3180 8.744153486377 82 +60 3405 9.044153486579 82 +60 3630 9.344153486798 82 +60 3855 9.64415348701 82 +60 4080 9.944153487239 82 +60 4305 10.244153487473 82 +60 4530 10.544153487715 82 +60 4763 10.84415348791 82 +60 4996 11.144153487716 82 +60 5229 11.444153487147 82 +60 5376 11.631436919727 82 +60 5470 11.744153486335 82 +60 5617 11.931436918081 82 +60 5711 12.044153485511 82 +60 5858 12.231436916562 82 +60 5952 12.344153485033 82 +60 6099 12.531436915229 82 +60 6193 12.644153485073 82 +60 6340 12.831436914169 82 +60 6434 12.944153485645 82 +60 6581 13.131436913397 82 +60 6675 13.244153486741 82 +60 6822 13.431436912882 82 +60 6916 13.544153488359 82 +60 7063 13.731436912645 82 +60 7157 13.844153490496 82 +60 7304 14.03143691268 82 +60 7398 14.144153493127 82 +60 7545 14.33143691298 82 +60 7639 14.44415349625 82 +60 7786 14.631436913256 82 +60 7880 14.744153498886 82 +60 8027 14.931436907357 82 +60 8121 15.044153491181 82 +60 8268 15.231436894496 82 +60 8362 15.344153477658 82 +60 8504 15.531436881214 82 +60 8603 15.644153463876 82 +60 8745 15.831436867891 82 +60 8844 15.944153450177 82 +60 8916 16.114717547424 82 +60 8990 16.131436854594 82 +60 9093 16.24415343676 82 +60 9165 16.414717520222 82 +60 9239 16.431436843065 82 +60 9342 16.544153425628 82 +60 9409 16.714717495718 82 +60 9488 16.731436834223 82 +60 9591 16.844153417024 82 +60 9658 17.01471747394 82 +60 9737 17.031436828087 82 +60 9840 17.144153410931 82 +60 9907 17.314717454832 82 +60 9986 17.33143682466 82 +60 10089 17.444153407323 82 +60 10156 17.614717438392 82 +60 10235 17.631436823875 82 +60 10338 17.744153405804 82 +60 10405 17.914717422749 82 +60 10480 17.931436823866 82 +60 10579 18.044153404519 82 +60 10646 18.214717407098 82 +60 10717 18.231436823854 82 +60 10816 18.34415340323 82 +60 10879 18.514717392147 82 +60 10950 18.531436823849 82 +60 11049 18.644153401947 82 +60 11112 18.814717385083 82 +60 11183 18.831436823842 82 +60 11282 18.944153400662 82 +60 11345 19.11471738453 82 +60 11416 19.13143682383 82 +60 11515 19.244153399372 82 +60 11578 19.414717384789 82 +60 11649 19.431436823834 82 +60 11748 19.544153397973 82 +60 11811 19.71471738494 82 +60 11882 19.731436823812 82 +60 11981 19.844153395755 82 +60 12044 20.014717384776 82 +60 12119 20.031436823824 82 +60 12222 20.144153392654 82 +60 12285 20.314717384384 82 +60 12360 20.331436823783 82 +60 12463 20.444153388797 82 +60 12526 20.614717383808 82 +60 12601 20.631436823785 82 +60 12704 20.744153384171 82 +60 12767 20.914717383117 82 +60 12842 20.931436823825 82 +60 12945 21.044153378911 82 +60 13008 21.214717382339 82 +60 13083 21.231436823913 82 +60 13186 21.344153372963 82 +60 13249 21.514717381349 82 +60 13324 21.531436823952 82 +60 13427 21.644153366253 82 +60 13490 21.81471738019 82 +60 13565 21.831436823995 82 +60 13668 21.944153358856 82 +60 13731 22.114717378874 82 +60 13806 22.131436824039 82 +60 13909 22.244153350791 82 +60 13972 22.414717377522 82 +60 14047 22.431436824127 82 +60 14150 22.544153342123 82 +60 14213 22.714717376066 82 +60 14288 22.73143682417 82 +60 14391 22.844153333052 82 +60 14454 23.01471737451 82 +60 14529 23.031436824169 82 +60 14632 23.14415332347 82 +60 14695 23.314717372866 82 +60 14770 23.331436824195 82 +60 14873 23.444153313527 82 +60 14936 23.614717371257 82 +60 15011 23.631436824238 82 +60 15114 23.744153309221 82 +60 15172 23.914717369634 82 +60 15252 23.931436824212 82 +60 15355 24.044153304961 82 +60 15413 24.214717367961 82 +60 15493 24.231436824049 82 +60 15596 24.344153296734 82 +60 15654 24.514717366429 82 +60 15734 24.531436823944 82 +60 15837 24.644153289194 82 +60 15895 24.814717365061 82 +60 15975 24.831436823957 82 +60 16078 24.944153282619 82 +60 16136 25.114717363825 82 +60 16216 25.131436823934 82 +60 16319 25.244153277481 82 +60 16377 25.414717362755 82 +60 16457 25.431436823911 82 +60 16560 25.54415327434 82 +60 16618 25.71471736198 82 +60 16698 25.731436823855 82 +60 16801 25.844153273696 82 +60 16859 26.014717361437 82 +60 16939 26.031436822435 82 +60 17042 26.144153275957 82 +60 17100 26.314717361533 82 +60 17180 26.331436819514 82 +60 17283 26.444153281636 82 +60 17341 26.614717362396 82 +60 17421 26.631436815275 82 +60 17524 26.744153290495 82 +60 17582 26.914717364009 82 +60 17662 26.931436809646 82 +60 17765 27.044153302033 82 +60 17823 27.214717366345 82 +60 17890 27.231436802678 82 +60 17998 27.34415331576 82 +60 18056 27.514717369437 82 +60 18123 27.531436795041 82 +60 18231 27.644153330828 82 +60 18289 27.814717373228 82 +60 18356 27.83143678721 82 +60 18464 27.944153346916 82 +60 18522 28.11471737771 82 +60 18589 28.131436770655 82 +60 18697 28.244153363816 82 +60 18755 28.41471738295 82 +60 18822 28.431436747906 82 +60 18930 28.544153381372 82 +60 18988 28.714717388816 82 +60 19050 28.731436724087 82 +60 19163 28.844153399418 82 +60 19221 29.014717395373 82 +60 19283 29.031436699665 82 +60 19388 29.144153417837 82 +60 19441 29.314717402593 82 +60 19508 29.331436674765 82 +60 19613 29.444153436569 82 +60 19666 29.61471741041 82 +60 19733 29.631436649424 82 +60 19838 29.744153455545 82 +60 19891 29.914717418813 82 +60 19958 29.93143662341 82 +60 20063 30.044153474721 82 +60 20116 30.214717427759 82 +60 20183 30.231436596705 82 +60 20288 30.344153494113 82 +60 20346 30.514717437221 82 +60 20408 30.531436569374 82 +60 20513 30.644153513628 82 +60 20576 30.814717447201 82 +60 20628 30.831436541474 82 +60 20738 30.944153533271 82 +60 20801 31.114717457713 82 +60 20833 31.124559322913 82 +60 20857 31.131436513237 82 +60 20971 31.244153553001 82 +60 21034 31.414717468667 82 +60 21066 31.424559297163 82 +60 21090 31.431436484978 82 +60 21204 31.544153572835 82 +60 21267 31.7147174801 82 +60 21299 31.724559271431 82 +60 21323 31.731436456746 82 +60 21442 31.844153592699 82 +60 21500 32.014717491924 82 +60 21527 32.024559245722 82 +60 21556 32.031436428528 82 +60 21675 32.144153612639 82 +60 21733 32.31471750416 82 +60 21760 32.324559219895 82 +60 21789 32.331436400291 82 +60 21908 32.444153632704 82 +60 21966 32.61471751675 82 +60 21993 32.624559194111 82 +60 22022 32.631436372037 82 +60 22141 32.744153652819 82 +60 22199 32.914717529741 82 +60 22226 32.924559168331 82 +60 22255 32.9314363438 82 +60 22374 33.044153672958 82 +60 22432 33.214717543026 82 +60 22459 33.224559142569 82 +60 22488 33.231436315598 82 +60 22607 33.344153693134 82 +60 22665 33.514717556648 82 +60 22692 33.524559116789 82 +60 22721 33.531436287401 82 +60 22840 33.644153713368 82 +60 22921 33.824559091063 82 +60 22950 33.831436259307 82 +63 1052 5.693585502869 82 +63 1210 5.993585502869 82 +63 1388 6.293585502869 82 +63 1605 6.593585502869 82 +63 1822 6.893585502869 82 +63 2039 7.193585502869 82 +63 2256 7.493585502869 82 +63 2473 7.793585502869 82 +63 2690 8.093585502869 82 +63 2911 8.393585502869 82 +63 3136 8.693585502869 82 +63 3361 8.993585502869 82 +63 3586 9.293585502869 82 +63 3811 9.593585502869 82 +63 4036 9.893585502869 82 +63 4261 10.193585502869 82 +63 4486 10.493585502869 82 +63 4719 10.793585502869 82 +63 4952 11.093585502869 82 +63 5185 11.393585502869 82 +63 5422 11.693585502869 82 +63 5663 11.993585502869 82 +63 5904 12.293585502869 82 +63 6145 12.593585502869 82 +63 6386 12.893585502869 82 +63 6627 13.193585502869 82 +63 6868 13.493585502869 82 +63 7109 13.793585502869 82 +63 7350 14.093585502869 82 +63 7591 14.393585502869 82 +63 7832 14.693585502869 82 +63 8073 14.993585502869 82 +63 8314 15.293585502869 82 +63 8555 15.593585502869 82 +63 8796 15.893585502869 82 +63 9041 16.193585502869 82 +63 9290 16.493585502869 82 +63 9539 16.793585502869 82 +63 9788 17.093585502869 82 +63 10037 17.393585502869 82 +63 10286 17.693585502869 82 +63 10527 17.993585502869 82 +63 10764 18.293585502869 82 +63 10997 18.593585502869 82 +63 11230 18.893585502869 82 +63 11463 19.193585502869 82 +63 11696 19.493585502869 82 +63 11929 19.793585502869 82 +63 12170 20.093585502869 82 +63 12411 20.393585502869 82 +63 12652 20.693585502869 82 +63 12893 20.993585502869 82 +63 13134 21.293585502869 82 +63 13375 21.593585502869 82 +63 13616 21.893585502869 82 +63 13857 22.193585502869 82 +63 14098 22.493585502869 82 +63 14339 22.793585502869 82 +63 14580 23.093585502869 82 +63 14821 23.393585502869 82 +63 15062 23.693585502869 82 +63 15303 23.993585502869 82 +63 15544 24.293585502869 82 +63 15785 24.593585502869 82 +63 16026 24.893585502869 82 +63 16267 25.193585502869 82 +63 16508 25.493585502869 82 +63 16749 25.793585502869 82 +63 16990 26.093585502869 82 +63 17231 26.393585502869 82 +63 17472 26.693585502869 82 +63 17713 26.993585502869 82 +63 17946 27.293585502869 82 +63 18179 27.593585502869 82 +63 18412 27.893585502869 82 +63 18645 28.193585502869 82 +63 18878 28.493585502869 82 +63 19111 28.793585502869 82 +63 19336 29.093585502869 82 +63 19561 29.393585502869 82 +63 19786 29.693585502869 82 +63 20011 29.993585502869 82 +63 20236 30.293585502869 82 +63 20461 30.593585502869 82 +63 20686 30.893585502869 82 +63 20915 31.193585502869 82 +63 21148 31.493585502869 82 +63 21381 31.793585502869 82 +63 21614 32.093585502869 82 +63 21847 32.393585502869 82 +63 22080 32.693585502869 82 +63 22313 32.993585502869 82 +63 22546 33.293585502869 82 +63 22779 33.593585502869 82 +63 23008 33.893585502869 82 +62 1049 5.693585502869 82 +62 1207 5.993585502869 82 +62 1385 6.293585502869 82 +62 1602 6.593585502869 82 +62 1819 6.893585502869 82 +62 2036 7.193585502869 82 +62 2253 7.493585502869 82 +62 2470 7.793585502869 82 +62 2687 8.093585502869 82 +62 2908 8.393585502869 82 +62 3133 8.693585502869 82 +62 3358 8.993585502869 82 +62 3583 9.293585502869 82 +62 3808 9.593585502869 82 +62 4033 9.893585502869 82 +62 4258 10.193585502869 82 +62 4483 10.493585502869 82 +62 4716 10.793585502869 82 +62 4949 11.093585502869 82 +62 5182 11.393585502869 82 +62 5419 11.693585502869 82 +62 5660 11.993585502869 82 +62 5901 12.293585502869 82 +62 6142 12.593585502869 82 +62 6383 12.893585502869 82 +62 6624 13.193585502869 82 +62 6865 13.493585502869 82 +62 7106 13.793585502869 82 +62 7347 14.093585502869 82 +62 7588 14.393585502869 82 +62 7829 14.693585502869 82 +62 8070 14.993585502869 82 +62 8311 15.293585502869 82 +62 8552 15.593585502869 82 +62 8793 15.893585502869 82 +62 9038 16.193585502869 82 +62 9287 16.493585502869 82 +62 9536 16.793585502869 82 +62 9785 17.093585502869 82 +62 10034 17.393585502869 82 +62 10283 17.693585502869 82 +62 10524 17.993585502869 82 +62 10761 18.293585502869 82 +62 10994 18.593585502869 82 +62 11227 18.893585502869 82 +62 11460 19.193585502869 82 +62 11693 19.493585502869 82 +62 11926 19.793585502869 82 +62 12167 20.093585502869 82 +62 12408 20.393585502869 82 +62 12649 20.693585502869 82 +62 12890 20.993585502869 82 +62 13131 21.293585502869 82 +62 13372 21.593585502869 82 +62 13613 21.893585502869 82 +62 13854 22.193585502869 82 +62 14095 22.493585502869 82 +62 14336 22.793585502869 82 +62 14577 23.093585502869 82 +62 14818 23.393585502869 82 +62 15059 23.693585502869 82 +62 15300 23.993585502869 82 +62 15541 24.293585502869 82 +62 15782 24.593585502869 82 +62 16023 24.893585502869 82 +62 16264 25.193585502869 82 +62 16505 25.493585502869 82 +62 16746 25.793585502869 82 +62 16987 26.093585502869 82 +62 17228 26.393585502869 82 +62 17469 26.693585502869 82 +62 17710 26.993585502869 82 +62 17943 27.293585502869 82 +62 18176 27.593585502869 82 +62 18409 27.893585502869 82 +62 18642 28.193585502869 82 +62 18875 28.493585502869 82 +62 19108 28.793585502869 82 +62 19333 29.093585502869 82 +62 19558 29.393585502869 82 +62 19783 29.693585502869 82 +62 20008 29.993585502869 82 +62 20233 30.293585502869 82 +62 20458 30.593585502869 82 +62 20683 30.893585502869 82 +62 20912 31.193585502869 82 +62 21145 31.493585502869 82 +62 21378 31.793585502869 82 +62 21611 32.093585502869 82 +62 21844 32.393585502869 82 +62 22077 32.693585502869 82 +62 22310 32.993585502869 82 +62 22543 33.293585502869 82 +62 22776 33.593585502869 82 +62 23005 33.893585502869 82 +61 800 5.144153485014 82 +61 934 5.444153485053 82 +61 1092 5.744153485104 82 +61 1250 6.044153485165 82 +61 1432 6.344153485238 82 +61 1649 6.644153485325 82 +61 1866 6.944153485423 82 +61 2083 7.244153485541 82 +61 2300 7.544153485675 82 +61 2517 7.844153485822 82 +61 2734 8.144153485992 82 +61 2955 8.444153486181 82 +61 3180 8.744153486377 82 +61 3405 9.044153486579 82 +61 3630 9.344153486798 82 +61 3855 9.64415348701 82 +61 4080 9.944153487239 82 +61 4305 10.244153487473 82 +61 4530 10.544153487715 82 +61 4763 10.84415348791 82 +61 4996 11.144153487716 82 +61 5229 11.444153487147 82 +61 5376 11.631436919727 82 +61 5470 11.744153486335 82 +61 5617 11.931436918081 82 +61 5711 12.044153485511 82 +61 5858 12.231436916562 82 +61 5952 12.344153485033 82 +61 6099 12.531436915229 82 +61 6193 12.644153485073 82 +61 6340 12.831436914169 82 +61 6434 12.944153485645 82 +61 6581 13.131436913397 82 +61 6675 13.244153486741 82 +61 6822 13.431436912882 82 +61 6916 13.544153488359 82 +61 7063 13.731436912645 82 +61 7157 13.844153490496 82 +61 7304 14.03143691268 82 +61 7398 14.144153493127 82 +61 7545 14.33143691298 82 +61 7639 14.44415349625 82 +61 7786 14.631436913256 82 +61 7880 14.744153498886 82 +61 8027 14.931436907357 82 +61 8121 15.044153491181 82 +61 8268 15.231436894496 82 +61 8362 15.344153477658 82 +61 8504 15.531436881214 82 +61 8603 15.644153463876 82 +61 8745 15.831436867891 82 +61 8844 15.944153450177 82 +61 8916 16.114717547424 82 +61 8990 16.131436854594 82 +61 9093 16.24415343676 82 +61 9165 16.414717520222 82 +61 9239 16.431436843065 82 +61 9342 16.544153425628 82 +61 9409 16.714717495718 82 +61 9488 16.731436834223 82 +61 9591 16.844153417024 82 +61 9658 17.01471747394 82 +61 9737 17.031436828087 82 +61 9840 17.144153410931 82 +61 9907 17.314717454832 82 +61 9986 17.33143682466 82 +61 10089 17.444153407323 82 +61 10156 17.614717438392 82 +61 10235 17.631436823875 82 +61 10338 17.744153405804 82 +61 10405 17.914717422749 82 +61 10480 17.931436823866 82 +61 10579 18.044153404519 82 +61 10646 18.214717407098 82 +61 10717 18.231436823854 82 +61 10816 18.34415340323 82 +61 10879 18.514717392147 82 +61 10950 18.531436823849 82 +61 11049 18.644153401947 82 +61 11112 18.814717385083 82 +61 11183 18.831436823842 82 +61 11282 18.944153400662 82 +61 11345 19.11471738453 82 +61 11416 19.13143682383 82 +61 11515 19.244153399372 82 +61 11578 19.414717384789 82 +61 11649 19.431436823834 82 +61 11748 19.544153397973 82 +61 11811 19.71471738494 82 +61 11882 19.731436823812 82 +61 11981 19.844153395755 82 +61 12044 20.014717384776 82 +61 12119 20.031436823824 82 +61 12222 20.144153392654 82 +61 12285 20.314717384384 82 +61 12360 20.331436823783 82 +61 12463 20.444153388797 82 +61 12526 20.614717383808 82 +61 12601 20.631436823785 82 +61 12704 20.744153384171 82 +61 12767 20.914717383117 82 +61 12842 20.931436823825 82 +61 12945 21.044153378911 82 +61 13008 21.214717382339 82 +61 13083 21.231436823913 82 +61 13186 21.344153372963 82 +61 13249 21.514717381349 82 +61 13324 21.531436823952 82 +61 13427 21.644153366253 82 +61 13490 21.81471738019 82 +61 13565 21.831436823995 82 +61 13668 21.944153358856 82 +61 13731 22.114717378874 82 +61 13806 22.131436824039 82 +61 13909 22.244153350791 82 +61 13972 22.414717377522 82 +61 14047 22.431436824127 82 +61 14150 22.544153342123 82 +61 14213 22.714717376066 82 +61 14288 22.73143682417 82 +61 14391 22.844153333052 82 +61 14454 23.01471737451 82 +61 14529 23.031436824169 82 +61 14632 23.14415332347 82 +61 14695 23.314717372866 82 +61 14770 23.331436824195 82 +61 14873 23.444153313527 82 +61 14936 23.614717371257 82 +61 15011 23.631436824238 82 +61 15114 23.744153309221 82 +61 15172 23.914717369634 82 +61 15252 23.931436824212 82 +61 15355 24.044153304961 82 +61 15413 24.214717367961 82 +61 15493 24.231436824049 82 +61 15596 24.344153296734 82 +61 15654 24.514717366429 82 +61 15734 24.531436823944 82 +61 15837 24.644153289194 82 +61 15895 24.814717365061 82 +61 15975 24.831436823957 82 +61 16078 24.944153282619 82 +61 16136 25.114717363825 82 +61 16216 25.131436823934 82 +61 16319 25.244153277481 82 +61 16377 25.414717362755 82 +61 16457 25.431436823911 82 +61 16560 25.54415327434 82 +61 16618 25.71471736198 82 +61 16698 25.731436823855 82 +61 16801 25.844153273696 82 +61 16859 26.014717361437 82 +61 16939 26.031436822435 82 +61 17042 26.144153275957 82 +61 17100 26.314717361533 82 +61 17180 26.331436819514 82 +61 17283 26.444153281636 82 +61 17341 26.614717362396 82 +61 17421 26.631436815275 82 +61 17524 26.744153290495 82 +61 17582 26.914717364009 82 +61 17662 26.931436809646 82 +61 17765 27.044153302033 82 +61 17823 27.214717366345 82 +61 17890 27.231436802678 82 +61 17998 27.34415331576 82 +61 18056 27.514717369437 82 +61 18123 27.531436795041 82 +61 18231 27.644153330828 82 +61 18289 27.814717373228 82 +61 18356 27.83143678721 82 +61 18464 27.944153346916 82 +61 18522 28.11471737771 82 +61 18589 28.131436770655 82 +61 18697 28.244153363816 82 +61 18755 28.41471738295 82 +61 18822 28.431436747906 82 +61 18930 28.544153381372 82 +61 18988 28.714717388816 82 +61 19050 28.731436724087 82 +61 19163 28.844153399418 82 +61 19221 29.014717395373 82 +61 19283 29.031436699665 82 +61 19388 29.144153417837 82 +61 19441 29.314717402593 82 +61 19508 29.331436674765 82 +61 19613 29.444153436569 82 +61 19666 29.61471741041 82 +61 19733 29.631436649424 82 +61 19838 29.744153455545 82 +61 19891 29.914717418813 82 +61 19958 29.93143662341 82 +61 20063 30.044153474721 82 +61 20116 30.214717427759 82 +61 20183 30.231436596705 82 +61 20288 30.344153494113 82 +61 20346 30.514717437221 82 +61 20408 30.531436569374 82 +61 20513 30.644153513628 82 +61 20576 30.814717447201 82 +61 20628 30.831436541474 82 +61 20738 30.944153533271 82 +61 20801 31.114717457713 82 +61 20833 31.124559322913 82 +61 20857 31.131436513237 82 +61 20971 31.244153553001 82 +61 21034 31.414717468667 82 +61 21066 31.424559297163 82 +61 21090 31.431436484978 82 +61 21204 31.544153572835 82 +61 21267 31.7147174801 82 +61 21299 31.724559271431 82 +61 21323 31.731436456746 82 +61 21442 31.844153592699 82 +61 21500 32.014717491924 82 +61 21527 32.024559245722 82 +61 21556 32.031436428528 82 +61 21675 32.144153612639 82 +61 21733 32.31471750416 82 +61 21760 32.324559219895 82 +61 21789 32.331436400291 82 +61 21908 32.444153632704 82 +61 21966 32.61471751675 82 +61 21993 32.624559194111 82 +61 22022 32.631436372037 82 +61 22141 32.744153652819 82 +61 22199 32.914717529741 82 +61 22226 32.924559168331 82 +61 22255 32.9314363438 82 +61 22374 33.044153672958 82 +61 22432 33.214717543026 82 +61 22459 33.224559142569 82 +61 22488 33.231436315598 82 +61 22607 33.344153693134 82 +61 22665 33.514717556648 82 +61 22692 33.524559116789 82 +61 22721 33.531436287401 82 +61 22840 33.644153713368 82 +61 22921 33.824559091063 82 +61 22950 33.831436259307 82 +55 778 5.1 0 +55 778 5.1 0 +55 793 5.143993485014 0 +55 793 5.143993485014 0 +55 799 5.144153485014 0 +55 799 5.144153485014 0 +55 927 5.443993485053 0 +55 927 5.443993485053 0 +55 933 5.444153485053 0 +55 933 5.444153485053 0 +55 1053 5.693585502869 0 +55 1053 5.693585502869 0 +55 1060 5.693745502869 0 +55 1060 5.693745502869 0 +55 1085 5.743993485104 0 +55 1085 5.743993485104 0 +55 1091 5.744153485104 0 +55 1091 5.744153485104 0 +55 1211 5.993585502869 0 +55 1211 5.993585502869 0 +55 1218 5.993745502869 0 +55 1218 5.993745502869 0 +55 1243 6.043993485165 0 +55 1243 6.043993485165 0 +55 1249 6.044153485165 0 +55 1249 6.044153485165 0 +55 1389 6.293585502869 0 +55 1389 6.293585502869 0 +55 1397 6.293745502869 0 +55 1397 6.293745502869 0 +55 1424 6.343993485238 0 +55 1424 6.343993485238 0 +55 1431 6.344153485238 0 +55 1431 6.344153485238 0 +55 1606 6.593585502869 0 +55 1606 6.593585502869 0 +55 1614 6.593745502869 0 +55 1614 6.593745502869 0 +55 1641 6.643993485325 0 +55 1641 6.643993485325 0 +55 1648 6.644153485325 0 +55 1648 6.644153485325 0 +55 1823 6.893585502869 0 +55 1823 6.893585502869 0 +55 1831 6.893745502869 0 +55 1831 6.893745502869 0 +55 1858 6.943993485423 0 +55 1858 6.943993485423 0 +55 1865 6.944153485423 0 +55 1865 6.944153485423 0 +55 2040 7.193585502869 0 +55 2040 7.193585502869 0 +55 2048 7.193745502869 0 +55 2048 7.193745502869 0 +55 2075 7.243993485541 0 +55 2075 7.243993485541 0 +55 2082 7.244153485541 0 +55 2082 7.244153485541 0 +55 2257 7.493585502869 0 +55 2257 7.493585502869 0 +55 2265 7.493745502869 0 +55 2265 7.493745502869 0 +55 2292 7.543993485675 0 +55 2292 7.543993485675 0 +55 2299 7.544153485675 0 +55 2299 7.544153485675 0 +55 2474 7.793585502869 0 +55 2474 7.793585502869 0 +55 2482 7.793745502869 0 +55 2482 7.793745502869 0 +55 2509 7.843993485822 0 +55 2509 7.843993485822 0 +55 2516 7.844153485822 0 +55 2516 7.844153485822 0 +55 2691 8.093585502869 0 +55 2691 8.093585502869 0 +55 2699 8.093745502869 0 +55 2699 8.093745502869 0 +55 2726 8.143993485992 0 +55 2726 8.143993485992 0 +55 2733 8.144153485992 0 +55 2733 8.144153485992 0 +55 2912 8.393585502869 0 +55 2912 8.393585502869 0 +55 2920 8.393745502869 0 +55 2920 8.393745502869 0 +55 2947 8.443993486181 0 +55 2947 8.443993486181 0 +55 2954 8.444153486181 0 +55 2954 8.444153486181 0 +55 3137 8.693585502869 0 +55 3137 8.693585502869 0 +55 3145 8.693745502869 0 +55 3145 8.693745502869 0 +55 3172 8.743993486377 0 +55 3172 8.743993486377 0 +55 3179 8.744153486377 0 +55 3179 8.744153486377 0 +55 3362 8.993585502869 0 +55 3362 8.993585502869 0 +55 3370 8.993745502869 0 +55 3370 8.993745502869 0 +55 3397 9.043993486579 0 +55 3397 9.043993486579 0 +55 3404 9.044153486579 0 +55 3404 9.044153486579 0 +55 3587 9.293585502869 0 +55 3587 9.293585502869 0 +55 3595 9.293745502869 0 +55 3595 9.293745502869 0 +55 3622 9.343993486798 0 +55 3622 9.343993486798 0 +55 3629 9.344153486798 0 +55 3629 9.344153486798 0 +55 3812 9.593585502869 0 +55 3812 9.593585502869 0 +55 3820 9.593745502869 0 +55 3820 9.593745502869 0 +55 3847 9.64399348701 0 +55 3847 9.64399348701 0 +55 3854 9.64415348701 0 +55 3854 9.64415348701 0 +55 4037 9.893585502869 0 +55 4037 9.893585502869 0 +55 4045 9.893745502869 0 +55 4045 9.893745502869 0 +55 4072 9.943993487239 0 +55 4072 9.943993487239 0 +55 4079 9.944153487239 0 +55 4079 9.944153487239 0 +55 4262 10.193585502869 0 +55 4262 10.193585502869 0 +55 4270 10.193745502869 0 +55 4270 10.193745502869 0 +55 4297 10.243993487473 0 +55 4297 10.243993487473 0 +55 4304 10.244153487473 0 +55 4304 10.244153487473 0 +55 4487 10.493585502869 0 +55 4487 10.493585502869 0 +55 4495 10.493745502869 0 +55 4495 10.493745502869 0 +55 4522 10.543993487715 0 +55 4522 10.543993487715 0 +55 4529 10.544153487715 0 +55 4529 10.544153487715 0 +55 4720 10.793585502869 0 +55 4720 10.793585502869 0 +55 4728 10.793745502869 0 +55 4728 10.793745502869 0 +55 4755 10.84399348791 0 +55 4755 10.84399348791 0 +55 4762 10.84415348791 0 +55 4762 10.84415348791 0 +55 4953 11.093585502869 0 +55 4953 11.093585502869 0 +55 4961 11.093745502869 0 +55 4961 11.093745502869 0 +55 4988 11.143993487716 0 +55 4988 11.143993487716 0 +55 4995 11.144153487716 0 +55 4995 11.144153487716 0 +55 5119 11.331276921478 0 +55 5119 11.331276921478 0 +55 5142 11.331436921478 0 +55 5142 11.331436921478 0 +55 5186 11.393585502869 0 +55 5186 11.393585502869 0 +55 5194 11.393745502869 0 +55 5194 11.393745502869 0 +55 5221 11.443993487147 0 +55 5221 11.443993487147 0 +55 5228 11.444153487147 0 +55 5228 11.444153487147 0 +55 5352 11.631276919727 0 +55 5352 11.631276919727 0 +55 5375 11.631436919727 0 +55 5375 11.631436919727 0 +55 5423 11.693585502869 0 +55 5423 11.693585502869 0 +55 5431 11.693745502869 0 +55 5431 11.693745502869 0 +55 5462 11.743993486335 0 +55 5462 11.743993486335 0 +55 5469 11.744153486335 0 +55 5469 11.744153486335 0 +55 5593 11.931276918081 0 +55 5593 11.931276918081 0 +55 5616 11.931436918081 0 +55 5616 11.931436918081 0 +55 5664 11.993585502869 0 +55 5664 11.993585502869 0 +55 5672 11.993745502869 0 +55 5672 11.993745502869 0 +55 5703 12.043993485511 0 +55 5703 12.043993485511 0 +55 5710 12.044153485511 0 +55 5710 12.044153485511 0 +55 5834 12.231276916562 0 +55 5834 12.231276916562 0 +55 5857 12.231436916562 0 +55 5857 12.231436916562 0 +55 5905 12.293585502869 0 +55 5905 12.293585502869 0 +55 5913 12.293745502869 0 +55 5913 12.293745502869 0 +55 5944 12.343993485033 0 +55 5944 12.343993485033 0 +55 5951 12.344153485033 0 +55 5951 12.344153485033 0 +55 6075 12.531276915229 0 +55 6075 12.531276915229 0 +55 6098 12.531436915229 0 +55 6098 12.531436915229 0 +55 6146 12.593585502869 0 +55 6146 12.593585502869 0 +55 6154 12.593745502869 0 +55 6154 12.593745502869 0 +55 6185 12.643993485073 0 +55 6185 12.643993485073 0 +55 6192 12.644153485073 0 +55 6192 12.644153485073 0 +55 6316 12.831276914169 0 +55 6316 12.831276914169 0 +55 6339 12.831436914169 0 +55 6339 12.831436914169 0 +55 6387 12.893585502869 0 +55 6387 12.893585502869 0 +55 6395 12.893745502869 0 +55 6395 12.893745502869 0 +55 6426 12.943993485645 0 +55 6426 12.943993485645 0 +55 6433 12.944153485645 0 +55 6433 12.944153485645 0 +55 6557 13.131276913397 0 +55 6557 13.131276913397 0 +55 6580 13.131436913397 0 +55 6580 13.131436913397 0 +55 6628 13.193585502869 0 +55 6628 13.193585502869 0 +55 6636 13.193745502869 0 +55 6636 13.193745502869 0 +55 6667 13.243993486741 0 +55 6667 13.243993486741 0 +55 6674 13.244153486741 0 +55 6674 13.244153486741 0 +55 6798 13.431276912882 0 +55 6798 13.431276912882 0 +55 6821 13.431436912882 0 +55 6821 13.431436912882 0 +55 6869 13.493585502869 0 +55 6869 13.493585502869 0 +55 6877 13.493745502869 0 +55 6877 13.493745502869 0 +55 6908 13.543993488359 0 +55 6908 13.543993488359 0 +55 6915 13.544153488359 0 +55 6915 13.544153488359 0 +55 7039 13.731276912645 0 +55 7039 13.731276912645 0 +55 7062 13.731436912645 0 +55 7062 13.731436912645 0 +55 7110 13.793585502869 0 +55 7110 13.793585502869 0 +55 7118 13.793745502869 0 +55 7118 13.793745502869 0 +55 7149 13.843993490496 0 +55 7149 13.843993490496 0 +55 7156 13.844153490496 0 +55 7156 13.844153490496 0 +55 7280 14.03127691268 0 +55 7280 14.03127691268 0 +55 7303 14.03143691268 0 +55 7303 14.03143691268 0 +55 7351 14.093585502869 0 +55 7351 14.093585502869 0 +55 7359 14.093745502869 0 +55 7359 14.093745502869 0 +55 7390 14.143993493127 0 +55 7390 14.143993493127 0 +55 7397 14.144153493127 0 +55 7397 14.144153493127 0 +55 7521 14.33127691298 0 +55 7521 14.33127691298 0 +55 7544 14.33143691298 0 +55 7544 14.33143691298 0 +55 7592 14.393585502869 0 +55 7592 14.393585502869 0 +55 7600 14.393745502869 0 +55 7600 14.393745502869 0 +55 7631 14.44399349625 0 +55 7631 14.44399349625 0 +55 7638 14.44415349625 0 +55 7638 14.44415349625 0 +55 7762 14.631276913256 0 +55 7762 14.631276913256 0 +55 7785 14.631436913256 0 +55 7785 14.631436913256 0 +55 7833 14.693585502869 0 +55 7833 14.693585502869 0 +55 7841 14.693745502869 0 +55 7841 14.693745502869 0 +55 7872 14.743993498886 0 +55 7872 14.743993498886 0 +55 7879 14.744153498886 0 +55 7879 14.744153498886 0 +55 8003 14.931276907357 0 +55 8003 14.931276907357 0 +55 8026 14.931436907357 0 +55 8026 14.931436907357 0 +55 8074 14.993585502869 0 +55 8074 14.993585502869 0 +55 8082 14.993745502869 0 +55 8082 14.993745502869 0 +55 8113 15.043993491181 0 +55 8113 15.043993491181 0 +55 8120 15.044153491181 0 +55 8120 15.044153491181 0 +55 8244 15.231276894496 0 +55 8244 15.231276894496 0 +55 8267 15.231436894496 0 +55 8267 15.231436894496 0 +55 8315 15.293585502869 0 +55 8315 15.293585502869 0 +55 8323 15.293745502869 0 +55 8323 15.293745502869 0 +55 8354 15.343993477658 0 +55 8354 15.343993477658 0 +55 8361 15.344153477658 0 +55 8361 15.344153477658 0 +55 8484 15.531276881214 0 +55 8484 15.531276881214 0 +55 8503 15.531436881214 0 +55 8503 15.531436881214 0 +55 8556 15.593585502869 0 +55 8556 15.593585502869 0 +55 8564 15.593745502869 0 +55 8564 15.593745502869 0 +55 8595 15.643993463876 0 +55 8595 15.643993463876 0 +55 8602 15.644153463876 0 +55 8602 15.644153463876 0 +55 8725 15.831276867891 0 +55 8725 15.831276867891 0 +55 8744 15.831436867891 0 +55 8744 15.831436867891 0 +55 8797 15.893585502869 0 +55 8797 15.893585502869 0 +55 8805 15.893745502869 0 +55 8805 15.893745502869 0 +55 8836 15.943993450177 0 +55 8836 15.943993450177 0 +55 8843 15.944153450177 0 +55 8843 15.944153450177 0 +55 8892 16.114557547424 0 +55 8892 16.114557547424 0 +55 8915 16.114717547424 0 +55 8915 16.114717547424 0 +55 8970 16.131276854594 0 +55 8970 16.131276854594 0 +55 8989 16.131436854594 0 +55 8989 16.131436854594 0 +55 9042 16.193585502869 0 +55 9042 16.193585502869 0 +55 9050 16.193745502869 0 +55 9050 16.193745502869 0 +55 9085 16.24399343676 0 +55 9085 16.24399343676 0 +55 9092 16.24415343676 0 +55 9092 16.24415343676 0 +55 9141 16.414557520222 0 +55 9141 16.414557520222 0 +55 9164 16.414717520222 0 +55 9164 16.414717520222 0 +55 9219 16.431276843065 0 +55 9219 16.431276843065 0 +55 9238 16.431436843065 0 +55 9238 16.431436843065 0 +55 9291 16.493585502869 0 +55 9291 16.493585502869 0 +55 9299 16.493745502869 0 +55 9299 16.493745502869 0 +55 9334 16.543993425628 0 +55 9334 16.543993425628 0 +55 9341 16.544153425628 0 +55 9341 16.544153425628 0 +55 9389 16.714557495718 0 +55 9389 16.714557495718 0 +55 9408 16.714717495718 0 +55 9408 16.714717495718 0 +55 9468 16.731276834223 0 +55 9468 16.731276834223 0 +55 9487 16.731436834223 0 +55 9487 16.731436834223 0 +55 9540 16.793585502869 0 +55 9540 16.793585502869 0 +55 9548 16.793745502869 0 +55 9548 16.793745502869 0 +55 9583 16.843993417024 0 +55 9583 16.843993417024 0 +55 9590 16.844153417024 0 +55 9590 16.844153417024 0 +55 9638 17.01455747394 0 +55 9638 17.01455747394 0 +55 9657 17.01471747394 0 +55 9657 17.01471747394 0 +55 9717 17.031276828087 0 +55 9717 17.031276828087 0 +55 9736 17.031436828087 0 +55 9736 17.031436828087 0 +55 9789 17.093585502869 0 +55 9789 17.093585502869 0 +55 9797 17.093745502869 0 +55 9797 17.093745502869 0 +55 9832 17.143993410931 0 +55 9832 17.143993410931 0 +55 9839 17.144153410931 0 +55 9839 17.144153410931 0 +55 9887 17.314557454832 0 +55 9887 17.314557454832 0 +55 9906 17.314717454832 0 +55 9906 17.314717454832 0 +55 9966 17.33127682466 0 +55 9966 17.33127682466 0 +55 9985 17.33143682466 0 +55 9985 17.33143682466 0 +55 10038 17.393585502869 0 +55 10038 17.393585502869 0 +55 10046 17.393745502869 0 +55 10046 17.393745502869 0 +55 10081 17.443993407323 0 +55 10081 17.443993407323 0 +55 10088 17.444153407323 0 +55 10088 17.444153407323 0 +55 10136 17.614557438392 0 +55 10136 17.614557438392 0 +55 10155 17.614717438392 0 +55 10155 17.614717438392 0 +55 10215 17.631276823875 0 +55 10215 17.631276823875 0 +55 10234 17.631436823875 0 +55 10234 17.631436823875 0 +55 10287 17.693585502869 0 +55 10287 17.693585502869 0 +55 10295 17.693745502869 0 +55 10295 17.693745502869 0 +55 10330 17.743993405804 0 +55 10330 17.743993405804 0 +55 10337 17.744153405804 0 +55 10337 17.744153405804 0 +55 10385 17.914557422749 0 +55 10385 17.914557422749 0 +55 10404 17.914717422749 0 +55 10404 17.914717422749 0 +55 10460 17.931276823866 0 +55 10460 17.931276823866 0 +55 10479 17.931436823866 0 +55 10479 17.931436823866 0 +55 10528 17.993585502869 0 +55 10528 17.993585502869 0 +55 10536 17.993745502869 0 +55 10536 17.993745502869 0 +55 10571 18.043993404519 0 +55 10571 18.043993404519 0 +55 10578 18.044153404519 0 +55 10578 18.044153404519 0 +55 10626 18.214557407098 0 +55 10626 18.214557407098 0 +55 10645 18.214717407098 0 +55 10645 18.214717407098 0 +55 10697 18.231276823854 0 +55 10697 18.231276823854 0 +55 10716 18.231436823854 0 +55 10716 18.231436823854 0 +55 10765 18.293585502869 0 +55 10765 18.293585502869 0 +55 10773 18.293745502869 0 +55 10773 18.293745502869 0 +55 10808 18.34399340323 0 +55 10808 18.34399340323 0 +55 10815 18.34415340323 0 +55 10815 18.34415340323 0 +55 10859 18.514557392147 0 +55 10859 18.514557392147 0 +55 10878 18.514717392147 0 +55 10878 18.514717392147 0 +55 10930 18.531276823849 0 +55 10930 18.531276823849 0 +55 10949 18.531436823849 0 +55 10949 18.531436823849 0 +55 10998 18.593585502869 0 +55 10998 18.593585502869 0 +55 11006 18.593745502869 0 +55 11006 18.593745502869 0 +55 11041 18.643993401947 0 +55 11041 18.643993401947 0 +55 11048 18.644153401947 0 +55 11048 18.644153401947 0 +55 11092 18.814557385083 0 +55 11092 18.814557385083 0 +55 11111 18.814717385083 0 +55 11111 18.814717385083 0 +55 11163 18.831276823842 0 +55 11163 18.831276823842 0 +55 11182 18.831436823842 0 +55 11182 18.831436823842 0 +55 11231 18.893585502869 0 +55 11231 18.893585502869 0 +55 11239 18.893745502869 0 +55 11239 18.893745502869 0 +55 11274 18.943993400662 0 +55 11274 18.943993400662 0 +55 11281 18.944153400662 0 +55 11281 18.944153400662 0 +55 11325 19.11455738453 0 +55 11325 19.11455738453 0 +55 11344 19.11471738453 0 +55 11344 19.11471738453 0 +55 11396 19.13127682383 0 +55 11396 19.13127682383 0 +55 11415 19.13143682383 0 +55 11415 19.13143682383 0 +55 11464 19.193585502869 0 +55 11464 19.193585502869 0 +55 11472 19.193745502869 0 +55 11472 19.193745502869 0 +55 11507 19.243993399372 0 +55 11507 19.243993399372 0 +55 11514 19.244153399372 0 +55 11514 19.244153399372 0 +55 11558 19.414557384789 0 +55 11558 19.414557384789 0 +55 11577 19.414717384789 0 +55 11577 19.414717384789 0 +55 11629 19.431276823834 0 +55 11629 19.431276823834 0 +55 11648 19.431436823834 0 +55 11648 19.431436823834 0 +55 11697 19.493585502869 0 +55 11697 19.493585502869 0 +55 11705 19.493745502869 0 +55 11705 19.493745502869 0 +55 11740 19.543993397973 0 +55 11740 19.543993397973 0 +55 11747 19.544153397973 0 +55 11747 19.544153397973 0 +55 11791 19.71455738494 0 +55 11791 19.71455738494 0 +55 11810 19.71471738494 0 +55 11810 19.71471738494 0 +55 11862 19.731276823812 0 +55 11862 19.731276823812 0 +55 11881 19.731436823812 0 +55 11881 19.731436823812 0 +55 11930 19.793585502869 0 +55 11930 19.793585502869 0 +55 11938 19.793745502869 0 +55 11938 19.793745502869 0 +55 11973 19.843993395755 0 +55 11973 19.843993395755 0 +55 11980 19.844153395755 0 +55 11980 19.844153395755 0 +55 12024 20.014557384776 0 +55 12024 20.014557384776 0 +55 12043 20.014717384776 0 +55 12043 20.014717384776 0 +55 12099 20.031276823824 0 +55 12099 20.031276823824 0 +55 12118 20.031436823824 0 +55 12118 20.031436823824 0 +55 12171 20.093585502869 0 +55 12171 20.093585502869 0 +55 12179 20.093745502869 0 +55 12179 20.093745502869 0 +55 12214 20.143993392654 0 +55 12214 20.143993392654 0 +55 12221 20.144153392654 0 +55 12221 20.144153392654 0 +55 12265 20.314557384384 0 +55 12265 20.314557384384 0 +55 12284 20.314717384384 0 +55 12284 20.314717384384 0 +55 12340 20.331276823783 0 +55 12340 20.331276823783 0 +55 12359 20.331436823783 0 +55 12359 20.331436823783 0 +55 12412 20.393585502869 0 +55 12412 20.393585502869 0 +55 12420 20.393745502869 0 +55 12420 20.393745502869 0 +55 12455 20.443993388797 0 +55 12455 20.443993388797 0 +55 12462 20.444153388797 0 +55 12462 20.444153388797 0 +55 12506 20.614557383808 0 +55 12506 20.614557383808 0 +55 12525 20.614717383808 0 +55 12525 20.614717383808 0 +55 12581 20.631276823785 0 +55 12581 20.631276823785 0 +55 12600 20.631436823785 0 +55 12600 20.631436823785 0 +55 12653 20.693585502869 0 +55 12653 20.693585502869 0 +55 12661 20.693745502869 0 +55 12661 20.693745502869 0 +55 12696 20.743993384171 0 +55 12696 20.743993384171 0 +55 12703 20.744153384171 0 +55 12703 20.744153384171 0 +55 12747 20.914557383117 0 +55 12747 20.914557383117 0 +55 12766 20.914717383117 0 +55 12766 20.914717383117 0 +55 12822 20.931276823825 0 +55 12822 20.931276823825 0 +55 12841 20.931436823825 0 +55 12841 20.931436823825 0 +55 12894 20.993585502869 0 +55 12894 20.993585502869 0 +55 12902 20.993745502869 0 +55 12902 20.993745502869 0 +55 12937 21.043993378911 0 +55 12937 21.043993378911 0 +55 12944 21.044153378911 0 +55 12944 21.044153378911 0 +55 12988 21.214557382339 0 +55 12988 21.214557382339 0 +55 13007 21.214717382339 0 +55 13007 21.214717382339 0 +55 13063 21.231276823913 0 +55 13063 21.231276823913 0 +55 13082 21.231436823913 0 +55 13082 21.231436823913 0 +55 13135 21.293585502869 0 +55 13135 21.293585502869 0 +55 13143 21.293745502869 0 +55 13143 21.293745502869 0 +55 13178 21.343993372963 0 +55 13178 21.343993372963 0 +55 13185 21.344153372963 0 +55 13185 21.344153372963 0 +55 13229 21.514557381349 0 +55 13229 21.514557381349 0 +55 13248 21.514717381349 0 +55 13248 21.514717381349 0 +55 13304 21.531276823952 0 +55 13304 21.531276823952 0 +55 13323 21.531436823952 0 +55 13323 21.531436823952 0 +55 13376 21.593585502869 0 +55 13376 21.593585502869 0 +55 13384 21.593745502869 0 +55 13384 21.593745502869 0 +55 13419 21.643993366253 0 +55 13419 21.643993366253 0 +55 13426 21.644153366253 0 +55 13426 21.644153366253 0 +55 13470 21.81455738019 0 +55 13470 21.81455738019 0 +55 13489 21.81471738019 0 +55 13489 21.81471738019 0 +55 13545 21.831276823995 0 +55 13545 21.831276823995 0 +55 13564 21.831436823995 0 +55 13564 21.831436823995 0 +55 13617 21.893585502869 0 +55 13617 21.893585502869 0 +55 13625 21.893745502869 0 +55 13625 21.893745502869 0 +55 13660 21.943993358856 0 +55 13660 21.943993358856 0 +55 13667 21.944153358856 0 +55 13667 21.944153358856 0 +55 13711 22.114557378874 0 +55 13711 22.114557378874 0 +55 13730 22.114717378874 0 +55 13730 22.114717378874 0 +55 13786 22.131276824039 0 +55 13786 22.131276824039 0 +55 13805 22.131436824039 0 +55 13805 22.131436824039 0 +55 13858 22.193585502869 0 +55 13858 22.193585502869 0 +55 13866 22.193745502869 0 +55 13866 22.193745502869 0 +55 13901 22.243993350791 0 +55 13901 22.243993350791 0 +55 13908 22.244153350791 0 +55 13908 22.244153350791 0 +55 13952 22.414557377522 0 +55 13952 22.414557377522 0 +55 13971 22.414717377522 0 +55 13971 22.414717377522 0 +55 14027 22.431276824127 0 +55 14027 22.431276824127 0 +55 14046 22.431436824127 0 +55 14046 22.431436824127 0 +55 14099 22.493585502869 0 +55 14099 22.493585502869 0 +55 14107 22.493745502869 0 +55 14107 22.493745502869 0 +55 14142 22.543993342123 0 +55 14142 22.543993342123 0 +55 14149 22.544153342123 0 +55 14149 22.544153342123 0 +55 14193 22.714557376066 0 +55 14193 22.714557376066 0 +55 14212 22.714717376066 0 +55 14212 22.714717376066 0 +55 14268 22.73127682417 0 +55 14268 22.73127682417 0 +55 14287 22.73143682417 0 +55 14287 22.73143682417 0 +55 14340 22.793585502869 0 +55 14340 22.793585502869 0 +55 14348 22.793745502869 0 +55 14348 22.793745502869 0 +55 14383 22.843993333052 0 +55 14383 22.843993333052 0 +55 14390 22.844153333052 0 +55 14390 22.844153333052 0 +55 14434 23.01455737451 0 +55 14434 23.01455737451 0 +55 14453 23.01471737451 0 +55 14453 23.01471737451 0 +55 14509 23.031276824169 0 +55 14509 23.031276824169 0 +55 14528 23.031436824169 0 +55 14528 23.031436824169 0 +55 14581 23.093585502869 0 +55 14581 23.093585502869 0 +55 14589 23.093745502869 0 +55 14589 23.093745502869 0 +55 14624 23.14399332347 0 +55 14624 23.14399332347 0 +55 14631 23.14415332347 0 +55 14631 23.14415332347 0 +55 14675 23.314557372866 0 +55 14675 23.314557372866 0 +55 14694 23.314717372866 0 +55 14694 23.314717372866 0 +55 14750 23.331276824195 0 +55 14750 23.331276824195 0 +55 14769 23.331436824195 0 +55 14769 23.331436824195 0 +55 14822 23.393585502869 0 +55 14822 23.393585502869 0 +55 14830 23.393745502869 0 +55 14830 23.393745502869 0 +55 14865 23.443993313527 0 +55 14865 23.443993313527 0 +55 14872 23.444153313527 0 +55 14872 23.444153313527 0 +55 14916 23.614557371257 0 +55 14916 23.614557371257 0 +55 14935 23.614717371257 0 +55 14935 23.614717371257 0 +55 14991 23.631276824238 0 +55 14991 23.631276824238 0 +55 15010 23.631436824238 0 +55 15010 23.631436824238 0 +55 15063 23.693585502869 0 +55 15063 23.693585502869 0 +55 15071 23.693745502869 0 +55 15071 23.693745502869 0 +55 15106 23.743993309221 0 +55 15106 23.743993309221 0 +55 15113 23.744153309221 0 +55 15113 23.744153309221 0 +55 15156 23.914557369634 0 +55 15156 23.914557369634 0 +55 15171 23.914717369634 0 +55 15171 23.914717369634 0 +55 15232 23.931276824212 0 +55 15232 23.931276824212 0 +55 15251 23.931436824212 0 +55 15251 23.931436824212 0 +55 15304 23.993585502869 0 +55 15304 23.993585502869 0 +55 15312 23.993745502869 0 +55 15312 23.993745502869 0 +55 15347 24.043993304961 0 +55 15347 24.043993304961 0 +55 15354 24.044153304961 0 +55 15354 24.044153304961 0 +55 15397 24.214557367961 0 +55 15397 24.214557367961 0 +55 15412 24.214717367961 0 +55 15412 24.214717367961 0 +55 15473 24.231276824049 0 +55 15473 24.231276824049 0 +55 15492 24.231436824049 0 +55 15492 24.231436824049 0 +55 15545 24.293585502869 0 +55 15545 24.293585502869 0 +55 15553 24.293745502869 0 +55 15553 24.293745502869 0 +55 15588 24.343993296734 0 +55 15588 24.343993296734 0 +55 15595 24.344153296734 0 +55 15595 24.344153296734 0 +55 15638 24.514557366429 0 +55 15638 24.514557366429 0 +55 15653 24.514717366429 0 +55 15653 24.514717366429 0 +55 15714 24.531276823944 0 +55 15714 24.531276823944 0 +55 15733 24.531436823944 0 +55 15733 24.531436823944 0 +55 15786 24.593585502869 0 +55 15786 24.593585502869 0 +55 15794 24.593745502869 0 +55 15794 24.593745502869 0 +55 15829 24.643993289194 0 +55 15829 24.643993289194 0 +55 15836 24.644153289194 0 +55 15836 24.644153289194 0 +55 15879 24.814557365061 0 +55 15879 24.814557365061 0 +55 15894 24.814717365061 0 +55 15894 24.814717365061 0 +55 15955 24.831276823957 0 +55 15955 24.831276823957 0 +55 15974 24.831436823957 0 +55 15974 24.831436823957 0 +55 16027 24.893585502869 0 +55 16027 24.893585502869 0 +55 16035 24.893745502869 0 +55 16035 24.893745502869 0 +55 16070 24.943993282619 0 +55 16070 24.943993282619 0 +55 16077 24.944153282619 0 +55 16077 24.944153282619 0 +55 16120 25.114557363825 0 +55 16120 25.114557363825 0 +55 16135 25.114717363825 0 +55 16135 25.114717363825 0 +55 16196 25.131276823934 0 +55 16196 25.131276823934 0 +55 16215 25.131436823934 0 +55 16215 25.131436823934 0 +55 16268 25.193585502869 0 +55 16268 25.193585502869 0 +55 16276 25.193745502869 0 +55 16276 25.193745502869 0 +55 16311 25.243993277481 0 +55 16311 25.243993277481 0 +55 16318 25.244153277481 0 +55 16318 25.244153277481 0 +55 16361 25.414557362755 0 +55 16361 25.414557362755 0 +55 16376 25.414717362755 0 +55 16376 25.414717362755 0 +55 16437 25.431276823911 0 +55 16437 25.431276823911 0 +55 16456 25.431436823911 0 +55 16456 25.431436823911 0 +55 16509 25.493585502869 0 +55 16509 25.493585502869 0 +55 16517 25.493745502869 0 +55 16517 25.493745502869 0 +55 16552 25.54399327434 0 +55 16552 25.54399327434 0 +55 16559 25.54415327434 0 +55 16559 25.54415327434 0 +55 16602 25.71455736198 0 +55 16602 25.71455736198 0 +55 16617 25.71471736198 0 +55 16617 25.71471736198 0 +55 16678 25.731276823855 0 +55 16678 25.731276823855 0 +55 16697 25.731436823855 0 +55 16697 25.731436823855 0 +55 16750 25.793585502869 0 +55 16750 25.793585502869 0 +55 16758 25.793745502869 0 +55 16758 25.793745502869 0 +55 16793 25.843993273696 0 +55 16793 25.843993273696 0 +55 16800 25.844153273696 0 +55 16800 25.844153273696 0 +55 16843 26.014557361437 0 +55 16843 26.014557361437 0 +55 16858 26.014717361437 0 +55 16858 26.014717361437 0 +55 16919 26.031276822435 0 +55 16919 26.031276822435 0 +55 16938 26.031436822435 0 +55 16938 26.031436822435 0 +55 16991 26.093585502869 0 +55 16991 26.093585502869 0 +55 16999 26.093745502869 0 +55 16999 26.093745502869 0 +55 17034 26.143993275957 0 +55 17034 26.143993275957 0 +55 17041 26.144153275957 0 +55 17041 26.144153275957 0 +55 17084 26.314557361533 0 +55 17084 26.314557361533 0 +55 17099 26.314717361533 0 +55 17099 26.314717361533 0 +55 17160 26.331276819514 0 +55 17160 26.331276819514 0 +55 17179 26.331436819514 0 +55 17179 26.331436819514 0 +55 17232 26.393585502869 0 +55 17232 26.393585502869 0 +55 17240 26.393745502869 0 +55 17240 26.393745502869 0 +55 17275 26.443993281636 0 +55 17275 26.443993281636 0 +55 17282 26.444153281636 0 +55 17282 26.444153281636 0 +55 17325 26.614557362396 0 +55 17325 26.614557362396 0 +55 17340 26.614717362396 0 +55 17340 26.614717362396 0 +55 17401 26.631276815275 0 +55 17401 26.631276815275 0 +55 17420 26.631436815275 0 +55 17420 26.631436815275 0 +55 17473 26.693585502869 0 +55 17473 26.693585502869 0 +55 17481 26.693745502869 0 +55 17481 26.693745502869 0 +55 17516 26.743993290495 0 +55 17516 26.743993290495 0 +55 17523 26.744153290495 0 +55 17523 26.744153290495 0 +55 17566 26.914557364009 0 +55 17566 26.914557364009 0 +55 17581 26.914717364009 0 +55 17581 26.914717364009 0 +55 17642 26.931276809646 0 +55 17642 26.931276809646 0 +55 17661 26.931436809646 0 +55 17661 26.931436809646 0 +55 17714 26.993585502869 0 +55 17714 26.993585502869 0 +55 17722 26.993745502869 0 +55 17722 26.993745502869 0 +55 17757 27.043993302033 0 +55 17757 27.043993302033 0 +55 17764 27.044153302033 0 +55 17764 27.044153302033 0 +55 17807 27.214557366345 0 +55 17807 27.214557366345 0 +55 17822 27.214717366345 0 +55 17822 27.214717366345 0 +55 17874 27.231276802678 0 +55 17874 27.231276802678 0 +55 17889 27.231436802678 0 +55 17889 27.231436802678 0 +55 17947 27.293585502869 0 +55 17947 27.293585502869 0 +55 17955 27.293745502869 0 +55 17955 27.293745502869 0 +55 17990 27.34399331576 0 +55 17990 27.34399331576 0 +55 17997 27.34415331576 0 +55 17997 27.34415331576 0 +55 18040 27.514557369437 0 +55 18040 27.514557369437 0 +55 18055 27.514717369437 0 +55 18055 27.514717369437 0 +55 18107 27.531276795041 0 +55 18107 27.531276795041 0 +55 18122 27.531436795041 0 +55 18122 27.531436795041 0 +55 18180 27.593585502869 0 +55 18180 27.593585502869 0 +55 18188 27.593745502869 0 +55 18188 27.593745502869 0 +55 18223 27.643993330828 0 +55 18223 27.643993330828 0 +55 18230 27.644153330828 0 +55 18230 27.644153330828 0 +55 18273 27.814557373228 0 +55 18273 27.814557373228 0 +55 18288 27.814717373228 0 +55 18288 27.814717373228 0 +55 18340 27.83127678721 0 +55 18340 27.83127678721 0 +55 18355 27.83143678721 0 +55 18355 27.83143678721 0 +55 18413 27.893585502869 0 +55 18413 27.893585502869 0 +55 18421 27.893745502869 0 +55 18421 27.893745502869 0 +55 18456 27.943993346916 0 +55 18456 27.943993346916 0 +55 18463 27.944153346916 0 +55 18463 27.944153346916 0 +55 18506 28.11455737771 0 +55 18506 28.11455737771 0 +55 18521 28.11471737771 0 +55 18521 28.11471737771 0 +55 18573 28.131276770655 0 +55 18573 28.131276770655 0 +55 18588 28.131436770655 0 +55 18588 28.131436770655 0 +55 18646 28.193585502869 0 +55 18646 28.193585502869 0 +55 18654 28.193745502869 0 +55 18654 28.193745502869 0 +55 18689 28.243993363816 0 +55 18689 28.243993363816 0 +55 18696 28.244153363816 0 +55 18696 28.244153363816 0 +55 18739 28.41455738295 0 +55 18739 28.41455738295 0 +55 18754 28.41471738295 0 +55 18754 28.41471738295 0 +55 18806 28.431276747906 0 +55 18806 28.431276747906 0 +55 18821 28.431436747906 0 +55 18821 28.431436747906 0 +55 18879 28.493585502869 0 +55 18879 28.493585502869 0 +55 18887 28.493745502869 0 +55 18887 28.493745502869 0 +55 18922 28.543993381372 0 +55 18922 28.543993381372 0 +55 18929 28.544153381372 0 +55 18929 28.544153381372 0 +55 18972 28.714557388816 0 +55 18972 28.714557388816 0 +55 18987 28.714717388816 0 +55 18987 28.714717388816 0 +55 19038 28.731276724087 0 +55 19038 28.731276724087 0 +55 19049 28.731436724087 0 +55 19049 28.731436724087 0 +55 19112 28.793585502869 0 +55 19112 28.793585502869 0 +55 19120 28.793745502869 0 +55 19120 28.793745502869 0 +55 19155 28.843993399418 0 +55 19155 28.843993399418 0 +55 19162 28.844153399418 0 +55 19162 28.844153399418 0 +55 19205 29.014557395373 0 +55 19205 29.014557395373 0 +55 19220 29.014717395373 0 +55 19220 29.014717395373 0 +55 19271 29.031276699665 0 +55 19271 29.031276699665 0 +55 19282 29.031436699665 0 +55 19282 29.031436699665 0 +55 19337 29.093585502869 0 +55 19337 29.093585502869 0 +55 19345 29.093745502869 0 +55 19345 29.093745502869 0 +55 19380 29.143993417837 0 +55 19380 29.143993417837 0 +55 19387 29.144153417837 0 +55 19387 29.144153417837 0 +55 19429 29.314557402593 0 +55 19429 29.314557402593 0 +55 19440 29.314717402593 0 +55 19440 29.314717402593 0 +55 19496 29.331276674765 0 +55 19496 29.331276674765 0 +55 19507 29.331436674765 0 +55 19507 29.331436674765 0 +55 19562 29.393585502869 0 +55 19562 29.393585502869 0 +55 19570 29.393745502869 0 +55 19570 29.393745502869 0 +55 19605 29.443993436569 0 +55 19605 29.443993436569 0 +55 19612 29.444153436569 0 +55 19612 29.444153436569 0 +55 19654 29.61455741041 0 +55 19654 29.61455741041 0 +55 19665 29.61471741041 0 +55 19665 29.61471741041 0 +55 19721 29.631276649424 0 +55 19721 29.631276649424 0 +55 19732 29.631436649424 0 +55 19732 29.631436649424 0 +55 19787 29.693585502869 0 +55 19787 29.693585502869 0 +55 19795 29.693745502869 0 +55 19795 29.693745502869 0 +55 19830 29.743993455545 0 +55 19830 29.743993455545 0 +55 19837 29.744153455545 0 +55 19837 29.744153455545 0 +55 19879 29.914557418813 0 +55 19879 29.914557418813 0 +55 19890 29.914717418813 0 +55 19890 29.914717418813 0 +55 19946 29.93127662341 0 +55 19946 29.93127662341 0 +55 19957 29.93143662341 0 +55 19957 29.93143662341 0 +55 20012 29.993585502869 0 +55 20012 29.993585502869 0 +55 20020 29.993745502869 0 +55 20020 29.993745502869 0 +55 20055 30.043993474721 0 +55 20055 30.043993474721 0 +55 20062 30.044153474721 0 +55 20062 30.044153474721 0 +55 20104 30.214557427759 0 +55 20104 30.214557427759 0 +55 20115 30.214717427759 0 +55 20115 30.214717427759 0 +55 20171 30.231276596705 0 +55 20171 30.231276596705 0 +55 20182 30.231436596705 0 +55 20182 30.231436596705 0 +55 20237 30.293585502869 0 +55 20237 30.293585502869 0 +55 20245 30.293745502869 0 +55 20245 30.293745502869 0 +55 20280 30.343993494113 0 +55 20280 30.343993494113 0 +55 20287 30.344153494113 0 +55 20287 30.344153494113 0 +55 20330 30.514557437221 0 +55 20330 30.514557437221 0 +55 20345 30.514717437221 0 +55 20345 30.514717437221 0 +55 20396 30.531276569374 0 +55 20396 30.531276569374 0 +55 20407 30.531436569374 0 +55 20407 30.531436569374 0 +55 20462 30.593585502869 0 +55 20462 30.593585502869 0 +55 20470 30.593745502869 0 +55 20470 30.593745502869 0 +55 20505 30.643993513628 0 +55 20505 30.643993513628 0 +55 20512 30.644153513628 0 +55 20512 30.644153513628 0 +55 20556 30.814557447201 0 +55 20556 30.814557447201 0 +55 20575 30.814717447201 0 +55 20575 30.814717447201 0 +55 20620 30.831276541474 0 +55 20620 30.831276541474 0 +55 20627 30.831436541474 0 +55 20627 30.831436541474 0 +55 20687 30.893585502869 0 +55 20687 30.893585502869 0 +55 20695 30.893745502869 0 +55 20695 30.893745502869 0 +55 20730 30.943993533271 0 +55 20730 30.943993533271 0 +55 20737 30.944153533271 0 +55 20737 30.944153533271 0 +55 20781 31.114557457713 0 +55 20781 31.114557457713 0 +55 20800 31.114717457713 0 +55 20800 31.114717457713 0 +55 20817 31.124399322913 0 +55 20817 31.124399322913 0 +55 20832 31.124559322913 0 +55 20832 31.124559322913 0 +55 20849 31.131276513237 0 +55 20849 31.131276513237 0 +55 20856 31.131436513237 0 +55 20856 31.131436513237 0 +55 20916 31.193585502869 0 +55 20916 31.193585502869 0 +55 20924 31.193745502869 0 +55 20924 31.193745502869 0 +55 20963 31.243993553001 0 +55 20963 31.243993553001 0 +55 20970 31.244153553001 0 +55 20970 31.244153553001 0 +55 21014 31.414557468667 0 +55 21014 31.414557468667 0 +55 21033 31.414717468667 0 +55 21033 31.414717468667 0 +55 21050 31.424399297163 0 +55 21050 31.424399297163 0 +55 21065 31.424559297163 0 +55 21065 31.424559297163 0 +55 21082 31.431276484978 0 +55 21082 31.431276484978 0 +55 21089 31.431436484978 0 +55 21089 31.431436484978 0 +55 21149 31.493585502869 0 +55 21149 31.493585502869 0 +55 21157 31.493745502869 0 +55 21157 31.493745502869 0 +55 21196 31.543993572835 0 +55 21196 31.543993572835 0 +55 21203 31.544153572835 0 +55 21203 31.544153572835 0 +55 21247 31.7145574801 0 +55 21247 31.7145574801 0 +55 21266 31.7147174801 0 +55 21266 31.7147174801 0 +55 21283 31.724399271431 0 +55 21283 31.724399271431 0 +55 21298 31.724559271431 0 +55 21298 31.724559271431 0 +55 21315 31.731276456746 0 +55 21315 31.731276456746 0 +55 21322 31.731436456746 0 +55 21322 31.731436456746 0 +55 21382 31.793585502869 0 +55 21382 31.793585502869 0 +55 21390 31.793745502869 0 +55 21390 31.793745502869 0 +55 21430 31.843993592699 0 +55 21430 31.843993592699 0 +55 21441 31.844153592699 0 +55 21441 31.844153592699 0 +55 21480 32.014557491924 0 +55 21480 32.014557491924 0 +55 21499 32.014717491924 0 +55 21499 32.014717491924 0 +55 21515 32.024399245722 0 +55 21515 32.024399245722 0 +55 21526 32.024559245722 0 +55 21526 32.024559245722 0 +55 21548 32.031276428528 0 +55 21548 32.031276428528 0 +55 21555 32.031436428528 0 +55 21555 32.031436428528 0 +55 21615 32.093585502869 0 +55 21615 32.093585502869 0 +55 21623 32.093745502869 0 +55 21623 32.093745502869 0 +55 21663 32.143993612639 0 +55 21663 32.143993612639 0 +55 21674 32.144153612639 0 +55 21674 32.144153612639 0 +55 21713 32.31455750416 0 +55 21713 32.31455750416 0 +55 21732 32.31471750416 0 +55 21732 32.31471750416 0 +55 21748 32.324399219895 0 +55 21748 32.324399219895 0 +55 21759 32.324559219895 0 +55 21759 32.324559219895 0 +55 21781 32.331276400291 0 +55 21781 32.331276400291 0 +55 21788 32.331436400291 0 +55 21788 32.331436400291 0 +55 21848 32.393585502869 0 +55 21848 32.393585502869 0 +55 21856 32.393745502869 0 +55 21856 32.393745502869 0 +55 21896 32.443993632704 0 +55 21896 32.443993632704 0 +55 21907 32.444153632704 0 +55 21907 32.444153632704 0 +55 21946 32.61455751675 0 +55 21946 32.61455751675 0 +55 21965 32.61471751675 0 +55 21965 32.61471751675 0 +55 21981 32.624399194111 0 +55 21981 32.624399194111 0 +55 21992 32.624559194111 0 +55 21992 32.624559194111 0 +55 22014 32.631276372037 0 +55 22014 32.631276372037 0 +55 22021 32.631436372037 0 +55 22021 32.631436372037 0 +55 22081 32.693585502869 0 +55 22081 32.693585502869 0 +55 22089 32.693745502869 0 +55 22089 32.693745502869 0 +55 22129 32.743993652819 0 +55 22129 32.743993652819 0 +55 22140 32.744153652819 0 +55 22140 32.744153652819 0 +55 22179 32.914557529741 0 +55 22179 32.914557529741 0 +55 22198 32.914717529741 0 +55 22198 32.914717529741 0 +55 22214 32.924399168331 0 +55 22214 32.924399168331 0 +55 22225 32.924559168331 0 +55 22225 32.924559168331 0 +55 22247 32.9312763438 0 +55 22247 32.9312763438 0 +55 22254 32.9314363438 0 +55 22254 32.9314363438 0 +55 22314 32.993585502869 0 +55 22314 32.993585502869 0 +55 22322 32.993745502869 0 +55 22322 32.993745502869 0 +55 22362 33.043993672958 0 +55 22362 33.043993672958 0 +55 22373 33.044153672958 0 +55 22373 33.044153672958 0 +55 22412 33.214557543026 0 +55 22412 33.214557543026 0 +55 22431 33.214717543026 0 +55 22431 33.214717543026 0 +55 22447 33.224399142569 0 +55 22447 33.224399142569 0 +55 22458 33.224559142569 0 +55 22458 33.224559142569 0 +55 22480 33.231276315598 0 +55 22480 33.231276315598 0 +55 22487 33.231436315598 0 +55 22487 33.231436315598 0 +55 22547 33.293585502869 0 +55 22547 33.293585502869 0 +55 22555 33.293745502869 0 +55 22555 33.293745502869 0 +55 22595 33.343993693134 0 +55 22595 33.343993693134 0 +55 22606 33.344153693134 0 +55 22606 33.344153693134 0 +55 22645 33.514557556648 0 +55 22645 33.514557556648 0 +55 22664 33.514717556648 0 +55 22664 33.514717556648 0 +55 22680 33.524399116789 0 +55 22680 33.524399116789 0 +55 22691 33.524559116789 0 +55 22691 33.524559116789 0 +55 22713 33.531276287401 0 +55 22713 33.531276287401 0 +55 22720 33.531436287401 0 +55 22720 33.531436287401 0 +55 22780 33.593585502869 0 +55 22780 33.593585502869 0 +55 22788 33.593745502869 0 +55 22788 33.593745502869 0 +55 22828 33.643993713368 0 +55 22828 33.643993713368 0 +55 22839 33.644153713368 0 +55 22839 33.644153713368 0 +55 22909 33.824399091063 0 +55 22909 33.824399091063 0 +55 22920 33.824559091063 0 +55 22920 33.824559091063 0 +55 22942 33.831276259307 0 +55 22942 33.831276259307 0 +55 22949 33.831436259307 0 +55 22949 33.831436259307 0 +55 23009 33.893585502869 0 +55 23009 33.893585502869 0 +55 23017 33.893745502869 0 +55 23017 33.893745502869 0 +56 778 5.1 0 +56 778 5.1 0 +56 793 5.143993485014 0 +56 793 5.143993485014 0 +56 799 5.144153485014 0 +56 799 5.144153485014 0 +56 927 5.443993485053 0 +56 927 5.443993485053 0 +56 933 5.444153485053 0 +56 933 5.444153485053 0 +56 1053 5.693585502869 0 +56 1053 5.693585502869 0 +56 1060 5.693745502869 0 +56 1060 5.693745502869 0 +56 1085 5.743993485104 0 +56 1085 5.743993485104 0 +56 1091 5.744153485104 0 +56 1091 5.744153485104 0 +56 1211 5.993585502869 0 +56 1211 5.993585502869 0 +56 1218 5.993745502869 0 +56 1218 5.993745502869 0 +56 1243 6.043993485165 0 +56 1243 6.043993485165 0 +56 1249 6.044153485165 0 +56 1249 6.044153485165 0 +56 1389 6.293585502869 0 +56 1389 6.293585502869 0 +56 1397 6.293745502869 0 +56 1397 6.293745502869 0 +56 1424 6.343993485238 0 +56 1424 6.343993485238 0 +56 1431 6.344153485238 0 +56 1431 6.344153485238 0 +56 1606 6.593585502869 0 +56 1606 6.593585502869 0 +56 1614 6.593745502869 0 +56 1614 6.593745502869 0 +56 1641 6.643993485325 0 +56 1641 6.643993485325 0 +56 1648 6.644153485325 0 +56 1648 6.644153485325 0 +56 1823 6.893585502869 0 +56 1823 6.893585502869 0 +56 1831 6.893745502869 0 +56 1831 6.893745502869 0 +56 1858 6.943993485423 0 +56 1858 6.943993485423 0 +56 1865 6.944153485423 0 +56 1865 6.944153485423 0 +56 2040 7.193585502869 0 +56 2040 7.193585502869 0 +56 2048 7.193745502869 0 +56 2048 7.193745502869 0 +56 2075 7.243993485541 0 +56 2075 7.243993485541 0 +56 2082 7.244153485541 0 +56 2082 7.244153485541 0 +56 2257 7.493585502869 0 +56 2257 7.493585502869 0 +56 2265 7.493745502869 0 +56 2265 7.493745502869 0 +56 2292 7.543993485675 0 +56 2292 7.543993485675 0 +56 2299 7.544153485675 0 +56 2299 7.544153485675 0 +56 2474 7.793585502869 0 +56 2474 7.793585502869 0 +56 2482 7.793745502869 0 +56 2482 7.793745502869 0 +56 2509 7.843993485822 0 +56 2509 7.843993485822 0 +56 2516 7.844153485822 0 +56 2516 7.844153485822 0 +56 2691 8.093585502869 0 +56 2691 8.093585502869 0 +56 2699 8.093745502869 0 +56 2699 8.093745502869 0 +56 2726 8.143993485992 0 +56 2726 8.143993485992 0 +56 2733 8.144153485992 0 +56 2733 8.144153485992 0 +56 2912 8.393585502869 0 +56 2912 8.393585502869 0 +56 2920 8.393745502869 0 +56 2920 8.393745502869 0 +56 2947 8.443993486181 0 +56 2947 8.443993486181 0 +56 2954 8.444153486181 0 +56 2954 8.444153486181 0 +56 3137 8.693585502869 0 +56 3137 8.693585502869 0 +56 3145 8.693745502869 0 +56 3145 8.693745502869 0 +56 3172 8.743993486377 0 +56 3172 8.743993486377 0 +56 3179 8.744153486377 0 +56 3179 8.744153486377 0 +56 3362 8.993585502869 0 +56 3362 8.993585502869 0 +56 3370 8.993745502869 0 +56 3370 8.993745502869 0 +56 3397 9.043993486579 0 +56 3397 9.043993486579 0 +56 3404 9.044153486579 0 +56 3404 9.044153486579 0 +56 3587 9.293585502869 0 +56 3587 9.293585502869 0 +56 3595 9.293745502869 0 +56 3595 9.293745502869 0 +56 3622 9.343993486798 0 +56 3622 9.343993486798 0 +56 3629 9.344153486798 0 +56 3629 9.344153486798 0 +56 3812 9.593585502869 0 +56 3812 9.593585502869 0 +56 3820 9.593745502869 0 +56 3820 9.593745502869 0 +56 3847 9.64399348701 0 +56 3847 9.64399348701 0 +56 3854 9.64415348701 0 +56 3854 9.64415348701 0 +56 4037 9.893585502869 0 +56 4037 9.893585502869 0 +56 4045 9.893745502869 0 +56 4045 9.893745502869 0 +56 4072 9.943993487239 0 +56 4072 9.943993487239 0 +56 4079 9.944153487239 0 +56 4079 9.944153487239 0 +56 4262 10.193585502869 0 +56 4262 10.193585502869 0 +56 4270 10.193745502869 0 +56 4270 10.193745502869 0 +56 4297 10.243993487473 0 +56 4297 10.243993487473 0 +56 4304 10.244153487473 0 +56 4304 10.244153487473 0 +56 4487 10.493585502869 0 +56 4487 10.493585502869 0 +56 4495 10.493745502869 0 +56 4495 10.493745502869 0 +56 4522 10.543993487715 0 +56 4522 10.543993487715 0 +56 4529 10.544153487715 0 +56 4529 10.544153487715 0 +56 4720 10.793585502869 0 +56 4720 10.793585502869 0 +56 4728 10.793745502869 0 +56 4728 10.793745502869 0 +56 4755 10.84399348791 0 +56 4755 10.84399348791 0 +56 4762 10.84415348791 0 +56 4762 10.84415348791 0 +56 4953 11.093585502869 0 +56 4953 11.093585502869 0 +56 4961 11.093745502869 0 +56 4961 11.093745502869 0 +56 4988 11.143993487716 0 +56 4988 11.143993487716 0 +56 4995 11.144153487716 0 +56 4995 11.144153487716 0 +56 5119 11.331276921478 0 +56 5119 11.331276921478 0 +56 5142 11.331436921478 0 +56 5142 11.331436921478 0 +56 5186 11.393585502869 0 +56 5186 11.393585502869 0 +56 5194 11.393745502869 0 +56 5194 11.393745502869 0 +56 5221 11.443993487147 0 +56 5221 11.443993487147 0 +56 5228 11.444153487147 0 +56 5228 11.444153487147 0 +56 5352 11.631276919727 0 +56 5352 11.631276919727 0 +56 5375 11.631436919727 0 +56 5375 11.631436919727 0 +56 5423 11.693585502869 0 +56 5423 11.693585502869 0 +56 5431 11.693745502869 0 +56 5431 11.693745502869 0 +56 5462 11.743993486335 0 +56 5462 11.743993486335 0 +56 5469 11.744153486335 0 +56 5469 11.744153486335 0 +56 5593 11.931276918081 0 +56 5593 11.931276918081 0 +56 5616 11.931436918081 0 +56 5616 11.931436918081 0 +56 5664 11.993585502869 0 +56 5664 11.993585502869 0 +56 5672 11.993745502869 0 +56 5672 11.993745502869 0 +56 5703 12.043993485511 0 +56 5703 12.043993485511 0 +56 5710 12.044153485511 0 +56 5710 12.044153485511 0 +56 5834 12.231276916562 0 +56 5834 12.231276916562 0 +56 5857 12.231436916562 0 +56 5857 12.231436916562 0 +56 5905 12.293585502869 0 +56 5905 12.293585502869 0 +56 5913 12.293745502869 0 +56 5913 12.293745502869 0 +56 5944 12.343993485033 0 +56 5944 12.343993485033 0 +56 5951 12.344153485033 0 +56 5951 12.344153485033 0 +56 6075 12.531276915229 0 +56 6075 12.531276915229 0 +56 6098 12.531436915229 0 +56 6098 12.531436915229 0 +56 6146 12.593585502869 0 +56 6146 12.593585502869 0 +56 6154 12.593745502869 0 +56 6154 12.593745502869 0 +56 6185 12.643993485073 0 +56 6185 12.643993485073 0 +56 6192 12.644153485073 0 +56 6192 12.644153485073 0 +56 6316 12.831276914169 0 +56 6316 12.831276914169 0 +56 6339 12.831436914169 0 +56 6339 12.831436914169 0 +56 6387 12.893585502869 0 +56 6387 12.893585502869 0 +56 6395 12.893745502869 0 +56 6395 12.893745502869 0 +56 6426 12.943993485645 0 +56 6426 12.943993485645 0 +56 6433 12.944153485645 0 +56 6433 12.944153485645 0 +56 6557 13.131276913397 0 +56 6557 13.131276913397 0 +56 6580 13.131436913397 0 +56 6580 13.131436913397 0 +56 6628 13.193585502869 0 +56 6628 13.193585502869 0 +56 6636 13.193745502869 0 +56 6636 13.193745502869 0 +56 6667 13.243993486741 0 +56 6667 13.243993486741 0 +56 6674 13.244153486741 0 +56 6674 13.244153486741 0 +56 6798 13.431276912882 0 +56 6798 13.431276912882 0 +56 6821 13.431436912882 0 +56 6821 13.431436912882 0 +56 6869 13.493585502869 0 +56 6869 13.493585502869 0 +56 6877 13.493745502869 0 +56 6877 13.493745502869 0 +56 6908 13.543993488359 0 +56 6908 13.543993488359 0 +56 6915 13.544153488359 0 +56 6915 13.544153488359 0 +56 7039 13.731276912645 0 +56 7039 13.731276912645 0 +56 7062 13.731436912645 0 +56 7062 13.731436912645 0 +56 7110 13.793585502869 0 +56 7110 13.793585502869 0 +56 7118 13.793745502869 0 +56 7118 13.793745502869 0 +56 7149 13.843993490496 0 +56 7149 13.843993490496 0 +56 7156 13.844153490496 0 +56 7156 13.844153490496 0 +56 7280 14.03127691268 0 +56 7280 14.03127691268 0 +56 7303 14.03143691268 0 +56 7303 14.03143691268 0 +56 7351 14.093585502869 0 +56 7351 14.093585502869 0 +56 7359 14.093745502869 0 +56 7359 14.093745502869 0 +56 7390 14.143993493127 0 +56 7390 14.143993493127 0 +56 7397 14.144153493127 0 +56 7397 14.144153493127 0 +56 7521 14.33127691298 0 +56 7521 14.33127691298 0 +56 7544 14.33143691298 0 +56 7544 14.33143691298 0 +56 7592 14.393585502869 0 +56 7592 14.393585502869 0 +56 7600 14.393745502869 0 +56 7600 14.393745502869 0 +56 7631 14.44399349625 0 +56 7631 14.44399349625 0 +56 7638 14.44415349625 0 +56 7638 14.44415349625 0 +56 7762 14.631276913256 0 +56 7762 14.631276913256 0 +56 7785 14.631436913256 0 +56 7785 14.631436913256 0 +56 7833 14.693585502869 0 +56 7833 14.693585502869 0 +56 7841 14.693745502869 0 +56 7841 14.693745502869 0 +56 7872 14.743993498886 0 +56 7872 14.743993498886 0 +56 7879 14.744153498886 0 +56 7879 14.744153498886 0 +56 8003 14.931276907357 0 +56 8003 14.931276907357 0 +56 8026 14.931436907357 0 +56 8026 14.931436907357 0 +56 8074 14.993585502869 0 +56 8074 14.993585502869 0 +56 8082 14.993745502869 0 +56 8082 14.993745502869 0 +56 8113 15.043993491181 0 +56 8113 15.043993491181 0 +56 8120 15.044153491181 0 +56 8120 15.044153491181 0 +56 8244 15.231276894496 0 +56 8244 15.231276894496 0 +56 8267 15.231436894496 0 +56 8267 15.231436894496 0 +56 8315 15.293585502869 0 +56 8315 15.293585502869 0 +56 8323 15.293745502869 0 +56 8323 15.293745502869 0 +56 8354 15.343993477658 0 +56 8354 15.343993477658 0 +56 8361 15.344153477658 0 +56 8361 15.344153477658 0 +56 8484 15.531276881214 0 +56 8484 15.531276881214 0 +56 8503 15.531436881214 0 +56 8503 15.531436881214 0 +56 8556 15.593585502869 0 +56 8556 15.593585502869 0 +56 8564 15.593745502869 0 +56 8564 15.593745502869 0 +56 8595 15.643993463876 0 +56 8595 15.643993463876 0 +56 8602 15.644153463876 0 +56 8602 15.644153463876 0 +56 8725 15.831276867891 0 +56 8725 15.831276867891 0 +56 8744 15.831436867891 0 +56 8744 15.831436867891 0 +56 8797 15.893585502869 0 +56 8797 15.893585502869 0 +56 8805 15.893745502869 0 +56 8805 15.893745502869 0 +56 8836 15.943993450177 0 +56 8836 15.943993450177 0 +56 8843 15.944153450177 0 +56 8843 15.944153450177 0 +56 8892 16.114557547424 0 +56 8892 16.114557547424 0 +56 8915 16.114717547424 0 +56 8915 16.114717547424 0 +56 8970 16.131276854594 0 +56 8970 16.131276854594 0 +56 8989 16.131436854594 0 +56 8989 16.131436854594 0 +56 9042 16.193585502869 0 +56 9042 16.193585502869 0 +56 9050 16.193745502869 0 +56 9050 16.193745502869 0 +56 9085 16.24399343676 0 +56 9085 16.24399343676 0 +56 9092 16.24415343676 0 +56 9092 16.24415343676 0 +56 9141 16.414557520222 0 +56 9141 16.414557520222 0 +56 9164 16.414717520222 0 +56 9164 16.414717520222 0 +56 9219 16.431276843065 0 +56 9219 16.431276843065 0 +56 9238 16.431436843065 0 +56 9238 16.431436843065 0 +56 9291 16.493585502869 0 +56 9291 16.493585502869 0 +56 9299 16.493745502869 0 +56 9299 16.493745502869 0 +56 9334 16.543993425628 0 +56 9334 16.543993425628 0 +56 9341 16.544153425628 0 +56 9341 16.544153425628 0 +56 9389 16.714557495718 0 +56 9389 16.714557495718 0 +56 9408 16.714717495718 0 +56 9408 16.714717495718 0 +56 9468 16.731276834223 0 +56 9468 16.731276834223 0 +56 9487 16.731436834223 0 +56 9487 16.731436834223 0 +56 9540 16.793585502869 0 +56 9540 16.793585502869 0 +56 9548 16.793745502869 0 +56 9548 16.793745502869 0 +56 9583 16.843993417024 0 +56 9583 16.843993417024 0 +56 9590 16.844153417024 0 +56 9590 16.844153417024 0 +56 9638 17.01455747394 0 +56 9638 17.01455747394 0 +56 9657 17.01471747394 0 +56 9657 17.01471747394 0 +56 9717 17.031276828087 0 +56 9717 17.031276828087 0 +56 9736 17.031436828087 0 +56 9736 17.031436828087 0 +56 9789 17.093585502869 0 +56 9789 17.093585502869 0 +56 9797 17.093745502869 0 +56 9797 17.093745502869 0 +56 9832 17.143993410931 0 +56 9832 17.143993410931 0 +56 9839 17.144153410931 0 +56 9839 17.144153410931 0 +56 9887 17.314557454832 0 +56 9887 17.314557454832 0 +56 9906 17.314717454832 0 +56 9906 17.314717454832 0 +56 9966 17.33127682466 0 +56 9966 17.33127682466 0 +56 9985 17.33143682466 0 +56 9985 17.33143682466 0 +56 10038 17.393585502869 0 +56 10038 17.393585502869 0 +56 10046 17.393745502869 0 +56 10046 17.393745502869 0 +56 10081 17.443993407323 0 +56 10081 17.443993407323 0 +56 10088 17.444153407323 0 +56 10088 17.444153407323 0 +56 10136 17.614557438392 0 +56 10136 17.614557438392 0 +56 10155 17.614717438392 0 +56 10155 17.614717438392 0 +56 10215 17.631276823875 0 +56 10215 17.631276823875 0 +56 10234 17.631436823875 0 +56 10234 17.631436823875 0 +56 10287 17.693585502869 0 +56 10287 17.693585502869 0 +56 10295 17.693745502869 0 +56 10295 17.693745502869 0 +56 10330 17.743993405804 0 +56 10330 17.743993405804 0 +56 10337 17.744153405804 0 +56 10337 17.744153405804 0 +56 10385 17.914557422749 0 +56 10385 17.914557422749 0 +56 10404 17.914717422749 0 +56 10404 17.914717422749 0 +56 10460 17.931276823866 0 +56 10460 17.931276823866 0 +56 10479 17.931436823866 0 +56 10479 17.931436823866 0 +56 10528 17.993585502869 0 +56 10528 17.993585502869 0 +56 10536 17.993745502869 0 +56 10536 17.993745502869 0 +56 10571 18.043993404519 0 +56 10571 18.043993404519 0 +56 10578 18.044153404519 0 +56 10578 18.044153404519 0 +56 10626 18.214557407098 0 +56 10626 18.214557407098 0 +56 10645 18.214717407098 0 +56 10645 18.214717407098 0 +56 10697 18.231276823854 0 +56 10697 18.231276823854 0 +56 10716 18.231436823854 0 +56 10716 18.231436823854 0 +56 10765 18.293585502869 0 +56 10765 18.293585502869 0 +56 10773 18.293745502869 0 +56 10773 18.293745502869 0 +56 10808 18.34399340323 0 +56 10808 18.34399340323 0 +56 10815 18.34415340323 0 +56 10815 18.34415340323 0 +56 10859 18.514557392147 0 +56 10859 18.514557392147 0 +56 10878 18.514717392147 0 +56 10878 18.514717392147 0 +56 10930 18.531276823849 0 +56 10930 18.531276823849 0 +56 10949 18.531436823849 0 +56 10949 18.531436823849 0 +56 10998 18.593585502869 0 +56 10998 18.593585502869 0 +56 11006 18.593745502869 0 +56 11006 18.593745502869 0 +56 11041 18.643993401947 0 +56 11041 18.643993401947 0 +56 11048 18.644153401947 0 +56 11048 18.644153401947 0 +56 11092 18.814557385083 0 +56 11092 18.814557385083 0 +56 11111 18.814717385083 0 +56 11111 18.814717385083 0 +56 11163 18.831276823842 0 +56 11163 18.831276823842 0 +56 11182 18.831436823842 0 +56 11182 18.831436823842 0 +56 11231 18.893585502869 0 +56 11231 18.893585502869 0 +56 11239 18.893745502869 0 +56 11239 18.893745502869 0 +56 11274 18.943993400662 0 +56 11274 18.943993400662 0 +56 11281 18.944153400662 0 +56 11281 18.944153400662 0 +56 11325 19.11455738453 0 +56 11325 19.11455738453 0 +56 11344 19.11471738453 0 +56 11344 19.11471738453 0 +56 11396 19.13127682383 0 +56 11396 19.13127682383 0 +56 11415 19.13143682383 0 +56 11415 19.13143682383 0 +56 11464 19.193585502869 0 +56 11464 19.193585502869 0 +56 11472 19.193745502869 0 +56 11472 19.193745502869 0 +56 11507 19.243993399372 0 +56 11507 19.243993399372 0 +56 11514 19.244153399372 0 +56 11514 19.244153399372 0 +56 11558 19.414557384789 0 +56 11558 19.414557384789 0 +56 11577 19.414717384789 0 +56 11577 19.414717384789 0 +56 11629 19.431276823834 0 +56 11629 19.431276823834 0 +56 11648 19.431436823834 0 +56 11648 19.431436823834 0 +56 11697 19.493585502869 0 +56 11697 19.493585502869 0 +56 11705 19.493745502869 0 +56 11705 19.493745502869 0 +56 11740 19.543993397973 0 +56 11740 19.543993397973 0 +56 11747 19.544153397973 0 +56 11747 19.544153397973 0 +56 11791 19.71455738494 0 +56 11791 19.71455738494 0 +56 11810 19.71471738494 0 +56 11810 19.71471738494 0 +56 11862 19.731276823812 0 +56 11862 19.731276823812 0 +56 11881 19.731436823812 0 +56 11881 19.731436823812 0 +56 11930 19.793585502869 0 +56 11930 19.793585502869 0 +56 11938 19.793745502869 0 +56 11938 19.793745502869 0 +56 11973 19.843993395755 0 +56 11973 19.843993395755 0 +56 11980 19.844153395755 0 +56 11980 19.844153395755 0 +56 12024 20.014557384776 0 +56 12024 20.014557384776 0 +56 12043 20.014717384776 0 +56 12043 20.014717384776 0 +56 12099 20.031276823824 0 +56 12099 20.031276823824 0 +56 12118 20.031436823824 0 +56 12118 20.031436823824 0 +56 12171 20.093585502869 0 +56 12171 20.093585502869 0 +56 12179 20.093745502869 0 +56 12179 20.093745502869 0 +56 12214 20.143993392654 0 +56 12214 20.143993392654 0 +56 12221 20.144153392654 0 +56 12221 20.144153392654 0 +56 12265 20.314557384384 0 +56 12265 20.314557384384 0 +56 12284 20.314717384384 0 +56 12284 20.314717384384 0 +56 12340 20.331276823783 0 +56 12340 20.331276823783 0 +56 12359 20.331436823783 0 +56 12359 20.331436823783 0 +56 12412 20.393585502869 0 +56 12412 20.393585502869 0 +56 12420 20.393745502869 0 +56 12420 20.393745502869 0 +56 12455 20.443993388797 0 +56 12455 20.443993388797 0 +56 12462 20.444153388797 0 +56 12462 20.444153388797 0 +56 12506 20.614557383808 0 +56 12506 20.614557383808 0 +56 12525 20.614717383808 0 +56 12525 20.614717383808 0 +56 12581 20.631276823785 0 +56 12581 20.631276823785 0 +56 12600 20.631436823785 0 +56 12600 20.631436823785 0 +56 12653 20.693585502869 0 +56 12653 20.693585502869 0 +56 12661 20.693745502869 0 +56 12661 20.693745502869 0 +56 12696 20.743993384171 0 +56 12696 20.743993384171 0 +56 12703 20.744153384171 0 +56 12703 20.744153384171 0 +56 12747 20.914557383117 0 +56 12747 20.914557383117 0 +56 12766 20.914717383117 0 +56 12766 20.914717383117 0 +56 12822 20.931276823825 0 +56 12822 20.931276823825 0 +56 12841 20.931436823825 0 +56 12841 20.931436823825 0 +56 12894 20.993585502869 0 +56 12894 20.993585502869 0 +56 12902 20.993745502869 0 +56 12902 20.993745502869 0 +56 12937 21.043993378911 0 +56 12937 21.043993378911 0 +56 12944 21.044153378911 0 +56 12944 21.044153378911 0 +56 12988 21.214557382339 0 +56 12988 21.214557382339 0 +56 13007 21.214717382339 0 +56 13007 21.214717382339 0 +56 13063 21.231276823913 0 +56 13063 21.231276823913 0 +56 13082 21.231436823913 0 +56 13082 21.231436823913 0 +56 13135 21.293585502869 0 +56 13135 21.293585502869 0 +56 13143 21.293745502869 0 +56 13143 21.293745502869 0 +56 13178 21.343993372963 0 +56 13178 21.343993372963 0 +56 13185 21.344153372963 0 +56 13185 21.344153372963 0 +56 13229 21.514557381349 0 +56 13229 21.514557381349 0 +56 13248 21.514717381349 0 +56 13248 21.514717381349 0 +56 13304 21.531276823952 0 +56 13304 21.531276823952 0 +56 13323 21.531436823952 0 +56 13323 21.531436823952 0 +56 13376 21.593585502869 0 +56 13376 21.593585502869 0 +56 13384 21.593745502869 0 +56 13384 21.593745502869 0 +56 13419 21.643993366253 0 +56 13419 21.643993366253 0 +56 13426 21.644153366253 0 +56 13426 21.644153366253 0 +56 13470 21.81455738019 0 +56 13470 21.81455738019 0 +56 13489 21.81471738019 0 +56 13489 21.81471738019 0 +56 13545 21.831276823995 0 +56 13545 21.831276823995 0 +56 13564 21.831436823995 0 +56 13564 21.831436823995 0 +56 13617 21.893585502869 0 +56 13617 21.893585502869 0 +56 13625 21.893745502869 0 +56 13625 21.893745502869 0 +56 13660 21.943993358856 0 +56 13660 21.943993358856 0 +56 13667 21.944153358856 0 +56 13667 21.944153358856 0 +56 13711 22.114557378874 0 +56 13711 22.114557378874 0 +56 13730 22.114717378874 0 +56 13730 22.114717378874 0 +56 13786 22.131276824039 0 +56 13786 22.131276824039 0 +56 13805 22.131436824039 0 +56 13805 22.131436824039 0 +56 13858 22.193585502869 0 +56 13858 22.193585502869 0 +56 13866 22.193745502869 0 +56 13866 22.193745502869 0 +56 13901 22.243993350791 0 +56 13901 22.243993350791 0 +56 13908 22.244153350791 0 +56 13908 22.244153350791 0 +56 13952 22.414557377522 0 +56 13952 22.414557377522 0 +56 13971 22.414717377522 0 +56 13971 22.414717377522 0 +56 14027 22.431276824127 0 +56 14027 22.431276824127 0 +56 14046 22.431436824127 0 +56 14046 22.431436824127 0 +56 14099 22.493585502869 0 +56 14099 22.493585502869 0 +56 14107 22.493745502869 0 +56 14107 22.493745502869 0 +56 14142 22.543993342123 0 +56 14142 22.543993342123 0 +56 14149 22.544153342123 0 +56 14149 22.544153342123 0 +56 14193 22.714557376066 0 +56 14193 22.714557376066 0 +56 14212 22.714717376066 0 +56 14212 22.714717376066 0 +56 14268 22.73127682417 0 +56 14268 22.73127682417 0 +56 14287 22.73143682417 0 +56 14287 22.73143682417 0 +56 14340 22.793585502869 0 +56 14340 22.793585502869 0 +56 14348 22.793745502869 0 +56 14348 22.793745502869 0 +56 14383 22.843993333052 0 +56 14383 22.843993333052 0 +56 14390 22.844153333052 0 +56 14390 22.844153333052 0 +56 14434 23.01455737451 0 +56 14434 23.01455737451 0 +56 14453 23.01471737451 0 +56 14453 23.01471737451 0 +56 14509 23.031276824169 0 +56 14509 23.031276824169 0 +56 14528 23.031436824169 0 +56 14528 23.031436824169 0 +56 14581 23.093585502869 0 +56 14581 23.093585502869 0 +56 14589 23.093745502869 0 +56 14589 23.093745502869 0 +56 14624 23.14399332347 0 +56 14624 23.14399332347 0 +56 14631 23.14415332347 0 +56 14631 23.14415332347 0 +56 14675 23.314557372866 0 +56 14675 23.314557372866 0 +56 14694 23.314717372866 0 +56 14694 23.314717372866 0 +56 14750 23.331276824195 0 +56 14750 23.331276824195 0 +56 14769 23.331436824195 0 +56 14769 23.331436824195 0 +56 14822 23.393585502869 0 +56 14822 23.393585502869 0 +56 14830 23.393745502869 0 +56 14830 23.393745502869 0 +56 14865 23.443993313527 0 +56 14865 23.443993313527 0 +56 14872 23.444153313527 0 +56 14872 23.444153313527 0 +56 14916 23.614557371257 0 +56 14916 23.614557371257 0 +56 14935 23.614717371257 0 +56 14935 23.614717371257 0 +56 14991 23.631276824238 0 +56 14991 23.631276824238 0 +56 15010 23.631436824238 0 +56 15010 23.631436824238 0 +56 15063 23.693585502869 0 +56 15063 23.693585502869 0 +56 15071 23.693745502869 0 +56 15071 23.693745502869 0 +56 15106 23.743993309221 0 +56 15106 23.743993309221 0 +56 15113 23.744153309221 0 +56 15113 23.744153309221 0 +56 15156 23.914557369634 0 +56 15156 23.914557369634 0 +56 15171 23.914717369634 0 +56 15171 23.914717369634 0 +56 15232 23.931276824212 0 +56 15232 23.931276824212 0 +56 15251 23.931436824212 0 +56 15251 23.931436824212 0 +56 15304 23.993585502869 0 +56 15304 23.993585502869 0 +56 15312 23.993745502869 0 +56 15312 23.993745502869 0 +56 15347 24.043993304961 0 +56 15347 24.043993304961 0 +56 15354 24.044153304961 0 +56 15354 24.044153304961 0 +56 15397 24.214557367961 0 +56 15397 24.214557367961 0 +56 15412 24.214717367961 0 +56 15412 24.214717367961 0 +56 15473 24.231276824049 0 +56 15473 24.231276824049 0 +56 15492 24.231436824049 0 +56 15492 24.231436824049 0 +56 15545 24.293585502869 0 +56 15545 24.293585502869 0 +56 15553 24.293745502869 0 +56 15553 24.293745502869 0 +56 15588 24.343993296734 0 +56 15588 24.343993296734 0 +56 15595 24.344153296734 0 +56 15595 24.344153296734 0 +56 15638 24.514557366429 0 +56 15638 24.514557366429 0 +56 15653 24.514717366429 0 +56 15653 24.514717366429 0 +56 15714 24.531276823944 0 +56 15714 24.531276823944 0 +56 15733 24.531436823944 0 +56 15733 24.531436823944 0 +56 15786 24.593585502869 0 +56 15786 24.593585502869 0 +56 15794 24.593745502869 0 +56 15794 24.593745502869 0 +56 15829 24.643993289194 0 +56 15829 24.643993289194 0 +56 15836 24.644153289194 0 +56 15836 24.644153289194 0 +56 15879 24.814557365061 0 +56 15879 24.814557365061 0 +56 15894 24.814717365061 0 +56 15894 24.814717365061 0 +56 15955 24.831276823957 0 +56 15955 24.831276823957 0 +56 15974 24.831436823957 0 +56 15974 24.831436823957 0 +56 16027 24.893585502869 0 +56 16027 24.893585502869 0 +56 16035 24.893745502869 0 +56 16035 24.893745502869 0 +56 16070 24.943993282619 0 +56 16070 24.943993282619 0 +56 16077 24.944153282619 0 +56 16077 24.944153282619 0 +56 16120 25.114557363825 0 +56 16120 25.114557363825 0 +56 16135 25.114717363825 0 +56 16135 25.114717363825 0 +56 16196 25.131276823934 0 +56 16196 25.131276823934 0 +56 16215 25.131436823934 0 +56 16215 25.131436823934 0 +56 16268 25.193585502869 0 +56 16268 25.193585502869 0 +56 16276 25.193745502869 0 +56 16276 25.193745502869 0 +56 16311 25.243993277481 0 +56 16311 25.243993277481 0 +56 16318 25.244153277481 0 +56 16318 25.244153277481 0 +56 16361 25.414557362755 0 +56 16361 25.414557362755 0 +56 16376 25.414717362755 0 +56 16376 25.414717362755 0 +56 16437 25.431276823911 0 +56 16437 25.431276823911 0 +56 16456 25.431436823911 0 +56 16456 25.431436823911 0 +56 16509 25.493585502869 0 +56 16509 25.493585502869 0 +56 16517 25.493745502869 0 +56 16517 25.493745502869 0 +56 16552 25.54399327434 0 +56 16552 25.54399327434 0 +56 16559 25.54415327434 0 +56 16559 25.54415327434 0 +56 16602 25.71455736198 0 +56 16602 25.71455736198 0 +56 16617 25.71471736198 0 +56 16617 25.71471736198 0 +56 16678 25.731276823855 0 +56 16678 25.731276823855 0 +56 16697 25.731436823855 0 +56 16697 25.731436823855 0 +56 16750 25.793585502869 0 +56 16750 25.793585502869 0 +56 16758 25.793745502869 0 +56 16758 25.793745502869 0 +56 16793 25.843993273696 0 +56 16793 25.843993273696 0 +56 16800 25.844153273696 0 +56 16800 25.844153273696 0 +56 16843 26.014557361437 0 +56 16843 26.014557361437 0 +56 16858 26.014717361437 0 +56 16858 26.014717361437 0 +56 16919 26.031276822435 0 +56 16919 26.031276822435 0 +56 16938 26.031436822435 0 +56 16938 26.031436822435 0 +56 16991 26.093585502869 0 +56 16991 26.093585502869 0 +56 16999 26.093745502869 0 +56 16999 26.093745502869 0 +56 17034 26.143993275957 0 +56 17034 26.143993275957 0 +56 17041 26.144153275957 0 +56 17041 26.144153275957 0 +56 17084 26.314557361533 0 +56 17084 26.314557361533 0 +56 17099 26.314717361533 0 +56 17099 26.314717361533 0 +56 17160 26.331276819514 0 +56 17160 26.331276819514 0 +56 17179 26.331436819514 0 +56 17179 26.331436819514 0 +56 17232 26.393585502869 0 +56 17232 26.393585502869 0 +56 17240 26.393745502869 0 +56 17240 26.393745502869 0 +56 17275 26.443993281636 0 +56 17275 26.443993281636 0 +56 17282 26.444153281636 0 +56 17282 26.444153281636 0 +56 17325 26.614557362396 0 +56 17325 26.614557362396 0 +56 17340 26.614717362396 0 +56 17340 26.614717362396 0 +56 17401 26.631276815275 0 +56 17401 26.631276815275 0 +56 17420 26.631436815275 0 +56 17420 26.631436815275 0 +56 17473 26.693585502869 0 +56 17473 26.693585502869 0 +56 17481 26.693745502869 0 +56 17481 26.693745502869 0 +56 17516 26.743993290495 0 +56 17516 26.743993290495 0 +56 17523 26.744153290495 0 +56 17523 26.744153290495 0 +56 17566 26.914557364009 0 +56 17566 26.914557364009 0 +56 17581 26.914717364009 0 +56 17581 26.914717364009 0 +56 17642 26.931276809646 0 +56 17642 26.931276809646 0 +56 17661 26.931436809646 0 +56 17661 26.931436809646 0 +56 17714 26.993585502869 0 +56 17714 26.993585502869 0 +56 17722 26.993745502869 0 +56 17722 26.993745502869 0 +56 17757 27.043993302033 0 +56 17757 27.043993302033 0 +56 17764 27.044153302033 0 +56 17764 27.044153302033 0 +56 17807 27.214557366345 0 +56 17807 27.214557366345 0 +56 17822 27.214717366345 0 +56 17822 27.214717366345 0 +56 17874 27.231276802678 0 +56 17874 27.231276802678 0 +56 17889 27.231436802678 0 +56 17889 27.231436802678 0 +56 17947 27.293585502869 0 +56 17947 27.293585502869 0 +56 17955 27.293745502869 0 +56 17955 27.293745502869 0 +56 17990 27.34399331576 0 +56 17990 27.34399331576 0 +56 17997 27.34415331576 0 +56 17997 27.34415331576 0 +56 18040 27.514557369437 0 +56 18040 27.514557369437 0 +56 18055 27.514717369437 0 +56 18055 27.514717369437 0 +56 18107 27.531276795041 0 +56 18107 27.531276795041 0 +56 18122 27.531436795041 0 +56 18122 27.531436795041 0 +56 18180 27.593585502869 0 +56 18180 27.593585502869 0 +56 18188 27.593745502869 0 +56 18188 27.593745502869 0 +56 18223 27.643993330828 0 +56 18223 27.643993330828 0 +56 18230 27.644153330828 0 +56 18230 27.644153330828 0 +56 18273 27.814557373228 0 +56 18273 27.814557373228 0 +56 18288 27.814717373228 0 +56 18288 27.814717373228 0 +56 18340 27.83127678721 0 +56 18340 27.83127678721 0 +56 18355 27.83143678721 0 +56 18355 27.83143678721 0 +56 18413 27.893585502869 0 +56 18413 27.893585502869 0 +56 18421 27.893745502869 0 +56 18421 27.893745502869 0 +56 18456 27.943993346916 0 +56 18456 27.943993346916 0 +56 18463 27.944153346916 0 +56 18463 27.944153346916 0 +56 18506 28.11455737771 0 +56 18506 28.11455737771 0 +56 18521 28.11471737771 0 +56 18521 28.11471737771 0 +56 18573 28.131276770655 0 +56 18573 28.131276770655 0 +56 18588 28.131436770655 0 +56 18588 28.131436770655 0 +56 18646 28.193585502869 0 +56 18646 28.193585502869 0 +56 18654 28.193745502869 0 +56 18654 28.193745502869 0 +56 18689 28.243993363816 0 +56 18689 28.243993363816 0 +56 18696 28.244153363816 0 +56 18696 28.244153363816 0 +56 18739 28.41455738295 0 +56 18739 28.41455738295 0 +56 18754 28.41471738295 0 +56 18754 28.41471738295 0 +56 18806 28.431276747906 0 +56 18806 28.431276747906 0 +56 18821 28.431436747906 0 +56 18821 28.431436747906 0 +56 18879 28.493585502869 0 +56 18879 28.493585502869 0 +56 18887 28.493745502869 0 +56 18887 28.493745502869 0 +56 18922 28.543993381372 0 +56 18922 28.543993381372 0 +56 18929 28.544153381372 0 +56 18929 28.544153381372 0 +56 18972 28.714557388816 0 +56 18972 28.714557388816 0 +56 18987 28.714717388816 0 +56 18987 28.714717388816 0 +56 19038 28.731276724087 0 +56 19038 28.731276724087 0 +56 19049 28.731436724087 0 +56 19049 28.731436724087 0 +56 19112 28.793585502869 0 +56 19112 28.793585502869 0 +56 19120 28.793745502869 0 +56 19120 28.793745502869 0 +56 19155 28.843993399418 0 +56 19155 28.843993399418 0 +56 19162 28.844153399418 0 +56 19162 28.844153399418 0 +56 19205 29.014557395373 0 +56 19205 29.014557395373 0 +56 19220 29.014717395373 0 +56 19220 29.014717395373 0 +56 19271 29.031276699665 0 +56 19271 29.031276699665 0 +56 19282 29.031436699665 0 +56 19282 29.031436699665 0 +56 19337 29.093585502869 0 +56 19337 29.093585502869 0 +56 19345 29.093745502869 0 +56 19345 29.093745502869 0 +56 19380 29.143993417837 0 +56 19380 29.143993417837 0 +56 19387 29.144153417837 0 +56 19387 29.144153417837 0 +56 19429 29.314557402593 0 +56 19429 29.314557402593 0 +56 19440 29.314717402593 0 +56 19440 29.314717402593 0 +56 19496 29.331276674765 0 +56 19496 29.331276674765 0 +56 19507 29.331436674765 0 +56 19507 29.331436674765 0 +56 19562 29.393585502869 0 +56 19562 29.393585502869 0 +56 19570 29.393745502869 0 +56 19570 29.393745502869 0 +56 19605 29.443993436569 0 +56 19605 29.443993436569 0 +56 19612 29.444153436569 0 +56 19612 29.444153436569 0 +56 19654 29.61455741041 0 +56 19654 29.61455741041 0 +56 19665 29.61471741041 0 +56 19665 29.61471741041 0 +56 19721 29.631276649424 0 +56 19721 29.631276649424 0 +56 19732 29.631436649424 0 +56 19732 29.631436649424 0 +56 19787 29.693585502869 0 +56 19787 29.693585502869 0 +56 19795 29.693745502869 0 +56 19795 29.693745502869 0 +56 19830 29.743993455545 0 +56 19830 29.743993455545 0 +56 19837 29.744153455545 0 +56 19837 29.744153455545 0 +56 19879 29.914557418813 0 +56 19879 29.914557418813 0 +56 19890 29.914717418813 0 +56 19890 29.914717418813 0 +56 19946 29.93127662341 0 +56 19946 29.93127662341 0 +56 19957 29.93143662341 0 +56 19957 29.93143662341 0 +56 20012 29.993585502869 0 +56 20012 29.993585502869 0 +56 20020 29.993745502869 0 +56 20020 29.993745502869 0 +56 20055 30.043993474721 0 +56 20055 30.043993474721 0 +56 20062 30.044153474721 0 +56 20062 30.044153474721 0 +56 20104 30.214557427759 0 +56 20104 30.214557427759 0 +56 20115 30.214717427759 0 +56 20115 30.214717427759 0 +56 20171 30.231276596705 0 +56 20171 30.231276596705 0 +56 20182 30.231436596705 0 +56 20182 30.231436596705 0 +56 20237 30.293585502869 0 +56 20237 30.293585502869 0 +56 20245 30.293745502869 0 +56 20245 30.293745502869 0 +56 20280 30.343993494113 0 +56 20280 30.343993494113 0 +56 20287 30.344153494113 0 +56 20287 30.344153494113 0 +56 20330 30.514557437221 0 +56 20330 30.514557437221 0 +56 20345 30.514717437221 0 +56 20345 30.514717437221 0 +56 20396 30.531276569374 0 +56 20396 30.531276569374 0 +56 20407 30.531436569374 0 +56 20407 30.531436569374 0 +56 20462 30.593585502869 0 +56 20462 30.593585502869 0 +56 20470 30.593745502869 0 +56 20470 30.593745502869 0 +56 20505 30.643993513628 0 +56 20505 30.643993513628 0 +56 20512 30.644153513628 0 +56 20512 30.644153513628 0 +56 20556 30.814557447201 0 +56 20556 30.814557447201 0 +56 20575 30.814717447201 0 +56 20575 30.814717447201 0 +56 20620 30.831276541474 0 +56 20620 30.831276541474 0 +56 20627 30.831436541474 0 +56 20627 30.831436541474 0 +56 20687 30.893585502869 0 +56 20687 30.893585502869 0 +56 20695 30.893745502869 0 +56 20695 30.893745502869 0 +56 20730 30.943993533271 0 +56 20730 30.943993533271 0 +56 20737 30.944153533271 0 +56 20737 30.944153533271 0 +56 20781 31.114557457713 0 +56 20781 31.114557457713 0 +56 20800 31.114717457713 0 +56 20800 31.114717457713 0 +56 20817 31.124399322913 0 +56 20817 31.124399322913 0 +56 20832 31.124559322913 0 +56 20832 31.124559322913 0 +56 20849 31.131276513237 0 +56 20849 31.131276513237 0 +56 20856 31.131436513237 0 +56 20856 31.131436513237 0 +56 20916 31.193585502869 0 +56 20916 31.193585502869 0 +56 20924 31.193745502869 0 +56 20924 31.193745502869 0 +56 20963 31.243993553001 0 +56 20963 31.243993553001 0 +56 20970 31.244153553001 0 +56 20970 31.244153553001 0 +56 21014 31.414557468667 0 +56 21014 31.414557468667 0 +56 21033 31.414717468667 0 +56 21033 31.414717468667 0 +56 21050 31.424399297163 0 +56 21050 31.424399297163 0 +56 21065 31.424559297163 0 +56 21065 31.424559297163 0 +56 21082 31.431276484978 0 +56 21082 31.431276484978 0 +56 21089 31.431436484978 0 +56 21089 31.431436484978 0 +56 21149 31.493585502869 0 +56 21149 31.493585502869 0 +56 21157 31.493745502869 0 +56 21157 31.493745502869 0 +56 21196 31.543993572835 0 +56 21196 31.543993572835 0 +56 21203 31.544153572835 0 +56 21203 31.544153572835 0 +56 21247 31.7145574801 0 +56 21247 31.7145574801 0 +56 21266 31.7147174801 0 +56 21266 31.7147174801 0 +56 21283 31.724399271431 0 +56 21283 31.724399271431 0 +56 21298 31.724559271431 0 +56 21298 31.724559271431 0 +56 21315 31.731276456746 0 +56 21315 31.731276456746 0 +56 21322 31.731436456746 0 +56 21322 31.731436456746 0 +56 21382 31.793585502869 0 +56 21382 31.793585502869 0 +56 21390 31.793745502869 0 +56 21390 31.793745502869 0 +56 21430 31.843993592699 0 +56 21430 31.843993592699 0 +56 21441 31.844153592699 0 +56 21441 31.844153592699 0 +56 21480 32.014557491924 0 +56 21480 32.014557491924 0 +56 21499 32.014717491924 0 +56 21499 32.014717491924 0 +56 21515 32.024399245722 0 +56 21515 32.024399245722 0 +56 21526 32.024559245722 0 +56 21526 32.024559245722 0 +56 21548 32.031276428528 0 +56 21548 32.031276428528 0 +56 21555 32.031436428528 0 +56 21555 32.031436428528 0 +56 21615 32.093585502869 0 +56 21615 32.093585502869 0 +56 21623 32.093745502869 0 +56 21623 32.093745502869 0 +56 21663 32.143993612639 0 +56 21663 32.143993612639 0 +56 21674 32.144153612639 0 +56 21674 32.144153612639 0 +56 21713 32.31455750416 0 +56 21713 32.31455750416 0 +56 21732 32.31471750416 0 +56 21732 32.31471750416 0 +56 21748 32.324399219895 0 +56 21748 32.324399219895 0 +56 21759 32.324559219895 0 +56 21759 32.324559219895 0 +56 21781 32.331276400291 0 +56 21781 32.331276400291 0 +56 21788 32.331436400291 0 +56 21788 32.331436400291 0 +56 21848 32.393585502869 0 +56 21848 32.393585502869 0 +56 21856 32.393745502869 0 +56 21856 32.393745502869 0 +56 21896 32.443993632704 0 +56 21896 32.443993632704 0 +56 21907 32.444153632704 0 +56 21907 32.444153632704 0 +56 21946 32.61455751675 0 +56 21946 32.61455751675 0 +56 21965 32.61471751675 0 +56 21965 32.61471751675 0 +56 21981 32.624399194111 0 +56 21981 32.624399194111 0 +56 21992 32.624559194111 0 +56 21992 32.624559194111 0 +56 22014 32.631276372037 0 +56 22014 32.631276372037 0 +56 22021 32.631436372037 0 +56 22021 32.631436372037 0 +56 22081 32.693585502869 0 +56 22081 32.693585502869 0 +56 22089 32.693745502869 0 +56 22089 32.693745502869 0 +56 22129 32.743993652819 0 +56 22129 32.743993652819 0 +56 22140 32.744153652819 0 +56 22140 32.744153652819 0 +56 22179 32.914557529741 0 +56 22179 32.914557529741 0 +56 22198 32.914717529741 0 +56 22198 32.914717529741 0 +56 22214 32.924399168331 0 +56 22214 32.924399168331 0 +56 22225 32.924559168331 0 +56 22225 32.924559168331 0 +56 22247 32.9312763438 0 +56 22247 32.9312763438 0 +56 22254 32.9314363438 0 +56 22254 32.9314363438 0 +56 22314 32.993585502869 0 +56 22314 32.993585502869 0 +56 22322 32.993745502869 0 +56 22322 32.993745502869 0 +56 22362 33.043993672958 0 +56 22362 33.043993672958 0 +56 22373 33.044153672958 0 +56 22373 33.044153672958 0 +56 22412 33.214557543026 0 +56 22412 33.214557543026 0 +56 22431 33.214717543026 0 +56 22431 33.214717543026 0 +56 22447 33.224399142569 0 +56 22447 33.224399142569 0 +56 22458 33.224559142569 0 +56 22458 33.224559142569 0 +56 22480 33.231276315598 0 +56 22480 33.231276315598 0 +56 22487 33.231436315598 0 +56 22487 33.231436315598 0 +56 22547 33.293585502869 0 +56 22547 33.293585502869 0 +56 22555 33.293745502869 0 +56 22555 33.293745502869 0 +56 22595 33.343993693134 0 +56 22595 33.343993693134 0 +56 22606 33.344153693134 0 +56 22606 33.344153693134 0 +56 22645 33.514557556648 0 +56 22645 33.514557556648 0 +56 22664 33.514717556648 0 +56 22664 33.514717556648 0 +56 22680 33.524399116789 0 +56 22680 33.524399116789 0 +56 22691 33.524559116789 0 +56 22691 33.524559116789 0 +56 22713 33.531276287401 0 +56 22713 33.531276287401 0 +56 22720 33.531436287401 0 +56 22720 33.531436287401 0 +56 22780 33.593585502869 0 +56 22780 33.593585502869 0 +56 22788 33.593745502869 0 +56 22788 33.593745502869 0 +56 22828 33.643993713368 0 +56 22828 33.643993713368 0 +56 22839 33.644153713368 0 +56 22839 33.644153713368 0 +56 22909 33.824399091063 0 +56 22909 33.824399091063 0 +56 22920 33.824559091063 0 +56 22920 33.824559091063 0 +56 22942 33.831276259307 0 +56 22942 33.831276259307 0 +56 22949 33.831436259307 0 +56 22949 33.831436259307 0 +56 23009 33.893585502869 0 +56 23009 33.893585502869 0 +56 23017 33.893745502869 0 +56 23017 33.893745502869 0 +57 778 5.1 0 +57 778 5.1 0 +57 793 5.143993485014 0 +57 793 5.143993485014 0 +57 799 5.144153485014 0 +57 799 5.144153485014 0 +57 927 5.443993485053 0 +57 927 5.443993485053 0 +57 933 5.444153485053 0 +57 933 5.444153485053 0 +57 1053 5.693585502869 0 +57 1053 5.693585502869 0 +57 1060 5.693745502869 0 +57 1060 5.693745502869 0 +57 1085 5.743993485104 0 +57 1085 5.743993485104 0 +57 1091 5.744153485104 0 +57 1091 5.744153485104 0 +57 1211 5.993585502869 0 +57 1211 5.993585502869 0 +57 1218 5.993745502869 0 +57 1218 5.993745502869 0 +57 1243 6.043993485165 0 +57 1243 6.043993485165 0 +57 1249 6.044153485165 0 +57 1249 6.044153485165 0 +57 1389 6.293585502869 0 +57 1389 6.293585502869 0 +57 1397 6.293745502869 0 +57 1397 6.293745502869 0 +57 1424 6.343993485238 0 +57 1424 6.343993485238 0 +57 1431 6.344153485238 0 +57 1431 6.344153485238 0 +57 1606 6.593585502869 0 +57 1606 6.593585502869 0 +57 1614 6.593745502869 0 +57 1614 6.593745502869 0 +57 1641 6.643993485325 0 +57 1641 6.643993485325 0 +57 1648 6.644153485325 0 +57 1648 6.644153485325 0 +57 1823 6.893585502869 0 +57 1823 6.893585502869 0 +57 1831 6.893745502869 0 +57 1831 6.893745502869 0 +57 1858 6.943993485423 0 +57 1858 6.943993485423 0 +57 1865 6.944153485423 0 +57 1865 6.944153485423 0 +57 2040 7.193585502869 0 +57 2040 7.193585502869 0 +57 2048 7.193745502869 0 +57 2048 7.193745502869 0 +57 2075 7.243993485541 0 +57 2075 7.243993485541 0 +57 2082 7.244153485541 0 +57 2082 7.244153485541 0 +57 2257 7.493585502869 0 +57 2257 7.493585502869 0 +57 2265 7.493745502869 0 +57 2265 7.493745502869 0 +57 2292 7.543993485675 0 +57 2292 7.543993485675 0 +57 2299 7.544153485675 0 +57 2299 7.544153485675 0 +57 2474 7.793585502869 0 +57 2474 7.793585502869 0 +57 2482 7.793745502869 0 +57 2482 7.793745502869 0 +57 2509 7.843993485822 0 +57 2509 7.843993485822 0 +57 2516 7.844153485822 0 +57 2516 7.844153485822 0 +57 2691 8.093585502869 0 +57 2691 8.093585502869 0 +57 2699 8.093745502869 0 +57 2699 8.093745502869 0 +57 2726 8.143993485992 0 +57 2726 8.143993485992 0 +57 2733 8.144153485992 0 +57 2733 8.144153485992 0 +57 2912 8.393585502869 0 +57 2912 8.393585502869 0 +57 2920 8.393745502869 0 +57 2920 8.393745502869 0 +57 2947 8.443993486181 0 +57 2947 8.443993486181 0 +57 2954 8.444153486181 0 +57 2954 8.444153486181 0 +57 3137 8.693585502869 0 +57 3137 8.693585502869 0 +57 3145 8.693745502869 0 +57 3145 8.693745502869 0 +57 3172 8.743993486377 0 +57 3172 8.743993486377 0 +57 3179 8.744153486377 0 +57 3179 8.744153486377 0 +57 3362 8.993585502869 0 +57 3362 8.993585502869 0 +57 3370 8.993745502869 0 +57 3370 8.993745502869 0 +57 3397 9.043993486579 0 +57 3397 9.043993486579 0 +57 3404 9.044153486579 0 +57 3404 9.044153486579 0 +57 3587 9.293585502869 0 +57 3587 9.293585502869 0 +57 3595 9.293745502869 0 +57 3595 9.293745502869 0 +57 3622 9.343993486798 0 +57 3622 9.343993486798 0 +57 3629 9.344153486798 0 +57 3629 9.344153486798 0 +57 3812 9.593585502869 0 +57 3812 9.593585502869 0 +57 3820 9.593745502869 0 +57 3820 9.593745502869 0 +57 3847 9.64399348701 0 +57 3847 9.64399348701 0 +57 3854 9.64415348701 0 +57 3854 9.64415348701 0 +57 4037 9.893585502869 0 +57 4037 9.893585502869 0 +57 4045 9.893745502869 0 +57 4045 9.893745502869 0 +57 4072 9.943993487239 0 +57 4072 9.943993487239 0 +57 4079 9.944153487239 0 +57 4079 9.944153487239 0 +57 4262 10.193585502869 0 +57 4262 10.193585502869 0 +57 4270 10.193745502869 0 +57 4270 10.193745502869 0 +57 4297 10.243993487473 0 +57 4297 10.243993487473 0 +57 4304 10.244153487473 0 +57 4304 10.244153487473 0 +57 4487 10.493585502869 0 +57 4487 10.493585502869 0 +57 4495 10.493745502869 0 +57 4495 10.493745502869 0 +57 4522 10.543993487715 0 +57 4522 10.543993487715 0 +57 4529 10.544153487715 0 +57 4529 10.544153487715 0 +57 4720 10.793585502869 0 +57 4720 10.793585502869 0 +57 4728 10.793745502869 0 +57 4728 10.793745502869 0 +57 4755 10.84399348791 0 +57 4755 10.84399348791 0 +57 4762 10.84415348791 0 +57 4762 10.84415348791 0 +57 4953 11.093585502869 0 +57 4953 11.093585502869 0 +57 4961 11.093745502869 0 +57 4961 11.093745502869 0 +57 4988 11.143993487716 0 +57 4988 11.143993487716 0 +57 4995 11.144153487716 0 +57 4995 11.144153487716 0 +57 5119 11.331276921478 0 +57 5119 11.331276921478 0 +57 5142 11.331436921478 0 +57 5142 11.331436921478 0 +57 5186 11.393585502869 0 +57 5186 11.393585502869 0 +57 5194 11.393745502869 0 +57 5194 11.393745502869 0 +57 5221 11.443993487147 0 +57 5221 11.443993487147 0 +57 5228 11.444153487147 0 +57 5228 11.444153487147 0 +57 5352 11.631276919727 0 +57 5352 11.631276919727 0 +57 5375 11.631436919727 0 +57 5375 11.631436919727 0 +57 5423 11.693585502869 0 +57 5423 11.693585502869 0 +57 5431 11.693745502869 0 +57 5431 11.693745502869 0 +57 5462 11.743993486335 0 +57 5462 11.743993486335 0 +57 5469 11.744153486335 0 +57 5469 11.744153486335 0 +57 5593 11.931276918081 0 +57 5593 11.931276918081 0 +57 5616 11.931436918081 0 +57 5616 11.931436918081 0 +57 5664 11.993585502869 0 +57 5664 11.993585502869 0 +57 5672 11.993745502869 0 +57 5672 11.993745502869 0 +57 5703 12.043993485511 0 +57 5703 12.043993485511 0 +57 5710 12.044153485511 0 +57 5710 12.044153485511 0 +57 5834 12.231276916562 0 +57 5834 12.231276916562 0 +57 5857 12.231436916562 0 +57 5857 12.231436916562 0 +57 5905 12.293585502869 0 +57 5905 12.293585502869 0 +57 5913 12.293745502869 0 +57 5913 12.293745502869 0 +57 5944 12.343993485033 0 +57 5944 12.343993485033 0 +57 5951 12.344153485033 0 +57 5951 12.344153485033 0 +57 6075 12.531276915229 0 +57 6075 12.531276915229 0 +57 6098 12.531436915229 0 +57 6098 12.531436915229 0 +57 6146 12.593585502869 0 +57 6146 12.593585502869 0 +57 6154 12.593745502869 0 +57 6154 12.593745502869 0 +57 6185 12.643993485073 0 +57 6185 12.643993485073 0 +57 6192 12.644153485073 0 +57 6192 12.644153485073 0 +57 6316 12.831276914169 0 +57 6316 12.831276914169 0 +57 6339 12.831436914169 0 +57 6339 12.831436914169 0 +57 6387 12.893585502869 0 +57 6387 12.893585502869 0 +57 6395 12.893745502869 0 +57 6395 12.893745502869 0 +57 6426 12.943993485645 0 +57 6426 12.943993485645 0 +57 6433 12.944153485645 0 +57 6433 12.944153485645 0 +57 6557 13.131276913397 0 +57 6557 13.131276913397 0 +57 6580 13.131436913397 0 +57 6580 13.131436913397 0 +57 6628 13.193585502869 0 +57 6628 13.193585502869 0 +57 6636 13.193745502869 0 +57 6636 13.193745502869 0 +57 6667 13.243993486741 0 +57 6667 13.243993486741 0 +57 6674 13.244153486741 0 +57 6674 13.244153486741 0 +57 6798 13.431276912882 0 +57 6798 13.431276912882 0 +57 6821 13.431436912882 0 +57 6821 13.431436912882 0 +57 6869 13.493585502869 0 +57 6869 13.493585502869 0 +57 6877 13.493745502869 0 +57 6877 13.493745502869 0 +57 6908 13.543993488359 0 +57 6908 13.543993488359 0 +57 6915 13.544153488359 0 +57 6915 13.544153488359 0 +57 7039 13.731276912645 0 +57 7039 13.731276912645 0 +57 7062 13.731436912645 0 +57 7062 13.731436912645 0 +57 7110 13.793585502869 0 +57 7110 13.793585502869 0 +57 7118 13.793745502869 0 +57 7118 13.793745502869 0 +57 7149 13.843993490496 0 +57 7149 13.843993490496 0 +57 7156 13.844153490496 0 +57 7156 13.844153490496 0 +57 7280 14.03127691268 0 +57 7280 14.03127691268 0 +57 7303 14.03143691268 0 +57 7303 14.03143691268 0 +57 7351 14.093585502869 0 +57 7351 14.093585502869 0 +57 7359 14.093745502869 0 +57 7359 14.093745502869 0 +57 7390 14.143993493127 0 +57 7390 14.143993493127 0 +57 7397 14.144153493127 0 +57 7397 14.144153493127 0 +57 7521 14.33127691298 0 +57 7521 14.33127691298 0 +57 7544 14.33143691298 0 +57 7544 14.33143691298 0 +57 7592 14.393585502869 0 +57 7592 14.393585502869 0 +57 7600 14.393745502869 0 +57 7600 14.393745502869 0 +57 7631 14.44399349625 0 +57 7631 14.44399349625 0 +57 7638 14.44415349625 0 +57 7638 14.44415349625 0 +57 7762 14.631276913256 0 +57 7762 14.631276913256 0 +57 7785 14.631436913256 0 +57 7785 14.631436913256 0 +57 7833 14.693585502869 0 +57 7833 14.693585502869 0 +57 7841 14.693745502869 0 +57 7841 14.693745502869 0 +57 7872 14.743993498886 0 +57 7872 14.743993498886 0 +57 7879 14.744153498886 0 +57 7879 14.744153498886 0 +57 8003 14.931276907357 0 +57 8003 14.931276907357 0 +57 8026 14.931436907357 0 +57 8026 14.931436907357 0 +57 8074 14.993585502869 0 +57 8074 14.993585502869 0 +57 8082 14.993745502869 0 +57 8082 14.993745502869 0 +57 8113 15.043993491181 0 +57 8113 15.043993491181 0 +57 8120 15.044153491181 0 +57 8120 15.044153491181 0 +57 8244 15.231276894496 0 +57 8244 15.231276894496 0 +57 8267 15.231436894496 0 +57 8267 15.231436894496 0 +57 8315 15.293585502869 0 +57 8315 15.293585502869 0 +57 8323 15.293745502869 0 +57 8323 15.293745502869 0 +57 8354 15.343993477658 0 +57 8354 15.343993477658 0 +57 8361 15.344153477658 0 +57 8361 15.344153477658 0 +57 8484 15.531276881214 0 +57 8484 15.531276881214 0 +57 8503 15.531436881214 0 +57 8503 15.531436881214 0 +57 8556 15.593585502869 0 +57 8556 15.593585502869 0 +57 8564 15.593745502869 0 +57 8564 15.593745502869 0 +57 8595 15.643993463876 0 +57 8595 15.643993463876 0 +57 8602 15.644153463876 0 +57 8602 15.644153463876 0 +57 8725 15.831276867891 0 +57 8725 15.831276867891 0 +57 8744 15.831436867891 0 +57 8744 15.831436867891 0 +57 8797 15.893585502869 0 +57 8797 15.893585502869 0 +57 8805 15.893745502869 0 +57 8805 15.893745502869 0 +57 8836 15.943993450177 0 +57 8836 15.943993450177 0 +57 8843 15.944153450177 0 +57 8843 15.944153450177 0 +57 8892 16.114557547424 0 +57 8892 16.114557547424 0 +57 8915 16.114717547424 0 +57 8915 16.114717547424 0 +57 8970 16.131276854594 0 +57 8970 16.131276854594 0 +57 8989 16.131436854594 0 +57 8989 16.131436854594 0 +57 9042 16.193585502869 0 +57 9042 16.193585502869 0 +57 9050 16.193745502869 0 +57 9050 16.193745502869 0 +57 9085 16.24399343676 0 +57 9085 16.24399343676 0 +57 9092 16.24415343676 0 +57 9092 16.24415343676 0 +57 9141 16.414557520222 0 +57 9141 16.414557520222 0 +57 9164 16.414717520222 0 +57 9164 16.414717520222 0 +57 9219 16.431276843065 0 +57 9219 16.431276843065 0 +57 9238 16.431436843065 0 +57 9238 16.431436843065 0 +57 9291 16.493585502869 0 +57 9291 16.493585502869 0 +57 9299 16.493745502869 0 +57 9299 16.493745502869 0 +57 9334 16.543993425628 0 +57 9334 16.543993425628 0 +57 9341 16.544153425628 0 +57 9341 16.544153425628 0 +57 9389 16.714557495718 0 +57 9389 16.714557495718 0 +57 9408 16.714717495718 0 +57 9408 16.714717495718 0 +57 9468 16.731276834223 0 +57 9468 16.731276834223 0 +57 9487 16.731436834223 0 +57 9487 16.731436834223 0 +57 9540 16.793585502869 0 +57 9540 16.793585502869 0 +57 9548 16.793745502869 0 +57 9548 16.793745502869 0 +57 9583 16.843993417024 0 +57 9583 16.843993417024 0 +57 9590 16.844153417024 0 +57 9590 16.844153417024 0 +57 9638 17.01455747394 0 +57 9638 17.01455747394 0 +57 9657 17.01471747394 0 +57 9657 17.01471747394 0 +57 9717 17.031276828087 0 +57 9717 17.031276828087 0 +57 9736 17.031436828087 0 +57 9736 17.031436828087 0 +57 9789 17.093585502869 0 +57 9789 17.093585502869 0 +57 9797 17.093745502869 0 +57 9797 17.093745502869 0 +57 9832 17.143993410931 0 +57 9832 17.143993410931 0 +57 9839 17.144153410931 0 +57 9839 17.144153410931 0 +57 9887 17.314557454832 0 +57 9887 17.314557454832 0 +57 9906 17.314717454832 0 +57 9906 17.314717454832 0 +57 9966 17.33127682466 0 +57 9966 17.33127682466 0 +57 9985 17.33143682466 0 +57 9985 17.33143682466 0 +57 10038 17.393585502869 0 +57 10038 17.393585502869 0 +57 10046 17.393745502869 0 +57 10046 17.393745502869 0 +57 10081 17.443993407323 0 +57 10081 17.443993407323 0 +57 10088 17.444153407323 0 +57 10088 17.444153407323 0 +57 10136 17.614557438392 0 +57 10136 17.614557438392 0 +57 10155 17.614717438392 0 +57 10155 17.614717438392 0 +57 10215 17.631276823875 0 +57 10215 17.631276823875 0 +57 10234 17.631436823875 0 +57 10234 17.631436823875 0 +57 10287 17.693585502869 0 +57 10287 17.693585502869 0 +57 10295 17.693745502869 0 +57 10295 17.693745502869 0 +57 10330 17.743993405804 0 +57 10330 17.743993405804 0 +57 10337 17.744153405804 0 +57 10337 17.744153405804 0 +57 10385 17.914557422749 0 +57 10385 17.914557422749 0 +57 10404 17.914717422749 0 +57 10404 17.914717422749 0 +57 10460 17.931276823866 0 +57 10460 17.931276823866 0 +57 10479 17.931436823866 0 +57 10479 17.931436823866 0 +57 10528 17.993585502869 0 +57 10528 17.993585502869 0 +57 10536 17.993745502869 0 +57 10536 17.993745502869 0 +57 10571 18.043993404519 0 +57 10571 18.043993404519 0 +57 10578 18.044153404519 0 +57 10578 18.044153404519 0 +57 10626 18.214557407098 0 +57 10626 18.214557407098 0 +57 10645 18.214717407098 0 +57 10645 18.214717407098 0 +57 10697 18.231276823854 0 +57 10697 18.231276823854 0 +57 10716 18.231436823854 0 +57 10716 18.231436823854 0 +57 10765 18.293585502869 0 +57 10765 18.293585502869 0 +57 10773 18.293745502869 0 +57 10773 18.293745502869 0 +57 10808 18.34399340323 0 +57 10808 18.34399340323 0 +57 10815 18.34415340323 0 +57 10815 18.34415340323 0 +57 10859 18.514557392147 0 +57 10859 18.514557392147 0 +57 10878 18.514717392147 0 +57 10878 18.514717392147 0 +57 10930 18.531276823849 0 +57 10930 18.531276823849 0 +57 10949 18.531436823849 0 +57 10949 18.531436823849 0 +57 10998 18.593585502869 0 +57 10998 18.593585502869 0 +57 11006 18.593745502869 0 +57 11006 18.593745502869 0 +57 11041 18.643993401947 0 +57 11041 18.643993401947 0 +57 11048 18.644153401947 0 +57 11048 18.644153401947 0 +57 11092 18.814557385083 0 +57 11092 18.814557385083 0 +57 11111 18.814717385083 0 +57 11111 18.814717385083 0 +57 11163 18.831276823842 0 +57 11163 18.831276823842 0 +57 11182 18.831436823842 0 +57 11182 18.831436823842 0 +57 11231 18.893585502869 0 +57 11231 18.893585502869 0 +57 11239 18.893745502869 0 +57 11239 18.893745502869 0 +57 11274 18.943993400662 0 +57 11274 18.943993400662 0 +57 11281 18.944153400662 0 +57 11281 18.944153400662 0 +57 11325 19.11455738453 0 +57 11325 19.11455738453 0 +57 11344 19.11471738453 0 +57 11344 19.11471738453 0 +57 11396 19.13127682383 0 +57 11396 19.13127682383 0 +57 11415 19.13143682383 0 +57 11415 19.13143682383 0 +57 11464 19.193585502869 0 +57 11464 19.193585502869 0 +57 11472 19.193745502869 0 +57 11472 19.193745502869 0 +57 11507 19.243993399372 0 +57 11507 19.243993399372 0 +57 11514 19.244153399372 0 +57 11514 19.244153399372 0 +57 11558 19.414557384789 0 +57 11558 19.414557384789 0 +57 11577 19.414717384789 0 +57 11577 19.414717384789 0 +57 11629 19.431276823834 0 +57 11629 19.431276823834 0 +57 11648 19.431436823834 0 +57 11648 19.431436823834 0 +57 11697 19.493585502869 0 +57 11697 19.493585502869 0 +57 11705 19.493745502869 0 +57 11705 19.493745502869 0 +57 11740 19.543993397973 0 +57 11740 19.543993397973 0 +57 11747 19.544153397973 0 +57 11747 19.544153397973 0 +57 11791 19.71455738494 0 +57 11791 19.71455738494 0 +57 11810 19.71471738494 0 +57 11810 19.71471738494 0 +57 11862 19.731276823812 0 +57 11862 19.731276823812 0 +57 11881 19.731436823812 0 +57 11881 19.731436823812 0 +57 11930 19.793585502869 0 +57 11930 19.793585502869 0 +57 11938 19.793745502869 0 +57 11938 19.793745502869 0 +57 11973 19.843993395755 0 +57 11973 19.843993395755 0 +57 11980 19.844153395755 0 +57 11980 19.844153395755 0 +57 12024 20.014557384776 0 +57 12024 20.014557384776 0 +57 12043 20.014717384776 0 +57 12043 20.014717384776 0 +57 12099 20.031276823824 0 +57 12099 20.031276823824 0 +57 12118 20.031436823824 0 +57 12118 20.031436823824 0 +57 12171 20.093585502869 0 +57 12171 20.093585502869 0 +57 12179 20.093745502869 0 +57 12179 20.093745502869 0 +57 12214 20.143993392654 0 +57 12214 20.143993392654 0 +57 12221 20.144153392654 0 +57 12221 20.144153392654 0 +57 12265 20.314557384384 0 +57 12265 20.314557384384 0 +57 12284 20.314717384384 0 +57 12284 20.314717384384 0 +57 12340 20.331276823783 0 +57 12340 20.331276823783 0 +57 12359 20.331436823783 0 +57 12359 20.331436823783 0 +57 12412 20.393585502869 0 +57 12412 20.393585502869 0 +57 12420 20.393745502869 0 +57 12420 20.393745502869 0 +57 12455 20.443993388797 0 +57 12455 20.443993388797 0 +57 12462 20.444153388797 0 +57 12462 20.444153388797 0 +57 12506 20.614557383808 0 +57 12506 20.614557383808 0 +57 12525 20.614717383808 0 +57 12525 20.614717383808 0 +57 12581 20.631276823785 0 +57 12581 20.631276823785 0 +57 12600 20.631436823785 0 +57 12600 20.631436823785 0 +57 12653 20.693585502869 0 +57 12653 20.693585502869 0 +57 12661 20.693745502869 0 +57 12661 20.693745502869 0 +57 12696 20.743993384171 0 +57 12696 20.743993384171 0 +57 12703 20.744153384171 0 +57 12703 20.744153384171 0 +57 12747 20.914557383117 0 +57 12747 20.914557383117 0 +57 12766 20.914717383117 0 +57 12766 20.914717383117 0 +57 12822 20.931276823825 0 +57 12822 20.931276823825 0 +57 12841 20.931436823825 0 +57 12841 20.931436823825 0 +57 12894 20.993585502869 0 +57 12894 20.993585502869 0 +57 12902 20.993745502869 0 +57 12902 20.993745502869 0 +57 12937 21.043993378911 0 +57 12937 21.043993378911 0 +57 12944 21.044153378911 0 +57 12944 21.044153378911 0 +57 12988 21.214557382339 0 +57 12988 21.214557382339 0 +57 13007 21.214717382339 0 +57 13007 21.214717382339 0 +57 13063 21.231276823913 0 +57 13063 21.231276823913 0 +57 13082 21.231436823913 0 +57 13082 21.231436823913 0 +57 13135 21.293585502869 0 +57 13135 21.293585502869 0 +57 13143 21.293745502869 0 +57 13143 21.293745502869 0 +57 13178 21.343993372963 0 +57 13178 21.343993372963 0 +57 13185 21.344153372963 0 +57 13185 21.344153372963 0 +57 13229 21.514557381349 0 +57 13229 21.514557381349 0 +57 13248 21.514717381349 0 +57 13248 21.514717381349 0 +57 13304 21.531276823952 0 +57 13304 21.531276823952 0 +57 13323 21.531436823952 0 +57 13323 21.531436823952 0 +57 13376 21.593585502869 0 +57 13376 21.593585502869 0 +57 13384 21.593745502869 0 +57 13384 21.593745502869 0 +57 13419 21.643993366253 0 +57 13419 21.643993366253 0 +57 13426 21.644153366253 0 +57 13426 21.644153366253 0 +57 13470 21.81455738019 0 +57 13470 21.81455738019 0 +57 13489 21.81471738019 0 +57 13489 21.81471738019 0 +57 13545 21.831276823995 0 +57 13545 21.831276823995 0 +57 13564 21.831436823995 0 +57 13564 21.831436823995 0 +57 13617 21.893585502869 0 +57 13617 21.893585502869 0 +57 13625 21.893745502869 0 +57 13625 21.893745502869 0 +57 13660 21.943993358856 0 +57 13660 21.943993358856 0 +57 13667 21.944153358856 0 +57 13667 21.944153358856 0 +57 13711 22.114557378874 0 +57 13711 22.114557378874 0 +57 13730 22.114717378874 0 +57 13730 22.114717378874 0 +57 13786 22.131276824039 0 +57 13786 22.131276824039 0 +57 13805 22.131436824039 0 +57 13805 22.131436824039 0 +57 13858 22.193585502869 0 +57 13858 22.193585502869 0 +57 13866 22.193745502869 0 +57 13866 22.193745502869 0 +57 13901 22.243993350791 0 +57 13901 22.243993350791 0 +57 13908 22.244153350791 0 +57 13908 22.244153350791 0 +57 13952 22.414557377522 0 +57 13952 22.414557377522 0 +57 13971 22.414717377522 0 +57 13971 22.414717377522 0 +57 14027 22.431276824127 0 +57 14027 22.431276824127 0 +57 14046 22.431436824127 0 +57 14046 22.431436824127 0 +57 14099 22.493585502869 0 +57 14099 22.493585502869 0 +57 14107 22.493745502869 0 +57 14107 22.493745502869 0 +57 14142 22.543993342123 0 +57 14142 22.543993342123 0 +57 14149 22.544153342123 0 +57 14149 22.544153342123 0 +57 14193 22.714557376066 0 +57 14193 22.714557376066 0 +57 14212 22.714717376066 0 +57 14212 22.714717376066 0 +57 14268 22.73127682417 0 +57 14268 22.73127682417 0 +57 14287 22.73143682417 0 +57 14287 22.73143682417 0 +57 14340 22.793585502869 0 +57 14340 22.793585502869 0 +57 14348 22.793745502869 0 +57 14348 22.793745502869 0 +57 14383 22.843993333052 0 +57 14383 22.843993333052 0 +57 14390 22.844153333052 0 +57 14390 22.844153333052 0 +57 14434 23.01455737451 0 +57 14434 23.01455737451 0 +57 14453 23.01471737451 0 +57 14453 23.01471737451 0 +57 14509 23.031276824169 0 +57 14509 23.031276824169 0 +57 14528 23.031436824169 0 +57 14528 23.031436824169 0 +57 14581 23.093585502869 0 +57 14581 23.093585502869 0 +57 14589 23.093745502869 0 +57 14589 23.093745502869 0 +57 14624 23.14399332347 0 +57 14624 23.14399332347 0 +57 14631 23.14415332347 0 +57 14631 23.14415332347 0 +57 14675 23.314557372866 0 +57 14675 23.314557372866 0 +57 14694 23.314717372866 0 +57 14694 23.314717372866 0 +57 14750 23.331276824195 0 +57 14750 23.331276824195 0 +57 14769 23.331436824195 0 +57 14769 23.331436824195 0 +57 14822 23.393585502869 0 +57 14822 23.393585502869 0 +57 14830 23.393745502869 0 +57 14830 23.393745502869 0 +57 14865 23.443993313527 0 +57 14865 23.443993313527 0 +57 14872 23.444153313527 0 +57 14872 23.444153313527 0 +57 14916 23.614557371257 0 +57 14916 23.614557371257 0 +57 14935 23.614717371257 0 +57 14935 23.614717371257 0 +57 14991 23.631276824238 0 +57 14991 23.631276824238 0 +57 15010 23.631436824238 0 +57 15010 23.631436824238 0 +57 15063 23.693585502869 0 +57 15063 23.693585502869 0 +57 15071 23.693745502869 0 +57 15071 23.693745502869 0 +57 15106 23.743993309221 0 +57 15106 23.743993309221 0 +57 15113 23.744153309221 0 +57 15113 23.744153309221 0 +57 15156 23.914557369634 0 +57 15156 23.914557369634 0 +57 15171 23.914717369634 0 +57 15171 23.914717369634 0 +57 15232 23.931276824212 0 +57 15232 23.931276824212 0 +57 15251 23.931436824212 0 +57 15251 23.931436824212 0 +57 15304 23.993585502869 0 +57 15304 23.993585502869 0 +57 15312 23.993745502869 0 +57 15312 23.993745502869 0 +57 15347 24.043993304961 0 +57 15347 24.043993304961 0 +57 15354 24.044153304961 0 +57 15354 24.044153304961 0 +57 15397 24.214557367961 0 +57 15397 24.214557367961 0 +57 15412 24.214717367961 0 +57 15412 24.214717367961 0 +57 15473 24.231276824049 0 +57 15473 24.231276824049 0 +57 15492 24.231436824049 0 +57 15492 24.231436824049 0 +57 15545 24.293585502869 0 +57 15545 24.293585502869 0 +57 15553 24.293745502869 0 +57 15553 24.293745502869 0 +57 15588 24.343993296734 0 +57 15588 24.343993296734 0 +57 15595 24.344153296734 0 +57 15595 24.344153296734 0 +57 15638 24.514557366429 0 +57 15638 24.514557366429 0 +57 15653 24.514717366429 0 +57 15653 24.514717366429 0 +57 15714 24.531276823944 0 +57 15714 24.531276823944 0 +57 15733 24.531436823944 0 +57 15733 24.531436823944 0 +57 15786 24.593585502869 0 +57 15786 24.593585502869 0 +57 15794 24.593745502869 0 +57 15794 24.593745502869 0 +57 15829 24.643993289194 0 +57 15829 24.643993289194 0 +57 15836 24.644153289194 0 +57 15836 24.644153289194 0 +57 15879 24.814557365061 0 +57 15879 24.814557365061 0 +57 15894 24.814717365061 0 +57 15894 24.814717365061 0 +57 15955 24.831276823957 0 +57 15955 24.831276823957 0 +57 15974 24.831436823957 0 +57 15974 24.831436823957 0 +57 16027 24.893585502869 0 +57 16027 24.893585502869 0 +57 16035 24.893745502869 0 +57 16035 24.893745502869 0 +57 16070 24.943993282619 0 +57 16070 24.943993282619 0 +57 16077 24.944153282619 0 +57 16077 24.944153282619 0 +57 16120 25.114557363825 0 +57 16120 25.114557363825 0 +57 16135 25.114717363825 0 +57 16135 25.114717363825 0 +57 16196 25.131276823934 0 +57 16196 25.131276823934 0 +57 16215 25.131436823934 0 +57 16215 25.131436823934 0 +57 16268 25.193585502869 0 +57 16268 25.193585502869 0 +57 16276 25.193745502869 0 +57 16276 25.193745502869 0 +57 16311 25.243993277481 0 +57 16311 25.243993277481 0 +57 16318 25.244153277481 0 +57 16318 25.244153277481 0 +57 16361 25.414557362755 0 +57 16361 25.414557362755 0 +57 16376 25.414717362755 0 +57 16376 25.414717362755 0 +57 16437 25.431276823911 0 +57 16437 25.431276823911 0 +57 16456 25.431436823911 0 +57 16456 25.431436823911 0 +57 16509 25.493585502869 0 +57 16509 25.493585502869 0 +57 16517 25.493745502869 0 +57 16517 25.493745502869 0 +57 16552 25.54399327434 0 +57 16552 25.54399327434 0 +57 16559 25.54415327434 0 +57 16559 25.54415327434 0 +57 16602 25.71455736198 0 +57 16602 25.71455736198 0 +57 16617 25.71471736198 0 +57 16617 25.71471736198 0 +57 16678 25.731276823855 0 +57 16678 25.731276823855 0 +57 16697 25.731436823855 0 +57 16697 25.731436823855 0 +57 16750 25.793585502869 0 +57 16750 25.793585502869 0 +57 16758 25.793745502869 0 +57 16758 25.793745502869 0 +57 16793 25.843993273696 0 +57 16793 25.843993273696 0 +57 16800 25.844153273696 0 +57 16800 25.844153273696 0 +57 16843 26.014557361437 0 +57 16843 26.014557361437 0 +57 16858 26.014717361437 0 +57 16858 26.014717361437 0 +57 16919 26.031276822435 0 +57 16919 26.031276822435 0 +57 16938 26.031436822435 0 +57 16938 26.031436822435 0 +57 16991 26.093585502869 0 +57 16991 26.093585502869 0 +57 16999 26.093745502869 0 +57 16999 26.093745502869 0 +57 17034 26.143993275957 0 +57 17034 26.143993275957 0 +57 17041 26.144153275957 0 +57 17041 26.144153275957 0 +57 17084 26.314557361533 0 +57 17084 26.314557361533 0 +57 17099 26.314717361533 0 +57 17099 26.314717361533 0 +57 17160 26.331276819514 0 +57 17160 26.331276819514 0 +57 17179 26.331436819514 0 +57 17179 26.331436819514 0 +57 17232 26.393585502869 0 +57 17232 26.393585502869 0 +57 17240 26.393745502869 0 +57 17240 26.393745502869 0 +57 17275 26.443993281636 0 +57 17275 26.443993281636 0 +57 17282 26.444153281636 0 +57 17282 26.444153281636 0 +57 17325 26.614557362396 0 +57 17325 26.614557362396 0 +57 17340 26.614717362396 0 +57 17340 26.614717362396 0 +57 17401 26.631276815275 0 +57 17401 26.631276815275 0 +57 17420 26.631436815275 0 +57 17420 26.631436815275 0 +57 17473 26.693585502869 0 +57 17473 26.693585502869 0 +57 17481 26.693745502869 0 +57 17481 26.693745502869 0 +57 17516 26.743993290495 0 +57 17516 26.743993290495 0 +57 17523 26.744153290495 0 +57 17523 26.744153290495 0 +57 17566 26.914557364009 0 +57 17566 26.914557364009 0 +57 17581 26.914717364009 0 +57 17581 26.914717364009 0 +57 17642 26.931276809646 0 +57 17642 26.931276809646 0 +57 17661 26.931436809646 0 +57 17661 26.931436809646 0 +57 17714 26.993585502869 0 +57 17714 26.993585502869 0 +57 17722 26.993745502869 0 +57 17722 26.993745502869 0 +57 17757 27.043993302033 0 +57 17757 27.043993302033 0 +57 17764 27.044153302033 0 +57 17764 27.044153302033 0 +57 17807 27.214557366345 0 +57 17807 27.214557366345 0 +57 17822 27.214717366345 0 +57 17822 27.214717366345 0 +57 17874 27.231276802678 0 +57 17874 27.231276802678 0 +57 17889 27.231436802678 0 +57 17889 27.231436802678 0 +57 17947 27.293585502869 0 +57 17947 27.293585502869 0 +57 17955 27.293745502869 0 +57 17955 27.293745502869 0 +57 17990 27.34399331576 0 +57 17990 27.34399331576 0 +57 17997 27.34415331576 0 +57 17997 27.34415331576 0 +57 18040 27.514557369437 0 +57 18040 27.514557369437 0 +57 18055 27.514717369437 0 +57 18055 27.514717369437 0 +57 18107 27.531276795041 0 +57 18107 27.531276795041 0 +57 18122 27.531436795041 0 +57 18122 27.531436795041 0 +57 18180 27.593585502869 0 +57 18180 27.593585502869 0 +57 18188 27.593745502869 0 +57 18188 27.593745502869 0 +57 18223 27.643993330828 0 +57 18223 27.643993330828 0 +57 18230 27.644153330828 0 +57 18230 27.644153330828 0 +57 18273 27.814557373228 0 +57 18273 27.814557373228 0 +57 18288 27.814717373228 0 +57 18288 27.814717373228 0 +57 18340 27.83127678721 0 +57 18340 27.83127678721 0 +57 18355 27.83143678721 0 +57 18355 27.83143678721 0 +57 18413 27.893585502869 0 +57 18413 27.893585502869 0 +57 18421 27.893745502869 0 +57 18421 27.893745502869 0 +57 18456 27.943993346916 0 +57 18456 27.943993346916 0 +57 18463 27.944153346916 0 +57 18463 27.944153346916 0 +57 18506 28.11455737771 0 +57 18506 28.11455737771 0 +57 18521 28.11471737771 0 +57 18521 28.11471737771 0 +57 18573 28.131276770655 0 +57 18573 28.131276770655 0 +57 18588 28.131436770655 0 +57 18588 28.131436770655 0 +57 18646 28.193585502869 0 +57 18646 28.193585502869 0 +57 18654 28.193745502869 0 +57 18654 28.193745502869 0 +57 18689 28.243993363816 0 +57 18689 28.243993363816 0 +57 18696 28.244153363816 0 +57 18696 28.244153363816 0 +57 18739 28.41455738295 0 +57 18739 28.41455738295 0 +57 18754 28.41471738295 0 +57 18754 28.41471738295 0 +57 18806 28.431276747906 0 +57 18806 28.431276747906 0 +57 18821 28.431436747906 0 +57 18821 28.431436747906 0 +57 18879 28.493585502869 0 +57 18879 28.493585502869 0 +57 18887 28.493745502869 0 +57 18887 28.493745502869 0 +57 18922 28.543993381372 0 +57 18922 28.543993381372 0 +57 18929 28.544153381372 0 +57 18929 28.544153381372 0 +57 18972 28.714557388816 0 +57 18972 28.714557388816 0 +57 18987 28.714717388816 0 +57 18987 28.714717388816 0 +57 19038 28.731276724087 0 +57 19038 28.731276724087 0 +57 19049 28.731436724087 0 +57 19049 28.731436724087 0 +57 19112 28.793585502869 0 +57 19112 28.793585502869 0 +57 19120 28.793745502869 0 +57 19120 28.793745502869 0 +57 19155 28.843993399418 0 +57 19155 28.843993399418 0 +57 19162 28.844153399418 0 +57 19162 28.844153399418 0 +57 19205 29.014557395373 0 +57 19205 29.014557395373 0 +57 19220 29.014717395373 0 +57 19220 29.014717395373 0 +57 19271 29.031276699665 0 +57 19271 29.031276699665 0 +57 19282 29.031436699665 0 +57 19282 29.031436699665 0 +57 19337 29.093585502869 0 +57 19337 29.093585502869 0 +57 19345 29.093745502869 0 +57 19345 29.093745502869 0 +57 19380 29.143993417837 0 +57 19380 29.143993417837 0 +57 19387 29.144153417837 0 +57 19387 29.144153417837 0 +57 19429 29.314557402593 0 +57 19429 29.314557402593 0 +57 19440 29.314717402593 0 +57 19440 29.314717402593 0 +57 19496 29.331276674765 0 +57 19496 29.331276674765 0 +57 19507 29.331436674765 0 +57 19507 29.331436674765 0 +57 19562 29.393585502869 0 +57 19562 29.393585502869 0 +57 19570 29.393745502869 0 +57 19570 29.393745502869 0 +57 19605 29.443993436569 0 +57 19605 29.443993436569 0 +57 19612 29.444153436569 0 +57 19612 29.444153436569 0 +57 19654 29.61455741041 0 +57 19654 29.61455741041 0 +57 19665 29.61471741041 0 +57 19665 29.61471741041 0 +57 19721 29.631276649424 0 +57 19721 29.631276649424 0 +57 19732 29.631436649424 0 +57 19732 29.631436649424 0 +57 19787 29.693585502869 0 +57 19787 29.693585502869 0 +57 19795 29.693745502869 0 +57 19795 29.693745502869 0 +57 19830 29.743993455545 0 +57 19830 29.743993455545 0 +57 19837 29.744153455545 0 +57 19837 29.744153455545 0 +57 19879 29.914557418813 0 +57 19879 29.914557418813 0 +57 19890 29.914717418813 0 +57 19890 29.914717418813 0 +57 19946 29.93127662341 0 +57 19946 29.93127662341 0 +57 19957 29.93143662341 0 +57 19957 29.93143662341 0 +57 20012 29.993585502869 0 +57 20012 29.993585502869 0 +57 20020 29.993745502869 0 +57 20020 29.993745502869 0 +57 20055 30.043993474721 0 +57 20055 30.043993474721 0 +57 20062 30.044153474721 0 +57 20062 30.044153474721 0 +57 20104 30.214557427759 0 +57 20104 30.214557427759 0 +57 20115 30.214717427759 0 +57 20115 30.214717427759 0 +57 20171 30.231276596705 0 +57 20171 30.231276596705 0 +57 20182 30.231436596705 0 +57 20182 30.231436596705 0 +57 20237 30.293585502869 0 +57 20237 30.293585502869 0 +57 20245 30.293745502869 0 +57 20245 30.293745502869 0 +57 20280 30.343993494113 0 +57 20280 30.343993494113 0 +57 20287 30.344153494113 0 +57 20287 30.344153494113 0 +57 20330 30.514557437221 0 +57 20330 30.514557437221 0 +57 20345 30.514717437221 0 +57 20345 30.514717437221 0 +57 20396 30.531276569374 0 +57 20396 30.531276569374 0 +57 20407 30.531436569374 0 +57 20407 30.531436569374 0 +57 20462 30.593585502869 0 +57 20462 30.593585502869 0 +57 20470 30.593745502869 0 +57 20470 30.593745502869 0 +57 20505 30.643993513628 0 +57 20505 30.643993513628 0 +57 20512 30.644153513628 0 +57 20512 30.644153513628 0 +57 20556 30.814557447201 0 +57 20556 30.814557447201 0 +57 20575 30.814717447201 0 +57 20575 30.814717447201 0 +57 20620 30.831276541474 0 +57 20620 30.831276541474 0 +57 20627 30.831436541474 0 +57 20627 30.831436541474 0 +57 20687 30.893585502869 0 +57 20687 30.893585502869 0 +57 20695 30.893745502869 0 +57 20695 30.893745502869 0 +57 20730 30.943993533271 0 +57 20730 30.943993533271 0 +57 20737 30.944153533271 0 +57 20737 30.944153533271 0 +57 20781 31.114557457713 0 +57 20781 31.114557457713 0 +57 20800 31.114717457713 0 +57 20800 31.114717457713 0 +57 20817 31.124399322913 0 +57 20817 31.124399322913 0 +57 20832 31.124559322913 0 +57 20832 31.124559322913 0 +57 20849 31.131276513237 0 +57 20849 31.131276513237 0 +57 20856 31.131436513237 0 +57 20856 31.131436513237 0 +57 20916 31.193585502869 0 +57 20916 31.193585502869 0 +57 20924 31.193745502869 0 +57 20924 31.193745502869 0 +57 20963 31.243993553001 0 +57 20963 31.243993553001 0 +57 20970 31.244153553001 0 +57 20970 31.244153553001 0 +57 21014 31.414557468667 0 +57 21014 31.414557468667 0 +57 21033 31.414717468667 0 +57 21033 31.414717468667 0 +57 21050 31.424399297163 0 +57 21050 31.424399297163 0 +57 21065 31.424559297163 0 +57 21065 31.424559297163 0 +57 21082 31.431276484978 0 +57 21082 31.431276484978 0 +57 21089 31.431436484978 0 +57 21089 31.431436484978 0 +57 21149 31.493585502869 0 +57 21149 31.493585502869 0 +57 21157 31.493745502869 0 +57 21157 31.493745502869 0 +57 21196 31.543993572835 0 +57 21196 31.543993572835 0 +57 21203 31.544153572835 0 +57 21203 31.544153572835 0 +57 21247 31.7145574801 0 +57 21247 31.7145574801 0 +57 21266 31.7147174801 0 +57 21266 31.7147174801 0 +57 21283 31.724399271431 0 +57 21283 31.724399271431 0 +57 21298 31.724559271431 0 +57 21298 31.724559271431 0 +57 21315 31.731276456746 0 +57 21315 31.731276456746 0 +57 21322 31.731436456746 0 +57 21322 31.731436456746 0 +57 21382 31.793585502869 0 +57 21382 31.793585502869 0 +57 21390 31.793745502869 0 +57 21390 31.793745502869 0 +57 21430 31.843993592699 0 +57 21430 31.843993592699 0 +57 21441 31.844153592699 0 +57 21441 31.844153592699 0 +57 21480 32.014557491924 0 +57 21480 32.014557491924 0 +57 21499 32.014717491924 0 +57 21499 32.014717491924 0 +57 21515 32.024399245722 0 +57 21515 32.024399245722 0 +57 21526 32.024559245722 0 +57 21526 32.024559245722 0 +57 21548 32.031276428528 0 +57 21548 32.031276428528 0 +57 21555 32.031436428528 0 +57 21555 32.031436428528 0 +57 21615 32.093585502869 0 +57 21615 32.093585502869 0 +57 21623 32.093745502869 0 +57 21623 32.093745502869 0 +57 21663 32.143993612639 0 +57 21663 32.143993612639 0 +57 21674 32.144153612639 0 +57 21674 32.144153612639 0 +57 21713 32.31455750416 0 +57 21713 32.31455750416 0 +57 21732 32.31471750416 0 +57 21732 32.31471750416 0 +57 21748 32.324399219895 0 +57 21748 32.324399219895 0 +57 21759 32.324559219895 0 +57 21759 32.324559219895 0 +57 21781 32.331276400291 0 +57 21781 32.331276400291 0 +57 21788 32.331436400291 0 +57 21788 32.331436400291 0 +57 21848 32.393585502869 0 +57 21848 32.393585502869 0 +57 21856 32.393745502869 0 +57 21856 32.393745502869 0 +57 21896 32.443993632704 0 +57 21896 32.443993632704 0 +57 21907 32.444153632704 0 +57 21907 32.444153632704 0 +57 21946 32.61455751675 0 +57 21946 32.61455751675 0 +57 21965 32.61471751675 0 +57 21965 32.61471751675 0 +57 21981 32.624399194111 0 +57 21981 32.624399194111 0 +57 21992 32.624559194111 0 +57 21992 32.624559194111 0 +57 22014 32.631276372037 0 +57 22014 32.631276372037 0 +57 22021 32.631436372037 0 +57 22021 32.631436372037 0 +57 22081 32.693585502869 0 +57 22081 32.693585502869 0 +57 22089 32.693745502869 0 +57 22089 32.693745502869 0 +57 22129 32.743993652819 0 +57 22129 32.743993652819 0 +57 22140 32.744153652819 0 +57 22140 32.744153652819 0 +57 22179 32.914557529741 0 +57 22179 32.914557529741 0 +57 22198 32.914717529741 0 +57 22198 32.914717529741 0 +57 22214 32.924399168331 0 +57 22214 32.924399168331 0 +57 22225 32.924559168331 0 +57 22225 32.924559168331 0 +57 22247 32.9312763438 0 +57 22247 32.9312763438 0 +57 22254 32.9314363438 0 +57 22254 32.9314363438 0 +57 22314 32.993585502869 0 +57 22314 32.993585502869 0 +57 22322 32.993745502869 0 +57 22322 32.993745502869 0 +57 22362 33.043993672958 0 +57 22362 33.043993672958 0 +57 22373 33.044153672958 0 +57 22373 33.044153672958 0 +57 22412 33.214557543026 0 +57 22412 33.214557543026 0 +57 22431 33.214717543026 0 +57 22431 33.214717543026 0 +57 22447 33.224399142569 0 +57 22447 33.224399142569 0 +57 22458 33.224559142569 0 +57 22458 33.224559142569 0 +57 22480 33.231276315598 0 +57 22480 33.231276315598 0 +57 22487 33.231436315598 0 +57 22487 33.231436315598 0 +57 22547 33.293585502869 0 +57 22547 33.293585502869 0 +57 22555 33.293745502869 0 +57 22555 33.293745502869 0 +57 22595 33.343993693134 0 +57 22595 33.343993693134 0 +57 22606 33.344153693134 0 +57 22606 33.344153693134 0 +57 22645 33.514557556648 0 +57 22645 33.514557556648 0 +57 22664 33.514717556648 0 +57 22664 33.514717556648 0 +57 22680 33.524399116789 0 +57 22680 33.524399116789 0 +57 22691 33.524559116789 0 +57 22691 33.524559116789 0 +57 22713 33.531276287401 0 +57 22713 33.531276287401 0 +57 22720 33.531436287401 0 +57 22720 33.531436287401 0 +57 22780 33.593585502869 0 +57 22780 33.593585502869 0 +57 22788 33.593745502869 0 +57 22788 33.593745502869 0 +57 22828 33.643993713368 0 +57 22828 33.643993713368 0 +57 22839 33.644153713368 0 +57 22839 33.644153713368 0 +57 22909 33.824399091063 0 +57 22909 33.824399091063 0 +57 22920 33.824559091063 0 +57 22920 33.824559091063 0 +57 22942 33.831276259307 0 +57 22942 33.831276259307 0 +57 22949 33.831436259307 0 +57 22949 33.831436259307 0 +57 23009 33.893585502869 0 +57 23009 33.893585502869 0 +57 23017 33.893745502869 0 +57 23017 33.893745502869 0 +58 778 5.1 0 +58 778 5.1 0 +58 793 5.143993485014 0 +58 793 5.143993485014 0 +58 799 5.144153485014 0 +58 799 5.144153485014 0 +58 927 5.443993485053 0 +58 927 5.443993485053 0 +58 933 5.444153485053 0 +58 933 5.444153485053 0 +58 1049 5.693585502869 0 +58 1049 5.693585502869 2 +58 1050 5.693585502869 2 +58 1050 5.693585502869 0 +58 1053 5.693585502869 0 +58 1053 5.693585502869 0 +58 1060 5.693745502869 0 +58 1060 5.693745502869 0 +58 1085 5.743993485104 0 +58 1085 5.743993485104 0 +58 1091 5.744153485104 0 +58 1091 5.744153485104 0 +58 1207 5.993585502869 0 +58 1207 5.993585502869 2 +58 1208 5.993585502869 2 +58 1208 5.993585502869 0 +58 1211 5.993585502869 0 +58 1211 5.993585502869 0 +58 1218 5.993745502869 0 +58 1218 5.993745502869 0 +58 1243 6.043993485165 0 +58 1243 6.043993485165 0 +58 1249 6.044153485165 0 +58 1249 6.044153485165 0 +58 1385 6.293585502869 0 +58 1385 6.293585502869 2 +58 1386 6.293585502869 2 +58 1386 6.293585502869 0 +58 1389 6.293585502869 0 +58 1389 6.293585502869 0 +58 1397 6.293745502869 0 +58 1397 6.293745502869 0 +58 1424 6.343993485238 0 +58 1424 6.343993485238 0 +58 1431 6.344153485238 0 +58 1431 6.344153485238 0 +58 1602 6.593585502869 0 +58 1602 6.593585502869 2 +58 1603 6.593585502869 2 +58 1603 6.593585502869 0 +58 1606 6.593585502869 0 +58 1606 6.593585502869 0 +58 1614 6.593745502869 0 +58 1614 6.593745502869 0 +58 1641 6.643993485325 0 +58 1641 6.643993485325 0 +58 1648 6.644153485325 0 +58 1648 6.644153485325 0 +58 1819 6.893585502869 0 +58 1819 6.893585502869 2 +58 1820 6.893585502869 2 +58 1820 6.893585502869 0 +58 1823 6.893585502869 0 +58 1823 6.893585502869 0 +58 1831 6.893745502869 0 +58 1831 6.893745502869 0 +58 1858 6.943993485423 0 +58 1858 6.943993485423 0 +58 1865 6.944153485423 0 +58 1865 6.944153485423 0 +58 2036 7.193585502869 0 +58 2036 7.193585502869 2 +58 2037 7.193585502869 2 +58 2037 7.193585502869 0 +58 2040 7.193585502869 0 +58 2040 7.193585502869 0 +58 2048 7.193745502869 0 +58 2048 7.193745502869 0 +58 2075 7.243993485541 0 +58 2075 7.243993485541 0 +58 2082 7.244153485541 0 +58 2082 7.244153485541 0 +58 2253 7.493585502869 0 +58 2253 7.493585502869 2 +58 2254 7.493585502869 2 +58 2254 7.493585502869 0 +58 2257 7.493585502869 0 +58 2257 7.493585502869 0 +58 2265 7.493745502869 0 +58 2265 7.493745502869 0 +58 2292 7.543993485675 0 +58 2292 7.543993485675 0 +58 2299 7.544153485675 0 +58 2299 7.544153485675 0 +58 2470 7.793585502869 0 +58 2470 7.793585502869 2 +58 2471 7.793585502869 2 +58 2471 7.793585502869 0 +58 2474 7.793585502869 0 +58 2474 7.793585502869 0 +58 2482 7.793745502869 0 +58 2482 7.793745502869 0 +58 2509 7.843993485822 0 +58 2509 7.843993485822 0 +58 2516 7.844153485822 0 +58 2516 7.844153485822 0 +58 2687 8.093585502869 0 +58 2687 8.093585502869 2 +58 2688 8.093585502869 2 +58 2688 8.093585502869 0 +58 2691 8.093585502869 0 +58 2691 8.093585502869 0 +58 2699 8.093745502869 0 +58 2699 8.093745502869 0 +58 2726 8.143993485992 0 +58 2726 8.143993485992 0 +58 2733 8.144153485992 0 +58 2733 8.144153485992 0 +58 2908 8.393585502869 0 +58 2908 8.393585502869 2 +58 2909 8.393585502869 2 +58 2909 8.393585502869 0 +58 2912 8.393585502869 0 +58 2912 8.393585502869 0 +58 2920 8.393745502869 0 +58 2920 8.393745502869 0 +58 2947 8.443993486181 0 +58 2947 8.443993486181 0 +58 2954 8.444153486181 0 +58 2954 8.444153486181 0 +58 3133 8.693585502869 0 +58 3133 8.693585502869 2 +58 3134 8.693585502869 2 +58 3134 8.693585502869 0 +58 3137 8.693585502869 0 +58 3137 8.693585502869 0 +58 3145 8.693745502869 0 +58 3145 8.693745502869 0 +58 3172 8.743993486377 0 +58 3172 8.743993486377 0 +58 3179 8.744153486377 0 +58 3179 8.744153486377 0 +58 3358 8.993585502869 0 +58 3358 8.993585502869 2 +58 3359 8.993585502869 2 +58 3359 8.993585502869 0 +58 3362 8.993585502869 0 +58 3362 8.993585502869 0 +58 3370 8.993745502869 0 +58 3370 8.993745502869 0 +58 3397 9.043993486579 0 +58 3397 9.043993486579 0 +58 3404 9.044153486579 0 +58 3404 9.044153486579 0 +58 3583 9.293585502869 0 +58 3583 9.293585502869 2 +58 3584 9.293585502869 2 +58 3584 9.293585502869 0 +58 3587 9.293585502869 0 +58 3587 9.293585502869 0 +58 3595 9.293745502869 0 +58 3595 9.293745502869 0 +58 3622 9.343993486798 0 +58 3622 9.343993486798 0 +58 3629 9.344153486798 0 +58 3629 9.344153486798 0 +58 3808 9.593585502869 0 +58 3808 9.593585502869 2 +58 3809 9.593585502869 2 +58 3809 9.593585502869 0 +58 3812 9.593585502869 0 +58 3812 9.593585502869 0 +58 3820 9.593745502869 0 +58 3820 9.593745502869 0 +58 3847 9.64399348701 0 +58 3847 9.64399348701 0 +58 3854 9.64415348701 0 +58 3854 9.64415348701 0 +58 4033 9.893585502869 0 +58 4033 9.893585502869 2 +58 4034 9.893585502869 2 +58 4034 9.893585502869 0 +58 4037 9.893585502869 0 +58 4037 9.893585502869 0 +58 4045 9.893745502869 0 +58 4045 9.893745502869 0 +58 4072 9.943993487239 0 +58 4072 9.943993487239 0 +58 4079 9.944153487239 0 +58 4079 9.944153487239 0 +58 4258 10.193585502869 0 +58 4258 10.193585502869 2 +58 4259 10.193585502869 2 +58 4259 10.193585502869 0 +58 4262 10.193585502869 0 +58 4262 10.193585502869 0 +58 4270 10.193745502869 0 +58 4270 10.193745502869 0 +58 4297 10.243993487473 0 +58 4297 10.243993487473 0 +58 4304 10.244153487473 0 +58 4304 10.244153487473 0 +58 4483 10.493585502869 0 +58 4483 10.493585502869 2 +58 4484 10.493585502869 2 +58 4484 10.493585502869 0 +58 4487 10.493585502869 0 +58 4487 10.493585502869 0 +58 4495 10.493745502869 0 +58 4495 10.493745502869 0 +58 4522 10.543993487715 0 +58 4522 10.543993487715 0 +58 4529 10.544153487715 0 +58 4529 10.544153487715 0 +58 4716 10.793585502869 0 +58 4716 10.793585502869 2 +58 4717 10.793585502869 2 +58 4717 10.793585502869 0 +58 4720 10.793585502869 0 +58 4720 10.793585502869 0 +58 4728 10.793745502869 0 +58 4728 10.793745502869 0 +58 4755 10.84399348791 0 +58 4755 10.84399348791 0 +58 4762 10.84415348791 0 +58 4762 10.84415348791 0 +58 4949 11.093585502869 0 +58 4949 11.093585502869 2 +58 4950 11.093585502869 2 +58 4950 11.093585502869 0 +58 4953 11.093585502869 0 +58 4953 11.093585502869 0 +58 4961 11.093745502869 0 +58 4961 11.093745502869 0 +58 4988 11.143993487716 0 +58 4988 11.143993487716 0 +58 4995 11.144153487716 0 +58 4995 11.144153487716 0 +58 5119 11.331276921478 0 +58 5119 11.331276921478 0 +58 5142 11.331436921478 0 +58 5142 11.331436921478 0 +58 5182 11.393585502869 0 +58 5182 11.393585502869 2 +58 5183 11.393585502869 2 +58 5183 11.393585502869 0 +58 5186 11.393585502869 0 +58 5186 11.393585502869 0 +58 5194 11.393745502869 0 +58 5194 11.393745502869 0 +58 5221 11.443993487147 0 +58 5221 11.443993487147 0 +58 5228 11.444153487147 0 +58 5228 11.444153487147 0 +58 5352 11.631276919727 0 +58 5352 11.631276919727 0 +58 5375 11.631436919727 0 +58 5375 11.631436919727 0 +58 5419 11.693585502869 0 +58 5419 11.693585502869 2 +58 5420 11.693585502869 2 +58 5420 11.693585502869 0 +58 5423 11.693585502869 0 +58 5423 11.693585502869 0 +58 5431 11.693745502869 0 +58 5431 11.693745502869 0 +58 5462 11.743993486335 0 +58 5462 11.743993486335 0 +58 5469 11.744153486335 0 +58 5469 11.744153486335 0 +58 5593 11.931276918081 0 +58 5593 11.931276918081 0 +58 5616 11.931436918081 0 +58 5616 11.931436918081 0 +58 5660 11.993585502869 0 +58 5660 11.993585502869 2 +58 5661 11.993585502869 2 +58 5661 11.993585502869 0 +58 5664 11.993585502869 0 +58 5664 11.993585502869 0 +58 5672 11.993745502869 0 +58 5672 11.993745502869 0 +58 5703 12.043993485511 0 +58 5703 12.043993485511 0 +58 5710 12.044153485511 0 +58 5710 12.044153485511 0 +58 5834 12.231276916562 0 +58 5834 12.231276916562 0 +58 5857 12.231436916562 0 +58 5857 12.231436916562 0 +58 5901 12.293585502869 0 +58 5901 12.293585502869 2 +58 5902 12.293585502869 2 +58 5902 12.293585502869 0 +58 5905 12.293585502869 0 +58 5905 12.293585502869 0 +58 5913 12.293745502869 0 +58 5913 12.293745502869 0 +58 5944 12.343993485033 0 +58 5944 12.343993485033 0 +58 5951 12.344153485033 0 +58 5951 12.344153485033 0 +58 6075 12.531276915229 0 +58 6075 12.531276915229 0 +58 6098 12.531436915229 0 +58 6098 12.531436915229 0 +58 6142 12.593585502869 0 +58 6142 12.593585502869 2 +58 6143 12.593585502869 2 +58 6143 12.593585502869 0 +58 6146 12.593585502869 0 +58 6146 12.593585502869 0 +58 6154 12.593745502869 0 +58 6154 12.593745502869 0 +58 6185 12.643993485073 0 +58 6185 12.643993485073 0 +58 6192 12.644153485073 0 +58 6192 12.644153485073 0 +58 6316 12.831276914169 0 +58 6316 12.831276914169 0 +58 6339 12.831436914169 0 +58 6339 12.831436914169 0 +58 6383 12.893585502869 0 +58 6383 12.893585502869 2 +58 6384 12.893585502869 2 +58 6384 12.893585502869 0 +58 6387 12.893585502869 0 +58 6387 12.893585502869 0 +58 6395 12.893745502869 0 +58 6395 12.893745502869 0 +58 6426 12.943993485645 0 +58 6426 12.943993485645 0 +58 6433 12.944153485645 0 +58 6433 12.944153485645 0 +58 6557 13.131276913397 0 +58 6557 13.131276913397 0 +58 6580 13.131436913397 0 +58 6580 13.131436913397 0 +58 6624 13.193585502869 0 +58 6624 13.193585502869 2 +58 6625 13.193585502869 2 +58 6625 13.193585502869 0 +58 6628 13.193585502869 0 +58 6628 13.193585502869 0 +58 6636 13.193745502869 0 +58 6636 13.193745502869 0 +58 6667 13.243993486741 0 +58 6667 13.243993486741 0 +58 6674 13.244153486741 0 +58 6674 13.244153486741 0 +58 6798 13.431276912882 0 +58 6798 13.431276912882 0 +58 6821 13.431436912882 0 +58 6821 13.431436912882 0 +58 6865 13.493585502869 0 +58 6865 13.493585502869 2 +58 6866 13.493585502869 2 +58 6866 13.493585502869 0 +58 6869 13.493585502869 0 +58 6869 13.493585502869 0 +58 6877 13.493745502869 0 +58 6877 13.493745502869 0 +58 6908 13.543993488359 0 +58 6908 13.543993488359 0 +58 6915 13.544153488359 0 +58 6915 13.544153488359 0 +58 7039 13.731276912645 0 +58 7039 13.731276912645 0 +58 7062 13.731436912645 0 +58 7062 13.731436912645 0 +58 7106 13.793585502869 0 +58 7106 13.793585502869 2 +58 7107 13.793585502869 2 +58 7107 13.793585502869 0 +58 7110 13.793585502869 0 +58 7110 13.793585502869 0 +58 7118 13.793745502869 0 +58 7118 13.793745502869 0 +58 7149 13.843993490496 0 +58 7149 13.843993490496 0 +58 7156 13.844153490496 0 +58 7156 13.844153490496 0 +58 7280 14.03127691268 0 +58 7280 14.03127691268 0 +58 7303 14.03143691268 0 +58 7303 14.03143691268 0 +58 7347 14.093585502869 0 +58 7347 14.093585502869 2 +58 7348 14.093585502869 2 +58 7348 14.093585502869 0 +58 7351 14.093585502869 0 +58 7351 14.093585502869 0 +58 7359 14.093745502869 0 +58 7359 14.093745502869 0 +58 7390 14.143993493127 0 +58 7390 14.143993493127 0 +58 7397 14.144153493127 0 +58 7397 14.144153493127 0 +58 7521 14.33127691298 0 +58 7521 14.33127691298 0 +58 7544 14.33143691298 0 +58 7544 14.33143691298 0 +58 7588 14.393585502869 0 +58 7588 14.393585502869 2 +58 7589 14.393585502869 2 +58 7589 14.393585502869 0 +58 7592 14.393585502869 0 +58 7592 14.393585502869 0 +58 7600 14.393745502869 0 +58 7600 14.393745502869 0 +58 7631 14.44399349625 0 +58 7631 14.44399349625 0 +58 7638 14.44415349625 0 +58 7638 14.44415349625 0 +58 7762 14.631276913256 0 +58 7762 14.631276913256 0 +58 7785 14.631436913256 0 +58 7785 14.631436913256 0 +58 7829 14.693585502869 0 +58 7829 14.693585502869 2 +58 7830 14.693585502869 2 +58 7830 14.693585502869 0 +58 7833 14.693585502869 0 +58 7833 14.693585502869 0 +58 7841 14.693745502869 0 +58 7841 14.693745502869 0 +58 7872 14.743993498886 0 +58 7872 14.743993498886 0 +58 7879 14.744153498886 0 +58 7879 14.744153498886 0 +58 8003 14.931276907357 0 +58 8003 14.931276907357 0 +58 8026 14.931436907357 0 +58 8026 14.931436907357 0 +58 8070 14.993585502869 0 +58 8070 14.993585502869 2 +58 8071 14.993585502869 2 +58 8071 14.993585502869 0 +58 8074 14.993585502869 0 +58 8074 14.993585502869 0 +58 8082 14.993745502869 0 +58 8082 14.993745502869 0 +58 8113 15.043993491181 0 +58 8113 15.043993491181 0 +58 8120 15.044153491181 0 +58 8120 15.044153491181 0 +58 8244 15.231276894496 0 +58 8244 15.231276894496 0 +58 8267 15.231436894496 0 +58 8267 15.231436894496 0 +58 8311 15.293585502869 0 +58 8311 15.293585502869 2 +58 8312 15.293585502869 2 +58 8312 15.293585502869 0 +58 8315 15.293585502869 0 +58 8315 15.293585502869 0 +58 8323 15.293745502869 0 +58 8323 15.293745502869 0 +58 8354 15.343993477658 0 +58 8354 15.343993477658 0 +58 8361 15.344153477658 0 +58 8361 15.344153477658 0 +58 8484 15.531276881214 0 +58 8484 15.531276881214 0 +58 8503 15.531436881214 0 +58 8503 15.531436881214 0 +58 8552 15.593585502869 0 +58 8552 15.593585502869 2 +58 8553 15.593585502869 2 +58 8553 15.593585502869 0 +58 8556 15.593585502869 0 +58 8556 15.593585502869 0 +58 8564 15.593745502869 0 +58 8564 15.593745502869 0 +58 8595 15.643993463876 0 +58 8595 15.643993463876 0 +58 8602 15.644153463876 0 +58 8602 15.644153463876 0 +58 8725 15.831276867891 0 +58 8725 15.831276867891 0 +58 8744 15.831436867891 0 +58 8744 15.831436867891 0 +58 8793 15.893585502869 0 +58 8793 15.893585502869 2 +58 8794 15.893585502869 2 +58 8794 15.893585502869 0 +58 8797 15.893585502869 0 +58 8797 15.893585502869 0 +58 8805 15.893745502869 0 +58 8805 15.893745502869 0 +58 8836 15.943993450177 0 +58 8836 15.943993450177 0 +58 8843 15.944153450177 0 +58 8843 15.944153450177 0 +58 8892 16.114557547424 0 +58 8892 16.114557547424 0 +58 8915 16.114717547424 0 +58 8915 16.114717547424 0 +58 8970 16.131276854594 0 +58 8970 16.131276854594 0 +58 8989 16.131436854594 0 +58 8989 16.131436854594 0 +58 9038 16.193585502869 0 +58 9038 16.193585502869 2 +58 9039 16.193585502869 2 +58 9039 16.193585502869 0 +58 9042 16.193585502869 0 +58 9042 16.193585502869 0 +58 9050 16.193745502869 0 +58 9050 16.193745502869 0 +58 9085 16.24399343676 0 +58 9085 16.24399343676 0 +58 9092 16.24415343676 0 +58 9092 16.24415343676 0 +58 9141 16.414557520222 0 +58 9141 16.414557520222 0 +58 9164 16.414717520222 0 +58 9164 16.414717520222 0 +58 9219 16.431276843065 0 +58 9219 16.431276843065 0 +58 9238 16.431436843065 0 +58 9238 16.431436843065 0 +58 9287 16.493585502869 0 +58 9287 16.493585502869 2 +58 9288 16.493585502869 2 +58 9288 16.493585502869 0 +58 9291 16.493585502869 0 +58 9291 16.493585502869 0 +58 9299 16.493745502869 0 +58 9299 16.493745502869 0 +58 9334 16.543993425628 0 +58 9334 16.543993425628 0 +58 9341 16.544153425628 0 +58 9341 16.544153425628 0 +58 9389 16.714557495718 0 +58 9389 16.714557495718 0 +58 9408 16.714717495718 0 +58 9408 16.714717495718 0 +58 9468 16.731276834223 0 +58 9468 16.731276834223 0 +58 9487 16.731436834223 0 +58 9487 16.731436834223 0 +58 9536 16.793585502869 0 +58 9536 16.793585502869 2 +58 9537 16.793585502869 2 +58 9537 16.793585502869 0 +58 9540 16.793585502869 0 +58 9540 16.793585502869 0 +58 9548 16.793745502869 0 +58 9548 16.793745502869 0 +58 9583 16.843993417024 0 +58 9583 16.843993417024 0 +58 9590 16.844153417024 0 +58 9590 16.844153417024 0 +58 9638 17.01455747394 0 +58 9638 17.01455747394 0 +58 9657 17.01471747394 0 +58 9657 17.01471747394 0 +58 9717 17.031276828087 0 +58 9717 17.031276828087 0 +58 9736 17.031436828087 0 +58 9736 17.031436828087 0 +58 9785 17.093585502869 0 +58 9785 17.093585502869 2 +58 9786 17.093585502869 2 +58 9786 17.093585502869 0 +58 9789 17.093585502869 0 +58 9789 17.093585502869 0 +58 9797 17.093745502869 0 +58 9797 17.093745502869 0 +58 9832 17.143993410931 0 +58 9832 17.143993410931 0 +58 9839 17.144153410931 0 +58 9839 17.144153410931 0 +58 9887 17.314557454832 0 +58 9887 17.314557454832 0 +58 9906 17.314717454832 0 +58 9906 17.314717454832 0 +58 9966 17.33127682466 0 +58 9966 17.33127682466 0 +58 9985 17.33143682466 0 +58 9985 17.33143682466 0 +58 10034 17.393585502869 0 +58 10034 17.393585502869 2 +58 10035 17.393585502869 2 +58 10035 17.393585502869 0 +58 10038 17.393585502869 0 +58 10038 17.393585502869 0 +58 10046 17.393745502869 0 +58 10046 17.393745502869 0 +58 10081 17.443993407323 0 +58 10081 17.443993407323 0 +58 10088 17.444153407323 0 +58 10088 17.444153407323 0 +58 10136 17.614557438392 0 +58 10136 17.614557438392 0 +58 10155 17.614717438392 0 +58 10155 17.614717438392 0 +58 10215 17.631276823875 0 +58 10215 17.631276823875 0 +58 10234 17.631436823875 0 +58 10234 17.631436823875 0 +58 10283 17.693585502869 0 +58 10283 17.693585502869 2 +58 10284 17.693585502869 2 +58 10284 17.693585502869 0 +58 10287 17.693585502869 0 +58 10287 17.693585502869 0 +58 10295 17.693745502869 0 +58 10295 17.693745502869 0 +58 10330 17.743993405804 0 +58 10330 17.743993405804 0 +58 10337 17.744153405804 0 +58 10337 17.744153405804 0 +58 10385 17.914557422749 0 +58 10385 17.914557422749 0 +58 10404 17.914717422749 0 +58 10404 17.914717422749 0 +58 10460 17.931276823866 0 +58 10460 17.931276823866 0 +58 10479 17.931436823866 0 +58 10479 17.931436823866 0 +58 10524 17.993585502869 0 +58 10524 17.993585502869 2 +58 10525 17.993585502869 2 +58 10525 17.993585502869 0 +58 10528 17.993585502869 0 +58 10528 17.993585502869 0 +58 10536 17.993745502869 0 +58 10536 17.993745502869 0 +58 10571 18.043993404519 0 +58 10571 18.043993404519 0 +58 10578 18.044153404519 0 +58 10578 18.044153404519 0 +58 10626 18.214557407098 0 +58 10626 18.214557407098 0 +58 10645 18.214717407098 0 +58 10645 18.214717407098 0 +58 10697 18.231276823854 0 +58 10697 18.231276823854 0 +58 10716 18.231436823854 0 +58 10716 18.231436823854 0 +58 10761 18.293585502869 0 +58 10761 18.293585502869 2 +58 10762 18.293585502869 2 +58 10762 18.293585502869 0 +58 10765 18.293585502869 0 +58 10765 18.293585502869 0 +58 10773 18.293745502869 0 +58 10773 18.293745502869 0 +58 10808 18.34399340323 0 +58 10808 18.34399340323 0 +58 10815 18.34415340323 0 +58 10815 18.34415340323 0 +58 10859 18.514557392147 0 +58 10859 18.514557392147 0 +58 10878 18.514717392147 0 +58 10878 18.514717392147 0 +58 10930 18.531276823849 0 +58 10930 18.531276823849 0 +58 10949 18.531436823849 0 +58 10949 18.531436823849 0 +58 10994 18.593585502869 0 +58 10994 18.593585502869 2 +58 10995 18.593585502869 2 +58 10995 18.593585502869 0 +58 10998 18.593585502869 0 +58 10998 18.593585502869 0 +58 11006 18.593745502869 0 +58 11006 18.593745502869 0 +58 11041 18.643993401947 0 +58 11041 18.643993401947 0 +58 11048 18.644153401947 0 +58 11048 18.644153401947 0 +58 11092 18.814557385083 0 +58 11092 18.814557385083 0 +58 11111 18.814717385083 0 +58 11111 18.814717385083 0 +58 11163 18.831276823842 0 +58 11163 18.831276823842 0 +58 11182 18.831436823842 0 +58 11182 18.831436823842 0 +58 11227 18.893585502869 0 +58 11227 18.893585502869 2 +58 11228 18.893585502869 2 +58 11228 18.893585502869 0 +58 11231 18.893585502869 0 +58 11231 18.893585502869 0 +58 11239 18.893745502869 0 +58 11239 18.893745502869 0 +58 11274 18.943993400662 0 +58 11274 18.943993400662 0 +58 11281 18.944153400662 0 +58 11281 18.944153400662 0 +58 11325 19.11455738453 0 +58 11325 19.11455738453 0 +58 11344 19.11471738453 0 +58 11344 19.11471738453 0 +58 11396 19.13127682383 0 +58 11396 19.13127682383 0 +58 11415 19.13143682383 0 +58 11415 19.13143682383 0 +58 11460 19.193585502869 0 +58 11460 19.193585502869 2 +58 11461 19.193585502869 2 +58 11461 19.193585502869 0 +58 11464 19.193585502869 0 +58 11464 19.193585502869 0 +58 11472 19.193745502869 0 +58 11472 19.193745502869 0 +58 11507 19.243993399372 0 +58 11507 19.243993399372 0 +58 11514 19.244153399372 0 +58 11514 19.244153399372 0 +58 11558 19.414557384789 0 +58 11558 19.414557384789 0 +58 11577 19.414717384789 0 +58 11577 19.414717384789 0 +58 11629 19.431276823834 0 +58 11629 19.431276823834 0 +58 11648 19.431436823834 0 +58 11648 19.431436823834 0 +58 11693 19.493585502869 0 +58 11693 19.493585502869 2 +58 11694 19.493585502869 2 +58 11694 19.493585502869 0 +58 11697 19.493585502869 0 +58 11697 19.493585502869 0 +58 11705 19.493745502869 0 +58 11705 19.493745502869 0 +58 11740 19.543993397973 0 +58 11740 19.543993397973 0 +58 11747 19.544153397973 0 +58 11747 19.544153397973 0 +58 11791 19.71455738494 0 +58 11791 19.71455738494 0 +58 11810 19.71471738494 0 +58 11810 19.71471738494 0 +58 11862 19.731276823812 0 +58 11862 19.731276823812 0 +58 11881 19.731436823812 0 +58 11881 19.731436823812 0 +58 11926 19.793585502869 0 +58 11926 19.793585502869 2 +58 11927 19.793585502869 2 +58 11927 19.793585502869 0 +58 11930 19.793585502869 0 +58 11930 19.793585502869 0 +58 11938 19.793745502869 0 +58 11938 19.793745502869 0 +58 11973 19.843993395755 0 +58 11973 19.843993395755 0 +58 11980 19.844153395755 0 +58 11980 19.844153395755 0 +58 12024 20.014557384776 0 +58 12024 20.014557384776 0 +58 12043 20.014717384776 0 +58 12043 20.014717384776 0 +58 12099 20.031276823824 0 +58 12099 20.031276823824 0 +58 12118 20.031436823824 0 +58 12118 20.031436823824 0 +58 12167 20.093585502869 0 +58 12167 20.093585502869 2 +58 12168 20.093585502869 2 +58 12168 20.093585502869 0 +58 12171 20.093585502869 0 +58 12171 20.093585502869 0 +58 12179 20.093745502869 0 +58 12179 20.093745502869 0 +58 12214 20.143993392654 0 +58 12214 20.143993392654 0 +58 12221 20.144153392654 0 +58 12221 20.144153392654 0 +58 12265 20.314557384384 0 +58 12265 20.314557384384 0 +58 12284 20.314717384384 0 +58 12284 20.314717384384 0 +58 12340 20.331276823783 0 +58 12340 20.331276823783 0 +58 12359 20.331436823783 0 +58 12359 20.331436823783 0 +58 12408 20.393585502869 0 +58 12408 20.393585502869 2 +58 12409 20.393585502869 2 +58 12409 20.393585502869 0 +58 12412 20.393585502869 0 +58 12412 20.393585502869 0 +58 12420 20.393745502869 0 +58 12420 20.393745502869 0 +58 12455 20.443993388797 0 +58 12455 20.443993388797 0 +58 12462 20.444153388797 0 +58 12462 20.444153388797 0 +58 12506 20.614557383808 0 +58 12506 20.614557383808 0 +58 12525 20.614717383808 0 +58 12525 20.614717383808 0 +58 12581 20.631276823785 0 +58 12581 20.631276823785 0 +58 12600 20.631436823785 0 +58 12600 20.631436823785 0 +58 12649 20.693585502869 0 +58 12649 20.693585502869 2 +58 12650 20.693585502869 2 +58 12650 20.693585502869 0 +58 12653 20.693585502869 0 +58 12653 20.693585502869 0 +58 12661 20.693745502869 0 +58 12661 20.693745502869 0 +58 12696 20.743993384171 0 +58 12696 20.743993384171 0 +58 12703 20.744153384171 0 +58 12703 20.744153384171 0 +58 12747 20.914557383117 0 +58 12747 20.914557383117 0 +58 12766 20.914717383117 0 +58 12766 20.914717383117 0 +58 12822 20.931276823825 0 +58 12822 20.931276823825 0 +58 12841 20.931436823825 0 +58 12841 20.931436823825 0 +58 12890 20.993585502869 0 +58 12890 20.993585502869 2 +58 12891 20.993585502869 2 +58 12891 20.993585502869 0 +58 12894 20.993585502869 0 +58 12894 20.993585502869 0 +58 12902 20.993745502869 0 +58 12902 20.993745502869 0 +58 12937 21.043993378911 0 +58 12937 21.043993378911 0 +58 12944 21.044153378911 0 +58 12944 21.044153378911 0 +58 12988 21.214557382339 0 +58 12988 21.214557382339 0 +58 13007 21.214717382339 0 +58 13007 21.214717382339 0 +58 13063 21.231276823913 0 +58 13063 21.231276823913 0 +58 13082 21.231436823913 0 +58 13082 21.231436823913 0 +58 13131 21.293585502869 0 +58 13131 21.293585502869 2 +58 13132 21.293585502869 2 +58 13132 21.293585502869 0 +58 13135 21.293585502869 0 +58 13135 21.293585502869 0 +58 13143 21.293745502869 0 +58 13143 21.293745502869 0 +58 13178 21.343993372963 0 +58 13178 21.343993372963 0 +58 13185 21.344153372963 0 +58 13185 21.344153372963 0 +58 13229 21.514557381349 0 +58 13229 21.514557381349 0 +58 13248 21.514717381349 0 +58 13248 21.514717381349 0 +58 13304 21.531276823952 0 +58 13304 21.531276823952 0 +58 13323 21.531436823952 0 +58 13323 21.531436823952 0 +58 13372 21.593585502869 0 +58 13372 21.593585502869 2 +58 13373 21.593585502869 2 +58 13373 21.593585502869 0 +58 13376 21.593585502869 0 +58 13376 21.593585502869 0 +58 13384 21.593745502869 0 +58 13384 21.593745502869 0 +58 13419 21.643993366253 0 +58 13419 21.643993366253 0 +58 13426 21.644153366253 0 +58 13426 21.644153366253 0 +58 13470 21.81455738019 0 +58 13470 21.81455738019 0 +58 13489 21.81471738019 0 +58 13489 21.81471738019 0 +58 13545 21.831276823995 0 +58 13545 21.831276823995 0 +58 13564 21.831436823995 0 +58 13564 21.831436823995 0 +58 13613 21.893585502869 0 +58 13613 21.893585502869 2 +58 13614 21.893585502869 2 +58 13614 21.893585502869 0 +58 13617 21.893585502869 0 +58 13617 21.893585502869 0 +58 13625 21.893745502869 0 +58 13625 21.893745502869 0 +58 13660 21.943993358856 0 +58 13660 21.943993358856 0 +58 13667 21.944153358856 0 +58 13667 21.944153358856 0 +58 13711 22.114557378874 0 +58 13711 22.114557378874 0 +58 13730 22.114717378874 0 +58 13730 22.114717378874 0 +58 13786 22.131276824039 0 +58 13786 22.131276824039 0 +58 13805 22.131436824039 0 +58 13805 22.131436824039 0 +58 13854 22.193585502869 0 +58 13854 22.193585502869 2 +58 13855 22.193585502869 2 +58 13855 22.193585502869 0 +58 13858 22.193585502869 0 +58 13858 22.193585502869 0 +58 13866 22.193745502869 0 +58 13866 22.193745502869 0 +58 13901 22.243993350791 0 +58 13901 22.243993350791 0 +58 13908 22.244153350791 0 +58 13908 22.244153350791 0 +58 13952 22.414557377522 0 +58 13952 22.414557377522 0 +58 13971 22.414717377522 0 +58 13971 22.414717377522 0 +58 14027 22.431276824127 0 +58 14027 22.431276824127 0 +58 14046 22.431436824127 0 +58 14046 22.431436824127 0 +58 14095 22.493585502869 0 +58 14095 22.493585502869 2 +58 14096 22.493585502869 2 +58 14096 22.493585502869 0 +58 14099 22.493585502869 0 +58 14099 22.493585502869 0 +58 14107 22.493745502869 0 +58 14107 22.493745502869 0 +58 14142 22.543993342123 0 +58 14142 22.543993342123 0 +58 14149 22.544153342123 0 +58 14149 22.544153342123 0 +58 14193 22.714557376066 0 +58 14193 22.714557376066 0 +58 14212 22.714717376066 0 +58 14212 22.714717376066 0 +58 14268 22.73127682417 0 +58 14268 22.73127682417 0 +58 14287 22.73143682417 0 +58 14287 22.73143682417 0 +58 14336 22.793585502869 0 +58 14336 22.793585502869 2 +58 14337 22.793585502869 2 +58 14337 22.793585502869 0 +58 14340 22.793585502869 0 +58 14340 22.793585502869 0 +58 14348 22.793745502869 0 +58 14348 22.793745502869 0 +58 14383 22.843993333052 0 +58 14383 22.843993333052 0 +58 14390 22.844153333052 0 +58 14390 22.844153333052 0 +58 14434 23.01455737451 0 +58 14434 23.01455737451 0 +58 14453 23.01471737451 0 +58 14453 23.01471737451 0 +58 14509 23.031276824169 0 +58 14509 23.031276824169 0 +58 14528 23.031436824169 0 +58 14528 23.031436824169 0 +58 14577 23.093585502869 0 +58 14577 23.093585502869 2 +58 14578 23.093585502869 2 +58 14578 23.093585502869 0 +58 14581 23.093585502869 0 +58 14581 23.093585502869 0 +58 14589 23.093745502869 0 +58 14589 23.093745502869 0 +58 14624 23.14399332347 0 +58 14624 23.14399332347 0 +58 14631 23.14415332347 0 +58 14631 23.14415332347 0 +58 14675 23.314557372866 0 +58 14675 23.314557372866 0 +58 14694 23.314717372866 0 +58 14694 23.314717372866 0 +58 14750 23.331276824195 0 +58 14750 23.331276824195 0 +58 14769 23.331436824195 0 +58 14769 23.331436824195 0 +58 14818 23.393585502869 0 +58 14818 23.393585502869 2 +58 14819 23.393585502869 2 +58 14819 23.393585502869 0 +58 14822 23.393585502869 0 +58 14822 23.393585502869 0 +58 14830 23.393745502869 0 +58 14830 23.393745502869 0 +58 14865 23.443993313527 0 +58 14865 23.443993313527 0 +58 14872 23.444153313527 0 +58 14872 23.444153313527 0 +58 14916 23.614557371257 0 +58 14916 23.614557371257 0 +58 14935 23.614717371257 0 +58 14935 23.614717371257 0 +58 14991 23.631276824238 0 +58 14991 23.631276824238 0 +58 15010 23.631436824238 0 +58 15010 23.631436824238 0 +58 15059 23.693585502869 0 +58 15059 23.693585502869 2 +58 15060 23.693585502869 2 +58 15060 23.693585502869 0 +58 15063 23.693585502869 0 +58 15063 23.693585502869 0 +58 15071 23.693745502869 0 +58 15071 23.693745502869 0 +58 15106 23.743993309221 0 +58 15106 23.743993309221 0 +58 15113 23.744153309221 0 +58 15113 23.744153309221 0 +58 15156 23.914557369634 0 +58 15156 23.914557369634 0 +58 15171 23.914717369634 0 +58 15171 23.914717369634 0 +58 15232 23.931276824212 0 +58 15232 23.931276824212 0 +58 15251 23.931436824212 0 +58 15251 23.931436824212 0 +58 15300 23.993585502869 0 +58 15300 23.993585502869 2 +58 15301 23.993585502869 2 +58 15301 23.993585502869 0 +58 15304 23.993585502869 0 +58 15304 23.993585502869 0 +58 15312 23.993745502869 0 +58 15312 23.993745502869 0 +58 15347 24.043993304961 0 +58 15347 24.043993304961 0 +58 15354 24.044153304961 0 +58 15354 24.044153304961 0 +58 15397 24.214557367961 0 +58 15397 24.214557367961 0 +58 15412 24.214717367961 0 +58 15412 24.214717367961 0 +58 15473 24.231276824049 0 +58 15473 24.231276824049 0 +58 15492 24.231436824049 0 +58 15492 24.231436824049 0 +58 15541 24.293585502869 0 +58 15541 24.293585502869 2 +58 15542 24.293585502869 2 +58 15542 24.293585502869 0 +58 15545 24.293585502869 0 +58 15545 24.293585502869 0 +58 15553 24.293745502869 0 +58 15553 24.293745502869 0 +58 15588 24.343993296734 0 +58 15588 24.343993296734 0 +58 15595 24.344153296734 0 +58 15595 24.344153296734 0 +58 15638 24.514557366429 0 +58 15638 24.514557366429 0 +58 15653 24.514717366429 0 +58 15653 24.514717366429 0 +58 15714 24.531276823944 0 +58 15714 24.531276823944 0 +58 15733 24.531436823944 0 +58 15733 24.531436823944 0 +58 15782 24.593585502869 0 +58 15782 24.593585502869 2 +58 15783 24.593585502869 2 +58 15783 24.593585502869 0 +58 15786 24.593585502869 0 +58 15786 24.593585502869 0 +58 15794 24.593745502869 0 +58 15794 24.593745502869 0 +58 15829 24.643993289194 0 +58 15829 24.643993289194 0 +58 15836 24.644153289194 0 +58 15836 24.644153289194 0 +58 15879 24.814557365061 0 +58 15879 24.814557365061 0 +58 15894 24.814717365061 0 +58 15894 24.814717365061 0 +58 15955 24.831276823957 0 +58 15955 24.831276823957 0 +58 15974 24.831436823957 0 +58 15974 24.831436823957 0 +58 16023 24.893585502869 0 +58 16023 24.893585502869 2 +58 16024 24.893585502869 2 +58 16024 24.893585502869 0 +58 16027 24.893585502869 0 +58 16027 24.893585502869 0 +58 16035 24.893745502869 0 +58 16035 24.893745502869 0 +58 16070 24.943993282619 0 +58 16070 24.943993282619 0 +58 16077 24.944153282619 0 +58 16077 24.944153282619 0 +58 16120 25.114557363825 0 +58 16120 25.114557363825 0 +58 16135 25.114717363825 0 +58 16135 25.114717363825 0 +58 16196 25.131276823934 0 +58 16196 25.131276823934 0 +58 16215 25.131436823934 0 +58 16215 25.131436823934 0 +58 16264 25.193585502869 0 +58 16264 25.193585502869 2 +58 16265 25.193585502869 2 +58 16265 25.193585502869 0 +58 16268 25.193585502869 0 +58 16268 25.193585502869 0 +58 16276 25.193745502869 0 +58 16276 25.193745502869 0 +58 16311 25.243993277481 0 +58 16311 25.243993277481 0 +58 16318 25.244153277481 0 +58 16318 25.244153277481 0 +58 16361 25.414557362755 0 +58 16361 25.414557362755 0 +58 16376 25.414717362755 0 +58 16376 25.414717362755 0 +58 16437 25.431276823911 0 +58 16437 25.431276823911 0 +58 16456 25.431436823911 0 +58 16456 25.431436823911 0 +58 16505 25.493585502869 0 +58 16505 25.493585502869 2 +58 16506 25.493585502869 2 +58 16506 25.493585502869 0 +58 16509 25.493585502869 0 +58 16509 25.493585502869 0 +58 16517 25.493745502869 0 +58 16517 25.493745502869 0 +58 16552 25.54399327434 0 +58 16552 25.54399327434 0 +58 16559 25.54415327434 0 +58 16559 25.54415327434 0 +58 16602 25.71455736198 0 +58 16602 25.71455736198 0 +58 16617 25.71471736198 0 +58 16617 25.71471736198 0 +58 16678 25.731276823855 0 +58 16678 25.731276823855 0 +58 16697 25.731436823855 0 +58 16697 25.731436823855 0 +58 16746 25.793585502869 0 +58 16746 25.793585502869 2 +58 16747 25.793585502869 2 +58 16747 25.793585502869 0 +58 16750 25.793585502869 0 +58 16750 25.793585502869 0 +58 16758 25.793745502869 0 +58 16758 25.793745502869 0 +58 16793 25.843993273696 0 +58 16793 25.843993273696 0 +58 16800 25.844153273696 0 +58 16800 25.844153273696 0 +58 16843 26.014557361437 0 +58 16843 26.014557361437 0 +58 16858 26.014717361437 0 +58 16858 26.014717361437 0 +58 16919 26.031276822435 0 +58 16919 26.031276822435 0 +58 16938 26.031436822435 0 +58 16938 26.031436822435 0 +58 16987 26.093585502869 0 +58 16987 26.093585502869 2 +58 16988 26.093585502869 2 +58 16988 26.093585502869 0 +58 16991 26.093585502869 0 +58 16991 26.093585502869 0 +58 16999 26.093745502869 0 +58 16999 26.093745502869 0 +58 17034 26.143993275957 0 +58 17034 26.143993275957 0 +58 17041 26.144153275957 0 +58 17041 26.144153275957 0 +58 17084 26.314557361533 0 +58 17084 26.314557361533 0 +58 17099 26.314717361533 0 +58 17099 26.314717361533 0 +58 17160 26.331276819514 0 +58 17160 26.331276819514 0 +58 17179 26.331436819514 0 +58 17179 26.331436819514 0 +58 17228 26.393585502869 0 +58 17228 26.393585502869 2 +58 17229 26.393585502869 2 +58 17229 26.393585502869 0 +58 17232 26.393585502869 0 +58 17232 26.393585502869 0 +58 17240 26.393745502869 0 +58 17240 26.393745502869 0 +58 17275 26.443993281636 0 +58 17275 26.443993281636 0 +58 17282 26.444153281636 0 +58 17282 26.444153281636 0 +58 17325 26.614557362396 0 +58 17325 26.614557362396 0 +58 17340 26.614717362396 0 +58 17340 26.614717362396 0 +58 17401 26.631276815275 0 +58 17401 26.631276815275 0 +58 17420 26.631436815275 0 +58 17420 26.631436815275 0 +58 17469 26.693585502869 0 +58 17469 26.693585502869 2 +58 17470 26.693585502869 2 +58 17470 26.693585502869 0 +58 17473 26.693585502869 0 +58 17473 26.693585502869 0 +58 17481 26.693745502869 0 +58 17481 26.693745502869 0 +58 17516 26.743993290495 0 +58 17516 26.743993290495 0 +58 17523 26.744153290495 0 +58 17523 26.744153290495 0 +58 17566 26.914557364009 0 +58 17566 26.914557364009 0 +58 17581 26.914717364009 0 +58 17581 26.914717364009 0 +58 17642 26.931276809646 0 +58 17642 26.931276809646 0 +58 17661 26.931436809646 0 +58 17661 26.931436809646 0 +58 17710 26.993585502869 0 +58 17710 26.993585502869 2 +58 17711 26.993585502869 2 +58 17711 26.993585502869 0 +58 17714 26.993585502869 0 +58 17714 26.993585502869 0 +58 17722 26.993745502869 0 +58 17722 26.993745502869 0 +58 17757 27.043993302033 0 +58 17757 27.043993302033 0 +58 17764 27.044153302033 0 +58 17764 27.044153302033 0 +58 17807 27.214557366345 0 +58 17807 27.214557366345 0 +58 17822 27.214717366345 0 +58 17822 27.214717366345 0 +58 17874 27.231276802678 0 +58 17874 27.231276802678 0 +58 17889 27.231436802678 0 +58 17889 27.231436802678 0 +58 17943 27.293585502869 0 +58 17943 27.293585502869 2 +58 17944 27.293585502869 2 +58 17944 27.293585502869 0 +58 17947 27.293585502869 0 +58 17947 27.293585502869 0 +58 17955 27.293745502869 0 +58 17955 27.293745502869 0 +58 17990 27.34399331576 0 +58 17990 27.34399331576 0 +58 17997 27.34415331576 0 +58 17997 27.34415331576 0 +58 18040 27.514557369437 0 +58 18040 27.514557369437 0 +58 18055 27.514717369437 0 +58 18055 27.514717369437 0 +58 18107 27.531276795041 0 +58 18107 27.531276795041 0 +58 18122 27.531436795041 0 +58 18122 27.531436795041 0 +58 18176 27.593585502869 0 +58 18176 27.593585502869 2 +58 18177 27.593585502869 2 +58 18177 27.593585502869 0 +58 18180 27.593585502869 0 +58 18180 27.593585502869 0 +58 18188 27.593745502869 0 +58 18188 27.593745502869 0 +58 18223 27.643993330828 0 +58 18223 27.643993330828 0 +58 18230 27.644153330828 0 +58 18230 27.644153330828 0 +58 18273 27.814557373228 0 +58 18273 27.814557373228 0 +58 18288 27.814717373228 0 +58 18288 27.814717373228 0 +58 18340 27.83127678721 0 +58 18340 27.83127678721 0 +58 18355 27.83143678721 0 +58 18355 27.83143678721 0 +58 18409 27.893585502869 0 +58 18409 27.893585502869 2 +58 18410 27.893585502869 2 +58 18410 27.893585502869 0 +58 18413 27.893585502869 0 +58 18413 27.893585502869 0 +58 18421 27.893745502869 0 +58 18421 27.893745502869 0 +58 18456 27.943993346916 0 +58 18456 27.943993346916 0 +58 18463 27.944153346916 0 +58 18463 27.944153346916 0 +58 18506 28.11455737771 0 +58 18506 28.11455737771 0 +58 18521 28.11471737771 0 +58 18521 28.11471737771 0 +58 18573 28.131276770655 0 +58 18573 28.131276770655 0 +58 18588 28.131436770655 0 +58 18588 28.131436770655 0 +58 18642 28.193585502869 0 +58 18642 28.193585502869 2 +58 18643 28.193585502869 2 +58 18643 28.193585502869 0 +58 18646 28.193585502869 0 +58 18646 28.193585502869 0 +58 18654 28.193745502869 0 +58 18654 28.193745502869 0 +58 18689 28.243993363816 0 +58 18689 28.243993363816 0 +58 18696 28.244153363816 0 +58 18696 28.244153363816 0 +58 18739 28.41455738295 0 +58 18739 28.41455738295 0 +58 18754 28.41471738295 0 +58 18754 28.41471738295 0 +58 18806 28.431276747906 0 +58 18806 28.431276747906 0 +58 18821 28.431436747906 0 +58 18821 28.431436747906 0 +58 18875 28.493585502869 0 +58 18875 28.493585502869 2 +58 18876 28.493585502869 2 +58 18876 28.493585502869 0 +58 18879 28.493585502869 0 +58 18879 28.493585502869 0 +58 18887 28.493745502869 0 +58 18887 28.493745502869 0 +58 18922 28.543993381372 0 +58 18922 28.543993381372 0 +58 18929 28.544153381372 0 +58 18929 28.544153381372 0 +58 18972 28.714557388816 0 +58 18972 28.714557388816 0 +58 18987 28.714717388816 0 +58 18987 28.714717388816 0 +58 19038 28.731276724087 0 +58 19038 28.731276724087 0 +58 19049 28.731436724087 0 +58 19049 28.731436724087 0 +58 19108 28.793585502869 0 +58 19108 28.793585502869 2 +58 19109 28.793585502869 2 +58 19109 28.793585502869 0 +58 19112 28.793585502869 0 +58 19112 28.793585502869 0 +58 19120 28.793745502869 0 +58 19120 28.793745502869 0 +58 19155 28.843993399418 0 +58 19155 28.843993399418 0 +58 19162 28.844153399418 0 +58 19162 28.844153399418 0 +58 19205 29.014557395373 0 +58 19205 29.014557395373 0 +58 19220 29.014717395373 0 +58 19220 29.014717395373 0 +58 19271 29.031276699665 0 +58 19271 29.031276699665 0 +58 19282 29.031436699665 0 +58 19282 29.031436699665 0 +58 19333 29.093585502869 0 +58 19333 29.093585502869 2 +58 19334 29.093585502869 2 +58 19334 29.093585502869 0 +58 19337 29.093585502869 0 +58 19337 29.093585502869 0 +58 19345 29.093745502869 0 +58 19345 29.093745502869 0 +58 19380 29.143993417837 0 +58 19380 29.143993417837 0 +58 19387 29.144153417837 0 +58 19387 29.144153417837 0 +58 19429 29.314557402593 0 +58 19429 29.314557402593 0 +58 19440 29.314717402593 0 +58 19440 29.314717402593 0 +58 19496 29.331276674765 0 +58 19496 29.331276674765 0 +58 19507 29.331436674765 0 +58 19507 29.331436674765 0 +58 19558 29.393585502869 0 +58 19558 29.393585502869 2 +58 19559 29.393585502869 2 +58 19559 29.393585502869 0 +58 19562 29.393585502869 0 +58 19562 29.393585502869 0 +58 19570 29.393745502869 0 +58 19570 29.393745502869 0 +58 19605 29.443993436569 0 +58 19605 29.443993436569 0 +58 19612 29.444153436569 0 +58 19612 29.444153436569 0 +58 19654 29.61455741041 0 +58 19654 29.61455741041 0 +58 19665 29.61471741041 0 +58 19665 29.61471741041 0 +58 19721 29.631276649424 0 +58 19721 29.631276649424 0 +58 19732 29.631436649424 0 +58 19732 29.631436649424 0 +58 19783 29.693585502869 0 +58 19783 29.693585502869 2 +58 19784 29.693585502869 2 +58 19784 29.693585502869 0 +58 19787 29.693585502869 0 +58 19787 29.693585502869 0 +58 19795 29.693745502869 0 +58 19795 29.693745502869 0 +58 19830 29.743993455545 0 +58 19830 29.743993455545 0 +58 19837 29.744153455545 0 +58 19837 29.744153455545 0 +58 19879 29.914557418813 0 +58 19879 29.914557418813 0 +58 19890 29.914717418813 0 +58 19890 29.914717418813 0 +58 19946 29.93127662341 0 +58 19946 29.93127662341 0 +58 19957 29.93143662341 0 +58 19957 29.93143662341 0 +58 20008 29.993585502869 0 +58 20008 29.993585502869 2 +58 20009 29.993585502869 2 +58 20009 29.993585502869 0 +58 20012 29.993585502869 0 +58 20012 29.993585502869 0 +58 20020 29.993745502869 0 +58 20020 29.993745502869 0 +58 20055 30.043993474721 0 +58 20055 30.043993474721 0 +58 20062 30.044153474721 0 +58 20062 30.044153474721 0 +58 20104 30.214557427759 0 +58 20104 30.214557427759 0 +58 20115 30.214717427759 0 +58 20115 30.214717427759 0 +58 20171 30.231276596705 0 +58 20171 30.231276596705 0 +58 20182 30.231436596705 0 +58 20182 30.231436596705 0 +58 20233 30.293585502869 0 +58 20233 30.293585502869 2 +58 20234 30.293585502869 2 +58 20234 30.293585502869 0 +58 20237 30.293585502869 0 +58 20237 30.293585502869 0 +58 20245 30.293745502869 0 +58 20245 30.293745502869 0 +58 20280 30.343993494113 0 +58 20280 30.343993494113 0 +58 20287 30.344153494113 0 +58 20287 30.344153494113 0 +58 20330 30.514557437221 0 +58 20330 30.514557437221 0 +58 20345 30.514717437221 0 +58 20345 30.514717437221 0 +58 20396 30.531276569374 0 +58 20396 30.531276569374 0 +58 20407 30.531436569374 0 +58 20407 30.531436569374 0 +58 20458 30.593585502869 0 +58 20458 30.593585502869 2 +58 20459 30.593585502869 2 +58 20459 30.593585502869 0 +58 20462 30.593585502869 0 +58 20462 30.593585502869 0 +58 20470 30.593745502869 0 +58 20470 30.593745502869 0 +58 20505 30.643993513628 0 +58 20505 30.643993513628 0 +58 20512 30.644153513628 0 +58 20512 30.644153513628 0 +58 20556 30.814557447201 0 +58 20556 30.814557447201 0 +58 20575 30.814717447201 0 +58 20575 30.814717447201 0 +58 20620 30.831276541474 0 +58 20620 30.831276541474 0 +58 20627 30.831436541474 0 +58 20627 30.831436541474 0 +58 20683 30.893585502869 0 +58 20683 30.893585502869 2 +58 20684 30.893585502869 2 +58 20684 30.893585502869 0 +58 20687 30.893585502869 0 +58 20687 30.893585502869 0 +58 20695 30.893745502869 0 +58 20695 30.893745502869 0 +58 20730 30.943993533271 0 +58 20730 30.943993533271 0 +58 20737 30.944153533271 0 +58 20737 30.944153533271 0 +58 20781 31.114557457713 0 +58 20781 31.114557457713 0 +58 20800 31.114717457713 0 +58 20800 31.114717457713 0 +58 20817 31.124399322913 0 +58 20817 31.124399322913 0 +58 20832 31.124559322913 0 +58 20832 31.124559322913 0 +58 20849 31.131276513237 0 +58 20849 31.131276513237 0 +58 20856 31.131436513237 0 +58 20856 31.131436513237 0 +58 20912 31.193585502869 0 +58 20912 31.193585502869 2 +58 20913 31.193585502869 2 +58 20913 31.193585502869 0 +58 20916 31.193585502869 0 +58 20916 31.193585502869 0 +58 20924 31.193745502869 0 +58 20924 31.193745502869 0 +58 20963 31.243993553001 0 +58 20963 31.243993553001 0 +58 20970 31.244153553001 0 +58 20970 31.244153553001 0 +58 21014 31.414557468667 0 +58 21014 31.414557468667 0 +58 21033 31.414717468667 0 +58 21033 31.414717468667 0 +58 21050 31.424399297163 0 +58 21050 31.424399297163 0 +58 21065 31.424559297163 0 +58 21065 31.424559297163 0 +58 21082 31.431276484978 0 +58 21082 31.431276484978 0 +58 21089 31.431436484978 0 +58 21089 31.431436484978 0 +58 21145 31.493585502869 0 +58 21145 31.493585502869 2 +58 21146 31.493585502869 2 +58 21146 31.493585502869 0 +58 21149 31.493585502869 0 +58 21149 31.493585502869 0 +58 21157 31.493745502869 0 +58 21157 31.493745502869 0 +58 21196 31.543993572835 0 +58 21196 31.543993572835 0 +58 21203 31.544153572835 0 +58 21203 31.544153572835 0 +58 21247 31.7145574801 0 +58 21247 31.7145574801 0 +58 21266 31.7147174801 0 +58 21266 31.7147174801 0 +58 21283 31.724399271431 0 +58 21283 31.724399271431 0 +58 21298 31.724559271431 0 +58 21298 31.724559271431 0 +58 21315 31.731276456746 0 +58 21315 31.731276456746 0 +58 21322 31.731436456746 0 +58 21322 31.731436456746 0 +58 21378 31.793585502869 0 +58 21378 31.793585502869 2 +58 21379 31.793585502869 2 +58 21379 31.793585502869 0 +58 21382 31.793585502869 0 +58 21382 31.793585502869 0 +58 21390 31.793745502869 0 +58 21390 31.793745502869 0 +58 21430 31.843993592699 0 +58 21430 31.843993592699 0 +58 21441 31.844153592699 0 +58 21441 31.844153592699 0 +58 21480 32.014557491924 0 +58 21480 32.014557491924 0 +58 21499 32.014717491924 0 +58 21499 32.014717491924 0 +58 21515 32.024399245722 0 +58 21515 32.024399245722 0 +58 21526 32.024559245722 0 +58 21526 32.024559245722 0 +58 21548 32.031276428528 0 +58 21548 32.031276428528 0 +58 21555 32.031436428528 0 +58 21555 32.031436428528 0 +58 21611 32.093585502869 0 +58 21611 32.093585502869 2 +58 21612 32.093585502869 2 +58 21612 32.093585502869 0 +58 21615 32.093585502869 0 +58 21615 32.093585502869 0 +58 21623 32.093745502869 0 +58 21623 32.093745502869 0 +58 21663 32.143993612639 0 +58 21663 32.143993612639 0 +58 21674 32.144153612639 0 +58 21674 32.144153612639 0 +58 21713 32.31455750416 0 +58 21713 32.31455750416 0 +58 21732 32.31471750416 0 +58 21732 32.31471750416 0 +58 21748 32.324399219895 0 +58 21748 32.324399219895 0 +58 21759 32.324559219895 0 +58 21759 32.324559219895 0 +58 21781 32.331276400291 0 +58 21781 32.331276400291 0 +58 21788 32.331436400291 0 +58 21788 32.331436400291 0 +58 21844 32.393585502869 0 +58 21844 32.393585502869 2 +58 21845 32.393585502869 2 +58 21845 32.393585502869 0 +58 21848 32.393585502869 0 +58 21848 32.393585502869 0 +58 21856 32.393745502869 0 +58 21856 32.393745502869 0 +58 21896 32.443993632704 0 +58 21896 32.443993632704 0 +58 21907 32.444153632704 0 +58 21907 32.444153632704 0 +58 21946 32.61455751675 0 +58 21946 32.61455751675 0 +58 21965 32.61471751675 0 +58 21965 32.61471751675 0 +58 21981 32.624399194111 0 +58 21981 32.624399194111 0 +58 21992 32.624559194111 0 +58 21992 32.624559194111 0 +58 22014 32.631276372037 0 +58 22014 32.631276372037 0 +58 22021 32.631436372037 0 +58 22021 32.631436372037 0 +58 22077 32.693585502869 0 +58 22077 32.693585502869 2 +58 22078 32.693585502869 2 +58 22078 32.693585502869 0 +58 22081 32.693585502869 0 +58 22081 32.693585502869 0 +58 22089 32.693745502869 0 +58 22089 32.693745502869 0 +58 22129 32.743993652819 0 +58 22129 32.743993652819 0 +58 22140 32.744153652819 0 +58 22140 32.744153652819 0 +58 22179 32.914557529741 0 +58 22179 32.914557529741 0 +58 22198 32.914717529741 0 +58 22198 32.914717529741 0 +58 22214 32.924399168331 0 +58 22214 32.924399168331 0 +58 22225 32.924559168331 0 +58 22225 32.924559168331 0 +58 22247 32.9312763438 0 +58 22247 32.9312763438 0 +58 22254 32.9314363438 0 +58 22254 32.9314363438 0 +58 22310 32.993585502869 0 +58 22310 32.993585502869 2 +58 22311 32.993585502869 2 +58 22311 32.993585502869 0 +58 22314 32.993585502869 0 +58 22314 32.993585502869 0 +58 22322 32.993745502869 0 +58 22322 32.993745502869 0 +58 22362 33.043993672958 0 +58 22362 33.043993672958 0 +58 22373 33.044153672958 0 +58 22373 33.044153672958 0 +58 22412 33.214557543026 0 +58 22412 33.214557543026 0 +58 22431 33.214717543026 0 +58 22431 33.214717543026 0 +58 22447 33.224399142569 0 +58 22447 33.224399142569 0 +58 22458 33.224559142569 0 +58 22458 33.224559142569 0 +58 22480 33.231276315598 0 +58 22480 33.231276315598 0 +58 22487 33.231436315598 0 +58 22487 33.231436315598 0 +58 22543 33.293585502869 0 +58 22543 33.293585502869 2 +58 22544 33.293585502869 2 +58 22544 33.293585502869 0 +58 22547 33.293585502869 0 +58 22547 33.293585502869 0 +58 22555 33.293745502869 0 +58 22555 33.293745502869 0 +58 22595 33.343993693134 0 +58 22595 33.343993693134 0 +58 22606 33.344153693134 0 +58 22606 33.344153693134 0 +58 22645 33.514557556648 0 +58 22645 33.514557556648 0 +58 22664 33.514717556648 0 +58 22664 33.514717556648 0 +58 22680 33.524399116789 0 +58 22680 33.524399116789 0 +58 22691 33.524559116789 0 +58 22691 33.524559116789 0 +58 22713 33.531276287401 0 +58 22713 33.531276287401 0 +58 22720 33.531436287401 0 +58 22720 33.531436287401 0 +58 22776 33.593585502869 0 +58 22776 33.593585502869 2 +58 22777 33.593585502869 2 +58 22777 33.593585502869 0 +58 22780 33.593585502869 0 +58 22780 33.593585502869 0 +58 22788 33.593745502869 0 +58 22788 33.593745502869 0 +58 22828 33.643993713368 0 +58 22828 33.643993713368 0 +58 22839 33.644153713368 0 +58 22839 33.644153713368 0 +58 22909 33.824399091063 0 +58 22909 33.824399091063 0 +58 22920 33.824559091063 0 +58 22920 33.824559091063 0 +58 22942 33.831276259307 0 +58 22942 33.831276259307 0 +58 22949 33.831436259307 0 +58 22949 33.831436259307 0 +58 23005 33.893585502869 0 +58 23005 33.893585502869 2 +58 23006 33.893585502869 2 +58 23006 33.893585502869 0 +58 23009 33.893585502869 0 +58 23009 33.893585502869 0 +58 23017 33.893745502869 0 +58 23017 33.893745502869 0 +59 778 5.1 0 +59 778 5.1 0 +59 793 5.143993485014 0 +59 793 5.143993485014 0 +59 799 5.144153485014 0 +59 799 5.144153485014 0 +59 927 5.443993485053 0 +59 927 5.443993485053 0 +59 933 5.444153485053 0 +59 933 5.444153485053 0 +59 1053 5.693585502869 0 +59 1053 5.693585502869 0 +59 1060 5.693745502869 0 +59 1060 5.693745502869 0 +59 1085 5.743993485104 0 +59 1085 5.743993485104 0 +59 1091 5.744153485104 0 +59 1091 5.744153485104 0 +59 1211 5.993585502869 0 +59 1211 5.993585502869 0 +59 1218 5.993745502869 0 +59 1218 5.993745502869 0 +59 1243 6.043993485165 0 +59 1243 6.043993485165 0 +59 1249 6.044153485165 0 +59 1249 6.044153485165 0 +59 1389 6.293585502869 0 +59 1389 6.293585502869 0 +59 1397 6.293745502869 0 +59 1397 6.293745502869 0 +59 1424 6.343993485238 0 +59 1424 6.343993485238 0 +59 1431 6.344153485238 0 +59 1431 6.344153485238 0 +59 1606 6.593585502869 0 +59 1606 6.593585502869 0 +59 1614 6.593745502869 0 +59 1614 6.593745502869 0 +59 1641 6.643993485325 0 +59 1641 6.643993485325 0 +59 1648 6.644153485325 0 +59 1648 6.644153485325 0 +59 1823 6.893585502869 0 +59 1823 6.893585502869 0 +59 1831 6.893745502869 0 +59 1831 6.893745502869 0 +59 1858 6.943993485423 0 +59 1858 6.943993485423 0 +59 1865 6.944153485423 0 +59 1865 6.944153485423 0 +59 2040 7.193585502869 0 +59 2040 7.193585502869 0 +59 2048 7.193745502869 0 +59 2048 7.193745502869 0 +59 2075 7.243993485541 0 +59 2075 7.243993485541 0 +59 2082 7.244153485541 0 +59 2082 7.244153485541 0 +59 2257 7.493585502869 0 +59 2257 7.493585502869 0 +59 2265 7.493745502869 0 +59 2265 7.493745502869 0 +59 2292 7.543993485675 0 +59 2292 7.543993485675 0 +59 2299 7.544153485675 0 +59 2299 7.544153485675 0 +59 2474 7.793585502869 0 +59 2474 7.793585502869 0 +59 2482 7.793745502869 0 +59 2482 7.793745502869 0 +59 2509 7.843993485822 0 +59 2509 7.843993485822 0 +59 2516 7.844153485822 0 +59 2516 7.844153485822 0 +59 2691 8.093585502869 0 +59 2691 8.093585502869 0 +59 2699 8.093745502869 0 +59 2699 8.093745502869 0 +59 2726 8.143993485992 0 +59 2726 8.143993485992 0 +59 2733 8.144153485992 0 +59 2733 8.144153485992 0 +59 2912 8.393585502869 0 +59 2912 8.393585502869 0 +59 2920 8.393745502869 0 +59 2920 8.393745502869 0 +59 2947 8.443993486181 0 +59 2947 8.443993486181 0 +59 2954 8.444153486181 0 +59 2954 8.444153486181 0 +59 3137 8.693585502869 0 +59 3137 8.693585502869 0 +59 3145 8.693745502869 0 +59 3145 8.693745502869 0 +59 3172 8.743993486377 0 +59 3172 8.743993486377 0 +59 3179 8.744153486377 0 +59 3179 8.744153486377 0 +59 3362 8.993585502869 0 +59 3362 8.993585502869 0 +59 3370 8.993745502869 0 +59 3370 8.993745502869 0 +59 3397 9.043993486579 0 +59 3397 9.043993486579 0 +59 3404 9.044153486579 0 +59 3404 9.044153486579 0 +59 3587 9.293585502869 0 +59 3587 9.293585502869 0 +59 3595 9.293745502869 0 +59 3595 9.293745502869 0 +59 3622 9.343993486798 0 +59 3622 9.343993486798 0 +59 3629 9.344153486798 0 +59 3629 9.344153486798 0 +59 3812 9.593585502869 0 +59 3812 9.593585502869 0 +59 3820 9.593745502869 0 +59 3820 9.593745502869 0 +59 3847 9.64399348701 0 +59 3847 9.64399348701 0 +59 3854 9.64415348701 0 +59 3854 9.64415348701 0 +59 4037 9.893585502869 0 +59 4037 9.893585502869 0 +59 4045 9.893745502869 0 +59 4045 9.893745502869 0 +59 4072 9.943993487239 0 +59 4072 9.943993487239 0 +59 4079 9.944153487239 0 +59 4079 9.944153487239 0 +59 4262 10.193585502869 0 +59 4262 10.193585502869 0 +59 4270 10.193745502869 0 +59 4270 10.193745502869 0 +59 4297 10.243993487473 0 +59 4297 10.243993487473 0 +59 4304 10.244153487473 0 +59 4304 10.244153487473 0 +59 4487 10.493585502869 0 +59 4487 10.493585502869 0 +59 4495 10.493745502869 0 +59 4495 10.493745502869 0 +59 4522 10.543993487715 0 +59 4522 10.543993487715 0 +59 4529 10.544153487715 0 +59 4529 10.544153487715 0 +59 4720 10.793585502869 0 +59 4720 10.793585502869 0 +59 4728 10.793745502869 0 +59 4728 10.793745502869 0 +59 4755 10.84399348791 0 +59 4755 10.84399348791 0 +59 4762 10.84415348791 0 +59 4762 10.84415348791 0 +59 4953 11.093585502869 0 +59 4953 11.093585502869 0 +59 4961 11.093745502869 0 +59 4961 11.093745502869 0 +59 4988 11.143993487716 0 +59 4988 11.143993487716 0 +59 4995 11.144153487716 0 +59 4995 11.144153487716 0 +59 5119 11.331276921478 0 +59 5119 11.331276921478 0 +59 5142 11.331436921478 0 +59 5142 11.331436921478 0 +59 5186 11.393585502869 0 +59 5186 11.393585502869 0 +59 5194 11.393745502869 0 +59 5194 11.393745502869 0 +59 5221 11.443993487147 0 +59 5221 11.443993487147 0 +59 5228 11.444153487147 0 +59 5228 11.444153487147 0 +59 5352 11.631276919727 0 +59 5352 11.631276919727 0 +59 5375 11.631436919727 0 +59 5375 11.631436919727 0 +59 5423 11.693585502869 0 +59 5423 11.693585502869 0 +59 5431 11.693745502869 0 +59 5431 11.693745502869 0 +59 5462 11.743993486335 0 +59 5462 11.743993486335 0 +59 5469 11.744153486335 0 +59 5469 11.744153486335 0 +59 5593 11.931276918081 0 +59 5593 11.931276918081 0 +59 5616 11.931436918081 0 +59 5616 11.931436918081 0 +59 5664 11.993585502869 0 +59 5664 11.993585502869 0 +59 5672 11.993745502869 0 +59 5672 11.993745502869 0 +59 5703 12.043993485511 0 +59 5703 12.043993485511 0 +59 5710 12.044153485511 0 +59 5710 12.044153485511 0 +59 5834 12.231276916562 0 +59 5834 12.231276916562 0 +59 5857 12.231436916562 0 +59 5857 12.231436916562 0 +59 5905 12.293585502869 0 +59 5905 12.293585502869 0 +59 5913 12.293745502869 0 +59 5913 12.293745502869 0 +59 5944 12.343993485033 0 +59 5944 12.343993485033 0 +59 5951 12.344153485033 0 +59 5951 12.344153485033 0 +59 6075 12.531276915229 0 +59 6075 12.531276915229 0 +59 6098 12.531436915229 0 +59 6098 12.531436915229 0 +59 6146 12.593585502869 0 +59 6146 12.593585502869 0 +59 6154 12.593745502869 0 +59 6154 12.593745502869 0 +59 6185 12.643993485073 0 +59 6185 12.643993485073 0 +59 6192 12.644153485073 0 +59 6192 12.644153485073 0 +59 6316 12.831276914169 0 +59 6316 12.831276914169 0 +59 6339 12.831436914169 0 +59 6339 12.831436914169 0 +59 6387 12.893585502869 0 +59 6387 12.893585502869 0 +59 6395 12.893745502869 0 +59 6395 12.893745502869 0 +59 6426 12.943993485645 0 +59 6426 12.943993485645 0 +59 6433 12.944153485645 0 +59 6433 12.944153485645 0 +59 6557 13.131276913397 0 +59 6557 13.131276913397 0 +59 6580 13.131436913397 0 +59 6580 13.131436913397 0 +59 6628 13.193585502869 0 +59 6628 13.193585502869 0 +59 6636 13.193745502869 0 +59 6636 13.193745502869 0 +59 6667 13.243993486741 0 +59 6667 13.243993486741 0 +59 6674 13.244153486741 0 +59 6674 13.244153486741 0 +59 6798 13.431276912882 0 +59 6798 13.431276912882 0 +59 6821 13.431436912882 0 +59 6821 13.431436912882 0 +59 6869 13.493585502869 0 +59 6869 13.493585502869 0 +59 6877 13.493745502869 0 +59 6877 13.493745502869 0 +59 6908 13.543993488359 0 +59 6908 13.543993488359 0 +59 6915 13.544153488359 0 +59 6915 13.544153488359 0 +59 7039 13.731276912645 0 +59 7039 13.731276912645 0 +59 7062 13.731436912645 0 +59 7062 13.731436912645 0 +59 7110 13.793585502869 0 +59 7110 13.793585502869 0 +59 7118 13.793745502869 0 +59 7118 13.793745502869 0 +59 7149 13.843993490496 0 +59 7149 13.843993490496 0 +59 7156 13.844153490496 0 +59 7156 13.844153490496 0 +59 7280 14.03127691268 0 +59 7280 14.03127691268 0 +59 7303 14.03143691268 0 +59 7303 14.03143691268 0 +59 7351 14.093585502869 0 +59 7351 14.093585502869 0 +59 7359 14.093745502869 0 +59 7359 14.093745502869 0 +59 7390 14.143993493127 0 +59 7390 14.143993493127 0 +59 7397 14.144153493127 0 +59 7397 14.144153493127 0 +59 7521 14.33127691298 0 +59 7521 14.33127691298 0 +59 7544 14.33143691298 0 +59 7544 14.33143691298 0 +59 7592 14.393585502869 0 +59 7592 14.393585502869 0 +59 7600 14.393745502869 0 +59 7600 14.393745502869 0 +59 7631 14.44399349625 0 +59 7631 14.44399349625 0 +59 7638 14.44415349625 0 +59 7638 14.44415349625 0 +59 7762 14.631276913256 0 +59 7762 14.631276913256 0 +59 7785 14.631436913256 0 +59 7785 14.631436913256 0 +59 7833 14.693585502869 0 +59 7833 14.693585502869 0 +59 7841 14.693745502869 0 +59 7841 14.693745502869 0 +59 7872 14.743993498886 0 +59 7872 14.743993498886 0 +59 7879 14.744153498886 0 +59 7879 14.744153498886 0 +59 8003 14.931276907357 0 +59 8003 14.931276907357 0 +59 8026 14.931436907357 0 +59 8026 14.931436907357 0 +59 8074 14.993585502869 0 +59 8074 14.993585502869 0 +59 8082 14.993745502869 0 +59 8082 14.993745502869 0 +59 8113 15.043993491181 0 +59 8113 15.043993491181 0 +59 8120 15.044153491181 0 +59 8120 15.044153491181 0 +59 8244 15.231276894496 0 +59 8244 15.231276894496 0 +59 8267 15.231436894496 0 +59 8267 15.231436894496 0 +59 8315 15.293585502869 0 +59 8315 15.293585502869 0 +59 8323 15.293745502869 0 +59 8323 15.293745502869 0 +59 8354 15.343993477658 0 +59 8354 15.343993477658 0 +59 8361 15.344153477658 0 +59 8361 15.344153477658 0 +59 8484 15.531276881214 0 +59 8484 15.531276881214 0 +59 8503 15.531436881214 0 +59 8503 15.531436881214 0 +59 8556 15.593585502869 0 +59 8556 15.593585502869 0 +59 8564 15.593745502869 0 +59 8564 15.593745502869 0 +59 8595 15.643993463876 0 +59 8595 15.643993463876 0 +59 8602 15.644153463876 0 +59 8602 15.644153463876 0 +59 8725 15.831276867891 0 +59 8725 15.831276867891 0 +59 8744 15.831436867891 0 +59 8744 15.831436867891 0 +59 8797 15.893585502869 0 +59 8797 15.893585502869 0 +59 8805 15.893745502869 0 +59 8805 15.893745502869 0 +59 8836 15.943993450177 0 +59 8836 15.943993450177 0 +59 8843 15.944153450177 0 +59 8843 15.944153450177 0 +59 8892 16.114557547424 0 +59 8892 16.114557547424 0 +59 8915 16.114717547424 0 +59 8915 16.114717547424 0 +59 8970 16.131276854594 0 +59 8970 16.131276854594 0 +59 8989 16.131436854594 0 +59 8989 16.131436854594 0 +59 9042 16.193585502869 0 +59 9042 16.193585502869 0 +59 9050 16.193745502869 0 +59 9050 16.193745502869 0 +59 9085 16.24399343676 0 +59 9085 16.24399343676 0 +59 9092 16.24415343676 0 +59 9092 16.24415343676 0 +59 9141 16.414557520222 0 +59 9141 16.414557520222 0 +59 9164 16.414717520222 0 +59 9164 16.414717520222 0 +59 9219 16.431276843065 0 +59 9219 16.431276843065 0 +59 9238 16.431436843065 0 +59 9238 16.431436843065 0 +59 9291 16.493585502869 0 +59 9291 16.493585502869 0 +59 9299 16.493745502869 0 +59 9299 16.493745502869 0 +59 9334 16.543993425628 0 +59 9334 16.543993425628 0 +59 9341 16.544153425628 0 +59 9341 16.544153425628 0 +59 9389 16.714557495718 0 +59 9389 16.714557495718 0 +59 9408 16.714717495718 0 +59 9408 16.714717495718 0 +59 9468 16.731276834223 0 +59 9468 16.731276834223 0 +59 9487 16.731436834223 0 +59 9487 16.731436834223 0 +59 9540 16.793585502869 0 +59 9540 16.793585502869 0 +59 9548 16.793745502869 0 +59 9548 16.793745502869 0 +59 9583 16.843993417024 0 +59 9583 16.843993417024 0 +59 9590 16.844153417024 0 +59 9590 16.844153417024 0 +59 9638 17.01455747394 0 +59 9638 17.01455747394 0 +59 9657 17.01471747394 0 +59 9657 17.01471747394 0 +59 9717 17.031276828087 0 +59 9717 17.031276828087 0 +59 9736 17.031436828087 0 +59 9736 17.031436828087 0 +59 9789 17.093585502869 0 +59 9789 17.093585502869 0 +59 9797 17.093745502869 0 +59 9797 17.093745502869 0 +59 9832 17.143993410931 0 +59 9832 17.143993410931 0 +59 9839 17.144153410931 0 +59 9839 17.144153410931 0 +59 9887 17.314557454832 0 +59 9887 17.314557454832 0 +59 9906 17.314717454832 0 +59 9906 17.314717454832 0 +59 9966 17.33127682466 0 +59 9966 17.33127682466 0 +59 9985 17.33143682466 0 +59 9985 17.33143682466 0 +59 10038 17.393585502869 0 +59 10038 17.393585502869 0 +59 10046 17.393745502869 0 +59 10046 17.393745502869 0 +59 10081 17.443993407323 0 +59 10081 17.443993407323 0 +59 10088 17.444153407323 0 +59 10088 17.444153407323 0 +59 10136 17.614557438392 0 +59 10136 17.614557438392 0 +59 10155 17.614717438392 0 +59 10155 17.614717438392 0 +59 10215 17.631276823875 0 +59 10215 17.631276823875 0 +59 10234 17.631436823875 0 +59 10234 17.631436823875 0 +59 10287 17.693585502869 0 +59 10287 17.693585502869 0 +59 10295 17.693745502869 0 +59 10295 17.693745502869 0 +59 10330 17.743993405804 0 +59 10330 17.743993405804 0 +59 10337 17.744153405804 0 +59 10337 17.744153405804 0 +59 10385 17.914557422749 0 +59 10385 17.914557422749 0 +59 10404 17.914717422749 0 +59 10404 17.914717422749 0 +59 10460 17.931276823866 0 +59 10460 17.931276823866 0 +59 10479 17.931436823866 0 +59 10479 17.931436823866 0 +59 10528 17.993585502869 0 +59 10528 17.993585502869 0 +59 10536 17.993745502869 0 +59 10536 17.993745502869 0 +59 10571 18.043993404519 0 +59 10571 18.043993404519 0 +59 10578 18.044153404519 0 +59 10578 18.044153404519 0 +59 10626 18.214557407098 0 +59 10626 18.214557407098 0 +59 10645 18.214717407098 0 +59 10645 18.214717407098 0 +59 10697 18.231276823854 0 +59 10697 18.231276823854 0 +59 10716 18.231436823854 0 +59 10716 18.231436823854 0 +59 10765 18.293585502869 0 +59 10765 18.293585502869 0 +59 10773 18.293745502869 0 +59 10773 18.293745502869 0 +59 10808 18.34399340323 0 +59 10808 18.34399340323 0 +59 10815 18.34415340323 0 +59 10815 18.34415340323 0 +59 10859 18.514557392147 0 +59 10859 18.514557392147 0 +59 10878 18.514717392147 0 +59 10878 18.514717392147 0 +59 10930 18.531276823849 0 +59 10930 18.531276823849 0 +59 10949 18.531436823849 0 +59 10949 18.531436823849 0 +59 10998 18.593585502869 0 +59 10998 18.593585502869 0 +59 11006 18.593745502869 0 +59 11006 18.593745502869 0 +59 11041 18.643993401947 0 +59 11041 18.643993401947 0 +59 11048 18.644153401947 0 +59 11048 18.644153401947 0 +59 11092 18.814557385083 0 +59 11092 18.814557385083 0 +59 11111 18.814717385083 0 +59 11111 18.814717385083 0 +59 11163 18.831276823842 0 +59 11163 18.831276823842 0 +59 11182 18.831436823842 0 +59 11182 18.831436823842 0 +59 11231 18.893585502869 0 +59 11231 18.893585502869 0 +59 11239 18.893745502869 0 +59 11239 18.893745502869 0 +59 11274 18.943993400662 0 +59 11274 18.943993400662 0 +59 11281 18.944153400662 0 +59 11281 18.944153400662 0 +59 11325 19.11455738453 0 +59 11325 19.11455738453 0 +59 11344 19.11471738453 0 +59 11344 19.11471738453 0 +59 11396 19.13127682383 0 +59 11396 19.13127682383 0 +59 11415 19.13143682383 0 +59 11415 19.13143682383 0 +59 11464 19.193585502869 0 +59 11464 19.193585502869 0 +59 11472 19.193745502869 0 +59 11472 19.193745502869 0 +59 11507 19.243993399372 0 +59 11507 19.243993399372 0 +59 11514 19.244153399372 0 +59 11514 19.244153399372 0 +59 11558 19.414557384789 0 +59 11558 19.414557384789 0 +59 11577 19.414717384789 0 +59 11577 19.414717384789 0 +59 11629 19.431276823834 0 +59 11629 19.431276823834 0 +59 11648 19.431436823834 0 +59 11648 19.431436823834 0 +59 11697 19.493585502869 0 +59 11697 19.493585502869 0 +59 11705 19.493745502869 0 +59 11705 19.493745502869 0 +59 11740 19.543993397973 0 +59 11740 19.543993397973 0 +59 11747 19.544153397973 0 +59 11747 19.544153397973 0 +59 11791 19.71455738494 0 +59 11791 19.71455738494 0 +59 11810 19.71471738494 0 +59 11810 19.71471738494 0 +59 11862 19.731276823812 0 +59 11862 19.731276823812 0 +59 11881 19.731436823812 0 +59 11881 19.731436823812 0 +59 11930 19.793585502869 0 +59 11930 19.793585502869 0 +59 11938 19.793745502869 0 +59 11938 19.793745502869 0 +59 11973 19.843993395755 0 +59 11973 19.843993395755 0 +59 11980 19.844153395755 0 +59 11980 19.844153395755 0 +59 12024 20.014557384776 0 +59 12024 20.014557384776 0 +59 12043 20.014717384776 0 +59 12043 20.014717384776 0 +59 12099 20.031276823824 0 +59 12099 20.031276823824 0 +59 12118 20.031436823824 0 +59 12118 20.031436823824 0 +59 12171 20.093585502869 0 +59 12171 20.093585502869 0 +59 12179 20.093745502869 0 +59 12179 20.093745502869 0 +59 12214 20.143993392654 0 +59 12214 20.143993392654 0 +59 12221 20.144153392654 0 +59 12221 20.144153392654 0 +59 12265 20.314557384384 0 +59 12265 20.314557384384 0 +59 12284 20.314717384384 0 +59 12284 20.314717384384 0 +59 12340 20.331276823783 0 +59 12340 20.331276823783 0 +59 12359 20.331436823783 0 +59 12359 20.331436823783 0 +59 12412 20.393585502869 0 +59 12412 20.393585502869 0 +59 12420 20.393745502869 0 +59 12420 20.393745502869 0 +59 12455 20.443993388797 0 +59 12455 20.443993388797 0 +59 12462 20.444153388797 0 +59 12462 20.444153388797 0 +59 12506 20.614557383808 0 +59 12506 20.614557383808 0 +59 12525 20.614717383808 0 +59 12525 20.614717383808 0 +59 12581 20.631276823785 0 +59 12581 20.631276823785 0 +59 12600 20.631436823785 0 +59 12600 20.631436823785 0 +59 12653 20.693585502869 0 +59 12653 20.693585502869 0 +59 12661 20.693745502869 0 +59 12661 20.693745502869 0 +59 12696 20.743993384171 0 +59 12696 20.743993384171 0 +59 12703 20.744153384171 0 +59 12703 20.744153384171 0 +59 12747 20.914557383117 0 +59 12747 20.914557383117 0 +59 12766 20.914717383117 0 +59 12766 20.914717383117 0 +59 12822 20.931276823825 0 +59 12822 20.931276823825 0 +59 12841 20.931436823825 0 +59 12841 20.931436823825 0 +59 12894 20.993585502869 0 +59 12894 20.993585502869 0 +59 12902 20.993745502869 0 +59 12902 20.993745502869 0 +59 12937 21.043993378911 0 +59 12937 21.043993378911 0 +59 12944 21.044153378911 0 +59 12944 21.044153378911 0 +59 12988 21.214557382339 0 +59 12988 21.214557382339 0 +59 13007 21.214717382339 0 +59 13007 21.214717382339 0 +59 13063 21.231276823913 0 +59 13063 21.231276823913 0 +59 13082 21.231436823913 0 +59 13082 21.231436823913 0 +59 13135 21.293585502869 0 +59 13135 21.293585502869 0 +59 13143 21.293745502869 0 +59 13143 21.293745502869 0 +59 13178 21.343993372963 0 +59 13178 21.343993372963 0 +59 13185 21.344153372963 0 +59 13185 21.344153372963 0 +59 13229 21.514557381349 0 +59 13229 21.514557381349 0 +59 13248 21.514717381349 0 +59 13248 21.514717381349 0 +59 13304 21.531276823952 0 +59 13304 21.531276823952 0 +59 13323 21.531436823952 0 +59 13323 21.531436823952 0 +59 13376 21.593585502869 0 +59 13376 21.593585502869 0 +59 13384 21.593745502869 0 +59 13384 21.593745502869 0 +59 13419 21.643993366253 0 +59 13419 21.643993366253 0 +59 13426 21.644153366253 0 +59 13426 21.644153366253 0 +59 13470 21.81455738019 0 +59 13470 21.81455738019 0 +59 13489 21.81471738019 0 +59 13489 21.81471738019 0 +59 13545 21.831276823995 0 +59 13545 21.831276823995 0 +59 13564 21.831436823995 0 +59 13564 21.831436823995 0 +59 13617 21.893585502869 0 +59 13617 21.893585502869 0 +59 13625 21.893745502869 0 +59 13625 21.893745502869 0 +59 13660 21.943993358856 0 +59 13660 21.943993358856 0 +59 13667 21.944153358856 0 +59 13667 21.944153358856 0 +59 13711 22.114557378874 0 +59 13711 22.114557378874 0 +59 13730 22.114717378874 0 +59 13730 22.114717378874 0 +59 13786 22.131276824039 0 +59 13786 22.131276824039 0 +59 13805 22.131436824039 0 +59 13805 22.131436824039 0 +59 13858 22.193585502869 0 +59 13858 22.193585502869 0 +59 13866 22.193745502869 0 +59 13866 22.193745502869 0 +59 13901 22.243993350791 0 +59 13901 22.243993350791 0 +59 13908 22.244153350791 0 +59 13908 22.244153350791 0 +59 13952 22.414557377522 0 +59 13952 22.414557377522 0 +59 13971 22.414717377522 0 +59 13971 22.414717377522 0 +59 14027 22.431276824127 0 +59 14027 22.431276824127 0 +59 14046 22.431436824127 0 +59 14046 22.431436824127 0 +59 14099 22.493585502869 0 +59 14099 22.493585502869 0 +59 14107 22.493745502869 0 +59 14107 22.493745502869 0 +59 14142 22.543993342123 0 +59 14142 22.543993342123 0 +59 14149 22.544153342123 0 +59 14149 22.544153342123 0 +59 14193 22.714557376066 0 +59 14193 22.714557376066 0 +59 14212 22.714717376066 0 +59 14212 22.714717376066 0 +59 14268 22.73127682417 0 +59 14268 22.73127682417 0 +59 14287 22.73143682417 0 +59 14287 22.73143682417 0 +59 14340 22.793585502869 0 +59 14340 22.793585502869 0 +59 14348 22.793745502869 0 +59 14348 22.793745502869 0 +59 14383 22.843993333052 0 +59 14383 22.843993333052 0 +59 14390 22.844153333052 0 +59 14390 22.844153333052 0 +59 14434 23.01455737451 0 +59 14434 23.01455737451 0 +59 14453 23.01471737451 0 +59 14453 23.01471737451 0 +59 14509 23.031276824169 0 +59 14509 23.031276824169 0 +59 14528 23.031436824169 0 +59 14528 23.031436824169 0 +59 14581 23.093585502869 0 +59 14581 23.093585502869 0 +59 14589 23.093745502869 0 +59 14589 23.093745502869 0 +59 14624 23.14399332347 0 +59 14624 23.14399332347 0 +59 14631 23.14415332347 0 +59 14631 23.14415332347 0 +59 14675 23.314557372866 0 +59 14675 23.314557372866 0 +59 14694 23.314717372866 0 +59 14694 23.314717372866 0 +59 14750 23.331276824195 0 +59 14750 23.331276824195 0 +59 14769 23.331436824195 0 +59 14769 23.331436824195 0 +59 14822 23.393585502869 0 +59 14822 23.393585502869 0 +59 14830 23.393745502869 0 +59 14830 23.393745502869 0 +59 14865 23.443993313527 0 +59 14865 23.443993313527 0 +59 14872 23.444153313527 0 +59 14872 23.444153313527 0 +59 14916 23.614557371257 0 +59 14916 23.614557371257 0 +59 14935 23.614717371257 0 +59 14935 23.614717371257 0 +59 14991 23.631276824238 0 +59 14991 23.631276824238 0 +59 15010 23.631436824238 0 +59 15010 23.631436824238 0 +59 15063 23.693585502869 0 +59 15063 23.693585502869 0 +59 15071 23.693745502869 0 +59 15071 23.693745502869 0 +59 15106 23.743993309221 0 +59 15106 23.743993309221 0 +59 15113 23.744153309221 0 +59 15113 23.744153309221 0 +59 15156 23.914557369634 0 +59 15156 23.914557369634 0 +59 15171 23.914717369634 0 +59 15171 23.914717369634 0 +59 15232 23.931276824212 0 +59 15232 23.931276824212 0 +59 15251 23.931436824212 0 +59 15251 23.931436824212 0 +59 15304 23.993585502869 0 +59 15304 23.993585502869 0 +59 15312 23.993745502869 0 +59 15312 23.993745502869 0 +59 15347 24.043993304961 0 +59 15347 24.043993304961 0 +59 15354 24.044153304961 0 +59 15354 24.044153304961 0 +59 15397 24.214557367961 0 +59 15397 24.214557367961 0 +59 15412 24.214717367961 0 +59 15412 24.214717367961 0 +59 15473 24.231276824049 0 +59 15473 24.231276824049 0 +59 15492 24.231436824049 0 +59 15492 24.231436824049 0 +59 15545 24.293585502869 0 +59 15545 24.293585502869 0 +59 15553 24.293745502869 0 +59 15553 24.293745502869 0 +59 15588 24.343993296734 0 +59 15588 24.343993296734 0 +59 15595 24.344153296734 0 +59 15595 24.344153296734 0 +59 15638 24.514557366429 0 +59 15638 24.514557366429 0 +59 15653 24.514717366429 0 +59 15653 24.514717366429 0 +59 15714 24.531276823944 0 +59 15714 24.531276823944 0 +59 15733 24.531436823944 0 +59 15733 24.531436823944 0 +59 15786 24.593585502869 0 +59 15786 24.593585502869 0 +59 15794 24.593745502869 0 +59 15794 24.593745502869 0 +59 15829 24.643993289194 0 +59 15829 24.643993289194 0 +59 15836 24.644153289194 0 +59 15836 24.644153289194 0 +59 15879 24.814557365061 0 +59 15879 24.814557365061 0 +59 15894 24.814717365061 0 +59 15894 24.814717365061 0 +59 15955 24.831276823957 0 +59 15955 24.831276823957 0 +59 15974 24.831436823957 0 +59 15974 24.831436823957 0 +59 16027 24.893585502869 0 +59 16027 24.893585502869 0 +59 16035 24.893745502869 0 +59 16035 24.893745502869 0 +59 16070 24.943993282619 0 +59 16070 24.943993282619 0 +59 16077 24.944153282619 0 +59 16077 24.944153282619 0 +59 16120 25.114557363825 0 +59 16120 25.114557363825 0 +59 16135 25.114717363825 0 +59 16135 25.114717363825 0 +59 16196 25.131276823934 0 +59 16196 25.131276823934 0 +59 16215 25.131436823934 0 +59 16215 25.131436823934 0 +59 16268 25.193585502869 0 +59 16268 25.193585502869 0 +59 16276 25.193745502869 0 +59 16276 25.193745502869 0 +59 16311 25.243993277481 0 +59 16311 25.243993277481 0 +59 16318 25.244153277481 0 +59 16318 25.244153277481 0 +59 16361 25.414557362755 0 +59 16361 25.414557362755 0 +59 16376 25.414717362755 0 +59 16376 25.414717362755 0 +59 16437 25.431276823911 0 +59 16437 25.431276823911 0 +59 16456 25.431436823911 0 +59 16456 25.431436823911 0 +59 16509 25.493585502869 0 +59 16509 25.493585502869 0 +59 16517 25.493745502869 0 +59 16517 25.493745502869 0 +59 16552 25.54399327434 0 +59 16552 25.54399327434 0 +59 16559 25.54415327434 0 +59 16559 25.54415327434 0 +59 16602 25.71455736198 0 +59 16602 25.71455736198 0 +59 16617 25.71471736198 0 +59 16617 25.71471736198 0 +59 16678 25.731276823855 0 +59 16678 25.731276823855 0 +59 16697 25.731436823855 0 +59 16697 25.731436823855 0 +59 16750 25.793585502869 0 +59 16750 25.793585502869 0 +59 16758 25.793745502869 0 +59 16758 25.793745502869 0 +59 16793 25.843993273696 0 +59 16793 25.843993273696 0 +59 16800 25.844153273696 0 +59 16800 25.844153273696 0 +59 16843 26.014557361437 0 +59 16843 26.014557361437 0 +59 16858 26.014717361437 0 +59 16858 26.014717361437 0 +59 16919 26.031276822435 0 +59 16919 26.031276822435 0 +59 16938 26.031436822435 0 +59 16938 26.031436822435 0 +59 16991 26.093585502869 0 +59 16991 26.093585502869 0 +59 16999 26.093745502869 0 +59 16999 26.093745502869 0 +59 17034 26.143993275957 0 +59 17034 26.143993275957 0 +59 17041 26.144153275957 0 +59 17041 26.144153275957 0 +59 17084 26.314557361533 0 +59 17084 26.314557361533 0 +59 17099 26.314717361533 0 +59 17099 26.314717361533 0 +59 17160 26.331276819514 0 +59 17160 26.331276819514 0 +59 17179 26.331436819514 0 +59 17179 26.331436819514 0 +59 17232 26.393585502869 0 +59 17232 26.393585502869 0 +59 17240 26.393745502869 0 +59 17240 26.393745502869 0 +59 17275 26.443993281636 0 +59 17275 26.443993281636 0 +59 17282 26.444153281636 0 +59 17282 26.444153281636 0 +59 17325 26.614557362396 0 +59 17325 26.614557362396 0 +59 17340 26.614717362396 0 +59 17340 26.614717362396 0 +59 17401 26.631276815275 0 +59 17401 26.631276815275 0 +59 17420 26.631436815275 0 +59 17420 26.631436815275 0 +59 17473 26.693585502869 0 +59 17473 26.693585502869 0 +59 17481 26.693745502869 0 +59 17481 26.693745502869 0 +59 17516 26.743993290495 0 +59 17516 26.743993290495 0 +59 17523 26.744153290495 0 +59 17523 26.744153290495 0 +59 17566 26.914557364009 0 +59 17566 26.914557364009 0 +59 17581 26.914717364009 0 +59 17581 26.914717364009 0 +59 17642 26.931276809646 0 +59 17642 26.931276809646 0 +59 17661 26.931436809646 0 +59 17661 26.931436809646 0 +59 17714 26.993585502869 0 +59 17714 26.993585502869 0 +59 17722 26.993745502869 0 +59 17722 26.993745502869 0 +59 17757 27.043993302033 0 +59 17757 27.043993302033 0 +59 17764 27.044153302033 0 +59 17764 27.044153302033 0 +59 17807 27.214557366345 0 +59 17807 27.214557366345 0 +59 17822 27.214717366345 0 +59 17822 27.214717366345 0 +59 17874 27.231276802678 0 +59 17874 27.231276802678 0 +59 17889 27.231436802678 0 +59 17889 27.231436802678 0 +59 17947 27.293585502869 0 +59 17947 27.293585502869 0 +59 17955 27.293745502869 0 +59 17955 27.293745502869 0 +59 17990 27.34399331576 0 +59 17990 27.34399331576 0 +59 17997 27.34415331576 0 +59 17997 27.34415331576 0 +59 18040 27.514557369437 0 +59 18040 27.514557369437 0 +59 18055 27.514717369437 0 +59 18055 27.514717369437 0 +59 18107 27.531276795041 0 +59 18107 27.531276795041 0 +59 18122 27.531436795041 0 +59 18122 27.531436795041 0 +59 18180 27.593585502869 0 +59 18180 27.593585502869 0 +59 18188 27.593745502869 0 +59 18188 27.593745502869 0 +59 18223 27.643993330828 0 +59 18223 27.643993330828 0 +59 18230 27.644153330828 0 +59 18230 27.644153330828 0 +59 18273 27.814557373228 0 +59 18273 27.814557373228 0 +59 18288 27.814717373228 0 +59 18288 27.814717373228 0 +59 18340 27.83127678721 0 +59 18340 27.83127678721 0 +59 18355 27.83143678721 0 +59 18355 27.83143678721 0 +59 18413 27.893585502869 0 +59 18413 27.893585502869 0 +59 18421 27.893745502869 0 +59 18421 27.893745502869 0 +59 18456 27.943993346916 0 +59 18456 27.943993346916 0 +59 18463 27.944153346916 0 +59 18463 27.944153346916 0 +59 18506 28.11455737771 0 +59 18506 28.11455737771 0 +59 18521 28.11471737771 0 +59 18521 28.11471737771 0 +59 18573 28.131276770655 0 +59 18573 28.131276770655 0 +59 18588 28.131436770655 0 +59 18588 28.131436770655 0 +59 18646 28.193585502869 0 +59 18646 28.193585502869 0 +59 18654 28.193745502869 0 +59 18654 28.193745502869 0 +59 18689 28.243993363816 0 +59 18689 28.243993363816 0 +59 18696 28.244153363816 0 +59 18696 28.244153363816 0 +59 18739 28.41455738295 0 +59 18739 28.41455738295 0 +59 18754 28.41471738295 0 +59 18754 28.41471738295 0 +59 18806 28.431276747906 0 +59 18806 28.431276747906 0 +59 18821 28.431436747906 0 +59 18821 28.431436747906 0 +59 18879 28.493585502869 0 +59 18879 28.493585502869 0 +59 18887 28.493745502869 0 +59 18887 28.493745502869 0 +59 18922 28.543993381372 0 +59 18922 28.543993381372 0 +59 18929 28.544153381372 0 +59 18929 28.544153381372 0 +59 18972 28.714557388816 0 +59 18972 28.714557388816 0 +59 18987 28.714717388816 0 +59 18987 28.714717388816 0 +59 19038 28.731276724087 0 +59 19038 28.731276724087 0 +59 19049 28.731436724087 0 +59 19049 28.731436724087 0 +59 19112 28.793585502869 0 +59 19112 28.793585502869 0 +59 19120 28.793745502869 0 +59 19120 28.793745502869 0 +59 19155 28.843993399418 0 +59 19155 28.843993399418 0 +59 19162 28.844153399418 0 +59 19162 28.844153399418 0 +59 19205 29.014557395373 0 +59 19205 29.014557395373 0 +59 19220 29.014717395373 0 +59 19220 29.014717395373 0 +59 19271 29.031276699665 0 +59 19271 29.031276699665 0 +59 19282 29.031436699665 0 +59 19282 29.031436699665 0 +59 19337 29.093585502869 0 +59 19337 29.093585502869 0 +59 19345 29.093745502869 0 +59 19345 29.093745502869 0 +59 19380 29.143993417837 0 +59 19380 29.143993417837 0 +59 19387 29.144153417837 0 +59 19387 29.144153417837 0 +59 19429 29.314557402593 0 +59 19429 29.314557402593 0 +59 19440 29.314717402593 0 +59 19440 29.314717402593 0 +59 19496 29.331276674765 0 +59 19496 29.331276674765 0 +59 19507 29.331436674765 0 +59 19507 29.331436674765 0 +59 19562 29.393585502869 0 +59 19562 29.393585502869 0 +59 19570 29.393745502869 0 +59 19570 29.393745502869 0 +59 19605 29.443993436569 0 +59 19605 29.443993436569 0 +59 19612 29.444153436569 0 +59 19612 29.444153436569 0 +59 19654 29.61455741041 0 +59 19654 29.61455741041 0 +59 19665 29.61471741041 0 +59 19665 29.61471741041 0 +59 19721 29.631276649424 0 +59 19721 29.631276649424 0 +59 19732 29.631436649424 0 +59 19732 29.631436649424 0 +59 19787 29.693585502869 0 +59 19787 29.693585502869 0 +59 19795 29.693745502869 0 +59 19795 29.693745502869 0 +59 19830 29.743993455545 0 +59 19830 29.743993455545 0 +59 19837 29.744153455545 0 +59 19837 29.744153455545 0 +59 19879 29.914557418813 0 +59 19879 29.914557418813 0 +59 19890 29.914717418813 0 +59 19890 29.914717418813 0 +59 19946 29.93127662341 0 +59 19946 29.93127662341 0 +59 19957 29.93143662341 0 +59 19957 29.93143662341 0 +59 20012 29.993585502869 0 +59 20012 29.993585502869 0 +59 20020 29.993745502869 0 +59 20020 29.993745502869 0 +59 20055 30.043993474721 0 +59 20055 30.043993474721 0 +59 20062 30.044153474721 0 +59 20062 30.044153474721 0 +59 20104 30.214557427759 0 +59 20104 30.214557427759 0 +59 20115 30.214717427759 0 +59 20115 30.214717427759 0 +59 20171 30.231276596705 0 +59 20171 30.231276596705 0 +59 20182 30.231436596705 0 +59 20182 30.231436596705 0 +59 20237 30.293585502869 0 +59 20237 30.293585502869 0 +59 20245 30.293745502869 0 +59 20245 30.293745502869 0 +59 20280 30.343993494113 0 +59 20280 30.343993494113 0 +59 20287 30.344153494113 0 +59 20287 30.344153494113 0 +59 20330 30.514557437221 0 +59 20330 30.514557437221 0 +59 20345 30.514717437221 0 +59 20345 30.514717437221 0 +59 20396 30.531276569374 0 +59 20396 30.531276569374 0 +59 20407 30.531436569374 0 +59 20407 30.531436569374 0 +59 20462 30.593585502869 0 +59 20462 30.593585502869 0 +59 20470 30.593745502869 0 +59 20470 30.593745502869 0 +59 20505 30.643993513628 0 +59 20505 30.643993513628 0 +59 20512 30.644153513628 0 +59 20512 30.644153513628 0 +59 20556 30.814557447201 0 +59 20556 30.814557447201 0 +59 20575 30.814717447201 0 +59 20575 30.814717447201 0 +59 20620 30.831276541474 0 +59 20620 30.831276541474 0 +59 20627 30.831436541474 0 +59 20627 30.831436541474 0 +59 20687 30.893585502869 0 +59 20687 30.893585502869 0 +59 20695 30.893745502869 0 +59 20695 30.893745502869 0 +59 20730 30.943993533271 0 +59 20730 30.943993533271 0 +59 20737 30.944153533271 0 +59 20737 30.944153533271 0 +59 20781 31.114557457713 0 +59 20781 31.114557457713 0 +59 20800 31.114717457713 0 +59 20800 31.114717457713 0 +59 20817 31.124399322913 0 +59 20817 31.124399322913 0 +59 20832 31.124559322913 0 +59 20832 31.124559322913 0 +59 20849 31.131276513237 0 +59 20849 31.131276513237 0 +59 20856 31.131436513237 0 +59 20856 31.131436513237 0 +59 20916 31.193585502869 0 +59 20916 31.193585502869 0 +59 20924 31.193745502869 0 +59 20924 31.193745502869 0 +59 20963 31.243993553001 0 +59 20963 31.243993553001 0 +59 20970 31.244153553001 0 +59 20970 31.244153553001 0 +59 21014 31.414557468667 0 +59 21014 31.414557468667 0 +59 21033 31.414717468667 0 +59 21033 31.414717468667 0 +59 21050 31.424399297163 0 +59 21050 31.424399297163 0 +59 21065 31.424559297163 0 +59 21065 31.424559297163 0 +59 21082 31.431276484978 0 +59 21082 31.431276484978 0 +59 21089 31.431436484978 0 +59 21089 31.431436484978 0 +59 21149 31.493585502869 0 +59 21149 31.493585502869 0 +59 21157 31.493745502869 0 +59 21157 31.493745502869 0 +59 21196 31.543993572835 0 +59 21196 31.543993572835 0 +59 21203 31.544153572835 0 +59 21203 31.544153572835 0 +59 21247 31.7145574801 0 +59 21247 31.7145574801 0 +59 21266 31.7147174801 0 +59 21266 31.7147174801 0 +59 21283 31.724399271431 0 +59 21283 31.724399271431 0 +59 21298 31.724559271431 0 +59 21298 31.724559271431 0 +59 21315 31.731276456746 0 +59 21315 31.731276456746 0 +59 21322 31.731436456746 0 +59 21322 31.731436456746 0 +59 21382 31.793585502869 0 +59 21382 31.793585502869 0 +59 21390 31.793745502869 0 +59 21390 31.793745502869 0 +59 21430 31.843993592699 0 +59 21430 31.843993592699 0 +59 21441 31.844153592699 0 +59 21441 31.844153592699 0 +59 21480 32.014557491924 0 +59 21480 32.014557491924 0 +59 21499 32.014717491924 0 +59 21499 32.014717491924 0 +59 21515 32.024399245722 0 +59 21515 32.024399245722 0 +59 21526 32.024559245722 0 +59 21526 32.024559245722 0 +59 21548 32.031276428528 0 +59 21548 32.031276428528 0 +59 21555 32.031436428528 0 +59 21555 32.031436428528 0 +59 21615 32.093585502869 0 +59 21615 32.093585502869 0 +59 21623 32.093745502869 0 +59 21623 32.093745502869 0 +59 21663 32.143993612639 0 +59 21663 32.143993612639 0 +59 21674 32.144153612639 0 +59 21674 32.144153612639 0 +59 21713 32.31455750416 0 +59 21713 32.31455750416 0 +59 21732 32.31471750416 0 +59 21732 32.31471750416 0 +59 21748 32.324399219895 0 +59 21748 32.324399219895 0 +59 21759 32.324559219895 0 +59 21759 32.324559219895 0 +59 21781 32.331276400291 0 +59 21781 32.331276400291 0 +59 21788 32.331436400291 0 +59 21788 32.331436400291 0 +59 21848 32.393585502869 0 +59 21848 32.393585502869 0 +59 21856 32.393745502869 0 +59 21856 32.393745502869 0 +59 21896 32.443993632704 0 +59 21896 32.443993632704 0 +59 21907 32.444153632704 0 +59 21907 32.444153632704 0 +59 21946 32.61455751675 0 +59 21946 32.61455751675 0 +59 21965 32.61471751675 0 +59 21965 32.61471751675 0 +59 21981 32.624399194111 0 +59 21981 32.624399194111 0 +59 21992 32.624559194111 0 +59 21992 32.624559194111 0 +59 22014 32.631276372037 0 +59 22014 32.631276372037 0 +59 22021 32.631436372037 0 +59 22021 32.631436372037 0 +59 22081 32.693585502869 0 +59 22081 32.693585502869 0 +59 22089 32.693745502869 0 +59 22089 32.693745502869 0 +59 22129 32.743993652819 0 +59 22129 32.743993652819 0 +59 22140 32.744153652819 0 +59 22140 32.744153652819 0 +59 22179 32.914557529741 0 +59 22179 32.914557529741 0 +59 22198 32.914717529741 0 +59 22198 32.914717529741 0 +59 22214 32.924399168331 0 +59 22214 32.924399168331 0 +59 22225 32.924559168331 0 +59 22225 32.924559168331 0 +59 22247 32.9312763438 0 +59 22247 32.9312763438 0 +59 22254 32.9314363438 0 +59 22254 32.9314363438 0 +59 22314 32.993585502869 0 +59 22314 32.993585502869 0 +59 22322 32.993745502869 0 +59 22322 32.993745502869 0 +59 22362 33.043993672958 0 +59 22362 33.043993672958 0 +59 22373 33.044153672958 0 +59 22373 33.044153672958 0 +59 22412 33.214557543026 0 +59 22412 33.214557543026 0 +59 22431 33.214717543026 0 +59 22431 33.214717543026 0 +59 22447 33.224399142569 0 +59 22447 33.224399142569 0 +59 22458 33.224559142569 0 +59 22458 33.224559142569 0 +59 22480 33.231276315598 0 +59 22480 33.231276315598 0 +59 22487 33.231436315598 0 +59 22487 33.231436315598 0 +59 22547 33.293585502869 0 +59 22547 33.293585502869 0 +59 22555 33.293745502869 0 +59 22555 33.293745502869 0 +59 22595 33.343993693134 0 +59 22595 33.343993693134 0 +59 22606 33.344153693134 0 +59 22606 33.344153693134 0 +59 22645 33.514557556648 0 +59 22645 33.514557556648 0 +59 22664 33.514717556648 0 +59 22664 33.514717556648 0 +59 22680 33.524399116789 0 +59 22680 33.524399116789 0 +59 22691 33.524559116789 0 +59 22691 33.524559116789 0 +59 22713 33.531276287401 0 +59 22713 33.531276287401 0 +59 22720 33.531436287401 0 +59 22720 33.531436287401 0 +59 22780 33.593585502869 0 +59 22780 33.593585502869 0 +59 22788 33.593745502869 0 +59 22788 33.593745502869 0 +59 22828 33.643993713368 0 +59 22828 33.643993713368 0 +59 22839 33.644153713368 0 +59 22839 33.644153713368 0 +59 22909 33.824399091063 0 +59 22909 33.824399091063 0 +59 22920 33.824559091063 0 +59 22920 33.824559091063 0 +59 22942 33.831276259307 0 +59 22942 33.831276259307 0 +59 22949 33.831436259307 0 +59 22949 33.831436259307 0 +59 23009 33.893585502869 0 +59 23009 33.893585502869 0 +59 23017 33.893745502869 0 +59 23017 33.893745502869 0 +53 778 5.1 180 +64 1053 5.693585502869 1 +64 1054 5.693585502869 2 +64 1059 5.693745502869 1 +64 1060 5.693745502869 0 +64 1211 5.993585502869 1 +64 1212 5.993585502869 2 +64 1217 5.993745502869 1 +64 1218 5.993745502869 0 +64 1389 6.293585502869 1 +64 1390 6.293585502869 2 +64 1396 6.293745502869 1 +64 1397 6.293745502869 0 +64 1606 6.593585502869 1 +64 1607 6.593585502869 2 +64 1613 6.593745502869 1 +64 1614 6.593745502869 0 +64 1823 6.893585502869 1 +64 1824 6.893585502869 2 +64 1830 6.893745502869 1 +64 1831 6.893745502869 0 +64 2040 7.193585502869 1 +64 2041 7.193585502869 2 +64 2047 7.193745502869 1 +64 2048 7.193745502869 0 +64 2257 7.493585502869 1 +64 2258 7.493585502869 2 +64 2264 7.493745502869 1 +64 2265 7.493745502869 0 +64 2474 7.793585502869 1 +64 2475 7.793585502869 2 +64 2481 7.793745502869 1 +64 2482 7.793745502869 0 +64 2691 8.093585502869 1 +64 2692 8.093585502869 2 +64 2698 8.093745502869 1 +64 2699 8.093745502869 0 +64 2912 8.393585502869 1 +64 2913 8.393585502869 2 +64 2919 8.393745502869 1 +64 2920 8.393745502869 0 +64 3137 8.693585502869 1 +64 3138 8.693585502869 2 +64 3144 8.693745502869 1 +64 3145 8.693745502869 0 +64 3362 8.993585502869 1 +64 3363 8.993585502869 2 +64 3369 8.993745502869 1 +64 3370 8.993745502869 0 +64 3587 9.293585502869 1 +64 3588 9.293585502869 2 +64 3594 9.293745502869 1 +64 3595 9.293745502869 0 +64 3812 9.593585502869 1 +64 3813 9.593585502869 2 +64 3819 9.593745502869 1 +64 3820 9.593745502869 0 +64 4037 9.893585502869 1 +64 4038 9.893585502869 2 +64 4044 9.893745502869 1 +64 4045 9.893745502869 0 +64 4262 10.193585502869 1 +64 4263 10.193585502869 2 +64 4269 10.193745502869 1 +64 4270 10.193745502869 0 +64 4487 10.493585502869 1 +64 4488 10.493585502869 2 +64 4494 10.493745502869 1 +64 4495 10.493745502869 0 +64 4720 10.793585502869 1 +64 4721 10.793585502869 2 +64 4727 10.793745502869 1 +64 4728 10.793745502869 0 +64 4953 11.093585502869 1 +64 4954 11.093585502869 2 +64 4960 11.093745502869 1 +64 4961 11.093745502869 0 +64 5186 11.393585502869 1 +64 5187 11.393585502869 2 +64 5193 11.393745502869 1 +64 5194 11.393745502869 0 +64 5423 11.693585502869 1 +64 5424 11.693585502869 2 +64 5430 11.693745502869 1 +64 5431 11.693745502869 0 +64 5664 11.993585502869 1 +64 5665 11.993585502869 2 +64 5671 11.993745502869 1 +64 5672 11.993745502869 0 +64 5905 12.293585502869 1 +64 5906 12.293585502869 2 +64 5912 12.293745502869 1 +64 5913 12.293745502869 0 +64 6146 12.593585502869 1 +64 6147 12.593585502869 2 +64 6153 12.593745502869 1 +64 6154 12.593745502869 0 +64 6387 12.893585502869 1 +64 6388 12.893585502869 2 +64 6394 12.893745502869 1 +64 6395 12.893745502869 0 +64 6628 13.193585502869 1 +64 6629 13.193585502869 2 +64 6635 13.193745502869 1 +64 6636 13.193745502869 0 +64 6869 13.493585502869 1 +64 6870 13.493585502869 2 +64 6876 13.493745502869 1 +64 6877 13.493745502869 0 +64 7110 13.793585502869 1 +64 7111 13.793585502869 2 +64 7117 13.793745502869 1 +64 7118 13.793745502869 0 +64 7351 14.093585502869 1 +64 7352 14.093585502869 2 +64 7358 14.093745502869 1 +64 7359 14.093745502869 0 +64 7592 14.393585502869 1 +64 7593 14.393585502869 2 +64 7599 14.393745502869 1 +64 7600 14.393745502869 0 +64 7833 14.693585502869 1 +64 7834 14.693585502869 2 +64 7840 14.693745502869 1 +64 7841 14.693745502869 0 +64 8074 14.993585502869 1 +64 8075 14.993585502869 2 +64 8081 14.993745502869 1 +64 8082 14.993745502869 0 +64 8315 15.293585502869 1 +64 8316 15.293585502869 2 +64 8322 15.293745502869 1 +64 8323 15.293745502869 0 +64 8556 15.593585502869 1 +64 8557 15.593585502869 2 +64 8563 15.593745502869 1 +64 8564 15.593745502869 0 +64 8797 15.893585502869 1 +64 8798 15.893585502869 2 +64 8804 15.893745502869 1 +64 8805 15.893745502869 0 +64 9042 16.193585502869 1 +64 9043 16.193585502869 2 +64 9049 16.193745502869 1 +64 9050 16.193745502869 0 +64 9291 16.493585502869 1 +64 9292 16.493585502869 2 +64 9298 16.493745502869 1 +64 9299 16.493745502869 0 +64 9540 16.793585502869 1 +64 9541 16.793585502869 2 +64 9547 16.793745502869 1 +64 9548 16.793745502869 0 +64 9789 17.093585502869 1 +64 9790 17.093585502869 2 +64 9796 17.093745502869 1 +64 9797 17.093745502869 0 +64 10038 17.393585502869 1 +64 10039 17.393585502869 2 +64 10045 17.393745502869 1 +64 10046 17.393745502869 0 +64 10287 17.693585502869 1 +64 10288 17.693585502869 2 +64 10294 17.693745502869 1 +64 10295 17.693745502869 0 +64 10528 17.993585502869 1 +64 10529 17.993585502869 2 +64 10535 17.993745502869 1 +64 10536 17.993745502869 0 +64 10765 18.293585502869 1 +64 10766 18.293585502869 2 +64 10772 18.293745502869 1 +64 10773 18.293745502869 0 +64 10998 18.593585502869 1 +64 10999 18.593585502869 2 +64 11005 18.593745502869 1 +64 11006 18.593745502869 0 +64 11231 18.893585502869 1 +64 11232 18.893585502869 2 +64 11238 18.893745502869 1 +64 11239 18.893745502869 0 +64 11464 19.193585502869 1 +64 11465 19.193585502869 2 +64 11471 19.193745502869 1 +64 11472 19.193745502869 0 +64 11697 19.493585502869 1 +64 11698 19.493585502869 2 +64 11704 19.493745502869 1 +64 11705 19.493745502869 0 +64 11930 19.793585502869 1 +64 11931 19.793585502869 2 +64 11937 19.793745502869 1 +64 11938 19.793745502869 0 +64 12171 20.093585502869 1 +64 12172 20.093585502869 2 +64 12178 20.093745502869 1 +64 12179 20.093745502869 0 +64 12412 20.393585502869 1 +64 12413 20.393585502869 2 +64 12419 20.393745502869 1 +64 12420 20.393745502869 0 +64 12653 20.693585502869 1 +64 12654 20.693585502869 2 +64 12660 20.693745502869 1 +64 12661 20.693745502869 0 +64 12894 20.993585502869 1 +64 12895 20.993585502869 2 +64 12901 20.993745502869 1 +64 12902 20.993745502869 0 +64 13135 21.293585502869 1 +64 13136 21.293585502869 2 +64 13142 21.293745502869 1 +64 13143 21.293745502869 0 +64 13376 21.593585502869 1 +64 13377 21.593585502869 2 +64 13383 21.593745502869 1 +64 13384 21.593745502869 0 +64 13617 21.893585502869 1 +64 13618 21.893585502869 2 +64 13624 21.893745502869 1 +64 13625 21.893745502869 0 +64 13858 22.193585502869 1 +64 13859 22.193585502869 2 +64 13865 22.193745502869 1 +64 13866 22.193745502869 0 +64 14099 22.493585502869 1 +64 14100 22.493585502869 2 +64 14106 22.493745502869 1 +64 14107 22.493745502869 0 +64 14340 22.793585502869 1 +64 14341 22.793585502869 2 +64 14347 22.793745502869 1 +64 14348 22.793745502869 0 +64 14581 23.093585502869 1 +64 14582 23.093585502869 2 +64 14588 23.093745502869 1 +64 14589 23.093745502869 0 +64 14822 23.393585502869 1 +64 14823 23.393585502869 2 +64 14829 23.393745502869 1 +64 14830 23.393745502869 0 +64 15063 23.693585502869 1 +64 15064 23.693585502869 2 +64 15070 23.693745502869 1 +64 15071 23.693745502869 0 +64 15304 23.993585502869 1 +64 15305 23.993585502869 2 +64 15311 23.993745502869 1 +64 15312 23.993745502869 0 +64 15545 24.293585502869 1 +64 15546 24.293585502869 2 +64 15552 24.293745502869 1 +64 15553 24.293745502869 0 +64 15786 24.593585502869 1 +64 15787 24.593585502869 2 +64 15793 24.593745502869 1 +64 15794 24.593745502869 0 +64 16027 24.893585502869 1 +64 16028 24.893585502869 2 +64 16034 24.893745502869 1 +64 16035 24.893745502869 0 +64 16268 25.193585502869 1 +64 16269 25.193585502869 2 +64 16275 25.193745502869 1 +64 16276 25.193745502869 0 +64 16509 25.493585502869 1 +64 16510 25.493585502869 2 +64 16516 25.493745502869 1 +64 16517 25.493745502869 0 +64 16750 25.793585502869 1 +64 16751 25.793585502869 2 +64 16757 25.793745502869 1 +64 16758 25.793745502869 0 +64 16991 26.093585502869 1 +64 16992 26.093585502869 2 +64 16998 26.093745502869 1 +64 16999 26.093745502869 0 +64 17232 26.393585502869 1 +64 17233 26.393585502869 2 +64 17239 26.393745502869 1 +64 17240 26.393745502869 0 +64 17473 26.693585502869 1 +64 17474 26.693585502869 2 +64 17480 26.693745502869 1 +64 17481 26.693745502869 0 +64 17714 26.993585502869 1 +64 17715 26.993585502869 2 +64 17721 26.993745502869 1 +64 17722 26.993745502869 0 +64 17947 27.293585502869 1 +64 17948 27.293585502869 2 +64 17954 27.293745502869 1 +64 17955 27.293745502869 0 +64 18180 27.593585502869 1 +64 18181 27.593585502869 2 +64 18187 27.593745502869 1 +64 18188 27.593745502869 0 +64 18413 27.893585502869 1 +64 18414 27.893585502869 2 +64 18420 27.893745502869 1 +64 18421 27.893745502869 0 +64 18646 28.193585502869 1 +64 18647 28.193585502869 2 +64 18653 28.193745502869 1 +64 18654 28.193745502869 0 +64 18879 28.493585502869 1 +64 18880 28.493585502869 2 +64 18886 28.493745502869 1 +64 18887 28.493745502869 0 +64 19112 28.793585502869 1 +64 19113 28.793585502869 2 +64 19119 28.793745502869 1 +64 19120 28.793745502869 0 +64 19337 29.093585502869 1 +64 19338 29.093585502869 2 +64 19344 29.093745502869 1 +64 19345 29.093745502869 0 +64 19562 29.393585502869 1 +64 19563 29.393585502869 2 +64 19569 29.393745502869 1 +64 19570 29.393745502869 0 +64 19787 29.693585502869 1 +64 19788 29.693585502869 2 +64 19794 29.693745502869 1 +64 19795 29.693745502869 0 +64 20012 29.993585502869 1 +64 20013 29.993585502869 2 +64 20019 29.993745502869 1 +64 20020 29.993745502869 0 +64 20237 30.293585502869 1 +64 20238 30.293585502869 2 +64 20244 30.293745502869 1 +64 20245 30.293745502869 0 +64 20462 30.593585502869 1 +64 20463 30.593585502869 2 +64 20469 30.593745502869 1 +64 20470 30.593745502869 0 +64 20687 30.893585502869 1 +64 20688 30.893585502869 2 +64 20694 30.893745502869 1 +64 20695 30.893745502869 0 +64 20916 31.193585502869 1 +64 20917 31.193585502869 2 +64 20923 31.193745502869 1 +64 20924 31.193745502869 0 +64 21149 31.493585502869 1 +64 21150 31.493585502869 2 +64 21156 31.493745502869 1 +64 21157 31.493745502869 0 +64 21382 31.793585502869 1 +64 21383 31.793585502869 2 +64 21389 31.793745502869 1 +64 21390 31.793745502869 0 +64 21615 32.093585502869 1 +64 21616 32.093585502869 2 +64 21622 32.093745502869 1 +64 21623 32.093745502869 0 +64 21848 32.393585502869 1 +64 21849 32.393585502869 2 +64 21855 32.393745502869 1 +64 21856 32.393745502869 0 +64 22081 32.693585502869 1 +64 22082 32.693585502869 2 +64 22088 32.693745502869 1 +64 22089 32.693745502869 0 +64 22314 32.993585502869 1 +64 22315 32.993585502869 2 +64 22321 32.993745502869 1 +64 22322 32.993745502869 0 +64 22547 33.293585502869 1 +64 22548 33.293585502869 2 +64 22554 33.293745502869 1 +64 22555 33.293745502869 0 +64 22780 33.593585502869 1 +64 22781 33.593585502869 2 +64 22787 33.593745502869 1 +64 22788 33.593745502869 0 +64 23009 33.893585502869 1 +64 23010 33.893585502869 2 +64 23016 33.893745502869 1 +64 23017 33.893745502869 0 +54 778 5.1 1 +54 793 5.143993485014 3 +54 799 5.144153485014 1 +54 927 5.443993485053 3 +54 933 5.444153485053 1 +54 1053 5.693585502869 0 +54 1060 5.693745502869 1 +54 1085 5.743993485104 3 +54 1091 5.744153485104 1 +54 1211 5.993585502869 0 +54 1218 5.993745502869 1 +54 1243 6.043993485165 3 +54 1249 6.044153485165 1 +54 1389 6.293585502869 0 +54 1397 6.293745502869 1 +54 1424 6.343993485238 3 +54 1431 6.344153485238 1 +54 1606 6.593585502869 0 +54 1614 6.593745502869 1 +54 1641 6.643993485325 3 +54 1648 6.644153485325 1 +54 1823 6.893585502869 0 +54 1831 6.893745502869 1 +54 1858 6.943993485423 3 +54 1865 6.944153485423 1 +54 2040 7.193585502869 0 +54 2048 7.193745502869 1 +54 2075 7.243993485541 3 +54 2082 7.244153485541 1 +54 2257 7.493585502869 0 +54 2265 7.493745502869 1 +54 2292 7.543993485675 3 +54 2299 7.544153485675 1 +54 2474 7.793585502869 0 +54 2482 7.793745502869 1 +54 2509 7.843993485822 3 +54 2516 7.844153485822 1 +54 2691 8.093585502869 0 +54 2699 8.093745502869 1 +54 2726 8.143993485992 3 +54 2733 8.144153485992 1 +54 2912 8.393585502869 0 +54 2920 8.393745502869 1 +54 2947 8.443993486181 3 +54 2954 8.444153486181 1 +54 3137 8.693585502869 0 +54 3145 8.693745502869 1 +54 3172 8.743993486377 3 +54 3179 8.744153486377 1 +54 3362 8.993585502869 0 +54 3370 8.993745502869 1 +54 3397 9.043993486579 3 +54 3404 9.044153486579 1 +54 3587 9.293585502869 0 +54 3595 9.293745502869 1 +54 3622 9.343993486798 3 +54 3629 9.344153486798 1 +54 3812 9.593585502869 0 +54 3820 9.593745502869 1 +54 3847 9.64399348701 3 +54 3854 9.64415348701 1 +54 4037 9.893585502869 0 +54 4045 9.893745502869 1 +54 4072 9.943993487239 3 +54 4079 9.944153487239 1 +54 4262 10.193585502869 0 +54 4270 10.193745502869 1 +54 4297 10.243993487473 3 +54 4304 10.244153487473 1 +54 4487 10.493585502869 0 +54 4495 10.493745502869 1 +54 4522 10.543993487715 3 +54 4529 10.544153487715 1 +54 4720 10.793585502869 0 +54 4728 10.793745502869 1 +54 4755 10.84399348791 3 +54 4762 10.84415348791 1 +54 4953 11.093585502869 0 +54 4961 11.093745502869 1 +54 4988 11.143993487716 3 +54 4995 11.144153487716 1 +54 5119 11.331276921478 2 +54 5142 11.331436921478 1 +54 5186 11.393585502869 0 +54 5194 11.393745502869 1 +54 5221 11.443993487147 3 +54 5228 11.444153487147 1 +54 5352 11.631276919727 3 +54 5375 11.631436919727 1 +54 5423 11.693585502869 0 +54 5431 11.693745502869 1 +54 5462 11.743993486335 3 +54 5469 11.744153486335 1 +54 5593 11.931276918081 3 +54 5616 11.931436918081 1 +54 5664 11.993585502869 0 +54 5672 11.993745502869 1 +54 5703 12.043993485511 3 +54 5710 12.044153485511 1 +54 5834 12.231276916562 3 +54 5857 12.231436916562 1 +54 5905 12.293585502869 0 +54 5913 12.293745502869 1 +54 5944 12.343993485033 3 +54 5951 12.344153485033 1 +54 6075 12.531276915229 3 +54 6098 12.531436915229 1 +54 6146 12.593585502869 0 +54 6154 12.593745502869 1 +54 6185 12.643993485073 3 +54 6192 12.644153485073 1 +54 6316 12.831276914169 3 +54 6339 12.831436914169 1 +54 6387 12.893585502869 0 +54 6395 12.893745502869 1 +54 6426 12.943993485645 3 +54 6433 12.944153485645 1 +54 6557 13.131276913397 3 +54 6580 13.131436913397 1 +54 6628 13.193585502869 0 +54 6636 13.193745502869 1 +54 6667 13.243993486741 3 +54 6674 13.244153486741 1 +54 6798 13.431276912882 3 +54 6821 13.431436912882 1 +54 6869 13.493585502869 0 +54 6877 13.493745502869 1 +54 6908 13.543993488359 3 +54 6915 13.544153488359 1 +54 7039 13.731276912645 3 +54 7062 13.731436912645 1 +54 7110 13.793585502869 0 +54 7118 13.793745502869 1 +54 7149 13.843993490496 3 +54 7156 13.844153490496 1 +54 7280 14.03127691268 3 +54 7303 14.03143691268 1 +54 7351 14.093585502869 0 +54 7359 14.093745502869 1 +54 7390 14.143993493127 3 +54 7397 14.144153493127 1 +54 7521 14.33127691298 3 +54 7544 14.33143691298 1 +54 7592 14.393585502869 0 +54 7600 14.393745502869 1 +54 7631 14.44399349625 3 +54 7638 14.44415349625 1 +54 7762 14.631276913256 3 +54 7785 14.631436913256 1 +54 7833 14.693585502869 0 +54 7841 14.693745502869 1 +54 7872 14.743993498886 3 +54 7879 14.744153498886 1 +54 8003 14.931276907357 3 +54 8026 14.931436907357 1 +54 8074 14.993585502869 0 +54 8082 14.993745502869 1 +54 8113 15.043993491181 3 +54 8120 15.044153491181 1 +54 8244 15.231276894496 3 +54 8267 15.231436894496 1 +54 8315 15.293585502869 0 +54 8323 15.293745502869 1 +54 8354 15.343993477658 3 +54 8361 15.344153477658 1 +54 8484 15.531276881214 3 +54 8503 15.531436881214 1 +54 8556 15.593585502869 0 +54 8564 15.593745502869 1 +54 8595 15.643993463876 3 +54 8602 15.644153463876 1 +54 8725 15.831276867891 3 +54 8744 15.831436867891 1 +54 8797 15.893585502869 0 +54 8805 15.893745502869 1 +54 8836 15.943993450177 3 +54 8843 15.944153450177 1 +54 8892 16.114557547424 3 +54 8915 16.114717547424 1 +54 8970 16.131276854594 3 +54 8989 16.131436854594 1 +54 9042 16.193585502869 0 +54 9050 16.193745502869 1 +54 9085 16.24399343676 3 +54 9092 16.24415343676 1 +54 9141 16.414557520222 3 +54 9164 16.414717520222 1 +54 9219 16.431276843065 3 +54 9238 16.431436843065 1 +54 9291 16.493585502869 0 +54 9299 16.493745502869 1 +54 9334 16.543993425628 3 +54 9341 16.544153425628 1 +54 9389 16.714557495718 3 +54 9408 16.714717495718 1 +54 9468 16.731276834223 3 +54 9487 16.731436834223 1 +54 9540 16.793585502869 0 +54 9548 16.793745502869 1 +54 9583 16.843993417024 3 +54 9590 16.844153417024 1 +54 9638 17.01455747394 3 +54 9657 17.01471747394 1 +54 9717 17.031276828087 3 +54 9736 17.031436828087 1 +54 9789 17.093585502869 0 +54 9797 17.093745502869 1 +54 9832 17.143993410931 3 +54 9839 17.144153410931 1 +54 9887 17.314557454832 3 +54 9906 17.314717454832 1 +54 9966 17.33127682466 3 +54 9985 17.33143682466 1 +54 10038 17.393585502869 0 +54 10046 17.393745502869 1 +54 10081 17.443993407323 3 +54 10088 17.444153407323 1 +54 10136 17.614557438392 3 +54 10155 17.614717438392 1 +54 10215 17.631276823875 3 +54 10234 17.631436823875 1 +54 10287 17.693585502869 0 +54 10295 17.693745502869 1 +54 10330 17.743993405804 3 +54 10337 17.744153405804 1 +54 10385 17.914557422749 3 +54 10404 17.914717422749 1 +54 10460 17.931276823866 3 +54 10479 17.931436823866 1 +54 10528 17.993585502869 0 +54 10536 17.993745502869 1 +54 10571 18.043993404519 3 +54 10578 18.044153404519 1 +54 10626 18.214557407098 3 +54 10645 18.214717407098 1 +54 10697 18.231276823854 3 +54 10716 18.231436823854 1 +54 10765 18.293585502869 0 +54 10773 18.293745502869 1 +54 10808 18.34399340323 3 +54 10815 18.34415340323 1 +54 10859 18.514557392147 3 +54 10878 18.514717392147 1 +54 10930 18.531276823849 3 +54 10949 18.531436823849 1 +54 10998 18.593585502869 0 +54 11006 18.593745502869 1 +54 11041 18.643993401947 3 +54 11048 18.644153401947 1 +54 11092 18.814557385083 3 +54 11111 18.814717385083 1 +54 11163 18.831276823842 3 +54 11182 18.831436823842 1 +54 11231 18.893585502869 0 +54 11239 18.893745502869 1 +54 11274 18.943993400662 3 +54 11281 18.944153400662 1 +54 11325 19.11455738453 3 +54 11344 19.11471738453 1 +54 11396 19.13127682383 3 +54 11415 19.13143682383 1 +54 11464 19.193585502869 0 +54 11472 19.193745502869 1 +54 11507 19.243993399372 3 +54 11514 19.244153399372 1 +54 11558 19.414557384789 3 +54 11577 19.414717384789 1 +54 11629 19.431276823834 3 +54 11648 19.431436823834 1 +54 11697 19.493585502869 0 +54 11705 19.493745502869 1 +54 11740 19.543993397973 3 +54 11747 19.544153397973 1 +54 11791 19.71455738494 3 +54 11810 19.71471738494 1 +54 11862 19.731276823812 3 +54 11881 19.731436823812 1 +54 11930 19.793585502869 0 +54 11938 19.793745502869 1 +54 11973 19.843993395755 3 +54 11980 19.844153395755 1 +54 12024 20.014557384776 3 +54 12043 20.014717384776 1 +54 12099 20.031276823824 3 +54 12118 20.031436823824 1 +54 12171 20.093585502869 0 +54 12179 20.093745502869 1 +54 12214 20.143993392654 3 +54 12221 20.144153392654 1 +54 12265 20.314557384384 3 +54 12284 20.314717384384 1 +54 12340 20.331276823783 3 +54 12359 20.331436823783 1 +54 12412 20.393585502869 0 +54 12420 20.393745502869 1 +54 12455 20.443993388797 3 +54 12462 20.444153388797 1 +54 12506 20.614557383808 3 +54 12525 20.614717383808 1 +54 12581 20.631276823785 3 +54 12600 20.631436823785 1 +54 12653 20.693585502869 0 +54 12661 20.693745502869 1 +54 12696 20.743993384171 3 +54 12703 20.744153384171 1 +54 12747 20.914557383117 3 +54 12766 20.914717383117 1 +54 12822 20.931276823825 3 +54 12841 20.931436823825 1 +54 12894 20.993585502869 0 +54 12902 20.993745502869 1 +54 12937 21.043993378911 3 +54 12944 21.044153378911 1 +54 12988 21.214557382339 3 +54 13007 21.214717382339 1 +54 13063 21.231276823913 3 +54 13082 21.231436823913 1 +54 13135 21.293585502869 0 +54 13143 21.293745502869 1 +54 13178 21.343993372963 3 +54 13185 21.344153372963 1 +54 13229 21.514557381349 3 +54 13248 21.514717381349 1 +54 13304 21.531276823952 3 +54 13323 21.531436823952 1 +54 13376 21.593585502869 0 +54 13384 21.593745502869 1 +54 13419 21.643993366253 3 +54 13426 21.644153366253 1 +54 13470 21.81455738019 3 +54 13489 21.81471738019 1 +54 13545 21.831276823995 3 +54 13564 21.831436823995 1 +54 13617 21.893585502869 0 +54 13625 21.893745502869 1 +54 13660 21.943993358856 3 +54 13667 21.944153358856 1 +54 13711 22.114557378874 3 +54 13730 22.114717378874 1 +54 13786 22.131276824039 3 +54 13805 22.131436824039 1 +54 13858 22.193585502869 0 +54 13866 22.193745502869 1 +54 13901 22.243993350791 3 +54 13908 22.244153350791 1 +54 13952 22.414557377522 3 +54 13971 22.414717377522 1 +54 14027 22.431276824127 3 +54 14046 22.431436824127 1 +54 14099 22.493585502869 0 +54 14107 22.493745502869 1 +54 14142 22.543993342123 3 +54 14149 22.544153342123 1 +54 14193 22.714557376066 3 +54 14212 22.714717376066 1 +54 14268 22.73127682417 3 +54 14287 22.73143682417 1 +54 14340 22.793585502869 0 +54 14348 22.793745502869 1 +54 14383 22.843993333052 3 +54 14390 22.844153333052 1 +54 14434 23.01455737451 3 +54 14453 23.01471737451 1 +54 14509 23.031276824169 3 +54 14528 23.031436824169 1 +54 14581 23.093585502869 0 +54 14589 23.093745502869 1 +54 14624 23.14399332347 3 +54 14631 23.14415332347 1 +54 14675 23.314557372866 3 +54 14694 23.314717372866 1 +54 14750 23.331276824195 3 +54 14769 23.331436824195 1 +54 14822 23.393585502869 0 +54 14830 23.393745502869 1 +54 14865 23.443993313527 3 +54 14872 23.444153313527 1 +54 14916 23.614557371257 3 +54 14935 23.614717371257 1 +54 14991 23.631276824238 3 +54 15010 23.631436824238 1 +54 15063 23.693585502869 0 +54 15071 23.693745502869 1 +54 15106 23.743993309221 3 +54 15113 23.744153309221 1 +54 15156 23.914557369634 3 +54 15171 23.914717369634 1 +54 15232 23.931276824212 3 +54 15251 23.931436824212 1 +54 15304 23.993585502869 0 +54 15312 23.993745502869 1 +54 15347 24.043993304961 3 +54 15354 24.044153304961 1 +54 15397 24.214557367961 3 +54 15412 24.214717367961 1 +54 15473 24.231276824049 3 +54 15492 24.231436824049 1 +54 15545 24.293585502869 0 +54 15553 24.293745502869 1 +54 15588 24.343993296734 3 +54 15595 24.344153296734 1 +54 15638 24.514557366429 3 +54 15653 24.514717366429 1 +54 15714 24.531276823944 3 +54 15733 24.531436823944 1 +54 15786 24.593585502869 0 +54 15794 24.593745502869 1 +54 15829 24.643993289194 3 +54 15836 24.644153289194 1 +54 15879 24.814557365061 3 +54 15894 24.814717365061 1 +54 15955 24.831276823957 3 +54 15974 24.831436823957 1 +54 16027 24.893585502869 0 +54 16035 24.893745502869 1 +54 16070 24.943993282619 3 +54 16077 24.944153282619 1 +54 16120 25.114557363825 3 +54 16135 25.114717363825 1 +54 16196 25.131276823934 3 +54 16215 25.131436823934 1 +54 16268 25.193585502869 0 +54 16276 25.193745502869 1 +54 16311 25.243993277481 3 +54 16318 25.244153277481 1 +54 16361 25.414557362755 3 +54 16376 25.414717362755 1 +54 16437 25.431276823911 3 +54 16456 25.431436823911 1 +54 16509 25.493585502869 0 +54 16517 25.493745502869 1 +54 16552 25.54399327434 3 +54 16559 25.54415327434 1 +54 16602 25.71455736198 3 +54 16617 25.71471736198 1 +54 16678 25.731276823855 3 +54 16697 25.731436823855 1 +54 16750 25.793585502869 0 +54 16758 25.793745502869 1 +54 16793 25.843993273696 3 +54 16800 25.844153273696 1 +54 16843 26.014557361437 3 +54 16858 26.014717361437 1 +54 16919 26.031276822435 3 +54 16938 26.031436822435 1 +54 16991 26.093585502869 0 +54 16999 26.093745502869 1 +54 17034 26.143993275957 3 +54 17041 26.144153275957 1 +54 17084 26.314557361533 3 +54 17099 26.314717361533 1 +54 17160 26.331276819514 3 +54 17179 26.331436819514 1 +54 17232 26.393585502869 0 +54 17240 26.393745502869 1 +54 17275 26.443993281636 3 +54 17282 26.444153281636 1 +54 17325 26.614557362396 3 +54 17340 26.614717362396 1 +54 17401 26.631276815275 3 +54 17420 26.631436815275 1 +54 17473 26.693585502869 0 +54 17481 26.693745502869 1 +54 17516 26.743993290495 3 +54 17523 26.744153290495 1 +54 17566 26.914557364009 3 +54 17581 26.914717364009 1 +54 17642 26.931276809646 3 +54 17661 26.931436809646 1 +54 17714 26.993585502869 0 +54 17722 26.993745502869 1 +54 17757 27.043993302033 3 +54 17764 27.044153302033 1 +54 17807 27.214557366345 3 +54 17822 27.214717366345 1 +54 17874 27.231276802678 3 +54 17889 27.231436802678 1 +54 17947 27.293585502869 0 +54 17955 27.293745502869 1 +54 17990 27.34399331576 3 +54 17997 27.34415331576 1 +54 18040 27.514557369437 3 +54 18055 27.514717369437 1 +54 18107 27.531276795041 3 +54 18122 27.531436795041 1 +54 18180 27.593585502869 0 +54 18188 27.593745502869 1 +54 18223 27.643993330828 3 +54 18230 27.644153330828 1 +54 18273 27.814557373228 3 +54 18288 27.814717373228 1 +54 18340 27.83127678721 3 +54 18355 27.83143678721 1 +54 18413 27.893585502869 0 +54 18421 27.893745502869 1 +54 18456 27.943993346916 3 +54 18463 27.944153346916 1 +54 18506 28.11455737771 3 +54 18521 28.11471737771 1 +54 18573 28.131276770655 3 +54 18588 28.131436770655 1 +54 18646 28.193585502869 0 +54 18654 28.193745502869 1 +54 18689 28.243993363816 3 +54 18696 28.244153363816 1 +54 18739 28.41455738295 3 +54 18754 28.41471738295 1 +54 18806 28.431276747906 3 +54 18821 28.431436747906 1 +54 18879 28.493585502869 0 +54 18887 28.493745502869 1 +54 18922 28.543993381372 3 +54 18929 28.544153381372 1 +54 18972 28.714557388816 3 +54 18987 28.714717388816 1 +54 19038 28.731276724087 3 +54 19049 28.731436724087 1 +54 19112 28.793585502869 0 +54 19120 28.793745502869 1 +54 19155 28.843993399418 3 +54 19162 28.844153399418 1 +54 19205 29.014557395373 3 +54 19220 29.014717395373 1 +54 19271 29.031276699665 3 +54 19282 29.031436699665 1 +54 19337 29.093585502869 0 +54 19345 29.093745502869 1 +54 19380 29.143993417837 3 +54 19387 29.144153417837 1 +54 19429 29.314557402593 3 +54 19440 29.314717402593 1 +54 19496 29.331276674765 3 +54 19507 29.331436674765 1 +54 19562 29.393585502869 0 +54 19570 29.393745502869 1 +54 19605 29.443993436569 3 +54 19612 29.444153436569 1 +54 19654 29.61455741041 3 +54 19665 29.61471741041 1 +54 19721 29.631276649424 3 +54 19732 29.631436649424 1 +54 19787 29.693585502869 0 +54 19795 29.693745502869 1 +54 19830 29.743993455545 3 +54 19837 29.744153455545 1 +54 19879 29.914557418813 3 +54 19890 29.914717418813 1 +54 19946 29.93127662341 3 +54 19957 29.93143662341 1 +54 20012 29.993585502869 0 +54 20020 29.993745502869 1 +54 20055 30.043993474721 3 +54 20062 30.044153474721 1 +54 20104 30.214557427759 3 +54 20115 30.214717427759 1 +54 20171 30.231276596705 3 +54 20182 30.231436596705 1 +54 20237 30.293585502869 0 +54 20245 30.293745502869 1 +54 20280 30.343993494113 3 +54 20287 30.344153494113 1 +54 20330 30.514557437221 3 +54 20345 30.514717437221 1 +54 20396 30.531276569374 3 +54 20407 30.531436569374 1 +54 20462 30.593585502869 0 +54 20470 30.593745502869 1 +54 20505 30.643993513628 3 +54 20512 30.644153513628 1 +54 20556 30.814557447201 3 +54 20575 30.814717447201 1 +54 20620 30.831276541474 3 +54 20627 30.831436541474 1 +54 20687 30.893585502869 0 +54 20695 30.893745502869 1 +54 20730 30.943993533271 3 +54 20737 30.944153533271 1 +54 20781 31.114557457713 3 +54 20800 31.114717457713 1 +54 20817 31.124399322913 3 +54 20832 31.124559322913 1 +54 20849 31.131276513237 3 +54 20856 31.131436513237 1 +54 20916 31.193585502869 0 +54 20924 31.193745502869 1 +54 20963 31.243993553001 3 +54 20970 31.244153553001 1 +54 21014 31.414557468667 3 +54 21033 31.414717468667 1 +54 21050 31.424399297163 3 +54 21065 31.424559297163 1 +54 21082 31.431276484978 3 +54 21089 31.431436484978 1 +54 21149 31.493585502869 0 +54 21157 31.493745502869 1 +54 21196 31.543993572835 3 +54 21203 31.544153572835 1 +54 21247 31.7145574801 3 +54 21266 31.7147174801 1 +54 21283 31.724399271431 3 +54 21298 31.724559271431 1 +54 21315 31.731276456746 3 +54 21322 31.731436456746 1 +54 21382 31.793585502869 0 +54 21390 31.793745502869 1 +54 21430 31.843993592699 3 +54 21441 31.844153592699 1 +54 21480 32.014557491924 3 +54 21499 32.014717491924 1 +54 21515 32.024399245722 3 +54 21526 32.024559245722 1 +54 21548 32.031276428528 3 +54 21555 32.031436428528 1 +54 21615 32.093585502869 0 +54 21623 32.093745502869 1 +54 21663 32.143993612639 3 +54 21674 32.144153612639 1 +54 21713 32.31455750416 3 +54 21732 32.31471750416 1 +54 21748 32.324399219895 3 +54 21759 32.324559219895 1 +54 21781 32.331276400291 3 +54 21788 32.331436400291 1 +54 21848 32.393585502869 0 +54 21856 32.393745502869 1 +54 21896 32.443993632704 3 +54 21907 32.444153632704 1 +54 21946 32.61455751675 3 +54 21965 32.61471751675 1 +54 21981 32.624399194111 3 +54 21992 32.624559194111 1 +54 22014 32.631276372037 3 +54 22021 32.631436372037 1 +54 22081 32.693585502869 0 +54 22089 32.693745502869 1 +54 22129 32.743993652819 3 +54 22140 32.744153652819 1 +54 22179 32.914557529741 3 +54 22198 32.914717529741 1 +54 22214 32.924399168331 3 +54 22225 32.924559168331 1 +54 22247 32.9312763438 3 +54 22254 32.9314363438 1 +54 22314 32.993585502869 0 +54 22322 32.993745502869 1 +54 22362 33.043993672958 3 +54 22373 33.044153672958 1 +54 22412 33.214557543026 3 +54 22431 33.214717543026 1 +54 22447 33.224399142569 3 +54 22458 33.224559142569 1 +54 22480 33.231276315598 3 +54 22487 33.231436315598 1 +54 22547 33.293585502869 0 +54 22555 33.293745502869 1 +54 22595 33.343993693134 3 +54 22606 33.344153693134 1 +54 22645 33.514557556648 3 +54 22664 33.514717556648 1 +54 22680 33.524399116789 3 +54 22691 33.524559116789 1 +54 22713 33.531276287401 3 +54 22720 33.531436287401 1 +54 22780 33.593585502869 0 +54 22788 33.593745502869 1 +54 22828 33.643993713368 3 +54 22839 33.644153713368 1 +54 22909 33.824399091063 3 +54 22920 33.824559091063 1 +54 22942 33.831276259307 3 +54 22949 33.831436259307 1 +54 23009 33.893585502869 0 +54 23017 33.893745502869 1 +52 778 5.1 0 +52 778 5.1 2 +52 1053 5.693585502869 3 +52 1060 5.693745502869 2 +52 1211 5.993585502869 3 +52 1218 5.993745502869 2 +52 1389 6.293585502869 3 +52 1397 6.293745502869 2 +52 1606 6.593585502869 3 +52 1614 6.593745502869 2 +52 1823 6.893585502869 3 +52 1831 6.893745502869 2 +52 2040 7.193585502869 3 +52 2048 7.193745502869 2 +52 2257 7.493585502869 3 +52 2265 7.493745502869 2 +52 2474 7.793585502869 3 +52 2482 7.793745502869 2 +52 2691 8.093585502869 3 +52 2699 8.093745502869 2 +52 2912 8.393585502869 3 +52 2920 8.393745502869 2 +52 3137 8.693585502869 3 +52 3145 8.693745502869 2 +52 3362 8.993585502869 3 +52 3370 8.993745502869 2 +52 3587 9.293585502869 3 +52 3595 9.293745502869 2 +52 3812 9.593585502869 3 +52 3820 9.593745502869 2 +52 4037 9.893585502869 3 +52 4045 9.893745502869 2 +52 4262 10.193585502869 3 +52 4270 10.193745502869 2 +52 4487 10.493585502869 3 +52 4495 10.493745502869 2 +52 4720 10.793585502869 3 +52 4728 10.793745502869 2 +52 4953 11.093585502869 3 +52 4961 11.093745502869 2 +52 5186 11.393585502869 3 +52 5194 11.393745502869 2 +52 5423 11.693585502869 3 +52 5431 11.693745502869 2 +52 5664 11.993585502869 3 +52 5672 11.993745502869 2 +52 5905 12.293585502869 3 +52 5913 12.293745502869 2 +52 6146 12.593585502869 3 +52 6154 12.593745502869 2 +52 6387 12.893585502869 3 +52 6395 12.893745502869 2 +52 6628 13.193585502869 3 +52 6636 13.193745502869 2 +52 6869 13.493585502869 3 +52 6877 13.493745502869 2 +52 7110 13.793585502869 3 +52 7118 13.793745502869 2 +52 7351 14.093585502869 3 +52 7359 14.093745502869 2 +52 7592 14.393585502869 3 +52 7600 14.393745502869 2 +52 7833 14.693585502869 3 +52 7841 14.693745502869 2 +52 8074 14.993585502869 3 +52 8082 14.993745502869 2 +52 8315 15.293585502869 3 +52 8323 15.293745502869 2 +52 8556 15.593585502869 3 +52 8564 15.593745502869 2 +52 8797 15.893585502869 3 +52 8805 15.893745502869 2 +52 9042 16.193585502869 3 +52 9050 16.193745502869 2 +52 9291 16.493585502869 3 +52 9299 16.493745502869 2 +52 9540 16.793585502869 3 +52 9548 16.793745502869 2 +52 9789 17.093585502869 3 +52 9797 17.093745502869 2 +52 10038 17.393585502869 3 +52 10046 17.393745502869 2 +52 10287 17.693585502869 3 +52 10295 17.693745502869 2 +52 10528 17.993585502869 3 +52 10536 17.993745502869 2 +52 10765 18.293585502869 3 +52 10773 18.293745502869 2 +52 10998 18.593585502869 3 +52 11006 18.593745502869 2 +52 11231 18.893585502869 3 +52 11239 18.893745502869 2 +52 11464 19.193585502869 3 +52 11472 19.193745502869 2 +52 11697 19.493585502869 3 +52 11705 19.493745502869 2 +52 11930 19.793585502869 3 +52 11938 19.793745502869 2 +52 12171 20.093585502869 3 +52 12179 20.093745502869 2 +52 12412 20.393585502869 3 +52 12420 20.393745502869 2 +52 12653 20.693585502869 3 +52 12661 20.693745502869 2 +52 12894 20.993585502869 3 +52 12902 20.993745502869 2 +52 13135 21.293585502869 3 +52 13143 21.293745502869 2 +52 13376 21.593585502869 3 +52 13384 21.593745502869 2 +52 13617 21.893585502869 3 +52 13625 21.893745502869 2 +52 13858 22.193585502869 3 +52 13866 22.193745502869 2 +52 14099 22.493585502869 3 +52 14107 22.493745502869 2 +52 14340 22.793585502869 3 +52 14348 22.793745502869 2 +52 14581 23.093585502869 3 +52 14589 23.093745502869 2 +52 14822 23.393585502869 3 +52 14830 23.393745502869 2 +52 15063 23.693585502869 3 +52 15071 23.693745502869 2 +52 15304 23.993585502869 3 +52 15312 23.993745502869 2 +52 15545 24.293585502869 3 +52 15553 24.293745502869 2 +52 15786 24.593585502869 3 +52 15794 24.593745502869 2 +52 16027 24.893585502869 3 +52 16035 24.893745502869 2 +52 16268 25.193585502869 3 +52 16276 25.193745502869 2 +52 16509 25.493585502869 3 +52 16517 25.493745502869 2 +52 16750 25.793585502869 3 +52 16758 25.793745502869 2 +52 16991 26.093585502869 3 +52 16999 26.093745502869 2 +52 17232 26.393585502869 3 +52 17240 26.393745502869 2 +52 17473 26.693585502869 3 +52 17481 26.693745502869 2 +52 17714 26.993585502869 3 +52 17722 26.993745502869 2 +52 17947 27.293585502869 3 +52 17955 27.293745502869 2 +52 18180 27.593585502869 3 +52 18188 27.593745502869 2 +52 18413 27.893585502869 3 +52 18421 27.893745502869 2 +52 18646 28.193585502869 3 +52 18654 28.193745502869 2 +52 18879 28.493585502869 3 +52 18887 28.493745502869 2 +52 19112 28.793585502869 3 +52 19120 28.793745502869 2 +52 19337 29.093585502869 3 +52 19345 29.093745502869 2 +52 19562 29.393585502869 3 +52 19570 29.393745502869 2 +52 19787 29.693585502869 3 +52 19795 29.693745502869 2 +52 20012 29.993585502869 3 +52 20020 29.993745502869 2 +52 20237 30.293585502869 3 +52 20245 30.293745502869 2 +52 20462 30.593585502869 3 +52 20470 30.593745502869 2 +52 20687 30.893585502869 3 +52 20695 30.893745502869 2 +52 20916 31.193585502869 3 +52 20924 31.193745502869 2 +52 21149 31.493585502869 3 +52 21157 31.493745502869 2 +52 21382 31.793585502869 3 +52 21390 31.793745502869 2 +52 21615 32.093585502869 3 +52 21623 32.093745502869 2 +52 21848 32.393585502869 3 +52 21856 32.393745502869 2 +52 22081 32.693585502869 3 +52 22089 32.693745502869 2 +52 22314 32.993585502869 3 +52 22322 32.993745502869 2 +52 22547 33.293585502869 3 +52 22555 33.293745502869 2 +52 22780 33.593585502869 3 +52 22788 33.593745502869 2 +52 23009 33.893585502869 3 +52 23017 33.893745502869 2 +24 71 2.65754405803 82 +24 116 2.957544059145 82 +24 170 3.257544060325 82 +24 230 3.531436752816 82 +24 254 3.5575440616 82 +24 314 3.831436748492 82 +24 338 3.857544062957 82 +24 407 4.131436743562 82 +24 432 4.157544064405 82 +24 504 4.431436737964 82 +24 529 4.457544065992 82 +24 623 4.731436731904 82 +24 648 4.757544067713 82 +24 742 5.031436725247 82 +24 767 5.057544069567 82 +24 873 5.331436717912 82 +24 900 5.357544071635 82 +24 1007 5.631436710029 82 +24 1034 5.657544073906 82 +24 1165 5.931436701497 82 +24 1192 5.957544076426 82 +24 1337 6.231436692343 82 +24 1365 6.257544079226 82 +24 1509 6.524558778352 82 +24 1553 6.531436682665 82 +24 1582 6.557544082316 82 +24 1726 6.824558768033 82 +24 1770 6.831436672312 82 +24 1799 6.857544085755 82 +24 1943 7.124558757068 82 +24 1987 7.131436661329 82 +24 2016 7.157544089564 82 +24 2160 7.424558745664 82 +24 2204 7.431436649891 82 +24 2233 7.457544093735 82 +24 2377 7.724558733784 82 +24 2421 7.731436637989 82 +24 2450 7.757544098302 82 +24 2594 8.02455872132 82 +24 2633 8.031436625491 82 +24 2667 8.057544103323 82 +24 2811 8.324558708136 82 +24 2854 8.33143661228 82 +24 2888 8.357544108886 82 +24 3036 8.624558694405 82 +24 3079 8.631436598484 82 +24 3113 8.65754411496 82 +24 3261 8.924558680104 82 +24 3304 8.931436584082 82 +24 3338 8.957544121588 82 +24 3486 9.224558665264 82 +24 3529 9.231436569158 82 +24 3563 9.257544128789 82 +24 3711 9.524558649996 82 +24 3754 9.531436553733 82 +24 3788 9.557544136549 82 +24 3936 9.824558634568 82 +24 3979 9.831436538055 82 +24 4013 9.857544144771 82 +24 4161 10.124558619363 82 +24 4204 10.131436522386 82 +24 4238 10.157544153312 82 +24 4386 10.424558604844 82 +24 4429 10.431436506743 82 +24 4463 10.457544162122 82 +24 4545 10.544153907449 82 +24 4619 10.72455859379 82 +24 4662 10.731436491102 82 +24 4696 10.757544171218 82 +24 4773 10.84415389067 82 +24 4852 11.024558598014 82 +24 4890 11.031436475464 82 +24 4929 11.057544180599 82 +24 5006 11.144153874452 82 +24 5085 11.324558611475 82 +24 5123 11.331436459858 82 +24 5167 11.3575441902 82 +24 5239 11.444153858741 82 +24 5318 11.624558626396 82 +24 5356 11.631436444245 82 +24 5404 11.657544200055 82 +24 5480 11.744153843502 82 +24 5559 11.92455864171 82 +24 5597 11.931436428595 82 +24 5645 11.957544210159 82 +24 5721 12.044153828636 82 +24 5800 12.224558657188 82 +24 5838 12.231436412948 82 +24 5886 12.257544220477 82 +24 5962 12.344153813991 82 +24 6041 12.524558672694 82 +24 6079 12.531436397317 82 +24 6127 12.557544230993 82 +24 6203 12.644153799362 82 +24 6282 12.824558688243 82 +24 6320 12.831436381695 82 +24 6368 12.857544241685 82 +24 6444 12.944153784749 82 +24 6523 13.124558703844 82 +24 6561 13.131436366027 82 +24 6609 13.157544252586 82 +24 6685 13.244153770092 82 +24 6764 13.424558719435 82 +24 6802 13.431436350417 82 +24 6850 13.457544263637 82 +24 6926 13.544153755468 82 +24 7005 13.724558735043 82 +24 7043 13.731436334798 82 +24 7091 13.757544274837 82 +24 7167 13.844153740827 82 +24 7246 14.024558750707 82 +24 7284 14.031436319127 82 +24 7332 14.05754428623 82 +24 7408 14.14415372616 82 +24 7487 14.324558766341 82 +24 7525 14.331436303517 82 +24 7573 14.357544297742 82 +24 7649 14.444153711546 82 +24 7728 14.624558781946 82 +24 7766 14.631436287929 82 +24 7814 14.657544309371 82 +24 7890 14.744153696951 82 +24 7969 14.924558797557 82 +24 8007 14.931436272358 82 +24 8055 14.957544321127 82 +24 8131 15.044153682366 82 +24 8210 15.224558813176 82 +24 8248 15.231436256794 82 +24 8296 15.257544333003 82 +24 8372 15.344153667781 82 +24 8451 15.524558828841 82 +24 8489 15.531436241243 82 +24 8537 15.557544345028 82 +24 8613 15.644153653166 82 +24 8692 15.824558844455 82 +24 8730 15.831436225819 82 +24 8778 15.857544357121 82 +24 8854 15.944153638616 82 +24 8937 16.124558860085 82 +24 8975 16.131436210464 82 +24 9023 16.157544369327 82 +24 9062 16.193746240802 82 +24 9103 16.244153624037 82 +24 9186 16.424558875726 82 +24 9224 16.431436195381 82 +24 9272 16.457544381652 82 +24 9311 16.4937462136 82 +24 9352 16.54415360942 82 +24 9435 16.724558891381 82 +24 9473 16.731436181333 82 +24 9521 16.757544394067 82 +24 9560 16.793746189096 82 +24 9601 16.84415359486 82 +24 9689 17.02455890702 82 +24 9722 17.031436173692 82 +24 9770 17.057544406545 82 +24 9804 17.093746167318 82 +24 9845 17.144153580311 82 +24 9938 17.324558922703 82 +24 9971 17.331436182573 82 +24 10024 17.357544419138 82 +24 10053 17.39374614821 82 +24 10094 17.444153565736 82 +24 10187 17.624558938357 82 +24 10220 17.631436196794 82 +24 10273 17.657544431773 82 +24 10302 17.69374613177 82 +24 10343 17.744153551191 82 +24 10432 17.924558954 82 +24 10465 17.931436211881 82 +24 10543 17.993746116127 82 +24 10584 18.04415353668 82 +24 10673 18.224558969656 82 +24 10702 18.231436227234 82 +24 10780 18.293746100476 82 +24 10821 18.344153522105 82 +24 10906 18.524558984772 82 +24 10935 18.531436242598 82 +24 11013 18.593746085525 82 +24 11054 18.644153508193 82 +24 11139 18.824558992869 82 +24 11168 18.831436252819 82 +24 11246 18.893746078461 82 +24 11287 18.9441535017 82 +24 11372 19.124558995465 82 +24 11401 19.131436259429 82 +24 11479 19.193746077908 82 +24 11520 19.244153499144 82 +24 11605 19.424558998137 82 +24 11634 19.431436267371 82 +24 11712 19.493746078167 82 +24 11753 19.544153497268 82 +24 11838 19.724559001753 82 +24 11867 19.731436277055 82 +24 11945 19.793746078318 82 +24 11986 19.844153496076 82 +24 12075 20.024559006417 82 +24 12104 20.031436288225 82 +24 12157 20.057544440568 82 +24 12186 20.093746078154 82 +24 12227 20.144153495659 82 +24 12316 20.324559012107 82 +24 12345 20.331436300497 82 +24 12398 20.357544434459 82 +24 12427 20.393746077762 82 +24 12468 20.444153496115 82 +24 12557 20.624559018883 82 +24 12586 20.631436313658 82 +24 12639 20.657544428826 82 +24 12668 20.693746077186 82 +24 12709 20.744153497538 82 +24 12798 20.924559026768 82 +24 12827 20.931436327544 82 +24 12880 20.957544423566 82 +24 12909 20.993746076495 82 +24 12950 21.044153500002 82 +24 13039 21.224559035584 82 +24 13068 21.231436341939 82 +24 13121 21.257544418748 82 +24 13150 21.293746075717 82 +24 13191 21.344153503566 82 +24 13280 21.524559045258 82 +24 13309 21.531436356826 82 +24 13362 21.557544414308 82 +24 13391 21.593746074727 82 +24 13432 21.644153508321 82 +24 13521 21.82455905578 82 +24 13550 21.831436372147 82 +24 13603 21.85754441021 82 +24 13632 21.893746073568 82 +24 13673 21.944153514273 82 +24 13762 22.124559067102 82 +24 13791 22.131436387853 82 +24 13844 22.157544406427 82 +24 13873 22.193746072252 82 +24 13914 22.244153521464 82 +24 14003 22.424559079181 82 +24 14032 22.431436403914 82 +24 14085 22.457544402943 82 +24 14114 22.4937460709 82 +24 14155 22.544153529992 82 +24 14244 22.724559091991 82 +24 14273 22.731436420334 82 +24 14326 22.757544399779 82 +24 14355 22.793746069444 82 +24 14396 22.844153539394 82 +24 14490 23.02455910552 82 +24 14514 23.031436437066 82 +24 14567 23.057544396928 82 +24 14596 23.093746067888 82 +24 14637 23.144153549741 82 +24 14731 23.324559119693 82 +24 14755 23.331436454133 82 +24 14808 23.357544394378 82 +24 14837 23.393746066244 82 +24 14878 23.444153561136 82 +24 14972 23.624559134588 82 +24 14996 23.63143647154 82 +24 15049 23.6575443921 82 +24 15078 23.693746064635 82 +24 15119 23.744153567162 82 +24 15213 23.924559150101 82 +24 15242 23.931436489241 82 +24 15290 23.957544390086 82 +24 15319 23.993746063012 82 +24 15360 24.044153568182 82 +24 15454 24.224559166253 82 +24 15483 24.231436507166 82 +24 15526 24.257544388316 82 +24 15560 24.293746061339 82 +24 15601 24.344153571496 82 +24 15695 24.524559183101 82 +24 15724 24.531436525482 82 +24 15767 24.557544386729 82 +24 15801 24.593746059807 82 +24 15842 24.6441535745 82 +24 15936 24.824559200464 82 +24 15965 24.831436544164 82 +24 16008 24.857544385359 82 +24 16042 24.893746058439 82 +24 16083 24.944153577203 82 +24 16177 25.12455921797 82 +24 16206 25.131436563184 82 +24 16249 25.157544384197 82 +24 16283 25.193746057203 82 +24 16324 25.24415357959 82 +24 16418 25.424559235494 82 +24 16447 25.431436582461 82 +24 16490 25.457544383218 82 +24 16524 25.493746056133 82 +24 16565 25.544153581628 82 +24 16659 25.72455925309 82 +24 16688 25.731436602139 82 +24 16731 25.757544382378 82 +24 16765 25.793746055358 82 +24 16806 25.844153583304 82 +24 16900 26.02455927079 82 +24 16929 26.031436621424 82 +24 16972 26.057544381741 82 +24 17006 26.093746054815 82 +24 17047 26.144153584607 82 +24 17141 26.324559288461 82 +24 17170 26.331436639945 82 +24 17213 26.357544381246 82 +24 17247 26.393746054911 82 +24 17288 26.444153585474 82 +24 17382 26.624559306213 82 +24 17411 26.631436657697 82 +24 17454 26.657544380772 82 +24 17488 26.693746055774 82 +24 17529 26.744153585917 82 +24 17623 26.924559324013 82 +24 17652 26.931436674713 82 +24 17695 26.957544380173 82 +24 17729 26.993746057387 82 +24 17770 27.044153586021 82 +24 17885 27.231436690939 82 +24 17928 27.257544379228 82 +24 17962 27.293746059723 82 +24 18003 27.344153585835 82 +24 18118 27.531436706855 82 +24 18161 27.557544377938 82 +24 18195 27.593746062815 82 +24 18236 27.644153585638 82 +24 18351 27.831436720086 82 +24 18394 27.857544376349 82 +24 18428 27.893746066606 82 +24 18469 27.944153585413 82 +24 18584 28.13143672571 82 +24 18627 28.157544373989 82 +24 18661 28.193746071088 82 +24 18702 28.244153585227 82 +24 18817 28.431436732587 82 +24 18860 28.457544371101 82 +24 18894 28.493746076328 82 +24 18935 28.544153585019 82 +24 19055 28.731436740327 82 +24 19093 28.75754436664 82 +24 19132 28.793746082194 82 +24 19168 28.844153584814 82 +24 19288 29.031436748231 82 +24 19322 29.057544360134 82 +24 19357 29.093746088751 82 +24 19393 29.144153584619 82 +24 19513 29.331436756353 82 +24 19542 29.357544350663 82 +24 19582 29.393746095971 82 +24 19618 29.444153584404 82 +24 19738 29.631436764677 82 +24 19767 29.657544339017 82 +24 19807 29.693746103788 82 +24 19843 29.744153584219 82 +24 19963 29.931436773214 82 +24 19992 29.957544326873 82 +24 20032 29.993746112191 82 +24 20068 30.044153584023 82 +24 20188 30.231436781919 82 +24 20217 30.257544314288 82 +24 20257 30.293746121137 82 +24 20293 30.344153583815 82 +24 20413 30.531436790863 82 +24 20442 30.557544301358 82 +24 20482 30.593746130599 82 +24 20518 30.644153583594 82 +24 20643 30.831436800084 82 +24 20667 30.857544288203 82 +24 20707 30.893746140579 82 +24 20743 30.944153583376 82 +24 20872 31.131436809733 82 +24 20896 31.157544274763 82 +24 20936 31.193746151091 82 +24 20976 31.244153583185 82 +24 21105 31.43143681984 82 +24 21129 31.45754426113 82 +24 21169 31.493746162045 82 +24 21209 31.544153582999 82 +24 21338 31.73143683044 82 +24 21362 31.757544247459 82 +24 21402 31.793746173478 82 +24 21437 31.844153582814 82 +24 21571 32.031436841444 82 +24 21595 32.057544234163 82 +24 21640 32.093746185302 82 +24 21670 32.144153582627 82 +24 21804 32.331436852904 82 +24 21828 32.357544221209 82 +24 21873 32.393746197538 82 +24 21903 32.44415358243 82 +24 22037 32.631436864721 82 +24 22061 32.657544208687 82 +24 22106 32.693746210128 82 +24 22136 32.744153582216 82 +24 22270 32.931436876958 82 +24 22294 32.957544196619 82 +24 22339 32.993746223119 82 +24 22369 33.044153582014 82 +24 22503 33.231436889508 82 +24 22527 33.25754418501 82 +24 22572 33.293746236404 82 +24 22602 33.34415358181 82 +24 22736 33.531436902417 82 +24 22760 33.557544173944 82 +24 22805 33.593746250026 82 +24 22835 33.644153581593 82 +24 22965 33.831436915646 82 +24 22989 33.857544163418 82 +24 23058 33.944153581377 82 +24 23182 34.157544153508 82 +24 23216 34.244153581155 82 +24 23340 34.457544144204 82 +24 23374 34.544153580981 82 +24 23498 34.75754413555 82 +24 23532 34.844153580776 82 +24 23656 35.057544127604 82 +24 23690 35.144153580566 82 +24 23818 35.357544120761 82 +24 23856 35.444153580357 82 +24 23984 35.657544115863 82 +24 24022 35.744153580181 82 +24 24150 35.957544112909 82 +24 24188 36.044153579975 82 +24 24316 36.257544111896 82 +24 24354 36.344153579779 82 +24 24482 36.557544112695 82 +24 24520 36.64415357959 82 +24 24648 36.857544114665 82 +24 24686 36.944153579358 82 +24 24814 37.157544116577 82 +24 24852 37.244153577605 82 +24 24980 37.457544118525 82 +24 25018 37.544153572915 82 +24 25146 37.757544120668 82 +24 25184 37.844153571184 82 +24 25312 38.05754412309 82 +24 25350 38.144153570903 82 +24 25478 38.357544125785 82 +24 25516 38.444153571748 82 +24 25644 38.65754412876 82 +24 25682 38.74415357356 82 +24 25810 38.957544132048 82 +24 25848 39.044153576469 82 +24 25976 39.257544135646 82 +24 26014 39.34415358036 82 +24 26142 39.557544139563 82 +24 26180 39.644153585234 82 +24 26308 39.857544143904 82 +24 26346 39.944153591067 82 +24 26479 40.157544148943 82 +24 26517 40.244153597798 82 +24 26645 40.457544154717 82 +24 26683 40.544153605352 82 +24 26815 40.757544161295 82 +24 26853 40.844153613829 82 +24 26989 41.05754416852 82 +24 27027 41.144153623009 82 +24 27163 41.357544176462 82 +24 27201 41.444153632949 82 +24 27337 41.657544185007 82 +24 27375 41.744153643584 82 +24 27511 41.957544194196 82 +24 27549 42.044153655076 82 +24 27685 42.257544203962 82 +24 27723 42.344153667279 82 +24 27859 42.557544214263 82 +24 27897 42.644153680118 82 +24 28033 42.857544225113 82 +24 28071 42.944153693453 82 +24 28207 43.15754423643 82 +24 28245 43.244153707142 82 +24 28381 43.457544248185 82 +24 28419 43.54415372113 82 +24 28555 43.757544260094 82 +24 28593 43.844153734654 82 +24 28729 44.05754427113 82 +24 28767 44.144153746996 82 +24 28899 44.357544281313 82 +24 28937 44.444153758119 82 +24 29065 44.657544290579 82 +24 29103 44.744153767993 82 +24 29231 44.957544298829 82 +24 29269 45.04415377659 82 +24 29397 45.257544305981 82 +24 29435 45.344153783865 82 +24 29563 45.557544312206 82 +24 29601 45.644153790499 82 +24 29729 45.857544319049 82 +24 29767 45.944153797914 82 +24 29895 46.157544326651 82 +24 29938 46.244153806003 82 +24 30061 46.457544334527 82 +24 30104 46.544153813964 82 +24 30232 46.757544340536 82 +24 30270 46.844153818595 82 +24 30398 47.057544342941 82 +24 30436 47.144153819767 82 +24 30564 47.357544344047 82 +24 30602 47.444153820025 82 +24 30730 47.657544345882 82 +24 30768 47.744153820289 82 +24 30896 47.95754434856 82 +24 30934 48.044153820574 82 +24 31062 48.257544352185 82 +24 31100 48.344153819422 82 +24 31228 48.557544356842 82 +24 31266 48.644153818083 82 +24 31394 48.857544362664 82 +24 31432 48.944153815516 82 +24 31560 49.157544369644 82 +24 31598 49.244153812156 82 +24 31726 49.457544377764 82 +24 31764 49.544153808185 82 +24 31892 49.757544386996 82 +24 31930 49.844153803841 82 +24 32058 50.05754439718 82 +24 32096 50.144153799517 82 +24 32224 50.3575444083 82 +24 32262 50.444153795058 82 +24 32390 50.657544420305 82 +24 32428 50.744153790392 82 +24 32556 50.957544433105 82 +24 32594 51.044153785603 82 +24 32752 51.344153780685 82 +24 32918 51.644153775717 82 +24 33084 51.944153770578 82 +24 33250 52.244153765452 82 +24 33416 52.544153760435 82 +24 33582 52.844153755494 82 +24 33748 53.144153750731 82 +17 46 2.614556809491 82 +17 91 2.914556809491 82 +17 138 3.214556809491 82 +17 198 3.514556809491 82 +17 282 3.814556809491 82 +17 367 4.114556809491 82 +17 464 4.414556809491 82 +17 583 4.714556809491 82 +17 702 5.014556809491 82 +17 830 5.314556809491 82 +17 964 5.614556809491 82 +17 1122 5.914556809491 82 +17 1282 6.214556809491 82 +17 1465 6.514556809491 82 +17 1682 6.814556809491 82 +17 1899 7.114556809491 82 +17 2116 7.414556809491 82 +17 2333 7.714556809491 82 +17 2550 8.014556809491 82 +17 2767 8.314556809491 82 +17 2992 8.614556809491 82 +17 3217 8.914556809491 82 +17 3442 9.214556809491 82 +17 3667 9.514556809491 82 +17 3892 9.814556809491 82 +17 4117 10.114556809491 82 +17 4342 10.414556809491 82 +17 4571 10.714556809491 82 +17 4804 11.014556809491 82 +17 5037 11.314556809491 82 +17 5270 11.614556809491 82 +17 5511 11.914556809491 82 +17 5752 12.214556809491 82 +17 5993 12.514556809491 82 +17 6234 12.814556809491 82 +17 6475 13.114556809491 82 +17 6716 13.414556809491 82 +17 6957 13.714556809491 82 +17 7198 14.014556809491 82 +17 7439 14.314556809491 82 +17 7680 14.614556809491 82 +17 7921 14.914556809491 82 +17 8162 15.214556809491 82 +17 8403 15.514556809491 82 +17 8644 15.814556809491 82 +17 8885 16.114556809491 82 +17 9134 16.414556809491 82 +17 9383 16.714556809491 82 +17 9632 17.014556809491 82 +17 9881 17.314556809491 82 +17 10130 17.614556809491 82 +17 10379 17.914556809491 82 +17 10620 18.214556809491 82 +17 10853 18.514556809491 82 +17 11086 18.814556809491 82 +17 11319 19.114556809491 82 +17 11552 19.414556809491 82 +17 11785 19.714556809491 82 +17 12018 20.014556809491 82 +17 12259 20.314556809491 82 +17 12500 20.614556809491 82 +17 12741 20.914556809491 82 +17 12982 21.214556809491 82 +17 13223 21.514556809491 82 +17 13464 21.814556809491 82 +17 13705 22.114556809491 82 +17 13946 22.414556809491 82 +17 14187 22.714556809491 82 +17 14428 23.014556809491 82 +17 14669 23.314556809491 82 +17 14910 23.614556809491 82 +17 15151 23.914556809491 82 +17 15392 24.214556809491 82 +17 15633 24.514556809491 82 +17 15874 24.814556809491 82 +17 16115 25.114556809491 82 +17 16356 25.414556809491 82 +17 16597 25.714556809491 82 +17 16838 26.014556809491 82 +17 17079 26.314556809491 82 +17 17320 26.614556809491 82 +17 17561 26.914556809491 82 +17 17802 27.214556809491 82 +17 18035 27.514556809491 82 +17 18268 27.814556809491 82 +17 18501 28.114556809491 82 +17 18734 28.414556809491 82 +17 18967 28.714556809491 82 +17 19200 29.014556809491 82 +17 19425 29.314556809491 82 +17 19650 29.614556809491 82 +17 19875 29.914556809491 82 +17 20100 30.214556809491 82 +17 20325 30.514556809491 82 +17 20550 30.814556809491 82 +17 20775 31.114556809491 82 +17 21008 31.414556809491 82 +17 21241 31.714556809491 82 +17 21474 32.014556809491 82 +17 21707 32.314556809491 82 +17 21940 32.614556809491 82 +17 22173 32.914556809491 82 +17 22406 33.214556809491 82 +17 22639 33.514556809491 82 +17 22872 33.814556809491 82 +17 23088 34.114556809491 82 +17 23246 34.414556809491 82 +17 23404 34.714556809491 82 +17 23562 35.014556809491 82 +17 23724 35.314556809491 82 +17 23890 35.614556809491 82 +17 24056 35.914556809491 82 +17 24222 36.214556809491 82 +17 24388 36.514556809491 82 +17 24554 36.814556809491 82 +17 24720 37.114556809491 82 +17 24886 37.414556809491 82 +17 25052 37.714556809491 82 +17 25218 38.014556809491 82 +17 25384 38.314556809491 82 +17 25550 38.614556809491 82 +17 25716 38.914556809491 82 +17 25882 39.214556809491 82 +17 26048 39.514556809491 82 +17 26214 39.814556809491 82 +17 26380 40.114556809491 82 +17 26546 40.414556809491 82 +17 26712 40.714556809491 82 +17 26886 41.014556809491 82 +17 27060 41.314556809491 82 +17 27234 41.614556809491 82 +17 27408 41.914556809491 82 +17 27582 42.214556809491 82 +17 27756 42.514556809491 82 +17 27930 42.814556809491 82 +17 28104 43.114556809491 82 +17 28278 43.414556809491 82 +17 28452 43.714556809491 82 +17 28626 44.014556809491 82 +17 28800 44.314556809491 82 +17 28966 44.614556809491 82 +17 29132 44.914556809491 82 +17 29298 45.214556809491 82 +17 29464 45.514556809491 82 +17 29630 45.814556809491 82 +17 29796 46.114556809491 82 +17 29962 46.414556809491 82 +17 30128 46.714556809491 82 +17 30294 47.014556809491 82 +17 30460 47.314556809491 82 +17 30626 47.614556809491 82 +17 30792 47.914556809491 82 +17 30958 48.214556809491 82 +17 31124 48.514556809491 82 +17 31290 48.814556809491 82 +17 31456 49.114556809491 82 +17 31622 49.414556809491 82 +17 31788 49.714556809491 82 +17 31954 50.014556809491 82 +17 32120 50.314556809491 82 +17 32286 50.614556809491 82 +17 32452 50.914556809491 82 +17 32618 51.214556809491 82 +17 32776 51.514556809491 82 +17 32942 51.814556809491 82 +17 33108 52.114556809491 82 +17 33274 52.414556809491 82 +17 33440 52.714556809491 82 +17 33606 53.014556809491 82 +16 43 2.614556809491 82 +16 88 2.914556809491 82 +16 135 3.214556809491 82 +16 195 3.514556809491 82 +16 279 3.814556809491 82 +16 364 4.114556809491 82 +16 461 4.414556809491 82 +16 580 4.714556809491 82 +16 699 5.014556809491 82 +16 827 5.314556809491 82 +16 961 5.614556809491 82 +16 1119 5.914556809491 82 +16 1279 6.214556809491 82 +16 1462 6.514556809491 82 +16 1679 6.814556809491 82 +16 1896 7.114556809491 82 +16 2113 7.414556809491 82 +16 2330 7.714556809491 82 +16 2547 8.014556809491 82 +16 2764 8.314556809491 82 +16 2989 8.614556809491 82 +16 3214 8.914556809491 82 +16 3439 9.214556809491 82 +16 3664 9.514556809491 82 +16 3889 9.814556809491 82 +16 4114 10.114556809491 82 +16 4339 10.414556809491 82 +16 4568 10.714556809491 82 +16 4801 11.014556809491 82 +16 5034 11.314556809491 82 +16 5267 11.614556809491 82 +16 5508 11.914556809491 82 +16 5749 12.214556809491 82 +16 5990 12.514556809491 82 +16 6231 12.814556809491 82 +16 6472 13.114556809491 82 +16 6713 13.414556809491 82 +16 6954 13.714556809491 82 +16 7195 14.014556809491 82 +16 7436 14.314556809491 82 +16 7677 14.614556809491 82 +16 7918 14.914556809491 82 +16 8159 15.214556809491 82 +16 8400 15.514556809491 82 +16 8641 15.814556809491 82 +16 8882 16.114556809491 82 +16 9131 16.414556809491 82 +16 9380 16.714556809491 82 +16 9629 17.014556809491 82 +16 9878 17.314556809491 82 +16 10127 17.614556809491 82 +16 10376 17.914556809491 82 +16 10617 18.214556809491 82 +16 10850 18.514556809491 82 +16 11083 18.814556809491 82 +16 11316 19.114556809491 82 +16 11549 19.414556809491 82 +16 11782 19.714556809491 82 +16 12015 20.014556809491 82 +16 12256 20.314556809491 82 +16 12497 20.614556809491 82 +16 12738 20.914556809491 82 +16 12979 21.214556809491 82 +16 13220 21.514556809491 82 +16 13461 21.814556809491 82 +16 13702 22.114556809491 82 +16 13943 22.414556809491 82 +16 14184 22.714556809491 82 +16 14425 23.014556809491 82 +16 14666 23.314556809491 82 +16 14907 23.614556809491 82 +16 15148 23.914556809491 82 +16 15389 24.214556809491 82 +16 15630 24.514556809491 82 +16 15871 24.814556809491 82 +16 16112 25.114556809491 82 +16 16353 25.414556809491 82 +16 16594 25.714556809491 82 +16 16835 26.014556809491 82 +16 17076 26.314556809491 82 +16 17317 26.614556809491 82 +16 17558 26.914556809491 82 +16 17799 27.214556809491 82 +16 18032 27.514556809491 82 +16 18265 27.814556809491 82 +16 18498 28.114556809491 82 +16 18731 28.414556809491 82 +16 18964 28.714556809491 82 +16 19197 29.014556809491 82 +16 19422 29.314556809491 82 +16 19647 29.614556809491 82 +16 19872 29.914556809491 82 +16 20097 30.214556809491 82 +16 20322 30.514556809491 82 +16 20547 30.814556809491 82 +16 20772 31.114556809491 82 +16 21005 31.414556809491 82 +16 21238 31.714556809491 82 +16 21471 32.014556809491 82 +16 21704 32.314556809491 82 +16 21937 32.614556809491 82 +16 22170 32.914556809491 82 +16 22403 33.214556809491 82 +16 22636 33.514556809491 82 +16 22869 33.814556809491 82 +16 23085 34.114556809491 82 +16 23243 34.414556809491 82 +16 23401 34.714556809491 82 +16 23559 35.014556809491 82 +16 23721 35.314556809491 82 +16 23887 35.614556809491 82 +16 24053 35.914556809491 82 +16 24219 36.214556809491 82 +16 24385 36.514556809491 82 +16 24551 36.814556809491 82 +16 24717 37.114556809491 82 +16 24883 37.414556809491 82 +16 25049 37.714556809491 82 +16 25215 38.014556809491 82 +16 25381 38.314556809491 82 +16 25547 38.614556809491 82 +16 25713 38.914556809491 82 +16 25879 39.214556809491 82 +16 26045 39.514556809491 82 +16 26211 39.814556809491 82 +16 26377 40.114556809491 82 +16 26543 40.414556809491 82 +16 26709 40.714556809491 82 +16 26883 41.014556809491 82 +16 27057 41.314556809491 82 +16 27231 41.614556809491 82 +16 27405 41.914556809491 82 +16 27579 42.214556809491 82 +16 27753 42.514556809491 82 +16 27927 42.814556809491 82 +16 28101 43.114556809491 82 +16 28275 43.414556809491 82 +16 28449 43.714556809491 82 +16 28623 44.014556809491 82 +16 28797 44.314556809491 82 +16 28963 44.614556809491 82 +16 29129 44.914556809491 82 +16 29295 45.214556809491 82 +16 29461 45.514556809491 82 +16 29627 45.814556809491 82 +16 29793 46.114556809491 82 +16 29959 46.414556809491 82 +16 30125 46.714556809491 82 +16 30291 47.014556809491 82 +16 30457 47.314556809491 82 +16 30623 47.614556809491 82 +16 30789 47.914556809491 82 +16 30955 48.214556809491 82 +16 31121 48.514556809491 82 +16 31287 48.814556809491 82 +16 31453 49.114556809491 82 +16 31619 49.414556809491 82 +16 31785 49.714556809491 82 +16 31951 50.014556809491 82 +16 32117 50.314556809491 82 +16 32283 50.614556809491 82 +16 32449 50.914556809491 82 +16 32615 51.214556809491 82 +16 32773 51.514556809491 82 +16 32939 51.814556809491 82 +16 33105 52.114556809491 82 +16 33271 52.414556809491 82 +16 33437 52.714556809491 82 +16 33603 53.014556809491 82 +25 71 2.65754405803 82 +25 116 2.957544059145 82 +25 170 3.257544060325 82 +25 230 3.531436752816 82 +25 254 3.5575440616 82 +25 314 3.831436748492 82 +25 338 3.857544062957 82 +25 407 4.131436743562 82 +25 432 4.157544064405 82 +25 504 4.431436737964 82 +25 529 4.457544065992 82 +25 623 4.731436731904 82 +25 648 4.757544067713 82 +25 742 5.031436725247 82 +25 767 5.057544069567 82 +25 873 5.331436717912 82 +25 900 5.357544071635 82 +25 1007 5.631436710029 82 +25 1034 5.657544073906 82 +25 1165 5.931436701497 82 +25 1192 5.957544076426 82 +25 1337 6.231436692343 82 +25 1365 6.257544079226 82 +25 1509 6.524558778352 82 +25 1553 6.531436682665 82 +25 1582 6.557544082316 82 +25 1726 6.824558768033 82 +25 1770 6.831436672312 82 +25 1799 6.857544085755 82 +25 1943 7.124558757068 82 +25 1987 7.131436661329 82 +25 2016 7.157544089564 82 +25 2160 7.424558745664 82 +25 2204 7.431436649891 82 +25 2233 7.457544093735 82 +25 2377 7.724558733784 82 +25 2421 7.731436637989 82 +25 2450 7.757544098302 82 +25 2594 8.02455872132 82 +25 2633 8.031436625491 82 +25 2667 8.057544103323 82 +25 2811 8.324558708136 82 +25 2854 8.33143661228 82 +25 2888 8.357544108886 82 +25 3036 8.624558694405 82 +25 3079 8.631436598484 82 +25 3113 8.65754411496 82 +25 3261 8.924558680104 82 +25 3304 8.931436584082 82 +25 3338 8.957544121588 82 +25 3486 9.224558665264 82 +25 3529 9.231436569158 82 +25 3563 9.257544128789 82 +25 3711 9.524558649996 82 +25 3754 9.531436553733 82 +25 3788 9.557544136549 82 +25 3936 9.824558634568 82 +25 3979 9.831436538055 82 +25 4013 9.857544144771 82 +25 4161 10.124558619363 82 +25 4204 10.131436522386 82 +25 4238 10.157544153312 82 +25 4386 10.424558604844 82 +25 4429 10.431436506743 82 +25 4463 10.457544162122 82 +25 4545 10.544153907449 82 +25 4619 10.72455859379 82 +25 4662 10.731436491102 82 +25 4696 10.757544171218 82 +25 4773 10.84415389067 82 +25 4852 11.024558598014 82 +25 4890 11.031436475464 82 +25 4929 11.057544180599 82 +25 5006 11.144153874452 82 +25 5085 11.324558611475 82 +25 5123 11.331436459858 82 +25 5167 11.3575441902 82 +25 5239 11.444153858741 82 +25 5318 11.624558626396 82 +25 5356 11.631436444245 82 +25 5404 11.657544200055 82 +25 5480 11.744153843502 82 +25 5559 11.92455864171 82 +25 5597 11.931436428595 82 +25 5645 11.957544210159 82 +25 5721 12.044153828636 82 +25 5800 12.224558657188 82 +25 5838 12.231436412948 82 +25 5886 12.257544220477 82 +25 5962 12.344153813991 82 +25 6041 12.524558672694 82 +25 6079 12.531436397317 82 +25 6127 12.557544230993 82 +25 6203 12.644153799362 82 +25 6282 12.824558688243 82 +25 6320 12.831436381695 82 +25 6368 12.857544241685 82 +25 6444 12.944153784749 82 +25 6523 13.124558703844 82 +25 6561 13.131436366027 82 +25 6609 13.157544252586 82 +25 6685 13.244153770092 82 +25 6764 13.424558719435 82 +25 6802 13.431436350417 82 +25 6850 13.457544263637 82 +25 6926 13.544153755468 82 +25 7005 13.724558735043 82 +25 7043 13.731436334798 82 +25 7091 13.757544274837 82 +25 7167 13.844153740827 82 +25 7246 14.024558750707 82 +25 7284 14.031436319127 82 +25 7332 14.05754428623 82 +25 7408 14.14415372616 82 +25 7487 14.324558766341 82 +25 7525 14.331436303517 82 +25 7573 14.357544297742 82 +25 7649 14.444153711546 82 +25 7728 14.624558781946 82 +25 7766 14.631436287929 82 +25 7814 14.657544309371 82 +25 7890 14.744153696951 82 +25 7969 14.924558797557 82 +25 8007 14.931436272358 82 +25 8055 14.957544321127 82 +25 8131 15.044153682366 82 +25 8210 15.224558813176 82 +25 8248 15.231436256794 82 +25 8296 15.257544333003 82 +25 8372 15.344153667781 82 +25 8451 15.524558828841 82 +25 8489 15.531436241243 82 +25 8537 15.557544345028 82 +25 8613 15.644153653166 82 +25 8692 15.824558844455 82 +25 8730 15.831436225819 82 +25 8778 15.857544357121 82 +25 8854 15.944153638616 82 +25 8937 16.124558860085 82 +25 8975 16.131436210464 82 +25 9023 16.157544369327 82 +25 9062 16.193746240802 82 +25 9103 16.244153624037 82 +25 9186 16.424558875726 82 +25 9224 16.431436195381 82 +25 9272 16.457544381652 82 +25 9311 16.4937462136 82 +25 9352 16.54415360942 82 +25 9435 16.724558891381 82 +25 9473 16.731436181333 82 +25 9521 16.757544394067 82 +25 9560 16.793746189096 82 +25 9601 16.84415359486 82 +25 9689 17.02455890702 82 +25 9722 17.031436173692 82 +25 9770 17.057544406545 82 +25 9804 17.093746167318 82 +25 9845 17.144153580311 82 +25 9938 17.324558922703 82 +25 9971 17.331436182573 82 +25 10024 17.357544419138 82 +25 10053 17.39374614821 82 +25 10094 17.444153565736 82 +25 10187 17.624558938357 82 +25 10220 17.631436196794 82 +25 10273 17.657544431773 82 +25 10302 17.69374613177 82 +25 10343 17.744153551191 82 +25 10432 17.924558954 82 +25 10465 17.931436211881 82 +25 10543 17.993746116127 82 +25 10584 18.04415353668 82 +25 10673 18.224558969656 82 +25 10702 18.231436227234 82 +25 10780 18.293746100476 82 +25 10821 18.344153522105 82 +25 10906 18.524558984772 82 +25 10935 18.531436242598 82 +25 11013 18.593746085525 82 +25 11054 18.644153508193 82 +25 11139 18.824558992869 82 +25 11168 18.831436252819 82 +25 11246 18.893746078461 82 +25 11287 18.9441535017 82 +25 11372 19.124558995465 82 +25 11401 19.131436259429 82 +25 11479 19.193746077908 82 +25 11520 19.244153499144 82 +25 11605 19.424558998137 82 +25 11634 19.431436267371 82 +25 11712 19.493746078167 82 +25 11753 19.544153497268 82 +25 11838 19.724559001753 82 +25 11867 19.731436277055 82 +25 11945 19.793746078318 82 +25 11986 19.844153496076 82 +25 12075 20.024559006417 82 +25 12104 20.031436288225 82 +25 12157 20.057544440568 82 +25 12186 20.093746078154 82 +25 12227 20.144153495659 82 +25 12316 20.324559012107 82 +25 12345 20.331436300497 82 +25 12398 20.357544434459 82 +25 12427 20.393746077762 82 +25 12468 20.444153496115 82 +25 12557 20.624559018883 82 +25 12586 20.631436313658 82 +25 12639 20.657544428826 82 +25 12668 20.693746077186 82 +25 12709 20.744153497538 82 +25 12798 20.924559026768 82 +25 12827 20.931436327544 82 +25 12880 20.957544423566 82 +25 12909 20.993746076495 82 +25 12950 21.044153500002 82 +25 13039 21.224559035584 82 +25 13068 21.231436341939 82 +25 13121 21.257544418748 82 +25 13150 21.293746075717 82 +25 13191 21.344153503566 82 +25 13280 21.524559045258 82 +25 13309 21.531436356826 82 +25 13362 21.557544414308 82 +25 13391 21.593746074727 82 +25 13432 21.644153508321 82 +25 13521 21.82455905578 82 +25 13550 21.831436372147 82 +25 13603 21.85754441021 82 +25 13632 21.893746073568 82 +25 13673 21.944153514273 82 +25 13762 22.124559067102 82 +25 13791 22.131436387853 82 +25 13844 22.157544406427 82 +25 13873 22.193746072252 82 +25 13914 22.244153521464 82 +25 14003 22.424559079181 82 +25 14032 22.431436403914 82 +25 14085 22.457544402943 82 +25 14114 22.4937460709 82 +25 14155 22.544153529992 82 +25 14244 22.724559091991 82 +25 14273 22.731436420334 82 +25 14326 22.757544399779 82 +25 14355 22.793746069444 82 +25 14396 22.844153539394 82 +25 14490 23.02455910552 82 +25 14514 23.031436437066 82 +25 14567 23.057544396928 82 +25 14596 23.093746067888 82 +25 14637 23.144153549741 82 +25 14731 23.324559119693 82 +25 14755 23.331436454133 82 +25 14808 23.357544394378 82 +25 14837 23.393746066244 82 +25 14878 23.444153561136 82 +25 14972 23.624559134588 82 +25 14996 23.63143647154 82 +25 15049 23.6575443921 82 +25 15078 23.693746064635 82 +25 15119 23.744153567162 82 +25 15213 23.924559150101 82 +25 15242 23.931436489241 82 +25 15290 23.957544390086 82 +25 15319 23.993746063012 82 +25 15360 24.044153568182 82 +25 15454 24.224559166253 82 +25 15483 24.231436507166 82 +25 15526 24.257544388316 82 +25 15560 24.293746061339 82 +25 15601 24.344153571496 82 +25 15695 24.524559183101 82 +25 15724 24.531436525482 82 +25 15767 24.557544386729 82 +25 15801 24.593746059807 82 +25 15842 24.6441535745 82 +25 15936 24.824559200464 82 +25 15965 24.831436544164 82 +25 16008 24.857544385359 82 +25 16042 24.893746058439 82 +25 16083 24.944153577203 82 +25 16177 25.12455921797 82 +25 16206 25.131436563184 82 +25 16249 25.157544384197 82 +25 16283 25.193746057203 82 +25 16324 25.24415357959 82 +25 16418 25.424559235494 82 +25 16447 25.431436582461 82 +25 16490 25.457544383218 82 +25 16524 25.493746056133 82 +25 16565 25.544153581628 82 +25 16659 25.72455925309 82 +25 16688 25.731436602139 82 +25 16731 25.757544382378 82 +25 16765 25.793746055358 82 +25 16806 25.844153583304 82 +25 16900 26.02455927079 82 +25 16929 26.031436621424 82 +25 16972 26.057544381741 82 +25 17006 26.093746054815 82 +25 17047 26.144153584607 82 +25 17141 26.324559288461 82 +25 17170 26.331436639945 82 +25 17213 26.357544381246 82 +25 17247 26.393746054911 82 +25 17288 26.444153585474 82 +25 17382 26.624559306213 82 +25 17411 26.631436657697 82 +25 17454 26.657544380772 82 +25 17488 26.693746055774 82 +25 17529 26.744153585917 82 +25 17623 26.924559324013 82 +25 17652 26.931436674713 82 +25 17695 26.957544380173 82 +25 17729 26.993746057387 82 +25 17770 27.044153586021 82 +25 17885 27.231436690939 82 +25 17928 27.257544379228 82 +25 17962 27.293746059723 82 +25 18003 27.344153585835 82 +25 18118 27.531436706855 82 +25 18161 27.557544377938 82 +25 18195 27.593746062815 82 +25 18236 27.644153585638 82 +25 18351 27.831436720086 82 +25 18394 27.857544376349 82 +25 18428 27.893746066606 82 +25 18469 27.944153585413 82 +25 18584 28.13143672571 82 +25 18627 28.157544373989 82 +25 18661 28.193746071088 82 +25 18702 28.244153585227 82 +25 18817 28.431436732587 82 +25 18860 28.457544371101 82 +25 18894 28.493746076328 82 +25 18935 28.544153585019 82 +25 19055 28.731436740327 82 +25 19093 28.75754436664 82 +25 19132 28.793746082194 82 +25 19168 28.844153584814 82 +25 19288 29.031436748231 82 +25 19322 29.057544360134 82 +25 19357 29.093746088751 82 +25 19393 29.144153584619 82 +25 19513 29.331436756353 82 +25 19542 29.357544350663 82 +25 19582 29.393746095971 82 +25 19618 29.444153584404 82 +25 19738 29.631436764677 82 +25 19767 29.657544339017 82 +25 19807 29.693746103788 82 +25 19843 29.744153584219 82 +25 19963 29.931436773214 82 +25 19992 29.957544326873 82 +25 20032 29.993746112191 82 +25 20068 30.044153584023 82 +25 20188 30.231436781919 82 +25 20217 30.257544314288 82 +25 20257 30.293746121137 82 +25 20293 30.344153583815 82 +25 20413 30.531436790863 82 +25 20442 30.557544301358 82 +25 20482 30.593746130599 82 +25 20518 30.644153583594 82 +25 20643 30.831436800084 82 +25 20667 30.857544288203 82 +25 20707 30.893746140579 82 +25 20743 30.944153583376 82 +25 20872 31.131436809733 82 +25 20896 31.157544274763 82 +25 20936 31.193746151091 82 +25 20976 31.244153583185 82 +25 21105 31.43143681984 82 +25 21129 31.45754426113 82 +25 21169 31.493746162045 82 +25 21209 31.544153582999 82 +25 21338 31.73143683044 82 +25 21362 31.757544247459 82 +25 21402 31.793746173478 82 +25 21437 31.844153582814 82 +25 21571 32.031436841444 82 +25 21595 32.057544234163 82 +25 21640 32.093746185302 82 +25 21670 32.144153582627 82 +25 21804 32.331436852904 82 +25 21828 32.357544221209 82 +25 21873 32.393746197538 82 +25 21903 32.44415358243 82 +25 22037 32.631436864721 82 +25 22061 32.657544208687 82 +25 22106 32.693746210128 82 +25 22136 32.744153582216 82 +25 22270 32.931436876958 82 +25 22294 32.957544196619 82 +25 22339 32.993746223119 82 +25 22369 33.044153582014 82 +25 22503 33.231436889508 82 +25 22527 33.25754418501 82 +25 22572 33.293746236404 82 +25 22602 33.34415358181 82 +25 22736 33.531436902417 82 +25 22760 33.557544173944 82 +25 22805 33.593746250026 82 +25 22835 33.644153581593 82 +25 22965 33.831436915646 82 +25 22989 33.857544163418 82 +25 23058 33.944153581377 82 +25 23182 34.157544153508 82 +25 23216 34.244153581155 82 +25 23340 34.457544144204 82 +25 23374 34.544153580981 82 +25 23498 34.75754413555 82 +25 23532 34.844153580776 82 +25 23656 35.057544127604 82 +25 23690 35.144153580566 82 +25 23818 35.357544120761 82 +25 23856 35.444153580357 82 +25 23984 35.657544115863 82 +25 24022 35.744153580181 82 +25 24150 35.957544112909 82 +25 24188 36.044153579975 82 +25 24316 36.257544111896 82 +25 24354 36.344153579779 82 +25 24482 36.557544112695 82 +25 24520 36.64415357959 82 +25 24648 36.857544114665 82 +25 24686 36.944153579358 82 +25 24814 37.157544116577 82 +25 24852 37.244153577605 82 +25 24980 37.457544118525 82 +25 25018 37.544153572915 82 +25 25146 37.757544120668 82 +25 25184 37.844153571184 82 +25 25312 38.05754412309 82 +25 25350 38.144153570903 82 +25 25478 38.357544125785 82 +25 25516 38.444153571748 82 +25 25644 38.65754412876 82 +25 25682 38.74415357356 82 +25 25810 38.957544132048 82 +25 25848 39.044153576469 82 +25 25976 39.257544135646 82 +25 26014 39.34415358036 82 +25 26142 39.557544139563 82 +25 26180 39.644153585234 82 +25 26308 39.857544143904 82 +25 26346 39.944153591067 82 +25 26479 40.157544148943 82 +25 26517 40.244153597798 82 +25 26645 40.457544154717 82 +25 26683 40.544153605352 82 +25 26815 40.757544161295 82 +25 26853 40.844153613829 82 +25 26989 41.05754416852 82 +25 27027 41.144153623009 82 +25 27163 41.357544176462 82 +25 27201 41.444153632949 82 +25 27337 41.657544185007 82 +25 27375 41.744153643584 82 +25 27511 41.957544194196 82 +25 27549 42.044153655076 82 +25 27685 42.257544203962 82 +25 27723 42.344153667279 82 +25 27859 42.557544214263 82 +25 27897 42.644153680118 82 +25 28033 42.857544225113 82 +25 28071 42.944153693453 82 +25 28207 43.15754423643 82 +25 28245 43.244153707142 82 +25 28381 43.457544248185 82 +25 28419 43.54415372113 82 +25 28555 43.757544260094 82 +25 28593 43.844153734654 82 +25 28729 44.05754427113 82 +25 28767 44.144153746996 82 +25 28899 44.357544281313 82 +25 28937 44.444153758119 82 +25 29065 44.657544290579 82 +25 29103 44.744153767993 82 +25 29231 44.957544298829 82 +25 29269 45.04415377659 82 +25 29397 45.257544305981 82 +25 29435 45.344153783865 82 +25 29563 45.557544312206 82 +25 29601 45.644153790499 82 +25 29729 45.857544319049 82 +25 29767 45.944153797914 82 +25 29895 46.157544326651 82 +25 29938 46.244153806003 82 +25 30061 46.457544334527 82 +25 30104 46.544153813964 82 +25 30232 46.757544340536 82 +25 30270 46.844153818595 82 +25 30398 47.057544342941 82 +25 30436 47.144153819767 82 +25 30564 47.357544344047 82 +25 30602 47.444153820025 82 +25 30730 47.657544345882 82 +25 30768 47.744153820289 82 +25 30896 47.95754434856 82 +25 30934 48.044153820574 82 +25 31062 48.257544352185 82 +25 31100 48.344153819422 82 +25 31228 48.557544356842 82 +25 31266 48.644153818083 82 +25 31394 48.857544362664 82 +25 31432 48.944153815516 82 +25 31560 49.157544369644 82 +25 31598 49.244153812156 82 +25 31726 49.457544377764 82 +25 31764 49.544153808185 82 +25 31892 49.757544386996 82 +25 31930 49.844153803841 82 +25 32058 50.05754439718 82 +25 32096 50.144153799517 82 +25 32224 50.3575444083 82 +25 32262 50.444153795058 82 +25 32390 50.657544420305 82 +25 32428 50.744153790392 82 +25 32556 50.957544433105 82 +25 32594 51.044153785603 82 +25 32752 51.344153780685 82 +25 32918 51.644153775717 82 +25 33084 51.944153770578 82 +25 33250 52.244153765452 82 +25 33416 52.544153760435 82 +25 33582 52.844153755494 82 +25 33748 53.144153750731 82 +3 22 2.1 0 +3 22 2.1 0 +3 47 2.614556809491 0 +3 47 2.614556809491 0 +3 51 2.614716809491 0 +3 51 2.614716809491 0 +3 67 2.65738405803 0 +3 67 2.65738405803 0 +3 70 2.65754405803 0 +3 70 2.65754405803 0 +3 92 2.914556809491 0 +3 92 2.914556809491 0 +3 96 2.914716809491 0 +3 96 2.914716809491 0 +3 112 2.957384059145 0 +3 112 2.957384059145 0 +3 115 2.957544059145 0 +3 115 2.957544059145 0 +3 139 3.214556809491 0 +3 139 3.214556809491 0 +3 144 3.214716809491 0 +3 144 3.214716809491 0 +3 165 3.257384060325 0 +3 165 3.257384060325 0 +3 169 3.257544060325 0 +3 169 3.257544060325 0 +3 199 3.514556809491 0 +3 199 3.514556809491 0 +3 204 3.514716809491 0 +3 204 3.514716809491 0 +3 225 3.531276752816 0 +3 225 3.531276752816 0 +3 229 3.531436752816 0 +3 229 3.531436752816 0 +3 249 3.5573840616 0 +3 249 3.5573840616 0 +3 253 3.5575440616 0 +3 253 3.5575440616 0 +3 283 3.814556809491 0 +3 283 3.814556809491 0 +3 288 3.814716809491 0 +3 288 3.814716809491 0 +3 309 3.831276748492 0 +3 309 3.831276748492 0 +3 313 3.831436748492 0 +3 313 3.831436748492 0 +3 333 3.857384062957 0 +3 333 3.857384062957 0 +3 337 3.857544062957 0 +3 337 3.857544062957 0 +3 368 4.114556809491 0 +3 368 4.114556809491 0 +3 374 4.114716809491 0 +3 374 4.114716809491 0 +3 397 4.131276743562 0 +3 397 4.131276743562 0 +3 406 4.131436743562 0 +3 406 4.131436743562 0 +3 426 4.157384064405 0 +3 426 4.157384064405 0 +3 431 4.157544064405 0 +3 431 4.157544064405 0 +3 465 4.414556809491 0 +3 465 4.414556809491 0 +3 471 4.414716809491 0 +3 471 4.414716809491 0 +3 494 4.431276737964 0 +3 494 4.431276737964 0 +3 503 4.431436737964 0 +3 503 4.431436737964 0 +3 523 4.457384065992 0 +3 523 4.457384065992 0 +3 528 4.457544065992 0 +3 528 4.457544065992 0 +3 584 4.714556809491 0 +3 584 4.714556809491 0 +3 590 4.714716809491 0 +3 590 4.714716809491 0 +3 613 4.731276731904 0 +3 613 4.731276731904 0 +3 622 4.731436731904 0 +3 622 4.731436731904 0 +3 642 4.757384067713 0 +3 642 4.757384067713 0 +3 647 4.757544067713 0 +3 647 4.757544067713 0 +3 703 5.014556809491 0 +3 703 5.014556809491 0 +3 709 5.014716809491 0 +3 709 5.014716809491 0 +3 732 5.031276725247 0 +3 732 5.031276725247 0 +3 741 5.031436725247 0 +3 741 5.031436725247 0 +3 761 5.057384069567 0 +3 761 5.057384069567 0 +3 766 5.057544069567 0 +3 766 5.057544069567 0 +3 831 5.314556809491 0 +3 831 5.314556809491 0 +3 838 5.314716809491 0 +3 838 5.314716809491 0 +3 862 5.331276717912 0 +3 862 5.331276717912 0 +3 872 5.331436717912 0 +3 872 5.331436717912 0 +3 893 5.357384071635 0 +3 893 5.357384071635 0 +3 899 5.357544071635 0 +3 899 5.357544071635 0 +3 965 5.614556809491 0 +3 965 5.614556809491 0 +3 972 5.614716809491 0 +3 972 5.614716809491 0 +3 996 5.631276710029 0 +3 996 5.631276710029 0 +3 1006 5.631436710029 0 +3 1006 5.631436710029 0 +3 1027 5.657384073906 0 +3 1027 5.657384073906 0 +3 1033 5.657544073906 0 +3 1033 5.657544073906 0 +3 1123 5.914556809491 0 +3 1123 5.914556809491 0 +3 1130 5.914716809491 0 +3 1130 5.914716809491 0 +3 1154 5.931276701497 0 +3 1154 5.931276701497 0 +3 1164 5.931436701497 0 +3 1164 5.931436701497 0 +3 1185 5.957384076426 0 +3 1185 5.957384076426 0 +3 1191 5.957544076426 0 +3 1191 5.957544076426 0 +3 1283 6.214556809491 0 +3 1283 6.214556809491 0 +3 1291 6.214716809491 0 +3 1291 6.214716809491 0 +3 1321 6.231276692343 0 +3 1321 6.231276692343 0 +3 1336 6.231436692343 0 +3 1336 6.231436692343 0 +3 1357 6.257384079226 0 +3 1357 6.257384079226 0 +3 1364 6.257544079226 0 +3 1364 6.257544079226 0 +3 1466 6.514556809491 0 +3 1466 6.514556809491 0 +3 1474 6.514716809491 0 +3 1474 6.514716809491 0 +3 1501 6.524398778352 0 +3 1501 6.524398778352 0 +3 1508 6.524558778352 0 +3 1508 6.524558778352 0 +3 1537 6.531276682665 0 +3 1537 6.531276682665 0 +3 1552 6.531436682665 0 +3 1552 6.531436682665 0 +3 1574 6.557384082316 0 +3 1574 6.557384082316 0 +3 1581 6.557544082316 0 +3 1581 6.557544082316 0 +3 1683 6.814556809491 0 +3 1683 6.814556809491 0 +3 1691 6.814716809491 0 +3 1691 6.814716809491 0 +3 1718 6.824398768033 0 +3 1718 6.824398768033 0 +3 1725 6.824558768033 0 +3 1725 6.824558768033 0 +3 1754 6.831276672312 0 +3 1754 6.831276672312 0 +3 1769 6.831436672312 0 +3 1769 6.831436672312 0 +3 1791 6.857384085755 0 +3 1791 6.857384085755 0 +3 1798 6.857544085755 0 +3 1798 6.857544085755 0 +3 1900 7.114556809491 0 +3 1900 7.114556809491 0 +3 1908 7.114716809491 0 +3 1908 7.114716809491 0 +3 1935 7.124398757068 0 +3 1935 7.124398757068 0 +3 1942 7.124558757068 0 +3 1942 7.124558757068 0 +3 1971 7.131276661329 0 +3 1971 7.131276661329 0 +3 1986 7.131436661329 0 +3 1986 7.131436661329 0 +3 2008 7.157384089564 0 +3 2008 7.157384089564 0 +3 2015 7.157544089564 0 +3 2015 7.157544089564 0 +3 2117 7.414556809491 0 +3 2117 7.414556809491 0 +3 2125 7.414716809491 0 +3 2125 7.414716809491 0 +3 2152 7.424398745664 0 +3 2152 7.424398745664 0 +3 2159 7.424558745664 0 +3 2159 7.424558745664 0 +3 2188 7.431276649891 0 +3 2188 7.431276649891 0 +3 2203 7.431436649891 0 +3 2203 7.431436649891 0 +3 2225 7.457384093735 0 +3 2225 7.457384093735 0 +3 2232 7.457544093735 0 +3 2232 7.457544093735 0 +3 2334 7.714556809491 0 +3 2334 7.714556809491 0 +3 2342 7.714716809491 0 +3 2342 7.714716809491 0 +3 2369 7.724398733784 0 +3 2369 7.724398733784 0 +3 2376 7.724558733784 0 +3 2376 7.724558733784 0 +3 2405 7.731276637989 0 +3 2405 7.731276637989 0 +3 2420 7.731436637989 0 +3 2420 7.731436637989 0 +3 2442 7.757384098302 0 +3 2442 7.757384098302 0 +3 2449 7.757544098302 0 +3 2449 7.757544098302 0 +3 2551 8.014556809491 0 +3 2551 8.014556809491 0 +3 2559 8.014716809491 0 +3 2559 8.014716809491 0 +3 2586 8.02439872132 0 +3 2586 8.02439872132 0 +3 2593 8.02455872132 0 +3 2593 8.02455872132 0 +3 2621 8.031276625491 0 +3 2621 8.031276625491 0 +3 2632 8.031436625491 0 +3 2632 8.031436625491 0 +3 2659 8.057384103323 0 +3 2659 8.057384103323 0 +3 2666 8.057544103323 0 +3 2666 8.057544103323 0 +3 2768 8.314556809491 0 +3 2768 8.314556809491 0 +3 2776 8.314716809491 0 +3 2776 8.314716809491 0 +3 2803 8.324398708136 0 +3 2803 8.324398708136 0 +3 2810 8.324558708136 0 +3 2810 8.324558708136 0 +3 2842 8.33127661228 0 +3 2842 8.33127661228 0 +3 2853 8.33143661228 0 +3 2853 8.33143661228 0 +3 2880 8.357384108886 0 +3 2880 8.357384108886 0 +3 2887 8.357544108886 0 +3 2887 8.357544108886 0 +3 2993 8.614556809491 0 +3 2993 8.614556809491 0 +3 3001 8.614716809491 0 +3 3001 8.614716809491 0 +3 3028 8.624398694405 0 +3 3028 8.624398694405 0 +3 3035 8.624558694405 0 +3 3035 8.624558694405 0 +3 3067 8.631276598484 0 +3 3067 8.631276598484 0 +3 3078 8.631436598484 0 +3 3078 8.631436598484 0 +3 3105 8.65738411496 0 +3 3105 8.65738411496 0 +3 3112 8.65754411496 0 +3 3112 8.65754411496 0 +3 3218 8.914556809491 0 +3 3218 8.914556809491 0 +3 3226 8.914716809491 0 +3 3226 8.914716809491 0 +3 3253 8.924398680104 0 +3 3253 8.924398680104 0 +3 3260 8.924558680104 0 +3 3260 8.924558680104 0 +3 3292 8.931276584082 0 +3 3292 8.931276584082 0 +3 3303 8.931436584082 0 +3 3303 8.931436584082 0 +3 3330 8.957384121588 0 +3 3330 8.957384121588 0 +3 3337 8.957544121588 0 +3 3337 8.957544121588 0 +3 3443 9.214556809491 0 +3 3443 9.214556809491 0 +3 3451 9.214716809491 0 +3 3451 9.214716809491 0 +3 3478 9.224398665264 0 +3 3478 9.224398665264 0 +3 3485 9.224558665264 0 +3 3485 9.224558665264 0 +3 3517 9.231276569158 0 +3 3517 9.231276569158 0 +3 3528 9.231436569158 0 +3 3528 9.231436569158 0 +3 3555 9.257384128789 0 +3 3555 9.257384128789 0 +3 3562 9.257544128789 0 +3 3562 9.257544128789 0 +3 3668 9.514556809491 0 +3 3668 9.514556809491 0 +3 3676 9.514716809491 0 +3 3676 9.514716809491 0 +3 3703 9.524398649996 0 +3 3703 9.524398649996 0 +3 3710 9.524558649996 0 +3 3710 9.524558649996 0 +3 3742 9.531276553733 0 +3 3742 9.531276553733 0 +3 3753 9.531436553733 0 +3 3753 9.531436553733 0 +3 3780 9.557384136549 0 +3 3780 9.557384136549 0 +3 3787 9.557544136549 0 +3 3787 9.557544136549 0 +3 3893 9.814556809491 0 +3 3893 9.814556809491 0 +3 3901 9.814716809491 0 +3 3901 9.814716809491 0 +3 3928 9.824398634568 0 +3 3928 9.824398634568 0 +3 3935 9.824558634568 0 +3 3935 9.824558634568 0 +3 3967 9.831276538055 0 +3 3967 9.831276538055 0 +3 3978 9.831436538055 0 +3 3978 9.831436538055 0 +3 4005 9.857384144771 0 +3 4005 9.857384144771 0 +3 4012 9.857544144771 0 +3 4012 9.857544144771 0 +3 4118 10.114556809491 0 +3 4118 10.114556809491 0 +3 4126 10.114716809491 0 +3 4126 10.114716809491 0 +3 4153 10.124398619363 0 +3 4153 10.124398619363 0 +3 4160 10.124558619363 0 +3 4160 10.124558619363 0 +3 4192 10.131276522386 0 +3 4192 10.131276522386 0 +3 4203 10.131436522386 0 +3 4203 10.131436522386 0 +3 4230 10.157384153312 0 +3 4230 10.157384153312 0 +3 4237 10.157544153312 0 +3 4237 10.157544153312 0 +3 4343 10.414556809491 0 +3 4343 10.414556809491 0 +3 4351 10.414716809491 0 +3 4351 10.414716809491 0 +3 4378 10.424398604844 0 +3 4378 10.424398604844 0 +3 4385 10.424558604844 0 +3 4385 10.424558604844 0 +3 4417 10.431276506743 0 +3 4417 10.431276506743 0 +3 4428 10.431436506743 0 +3 4428 10.431436506743 0 +3 4455 10.457384162122 0 +3 4455 10.457384162122 0 +3 4462 10.457544162122 0 +3 4462 10.457544162122 0 +3 4525 10.543993907449 0 +3 4525 10.543993907449 0 +3 4544 10.544153907449 0 +3 4544 10.544153907449 0 +3 4572 10.714556809491 0 +3 4572 10.714556809491 0 +3 4580 10.714716809491 0 +3 4580 10.714716809491 0 +3 4611 10.72439859379 0 +3 4611 10.72439859379 0 +3 4618 10.72455859379 0 +3 4618 10.72455859379 0 +3 4650 10.731276491102 0 +3 4650 10.731276491102 0 +3 4661 10.731436491102 0 +3 4661 10.731436491102 0 +3 4688 10.757384171218 0 +3 4688 10.757384171218 0 +3 4695 10.757544171218 0 +3 4695 10.757544171218 0 +3 4757 10.84399389067 0 +3 4757 10.84399389067 0 +3 4772 10.84415389067 0 +3 4772 10.84415389067 0 +3 4805 11.014556809491 0 +3 4805 11.014556809491 0 +3 4813 11.014716809491 0 +3 4813 11.014716809491 0 +3 4844 11.024398598014 0 +3 4844 11.024398598014 0 +3 4851 11.024558598014 0 +3 4851 11.024558598014 0 +3 4882 11.031276475464 0 +3 4882 11.031276475464 0 +3 4889 11.031436475464 0 +3 4889 11.031436475464 0 +3 4921 11.057384180599 0 +3 4921 11.057384180599 0 +3 4928 11.057544180599 0 +3 4928 11.057544180599 0 +3 4990 11.143993874452 0 +3 4990 11.143993874452 0 +3 5005 11.144153874452 0 +3 5005 11.144153874452 0 +3 5038 11.314556809491 0 +3 5038 11.314556809491 0 +3 5046 11.314716809491 0 +3 5046 11.314716809491 0 +3 5077 11.324398611475 0 +3 5077 11.324398611475 0 +3 5084 11.324558611475 0 +3 5084 11.324558611475 0 +3 5115 11.331276459858 0 +3 5115 11.331276459858 0 +3 5122 11.331436459858 0 +3 5122 11.331436459858 0 +3 5155 11.3573841902 0 +3 5155 11.3573841902 0 +3 5166 11.3575441902 0 +3 5166 11.3575441902 0 +3 5223 11.443993858741 0 +3 5223 11.443993858741 0 +3 5238 11.444153858741 0 +3 5238 11.444153858741 0 +3 5271 11.614556809491 0 +3 5271 11.614556809491 0 +3 5279 11.614716809491 0 +3 5279 11.614716809491 0 +3 5310 11.624398626396 0 +3 5310 11.624398626396 0 +3 5317 11.624558626396 0 +3 5317 11.624558626396 0 +3 5348 11.631276444245 0 +3 5348 11.631276444245 0 +3 5355 11.631436444245 0 +3 5355 11.631436444245 0 +3 5392 11.657384200055 0 +3 5392 11.657384200055 0 +3 5403 11.657544200055 0 +3 5403 11.657544200055 0 +3 5464 11.743993843502 0 +3 5464 11.743993843502 0 +3 5479 11.744153843502 0 +3 5479 11.744153843502 0 +3 5512 11.914556809491 0 +3 5512 11.914556809491 0 +3 5520 11.914716809491 0 +3 5520 11.914716809491 0 +3 5551 11.92439864171 0 +3 5551 11.92439864171 0 +3 5558 11.92455864171 0 +3 5558 11.92455864171 0 +3 5589 11.931276428595 0 +3 5589 11.931276428595 0 +3 5596 11.931436428595 0 +3 5596 11.931436428595 0 +3 5633 11.957384210159 0 +3 5633 11.957384210159 0 +3 5644 11.957544210159 0 +3 5644 11.957544210159 0 +3 5705 12.043993828636 0 +3 5705 12.043993828636 0 +3 5720 12.044153828636 0 +3 5720 12.044153828636 0 +3 5753 12.214556809491 0 +3 5753 12.214556809491 0 +3 5761 12.214716809491 0 +3 5761 12.214716809491 0 +3 5792 12.224398657188 0 +3 5792 12.224398657188 0 +3 5799 12.224558657188 0 +3 5799 12.224558657188 0 +3 5830 12.231276412948 0 +3 5830 12.231276412948 0 +3 5837 12.231436412948 0 +3 5837 12.231436412948 0 +3 5874 12.257384220477 0 +3 5874 12.257384220477 0 +3 5885 12.257544220477 0 +3 5885 12.257544220477 0 +3 5946 12.343993813991 0 +3 5946 12.343993813991 0 +3 5961 12.344153813991 0 +3 5961 12.344153813991 0 +3 5994 12.514556809491 0 +3 5994 12.514556809491 0 +3 6002 12.514716809491 0 +3 6002 12.514716809491 0 +3 6033 12.524398672694 0 +3 6033 12.524398672694 0 +3 6040 12.524558672694 0 +3 6040 12.524558672694 0 +3 6071 12.531276397317 0 +3 6071 12.531276397317 0 +3 6078 12.531436397317 0 +3 6078 12.531436397317 0 +3 6115 12.557384230993 0 +3 6115 12.557384230993 0 +3 6126 12.557544230993 0 +3 6126 12.557544230993 0 +3 6187 12.643993799362 0 +3 6187 12.643993799362 0 +3 6202 12.644153799362 0 +3 6202 12.644153799362 0 +3 6235 12.814556809491 0 +3 6235 12.814556809491 0 +3 6243 12.814716809491 0 +3 6243 12.814716809491 0 +3 6274 12.824398688243 0 +3 6274 12.824398688243 0 +3 6281 12.824558688243 0 +3 6281 12.824558688243 0 +3 6312 12.831276381695 0 +3 6312 12.831276381695 0 +3 6319 12.831436381695 0 +3 6319 12.831436381695 0 +3 6356 12.857384241685 0 +3 6356 12.857384241685 0 +3 6367 12.857544241685 0 +3 6367 12.857544241685 0 +3 6428 12.943993784749 0 +3 6428 12.943993784749 0 +3 6443 12.944153784749 0 +3 6443 12.944153784749 0 +3 6476 13.114556809491 0 +3 6476 13.114556809491 0 +3 6484 13.114716809491 0 +3 6484 13.114716809491 0 +3 6515 13.124398703844 0 +3 6515 13.124398703844 0 +3 6522 13.124558703844 0 +3 6522 13.124558703844 0 +3 6553 13.131276366027 0 +3 6553 13.131276366027 0 +3 6560 13.131436366027 0 +3 6560 13.131436366027 0 +3 6597 13.157384252586 0 +3 6597 13.157384252586 0 +3 6608 13.157544252586 0 +3 6608 13.157544252586 0 +3 6669 13.243993770092 0 +3 6669 13.243993770092 0 +3 6684 13.244153770092 0 +3 6684 13.244153770092 0 +3 6717 13.414556809491 0 +3 6717 13.414556809491 0 +3 6725 13.414716809491 0 +3 6725 13.414716809491 0 +3 6756 13.424398719435 0 +3 6756 13.424398719435 0 +3 6763 13.424558719435 0 +3 6763 13.424558719435 0 +3 6794 13.431276350417 0 +3 6794 13.431276350417 0 +3 6801 13.431436350417 0 +3 6801 13.431436350417 0 +3 6838 13.457384263637 0 +3 6838 13.457384263637 0 +3 6849 13.457544263637 0 +3 6849 13.457544263637 0 +3 6910 13.543993755468 0 +3 6910 13.543993755468 0 +3 6925 13.544153755468 0 +3 6925 13.544153755468 0 +3 6958 13.714556809491 0 +3 6958 13.714556809491 0 +3 6966 13.714716809491 0 +3 6966 13.714716809491 0 +3 6997 13.724398735043 0 +3 6997 13.724398735043 0 +3 7004 13.724558735043 0 +3 7004 13.724558735043 0 +3 7035 13.731276334798 0 +3 7035 13.731276334798 0 +3 7042 13.731436334798 0 +3 7042 13.731436334798 0 +3 7079 13.757384274837 0 +3 7079 13.757384274837 0 +3 7090 13.757544274837 0 +3 7090 13.757544274837 0 +3 7151 13.843993740827 0 +3 7151 13.843993740827 0 +3 7166 13.844153740827 0 +3 7166 13.844153740827 0 +3 7199 14.014556809491 0 +3 7199 14.014556809491 0 +3 7207 14.014716809491 0 +3 7207 14.014716809491 0 +3 7238 14.024398750707 0 +3 7238 14.024398750707 0 +3 7245 14.024558750707 0 +3 7245 14.024558750707 0 +3 7276 14.031276319127 0 +3 7276 14.031276319127 0 +3 7283 14.031436319127 0 +3 7283 14.031436319127 0 +3 7320 14.05738428623 0 +3 7320 14.05738428623 0 +3 7331 14.05754428623 0 +3 7331 14.05754428623 0 +3 7392 14.14399372616 0 +3 7392 14.14399372616 0 +3 7407 14.14415372616 0 +3 7407 14.14415372616 0 +3 7440 14.314556809491 0 +3 7440 14.314556809491 0 +3 7448 14.314716809491 0 +3 7448 14.314716809491 0 +3 7479 14.324398766341 0 +3 7479 14.324398766341 0 +3 7486 14.324558766341 0 +3 7486 14.324558766341 0 +3 7517 14.331276303517 0 +3 7517 14.331276303517 0 +3 7524 14.331436303517 0 +3 7524 14.331436303517 0 +3 7561 14.357384297742 0 +3 7561 14.357384297742 0 +3 7572 14.357544297742 0 +3 7572 14.357544297742 0 +3 7633 14.443993711546 0 +3 7633 14.443993711546 0 +3 7648 14.444153711546 0 +3 7648 14.444153711546 0 +3 7681 14.614556809491 0 +3 7681 14.614556809491 0 +3 7689 14.614716809491 0 +3 7689 14.614716809491 0 +3 7720 14.624398781946 0 +3 7720 14.624398781946 0 +3 7727 14.624558781946 0 +3 7727 14.624558781946 0 +3 7758 14.631276287929 0 +3 7758 14.631276287929 0 +3 7765 14.631436287929 0 +3 7765 14.631436287929 0 +3 7802 14.657384309371 0 +3 7802 14.657384309371 0 +3 7813 14.657544309371 0 +3 7813 14.657544309371 0 +3 7874 14.743993696951 0 +3 7874 14.743993696951 0 +3 7889 14.744153696951 0 +3 7889 14.744153696951 0 +3 7922 14.914556809491 0 +3 7922 14.914556809491 0 +3 7930 14.914716809491 0 +3 7930 14.914716809491 0 +3 7961 14.924398797557 0 +3 7961 14.924398797557 0 +3 7968 14.924558797557 0 +3 7968 14.924558797557 0 +3 7999 14.931276272358 0 +3 7999 14.931276272358 0 +3 8006 14.931436272358 0 +3 8006 14.931436272358 0 +3 8043 14.957384321127 0 +3 8043 14.957384321127 0 +3 8054 14.957544321127 0 +3 8054 14.957544321127 0 +3 8115 15.043993682366 0 +3 8115 15.043993682366 0 +3 8130 15.044153682366 0 +3 8130 15.044153682366 0 +3 8163 15.214556809491 0 +3 8163 15.214556809491 0 +3 8171 15.214716809491 0 +3 8171 15.214716809491 0 +3 8202 15.224398813176 0 +3 8202 15.224398813176 0 +3 8209 15.224558813176 0 +3 8209 15.224558813176 0 +3 8240 15.231276256794 0 +3 8240 15.231276256794 0 +3 8247 15.231436256794 0 +3 8247 15.231436256794 0 +3 8284 15.257384333003 0 +3 8284 15.257384333003 0 +3 8295 15.257544333003 0 +3 8295 15.257544333003 0 +3 8356 15.343993667781 0 +3 8356 15.343993667781 0 +3 8371 15.344153667781 0 +3 8371 15.344153667781 0 +3 8404 15.514556809491 0 +3 8404 15.514556809491 0 +3 8412 15.514716809491 0 +3 8412 15.514716809491 0 +3 8443 15.524398828841 0 +3 8443 15.524398828841 0 +3 8450 15.524558828841 0 +3 8450 15.524558828841 0 +3 8481 15.531276241243 0 +3 8481 15.531276241243 0 +3 8488 15.531436241243 0 +3 8488 15.531436241243 0 +3 8525 15.557384345028 0 +3 8525 15.557384345028 0 +3 8536 15.557544345028 0 +3 8536 15.557544345028 0 +3 8597 15.643993653166 0 +3 8597 15.643993653166 0 +3 8612 15.644153653166 0 +3 8612 15.644153653166 0 +3 8645 15.814556809491 0 +3 8645 15.814556809491 0 +3 8653 15.814716809491 0 +3 8653 15.814716809491 0 +3 8684 15.824398844455 0 +3 8684 15.824398844455 0 +3 8691 15.824558844455 0 +3 8691 15.824558844455 0 +3 8722 15.831276225819 0 +3 8722 15.831276225819 0 +3 8729 15.831436225819 0 +3 8729 15.831436225819 0 +3 8766 15.857384357121 0 +3 8766 15.857384357121 0 +3 8777 15.857544357121 0 +3 8777 15.857544357121 0 +3 8838 15.943993638616 0 +3 8838 15.943993638616 0 +3 8853 15.944153638616 0 +3 8853 15.944153638616 0 +3 8886 16.114556809491 0 +3 8886 16.114556809491 0 +3 8894 16.114716809491 0 +3 8894 16.114716809491 0 +3 8929 16.124398860085 0 +3 8929 16.124398860085 0 +3 8936 16.124558860085 0 +3 8936 16.124558860085 0 +3 8967 16.131276210464 0 +3 8967 16.131276210464 0 +3 8974 16.131436210464 0 +3 8974 16.131436210464 0 +3 9011 16.157384369327 0 +3 9011 16.157384369327 0 +3 9022 16.157544369327 0 +3 9022 16.157544369327 0 +3 9046 16.193586240802 0 +3 9046 16.193586240802 0 +3 9061 16.193746240802 0 +3 9061 16.193746240802 0 +3 9087 16.243993624037 0 +3 9087 16.243993624037 0 +3 9102 16.244153624037 0 +3 9102 16.244153624037 0 +3 9135 16.414556809491 0 +3 9135 16.414556809491 0 +3 9143 16.414716809491 0 +3 9143 16.414716809491 0 +3 9178 16.424398875726 0 +3 9178 16.424398875726 0 +3 9185 16.424558875726 0 +3 9185 16.424558875726 0 +3 9216 16.431276195381 0 +3 9216 16.431276195381 0 +3 9223 16.431436195381 0 +3 9223 16.431436195381 0 +3 9260 16.457384381652 0 +3 9260 16.457384381652 0 +3 9271 16.457544381652 0 +3 9271 16.457544381652 0 +3 9295 16.4935862136 0 +3 9295 16.4935862136 0 +3 9310 16.4937462136 0 +3 9310 16.4937462136 0 +3 9336 16.54399360942 0 +3 9336 16.54399360942 0 +3 9351 16.54415360942 0 +3 9351 16.54415360942 0 +3 9384 16.714556809491 0 +3 9384 16.714556809491 0 +3 9392 16.714716809491 0 +3 9392 16.714716809491 0 +3 9427 16.724398891381 0 +3 9427 16.724398891381 0 +3 9434 16.724558891381 0 +3 9434 16.724558891381 0 +3 9465 16.731276181333 0 +3 9465 16.731276181333 0 +3 9472 16.731436181333 0 +3 9472 16.731436181333 0 +3 9509 16.757384394067 0 +3 9509 16.757384394067 0 +3 9520 16.757544394067 0 +3 9520 16.757544394067 0 +3 9544 16.793586189096 0 +3 9544 16.793586189096 0 +3 9559 16.793746189096 0 +3 9559 16.793746189096 0 +3 9585 16.84399359486 0 +3 9585 16.84399359486 0 +3 9600 16.84415359486 0 +3 9600 16.84415359486 0 +3 9633 17.014556809491 0 +3 9633 17.014556809491 0 +3 9641 17.014716809491 0 +3 9641 17.014716809491 0 +3 9677 17.02439890702 0 +3 9677 17.02439890702 0 +3 9688 17.02455890702 0 +3 9688 17.02455890702 0 +3 9714 17.031276173692 0 +3 9714 17.031276173692 0 +3 9721 17.031436173692 0 +3 9721 17.031436173692 0 +3 9758 17.057384406545 0 +3 9758 17.057384406545 0 +3 9769 17.057544406545 0 +3 9769 17.057544406545 0 +3 9792 17.093586167318 0 +3 9792 17.093586167318 0 +3 9803 17.093746167318 0 +3 9803 17.093746167318 0 +3 9833 17.143993580311 0 +3 9833 17.143993580311 0 +3 9844 17.144153580311 0 +3 9844 17.144153580311 0 +3 9882 17.314556809491 0 +3 9882 17.314556809491 0 +3 9890 17.314716809491 0 +3 9890 17.314716809491 0 +3 9926 17.324398922703 0 +3 9926 17.324398922703 0 +3 9937 17.324558922703 0 +3 9937 17.324558922703 0 +3 9963 17.331276182573 0 +3 9963 17.331276182573 0 +3 9970 17.331436182573 0 +3 9970 17.331436182573 0 +3 10008 17.357384419138 0 +3 10008 17.357384419138 0 +3 10023 17.357544419138 0 +3 10023 17.357544419138 0 +3 10041 17.39358614821 0 +3 10041 17.39358614821 0 +3 10052 17.39374614821 0 +3 10052 17.39374614821 0 +3 10082 17.443993565736 0 +3 10082 17.443993565736 0 +3 10093 17.444153565736 0 +3 10093 17.444153565736 0 +3 10131 17.614556809491 0 +3 10131 17.614556809491 0 +3 10139 17.614716809491 0 +3 10139 17.614716809491 0 +3 10175 17.624398938357 0 +3 10175 17.624398938357 0 +3 10186 17.624558938357 0 +3 10186 17.624558938357 0 +3 10212 17.631276196794 0 +3 10212 17.631276196794 0 +3 10219 17.631436196794 0 +3 10219 17.631436196794 0 +3 10257 17.657384431773 0 +3 10257 17.657384431773 0 +3 10272 17.657544431773 0 +3 10272 17.657544431773 0 +3 10290 17.69358613177 0 +3 10290 17.69358613177 0 +3 10301 17.69374613177 0 +3 10301 17.69374613177 0 +3 10331 17.743993551191 0 +3 10331 17.743993551191 0 +3 10342 17.744153551191 0 +3 10342 17.744153551191 0 +3 10380 17.914556809491 0 +3 10380 17.914556809491 0 +3 10388 17.914716809491 0 +3 10388 17.914716809491 0 +3 10420 17.924398954 0 +3 10420 17.924398954 0 +3 10431 17.924558954 0 +3 10431 17.924558954 0 +3 10457 17.931276211881 0 +3 10457 17.931276211881 0 +3 10464 17.931436211881 0 +3 10464 17.931436211881 0 +3 10502 17.957384444486 0 +3 10502 17.957384444486 0 +3 10517 17.957544444486 0 +3 10517 17.957544444486 0 +3 10531 17.993586116127 0 +3 10531 17.993586116127 0 +3 10542 17.993746116127 0 +3 10542 17.993746116127 0 +3 10572 18.04399353668 0 +3 10572 18.04399353668 0 +3 10583 18.04415353668 0 +3 10583 18.04415353668 0 +3 10621 18.214556809491 0 +3 10621 18.214556809491 0 +3 10629 18.214716809491 0 +3 10629 18.214716809491 0 +3 10661 18.224398969656 0 +3 10661 18.224398969656 0 +3 10672 18.224558969656 0 +3 10672 18.224558969656 0 +3 10694 18.231276227234 0 +3 10694 18.231276227234 0 +3 10701 18.231436227234 0 +3 10701 18.231436227234 0 +3 10768 18.293586100476 0 +3 10768 18.293586100476 0 +3 10779 18.293746100476 0 +3 10779 18.293746100476 0 +3 10809 18.343993522105 0 +3 10809 18.343993522105 0 +3 10820 18.344153522105 0 +3 10820 18.344153522105 0 +3 10854 18.514556809491 0 +3 10854 18.514556809491 0 +3 10862 18.514716809491 0 +3 10862 18.514716809491 0 +3 10894 18.524398984772 0 +3 10894 18.524398984772 0 +3 10905 18.524558984772 0 +3 10905 18.524558984772 0 +3 10927 18.531276242598 0 +3 10927 18.531276242598 0 +3 10934 18.531436242598 0 +3 10934 18.531436242598 0 +3 11001 18.593586085525 0 +3 11001 18.593586085525 0 +3 11012 18.593746085525 0 +3 11012 18.593746085525 0 +3 11042 18.643993508193 0 +3 11042 18.643993508193 0 +3 11053 18.644153508193 0 +3 11053 18.644153508193 0 +3 11087 18.814556809491 0 +3 11087 18.814556809491 0 +3 11095 18.814716809491 0 +3 11095 18.814716809491 0 +3 11127 18.824398992869 0 +3 11127 18.824398992869 0 +3 11138 18.824558992869 0 +3 11138 18.824558992869 0 +3 11160 18.831276252819 0 +3 11160 18.831276252819 0 +3 11167 18.831436252819 0 +3 11167 18.831436252819 0 +3 11234 18.893586078461 0 +3 11234 18.893586078461 0 +3 11245 18.893746078461 0 +3 11245 18.893746078461 0 +3 11275 18.9439935017 0 +3 11275 18.9439935017 0 +3 11286 18.9441535017 0 +3 11286 18.9441535017 0 +3 11320 19.114556809491 0 +3 11320 19.114556809491 0 +3 11328 19.114716809491 0 +3 11328 19.114716809491 0 +3 11360 19.124398995465 0 +3 11360 19.124398995465 0 +3 11371 19.124558995465 0 +3 11371 19.124558995465 0 +3 11393 19.131276259429 0 +3 11393 19.131276259429 0 +3 11400 19.131436259429 0 +3 11400 19.131436259429 0 +3 11467 19.193586077908 0 +3 11467 19.193586077908 0 +3 11478 19.193746077908 0 +3 11478 19.193746077908 0 +3 11508 19.243993499144 0 +3 11508 19.243993499144 0 +3 11519 19.244153499144 0 +3 11519 19.244153499144 0 +3 11553 19.414556809491 0 +3 11553 19.414556809491 0 +3 11561 19.414716809491 0 +3 11561 19.414716809491 0 +3 11593 19.424398998137 0 +3 11593 19.424398998137 0 +3 11604 19.424558998137 0 +3 11604 19.424558998137 0 +3 11626 19.431276267371 0 +3 11626 19.431276267371 0 +3 11633 19.431436267371 0 +3 11633 19.431436267371 0 +3 11700 19.493586078167 0 +3 11700 19.493586078167 0 +3 11711 19.493746078167 0 +3 11711 19.493746078167 0 +3 11741 19.543993497268 0 +3 11741 19.543993497268 0 +3 11752 19.544153497268 0 +3 11752 19.544153497268 0 +3 11786 19.714556809491 0 +3 11786 19.714556809491 0 +3 11794 19.714716809491 0 +3 11794 19.714716809491 0 +3 11826 19.724399001753 0 +3 11826 19.724399001753 0 +3 11837 19.724559001753 0 +3 11837 19.724559001753 0 +3 11859 19.731276277055 0 +3 11859 19.731276277055 0 +3 11866 19.731436277055 0 +3 11866 19.731436277055 0 +3 11933 19.793586078318 0 +3 11933 19.793586078318 0 +3 11944 19.793746078318 0 +3 11944 19.793746078318 0 +3 11974 19.843993496076 0 +3 11974 19.843993496076 0 +3 11985 19.844153496076 0 +3 11985 19.844153496076 0 +3 12019 20.014556809491 0 +3 12019 20.014556809491 0 +3 12027 20.014716809491 0 +3 12027 20.014716809491 0 +3 12063 20.024399006417 0 +3 12063 20.024399006417 0 +3 12074 20.024559006417 0 +3 12074 20.024559006417 0 +3 12096 20.031276288225 0 +3 12096 20.031276288225 0 +3 12103 20.031436288225 0 +3 12103 20.031436288225 0 +3 12141 20.057384440568 0 +3 12141 20.057384440568 0 +3 12156 20.057544440568 0 +3 12156 20.057544440568 0 +3 12174 20.093586078154 0 +3 12174 20.093586078154 0 +3 12185 20.093746078154 0 +3 12185 20.093746078154 0 +3 12215 20.143993495659 0 +3 12215 20.143993495659 0 +3 12226 20.144153495659 0 +3 12226 20.144153495659 0 +3 12260 20.314556809491 0 +3 12260 20.314556809491 0 +3 12268 20.314716809491 0 +3 12268 20.314716809491 0 +3 12304 20.324399012107 0 +3 12304 20.324399012107 0 +3 12315 20.324559012107 0 +3 12315 20.324559012107 0 +3 12337 20.331276300497 0 +3 12337 20.331276300497 0 +3 12344 20.331436300497 0 +3 12344 20.331436300497 0 +3 12382 20.357384434459 0 +3 12382 20.357384434459 0 +3 12397 20.357544434459 0 +3 12397 20.357544434459 0 +3 12415 20.393586077762 0 +3 12415 20.393586077762 0 +3 12426 20.393746077762 0 +3 12426 20.393746077762 0 +3 12456 20.443993496115 0 +3 12456 20.443993496115 0 +3 12467 20.444153496115 0 +3 12467 20.444153496115 0 +3 12501 20.614556809491 0 +3 12501 20.614556809491 0 +3 12509 20.614716809491 0 +3 12509 20.614716809491 0 +3 12545 20.624399018883 0 +3 12545 20.624399018883 0 +3 12556 20.624559018883 0 +3 12556 20.624559018883 0 +3 12578 20.631276313658 0 +3 12578 20.631276313658 0 +3 12585 20.631436313658 0 +3 12585 20.631436313658 0 +3 12623 20.657384428826 0 +3 12623 20.657384428826 0 +3 12638 20.657544428826 0 +3 12638 20.657544428826 0 +3 12656 20.693586077186 0 +3 12656 20.693586077186 0 +3 12667 20.693746077186 0 +3 12667 20.693746077186 0 +3 12697 20.743993497538 0 +3 12697 20.743993497538 0 +3 12708 20.744153497538 0 +3 12708 20.744153497538 0 +3 12742 20.914556809491 0 +3 12742 20.914556809491 0 +3 12750 20.914716809491 0 +3 12750 20.914716809491 0 +3 12786 20.924399026768 0 +3 12786 20.924399026768 0 +3 12797 20.924559026768 0 +3 12797 20.924559026768 0 +3 12819 20.931276327544 0 +3 12819 20.931276327544 0 +3 12826 20.931436327544 0 +3 12826 20.931436327544 0 +3 12864 20.957384423566 0 +3 12864 20.957384423566 0 +3 12879 20.957544423566 0 +3 12879 20.957544423566 0 +3 12897 20.993586076495 0 +3 12897 20.993586076495 0 +3 12908 20.993746076495 0 +3 12908 20.993746076495 0 +3 12938 21.043993500002 0 +3 12938 21.043993500002 0 +3 12949 21.044153500002 0 +3 12949 21.044153500002 0 +3 12983 21.214556809491 0 +3 12983 21.214556809491 0 +3 12991 21.214716809491 0 +3 12991 21.214716809491 0 +3 13027 21.224399035584 0 +3 13027 21.224399035584 0 +3 13038 21.224559035584 0 +3 13038 21.224559035584 0 +3 13060 21.231276341939 0 +3 13060 21.231276341939 0 +3 13067 21.231436341939 0 +3 13067 21.231436341939 0 +3 13105 21.257384418748 0 +3 13105 21.257384418748 0 +3 13120 21.257544418748 0 +3 13120 21.257544418748 0 +3 13138 21.293586075717 0 +3 13138 21.293586075717 0 +3 13149 21.293746075717 0 +3 13149 21.293746075717 0 +3 13179 21.343993503566 0 +3 13179 21.343993503566 0 +3 13190 21.344153503566 0 +3 13190 21.344153503566 0 +3 13224 21.514556809491 0 +3 13224 21.514556809491 0 +3 13232 21.514716809491 0 +3 13232 21.514716809491 0 +3 13268 21.524399045258 0 +3 13268 21.524399045258 0 +3 13279 21.524559045258 0 +3 13279 21.524559045258 0 +3 13301 21.531276356826 0 +3 13301 21.531276356826 0 +3 13308 21.531436356826 0 +3 13308 21.531436356826 0 +3 13346 21.557384414308 0 +3 13346 21.557384414308 0 +3 13361 21.557544414308 0 +3 13361 21.557544414308 0 +3 13379 21.593586074727 0 +3 13379 21.593586074727 0 +3 13390 21.593746074727 0 +3 13390 21.593746074727 0 +3 13420 21.643993508321 0 +3 13420 21.643993508321 0 +3 13431 21.644153508321 0 +3 13431 21.644153508321 0 +3 13465 21.814556809491 0 +3 13465 21.814556809491 0 +3 13473 21.814716809491 0 +3 13473 21.814716809491 0 +3 13509 21.82439905578 0 +3 13509 21.82439905578 0 +3 13520 21.82455905578 0 +3 13520 21.82455905578 0 +3 13542 21.831276372147 0 +3 13542 21.831276372147 0 +3 13549 21.831436372147 0 +3 13549 21.831436372147 0 +3 13587 21.85738441021 0 +3 13587 21.85738441021 0 +3 13602 21.85754441021 0 +3 13602 21.85754441021 0 +3 13620 21.893586073568 0 +3 13620 21.893586073568 0 +3 13631 21.893746073568 0 +3 13631 21.893746073568 0 +3 13661 21.943993514273 0 +3 13661 21.943993514273 0 +3 13672 21.944153514273 0 +3 13672 21.944153514273 0 +3 13706 22.114556809491 0 +3 13706 22.114556809491 0 +3 13714 22.114716809491 0 +3 13714 22.114716809491 0 +3 13750 22.124399067102 0 +3 13750 22.124399067102 0 +3 13761 22.124559067102 0 +3 13761 22.124559067102 0 +3 13783 22.131276387853 0 +3 13783 22.131276387853 0 +3 13790 22.131436387853 0 +3 13790 22.131436387853 0 +3 13828 22.157384406427 0 +3 13828 22.157384406427 0 +3 13843 22.157544406427 0 +3 13843 22.157544406427 0 +3 13861 22.193586072252 0 +3 13861 22.193586072252 0 +3 13872 22.193746072252 0 +3 13872 22.193746072252 0 +3 13902 22.243993521464 0 +3 13902 22.243993521464 0 +3 13913 22.244153521464 0 +3 13913 22.244153521464 0 +3 13947 22.414556809491 0 +3 13947 22.414556809491 0 +3 13955 22.414716809491 0 +3 13955 22.414716809491 0 +3 13991 22.424399079181 0 +3 13991 22.424399079181 0 +3 14002 22.424559079181 0 +3 14002 22.424559079181 0 +3 14024 22.431276403914 0 +3 14024 22.431276403914 0 +3 14031 22.431436403914 0 +3 14031 22.431436403914 0 +3 14069 22.457384402943 0 +3 14069 22.457384402943 0 +3 14084 22.457544402943 0 +3 14084 22.457544402943 0 +3 14102 22.4935860709 0 +3 14102 22.4935860709 0 +3 14113 22.4937460709 0 +3 14113 22.4937460709 0 +3 14143 22.543993529992 0 +3 14143 22.543993529992 0 +3 14154 22.544153529992 0 +3 14154 22.544153529992 0 +3 14188 22.714556809491 0 +3 14188 22.714556809491 0 +3 14196 22.714716809491 0 +3 14196 22.714716809491 0 +3 14232 22.724399091991 0 +3 14232 22.724399091991 0 +3 14243 22.724559091991 0 +3 14243 22.724559091991 0 +3 14265 22.731276420334 0 +3 14265 22.731276420334 0 +3 14272 22.731436420334 0 +3 14272 22.731436420334 0 +3 14310 22.757384399779 0 +3 14310 22.757384399779 0 +3 14325 22.757544399779 0 +3 14325 22.757544399779 0 +3 14343 22.793586069444 0 +3 14343 22.793586069444 0 +3 14354 22.793746069444 0 +3 14354 22.793746069444 0 +3 14384 22.843993539394 0 +3 14384 22.843993539394 0 +3 14395 22.844153539394 0 +3 14395 22.844153539394 0 +3 14429 23.014556809491 0 +3 14429 23.014556809491 0 +3 14437 23.014716809491 0 +3 14437 23.014716809491 0 +3 14474 23.02439910552 0 +3 14474 23.02439910552 0 +3 14489 23.02455910552 0 +3 14489 23.02455910552 0 +3 14506 23.031276437066 0 +3 14506 23.031276437066 0 +3 14513 23.031436437066 0 +3 14513 23.031436437066 0 +3 14551 23.057384396928 0 +3 14551 23.057384396928 0 +3 14566 23.057544396928 0 +3 14566 23.057544396928 0 +3 14584 23.093586067888 0 +3 14584 23.093586067888 0 +3 14595 23.093746067888 0 +3 14595 23.093746067888 0 +3 14625 23.143993549741 0 +3 14625 23.143993549741 0 +3 14636 23.144153549741 0 +3 14636 23.144153549741 0 +3 14670 23.314556809491 0 +3 14670 23.314556809491 0 +3 14678 23.314716809491 0 +3 14678 23.314716809491 0 +3 14715 23.324399119693 0 +3 14715 23.324399119693 0 +3 14730 23.324559119693 0 +3 14730 23.324559119693 0 +3 14747 23.331276454133 0 +3 14747 23.331276454133 0 +3 14754 23.331436454133 0 +3 14754 23.331436454133 0 +3 14792 23.357384394378 0 +3 14792 23.357384394378 0 +3 14807 23.357544394378 0 +3 14807 23.357544394378 0 +3 14825 23.393586066244 0 +3 14825 23.393586066244 0 +3 14836 23.393746066244 0 +3 14836 23.393746066244 0 +3 14866 23.443993561136 0 +3 14866 23.443993561136 0 +3 14877 23.444153561136 0 +3 14877 23.444153561136 0 +3 14911 23.614556809491 0 +3 14911 23.614556809491 0 +3 14919 23.614716809491 0 +3 14919 23.614716809491 0 +3 14956 23.624399134588 0 +3 14956 23.624399134588 0 +3 14971 23.624559134588 0 +3 14971 23.624559134588 0 +3 14988 23.63127647154 0 +3 14988 23.63127647154 0 +3 14995 23.63143647154 0 +3 14995 23.63143647154 0 +3 15033 23.6573843921 0 +3 15033 23.6573843921 0 +3 15048 23.6575443921 0 +3 15048 23.6575443921 0 +3 15066 23.693586064635 0 +3 15066 23.693586064635 0 +3 15077 23.693746064635 0 +3 15077 23.693746064635 0 +3 15107 23.743993567162 0 +3 15107 23.743993567162 0 +3 15118 23.744153567162 0 +3 15118 23.744153567162 0 +3 15152 23.914556809491 0 +3 15152 23.914556809491 0 +3 15160 23.914716809491 0 +3 15160 23.914716809491 0 +3 15197 23.924399150101 0 +3 15197 23.924399150101 0 +3 15212 23.924559150101 0 +3 15212 23.924559150101 0 +3 15230 23.931276489241 0 +3 15230 23.931276489241 0 +3 15241 23.931436489241 0 +3 15241 23.931436489241 0 +3 15274 23.957384390086 0 +3 15274 23.957384390086 0 +3 15289 23.957544390086 0 +3 15289 23.957544390086 0 +3 15307 23.993586063012 0 +3 15307 23.993586063012 0 +3 15318 23.993746063012 0 +3 15318 23.993746063012 0 +3 15348 24.043993568182 0 +3 15348 24.043993568182 0 +3 15359 24.044153568182 0 +3 15359 24.044153568182 0 +3 15393 24.214556809491 0 +3 15393 24.214556809491 0 +3 15401 24.214716809491 0 +3 15401 24.214716809491 0 +3 15438 24.224399166253 0 +3 15438 24.224399166253 0 +3 15453 24.224559166253 0 +3 15453 24.224559166253 0 +3 15471 24.231276507166 0 +3 15471 24.231276507166 0 +3 15482 24.231436507166 0 +3 15482 24.231436507166 0 +3 15514 24.257384388316 0 +3 15514 24.257384388316 0 +3 15525 24.257544388316 0 +3 15525 24.257544388316 0 +3 15548 24.293586061339 0 +3 15548 24.293586061339 0 +3 15559 24.293746061339 0 +3 15559 24.293746061339 0 +3 15589 24.343993571496 0 +3 15589 24.343993571496 0 +3 15600 24.344153571496 0 +3 15600 24.344153571496 0 +3 15634 24.514556809491 0 +3 15634 24.514556809491 0 +3 15642 24.514716809491 0 +3 15642 24.514716809491 0 +3 15679 24.524399183101 0 +3 15679 24.524399183101 0 +3 15694 24.524559183101 0 +3 15694 24.524559183101 0 +3 15712 24.531276525482 0 +3 15712 24.531276525482 0 +3 15723 24.531436525482 0 +3 15723 24.531436525482 0 +3 15755 24.557384386729 0 +3 15755 24.557384386729 0 +3 15766 24.557544386729 0 +3 15766 24.557544386729 0 +3 15789 24.593586059807 0 +3 15789 24.593586059807 0 +3 15800 24.593746059807 0 +3 15800 24.593746059807 0 +3 15830 24.6439935745 0 +3 15830 24.6439935745 0 +3 15841 24.6441535745 0 +3 15841 24.6441535745 0 +3 15875 24.814556809491 0 +3 15875 24.814556809491 0 +3 15883 24.814716809491 0 +3 15883 24.814716809491 0 +3 15920 24.824399200464 0 +3 15920 24.824399200464 0 +3 15935 24.824559200464 0 +3 15935 24.824559200464 0 +3 15953 24.831276544164 0 +3 15953 24.831276544164 0 +3 15964 24.831436544164 0 +3 15964 24.831436544164 0 +3 15996 24.857384385359 0 +3 15996 24.857384385359 0 +3 16007 24.857544385359 0 +3 16007 24.857544385359 0 +3 16030 24.893586058439 0 +3 16030 24.893586058439 0 +3 16041 24.893746058439 0 +3 16041 24.893746058439 0 +3 16071 24.943993577203 0 +3 16071 24.943993577203 0 +3 16082 24.944153577203 0 +3 16082 24.944153577203 0 +3 16116 25.114556809491 0 +3 16116 25.114556809491 0 +3 16124 25.114716809491 0 +3 16124 25.114716809491 0 +3 16161 25.12439921797 0 +3 16161 25.12439921797 0 +3 16176 25.12455921797 0 +3 16176 25.12455921797 0 +3 16194 25.131276563184 0 +3 16194 25.131276563184 0 +3 16205 25.131436563184 0 +3 16205 25.131436563184 0 +3 16237 25.157384384197 0 +3 16237 25.157384384197 0 +3 16248 25.157544384197 0 +3 16248 25.157544384197 0 +3 16271 25.193586057203 0 +3 16271 25.193586057203 0 +3 16282 25.193746057203 0 +3 16282 25.193746057203 0 +3 16312 25.24399357959 0 +3 16312 25.24399357959 0 +3 16323 25.24415357959 0 +3 16323 25.24415357959 0 +3 16357 25.414556809491 0 +3 16357 25.414556809491 0 +3 16365 25.414716809491 0 +3 16365 25.414716809491 0 +3 16402 25.424399235494 0 +3 16402 25.424399235494 0 +3 16417 25.424559235494 0 +3 16417 25.424559235494 0 +3 16435 25.431276582461 0 +3 16435 25.431276582461 0 +3 16446 25.431436582461 0 +3 16446 25.431436582461 0 +3 16478 25.457384383218 0 +3 16478 25.457384383218 0 +3 16489 25.457544383218 0 +3 16489 25.457544383218 0 +3 16512 25.493586056133 0 +3 16512 25.493586056133 0 +3 16523 25.493746056133 0 +3 16523 25.493746056133 0 +3 16553 25.543993581628 0 +3 16553 25.543993581628 0 +3 16564 25.544153581628 0 +3 16564 25.544153581628 0 +3 16598 25.714556809491 0 +3 16598 25.714556809491 0 +3 16606 25.714716809491 0 +3 16606 25.714716809491 0 +3 16643 25.72439925309 0 +3 16643 25.72439925309 0 +3 16658 25.72455925309 0 +3 16658 25.72455925309 0 +3 16676 25.731276602139 0 +3 16676 25.731276602139 0 +3 16687 25.731436602139 0 +3 16687 25.731436602139 0 +3 16719 25.757384382378 0 +3 16719 25.757384382378 0 +3 16730 25.757544382378 0 +3 16730 25.757544382378 0 +3 16753 25.793586055358 0 +3 16753 25.793586055358 0 +3 16764 25.793746055358 0 +3 16764 25.793746055358 0 +3 16794 25.843993583304 0 +3 16794 25.843993583304 0 +3 16805 25.844153583304 0 +3 16805 25.844153583304 0 +3 16839 26.014556809491 0 +3 16839 26.014556809491 0 +3 16847 26.014716809491 0 +3 16847 26.014716809491 0 +3 16884 26.02439927079 0 +3 16884 26.02439927079 0 +3 16899 26.02455927079 0 +3 16899 26.02455927079 0 +3 16917 26.031276621424 0 +3 16917 26.031276621424 0 +3 16928 26.031436621424 0 +3 16928 26.031436621424 0 +3 16960 26.057384381741 0 +3 16960 26.057384381741 0 +3 16971 26.057544381741 0 +3 16971 26.057544381741 0 +3 16994 26.093586054815 0 +3 16994 26.093586054815 0 +3 17005 26.093746054815 0 +3 17005 26.093746054815 0 +3 17035 26.143993584607 0 +3 17035 26.143993584607 0 +3 17046 26.144153584607 0 +3 17046 26.144153584607 0 +3 17080 26.314556809491 0 +3 17080 26.314556809491 0 +3 17088 26.314716809491 0 +3 17088 26.314716809491 0 +3 17125 26.324399288461 0 +3 17125 26.324399288461 0 +3 17140 26.324559288461 0 +3 17140 26.324559288461 0 +3 17158 26.331276639945 0 +3 17158 26.331276639945 0 +3 17169 26.331436639945 0 +3 17169 26.331436639945 0 +3 17201 26.357384381246 0 +3 17201 26.357384381246 0 +3 17212 26.357544381246 0 +3 17212 26.357544381246 0 +3 17235 26.393586054911 0 +3 17235 26.393586054911 0 +3 17246 26.393746054911 0 +3 17246 26.393746054911 0 +3 17276 26.443993585474 0 +3 17276 26.443993585474 0 +3 17287 26.444153585474 0 +3 17287 26.444153585474 0 +3 17321 26.614556809491 0 +3 17321 26.614556809491 0 +3 17329 26.614716809491 0 +3 17329 26.614716809491 0 +3 17366 26.624399306213 0 +3 17366 26.624399306213 0 +3 17381 26.624559306213 0 +3 17381 26.624559306213 0 +3 17399 26.631276657697 0 +3 17399 26.631276657697 0 +3 17410 26.631436657697 0 +3 17410 26.631436657697 0 +3 17442 26.657384380772 0 +3 17442 26.657384380772 0 +3 17453 26.657544380772 0 +3 17453 26.657544380772 0 +3 17476 26.693586055774 0 +3 17476 26.693586055774 0 +3 17487 26.693746055774 0 +3 17487 26.693746055774 0 +3 17517 26.743993585917 0 +3 17517 26.743993585917 0 +3 17528 26.744153585917 0 +3 17528 26.744153585917 0 +3 17562 26.914556809491 0 +3 17562 26.914556809491 0 +3 17570 26.914716809491 0 +3 17570 26.914716809491 0 +3 17607 26.924399324013 0 +3 17607 26.924399324013 0 +3 17622 26.924559324013 0 +3 17622 26.924559324013 0 +3 17640 26.931276674713 0 +3 17640 26.931276674713 0 +3 17651 26.931436674713 0 +3 17651 26.931436674713 0 +3 17683 26.957384380173 0 +3 17683 26.957384380173 0 +3 17694 26.957544380173 0 +3 17694 26.957544380173 0 +3 17717 26.993586057387 0 +3 17717 26.993586057387 0 +3 17728 26.993746057387 0 +3 17728 26.993746057387 0 +3 17758 27.043993586021 0 +3 17758 27.043993586021 0 +3 17769 27.044153586021 0 +3 17769 27.044153586021 0 +3 17803 27.214556809491 0 +3 17803 27.214556809491 0 +3 17811 27.214716809491 0 +3 17811 27.214716809491 0 +3 17844 27.224399341349 0 +3 17844 27.224399341349 0 +3 17859 27.224559341349 0 +3 17859 27.224559341349 0 +3 17873 27.231276690939 0 +3 17873 27.231276690939 0 +3 17884 27.231436690939 0 +3 17884 27.231436690939 0 +3 17916 27.257384379228 0 +3 17916 27.257384379228 0 +3 17927 27.257544379228 0 +3 17927 27.257544379228 0 +3 17950 27.293586059723 0 +3 17950 27.293586059723 0 +3 17961 27.293746059723 0 +3 17961 27.293746059723 0 +3 17991 27.343993585835 0 +3 17991 27.343993585835 0 +3 18002 27.344153585835 0 +3 18002 27.344153585835 0 +3 18036 27.514556809491 0 +3 18036 27.514556809491 0 +3 18044 27.514716809491 0 +3 18044 27.514716809491 0 +3 18106 27.531276706855 0 +3 18106 27.531276706855 0 +3 18117 27.531436706855 0 +3 18117 27.531436706855 0 +3 18149 27.557384377938 0 +3 18149 27.557384377938 0 +3 18160 27.557544377938 0 +3 18160 27.557544377938 0 +3 18183 27.593586062815 0 +3 18183 27.593586062815 0 +3 18194 27.593746062815 0 +3 18194 27.593746062815 0 +3 18224 27.643993585638 0 +3 18224 27.643993585638 0 +3 18235 27.644153585638 0 +3 18235 27.644153585638 0 +3 18269 27.814556809491 0 +3 18269 27.814556809491 0 +3 18277 27.814716809491 0 +3 18277 27.814716809491 0 +3 18339 27.831276720086 0 +3 18339 27.831276720086 0 +3 18350 27.831436720086 0 +3 18350 27.831436720086 0 +3 18382 27.857384376349 0 +3 18382 27.857384376349 0 +3 18393 27.857544376349 0 +3 18393 27.857544376349 0 +3 18416 27.893586066606 0 +3 18416 27.893586066606 0 +3 18427 27.893746066606 0 +3 18427 27.893746066606 0 +3 18457 27.943993585413 0 +3 18457 27.943993585413 0 +3 18468 27.944153585413 0 +3 18468 27.944153585413 0 +3 18502 28.114556809491 0 +3 18502 28.114556809491 0 +3 18510 28.114716809491 0 +3 18510 28.114716809491 0 +3 18572 28.13127672571 0 +3 18572 28.13127672571 0 +3 18583 28.13143672571 0 +3 18583 28.13143672571 0 +3 18615 28.157384373989 0 +3 18615 28.157384373989 0 +3 18626 28.157544373989 0 +3 18626 28.157544373989 0 +3 18649 28.193586071088 0 +3 18649 28.193586071088 0 +3 18660 28.193746071088 0 +3 18660 28.193746071088 0 +3 18690 28.243993585227 0 +3 18690 28.243993585227 0 +3 18701 28.244153585227 0 +3 18701 28.244153585227 0 +3 18735 28.414556809491 0 +3 18735 28.414556809491 0 +3 18743 28.414716809491 0 +3 18743 28.414716809491 0 +3 18805 28.431276732587 0 +3 18805 28.431276732587 0 +3 18816 28.431436732587 0 +3 18816 28.431436732587 0 +3 18848 28.457384371101 0 +3 18848 28.457384371101 0 +3 18859 28.457544371101 0 +3 18859 28.457544371101 0 +3 18882 28.493586076328 0 +3 18882 28.493586076328 0 +3 18893 28.493746076328 0 +3 18893 28.493746076328 0 +3 18923 28.543993585019 0 +3 18923 28.543993585019 0 +3 18934 28.544153585019 0 +3 18934 28.544153585019 0 +3 18968 28.714556809491 0 +3 18968 28.714556809491 0 +3 18976 28.714716809491 0 +3 18976 28.714716809491 0 +3 19039 28.731276740327 0 +3 19039 28.731276740327 0 +3 19054 28.731436740327 0 +3 19054 28.731436740327 0 +3 19081 28.75738436664 0 +3 19081 28.75738436664 0 +3 19092 28.75754436664 0 +3 19092 28.75754436664 0 +3 19116 28.793586082194 0 +3 19116 28.793586082194 0 +3 19131 28.793746082194 0 +3 19131 28.793746082194 0 +3 19156 28.843993584814 0 +3 19156 28.843993584814 0 +3 19167 28.844153584814 0 +3 19167 28.844153584814 0 +3 19201 29.014556809491 0 +3 19201 29.014556809491 0 +3 19209 29.014716809491 0 +3 19209 29.014716809491 0 +3 19272 29.031276748231 0 +3 19272 29.031276748231 0 +3 19287 29.031436748231 0 +3 19287 29.031436748231 0 +3 19310 29.057384360134 0 +3 19310 29.057384360134 0 +3 19321 29.057544360134 0 +3 19321 29.057544360134 0 +3 19341 29.093586088751 0 +3 19341 29.093586088751 0 +3 19356 29.093746088751 0 +3 19356 29.093746088751 0 +3 19381 29.143993584619 0 +3 19381 29.143993584619 0 +3 19392 29.144153584619 0 +3 19392 29.144153584619 0 +3 19426 29.314556809491 0 +3 19426 29.314556809491 0 +3 19434 29.314716809491 0 +3 19434 29.314716809491 0 +3 19497 29.331276756353 0 +3 19497 29.331276756353 0 +3 19512 29.331436756353 0 +3 19512 29.331436756353 0 +3 19534 29.357384350663 0 +3 19534 29.357384350663 0 +3 19541 29.357544350663 0 +3 19541 29.357544350663 0 +3 19566 29.393586095971 0 +3 19566 29.393586095971 0 +3 19581 29.393746095971 0 +3 19581 29.393746095971 0 +3 19606 29.443993584404 0 +3 19606 29.443993584404 0 +3 19617 29.444153584404 0 +3 19617 29.444153584404 0 +3 19651 29.614556809491 0 +3 19651 29.614556809491 0 +3 19659 29.614716809491 0 +3 19659 29.614716809491 0 +3 19722 29.631276764677 0 +3 19722 29.631276764677 0 +3 19737 29.631436764677 0 +3 19737 29.631436764677 0 +3 19759 29.657384339017 0 +3 19759 29.657384339017 0 +3 19766 29.657544339017 0 +3 19766 29.657544339017 0 +3 19791 29.693586103788 0 +3 19791 29.693586103788 0 +3 19806 29.693746103788 0 +3 19806 29.693746103788 0 +3 19831 29.743993584219 0 +3 19831 29.743993584219 0 +3 19842 29.744153584219 0 +3 19842 29.744153584219 0 +3 19876 29.914556809491 0 +3 19876 29.914556809491 0 +3 19884 29.914716809491 0 +3 19884 29.914716809491 0 +3 19947 29.931276773214 0 +3 19947 29.931276773214 0 +3 19962 29.931436773214 0 +3 19962 29.931436773214 0 +3 19984 29.957384326873 0 +3 19984 29.957384326873 0 +3 19991 29.957544326873 0 +3 19991 29.957544326873 0 +3 20016 29.993586112191 0 +3 20016 29.993586112191 0 +3 20031 29.993746112191 0 +3 20031 29.993746112191 0 +3 20056 30.043993584023 0 +3 20056 30.043993584023 0 +3 20067 30.044153584023 0 +3 20067 30.044153584023 0 +3 20101 30.214556809491 0 +3 20101 30.214556809491 0 +3 20109 30.214716809491 0 +3 20109 30.214716809491 0 +3 20172 30.231276781919 0 +3 20172 30.231276781919 0 +3 20187 30.231436781919 0 +3 20187 30.231436781919 0 +3 20209 30.257384314288 0 +3 20209 30.257384314288 0 +3 20216 30.257544314288 0 +3 20216 30.257544314288 0 +3 20241 30.293586121137 0 +3 20241 30.293586121137 0 +3 20256 30.293746121137 0 +3 20256 30.293746121137 0 +3 20281 30.343993583815 0 +3 20281 30.343993583815 0 +3 20292 30.344153583815 0 +3 20292 30.344153583815 0 +3 20326 30.514556809491 0 +3 20326 30.514556809491 0 +3 20334 30.514716809491 0 +3 20334 30.514716809491 0 +3 20397 30.531276790863 0 +3 20397 30.531276790863 0 +3 20412 30.531436790863 0 +3 20412 30.531436790863 0 +3 20434 30.557384301358 0 +3 20434 30.557384301358 0 +3 20441 30.557544301358 0 +3 20441 30.557544301358 0 +3 20466 30.593586130599 0 +3 20466 30.593586130599 0 +3 20481 30.593746130599 0 +3 20481 30.593746130599 0 +3 20506 30.643993583594 0 +3 20506 30.643993583594 0 +3 20517 30.644153583594 0 +3 20517 30.644153583594 0 +3 20551 30.814556809491 0 +3 20551 30.814556809491 0 +3 20559 30.814716809491 0 +3 20559 30.814716809491 0 +3 20623 30.831276800084 0 +3 20623 30.831276800084 0 +3 20642 30.831436800084 0 +3 20642 30.831436800084 0 +3 20659 30.857384288203 0 +3 20659 30.857384288203 0 +3 20666 30.857544288203 0 +3 20666 30.857544288203 0 +3 20691 30.893586140579 0 +3 20691 30.893586140579 0 +3 20706 30.893746140579 0 +3 20706 30.893746140579 0 +3 20731 30.943993583376 0 +3 20731 30.943993583376 0 +3 20742 30.944153583376 0 +3 20742 30.944153583376 0 +3 20776 31.114556809491 0 +3 20776 31.114556809491 0 +3 20784 31.114716809491 0 +3 20784 31.114716809491 0 +3 20852 31.131276809733 0 +3 20852 31.131276809733 0 +3 20871 31.131436809733 0 +3 20871 31.131436809733 0 +3 20888 31.157384274763 0 +3 20888 31.157384274763 0 +3 20895 31.157544274763 0 +3 20895 31.157544274763 0 +3 20920 31.193586151091 0 +3 20920 31.193586151091 0 +3 20935 31.193746151091 0 +3 20935 31.193746151091 0 +3 20964 31.243993583185 0 +3 20964 31.243993583185 0 +3 20975 31.244153583185 0 +3 20975 31.244153583185 0 +3 21009 31.414556809491 0 +3 21009 31.414556809491 0 +3 21017 31.414716809491 0 +3 21017 31.414716809491 0 +3 21085 31.43127681984 0 +3 21085 31.43127681984 0 +3 21104 31.43143681984 0 +3 21104 31.43143681984 0 +3 21121 31.45738426113 0 +3 21121 31.45738426113 0 +3 21128 31.45754426113 0 +3 21128 31.45754426113 0 +3 21153 31.493586162045 0 +3 21153 31.493586162045 0 +3 21168 31.493746162045 0 +3 21168 31.493746162045 0 +3 21197 31.543993582999 0 +3 21197 31.543993582999 0 +3 21208 31.544153582999 0 +3 21208 31.544153582999 0 +3 21242 31.714556809491 0 +3 21242 31.714556809491 0 +3 21250 31.714716809491 0 +3 21250 31.714716809491 0 +3 21318 31.73127683044 0 +3 21318 31.73127683044 0 +3 21337 31.73143683044 0 +3 21337 31.73143683044 0 +3 21354 31.757384247459 0 +3 21354 31.757384247459 0 +3 21361 31.757544247459 0 +3 21361 31.757544247459 0 +3 21386 31.793586173478 0 +3 21386 31.793586173478 0 +3 21401 31.793746173478 0 +3 21401 31.793746173478 0 +3 21429 31.843993582814 0 +3 21429 31.843993582814 0 +3 21436 31.844153582814 0 +3 21436 31.844153582814 0 +3 21475 32.014556809491 0 +3 21475 32.014556809491 0 +3 21483 32.014716809491 0 +3 21483 32.014716809491 0 +3 21551 32.031276841444 0 +3 21551 32.031276841444 0 +3 21570 32.031436841444 0 +3 21570 32.031436841444 0 +3 21587 32.057384234163 0 +3 21587 32.057384234163 0 +3 21594 32.057544234163 0 +3 21594 32.057544234163 0 +3 21620 32.093586185302 0 +3 21620 32.093586185302 0 +3 21639 32.093746185302 0 +3 21639 32.093746185302 0 +3 21662 32.143993582627 0 +3 21662 32.143993582627 0 +3 21669 32.144153582627 0 +3 21669 32.144153582627 0 +3 21708 32.314556809491 0 +3 21708 32.314556809491 0 +3 21716 32.314716809491 0 +3 21716 32.314716809491 0 +3 21784 32.331276852904 0 +3 21784 32.331276852904 0 +3 21803 32.331436852904 0 +3 21803 32.331436852904 0 +3 21820 32.357384221209 0 +3 21820 32.357384221209 0 +3 21827 32.357544221209 0 +3 21827 32.357544221209 0 +3 21853 32.393586197538 0 +3 21853 32.393586197538 0 +3 21872 32.393746197538 0 +3 21872 32.393746197538 0 +3 21895 32.44399358243 0 +3 21895 32.44399358243 0 +3 21902 32.44415358243 0 +3 21902 32.44415358243 0 +3 21941 32.614556809491 0 +3 21941 32.614556809491 0 +3 21949 32.614716809491 0 +3 21949 32.614716809491 0 +3 22017 32.631276864721 0 +3 22017 32.631276864721 0 +3 22036 32.631436864721 0 +3 22036 32.631436864721 0 +3 22053 32.657384208687 0 +3 22053 32.657384208687 0 +3 22060 32.657544208687 0 +3 22060 32.657544208687 0 +3 22086 32.693586210128 0 +3 22086 32.693586210128 0 +3 22105 32.693746210128 0 +3 22105 32.693746210128 0 +3 22128 32.743993582216 0 +3 22128 32.743993582216 0 +3 22135 32.744153582216 0 +3 22135 32.744153582216 0 +3 22174 32.914556809491 0 +3 22174 32.914556809491 0 +3 22182 32.914716809491 0 +3 22182 32.914716809491 0 +3 22250 32.931276876958 0 +3 22250 32.931276876958 0 +3 22269 32.931436876958 0 +3 22269 32.931436876958 0 +3 22286 32.957384196619 0 +3 22286 32.957384196619 0 +3 22293 32.957544196619 0 +3 22293 32.957544196619 0 +3 22319 32.993586223119 0 +3 22319 32.993586223119 0 +3 22338 32.993746223119 0 +3 22338 32.993746223119 0 +3 22361 33.043993582014 0 +3 22361 33.043993582014 0 +3 22368 33.044153582014 0 +3 22368 33.044153582014 0 +3 22407 33.214556809491 0 +3 22407 33.214556809491 0 +3 22415 33.214716809491 0 +3 22415 33.214716809491 0 +3 22483 33.231276889508 0 +3 22483 33.231276889508 0 +3 22502 33.231436889508 0 +3 22502 33.231436889508 0 +3 22519 33.25738418501 0 +3 22519 33.25738418501 0 +3 22526 33.25754418501 0 +3 22526 33.25754418501 0 +3 22552 33.293586236404 0 +3 22552 33.293586236404 0 +3 22571 33.293746236404 0 +3 22571 33.293746236404 0 +3 22594 33.34399358181 0 +3 22594 33.34399358181 0 +3 22601 33.34415358181 0 +3 22601 33.34415358181 0 +3 22640 33.514556809491 0 +3 22640 33.514556809491 0 +3 22648 33.514716809491 0 +3 22648 33.514716809491 0 +3 22716 33.531276902417 0 +3 22716 33.531276902417 0 +3 22735 33.531436902417 0 +3 22735 33.531436902417 0 +3 22752 33.557384173944 0 +3 22752 33.557384173944 0 +3 22759 33.557544173944 0 +3 22759 33.557544173944 0 +3 22785 33.593586250026 0 +3 22785 33.593586250026 0 +3 22804 33.593746250026 0 +3 22804 33.593746250026 0 +3 22827 33.643993581593 0 +3 22827 33.643993581593 0 +3 22834 33.644153581593 0 +3 22834 33.644153581593 0 +3 22873 33.814556809491 0 +3 22873 33.814556809491 0 +3 22881 33.814716809491 0 +3 22881 33.814716809491 0 +3 22945 33.831276915646 0 +3 22945 33.831276915646 0 +3 22964 33.831436915646 0 +3 22964 33.831436915646 0 +3 22981 33.857384163418 0 +3 22981 33.857384163418 0 +3 22988 33.857544163418 0 +3 22988 33.857544163418 0 +3 23051 33.943993581377 0 +3 23051 33.943993581377 0 +3 23057 33.944153581377 0 +3 23057 33.944153581377 0 +3 23089 34.114556809491 0 +3 23089 34.114556809491 0 +3 23096 34.114716809491 0 +3 23096 34.114716809491 0 +3 23175 34.157384153508 0 +3 23175 34.157384153508 0 +3 23181 34.157544153508 0 +3 23181 34.157544153508 0 +3 23209 34.243993581155 0 +3 23209 34.243993581155 0 +3 23215 34.244153581155 0 +3 23215 34.244153581155 0 +3 23247 34.414556809491 0 +3 23247 34.414556809491 0 +3 23254 34.414716809491 0 +3 23254 34.414716809491 0 +3 23333 34.457384144204 0 +3 23333 34.457384144204 0 +3 23339 34.457544144204 0 +3 23339 34.457544144204 0 +3 23367 34.543993580981 0 +3 23367 34.543993580981 0 +3 23373 34.544153580981 0 +3 23373 34.544153580981 0 +3 23405 34.714556809491 0 +3 23405 34.714556809491 0 +3 23412 34.714716809491 0 +3 23412 34.714716809491 0 +3 23491 34.75738413555 0 +3 23491 34.75738413555 0 +3 23497 34.75754413555 0 +3 23497 34.75754413555 0 +3 23525 34.843993580776 0 +3 23525 34.843993580776 0 +3 23531 34.844153580776 0 +3 23531 34.844153580776 0 +3 23563 35.014556809491 0 +3 23563 35.014556809491 0 +3 23570 35.014716809491 0 +3 23570 35.014716809491 0 +3 23649 35.057384127604 0 +3 23649 35.057384127604 0 +3 23655 35.057544127604 0 +3 23655 35.057544127604 0 +3 23683 35.143993580566 0 +3 23683 35.143993580566 0 +3 23689 35.144153580566 0 +3 23689 35.144153580566 0 +3 23725 35.314556809491 0 +3 23725 35.314556809491 0 +3 23732 35.314716809491 0 +3 23732 35.314716809491 0 +3 23811 35.357384120761 0 +3 23811 35.357384120761 0 +3 23817 35.357544120761 0 +3 23817 35.357544120761 0 +3 23849 35.443993580357 0 +3 23849 35.443993580357 0 +3 23855 35.444153580357 0 +3 23855 35.444153580357 0 +3 23891 35.614556809491 0 +3 23891 35.614556809491 0 +3 23898 35.614716809491 0 +3 23898 35.614716809491 0 +3 23977 35.657384115863 0 +3 23977 35.657384115863 0 +3 23983 35.657544115863 0 +3 23983 35.657544115863 0 +3 24015 35.743993580181 0 +3 24015 35.743993580181 0 +3 24021 35.744153580181 0 +3 24021 35.744153580181 0 +3 24057 35.914556809491 0 +3 24057 35.914556809491 0 +3 24064 35.914716809491 0 +3 24064 35.914716809491 0 +3 24143 35.957384112909 0 +3 24143 35.957384112909 0 +3 24149 35.957544112909 0 +3 24149 35.957544112909 0 +3 24181 36.043993579975 0 +3 24181 36.043993579975 0 +3 24187 36.044153579975 0 +3 24187 36.044153579975 0 +3 24223 36.214556809491 0 +3 24223 36.214556809491 0 +3 24230 36.214716809491 0 +3 24230 36.214716809491 0 +3 24309 36.257384111896 0 +3 24309 36.257384111896 0 +3 24315 36.257544111896 0 +3 24315 36.257544111896 0 +3 24347 36.343993579779 0 +3 24347 36.343993579779 0 +3 24353 36.344153579779 0 +3 24353 36.344153579779 0 +3 24389 36.514556809491 0 +3 24389 36.514556809491 0 +3 24396 36.514716809491 0 +3 24396 36.514716809491 0 +3 24475 36.557384112695 0 +3 24475 36.557384112695 0 +3 24481 36.557544112695 0 +3 24481 36.557544112695 0 +3 24513 36.64399357959 0 +3 24513 36.64399357959 0 +3 24519 36.64415357959 0 +3 24519 36.64415357959 0 +3 24555 36.814556809491 0 +3 24555 36.814556809491 0 +3 24562 36.814716809491 0 +3 24562 36.814716809491 0 +3 24641 36.857384114665 0 +3 24641 36.857384114665 0 +3 24647 36.857544114665 0 +3 24647 36.857544114665 0 +3 24679 36.943993579358 0 +3 24679 36.943993579358 0 +3 24685 36.944153579358 0 +3 24685 36.944153579358 0 +3 24721 37.114556809491 0 +3 24721 37.114556809491 0 +3 24728 37.114716809491 0 +3 24728 37.114716809491 0 +3 24807 37.157384116577 0 +3 24807 37.157384116577 0 +3 24813 37.157544116577 0 +3 24813 37.157544116577 0 +3 24845 37.243993577605 0 +3 24845 37.243993577605 0 +3 24851 37.244153577605 0 +3 24851 37.244153577605 0 +3 24887 37.414556809491 0 +3 24887 37.414556809491 0 +3 24894 37.414716809491 0 +3 24894 37.414716809491 0 +3 24973 37.457384118525 0 +3 24973 37.457384118525 0 +3 24979 37.457544118525 0 +3 24979 37.457544118525 0 +3 25011 37.543993572915 0 +3 25011 37.543993572915 0 +3 25017 37.544153572915 0 +3 25017 37.544153572915 0 +3 25053 37.714556809491 0 +3 25053 37.714556809491 0 +3 25060 37.714716809491 0 +3 25060 37.714716809491 0 +3 25139 37.757384120668 0 +3 25139 37.757384120668 0 +3 25145 37.757544120668 0 +3 25145 37.757544120668 0 +3 25177 37.843993571184 0 +3 25177 37.843993571184 0 +3 25183 37.844153571184 0 +3 25183 37.844153571184 0 +3 25219 38.014556809491 0 +3 25219 38.014556809491 0 +3 25226 38.014716809491 0 +3 25226 38.014716809491 0 +3 25305 38.05738412309 0 +3 25305 38.05738412309 0 +3 25311 38.05754412309 0 +3 25311 38.05754412309 0 +3 25343 38.143993570903 0 +3 25343 38.143993570903 0 +3 25349 38.144153570903 0 +3 25349 38.144153570903 0 +3 25385 38.314556809491 0 +3 25385 38.314556809491 0 +3 25392 38.314716809491 0 +3 25392 38.314716809491 0 +3 25471 38.357384125785 0 +3 25471 38.357384125785 0 +3 25477 38.357544125785 0 +3 25477 38.357544125785 0 +3 25509 38.443993571748 0 +3 25509 38.443993571748 0 +3 25515 38.444153571748 0 +3 25515 38.444153571748 0 +3 25551 38.614556809491 0 +3 25551 38.614556809491 0 +3 25558 38.614716809491 0 +3 25558 38.614716809491 0 +3 25637 38.65738412876 0 +3 25637 38.65738412876 0 +3 25643 38.65754412876 0 +3 25643 38.65754412876 0 +3 25675 38.74399357356 0 +3 25675 38.74399357356 0 +3 25681 38.74415357356 0 +3 25681 38.74415357356 0 +3 25717 38.914556809491 0 +3 25717 38.914556809491 0 +3 25724 38.914716809491 0 +3 25724 38.914716809491 0 +3 25803 38.957384132048 0 +3 25803 38.957384132048 0 +3 25809 38.957544132048 0 +3 25809 38.957544132048 0 +3 25841 39.043993576469 0 +3 25841 39.043993576469 0 +3 25847 39.044153576469 0 +3 25847 39.044153576469 0 +3 25883 39.214556809491 0 +3 25883 39.214556809491 0 +3 25890 39.214716809491 0 +3 25890 39.214716809491 0 +3 25969 39.257384135646 0 +3 25969 39.257384135646 0 +3 25975 39.257544135646 0 +3 25975 39.257544135646 0 +3 26007 39.34399358036 0 +3 26007 39.34399358036 0 +3 26013 39.34415358036 0 +3 26013 39.34415358036 0 +3 26049 39.514556809491 0 +3 26049 39.514556809491 0 +3 26056 39.514716809491 0 +3 26056 39.514716809491 0 +3 26135 39.557384139563 0 +3 26135 39.557384139563 0 +3 26141 39.557544139563 0 +3 26141 39.557544139563 0 +3 26173 39.643993585234 0 +3 26173 39.643993585234 0 +3 26179 39.644153585234 0 +3 26179 39.644153585234 0 +3 26215 39.814556809491 0 +3 26215 39.814556809491 0 +3 26222 39.814716809491 0 +3 26222 39.814716809491 0 +3 26301 39.857384143904 0 +3 26301 39.857384143904 0 +3 26307 39.857544143904 0 +3 26307 39.857544143904 0 +3 26339 39.943993591067 0 +3 26339 39.943993591067 0 +3 26345 39.944153591067 0 +3 26345 39.944153591067 0 +3 26381 40.114556809491 0 +3 26381 40.114556809491 0 +3 26388 40.114716809491 0 +3 26388 40.114716809491 0 +3 26468 40.157384148943 0 +3 26468 40.157384148943 0 +3 26478 40.157544148943 0 +3 26478 40.157544148943 0 +3 26506 40.243993597798 0 +3 26506 40.243993597798 0 +3 26516 40.244153597798 0 +3 26516 40.244153597798 0 +3 26547 40.414556809491 0 +3 26547 40.414556809491 0 +3 26554 40.414716809491 0 +3 26554 40.414716809491 0 +3 26634 40.457384154717 0 +3 26634 40.457384154717 0 +3 26644 40.457544154717 0 +3 26644 40.457544154717 0 +3 26672 40.543993605352 0 +3 26672 40.543993605352 0 +3 26682 40.544153605352 0 +3 26682 40.544153605352 0 +3 26713 40.714556809491 0 +3 26713 40.714556809491 0 +3 26720 40.714716809491 0 +3 26720 40.714716809491 0 +3 26804 40.757384161295 0 +3 26804 40.757384161295 0 +3 26814 40.757544161295 0 +3 26814 40.757544161295 0 +3 26842 40.843993613829 0 +3 26842 40.843993613829 0 +3 26852 40.844153613829 0 +3 26852 40.844153613829 0 +3 26887 41.014556809491 0 +3 26887 41.014556809491 0 +3 26894 41.014716809491 0 +3 26894 41.014716809491 0 +3 26978 41.05738416852 0 +3 26978 41.05738416852 0 +3 26988 41.05754416852 0 +3 26988 41.05754416852 0 +3 27016 41.143993623009 0 +3 27016 41.143993623009 0 +3 27026 41.144153623009 0 +3 27026 41.144153623009 0 +3 27061 41.314556809491 0 +3 27061 41.314556809491 0 +3 27068 41.314716809491 0 +3 27068 41.314716809491 0 +3 27152 41.357384176462 0 +3 27152 41.357384176462 0 +3 27162 41.357544176462 0 +3 27162 41.357544176462 0 +3 27190 41.443993632949 0 +3 27190 41.443993632949 0 +3 27200 41.444153632949 0 +3 27200 41.444153632949 0 +3 27235 41.614556809491 0 +3 27235 41.614556809491 0 +3 27242 41.614716809491 0 +3 27242 41.614716809491 0 +3 27326 41.657384185007 0 +3 27326 41.657384185007 0 +3 27336 41.657544185007 0 +3 27336 41.657544185007 0 +3 27364 41.743993643584 0 +3 27364 41.743993643584 0 +3 27374 41.744153643584 0 +3 27374 41.744153643584 0 +3 27409 41.914556809491 0 +3 27409 41.914556809491 0 +3 27416 41.914716809491 0 +3 27416 41.914716809491 0 +3 27500 41.957384194196 0 +3 27500 41.957384194196 0 +3 27510 41.957544194196 0 +3 27510 41.957544194196 0 +3 27538 42.043993655076 0 +3 27538 42.043993655076 0 +3 27548 42.044153655076 0 +3 27548 42.044153655076 0 +3 27583 42.214556809491 0 +3 27583 42.214556809491 0 +3 27590 42.214716809491 0 +3 27590 42.214716809491 0 +3 27674 42.257384203962 0 +3 27674 42.257384203962 0 +3 27684 42.257544203962 0 +3 27684 42.257544203962 0 +3 27712 42.343993667279 0 +3 27712 42.343993667279 0 +3 27722 42.344153667279 0 +3 27722 42.344153667279 0 +3 27757 42.514556809491 0 +3 27757 42.514556809491 0 +3 27764 42.514716809491 0 +3 27764 42.514716809491 0 +3 27848 42.557384214263 0 +3 27848 42.557384214263 0 +3 27858 42.557544214263 0 +3 27858 42.557544214263 0 +3 27886 42.643993680118 0 +3 27886 42.643993680118 0 +3 27896 42.644153680118 0 +3 27896 42.644153680118 0 +3 27931 42.814556809491 0 +3 27931 42.814556809491 0 +3 27938 42.814716809491 0 +3 27938 42.814716809491 0 +3 28022 42.857384225113 0 +3 28022 42.857384225113 0 +3 28032 42.857544225113 0 +3 28032 42.857544225113 0 +3 28060 42.943993693453 0 +3 28060 42.943993693453 0 +3 28070 42.944153693453 0 +3 28070 42.944153693453 0 +3 28105 43.114556809491 0 +3 28105 43.114556809491 0 +3 28112 43.114716809491 0 +3 28112 43.114716809491 0 +3 28196 43.15738423643 0 +3 28196 43.15738423643 0 +3 28206 43.15754423643 0 +3 28206 43.15754423643 0 +3 28234 43.243993707142 0 +3 28234 43.243993707142 0 +3 28244 43.244153707142 0 +3 28244 43.244153707142 0 +3 28279 43.414556809491 0 +3 28279 43.414556809491 0 +3 28286 43.414716809491 0 +3 28286 43.414716809491 0 +3 28370 43.457384248185 0 +3 28370 43.457384248185 0 +3 28380 43.457544248185 0 +3 28380 43.457544248185 0 +3 28408 43.54399372113 0 +3 28408 43.54399372113 0 +3 28418 43.54415372113 0 +3 28418 43.54415372113 0 +3 28453 43.714556809491 0 +3 28453 43.714556809491 0 +3 28460 43.714716809491 0 +3 28460 43.714716809491 0 +3 28544 43.757384260094 0 +3 28544 43.757384260094 0 +3 28554 43.757544260094 0 +3 28554 43.757544260094 0 +3 28582 43.843993734654 0 +3 28582 43.843993734654 0 +3 28592 43.844153734654 0 +3 28592 43.844153734654 0 +3 28627 44.014556809491 0 +3 28627 44.014556809491 0 +3 28634 44.014716809491 0 +3 28634 44.014716809491 0 +3 28718 44.05738427113 0 +3 28718 44.05738427113 0 +3 28728 44.05754427113 0 +3 28728 44.05754427113 0 +3 28756 44.143993746996 0 +3 28756 44.143993746996 0 +3 28766 44.144153746996 0 +3 28766 44.144153746996 0 +3 28801 44.314556809491 0 +3 28801 44.314556809491 0 +3 28808 44.314716809491 0 +3 28808 44.314716809491 0 +3 28888 44.357384281313 0 +3 28888 44.357384281313 0 +3 28898 44.357544281313 0 +3 28898 44.357544281313 0 +3 28926 44.443993758119 0 +3 28926 44.443993758119 0 +3 28936 44.444153758119 0 +3 28936 44.444153758119 0 +3 28967 44.614556809491 0 +3 28967 44.614556809491 0 +3 28974 44.614716809491 0 +3 28974 44.614716809491 0 +3 29054 44.657384290579 0 +3 29054 44.657384290579 0 +3 29064 44.657544290579 0 +3 29064 44.657544290579 0 +3 29092 44.743993767993 0 +3 29092 44.743993767993 0 +3 29102 44.744153767993 0 +3 29102 44.744153767993 0 +3 29133 44.914556809491 0 +3 29133 44.914556809491 0 +3 29140 44.914716809491 0 +3 29140 44.914716809491 0 +3 29220 44.957384298829 0 +3 29220 44.957384298829 0 +3 29230 44.957544298829 0 +3 29230 44.957544298829 0 +3 29258 45.04399377659 0 +3 29258 45.04399377659 0 +3 29268 45.04415377659 0 +3 29268 45.04415377659 0 +3 29299 45.214556809491 0 +3 29299 45.214556809491 0 +3 29306 45.214716809491 0 +3 29306 45.214716809491 0 +3 29386 45.257384305981 0 +3 29386 45.257384305981 0 +3 29396 45.257544305981 0 +3 29396 45.257544305981 0 +3 29424 45.343993783865 0 +3 29424 45.343993783865 0 +3 29434 45.344153783865 0 +3 29434 45.344153783865 0 +3 29465 45.514556809491 0 +3 29465 45.514556809491 0 +3 29472 45.514716809491 0 +3 29472 45.514716809491 0 +3 29552 45.557384312206 0 +3 29552 45.557384312206 0 +3 29562 45.557544312206 0 +3 29562 45.557544312206 0 +3 29590 45.643993790499 0 +3 29590 45.643993790499 0 +3 29600 45.644153790499 0 +3 29600 45.644153790499 0 +3 29631 45.814556809491 0 +3 29631 45.814556809491 0 +3 29638 45.814716809491 0 +3 29638 45.814716809491 0 +3 29718 45.857384319049 0 +3 29718 45.857384319049 0 +3 29728 45.857544319049 0 +3 29728 45.857544319049 0 +3 29756 45.943993797914 0 +3 29756 45.943993797914 0 +3 29766 45.944153797914 0 +3 29766 45.944153797914 0 +3 29797 46.114556809491 0 +3 29797 46.114556809491 0 +3 29804 46.114716809491 0 +3 29804 46.114716809491 0 +3 29884 46.157384326651 0 +3 29884 46.157384326651 0 +3 29894 46.157544326651 0 +3 29894 46.157544326651 0 +3 29923 46.243993806003 0 +3 29923 46.243993806003 0 +3 29937 46.244153806003 0 +3 29937 46.244153806003 0 +3 29963 46.414556809491 0 +3 29963 46.414556809491 0 +3 29970 46.414716809491 0 +3 29970 46.414716809491 0 +3 30050 46.457384334527 0 +3 30050 46.457384334527 0 +3 30060 46.457544334527 0 +3 30060 46.457544334527 0 +3 30089 46.543993813964 0 +3 30089 46.543993813964 0 +3 30103 46.544153813964 0 +3 30103 46.544153813964 0 +3 30129 46.714556809491 0 +3 30129 46.714556809491 0 +3 30136 46.714716809491 0 +3 30136 46.714716809491 0 +3 30217 46.757384340536 0 +3 30217 46.757384340536 0 +3 30231 46.757544340536 0 +3 30231 46.757544340536 0 +3 30255 46.843993818595 0 +3 30255 46.843993818595 0 +3 30269 46.844153818595 0 +3 30269 46.844153818595 0 +3 30295 47.014556809491 0 +3 30295 47.014556809491 0 +3 30302 47.014716809491 0 +3 30302 47.014716809491 0 +3 30383 47.057384342941 0 +3 30383 47.057384342941 0 +3 30397 47.057544342941 0 +3 30397 47.057544342941 0 +3 30421 47.143993819767 0 +3 30421 47.143993819767 0 +3 30435 47.144153819767 0 +3 30435 47.144153819767 0 +3 30461 47.314556809491 0 +3 30461 47.314556809491 0 +3 30468 47.314716809491 0 +3 30468 47.314716809491 0 +3 30549 47.357384344047 0 +3 30549 47.357384344047 0 +3 30563 47.357544344047 0 +3 30563 47.357544344047 0 +3 30587 47.443993820025 0 +3 30587 47.443993820025 0 +3 30601 47.444153820025 0 +3 30601 47.444153820025 0 +3 30627 47.614556809491 0 +3 30627 47.614556809491 0 +3 30634 47.614716809491 0 +3 30634 47.614716809491 0 +3 30715 47.657384345882 0 +3 30715 47.657384345882 0 +3 30729 47.657544345882 0 +3 30729 47.657544345882 0 +3 30753 47.743993820289 0 +3 30753 47.743993820289 0 +3 30767 47.744153820289 0 +3 30767 47.744153820289 0 +3 30793 47.914556809491 0 +3 30793 47.914556809491 0 +3 30800 47.914716809491 0 +3 30800 47.914716809491 0 +3 30881 47.95738434856 0 +3 30881 47.95738434856 0 +3 30895 47.95754434856 0 +3 30895 47.95754434856 0 +3 30919 48.043993820574 0 +3 30919 48.043993820574 0 +3 30933 48.044153820574 0 +3 30933 48.044153820574 0 +3 30959 48.214556809491 0 +3 30959 48.214556809491 0 +3 30966 48.214716809491 0 +3 30966 48.214716809491 0 +3 31047 48.257384352185 0 +3 31047 48.257384352185 0 +3 31061 48.257544352185 0 +3 31061 48.257544352185 0 +3 31085 48.343993819422 0 +3 31085 48.343993819422 0 +3 31099 48.344153819422 0 +3 31099 48.344153819422 0 +3 31125 48.514556809491 0 +3 31125 48.514556809491 0 +3 31132 48.514716809491 0 +3 31132 48.514716809491 0 +3 31213 48.557384356842 0 +3 31213 48.557384356842 0 +3 31227 48.557544356842 0 +3 31227 48.557544356842 0 +3 31251 48.643993818083 0 +3 31251 48.643993818083 0 +3 31265 48.644153818083 0 +3 31265 48.644153818083 0 +3 31291 48.814556809491 0 +3 31291 48.814556809491 0 +3 31298 48.814716809491 0 +3 31298 48.814716809491 0 +3 31379 48.857384362664 0 +3 31379 48.857384362664 0 +3 31393 48.857544362664 0 +3 31393 48.857544362664 0 +3 31417 48.943993815516 0 +3 31417 48.943993815516 0 +3 31431 48.944153815516 0 +3 31431 48.944153815516 0 +3 31457 49.114556809491 0 +3 31457 49.114556809491 0 +3 31464 49.114716809491 0 +3 31464 49.114716809491 0 +3 31545 49.157384369644 0 +3 31545 49.157384369644 0 +3 31559 49.157544369644 0 +3 31559 49.157544369644 0 +3 31583 49.243993812156 0 +3 31583 49.243993812156 0 +3 31597 49.244153812156 0 +3 31597 49.244153812156 0 +3 31623 49.414556809491 0 +3 31623 49.414556809491 0 +3 31630 49.414716809491 0 +3 31630 49.414716809491 0 +3 31711 49.457384377764 0 +3 31711 49.457384377764 0 +3 31725 49.457544377764 0 +3 31725 49.457544377764 0 +3 31749 49.543993808185 0 +3 31749 49.543993808185 0 +3 31763 49.544153808185 0 +3 31763 49.544153808185 0 +3 31789 49.714556809491 0 +3 31789 49.714556809491 0 +3 31796 49.714716809491 0 +3 31796 49.714716809491 0 +3 31877 49.757384386996 0 +3 31877 49.757384386996 0 +3 31891 49.757544386996 0 +3 31891 49.757544386996 0 +3 31915 49.843993803841 0 +3 31915 49.843993803841 0 +3 31929 49.844153803841 0 +3 31929 49.844153803841 0 +3 31955 50.014556809491 0 +3 31955 50.014556809491 0 +3 31962 50.014716809491 0 +3 31962 50.014716809491 0 +3 32043 50.05738439718 0 +3 32043 50.05738439718 0 +3 32057 50.05754439718 0 +3 32057 50.05754439718 0 +3 32081 50.143993799517 0 +3 32081 50.143993799517 0 +3 32095 50.144153799517 0 +3 32095 50.144153799517 0 +3 32121 50.314556809491 0 +3 32121 50.314556809491 0 +3 32128 50.314716809491 0 +3 32128 50.314716809491 0 +3 32209 50.3573844083 0 +3 32209 50.3573844083 0 +3 32223 50.3575444083 0 +3 32223 50.3575444083 0 +3 32247 50.443993795058 0 +3 32247 50.443993795058 0 +3 32261 50.444153795058 0 +3 32261 50.444153795058 0 +3 32287 50.614556809491 0 +3 32287 50.614556809491 0 +3 32294 50.614716809491 0 +3 32294 50.614716809491 0 +3 32375 50.657384420305 0 +3 32375 50.657384420305 0 +3 32389 50.657544420305 0 +3 32389 50.657544420305 0 +3 32413 50.743993790392 0 +3 32413 50.743993790392 0 +3 32427 50.744153790392 0 +3 32427 50.744153790392 0 +3 32453 50.914556809491 0 +3 32453 50.914556809491 0 +3 32460 50.914716809491 0 +3 32460 50.914716809491 0 +3 32541 50.957384433105 0 +3 32541 50.957384433105 0 +3 32555 50.957544433105 0 +3 32555 50.957544433105 0 +3 32579 51.043993785603 0 +3 32579 51.043993785603 0 +3 32593 51.044153785603 0 +3 32593 51.044153785603 0 +3 32619 51.214556809491 0 +3 32619 51.214556809491 0 +3 32626 51.214716809491 0 +3 32626 51.214716809491 0 +3 32737 51.343993780685 0 +3 32737 51.343993780685 0 +3 32751 51.344153780685 0 +3 32751 51.344153780685 0 +3 32777 51.514556809491 0 +3 32777 51.514556809491 0 +3 32784 51.514716809491 0 +3 32784 51.514716809491 0 +3 32903 51.643993775717 0 +3 32903 51.643993775717 0 +3 32917 51.644153775717 0 +3 32917 51.644153775717 0 +3 32943 51.814556809491 0 +3 32943 51.814556809491 0 +3 32950 51.814716809491 0 +3 32950 51.814716809491 0 +3 33069 51.943993770578 0 +3 33069 51.943993770578 0 +3 33083 51.944153770578 0 +3 33083 51.944153770578 0 +3 33109 52.114556809491 0 +3 33109 52.114556809491 0 +3 33116 52.114716809491 0 +3 33116 52.114716809491 0 +3 33235 52.243993765452 0 +3 33235 52.243993765452 0 +3 33249 52.244153765452 0 +3 33249 52.244153765452 0 +3 33275 52.414556809491 0 +3 33275 52.414556809491 0 +3 33282 52.414716809491 0 +3 33282 52.414716809491 0 +3 33401 52.543993760435 0 +3 33401 52.543993760435 0 +3 33415 52.544153760435 0 +3 33415 52.544153760435 0 +3 33441 52.714556809491 0 +3 33441 52.714556809491 0 +3 33448 52.714716809491 0 +3 33448 52.714716809491 0 +3 33567 52.843993755494 0 +3 33567 52.843993755494 0 +3 33581 52.844153755494 0 +3 33581 52.844153755494 0 +3 33607 53.014556809491 0 +3 33607 53.014556809491 0 +3 33614 53.014716809491 0 +3 33614 53.014716809491 0 +3 33733 53.143993750731 0 +3 33733 53.143993750731 0 +3 33747 53.144153750731 0 +3 33747 53.144153750731 0 +4 22 2.1 0 +4 22 2.1 0 +4 47 2.614556809491 0 +4 47 2.614556809491 0 +4 51 2.614716809491 0 +4 51 2.614716809491 0 +4 67 2.65738405803 0 +4 67 2.65738405803 0 +4 70 2.65754405803 0 +4 70 2.65754405803 0 +4 92 2.914556809491 0 +4 92 2.914556809491 0 +4 96 2.914716809491 0 +4 96 2.914716809491 0 +4 112 2.957384059145 0 +4 112 2.957384059145 0 +4 115 2.957544059145 0 +4 115 2.957544059145 0 +4 139 3.214556809491 0 +4 139 3.214556809491 0 +4 144 3.214716809491 0 +4 144 3.214716809491 0 +4 165 3.257384060325 0 +4 165 3.257384060325 0 +4 169 3.257544060325 0 +4 169 3.257544060325 0 +4 199 3.514556809491 0 +4 199 3.514556809491 0 +4 204 3.514716809491 0 +4 204 3.514716809491 0 +4 225 3.531276752816 0 +4 225 3.531276752816 0 +4 229 3.531436752816 0 +4 229 3.531436752816 0 +4 249 3.5573840616 0 +4 249 3.5573840616 0 +4 253 3.5575440616 0 +4 253 3.5575440616 0 +4 283 3.814556809491 0 +4 283 3.814556809491 0 +4 288 3.814716809491 0 +4 288 3.814716809491 0 +4 309 3.831276748492 0 +4 309 3.831276748492 0 +4 313 3.831436748492 0 +4 313 3.831436748492 0 +4 333 3.857384062957 0 +4 333 3.857384062957 0 +4 337 3.857544062957 0 +4 337 3.857544062957 0 +4 368 4.114556809491 0 +4 368 4.114556809491 0 +4 374 4.114716809491 0 +4 374 4.114716809491 0 +4 397 4.131276743562 0 +4 397 4.131276743562 0 +4 406 4.131436743562 0 +4 406 4.131436743562 0 +4 426 4.157384064405 0 +4 426 4.157384064405 0 +4 431 4.157544064405 0 +4 431 4.157544064405 0 +4 465 4.414556809491 0 +4 465 4.414556809491 0 +4 471 4.414716809491 0 +4 471 4.414716809491 0 +4 494 4.431276737964 0 +4 494 4.431276737964 0 +4 503 4.431436737964 0 +4 503 4.431436737964 0 +4 523 4.457384065992 0 +4 523 4.457384065992 0 +4 528 4.457544065992 0 +4 528 4.457544065992 0 +4 584 4.714556809491 0 +4 584 4.714556809491 0 +4 590 4.714716809491 0 +4 590 4.714716809491 0 +4 613 4.731276731904 0 +4 613 4.731276731904 0 +4 622 4.731436731904 0 +4 622 4.731436731904 0 +4 642 4.757384067713 0 +4 642 4.757384067713 0 +4 647 4.757544067713 0 +4 647 4.757544067713 0 +4 703 5.014556809491 0 +4 703 5.014556809491 0 +4 709 5.014716809491 0 +4 709 5.014716809491 0 +4 732 5.031276725247 0 +4 732 5.031276725247 0 +4 741 5.031436725247 0 +4 741 5.031436725247 0 +4 761 5.057384069567 0 +4 761 5.057384069567 0 +4 766 5.057544069567 0 +4 766 5.057544069567 0 +4 831 5.314556809491 0 +4 831 5.314556809491 0 +4 838 5.314716809491 0 +4 838 5.314716809491 0 +4 862 5.331276717912 0 +4 862 5.331276717912 0 +4 872 5.331436717912 0 +4 872 5.331436717912 0 +4 893 5.357384071635 0 +4 893 5.357384071635 0 +4 899 5.357544071635 0 +4 899 5.357544071635 0 +4 965 5.614556809491 0 +4 965 5.614556809491 0 +4 972 5.614716809491 0 +4 972 5.614716809491 0 +4 996 5.631276710029 0 +4 996 5.631276710029 0 +4 1006 5.631436710029 0 +4 1006 5.631436710029 0 +4 1027 5.657384073906 0 +4 1027 5.657384073906 0 +4 1033 5.657544073906 0 +4 1033 5.657544073906 0 +4 1123 5.914556809491 0 +4 1123 5.914556809491 0 +4 1130 5.914716809491 0 +4 1130 5.914716809491 0 +4 1154 5.931276701497 0 +4 1154 5.931276701497 0 +4 1164 5.931436701497 0 +4 1164 5.931436701497 0 +4 1185 5.957384076426 0 +4 1185 5.957384076426 0 +4 1191 5.957544076426 0 +4 1191 5.957544076426 0 +4 1283 6.214556809491 0 +4 1283 6.214556809491 0 +4 1291 6.214716809491 0 +4 1291 6.214716809491 0 +4 1321 6.231276692343 0 +4 1321 6.231276692343 0 +4 1336 6.231436692343 0 +4 1336 6.231436692343 0 +4 1357 6.257384079226 0 +4 1357 6.257384079226 0 +4 1364 6.257544079226 0 +4 1364 6.257544079226 0 +4 1466 6.514556809491 0 +4 1466 6.514556809491 0 +4 1474 6.514716809491 0 +4 1474 6.514716809491 0 +4 1501 6.524398778352 0 +4 1501 6.524398778352 0 +4 1508 6.524558778352 0 +4 1508 6.524558778352 0 +4 1537 6.531276682665 0 +4 1537 6.531276682665 0 +4 1552 6.531436682665 0 +4 1552 6.531436682665 0 +4 1574 6.557384082316 0 +4 1574 6.557384082316 0 +4 1581 6.557544082316 0 +4 1581 6.557544082316 0 +4 1683 6.814556809491 0 +4 1683 6.814556809491 0 +4 1691 6.814716809491 0 +4 1691 6.814716809491 0 +4 1718 6.824398768033 0 +4 1718 6.824398768033 0 +4 1725 6.824558768033 0 +4 1725 6.824558768033 0 +4 1754 6.831276672312 0 +4 1754 6.831276672312 0 +4 1769 6.831436672312 0 +4 1769 6.831436672312 0 +4 1791 6.857384085755 0 +4 1791 6.857384085755 0 +4 1798 6.857544085755 0 +4 1798 6.857544085755 0 +4 1900 7.114556809491 0 +4 1900 7.114556809491 0 +4 1908 7.114716809491 0 +4 1908 7.114716809491 0 +4 1935 7.124398757068 0 +4 1935 7.124398757068 0 +4 1942 7.124558757068 0 +4 1942 7.124558757068 0 +4 1971 7.131276661329 0 +4 1971 7.131276661329 0 +4 1986 7.131436661329 0 +4 1986 7.131436661329 0 +4 2008 7.157384089564 0 +4 2008 7.157384089564 0 +4 2015 7.157544089564 0 +4 2015 7.157544089564 0 +4 2117 7.414556809491 0 +4 2117 7.414556809491 0 +4 2125 7.414716809491 0 +4 2125 7.414716809491 0 +4 2152 7.424398745664 0 +4 2152 7.424398745664 0 +4 2159 7.424558745664 0 +4 2159 7.424558745664 0 +4 2188 7.431276649891 0 +4 2188 7.431276649891 0 +4 2203 7.431436649891 0 +4 2203 7.431436649891 0 +4 2225 7.457384093735 0 +4 2225 7.457384093735 0 +4 2232 7.457544093735 0 +4 2232 7.457544093735 0 +4 2334 7.714556809491 0 +4 2334 7.714556809491 0 +4 2342 7.714716809491 0 +4 2342 7.714716809491 0 +4 2369 7.724398733784 0 +4 2369 7.724398733784 0 +4 2376 7.724558733784 0 +4 2376 7.724558733784 0 +4 2405 7.731276637989 0 +4 2405 7.731276637989 0 +4 2420 7.731436637989 0 +4 2420 7.731436637989 0 +4 2442 7.757384098302 0 +4 2442 7.757384098302 0 +4 2449 7.757544098302 0 +4 2449 7.757544098302 0 +4 2551 8.014556809491 0 +4 2551 8.014556809491 0 +4 2559 8.014716809491 0 +4 2559 8.014716809491 0 +4 2586 8.02439872132 0 +4 2586 8.02439872132 0 +4 2593 8.02455872132 0 +4 2593 8.02455872132 0 +4 2621 8.031276625491 0 +4 2621 8.031276625491 0 +4 2632 8.031436625491 0 +4 2632 8.031436625491 0 +4 2659 8.057384103323 0 +4 2659 8.057384103323 0 +4 2666 8.057544103323 0 +4 2666 8.057544103323 0 +4 2768 8.314556809491 0 +4 2768 8.314556809491 0 +4 2776 8.314716809491 0 +4 2776 8.314716809491 0 +4 2803 8.324398708136 0 +4 2803 8.324398708136 0 +4 2810 8.324558708136 0 +4 2810 8.324558708136 0 +4 2842 8.33127661228 0 +4 2842 8.33127661228 0 +4 2853 8.33143661228 0 +4 2853 8.33143661228 0 +4 2880 8.357384108886 0 +4 2880 8.357384108886 0 +4 2887 8.357544108886 0 +4 2887 8.357544108886 0 +4 2993 8.614556809491 0 +4 2993 8.614556809491 0 +4 3001 8.614716809491 0 +4 3001 8.614716809491 0 +4 3028 8.624398694405 0 +4 3028 8.624398694405 0 +4 3035 8.624558694405 0 +4 3035 8.624558694405 0 +4 3067 8.631276598484 0 +4 3067 8.631276598484 0 +4 3078 8.631436598484 0 +4 3078 8.631436598484 0 +4 3105 8.65738411496 0 +4 3105 8.65738411496 0 +4 3112 8.65754411496 0 +4 3112 8.65754411496 0 +4 3218 8.914556809491 0 +4 3218 8.914556809491 0 +4 3226 8.914716809491 0 +4 3226 8.914716809491 0 +4 3253 8.924398680104 0 +4 3253 8.924398680104 0 +4 3260 8.924558680104 0 +4 3260 8.924558680104 0 +4 3292 8.931276584082 0 +4 3292 8.931276584082 0 +4 3303 8.931436584082 0 +4 3303 8.931436584082 0 +4 3330 8.957384121588 0 +4 3330 8.957384121588 0 +4 3337 8.957544121588 0 +4 3337 8.957544121588 0 +4 3443 9.214556809491 0 +4 3443 9.214556809491 0 +4 3451 9.214716809491 0 +4 3451 9.214716809491 0 +4 3478 9.224398665264 0 +4 3478 9.224398665264 0 +4 3485 9.224558665264 0 +4 3485 9.224558665264 0 +4 3517 9.231276569158 0 +4 3517 9.231276569158 0 +4 3528 9.231436569158 0 +4 3528 9.231436569158 0 +4 3555 9.257384128789 0 +4 3555 9.257384128789 0 +4 3562 9.257544128789 0 +4 3562 9.257544128789 0 +4 3668 9.514556809491 0 +4 3668 9.514556809491 0 +4 3676 9.514716809491 0 +4 3676 9.514716809491 0 +4 3703 9.524398649996 0 +4 3703 9.524398649996 0 +4 3710 9.524558649996 0 +4 3710 9.524558649996 0 +4 3742 9.531276553733 0 +4 3742 9.531276553733 0 +4 3753 9.531436553733 0 +4 3753 9.531436553733 0 +4 3780 9.557384136549 0 +4 3780 9.557384136549 0 +4 3787 9.557544136549 0 +4 3787 9.557544136549 0 +4 3893 9.814556809491 0 +4 3893 9.814556809491 0 +4 3901 9.814716809491 0 +4 3901 9.814716809491 0 +4 3928 9.824398634568 0 +4 3928 9.824398634568 0 +4 3935 9.824558634568 0 +4 3935 9.824558634568 0 +4 3967 9.831276538055 0 +4 3967 9.831276538055 0 +4 3978 9.831436538055 0 +4 3978 9.831436538055 0 +4 4005 9.857384144771 0 +4 4005 9.857384144771 0 +4 4012 9.857544144771 0 +4 4012 9.857544144771 0 +4 4118 10.114556809491 0 +4 4118 10.114556809491 0 +4 4126 10.114716809491 0 +4 4126 10.114716809491 0 +4 4153 10.124398619363 0 +4 4153 10.124398619363 0 +4 4160 10.124558619363 0 +4 4160 10.124558619363 0 +4 4192 10.131276522386 0 +4 4192 10.131276522386 0 +4 4203 10.131436522386 0 +4 4203 10.131436522386 0 +4 4230 10.157384153312 0 +4 4230 10.157384153312 0 +4 4237 10.157544153312 0 +4 4237 10.157544153312 0 +4 4343 10.414556809491 0 +4 4343 10.414556809491 0 +4 4351 10.414716809491 0 +4 4351 10.414716809491 0 +4 4378 10.424398604844 0 +4 4378 10.424398604844 0 +4 4385 10.424558604844 0 +4 4385 10.424558604844 0 +4 4417 10.431276506743 0 +4 4417 10.431276506743 0 +4 4428 10.431436506743 0 +4 4428 10.431436506743 0 +4 4455 10.457384162122 0 +4 4455 10.457384162122 0 +4 4462 10.457544162122 0 +4 4462 10.457544162122 0 +4 4525 10.543993907449 0 +4 4525 10.543993907449 0 +4 4544 10.544153907449 0 +4 4544 10.544153907449 0 +4 4572 10.714556809491 0 +4 4572 10.714556809491 0 +4 4580 10.714716809491 0 +4 4580 10.714716809491 0 +4 4611 10.72439859379 0 +4 4611 10.72439859379 0 +4 4618 10.72455859379 0 +4 4618 10.72455859379 0 +4 4650 10.731276491102 0 +4 4650 10.731276491102 0 +4 4661 10.731436491102 0 +4 4661 10.731436491102 0 +4 4688 10.757384171218 0 +4 4688 10.757384171218 0 +4 4695 10.757544171218 0 +4 4695 10.757544171218 0 +4 4757 10.84399389067 0 +4 4757 10.84399389067 0 +4 4772 10.84415389067 0 +4 4772 10.84415389067 0 +4 4805 11.014556809491 0 +4 4805 11.014556809491 0 +4 4813 11.014716809491 0 +4 4813 11.014716809491 0 +4 4844 11.024398598014 0 +4 4844 11.024398598014 0 +4 4851 11.024558598014 0 +4 4851 11.024558598014 0 +4 4882 11.031276475464 0 +4 4882 11.031276475464 0 +4 4889 11.031436475464 0 +4 4889 11.031436475464 0 +4 4921 11.057384180599 0 +4 4921 11.057384180599 0 +4 4928 11.057544180599 0 +4 4928 11.057544180599 0 +4 4990 11.143993874452 0 +4 4990 11.143993874452 0 +4 5005 11.144153874452 0 +4 5005 11.144153874452 0 +4 5038 11.314556809491 0 +4 5038 11.314556809491 0 +4 5046 11.314716809491 0 +4 5046 11.314716809491 0 +4 5077 11.324398611475 0 +4 5077 11.324398611475 0 +4 5084 11.324558611475 0 +4 5084 11.324558611475 0 +4 5115 11.331276459858 0 +4 5115 11.331276459858 0 +4 5122 11.331436459858 0 +4 5122 11.331436459858 0 +4 5155 11.3573841902 0 +4 5155 11.3573841902 0 +4 5166 11.3575441902 0 +4 5166 11.3575441902 0 +4 5223 11.443993858741 0 +4 5223 11.443993858741 0 +4 5238 11.444153858741 0 +4 5238 11.444153858741 0 +4 5271 11.614556809491 0 +4 5271 11.614556809491 0 +4 5279 11.614716809491 0 +4 5279 11.614716809491 0 +4 5310 11.624398626396 0 +4 5310 11.624398626396 0 +4 5317 11.624558626396 0 +4 5317 11.624558626396 0 +4 5348 11.631276444245 0 +4 5348 11.631276444245 0 +4 5355 11.631436444245 0 +4 5355 11.631436444245 0 +4 5392 11.657384200055 0 +4 5392 11.657384200055 0 +4 5403 11.657544200055 0 +4 5403 11.657544200055 0 +4 5464 11.743993843502 0 +4 5464 11.743993843502 0 +4 5479 11.744153843502 0 +4 5479 11.744153843502 0 +4 5512 11.914556809491 0 +4 5512 11.914556809491 0 +4 5520 11.914716809491 0 +4 5520 11.914716809491 0 +4 5551 11.92439864171 0 +4 5551 11.92439864171 0 +4 5558 11.92455864171 0 +4 5558 11.92455864171 0 +4 5589 11.931276428595 0 +4 5589 11.931276428595 0 +4 5596 11.931436428595 0 +4 5596 11.931436428595 0 +4 5633 11.957384210159 0 +4 5633 11.957384210159 0 +4 5644 11.957544210159 0 +4 5644 11.957544210159 0 +4 5705 12.043993828636 0 +4 5705 12.043993828636 0 +4 5720 12.044153828636 0 +4 5720 12.044153828636 0 +4 5753 12.214556809491 0 +4 5753 12.214556809491 0 +4 5761 12.214716809491 0 +4 5761 12.214716809491 0 +4 5792 12.224398657188 0 +4 5792 12.224398657188 0 +4 5799 12.224558657188 0 +4 5799 12.224558657188 0 +4 5830 12.231276412948 0 +4 5830 12.231276412948 0 +4 5837 12.231436412948 0 +4 5837 12.231436412948 0 +4 5874 12.257384220477 0 +4 5874 12.257384220477 0 +4 5885 12.257544220477 0 +4 5885 12.257544220477 0 +4 5946 12.343993813991 0 +4 5946 12.343993813991 0 +4 5961 12.344153813991 0 +4 5961 12.344153813991 0 +4 5994 12.514556809491 0 +4 5994 12.514556809491 0 +4 6002 12.514716809491 0 +4 6002 12.514716809491 0 +4 6033 12.524398672694 0 +4 6033 12.524398672694 0 +4 6040 12.524558672694 0 +4 6040 12.524558672694 0 +4 6071 12.531276397317 0 +4 6071 12.531276397317 0 +4 6078 12.531436397317 0 +4 6078 12.531436397317 0 +4 6115 12.557384230993 0 +4 6115 12.557384230993 0 +4 6126 12.557544230993 0 +4 6126 12.557544230993 0 +4 6187 12.643993799362 0 +4 6187 12.643993799362 0 +4 6202 12.644153799362 0 +4 6202 12.644153799362 0 +4 6235 12.814556809491 0 +4 6235 12.814556809491 0 +4 6243 12.814716809491 0 +4 6243 12.814716809491 0 +4 6274 12.824398688243 0 +4 6274 12.824398688243 0 +4 6281 12.824558688243 0 +4 6281 12.824558688243 0 +4 6312 12.831276381695 0 +4 6312 12.831276381695 0 +4 6319 12.831436381695 0 +4 6319 12.831436381695 0 +4 6356 12.857384241685 0 +4 6356 12.857384241685 0 +4 6367 12.857544241685 0 +4 6367 12.857544241685 0 +4 6428 12.943993784749 0 +4 6428 12.943993784749 0 +4 6443 12.944153784749 0 +4 6443 12.944153784749 0 +4 6476 13.114556809491 0 +4 6476 13.114556809491 0 +4 6484 13.114716809491 0 +4 6484 13.114716809491 0 +4 6515 13.124398703844 0 +4 6515 13.124398703844 0 +4 6522 13.124558703844 0 +4 6522 13.124558703844 0 +4 6553 13.131276366027 0 +4 6553 13.131276366027 0 +4 6560 13.131436366027 0 +4 6560 13.131436366027 0 +4 6597 13.157384252586 0 +4 6597 13.157384252586 0 +4 6608 13.157544252586 0 +4 6608 13.157544252586 0 +4 6669 13.243993770092 0 +4 6669 13.243993770092 0 +4 6684 13.244153770092 0 +4 6684 13.244153770092 0 +4 6717 13.414556809491 0 +4 6717 13.414556809491 0 +4 6725 13.414716809491 0 +4 6725 13.414716809491 0 +4 6756 13.424398719435 0 +4 6756 13.424398719435 0 +4 6763 13.424558719435 0 +4 6763 13.424558719435 0 +4 6794 13.431276350417 0 +4 6794 13.431276350417 0 +4 6801 13.431436350417 0 +4 6801 13.431436350417 0 +4 6838 13.457384263637 0 +4 6838 13.457384263637 0 +4 6849 13.457544263637 0 +4 6849 13.457544263637 0 +4 6910 13.543993755468 0 +4 6910 13.543993755468 0 +4 6925 13.544153755468 0 +4 6925 13.544153755468 0 +4 6958 13.714556809491 0 +4 6958 13.714556809491 0 +4 6966 13.714716809491 0 +4 6966 13.714716809491 0 +4 6997 13.724398735043 0 +4 6997 13.724398735043 0 +4 7004 13.724558735043 0 +4 7004 13.724558735043 0 +4 7035 13.731276334798 0 +4 7035 13.731276334798 0 +4 7042 13.731436334798 0 +4 7042 13.731436334798 0 +4 7079 13.757384274837 0 +4 7079 13.757384274837 0 +4 7090 13.757544274837 0 +4 7090 13.757544274837 0 +4 7151 13.843993740827 0 +4 7151 13.843993740827 0 +4 7166 13.844153740827 0 +4 7166 13.844153740827 0 +4 7199 14.014556809491 0 +4 7199 14.014556809491 0 +4 7207 14.014716809491 0 +4 7207 14.014716809491 0 +4 7238 14.024398750707 0 +4 7238 14.024398750707 0 +4 7245 14.024558750707 0 +4 7245 14.024558750707 0 +4 7276 14.031276319127 0 +4 7276 14.031276319127 0 +4 7283 14.031436319127 0 +4 7283 14.031436319127 0 +4 7320 14.05738428623 0 +4 7320 14.05738428623 0 +4 7331 14.05754428623 0 +4 7331 14.05754428623 0 +4 7392 14.14399372616 0 +4 7392 14.14399372616 0 +4 7407 14.14415372616 0 +4 7407 14.14415372616 0 +4 7440 14.314556809491 0 +4 7440 14.314556809491 0 +4 7448 14.314716809491 0 +4 7448 14.314716809491 0 +4 7479 14.324398766341 0 +4 7479 14.324398766341 0 +4 7486 14.324558766341 0 +4 7486 14.324558766341 0 +4 7517 14.331276303517 0 +4 7517 14.331276303517 0 +4 7524 14.331436303517 0 +4 7524 14.331436303517 0 +4 7561 14.357384297742 0 +4 7561 14.357384297742 0 +4 7572 14.357544297742 0 +4 7572 14.357544297742 0 +4 7633 14.443993711546 0 +4 7633 14.443993711546 0 +4 7648 14.444153711546 0 +4 7648 14.444153711546 0 +4 7681 14.614556809491 0 +4 7681 14.614556809491 0 +4 7689 14.614716809491 0 +4 7689 14.614716809491 0 +4 7720 14.624398781946 0 +4 7720 14.624398781946 0 +4 7727 14.624558781946 0 +4 7727 14.624558781946 0 +4 7758 14.631276287929 0 +4 7758 14.631276287929 0 +4 7765 14.631436287929 0 +4 7765 14.631436287929 0 +4 7802 14.657384309371 0 +4 7802 14.657384309371 0 +4 7813 14.657544309371 0 +4 7813 14.657544309371 0 +4 7874 14.743993696951 0 +4 7874 14.743993696951 0 +4 7889 14.744153696951 0 +4 7889 14.744153696951 0 +4 7922 14.914556809491 0 +4 7922 14.914556809491 0 +4 7930 14.914716809491 0 +4 7930 14.914716809491 0 +4 7961 14.924398797557 0 +4 7961 14.924398797557 0 +4 7968 14.924558797557 0 +4 7968 14.924558797557 0 +4 7999 14.931276272358 0 +4 7999 14.931276272358 0 +4 8006 14.931436272358 0 +4 8006 14.931436272358 0 +4 8043 14.957384321127 0 +4 8043 14.957384321127 0 +4 8054 14.957544321127 0 +4 8054 14.957544321127 0 +4 8115 15.043993682366 0 +4 8115 15.043993682366 0 +4 8130 15.044153682366 0 +4 8130 15.044153682366 0 +4 8163 15.214556809491 0 +4 8163 15.214556809491 0 +4 8171 15.214716809491 0 +4 8171 15.214716809491 0 +4 8202 15.224398813176 0 +4 8202 15.224398813176 0 +4 8209 15.224558813176 0 +4 8209 15.224558813176 0 +4 8240 15.231276256794 0 +4 8240 15.231276256794 0 +4 8247 15.231436256794 0 +4 8247 15.231436256794 0 +4 8284 15.257384333003 0 +4 8284 15.257384333003 0 +4 8295 15.257544333003 0 +4 8295 15.257544333003 0 +4 8356 15.343993667781 0 +4 8356 15.343993667781 0 +4 8371 15.344153667781 0 +4 8371 15.344153667781 0 +4 8404 15.514556809491 0 +4 8404 15.514556809491 0 +4 8412 15.514716809491 0 +4 8412 15.514716809491 0 +4 8443 15.524398828841 0 +4 8443 15.524398828841 0 +4 8450 15.524558828841 0 +4 8450 15.524558828841 0 +4 8481 15.531276241243 0 +4 8481 15.531276241243 0 +4 8488 15.531436241243 0 +4 8488 15.531436241243 0 +4 8525 15.557384345028 0 +4 8525 15.557384345028 0 +4 8536 15.557544345028 0 +4 8536 15.557544345028 0 +4 8597 15.643993653166 0 +4 8597 15.643993653166 0 +4 8612 15.644153653166 0 +4 8612 15.644153653166 0 +4 8645 15.814556809491 0 +4 8645 15.814556809491 0 +4 8653 15.814716809491 0 +4 8653 15.814716809491 0 +4 8684 15.824398844455 0 +4 8684 15.824398844455 0 +4 8691 15.824558844455 0 +4 8691 15.824558844455 0 +4 8722 15.831276225819 0 +4 8722 15.831276225819 0 +4 8729 15.831436225819 0 +4 8729 15.831436225819 0 +4 8766 15.857384357121 0 +4 8766 15.857384357121 0 +4 8777 15.857544357121 0 +4 8777 15.857544357121 0 +4 8838 15.943993638616 0 +4 8838 15.943993638616 0 +4 8853 15.944153638616 0 +4 8853 15.944153638616 0 +4 8886 16.114556809491 0 +4 8886 16.114556809491 0 +4 8894 16.114716809491 0 +4 8894 16.114716809491 0 +4 8929 16.124398860085 0 +4 8929 16.124398860085 0 +4 8936 16.124558860085 0 +4 8936 16.124558860085 0 +4 8967 16.131276210464 0 +4 8967 16.131276210464 0 +4 8974 16.131436210464 0 +4 8974 16.131436210464 0 +4 9011 16.157384369327 0 +4 9011 16.157384369327 0 +4 9022 16.157544369327 0 +4 9022 16.157544369327 0 +4 9046 16.193586240802 0 +4 9046 16.193586240802 0 +4 9061 16.193746240802 0 +4 9061 16.193746240802 0 +4 9087 16.243993624037 0 +4 9087 16.243993624037 0 +4 9102 16.244153624037 0 +4 9102 16.244153624037 0 +4 9135 16.414556809491 0 +4 9135 16.414556809491 0 +4 9143 16.414716809491 0 +4 9143 16.414716809491 0 +4 9178 16.424398875726 0 +4 9178 16.424398875726 0 +4 9185 16.424558875726 0 +4 9185 16.424558875726 0 +4 9216 16.431276195381 0 +4 9216 16.431276195381 0 +4 9223 16.431436195381 0 +4 9223 16.431436195381 0 +4 9260 16.457384381652 0 +4 9260 16.457384381652 0 +4 9271 16.457544381652 0 +4 9271 16.457544381652 0 +4 9295 16.4935862136 0 +4 9295 16.4935862136 0 +4 9310 16.4937462136 0 +4 9310 16.4937462136 0 +4 9336 16.54399360942 0 +4 9336 16.54399360942 0 +4 9351 16.54415360942 0 +4 9351 16.54415360942 0 +4 9384 16.714556809491 0 +4 9384 16.714556809491 0 +4 9392 16.714716809491 0 +4 9392 16.714716809491 0 +4 9427 16.724398891381 0 +4 9427 16.724398891381 0 +4 9434 16.724558891381 0 +4 9434 16.724558891381 0 +4 9465 16.731276181333 0 +4 9465 16.731276181333 0 +4 9472 16.731436181333 0 +4 9472 16.731436181333 0 +4 9509 16.757384394067 0 +4 9509 16.757384394067 0 +4 9520 16.757544394067 0 +4 9520 16.757544394067 0 +4 9544 16.793586189096 0 +4 9544 16.793586189096 0 +4 9559 16.793746189096 0 +4 9559 16.793746189096 0 +4 9585 16.84399359486 0 +4 9585 16.84399359486 0 +4 9600 16.84415359486 0 +4 9600 16.84415359486 0 +4 9633 17.014556809491 0 +4 9633 17.014556809491 0 +4 9641 17.014716809491 0 +4 9641 17.014716809491 0 +4 9677 17.02439890702 0 +4 9677 17.02439890702 0 +4 9688 17.02455890702 0 +4 9688 17.02455890702 0 +4 9714 17.031276173692 0 +4 9714 17.031276173692 0 +4 9721 17.031436173692 0 +4 9721 17.031436173692 0 +4 9758 17.057384406545 0 +4 9758 17.057384406545 0 +4 9769 17.057544406545 0 +4 9769 17.057544406545 0 +4 9792 17.093586167318 0 +4 9792 17.093586167318 0 +4 9803 17.093746167318 0 +4 9803 17.093746167318 0 +4 9833 17.143993580311 0 +4 9833 17.143993580311 0 +4 9844 17.144153580311 0 +4 9844 17.144153580311 0 +4 9882 17.314556809491 0 +4 9882 17.314556809491 0 +4 9890 17.314716809491 0 +4 9890 17.314716809491 0 +4 9926 17.324398922703 0 +4 9926 17.324398922703 0 +4 9937 17.324558922703 0 +4 9937 17.324558922703 0 +4 9963 17.331276182573 0 +4 9963 17.331276182573 0 +4 9970 17.331436182573 0 +4 9970 17.331436182573 0 +4 10008 17.357384419138 0 +4 10008 17.357384419138 0 +4 10023 17.357544419138 0 +4 10023 17.357544419138 0 +4 10041 17.39358614821 0 +4 10041 17.39358614821 0 +4 10052 17.39374614821 0 +4 10052 17.39374614821 0 +4 10082 17.443993565736 0 +4 10082 17.443993565736 0 +4 10093 17.444153565736 0 +4 10093 17.444153565736 0 +4 10131 17.614556809491 0 +4 10131 17.614556809491 0 +4 10139 17.614716809491 0 +4 10139 17.614716809491 0 +4 10175 17.624398938357 0 +4 10175 17.624398938357 0 +4 10186 17.624558938357 0 +4 10186 17.624558938357 0 +4 10212 17.631276196794 0 +4 10212 17.631276196794 0 +4 10219 17.631436196794 0 +4 10219 17.631436196794 0 +4 10257 17.657384431773 0 +4 10257 17.657384431773 0 +4 10272 17.657544431773 0 +4 10272 17.657544431773 0 +4 10290 17.69358613177 0 +4 10290 17.69358613177 0 +4 10301 17.69374613177 0 +4 10301 17.69374613177 0 +4 10331 17.743993551191 0 +4 10331 17.743993551191 0 +4 10342 17.744153551191 0 +4 10342 17.744153551191 0 +4 10380 17.914556809491 0 +4 10380 17.914556809491 0 +4 10388 17.914716809491 0 +4 10388 17.914716809491 0 +4 10420 17.924398954 0 +4 10420 17.924398954 0 +4 10431 17.924558954 0 +4 10431 17.924558954 0 +4 10457 17.931276211881 0 +4 10457 17.931276211881 0 +4 10464 17.931436211881 0 +4 10464 17.931436211881 0 +4 10502 17.957384444486 0 +4 10502 17.957384444486 0 +4 10517 17.957544444486 0 +4 10517 17.957544444486 0 +4 10531 17.993586116127 0 +4 10531 17.993586116127 0 +4 10542 17.993746116127 0 +4 10542 17.993746116127 0 +4 10572 18.04399353668 0 +4 10572 18.04399353668 0 +4 10583 18.04415353668 0 +4 10583 18.04415353668 0 +4 10621 18.214556809491 0 +4 10621 18.214556809491 0 +4 10629 18.214716809491 0 +4 10629 18.214716809491 0 +4 10661 18.224398969656 0 +4 10661 18.224398969656 0 +4 10672 18.224558969656 0 +4 10672 18.224558969656 0 +4 10694 18.231276227234 0 +4 10694 18.231276227234 0 +4 10701 18.231436227234 0 +4 10701 18.231436227234 0 +4 10768 18.293586100476 0 +4 10768 18.293586100476 0 +4 10779 18.293746100476 0 +4 10779 18.293746100476 0 +4 10809 18.343993522105 0 +4 10809 18.343993522105 0 +4 10820 18.344153522105 0 +4 10820 18.344153522105 0 +4 10854 18.514556809491 0 +4 10854 18.514556809491 0 +4 10862 18.514716809491 0 +4 10862 18.514716809491 0 +4 10894 18.524398984772 0 +4 10894 18.524398984772 0 +4 10905 18.524558984772 0 +4 10905 18.524558984772 0 +4 10927 18.531276242598 0 +4 10927 18.531276242598 0 +4 10934 18.531436242598 0 +4 10934 18.531436242598 0 +4 11001 18.593586085525 0 +4 11001 18.593586085525 0 +4 11012 18.593746085525 0 +4 11012 18.593746085525 0 +4 11042 18.643993508193 0 +4 11042 18.643993508193 0 +4 11053 18.644153508193 0 +4 11053 18.644153508193 0 +4 11087 18.814556809491 0 +4 11087 18.814556809491 0 +4 11095 18.814716809491 0 +4 11095 18.814716809491 0 +4 11127 18.824398992869 0 +4 11127 18.824398992869 0 +4 11138 18.824558992869 0 +4 11138 18.824558992869 0 +4 11160 18.831276252819 0 +4 11160 18.831276252819 0 +4 11167 18.831436252819 0 +4 11167 18.831436252819 0 +4 11234 18.893586078461 0 +4 11234 18.893586078461 0 +4 11245 18.893746078461 0 +4 11245 18.893746078461 0 +4 11275 18.9439935017 0 +4 11275 18.9439935017 0 +4 11286 18.9441535017 0 +4 11286 18.9441535017 0 +4 11320 19.114556809491 0 +4 11320 19.114556809491 0 +4 11328 19.114716809491 0 +4 11328 19.114716809491 0 +4 11360 19.124398995465 0 +4 11360 19.124398995465 0 +4 11371 19.124558995465 0 +4 11371 19.124558995465 0 +4 11393 19.131276259429 0 +4 11393 19.131276259429 0 +4 11400 19.131436259429 0 +4 11400 19.131436259429 0 +4 11467 19.193586077908 0 +4 11467 19.193586077908 0 +4 11478 19.193746077908 0 +4 11478 19.193746077908 0 +4 11508 19.243993499144 0 +4 11508 19.243993499144 0 +4 11519 19.244153499144 0 +4 11519 19.244153499144 0 +4 11553 19.414556809491 0 +4 11553 19.414556809491 0 +4 11561 19.414716809491 0 +4 11561 19.414716809491 0 +4 11593 19.424398998137 0 +4 11593 19.424398998137 0 +4 11604 19.424558998137 0 +4 11604 19.424558998137 0 +4 11626 19.431276267371 0 +4 11626 19.431276267371 0 +4 11633 19.431436267371 0 +4 11633 19.431436267371 0 +4 11700 19.493586078167 0 +4 11700 19.493586078167 0 +4 11711 19.493746078167 0 +4 11711 19.493746078167 0 +4 11741 19.543993497268 0 +4 11741 19.543993497268 0 +4 11752 19.544153497268 0 +4 11752 19.544153497268 0 +4 11786 19.714556809491 0 +4 11786 19.714556809491 0 +4 11794 19.714716809491 0 +4 11794 19.714716809491 0 +4 11826 19.724399001753 0 +4 11826 19.724399001753 0 +4 11837 19.724559001753 0 +4 11837 19.724559001753 0 +4 11859 19.731276277055 0 +4 11859 19.731276277055 0 +4 11866 19.731436277055 0 +4 11866 19.731436277055 0 +4 11933 19.793586078318 0 +4 11933 19.793586078318 0 +4 11944 19.793746078318 0 +4 11944 19.793746078318 0 +4 11974 19.843993496076 0 +4 11974 19.843993496076 0 +4 11985 19.844153496076 0 +4 11985 19.844153496076 0 +4 12019 20.014556809491 0 +4 12019 20.014556809491 0 +4 12027 20.014716809491 0 +4 12027 20.014716809491 0 +4 12063 20.024399006417 0 +4 12063 20.024399006417 0 +4 12074 20.024559006417 0 +4 12074 20.024559006417 0 +4 12096 20.031276288225 0 +4 12096 20.031276288225 0 +4 12103 20.031436288225 0 +4 12103 20.031436288225 0 +4 12141 20.057384440568 0 +4 12141 20.057384440568 0 +4 12156 20.057544440568 0 +4 12156 20.057544440568 0 +4 12174 20.093586078154 0 +4 12174 20.093586078154 0 +4 12185 20.093746078154 0 +4 12185 20.093746078154 0 +4 12215 20.143993495659 0 +4 12215 20.143993495659 0 +4 12226 20.144153495659 0 +4 12226 20.144153495659 0 +4 12260 20.314556809491 0 +4 12260 20.314556809491 0 +4 12268 20.314716809491 0 +4 12268 20.314716809491 0 +4 12304 20.324399012107 0 +4 12304 20.324399012107 0 +4 12315 20.324559012107 0 +4 12315 20.324559012107 0 +4 12337 20.331276300497 0 +4 12337 20.331276300497 0 +4 12344 20.331436300497 0 +4 12344 20.331436300497 0 +4 12382 20.357384434459 0 +4 12382 20.357384434459 0 +4 12397 20.357544434459 0 +4 12397 20.357544434459 0 +4 12415 20.393586077762 0 +4 12415 20.393586077762 0 +4 12426 20.393746077762 0 +4 12426 20.393746077762 0 +4 12456 20.443993496115 0 +4 12456 20.443993496115 0 +4 12467 20.444153496115 0 +4 12467 20.444153496115 0 +4 12501 20.614556809491 0 +4 12501 20.614556809491 0 +4 12509 20.614716809491 0 +4 12509 20.614716809491 0 +4 12545 20.624399018883 0 +4 12545 20.624399018883 0 +4 12556 20.624559018883 0 +4 12556 20.624559018883 0 +4 12578 20.631276313658 0 +4 12578 20.631276313658 0 +4 12585 20.631436313658 0 +4 12585 20.631436313658 0 +4 12623 20.657384428826 0 +4 12623 20.657384428826 0 +4 12638 20.657544428826 0 +4 12638 20.657544428826 0 +4 12656 20.693586077186 0 +4 12656 20.693586077186 0 +4 12667 20.693746077186 0 +4 12667 20.693746077186 0 +4 12697 20.743993497538 0 +4 12697 20.743993497538 0 +4 12708 20.744153497538 0 +4 12708 20.744153497538 0 +4 12742 20.914556809491 0 +4 12742 20.914556809491 0 +4 12750 20.914716809491 0 +4 12750 20.914716809491 0 +4 12786 20.924399026768 0 +4 12786 20.924399026768 0 +4 12797 20.924559026768 0 +4 12797 20.924559026768 0 +4 12819 20.931276327544 0 +4 12819 20.931276327544 0 +4 12826 20.931436327544 0 +4 12826 20.931436327544 0 +4 12864 20.957384423566 0 +4 12864 20.957384423566 0 +4 12879 20.957544423566 0 +4 12879 20.957544423566 0 +4 12897 20.993586076495 0 +4 12897 20.993586076495 0 +4 12908 20.993746076495 0 +4 12908 20.993746076495 0 +4 12938 21.043993500002 0 +4 12938 21.043993500002 0 +4 12949 21.044153500002 0 +4 12949 21.044153500002 0 +4 12983 21.214556809491 0 +4 12983 21.214556809491 0 +4 12991 21.214716809491 0 +4 12991 21.214716809491 0 +4 13027 21.224399035584 0 +4 13027 21.224399035584 0 +4 13038 21.224559035584 0 +4 13038 21.224559035584 0 +4 13060 21.231276341939 0 +4 13060 21.231276341939 0 +4 13067 21.231436341939 0 +4 13067 21.231436341939 0 +4 13105 21.257384418748 0 +4 13105 21.257384418748 0 +4 13120 21.257544418748 0 +4 13120 21.257544418748 0 +4 13138 21.293586075717 0 +4 13138 21.293586075717 0 +4 13149 21.293746075717 0 +4 13149 21.293746075717 0 +4 13179 21.343993503566 0 +4 13179 21.343993503566 0 +4 13190 21.344153503566 0 +4 13190 21.344153503566 0 +4 13224 21.514556809491 0 +4 13224 21.514556809491 0 +4 13232 21.514716809491 0 +4 13232 21.514716809491 0 +4 13268 21.524399045258 0 +4 13268 21.524399045258 0 +4 13279 21.524559045258 0 +4 13279 21.524559045258 0 +4 13301 21.531276356826 0 +4 13301 21.531276356826 0 +4 13308 21.531436356826 0 +4 13308 21.531436356826 0 +4 13346 21.557384414308 0 +4 13346 21.557384414308 0 +4 13361 21.557544414308 0 +4 13361 21.557544414308 0 +4 13379 21.593586074727 0 +4 13379 21.593586074727 0 +4 13390 21.593746074727 0 +4 13390 21.593746074727 0 +4 13420 21.643993508321 0 +4 13420 21.643993508321 0 +4 13431 21.644153508321 0 +4 13431 21.644153508321 0 +4 13465 21.814556809491 0 +4 13465 21.814556809491 0 +4 13473 21.814716809491 0 +4 13473 21.814716809491 0 +4 13509 21.82439905578 0 +4 13509 21.82439905578 0 +4 13520 21.82455905578 0 +4 13520 21.82455905578 0 +4 13542 21.831276372147 0 +4 13542 21.831276372147 0 +4 13549 21.831436372147 0 +4 13549 21.831436372147 0 +4 13587 21.85738441021 0 +4 13587 21.85738441021 0 +4 13602 21.85754441021 0 +4 13602 21.85754441021 0 +4 13620 21.893586073568 0 +4 13620 21.893586073568 0 +4 13631 21.893746073568 0 +4 13631 21.893746073568 0 +4 13661 21.943993514273 0 +4 13661 21.943993514273 0 +4 13672 21.944153514273 0 +4 13672 21.944153514273 0 +4 13706 22.114556809491 0 +4 13706 22.114556809491 0 +4 13714 22.114716809491 0 +4 13714 22.114716809491 0 +4 13750 22.124399067102 0 +4 13750 22.124399067102 0 +4 13761 22.124559067102 0 +4 13761 22.124559067102 0 +4 13783 22.131276387853 0 +4 13783 22.131276387853 0 +4 13790 22.131436387853 0 +4 13790 22.131436387853 0 +4 13828 22.157384406427 0 +4 13828 22.157384406427 0 +4 13843 22.157544406427 0 +4 13843 22.157544406427 0 +4 13861 22.193586072252 0 +4 13861 22.193586072252 0 +4 13872 22.193746072252 0 +4 13872 22.193746072252 0 +4 13902 22.243993521464 0 +4 13902 22.243993521464 0 +4 13913 22.244153521464 0 +4 13913 22.244153521464 0 +4 13947 22.414556809491 0 +4 13947 22.414556809491 0 +4 13955 22.414716809491 0 +4 13955 22.414716809491 0 +4 13991 22.424399079181 0 +4 13991 22.424399079181 0 +4 14002 22.424559079181 0 +4 14002 22.424559079181 0 +4 14024 22.431276403914 0 +4 14024 22.431276403914 0 +4 14031 22.431436403914 0 +4 14031 22.431436403914 0 +4 14069 22.457384402943 0 +4 14069 22.457384402943 0 +4 14084 22.457544402943 0 +4 14084 22.457544402943 0 +4 14102 22.4935860709 0 +4 14102 22.4935860709 0 +4 14113 22.4937460709 0 +4 14113 22.4937460709 0 +4 14143 22.543993529992 0 +4 14143 22.543993529992 0 +4 14154 22.544153529992 0 +4 14154 22.544153529992 0 +4 14188 22.714556809491 0 +4 14188 22.714556809491 0 +4 14196 22.714716809491 0 +4 14196 22.714716809491 0 +4 14232 22.724399091991 0 +4 14232 22.724399091991 0 +4 14243 22.724559091991 0 +4 14243 22.724559091991 0 +4 14265 22.731276420334 0 +4 14265 22.731276420334 0 +4 14272 22.731436420334 0 +4 14272 22.731436420334 0 +4 14310 22.757384399779 0 +4 14310 22.757384399779 0 +4 14325 22.757544399779 0 +4 14325 22.757544399779 0 +4 14343 22.793586069444 0 +4 14343 22.793586069444 0 +4 14354 22.793746069444 0 +4 14354 22.793746069444 0 +4 14384 22.843993539394 0 +4 14384 22.843993539394 0 +4 14395 22.844153539394 0 +4 14395 22.844153539394 0 +4 14429 23.014556809491 0 +4 14429 23.014556809491 0 +4 14437 23.014716809491 0 +4 14437 23.014716809491 0 +4 14474 23.02439910552 0 +4 14474 23.02439910552 0 +4 14489 23.02455910552 0 +4 14489 23.02455910552 0 +4 14506 23.031276437066 0 +4 14506 23.031276437066 0 +4 14513 23.031436437066 0 +4 14513 23.031436437066 0 +4 14551 23.057384396928 0 +4 14551 23.057384396928 0 +4 14566 23.057544396928 0 +4 14566 23.057544396928 0 +4 14584 23.093586067888 0 +4 14584 23.093586067888 0 +4 14595 23.093746067888 0 +4 14595 23.093746067888 0 +4 14625 23.143993549741 0 +4 14625 23.143993549741 0 +4 14636 23.144153549741 0 +4 14636 23.144153549741 0 +4 14670 23.314556809491 0 +4 14670 23.314556809491 0 +4 14678 23.314716809491 0 +4 14678 23.314716809491 0 +4 14715 23.324399119693 0 +4 14715 23.324399119693 0 +4 14730 23.324559119693 0 +4 14730 23.324559119693 0 +4 14747 23.331276454133 0 +4 14747 23.331276454133 0 +4 14754 23.331436454133 0 +4 14754 23.331436454133 0 +4 14792 23.357384394378 0 +4 14792 23.357384394378 0 +4 14807 23.357544394378 0 +4 14807 23.357544394378 0 +4 14825 23.393586066244 0 +4 14825 23.393586066244 0 +4 14836 23.393746066244 0 +4 14836 23.393746066244 0 +4 14866 23.443993561136 0 +4 14866 23.443993561136 0 +4 14877 23.444153561136 0 +4 14877 23.444153561136 0 +4 14911 23.614556809491 0 +4 14911 23.614556809491 0 +4 14919 23.614716809491 0 +4 14919 23.614716809491 0 +4 14956 23.624399134588 0 +4 14956 23.624399134588 0 +4 14971 23.624559134588 0 +4 14971 23.624559134588 0 +4 14988 23.63127647154 0 +4 14988 23.63127647154 0 +4 14995 23.63143647154 0 +4 14995 23.63143647154 0 +4 15033 23.6573843921 0 +4 15033 23.6573843921 0 +4 15048 23.6575443921 0 +4 15048 23.6575443921 0 +4 15066 23.693586064635 0 +4 15066 23.693586064635 0 +4 15077 23.693746064635 0 +4 15077 23.693746064635 0 +4 15107 23.743993567162 0 +4 15107 23.743993567162 0 +4 15118 23.744153567162 0 +4 15118 23.744153567162 0 +4 15152 23.914556809491 0 +4 15152 23.914556809491 0 +4 15160 23.914716809491 0 +4 15160 23.914716809491 0 +4 15197 23.924399150101 0 +4 15197 23.924399150101 0 +4 15212 23.924559150101 0 +4 15212 23.924559150101 0 +4 15230 23.931276489241 0 +4 15230 23.931276489241 0 +4 15241 23.931436489241 0 +4 15241 23.931436489241 0 +4 15274 23.957384390086 0 +4 15274 23.957384390086 0 +4 15289 23.957544390086 0 +4 15289 23.957544390086 0 +4 15307 23.993586063012 0 +4 15307 23.993586063012 0 +4 15318 23.993746063012 0 +4 15318 23.993746063012 0 +4 15348 24.043993568182 0 +4 15348 24.043993568182 0 +4 15359 24.044153568182 0 +4 15359 24.044153568182 0 +4 15393 24.214556809491 0 +4 15393 24.214556809491 0 +4 15401 24.214716809491 0 +4 15401 24.214716809491 0 +4 15438 24.224399166253 0 +4 15438 24.224399166253 0 +4 15453 24.224559166253 0 +4 15453 24.224559166253 0 +4 15471 24.231276507166 0 +4 15471 24.231276507166 0 +4 15482 24.231436507166 0 +4 15482 24.231436507166 0 +4 15514 24.257384388316 0 +4 15514 24.257384388316 0 +4 15525 24.257544388316 0 +4 15525 24.257544388316 0 +4 15548 24.293586061339 0 +4 15548 24.293586061339 0 +4 15559 24.293746061339 0 +4 15559 24.293746061339 0 +4 15589 24.343993571496 0 +4 15589 24.343993571496 0 +4 15600 24.344153571496 0 +4 15600 24.344153571496 0 +4 15634 24.514556809491 0 +4 15634 24.514556809491 0 +4 15642 24.514716809491 0 +4 15642 24.514716809491 0 +4 15679 24.524399183101 0 +4 15679 24.524399183101 0 +4 15694 24.524559183101 0 +4 15694 24.524559183101 0 +4 15712 24.531276525482 0 +4 15712 24.531276525482 0 +4 15723 24.531436525482 0 +4 15723 24.531436525482 0 +4 15755 24.557384386729 0 +4 15755 24.557384386729 0 +4 15766 24.557544386729 0 +4 15766 24.557544386729 0 +4 15789 24.593586059807 0 +4 15789 24.593586059807 0 +4 15800 24.593746059807 0 +4 15800 24.593746059807 0 +4 15830 24.6439935745 0 +4 15830 24.6439935745 0 +4 15841 24.6441535745 0 +4 15841 24.6441535745 0 +4 15875 24.814556809491 0 +4 15875 24.814556809491 0 +4 15883 24.814716809491 0 +4 15883 24.814716809491 0 +4 15920 24.824399200464 0 +4 15920 24.824399200464 0 +4 15935 24.824559200464 0 +4 15935 24.824559200464 0 +4 15953 24.831276544164 0 +4 15953 24.831276544164 0 +4 15964 24.831436544164 0 +4 15964 24.831436544164 0 +4 15996 24.857384385359 0 +4 15996 24.857384385359 0 +4 16007 24.857544385359 0 +4 16007 24.857544385359 0 +4 16030 24.893586058439 0 +4 16030 24.893586058439 0 +4 16041 24.893746058439 0 +4 16041 24.893746058439 0 +4 16071 24.943993577203 0 +4 16071 24.943993577203 0 +4 16082 24.944153577203 0 +4 16082 24.944153577203 0 +4 16116 25.114556809491 0 +4 16116 25.114556809491 0 +4 16124 25.114716809491 0 +4 16124 25.114716809491 0 +4 16161 25.12439921797 0 +4 16161 25.12439921797 0 +4 16176 25.12455921797 0 +4 16176 25.12455921797 0 +4 16194 25.131276563184 0 +4 16194 25.131276563184 0 +4 16205 25.131436563184 0 +4 16205 25.131436563184 0 +4 16237 25.157384384197 0 +4 16237 25.157384384197 0 +4 16248 25.157544384197 0 +4 16248 25.157544384197 0 +4 16271 25.193586057203 0 +4 16271 25.193586057203 0 +4 16282 25.193746057203 0 +4 16282 25.193746057203 0 +4 16312 25.24399357959 0 +4 16312 25.24399357959 0 +4 16323 25.24415357959 0 +4 16323 25.24415357959 0 +4 16357 25.414556809491 0 +4 16357 25.414556809491 0 +4 16365 25.414716809491 0 +4 16365 25.414716809491 0 +4 16402 25.424399235494 0 +4 16402 25.424399235494 0 +4 16417 25.424559235494 0 +4 16417 25.424559235494 0 +4 16435 25.431276582461 0 +4 16435 25.431276582461 0 +4 16446 25.431436582461 0 +4 16446 25.431436582461 0 +4 16478 25.457384383218 0 +4 16478 25.457384383218 0 +4 16489 25.457544383218 0 +4 16489 25.457544383218 0 +4 16512 25.493586056133 0 +4 16512 25.493586056133 0 +4 16523 25.493746056133 0 +4 16523 25.493746056133 0 +4 16553 25.543993581628 0 +4 16553 25.543993581628 0 +4 16564 25.544153581628 0 +4 16564 25.544153581628 0 +4 16598 25.714556809491 0 +4 16598 25.714556809491 0 +4 16606 25.714716809491 0 +4 16606 25.714716809491 0 +4 16643 25.72439925309 0 +4 16643 25.72439925309 0 +4 16658 25.72455925309 0 +4 16658 25.72455925309 0 +4 16676 25.731276602139 0 +4 16676 25.731276602139 0 +4 16687 25.731436602139 0 +4 16687 25.731436602139 0 +4 16719 25.757384382378 0 +4 16719 25.757384382378 0 +4 16730 25.757544382378 0 +4 16730 25.757544382378 0 +4 16753 25.793586055358 0 +4 16753 25.793586055358 0 +4 16764 25.793746055358 0 +4 16764 25.793746055358 0 +4 16794 25.843993583304 0 +4 16794 25.843993583304 0 +4 16805 25.844153583304 0 +4 16805 25.844153583304 0 +4 16839 26.014556809491 0 +4 16839 26.014556809491 0 +4 16847 26.014716809491 0 +4 16847 26.014716809491 0 +4 16884 26.02439927079 0 +4 16884 26.02439927079 0 +4 16899 26.02455927079 0 +4 16899 26.02455927079 0 +4 16917 26.031276621424 0 +4 16917 26.031276621424 0 +4 16928 26.031436621424 0 +4 16928 26.031436621424 0 +4 16960 26.057384381741 0 +4 16960 26.057384381741 0 +4 16971 26.057544381741 0 +4 16971 26.057544381741 0 +4 16994 26.093586054815 0 +4 16994 26.093586054815 0 +4 17005 26.093746054815 0 +4 17005 26.093746054815 0 +4 17035 26.143993584607 0 +4 17035 26.143993584607 0 +4 17046 26.144153584607 0 +4 17046 26.144153584607 0 +4 17080 26.314556809491 0 +4 17080 26.314556809491 0 +4 17088 26.314716809491 0 +4 17088 26.314716809491 0 +4 17125 26.324399288461 0 +4 17125 26.324399288461 0 +4 17140 26.324559288461 0 +4 17140 26.324559288461 0 +4 17158 26.331276639945 0 +4 17158 26.331276639945 0 +4 17169 26.331436639945 0 +4 17169 26.331436639945 0 +4 17201 26.357384381246 0 +4 17201 26.357384381246 0 +4 17212 26.357544381246 0 +4 17212 26.357544381246 0 +4 17235 26.393586054911 0 +4 17235 26.393586054911 0 +4 17246 26.393746054911 0 +4 17246 26.393746054911 0 +4 17276 26.443993585474 0 +4 17276 26.443993585474 0 +4 17287 26.444153585474 0 +4 17287 26.444153585474 0 +4 17321 26.614556809491 0 +4 17321 26.614556809491 0 +4 17329 26.614716809491 0 +4 17329 26.614716809491 0 +4 17366 26.624399306213 0 +4 17366 26.624399306213 0 +4 17381 26.624559306213 0 +4 17381 26.624559306213 0 +4 17399 26.631276657697 0 +4 17399 26.631276657697 0 +4 17410 26.631436657697 0 +4 17410 26.631436657697 0 +4 17442 26.657384380772 0 +4 17442 26.657384380772 0 +4 17453 26.657544380772 0 +4 17453 26.657544380772 0 +4 17476 26.693586055774 0 +4 17476 26.693586055774 0 +4 17487 26.693746055774 0 +4 17487 26.693746055774 0 +4 17517 26.743993585917 0 +4 17517 26.743993585917 0 +4 17528 26.744153585917 0 +4 17528 26.744153585917 0 +4 17562 26.914556809491 0 +4 17562 26.914556809491 0 +4 17570 26.914716809491 0 +4 17570 26.914716809491 0 +4 17607 26.924399324013 0 +4 17607 26.924399324013 0 +4 17622 26.924559324013 0 +4 17622 26.924559324013 0 +4 17640 26.931276674713 0 +4 17640 26.931276674713 0 +4 17651 26.931436674713 0 +4 17651 26.931436674713 0 +4 17683 26.957384380173 0 +4 17683 26.957384380173 0 +4 17694 26.957544380173 0 +4 17694 26.957544380173 0 +4 17717 26.993586057387 0 +4 17717 26.993586057387 0 +4 17728 26.993746057387 0 +4 17728 26.993746057387 0 +4 17758 27.043993586021 0 +4 17758 27.043993586021 0 +4 17769 27.044153586021 0 +4 17769 27.044153586021 0 +4 17803 27.214556809491 0 +4 17803 27.214556809491 0 +4 17811 27.214716809491 0 +4 17811 27.214716809491 0 +4 17844 27.224399341349 0 +4 17844 27.224399341349 0 +4 17859 27.224559341349 0 +4 17859 27.224559341349 0 +4 17873 27.231276690939 0 +4 17873 27.231276690939 0 +4 17884 27.231436690939 0 +4 17884 27.231436690939 0 +4 17916 27.257384379228 0 +4 17916 27.257384379228 0 +4 17927 27.257544379228 0 +4 17927 27.257544379228 0 +4 17950 27.293586059723 0 +4 17950 27.293586059723 0 +4 17961 27.293746059723 0 +4 17961 27.293746059723 0 +4 17991 27.343993585835 0 +4 17991 27.343993585835 0 +4 18002 27.344153585835 0 +4 18002 27.344153585835 0 +4 18036 27.514556809491 0 +4 18036 27.514556809491 0 +4 18044 27.514716809491 0 +4 18044 27.514716809491 0 +4 18106 27.531276706855 0 +4 18106 27.531276706855 0 +4 18117 27.531436706855 0 +4 18117 27.531436706855 0 +4 18149 27.557384377938 0 +4 18149 27.557384377938 0 +4 18160 27.557544377938 0 +4 18160 27.557544377938 0 +4 18183 27.593586062815 0 +4 18183 27.593586062815 0 +4 18194 27.593746062815 0 +4 18194 27.593746062815 0 +4 18224 27.643993585638 0 +4 18224 27.643993585638 0 +4 18235 27.644153585638 0 +4 18235 27.644153585638 0 +4 18269 27.814556809491 0 +4 18269 27.814556809491 0 +4 18277 27.814716809491 0 +4 18277 27.814716809491 0 +4 18339 27.831276720086 0 +4 18339 27.831276720086 0 +4 18350 27.831436720086 0 +4 18350 27.831436720086 0 +4 18382 27.857384376349 0 +4 18382 27.857384376349 0 +4 18393 27.857544376349 0 +4 18393 27.857544376349 0 +4 18416 27.893586066606 0 +4 18416 27.893586066606 0 +4 18427 27.893746066606 0 +4 18427 27.893746066606 0 +4 18457 27.943993585413 0 +4 18457 27.943993585413 0 +4 18468 27.944153585413 0 +4 18468 27.944153585413 0 +4 18502 28.114556809491 0 +4 18502 28.114556809491 0 +4 18510 28.114716809491 0 +4 18510 28.114716809491 0 +4 18572 28.13127672571 0 +4 18572 28.13127672571 0 +4 18583 28.13143672571 0 +4 18583 28.13143672571 0 +4 18615 28.157384373989 0 +4 18615 28.157384373989 0 +4 18626 28.157544373989 0 +4 18626 28.157544373989 0 +4 18649 28.193586071088 0 +4 18649 28.193586071088 0 +4 18660 28.193746071088 0 +4 18660 28.193746071088 0 +4 18690 28.243993585227 0 +4 18690 28.243993585227 0 +4 18701 28.244153585227 0 +4 18701 28.244153585227 0 +4 18735 28.414556809491 0 +4 18735 28.414556809491 0 +4 18743 28.414716809491 0 +4 18743 28.414716809491 0 +4 18805 28.431276732587 0 +4 18805 28.431276732587 0 +4 18816 28.431436732587 0 +4 18816 28.431436732587 0 +4 18848 28.457384371101 0 +4 18848 28.457384371101 0 +4 18859 28.457544371101 0 +4 18859 28.457544371101 0 +4 18882 28.493586076328 0 +4 18882 28.493586076328 0 +4 18893 28.493746076328 0 +4 18893 28.493746076328 0 +4 18923 28.543993585019 0 +4 18923 28.543993585019 0 +4 18934 28.544153585019 0 +4 18934 28.544153585019 0 +4 18968 28.714556809491 0 +4 18968 28.714556809491 0 +4 18976 28.714716809491 0 +4 18976 28.714716809491 0 +4 19039 28.731276740327 0 +4 19039 28.731276740327 0 +4 19054 28.731436740327 0 +4 19054 28.731436740327 0 +4 19081 28.75738436664 0 +4 19081 28.75738436664 0 +4 19092 28.75754436664 0 +4 19092 28.75754436664 0 +4 19116 28.793586082194 0 +4 19116 28.793586082194 0 +4 19131 28.793746082194 0 +4 19131 28.793746082194 0 +4 19156 28.843993584814 0 +4 19156 28.843993584814 0 +4 19167 28.844153584814 0 +4 19167 28.844153584814 0 +4 19201 29.014556809491 0 +4 19201 29.014556809491 0 +4 19209 29.014716809491 0 +4 19209 29.014716809491 0 +4 19272 29.031276748231 0 +4 19272 29.031276748231 0 +4 19287 29.031436748231 0 +4 19287 29.031436748231 0 +4 19310 29.057384360134 0 +4 19310 29.057384360134 0 +4 19321 29.057544360134 0 +4 19321 29.057544360134 0 +4 19341 29.093586088751 0 +4 19341 29.093586088751 0 +4 19356 29.093746088751 0 +4 19356 29.093746088751 0 +4 19381 29.143993584619 0 +4 19381 29.143993584619 0 +4 19392 29.144153584619 0 +4 19392 29.144153584619 0 +4 19426 29.314556809491 0 +4 19426 29.314556809491 0 +4 19434 29.314716809491 0 +4 19434 29.314716809491 0 +4 19497 29.331276756353 0 +4 19497 29.331276756353 0 +4 19512 29.331436756353 0 +4 19512 29.331436756353 0 +4 19534 29.357384350663 0 +4 19534 29.357384350663 0 +4 19541 29.357544350663 0 +4 19541 29.357544350663 0 +4 19566 29.393586095971 0 +4 19566 29.393586095971 0 +4 19581 29.393746095971 0 +4 19581 29.393746095971 0 +4 19606 29.443993584404 0 +4 19606 29.443993584404 0 +4 19617 29.444153584404 0 +4 19617 29.444153584404 0 +4 19651 29.614556809491 0 +4 19651 29.614556809491 0 +4 19659 29.614716809491 0 +4 19659 29.614716809491 0 +4 19722 29.631276764677 0 +4 19722 29.631276764677 0 +4 19737 29.631436764677 0 +4 19737 29.631436764677 0 +4 19759 29.657384339017 0 +4 19759 29.657384339017 0 +4 19766 29.657544339017 0 +4 19766 29.657544339017 0 +4 19791 29.693586103788 0 +4 19791 29.693586103788 0 +4 19806 29.693746103788 0 +4 19806 29.693746103788 0 +4 19831 29.743993584219 0 +4 19831 29.743993584219 0 +4 19842 29.744153584219 0 +4 19842 29.744153584219 0 +4 19876 29.914556809491 0 +4 19876 29.914556809491 0 +4 19884 29.914716809491 0 +4 19884 29.914716809491 0 +4 19947 29.931276773214 0 +4 19947 29.931276773214 0 +4 19962 29.931436773214 0 +4 19962 29.931436773214 0 +4 19984 29.957384326873 0 +4 19984 29.957384326873 0 +4 19991 29.957544326873 0 +4 19991 29.957544326873 0 +4 20016 29.993586112191 0 +4 20016 29.993586112191 0 +4 20031 29.993746112191 0 +4 20031 29.993746112191 0 +4 20056 30.043993584023 0 +4 20056 30.043993584023 0 +4 20067 30.044153584023 0 +4 20067 30.044153584023 0 +4 20101 30.214556809491 0 +4 20101 30.214556809491 0 +4 20109 30.214716809491 0 +4 20109 30.214716809491 0 +4 20172 30.231276781919 0 +4 20172 30.231276781919 0 +4 20187 30.231436781919 0 +4 20187 30.231436781919 0 +4 20209 30.257384314288 0 +4 20209 30.257384314288 0 +4 20216 30.257544314288 0 +4 20216 30.257544314288 0 +4 20241 30.293586121137 0 +4 20241 30.293586121137 0 +4 20256 30.293746121137 0 +4 20256 30.293746121137 0 +4 20281 30.343993583815 0 +4 20281 30.343993583815 0 +4 20292 30.344153583815 0 +4 20292 30.344153583815 0 +4 20326 30.514556809491 0 +4 20326 30.514556809491 0 +4 20334 30.514716809491 0 +4 20334 30.514716809491 0 +4 20397 30.531276790863 0 +4 20397 30.531276790863 0 +4 20412 30.531436790863 0 +4 20412 30.531436790863 0 +4 20434 30.557384301358 0 +4 20434 30.557384301358 0 +4 20441 30.557544301358 0 +4 20441 30.557544301358 0 +4 20466 30.593586130599 0 +4 20466 30.593586130599 0 +4 20481 30.593746130599 0 +4 20481 30.593746130599 0 +4 20506 30.643993583594 0 +4 20506 30.643993583594 0 +4 20517 30.644153583594 0 +4 20517 30.644153583594 0 +4 20551 30.814556809491 0 +4 20551 30.814556809491 0 +4 20559 30.814716809491 0 +4 20559 30.814716809491 0 +4 20623 30.831276800084 0 +4 20623 30.831276800084 0 +4 20642 30.831436800084 0 +4 20642 30.831436800084 0 +4 20659 30.857384288203 0 +4 20659 30.857384288203 0 +4 20666 30.857544288203 0 +4 20666 30.857544288203 0 +4 20691 30.893586140579 0 +4 20691 30.893586140579 0 +4 20706 30.893746140579 0 +4 20706 30.893746140579 0 +4 20731 30.943993583376 0 +4 20731 30.943993583376 0 +4 20742 30.944153583376 0 +4 20742 30.944153583376 0 +4 20776 31.114556809491 0 +4 20776 31.114556809491 0 +4 20784 31.114716809491 0 +4 20784 31.114716809491 0 +4 20852 31.131276809733 0 +4 20852 31.131276809733 0 +4 20871 31.131436809733 0 +4 20871 31.131436809733 0 +4 20888 31.157384274763 0 +4 20888 31.157384274763 0 +4 20895 31.157544274763 0 +4 20895 31.157544274763 0 +4 20920 31.193586151091 0 +4 20920 31.193586151091 0 +4 20935 31.193746151091 0 +4 20935 31.193746151091 0 +4 20964 31.243993583185 0 +4 20964 31.243993583185 0 +4 20975 31.244153583185 0 +4 20975 31.244153583185 0 +4 21009 31.414556809491 0 +4 21009 31.414556809491 0 +4 21017 31.414716809491 0 +4 21017 31.414716809491 0 +4 21085 31.43127681984 0 +4 21085 31.43127681984 0 +4 21104 31.43143681984 0 +4 21104 31.43143681984 0 +4 21121 31.45738426113 0 +4 21121 31.45738426113 0 +4 21128 31.45754426113 0 +4 21128 31.45754426113 0 +4 21153 31.493586162045 0 +4 21153 31.493586162045 0 +4 21168 31.493746162045 0 +4 21168 31.493746162045 0 +4 21197 31.543993582999 0 +4 21197 31.543993582999 0 +4 21208 31.544153582999 0 +4 21208 31.544153582999 0 +4 21242 31.714556809491 0 +4 21242 31.714556809491 0 +4 21250 31.714716809491 0 +4 21250 31.714716809491 0 +4 21318 31.73127683044 0 +4 21318 31.73127683044 0 +4 21337 31.73143683044 0 +4 21337 31.73143683044 0 +4 21354 31.757384247459 0 +4 21354 31.757384247459 0 +4 21361 31.757544247459 0 +4 21361 31.757544247459 0 +4 21386 31.793586173478 0 +4 21386 31.793586173478 0 +4 21401 31.793746173478 0 +4 21401 31.793746173478 0 +4 21429 31.843993582814 0 +4 21429 31.843993582814 0 +4 21436 31.844153582814 0 +4 21436 31.844153582814 0 +4 21475 32.014556809491 0 +4 21475 32.014556809491 0 +4 21483 32.014716809491 0 +4 21483 32.014716809491 0 +4 21551 32.031276841444 0 +4 21551 32.031276841444 0 +4 21570 32.031436841444 0 +4 21570 32.031436841444 0 +4 21587 32.057384234163 0 +4 21587 32.057384234163 0 +4 21594 32.057544234163 0 +4 21594 32.057544234163 0 +4 21620 32.093586185302 0 +4 21620 32.093586185302 0 +4 21639 32.093746185302 0 +4 21639 32.093746185302 0 +4 21662 32.143993582627 0 +4 21662 32.143993582627 0 +4 21669 32.144153582627 0 +4 21669 32.144153582627 0 +4 21708 32.314556809491 0 +4 21708 32.314556809491 0 +4 21716 32.314716809491 0 +4 21716 32.314716809491 0 +4 21784 32.331276852904 0 +4 21784 32.331276852904 0 +4 21803 32.331436852904 0 +4 21803 32.331436852904 0 +4 21820 32.357384221209 0 +4 21820 32.357384221209 0 +4 21827 32.357544221209 0 +4 21827 32.357544221209 0 +4 21853 32.393586197538 0 +4 21853 32.393586197538 0 +4 21872 32.393746197538 0 +4 21872 32.393746197538 0 +4 21895 32.44399358243 0 +4 21895 32.44399358243 0 +4 21902 32.44415358243 0 +4 21902 32.44415358243 0 +4 21941 32.614556809491 0 +4 21941 32.614556809491 0 +4 21949 32.614716809491 0 +4 21949 32.614716809491 0 +4 22017 32.631276864721 0 +4 22017 32.631276864721 0 +4 22036 32.631436864721 0 +4 22036 32.631436864721 0 +4 22053 32.657384208687 0 +4 22053 32.657384208687 0 +4 22060 32.657544208687 0 +4 22060 32.657544208687 0 +4 22086 32.693586210128 0 +4 22086 32.693586210128 0 +4 22105 32.693746210128 0 +4 22105 32.693746210128 0 +4 22128 32.743993582216 0 +4 22128 32.743993582216 0 +4 22135 32.744153582216 0 +4 22135 32.744153582216 0 +4 22174 32.914556809491 0 +4 22174 32.914556809491 0 +4 22182 32.914716809491 0 +4 22182 32.914716809491 0 +4 22250 32.931276876958 0 +4 22250 32.931276876958 0 +4 22269 32.931436876958 0 +4 22269 32.931436876958 0 +4 22286 32.957384196619 0 +4 22286 32.957384196619 0 +4 22293 32.957544196619 0 +4 22293 32.957544196619 0 +4 22319 32.993586223119 0 +4 22319 32.993586223119 0 +4 22338 32.993746223119 0 +4 22338 32.993746223119 0 +4 22361 33.043993582014 0 +4 22361 33.043993582014 0 +4 22368 33.044153582014 0 +4 22368 33.044153582014 0 +4 22407 33.214556809491 0 +4 22407 33.214556809491 0 +4 22415 33.214716809491 0 +4 22415 33.214716809491 0 +4 22483 33.231276889508 0 +4 22483 33.231276889508 0 +4 22502 33.231436889508 0 +4 22502 33.231436889508 0 +4 22519 33.25738418501 0 +4 22519 33.25738418501 0 +4 22526 33.25754418501 0 +4 22526 33.25754418501 0 +4 22552 33.293586236404 0 +4 22552 33.293586236404 0 +4 22571 33.293746236404 0 +4 22571 33.293746236404 0 +4 22594 33.34399358181 0 +4 22594 33.34399358181 0 +4 22601 33.34415358181 0 +4 22601 33.34415358181 0 +4 22640 33.514556809491 0 +4 22640 33.514556809491 0 +4 22648 33.514716809491 0 +4 22648 33.514716809491 0 +4 22716 33.531276902417 0 +4 22716 33.531276902417 0 +4 22735 33.531436902417 0 +4 22735 33.531436902417 0 +4 22752 33.557384173944 0 +4 22752 33.557384173944 0 +4 22759 33.557544173944 0 +4 22759 33.557544173944 0 +4 22785 33.593586250026 0 +4 22785 33.593586250026 0 +4 22804 33.593746250026 0 +4 22804 33.593746250026 0 +4 22827 33.643993581593 0 +4 22827 33.643993581593 0 +4 22834 33.644153581593 0 +4 22834 33.644153581593 0 +4 22873 33.814556809491 0 +4 22873 33.814556809491 0 +4 22881 33.814716809491 0 +4 22881 33.814716809491 0 +4 22945 33.831276915646 0 +4 22945 33.831276915646 0 +4 22964 33.831436915646 0 +4 22964 33.831436915646 0 +4 22981 33.857384163418 0 +4 22981 33.857384163418 0 +4 22988 33.857544163418 0 +4 22988 33.857544163418 0 +4 23051 33.943993581377 0 +4 23051 33.943993581377 0 +4 23057 33.944153581377 0 +4 23057 33.944153581377 0 +4 23089 34.114556809491 0 +4 23089 34.114556809491 0 +4 23096 34.114716809491 0 +4 23096 34.114716809491 0 +4 23175 34.157384153508 0 +4 23175 34.157384153508 0 +4 23181 34.157544153508 0 +4 23181 34.157544153508 0 +4 23209 34.243993581155 0 +4 23209 34.243993581155 0 +4 23215 34.244153581155 0 +4 23215 34.244153581155 0 +4 23247 34.414556809491 0 +4 23247 34.414556809491 0 +4 23254 34.414716809491 0 +4 23254 34.414716809491 0 +4 23333 34.457384144204 0 +4 23333 34.457384144204 0 +4 23339 34.457544144204 0 +4 23339 34.457544144204 0 +4 23367 34.543993580981 0 +4 23367 34.543993580981 0 +4 23373 34.544153580981 0 +4 23373 34.544153580981 0 +4 23405 34.714556809491 0 +4 23405 34.714556809491 0 +4 23412 34.714716809491 0 +4 23412 34.714716809491 0 +4 23491 34.75738413555 0 +4 23491 34.75738413555 0 +4 23497 34.75754413555 0 +4 23497 34.75754413555 0 +4 23525 34.843993580776 0 +4 23525 34.843993580776 0 +4 23531 34.844153580776 0 +4 23531 34.844153580776 0 +4 23563 35.014556809491 0 +4 23563 35.014556809491 0 +4 23570 35.014716809491 0 +4 23570 35.014716809491 0 +4 23649 35.057384127604 0 +4 23649 35.057384127604 0 +4 23655 35.057544127604 0 +4 23655 35.057544127604 0 +4 23683 35.143993580566 0 +4 23683 35.143993580566 0 +4 23689 35.144153580566 0 +4 23689 35.144153580566 0 +4 23725 35.314556809491 0 +4 23725 35.314556809491 0 +4 23732 35.314716809491 0 +4 23732 35.314716809491 0 +4 23811 35.357384120761 0 +4 23811 35.357384120761 0 +4 23817 35.357544120761 0 +4 23817 35.357544120761 0 +4 23849 35.443993580357 0 +4 23849 35.443993580357 0 +4 23855 35.444153580357 0 +4 23855 35.444153580357 0 +4 23891 35.614556809491 0 +4 23891 35.614556809491 0 +4 23898 35.614716809491 0 +4 23898 35.614716809491 0 +4 23977 35.657384115863 0 +4 23977 35.657384115863 0 +4 23983 35.657544115863 0 +4 23983 35.657544115863 0 +4 24015 35.743993580181 0 +4 24015 35.743993580181 0 +4 24021 35.744153580181 0 +4 24021 35.744153580181 0 +4 24057 35.914556809491 0 +4 24057 35.914556809491 0 +4 24064 35.914716809491 0 +4 24064 35.914716809491 0 +4 24143 35.957384112909 0 +4 24143 35.957384112909 0 +4 24149 35.957544112909 0 +4 24149 35.957544112909 0 +4 24181 36.043993579975 0 +4 24181 36.043993579975 0 +4 24187 36.044153579975 0 +4 24187 36.044153579975 0 +4 24223 36.214556809491 0 +4 24223 36.214556809491 0 +4 24230 36.214716809491 0 +4 24230 36.214716809491 0 +4 24309 36.257384111896 0 +4 24309 36.257384111896 0 +4 24315 36.257544111896 0 +4 24315 36.257544111896 0 +4 24347 36.343993579779 0 +4 24347 36.343993579779 0 +4 24353 36.344153579779 0 +4 24353 36.344153579779 0 +4 24389 36.514556809491 0 +4 24389 36.514556809491 0 +4 24396 36.514716809491 0 +4 24396 36.514716809491 0 +4 24475 36.557384112695 0 +4 24475 36.557384112695 0 +4 24481 36.557544112695 0 +4 24481 36.557544112695 0 +4 24513 36.64399357959 0 +4 24513 36.64399357959 0 +4 24519 36.64415357959 0 +4 24519 36.64415357959 0 +4 24555 36.814556809491 0 +4 24555 36.814556809491 0 +4 24562 36.814716809491 0 +4 24562 36.814716809491 0 +4 24641 36.857384114665 0 +4 24641 36.857384114665 0 +4 24647 36.857544114665 0 +4 24647 36.857544114665 0 +4 24679 36.943993579358 0 +4 24679 36.943993579358 0 +4 24685 36.944153579358 0 +4 24685 36.944153579358 0 +4 24721 37.114556809491 0 +4 24721 37.114556809491 0 +4 24728 37.114716809491 0 +4 24728 37.114716809491 0 +4 24807 37.157384116577 0 +4 24807 37.157384116577 0 +4 24813 37.157544116577 0 +4 24813 37.157544116577 0 +4 24845 37.243993577605 0 +4 24845 37.243993577605 0 +4 24851 37.244153577605 0 +4 24851 37.244153577605 0 +4 24887 37.414556809491 0 +4 24887 37.414556809491 0 +4 24894 37.414716809491 0 +4 24894 37.414716809491 0 +4 24973 37.457384118525 0 +4 24973 37.457384118525 0 +4 24979 37.457544118525 0 +4 24979 37.457544118525 0 +4 25011 37.543993572915 0 +4 25011 37.543993572915 0 +4 25017 37.544153572915 0 +4 25017 37.544153572915 0 +4 25053 37.714556809491 0 +4 25053 37.714556809491 0 +4 25060 37.714716809491 0 +4 25060 37.714716809491 0 +4 25139 37.757384120668 0 +4 25139 37.757384120668 0 +4 25145 37.757544120668 0 +4 25145 37.757544120668 0 +4 25177 37.843993571184 0 +4 25177 37.843993571184 0 +4 25183 37.844153571184 0 +4 25183 37.844153571184 0 +4 25219 38.014556809491 0 +4 25219 38.014556809491 0 +4 25226 38.014716809491 0 +4 25226 38.014716809491 0 +4 25305 38.05738412309 0 +4 25305 38.05738412309 0 +4 25311 38.05754412309 0 +4 25311 38.05754412309 0 +4 25343 38.143993570903 0 +4 25343 38.143993570903 0 +4 25349 38.144153570903 0 +4 25349 38.144153570903 0 +4 25385 38.314556809491 0 +4 25385 38.314556809491 0 +4 25392 38.314716809491 0 +4 25392 38.314716809491 0 +4 25471 38.357384125785 0 +4 25471 38.357384125785 0 +4 25477 38.357544125785 0 +4 25477 38.357544125785 0 +4 25509 38.443993571748 0 +4 25509 38.443993571748 0 +4 25515 38.444153571748 0 +4 25515 38.444153571748 0 +4 25551 38.614556809491 0 +4 25551 38.614556809491 0 +4 25558 38.614716809491 0 +4 25558 38.614716809491 0 +4 25637 38.65738412876 0 +4 25637 38.65738412876 0 +4 25643 38.65754412876 0 +4 25643 38.65754412876 0 +4 25675 38.74399357356 0 +4 25675 38.74399357356 0 +4 25681 38.74415357356 0 +4 25681 38.74415357356 0 +4 25717 38.914556809491 0 +4 25717 38.914556809491 0 +4 25724 38.914716809491 0 +4 25724 38.914716809491 0 +4 25803 38.957384132048 0 +4 25803 38.957384132048 0 +4 25809 38.957544132048 0 +4 25809 38.957544132048 0 +4 25841 39.043993576469 0 +4 25841 39.043993576469 0 +4 25847 39.044153576469 0 +4 25847 39.044153576469 0 +4 25883 39.214556809491 0 +4 25883 39.214556809491 0 +4 25890 39.214716809491 0 +4 25890 39.214716809491 0 +4 25969 39.257384135646 0 +4 25969 39.257384135646 0 +4 25975 39.257544135646 0 +4 25975 39.257544135646 0 +4 26007 39.34399358036 0 +4 26007 39.34399358036 0 +4 26013 39.34415358036 0 +4 26013 39.34415358036 0 +4 26049 39.514556809491 0 +4 26049 39.514556809491 0 +4 26056 39.514716809491 0 +4 26056 39.514716809491 0 +4 26135 39.557384139563 0 +4 26135 39.557384139563 0 +4 26141 39.557544139563 0 +4 26141 39.557544139563 0 +4 26173 39.643993585234 0 +4 26173 39.643993585234 0 +4 26179 39.644153585234 0 +4 26179 39.644153585234 0 +4 26215 39.814556809491 0 +4 26215 39.814556809491 0 +4 26222 39.814716809491 0 +4 26222 39.814716809491 0 +4 26301 39.857384143904 0 +4 26301 39.857384143904 0 +4 26307 39.857544143904 0 +4 26307 39.857544143904 0 +4 26339 39.943993591067 0 +4 26339 39.943993591067 0 +4 26345 39.944153591067 0 +4 26345 39.944153591067 0 +4 26381 40.114556809491 0 +4 26381 40.114556809491 0 +4 26388 40.114716809491 0 +4 26388 40.114716809491 0 +4 26468 40.157384148943 0 +4 26468 40.157384148943 0 +4 26478 40.157544148943 0 +4 26478 40.157544148943 0 +4 26506 40.243993597798 0 +4 26506 40.243993597798 0 +4 26516 40.244153597798 0 +4 26516 40.244153597798 0 +4 26547 40.414556809491 0 +4 26547 40.414556809491 0 +4 26554 40.414716809491 0 +4 26554 40.414716809491 0 +4 26634 40.457384154717 0 +4 26634 40.457384154717 0 +4 26644 40.457544154717 0 +4 26644 40.457544154717 0 +4 26672 40.543993605352 0 +4 26672 40.543993605352 0 +4 26682 40.544153605352 0 +4 26682 40.544153605352 0 +4 26713 40.714556809491 0 +4 26713 40.714556809491 0 +4 26720 40.714716809491 0 +4 26720 40.714716809491 0 +4 26804 40.757384161295 0 +4 26804 40.757384161295 0 +4 26814 40.757544161295 0 +4 26814 40.757544161295 0 +4 26842 40.843993613829 0 +4 26842 40.843993613829 0 +4 26852 40.844153613829 0 +4 26852 40.844153613829 0 +4 26887 41.014556809491 0 +4 26887 41.014556809491 0 +4 26894 41.014716809491 0 +4 26894 41.014716809491 0 +4 26978 41.05738416852 0 +4 26978 41.05738416852 0 +4 26988 41.05754416852 0 +4 26988 41.05754416852 0 +4 27016 41.143993623009 0 +4 27016 41.143993623009 0 +4 27026 41.144153623009 0 +4 27026 41.144153623009 0 +4 27061 41.314556809491 0 +4 27061 41.314556809491 0 +4 27068 41.314716809491 0 +4 27068 41.314716809491 0 +4 27152 41.357384176462 0 +4 27152 41.357384176462 0 +4 27162 41.357544176462 0 +4 27162 41.357544176462 0 +4 27190 41.443993632949 0 +4 27190 41.443993632949 0 +4 27200 41.444153632949 0 +4 27200 41.444153632949 0 +4 27235 41.614556809491 0 +4 27235 41.614556809491 0 +4 27242 41.614716809491 0 +4 27242 41.614716809491 0 +4 27326 41.657384185007 0 +4 27326 41.657384185007 0 +4 27336 41.657544185007 0 +4 27336 41.657544185007 0 +4 27364 41.743993643584 0 +4 27364 41.743993643584 0 +4 27374 41.744153643584 0 +4 27374 41.744153643584 0 +4 27409 41.914556809491 0 +4 27409 41.914556809491 0 +4 27416 41.914716809491 0 +4 27416 41.914716809491 0 +4 27500 41.957384194196 0 +4 27500 41.957384194196 0 +4 27510 41.957544194196 0 +4 27510 41.957544194196 0 +4 27538 42.043993655076 0 +4 27538 42.043993655076 0 +4 27548 42.044153655076 0 +4 27548 42.044153655076 0 +4 27583 42.214556809491 0 +4 27583 42.214556809491 0 +4 27590 42.214716809491 0 +4 27590 42.214716809491 0 +4 27674 42.257384203962 0 +4 27674 42.257384203962 0 +4 27684 42.257544203962 0 +4 27684 42.257544203962 0 +4 27712 42.343993667279 0 +4 27712 42.343993667279 0 +4 27722 42.344153667279 0 +4 27722 42.344153667279 0 +4 27757 42.514556809491 0 +4 27757 42.514556809491 0 +4 27764 42.514716809491 0 +4 27764 42.514716809491 0 +4 27848 42.557384214263 0 +4 27848 42.557384214263 0 +4 27858 42.557544214263 0 +4 27858 42.557544214263 0 +4 27886 42.643993680118 0 +4 27886 42.643993680118 0 +4 27896 42.644153680118 0 +4 27896 42.644153680118 0 +4 27931 42.814556809491 0 +4 27931 42.814556809491 0 +4 27938 42.814716809491 0 +4 27938 42.814716809491 0 +4 28022 42.857384225113 0 +4 28022 42.857384225113 0 +4 28032 42.857544225113 0 +4 28032 42.857544225113 0 +4 28060 42.943993693453 0 +4 28060 42.943993693453 0 +4 28070 42.944153693453 0 +4 28070 42.944153693453 0 +4 28105 43.114556809491 0 +4 28105 43.114556809491 0 +4 28112 43.114716809491 0 +4 28112 43.114716809491 0 +4 28196 43.15738423643 0 +4 28196 43.15738423643 0 +4 28206 43.15754423643 0 +4 28206 43.15754423643 0 +4 28234 43.243993707142 0 +4 28234 43.243993707142 0 +4 28244 43.244153707142 0 +4 28244 43.244153707142 0 +4 28279 43.414556809491 0 +4 28279 43.414556809491 0 +4 28286 43.414716809491 0 +4 28286 43.414716809491 0 +4 28370 43.457384248185 0 +4 28370 43.457384248185 0 +4 28380 43.457544248185 0 +4 28380 43.457544248185 0 +4 28408 43.54399372113 0 +4 28408 43.54399372113 0 +4 28418 43.54415372113 0 +4 28418 43.54415372113 0 +4 28453 43.714556809491 0 +4 28453 43.714556809491 0 +4 28460 43.714716809491 0 +4 28460 43.714716809491 0 +4 28544 43.757384260094 0 +4 28544 43.757384260094 0 +4 28554 43.757544260094 0 +4 28554 43.757544260094 0 +4 28582 43.843993734654 0 +4 28582 43.843993734654 0 +4 28592 43.844153734654 0 +4 28592 43.844153734654 0 +4 28627 44.014556809491 0 +4 28627 44.014556809491 0 +4 28634 44.014716809491 0 +4 28634 44.014716809491 0 +4 28718 44.05738427113 0 +4 28718 44.05738427113 0 +4 28728 44.05754427113 0 +4 28728 44.05754427113 0 +4 28756 44.143993746996 0 +4 28756 44.143993746996 0 +4 28766 44.144153746996 0 +4 28766 44.144153746996 0 +4 28801 44.314556809491 0 +4 28801 44.314556809491 0 +4 28808 44.314716809491 0 +4 28808 44.314716809491 0 +4 28888 44.357384281313 0 +4 28888 44.357384281313 0 +4 28898 44.357544281313 0 +4 28898 44.357544281313 0 +4 28926 44.443993758119 0 +4 28926 44.443993758119 0 +4 28936 44.444153758119 0 +4 28936 44.444153758119 0 +4 28967 44.614556809491 0 +4 28967 44.614556809491 0 +4 28974 44.614716809491 0 +4 28974 44.614716809491 0 +4 29054 44.657384290579 0 +4 29054 44.657384290579 0 +4 29064 44.657544290579 0 +4 29064 44.657544290579 0 +4 29092 44.743993767993 0 +4 29092 44.743993767993 0 +4 29102 44.744153767993 0 +4 29102 44.744153767993 0 +4 29133 44.914556809491 0 +4 29133 44.914556809491 0 +4 29140 44.914716809491 0 +4 29140 44.914716809491 0 +4 29220 44.957384298829 0 +4 29220 44.957384298829 0 +4 29230 44.957544298829 0 +4 29230 44.957544298829 0 +4 29258 45.04399377659 0 +4 29258 45.04399377659 0 +4 29268 45.04415377659 0 +4 29268 45.04415377659 0 +4 29299 45.214556809491 0 +4 29299 45.214556809491 0 +4 29306 45.214716809491 0 +4 29306 45.214716809491 0 +4 29386 45.257384305981 0 +4 29386 45.257384305981 0 +4 29396 45.257544305981 0 +4 29396 45.257544305981 0 +4 29424 45.343993783865 0 +4 29424 45.343993783865 0 +4 29434 45.344153783865 0 +4 29434 45.344153783865 0 +4 29465 45.514556809491 0 +4 29465 45.514556809491 0 +4 29472 45.514716809491 0 +4 29472 45.514716809491 0 +4 29552 45.557384312206 0 +4 29552 45.557384312206 0 +4 29562 45.557544312206 0 +4 29562 45.557544312206 0 +4 29590 45.643993790499 0 +4 29590 45.643993790499 0 +4 29600 45.644153790499 0 +4 29600 45.644153790499 0 +4 29631 45.814556809491 0 +4 29631 45.814556809491 0 +4 29638 45.814716809491 0 +4 29638 45.814716809491 0 +4 29718 45.857384319049 0 +4 29718 45.857384319049 0 +4 29728 45.857544319049 0 +4 29728 45.857544319049 0 +4 29756 45.943993797914 0 +4 29756 45.943993797914 0 +4 29766 45.944153797914 0 +4 29766 45.944153797914 0 +4 29797 46.114556809491 0 +4 29797 46.114556809491 0 +4 29804 46.114716809491 0 +4 29804 46.114716809491 0 +4 29884 46.157384326651 0 +4 29884 46.157384326651 0 +4 29894 46.157544326651 0 +4 29894 46.157544326651 0 +4 29923 46.243993806003 0 +4 29923 46.243993806003 0 +4 29937 46.244153806003 0 +4 29937 46.244153806003 0 +4 29963 46.414556809491 0 +4 29963 46.414556809491 0 +4 29970 46.414716809491 0 +4 29970 46.414716809491 0 +4 30050 46.457384334527 0 +4 30050 46.457384334527 0 +4 30060 46.457544334527 0 +4 30060 46.457544334527 0 +4 30089 46.543993813964 0 +4 30089 46.543993813964 0 +4 30103 46.544153813964 0 +4 30103 46.544153813964 0 +4 30129 46.714556809491 0 +4 30129 46.714556809491 0 +4 30136 46.714716809491 0 +4 30136 46.714716809491 0 +4 30217 46.757384340536 0 +4 30217 46.757384340536 0 +4 30231 46.757544340536 0 +4 30231 46.757544340536 0 +4 30255 46.843993818595 0 +4 30255 46.843993818595 0 +4 30269 46.844153818595 0 +4 30269 46.844153818595 0 +4 30295 47.014556809491 0 +4 30295 47.014556809491 0 +4 30302 47.014716809491 0 +4 30302 47.014716809491 0 +4 30383 47.057384342941 0 +4 30383 47.057384342941 0 +4 30397 47.057544342941 0 +4 30397 47.057544342941 0 +4 30421 47.143993819767 0 +4 30421 47.143993819767 0 +4 30435 47.144153819767 0 +4 30435 47.144153819767 0 +4 30461 47.314556809491 0 +4 30461 47.314556809491 0 +4 30468 47.314716809491 0 +4 30468 47.314716809491 0 +4 30549 47.357384344047 0 +4 30549 47.357384344047 0 +4 30563 47.357544344047 0 +4 30563 47.357544344047 0 +4 30587 47.443993820025 0 +4 30587 47.443993820025 0 +4 30601 47.444153820025 0 +4 30601 47.444153820025 0 +4 30627 47.614556809491 0 +4 30627 47.614556809491 0 +4 30634 47.614716809491 0 +4 30634 47.614716809491 0 +4 30715 47.657384345882 0 +4 30715 47.657384345882 0 +4 30729 47.657544345882 0 +4 30729 47.657544345882 0 +4 30753 47.743993820289 0 +4 30753 47.743993820289 0 +4 30767 47.744153820289 0 +4 30767 47.744153820289 0 +4 30793 47.914556809491 0 +4 30793 47.914556809491 0 +4 30800 47.914716809491 0 +4 30800 47.914716809491 0 +4 30881 47.95738434856 0 +4 30881 47.95738434856 0 +4 30895 47.95754434856 0 +4 30895 47.95754434856 0 +4 30919 48.043993820574 0 +4 30919 48.043993820574 0 +4 30933 48.044153820574 0 +4 30933 48.044153820574 0 +4 30959 48.214556809491 0 +4 30959 48.214556809491 0 +4 30966 48.214716809491 0 +4 30966 48.214716809491 0 +4 31047 48.257384352185 0 +4 31047 48.257384352185 0 +4 31061 48.257544352185 0 +4 31061 48.257544352185 0 +4 31085 48.343993819422 0 +4 31085 48.343993819422 0 +4 31099 48.344153819422 0 +4 31099 48.344153819422 0 +4 31125 48.514556809491 0 +4 31125 48.514556809491 0 +4 31132 48.514716809491 0 +4 31132 48.514716809491 0 +4 31213 48.557384356842 0 +4 31213 48.557384356842 0 +4 31227 48.557544356842 0 +4 31227 48.557544356842 0 +4 31251 48.643993818083 0 +4 31251 48.643993818083 0 +4 31265 48.644153818083 0 +4 31265 48.644153818083 0 +4 31291 48.814556809491 0 +4 31291 48.814556809491 0 +4 31298 48.814716809491 0 +4 31298 48.814716809491 0 +4 31379 48.857384362664 0 +4 31379 48.857384362664 0 +4 31393 48.857544362664 0 +4 31393 48.857544362664 0 +4 31417 48.943993815516 0 +4 31417 48.943993815516 0 +4 31431 48.944153815516 0 +4 31431 48.944153815516 0 +4 31457 49.114556809491 0 +4 31457 49.114556809491 0 +4 31464 49.114716809491 0 +4 31464 49.114716809491 0 +4 31545 49.157384369644 0 +4 31545 49.157384369644 0 +4 31559 49.157544369644 0 +4 31559 49.157544369644 0 +4 31583 49.243993812156 0 +4 31583 49.243993812156 0 +4 31597 49.244153812156 0 +4 31597 49.244153812156 0 +4 31623 49.414556809491 0 +4 31623 49.414556809491 0 +4 31630 49.414716809491 0 +4 31630 49.414716809491 0 +4 31711 49.457384377764 0 +4 31711 49.457384377764 0 +4 31725 49.457544377764 0 +4 31725 49.457544377764 0 +4 31749 49.543993808185 0 +4 31749 49.543993808185 0 +4 31763 49.544153808185 0 +4 31763 49.544153808185 0 +4 31789 49.714556809491 0 +4 31789 49.714556809491 0 +4 31796 49.714716809491 0 +4 31796 49.714716809491 0 +4 31877 49.757384386996 0 +4 31877 49.757384386996 0 +4 31891 49.757544386996 0 +4 31891 49.757544386996 0 +4 31915 49.843993803841 0 +4 31915 49.843993803841 0 +4 31929 49.844153803841 0 +4 31929 49.844153803841 0 +4 31955 50.014556809491 0 +4 31955 50.014556809491 0 +4 31962 50.014716809491 0 +4 31962 50.014716809491 0 +4 32043 50.05738439718 0 +4 32043 50.05738439718 0 +4 32057 50.05754439718 0 +4 32057 50.05754439718 0 +4 32081 50.143993799517 0 +4 32081 50.143993799517 0 +4 32095 50.144153799517 0 +4 32095 50.144153799517 0 +4 32121 50.314556809491 0 +4 32121 50.314556809491 0 +4 32128 50.314716809491 0 +4 32128 50.314716809491 0 +4 32209 50.3573844083 0 +4 32209 50.3573844083 0 +4 32223 50.3575444083 0 +4 32223 50.3575444083 0 +4 32247 50.443993795058 0 +4 32247 50.443993795058 0 +4 32261 50.444153795058 0 +4 32261 50.444153795058 0 +4 32287 50.614556809491 0 +4 32287 50.614556809491 0 +4 32294 50.614716809491 0 +4 32294 50.614716809491 0 +4 32375 50.657384420305 0 +4 32375 50.657384420305 0 +4 32389 50.657544420305 0 +4 32389 50.657544420305 0 +4 32413 50.743993790392 0 +4 32413 50.743993790392 0 +4 32427 50.744153790392 0 +4 32427 50.744153790392 0 +4 32453 50.914556809491 0 +4 32453 50.914556809491 0 +4 32460 50.914716809491 0 +4 32460 50.914716809491 0 +4 32541 50.957384433105 0 +4 32541 50.957384433105 0 +4 32555 50.957544433105 0 +4 32555 50.957544433105 0 +4 32579 51.043993785603 0 +4 32579 51.043993785603 0 +4 32593 51.044153785603 0 +4 32593 51.044153785603 0 +4 32619 51.214556809491 0 +4 32619 51.214556809491 0 +4 32626 51.214716809491 0 +4 32626 51.214716809491 0 +4 32737 51.343993780685 0 +4 32737 51.343993780685 0 +4 32751 51.344153780685 0 +4 32751 51.344153780685 0 +4 32777 51.514556809491 0 +4 32777 51.514556809491 0 +4 32784 51.514716809491 0 +4 32784 51.514716809491 0 +4 32903 51.643993775717 0 +4 32903 51.643993775717 0 +4 32917 51.644153775717 0 +4 32917 51.644153775717 0 +4 32943 51.814556809491 0 +4 32943 51.814556809491 0 +4 32950 51.814716809491 0 +4 32950 51.814716809491 0 +4 33069 51.943993770578 0 +4 33069 51.943993770578 0 +4 33083 51.944153770578 0 +4 33083 51.944153770578 0 +4 33109 52.114556809491 0 +4 33109 52.114556809491 0 +4 33116 52.114716809491 0 +4 33116 52.114716809491 0 +4 33235 52.243993765452 0 +4 33235 52.243993765452 0 +4 33249 52.244153765452 0 +4 33249 52.244153765452 0 +4 33275 52.414556809491 0 +4 33275 52.414556809491 0 +4 33282 52.414716809491 0 +4 33282 52.414716809491 0 +4 33401 52.543993760435 0 +4 33401 52.543993760435 0 +4 33415 52.544153760435 0 +4 33415 52.544153760435 0 +4 33441 52.714556809491 0 +4 33441 52.714556809491 0 +4 33448 52.714716809491 0 +4 33448 52.714716809491 0 +4 33567 52.843993755494 0 +4 33567 52.843993755494 0 +4 33581 52.844153755494 0 +4 33581 52.844153755494 0 +4 33607 53.014556809491 0 +4 33607 53.014556809491 0 +4 33614 53.014716809491 0 +4 33614 53.014716809491 0 +4 33733 53.143993750731 0 +4 33733 53.143993750731 0 +4 33747 53.144153750731 0 +4 33747 53.144153750731 0 +5 22 2.1 0 +5 22 2.1 0 +5 47 2.614556809491 0 +5 47 2.614556809491 0 +5 51 2.614716809491 0 +5 51 2.614716809491 0 +5 67 2.65738405803 0 +5 67 2.65738405803 0 +5 70 2.65754405803 0 +5 70 2.65754405803 0 +5 92 2.914556809491 0 +5 92 2.914556809491 0 +5 96 2.914716809491 0 +5 96 2.914716809491 0 +5 112 2.957384059145 0 +5 112 2.957384059145 0 +5 115 2.957544059145 0 +5 115 2.957544059145 0 +5 139 3.214556809491 0 +5 139 3.214556809491 0 +5 144 3.214716809491 0 +5 144 3.214716809491 0 +5 165 3.257384060325 0 +5 165 3.257384060325 0 +5 169 3.257544060325 0 +5 169 3.257544060325 0 +5 199 3.514556809491 0 +5 199 3.514556809491 0 +5 204 3.514716809491 0 +5 204 3.514716809491 0 +5 225 3.531276752816 0 +5 225 3.531276752816 0 +5 229 3.531436752816 0 +5 229 3.531436752816 0 +5 249 3.5573840616 0 +5 249 3.5573840616 0 +5 253 3.5575440616 0 +5 253 3.5575440616 0 +5 283 3.814556809491 0 +5 283 3.814556809491 0 +5 288 3.814716809491 0 +5 288 3.814716809491 0 +5 309 3.831276748492 0 +5 309 3.831276748492 0 +5 313 3.831436748492 0 +5 313 3.831436748492 0 +5 333 3.857384062957 0 +5 333 3.857384062957 0 +5 337 3.857544062957 0 +5 337 3.857544062957 0 +5 368 4.114556809491 0 +5 368 4.114556809491 0 +5 374 4.114716809491 0 +5 374 4.114716809491 0 +5 397 4.131276743562 0 +5 397 4.131276743562 0 +5 406 4.131436743562 0 +5 406 4.131436743562 0 +5 426 4.157384064405 0 +5 426 4.157384064405 0 +5 431 4.157544064405 0 +5 431 4.157544064405 0 +5 465 4.414556809491 0 +5 465 4.414556809491 0 +5 471 4.414716809491 0 +5 471 4.414716809491 0 +5 494 4.431276737964 0 +5 494 4.431276737964 0 +5 503 4.431436737964 0 +5 503 4.431436737964 0 +5 523 4.457384065992 0 +5 523 4.457384065992 0 +5 528 4.457544065992 0 +5 528 4.457544065992 0 +5 584 4.714556809491 0 +5 584 4.714556809491 0 +5 590 4.714716809491 0 +5 590 4.714716809491 0 +5 613 4.731276731904 0 +5 613 4.731276731904 0 +5 622 4.731436731904 0 +5 622 4.731436731904 0 +5 642 4.757384067713 0 +5 642 4.757384067713 0 +5 647 4.757544067713 0 +5 647 4.757544067713 0 +5 703 5.014556809491 0 +5 703 5.014556809491 0 +5 709 5.014716809491 0 +5 709 5.014716809491 0 +5 732 5.031276725247 0 +5 732 5.031276725247 0 +5 741 5.031436725247 0 +5 741 5.031436725247 0 +5 761 5.057384069567 0 +5 761 5.057384069567 0 +5 766 5.057544069567 0 +5 766 5.057544069567 0 +5 831 5.314556809491 0 +5 831 5.314556809491 0 +5 838 5.314716809491 0 +5 838 5.314716809491 0 +5 862 5.331276717912 0 +5 862 5.331276717912 0 +5 872 5.331436717912 0 +5 872 5.331436717912 0 +5 893 5.357384071635 0 +5 893 5.357384071635 0 +5 899 5.357544071635 0 +5 899 5.357544071635 0 +5 965 5.614556809491 0 +5 965 5.614556809491 0 +5 972 5.614716809491 0 +5 972 5.614716809491 0 +5 996 5.631276710029 0 +5 996 5.631276710029 0 +5 1006 5.631436710029 0 +5 1006 5.631436710029 0 +5 1027 5.657384073906 0 +5 1027 5.657384073906 0 +5 1033 5.657544073906 0 +5 1033 5.657544073906 0 +5 1123 5.914556809491 0 +5 1123 5.914556809491 0 +5 1130 5.914716809491 0 +5 1130 5.914716809491 0 +5 1154 5.931276701497 0 +5 1154 5.931276701497 0 +5 1164 5.931436701497 0 +5 1164 5.931436701497 0 +5 1185 5.957384076426 0 +5 1185 5.957384076426 0 +5 1191 5.957544076426 0 +5 1191 5.957544076426 0 +5 1283 6.214556809491 0 +5 1283 6.214556809491 0 +5 1291 6.214716809491 0 +5 1291 6.214716809491 0 +5 1321 6.231276692343 0 +5 1321 6.231276692343 0 +5 1336 6.231436692343 0 +5 1336 6.231436692343 0 +5 1357 6.257384079226 0 +5 1357 6.257384079226 0 +5 1364 6.257544079226 0 +5 1364 6.257544079226 0 +5 1466 6.514556809491 0 +5 1466 6.514556809491 0 +5 1474 6.514716809491 0 +5 1474 6.514716809491 0 +5 1501 6.524398778352 0 +5 1501 6.524398778352 0 +5 1508 6.524558778352 0 +5 1508 6.524558778352 0 +5 1537 6.531276682665 0 +5 1537 6.531276682665 0 +5 1552 6.531436682665 0 +5 1552 6.531436682665 0 +5 1574 6.557384082316 0 +5 1574 6.557384082316 0 +5 1581 6.557544082316 0 +5 1581 6.557544082316 0 +5 1683 6.814556809491 0 +5 1683 6.814556809491 0 +5 1691 6.814716809491 0 +5 1691 6.814716809491 0 +5 1718 6.824398768033 0 +5 1718 6.824398768033 0 +5 1725 6.824558768033 0 +5 1725 6.824558768033 0 +5 1754 6.831276672312 0 +5 1754 6.831276672312 0 +5 1769 6.831436672312 0 +5 1769 6.831436672312 0 +5 1791 6.857384085755 0 +5 1791 6.857384085755 0 +5 1798 6.857544085755 0 +5 1798 6.857544085755 0 +5 1900 7.114556809491 0 +5 1900 7.114556809491 0 +5 1908 7.114716809491 0 +5 1908 7.114716809491 0 +5 1935 7.124398757068 0 +5 1935 7.124398757068 0 +5 1942 7.124558757068 0 +5 1942 7.124558757068 0 +5 1971 7.131276661329 0 +5 1971 7.131276661329 0 +5 1986 7.131436661329 0 +5 1986 7.131436661329 0 +5 2008 7.157384089564 0 +5 2008 7.157384089564 0 +5 2015 7.157544089564 0 +5 2015 7.157544089564 0 +5 2117 7.414556809491 0 +5 2117 7.414556809491 0 +5 2125 7.414716809491 0 +5 2125 7.414716809491 0 +5 2152 7.424398745664 0 +5 2152 7.424398745664 0 +5 2159 7.424558745664 0 +5 2159 7.424558745664 0 +5 2188 7.431276649891 0 +5 2188 7.431276649891 0 +5 2203 7.431436649891 0 +5 2203 7.431436649891 0 +5 2225 7.457384093735 0 +5 2225 7.457384093735 0 +5 2232 7.457544093735 0 +5 2232 7.457544093735 0 +5 2334 7.714556809491 0 +5 2334 7.714556809491 0 +5 2342 7.714716809491 0 +5 2342 7.714716809491 0 +5 2369 7.724398733784 0 +5 2369 7.724398733784 0 +5 2376 7.724558733784 0 +5 2376 7.724558733784 0 +5 2405 7.731276637989 0 +5 2405 7.731276637989 0 +5 2420 7.731436637989 0 +5 2420 7.731436637989 0 +5 2442 7.757384098302 0 +5 2442 7.757384098302 0 +5 2449 7.757544098302 0 +5 2449 7.757544098302 0 +5 2551 8.014556809491 0 +5 2551 8.014556809491 0 +5 2559 8.014716809491 0 +5 2559 8.014716809491 0 +5 2586 8.02439872132 0 +5 2586 8.02439872132 0 +5 2593 8.02455872132 0 +5 2593 8.02455872132 0 +5 2621 8.031276625491 0 +5 2621 8.031276625491 0 +5 2632 8.031436625491 0 +5 2632 8.031436625491 0 +5 2659 8.057384103323 0 +5 2659 8.057384103323 0 +5 2666 8.057544103323 0 +5 2666 8.057544103323 0 +5 2768 8.314556809491 0 +5 2768 8.314556809491 0 +5 2776 8.314716809491 0 +5 2776 8.314716809491 0 +5 2803 8.324398708136 0 +5 2803 8.324398708136 0 +5 2810 8.324558708136 0 +5 2810 8.324558708136 0 +5 2842 8.33127661228 0 +5 2842 8.33127661228 0 +5 2853 8.33143661228 0 +5 2853 8.33143661228 0 +5 2880 8.357384108886 0 +5 2880 8.357384108886 0 +5 2887 8.357544108886 0 +5 2887 8.357544108886 0 +5 2993 8.614556809491 0 +5 2993 8.614556809491 0 +5 3001 8.614716809491 0 +5 3001 8.614716809491 0 +5 3028 8.624398694405 0 +5 3028 8.624398694405 0 +5 3035 8.624558694405 0 +5 3035 8.624558694405 0 +5 3067 8.631276598484 0 +5 3067 8.631276598484 0 +5 3078 8.631436598484 0 +5 3078 8.631436598484 0 +5 3105 8.65738411496 0 +5 3105 8.65738411496 0 +5 3112 8.65754411496 0 +5 3112 8.65754411496 0 +5 3218 8.914556809491 0 +5 3218 8.914556809491 0 +5 3226 8.914716809491 0 +5 3226 8.914716809491 0 +5 3253 8.924398680104 0 +5 3253 8.924398680104 0 +5 3260 8.924558680104 0 +5 3260 8.924558680104 0 +5 3292 8.931276584082 0 +5 3292 8.931276584082 0 +5 3303 8.931436584082 0 +5 3303 8.931436584082 0 +5 3330 8.957384121588 0 +5 3330 8.957384121588 0 +5 3337 8.957544121588 0 +5 3337 8.957544121588 0 +5 3443 9.214556809491 0 +5 3443 9.214556809491 0 +5 3451 9.214716809491 0 +5 3451 9.214716809491 0 +5 3478 9.224398665264 0 +5 3478 9.224398665264 0 +5 3485 9.224558665264 0 +5 3485 9.224558665264 0 +5 3517 9.231276569158 0 +5 3517 9.231276569158 0 +5 3528 9.231436569158 0 +5 3528 9.231436569158 0 +5 3555 9.257384128789 0 +5 3555 9.257384128789 0 +5 3562 9.257544128789 0 +5 3562 9.257544128789 0 +5 3668 9.514556809491 0 +5 3668 9.514556809491 0 +5 3676 9.514716809491 0 +5 3676 9.514716809491 0 +5 3703 9.524398649996 0 +5 3703 9.524398649996 0 +5 3710 9.524558649996 0 +5 3710 9.524558649996 0 +5 3742 9.531276553733 0 +5 3742 9.531276553733 0 +5 3753 9.531436553733 0 +5 3753 9.531436553733 0 +5 3780 9.557384136549 0 +5 3780 9.557384136549 0 +5 3787 9.557544136549 0 +5 3787 9.557544136549 0 +5 3893 9.814556809491 0 +5 3893 9.814556809491 0 +5 3901 9.814716809491 0 +5 3901 9.814716809491 0 +5 3928 9.824398634568 0 +5 3928 9.824398634568 0 +5 3935 9.824558634568 0 +5 3935 9.824558634568 0 +5 3967 9.831276538055 0 +5 3967 9.831276538055 0 +5 3978 9.831436538055 0 +5 3978 9.831436538055 0 +5 4005 9.857384144771 0 +5 4005 9.857384144771 0 +5 4012 9.857544144771 0 +5 4012 9.857544144771 0 +5 4118 10.114556809491 0 +5 4118 10.114556809491 0 +5 4126 10.114716809491 0 +5 4126 10.114716809491 0 +5 4153 10.124398619363 0 +5 4153 10.124398619363 0 +5 4160 10.124558619363 0 +5 4160 10.124558619363 0 +5 4192 10.131276522386 0 +5 4192 10.131276522386 0 +5 4203 10.131436522386 0 +5 4203 10.131436522386 0 +5 4230 10.157384153312 0 +5 4230 10.157384153312 0 +5 4237 10.157544153312 0 +5 4237 10.157544153312 0 +5 4343 10.414556809491 0 +5 4343 10.414556809491 0 +5 4351 10.414716809491 0 +5 4351 10.414716809491 0 +5 4378 10.424398604844 0 +5 4378 10.424398604844 0 +5 4385 10.424558604844 0 +5 4385 10.424558604844 0 +5 4417 10.431276506743 0 +5 4417 10.431276506743 0 +5 4428 10.431436506743 0 +5 4428 10.431436506743 0 +5 4455 10.457384162122 0 +5 4455 10.457384162122 0 +5 4462 10.457544162122 0 +5 4462 10.457544162122 0 +5 4525 10.543993907449 0 +5 4525 10.543993907449 0 +5 4544 10.544153907449 0 +5 4544 10.544153907449 0 +5 4572 10.714556809491 0 +5 4572 10.714556809491 0 +5 4580 10.714716809491 0 +5 4580 10.714716809491 0 +5 4611 10.72439859379 0 +5 4611 10.72439859379 0 +5 4618 10.72455859379 0 +5 4618 10.72455859379 0 +5 4650 10.731276491102 0 +5 4650 10.731276491102 0 +5 4661 10.731436491102 0 +5 4661 10.731436491102 0 +5 4688 10.757384171218 0 +5 4688 10.757384171218 0 +5 4695 10.757544171218 0 +5 4695 10.757544171218 0 +5 4757 10.84399389067 0 +5 4757 10.84399389067 0 +5 4772 10.84415389067 0 +5 4772 10.84415389067 0 +5 4805 11.014556809491 0 +5 4805 11.014556809491 0 +5 4813 11.014716809491 0 +5 4813 11.014716809491 0 +5 4844 11.024398598014 0 +5 4844 11.024398598014 0 +5 4851 11.024558598014 0 +5 4851 11.024558598014 0 +5 4882 11.031276475464 0 +5 4882 11.031276475464 0 +5 4889 11.031436475464 0 +5 4889 11.031436475464 0 +5 4921 11.057384180599 0 +5 4921 11.057384180599 0 +5 4928 11.057544180599 0 +5 4928 11.057544180599 0 +5 4990 11.143993874452 0 +5 4990 11.143993874452 0 +5 5005 11.144153874452 0 +5 5005 11.144153874452 0 +5 5038 11.314556809491 0 +5 5038 11.314556809491 0 +5 5046 11.314716809491 0 +5 5046 11.314716809491 0 +5 5077 11.324398611475 0 +5 5077 11.324398611475 0 +5 5084 11.324558611475 0 +5 5084 11.324558611475 0 +5 5115 11.331276459858 0 +5 5115 11.331276459858 0 +5 5122 11.331436459858 0 +5 5122 11.331436459858 0 +5 5155 11.3573841902 0 +5 5155 11.3573841902 0 +5 5166 11.3575441902 0 +5 5166 11.3575441902 0 +5 5223 11.443993858741 0 +5 5223 11.443993858741 0 +5 5238 11.444153858741 0 +5 5238 11.444153858741 0 +5 5271 11.614556809491 0 +5 5271 11.614556809491 0 +5 5279 11.614716809491 0 +5 5279 11.614716809491 0 +5 5310 11.624398626396 0 +5 5310 11.624398626396 0 +5 5317 11.624558626396 0 +5 5317 11.624558626396 0 +5 5348 11.631276444245 0 +5 5348 11.631276444245 0 +5 5355 11.631436444245 0 +5 5355 11.631436444245 0 +5 5392 11.657384200055 0 +5 5392 11.657384200055 0 +5 5403 11.657544200055 0 +5 5403 11.657544200055 0 +5 5464 11.743993843502 0 +5 5464 11.743993843502 0 +5 5479 11.744153843502 0 +5 5479 11.744153843502 0 +5 5512 11.914556809491 0 +5 5512 11.914556809491 0 +5 5520 11.914716809491 0 +5 5520 11.914716809491 0 +5 5551 11.92439864171 0 +5 5551 11.92439864171 0 +5 5558 11.92455864171 0 +5 5558 11.92455864171 0 +5 5589 11.931276428595 0 +5 5589 11.931276428595 0 +5 5596 11.931436428595 0 +5 5596 11.931436428595 0 +5 5633 11.957384210159 0 +5 5633 11.957384210159 0 +5 5644 11.957544210159 0 +5 5644 11.957544210159 0 +5 5705 12.043993828636 0 +5 5705 12.043993828636 0 +5 5720 12.044153828636 0 +5 5720 12.044153828636 0 +5 5753 12.214556809491 0 +5 5753 12.214556809491 0 +5 5761 12.214716809491 0 +5 5761 12.214716809491 0 +5 5792 12.224398657188 0 +5 5792 12.224398657188 0 +5 5799 12.224558657188 0 +5 5799 12.224558657188 0 +5 5830 12.231276412948 0 +5 5830 12.231276412948 0 +5 5837 12.231436412948 0 +5 5837 12.231436412948 0 +5 5874 12.257384220477 0 +5 5874 12.257384220477 0 +5 5885 12.257544220477 0 +5 5885 12.257544220477 0 +5 5946 12.343993813991 0 +5 5946 12.343993813991 0 +5 5961 12.344153813991 0 +5 5961 12.344153813991 0 +5 5994 12.514556809491 0 +5 5994 12.514556809491 0 +5 6002 12.514716809491 0 +5 6002 12.514716809491 0 +5 6033 12.524398672694 0 +5 6033 12.524398672694 0 +5 6040 12.524558672694 0 +5 6040 12.524558672694 0 +5 6071 12.531276397317 0 +5 6071 12.531276397317 0 +5 6078 12.531436397317 0 +5 6078 12.531436397317 0 +5 6115 12.557384230993 0 +5 6115 12.557384230993 0 +5 6126 12.557544230993 0 +5 6126 12.557544230993 0 +5 6187 12.643993799362 0 +5 6187 12.643993799362 0 +5 6202 12.644153799362 0 +5 6202 12.644153799362 0 +5 6235 12.814556809491 0 +5 6235 12.814556809491 0 +5 6243 12.814716809491 0 +5 6243 12.814716809491 0 +5 6274 12.824398688243 0 +5 6274 12.824398688243 0 +5 6281 12.824558688243 0 +5 6281 12.824558688243 0 +5 6312 12.831276381695 0 +5 6312 12.831276381695 0 +5 6319 12.831436381695 0 +5 6319 12.831436381695 0 +5 6356 12.857384241685 0 +5 6356 12.857384241685 0 +5 6367 12.857544241685 0 +5 6367 12.857544241685 0 +5 6428 12.943993784749 0 +5 6428 12.943993784749 0 +5 6443 12.944153784749 0 +5 6443 12.944153784749 0 +5 6476 13.114556809491 0 +5 6476 13.114556809491 0 +5 6484 13.114716809491 0 +5 6484 13.114716809491 0 +5 6515 13.124398703844 0 +5 6515 13.124398703844 0 +5 6522 13.124558703844 0 +5 6522 13.124558703844 0 +5 6553 13.131276366027 0 +5 6553 13.131276366027 0 +5 6560 13.131436366027 0 +5 6560 13.131436366027 0 +5 6597 13.157384252586 0 +5 6597 13.157384252586 0 +5 6608 13.157544252586 0 +5 6608 13.157544252586 0 +5 6669 13.243993770092 0 +5 6669 13.243993770092 0 +5 6684 13.244153770092 0 +5 6684 13.244153770092 0 +5 6717 13.414556809491 0 +5 6717 13.414556809491 0 +5 6725 13.414716809491 0 +5 6725 13.414716809491 0 +5 6756 13.424398719435 0 +5 6756 13.424398719435 0 +5 6763 13.424558719435 0 +5 6763 13.424558719435 0 +5 6794 13.431276350417 0 +5 6794 13.431276350417 0 +5 6801 13.431436350417 0 +5 6801 13.431436350417 0 +5 6838 13.457384263637 0 +5 6838 13.457384263637 0 +5 6849 13.457544263637 0 +5 6849 13.457544263637 0 +5 6910 13.543993755468 0 +5 6910 13.543993755468 0 +5 6925 13.544153755468 0 +5 6925 13.544153755468 0 +5 6958 13.714556809491 0 +5 6958 13.714556809491 0 +5 6966 13.714716809491 0 +5 6966 13.714716809491 0 +5 6997 13.724398735043 0 +5 6997 13.724398735043 0 +5 7004 13.724558735043 0 +5 7004 13.724558735043 0 +5 7035 13.731276334798 0 +5 7035 13.731276334798 0 +5 7042 13.731436334798 0 +5 7042 13.731436334798 0 +5 7079 13.757384274837 0 +5 7079 13.757384274837 0 +5 7090 13.757544274837 0 +5 7090 13.757544274837 0 +5 7151 13.843993740827 0 +5 7151 13.843993740827 0 +5 7166 13.844153740827 0 +5 7166 13.844153740827 0 +5 7199 14.014556809491 0 +5 7199 14.014556809491 0 +5 7207 14.014716809491 0 +5 7207 14.014716809491 0 +5 7238 14.024398750707 0 +5 7238 14.024398750707 0 +5 7245 14.024558750707 0 +5 7245 14.024558750707 0 +5 7276 14.031276319127 0 +5 7276 14.031276319127 0 +5 7283 14.031436319127 0 +5 7283 14.031436319127 0 +5 7320 14.05738428623 0 +5 7320 14.05738428623 0 +5 7331 14.05754428623 0 +5 7331 14.05754428623 0 +5 7392 14.14399372616 0 +5 7392 14.14399372616 0 +5 7407 14.14415372616 0 +5 7407 14.14415372616 0 +5 7440 14.314556809491 0 +5 7440 14.314556809491 0 +5 7448 14.314716809491 0 +5 7448 14.314716809491 0 +5 7479 14.324398766341 0 +5 7479 14.324398766341 0 +5 7486 14.324558766341 0 +5 7486 14.324558766341 0 +5 7517 14.331276303517 0 +5 7517 14.331276303517 0 +5 7524 14.331436303517 0 +5 7524 14.331436303517 0 +5 7561 14.357384297742 0 +5 7561 14.357384297742 0 +5 7572 14.357544297742 0 +5 7572 14.357544297742 0 +5 7633 14.443993711546 0 +5 7633 14.443993711546 0 +5 7648 14.444153711546 0 +5 7648 14.444153711546 0 +5 7681 14.614556809491 0 +5 7681 14.614556809491 0 +5 7689 14.614716809491 0 +5 7689 14.614716809491 0 +5 7720 14.624398781946 0 +5 7720 14.624398781946 0 +5 7727 14.624558781946 0 +5 7727 14.624558781946 0 +5 7758 14.631276287929 0 +5 7758 14.631276287929 0 +5 7765 14.631436287929 0 +5 7765 14.631436287929 0 +5 7802 14.657384309371 0 +5 7802 14.657384309371 0 +5 7813 14.657544309371 0 +5 7813 14.657544309371 0 +5 7874 14.743993696951 0 +5 7874 14.743993696951 0 +5 7889 14.744153696951 0 +5 7889 14.744153696951 0 +5 7922 14.914556809491 0 +5 7922 14.914556809491 0 +5 7930 14.914716809491 0 +5 7930 14.914716809491 0 +5 7961 14.924398797557 0 +5 7961 14.924398797557 0 +5 7968 14.924558797557 0 +5 7968 14.924558797557 0 +5 7999 14.931276272358 0 +5 7999 14.931276272358 0 +5 8006 14.931436272358 0 +5 8006 14.931436272358 0 +5 8043 14.957384321127 0 +5 8043 14.957384321127 0 +5 8054 14.957544321127 0 +5 8054 14.957544321127 0 +5 8115 15.043993682366 0 +5 8115 15.043993682366 0 +5 8130 15.044153682366 0 +5 8130 15.044153682366 0 +5 8163 15.214556809491 0 +5 8163 15.214556809491 0 +5 8171 15.214716809491 0 +5 8171 15.214716809491 0 +5 8202 15.224398813176 0 +5 8202 15.224398813176 0 +5 8209 15.224558813176 0 +5 8209 15.224558813176 0 +5 8240 15.231276256794 0 +5 8240 15.231276256794 0 +5 8247 15.231436256794 0 +5 8247 15.231436256794 0 +5 8284 15.257384333003 0 +5 8284 15.257384333003 0 +5 8295 15.257544333003 0 +5 8295 15.257544333003 0 +5 8356 15.343993667781 0 +5 8356 15.343993667781 0 +5 8371 15.344153667781 0 +5 8371 15.344153667781 0 +5 8404 15.514556809491 0 +5 8404 15.514556809491 0 +5 8412 15.514716809491 0 +5 8412 15.514716809491 0 +5 8443 15.524398828841 0 +5 8443 15.524398828841 0 +5 8450 15.524558828841 0 +5 8450 15.524558828841 0 +5 8481 15.531276241243 0 +5 8481 15.531276241243 0 +5 8488 15.531436241243 0 +5 8488 15.531436241243 0 +5 8525 15.557384345028 0 +5 8525 15.557384345028 0 +5 8536 15.557544345028 0 +5 8536 15.557544345028 0 +5 8597 15.643993653166 0 +5 8597 15.643993653166 0 +5 8612 15.644153653166 0 +5 8612 15.644153653166 0 +5 8645 15.814556809491 0 +5 8645 15.814556809491 0 +5 8653 15.814716809491 0 +5 8653 15.814716809491 0 +5 8684 15.824398844455 0 +5 8684 15.824398844455 0 +5 8691 15.824558844455 0 +5 8691 15.824558844455 0 +5 8722 15.831276225819 0 +5 8722 15.831276225819 0 +5 8729 15.831436225819 0 +5 8729 15.831436225819 0 +5 8766 15.857384357121 0 +5 8766 15.857384357121 0 +5 8777 15.857544357121 0 +5 8777 15.857544357121 0 +5 8838 15.943993638616 0 +5 8838 15.943993638616 0 +5 8853 15.944153638616 0 +5 8853 15.944153638616 0 +5 8886 16.114556809491 0 +5 8886 16.114556809491 0 +5 8894 16.114716809491 0 +5 8894 16.114716809491 0 +5 8929 16.124398860085 0 +5 8929 16.124398860085 0 +5 8936 16.124558860085 0 +5 8936 16.124558860085 0 +5 8967 16.131276210464 0 +5 8967 16.131276210464 0 +5 8974 16.131436210464 0 +5 8974 16.131436210464 0 +5 9011 16.157384369327 0 +5 9011 16.157384369327 0 +5 9022 16.157544369327 0 +5 9022 16.157544369327 0 +5 9046 16.193586240802 0 +5 9046 16.193586240802 0 +5 9061 16.193746240802 0 +5 9061 16.193746240802 0 +5 9087 16.243993624037 0 +5 9087 16.243993624037 0 +5 9102 16.244153624037 0 +5 9102 16.244153624037 0 +5 9135 16.414556809491 0 +5 9135 16.414556809491 0 +5 9143 16.414716809491 0 +5 9143 16.414716809491 0 +5 9178 16.424398875726 0 +5 9178 16.424398875726 0 +5 9185 16.424558875726 0 +5 9185 16.424558875726 0 +5 9216 16.431276195381 0 +5 9216 16.431276195381 0 +5 9223 16.431436195381 0 +5 9223 16.431436195381 0 +5 9260 16.457384381652 0 +5 9260 16.457384381652 0 +5 9271 16.457544381652 0 +5 9271 16.457544381652 0 +5 9295 16.4935862136 0 +5 9295 16.4935862136 0 +5 9310 16.4937462136 0 +5 9310 16.4937462136 0 +5 9336 16.54399360942 0 +5 9336 16.54399360942 0 +5 9351 16.54415360942 0 +5 9351 16.54415360942 0 +5 9384 16.714556809491 0 +5 9384 16.714556809491 0 +5 9392 16.714716809491 0 +5 9392 16.714716809491 0 +5 9427 16.724398891381 0 +5 9427 16.724398891381 0 +5 9434 16.724558891381 0 +5 9434 16.724558891381 0 +5 9465 16.731276181333 0 +5 9465 16.731276181333 0 +5 9472 16.731436181333 0 +5 9472 16.731436181333 0 +5 9509 16.757384394067 0 +5 9509 16.757384394067 0 +5 9520 16.757544394067 0 +5 9520 16.757544394067 0 +5 9544 16.793586189096 0 +5 9544 16.793586189096 0 +5 9559 16.793746189096 0 +5 9559 16.793746189096 0 +5 9585 16.84399359486 0 +5 9585 16.84399359486 0 +5 9600 16.84415359486 0 +5 9600 16.84415359486 0 +5 9633 17.014556809491 0 +5 9633 17.014556809491 0 +5 9641 17.014716809491 0 +5 9641 17.014716809491 0 +5 9677 17.02439890702 0 +5 9677 17.02439890702 0 +5 9688 17.02455890702 0 +5 9688 17.02455890702 0 +5 9714 17.031276173692 0 +5 9714 17.031276173692 0 +5 9721 17.031436173692 0 +5 9721 17.031436173692 0 +5 9758 17.057384406545 0 +5 9758 17.057384406545 0 +5 9769 17.057544406545 0 +5 9769 17.057544406545 0 +5 9792 17.093586167318 0 +5 9792 17.093586167318 0 +5 9803 17.093746167318 0 +5 9803 17.093746167318 0 +5 9833 17.143993580311 0 +5 9833 17.143993580311 0 +5 9844 17.144153580311 0 +5 9844 17.144153580311 0 +5 9882 17.314556809491 0 +5 9882 17.314556809491 0 +5 9890 17.314716809491 0 +5 9890 17.314716809491 0 +5 9926 17.324398922703 0 +5 9926 17.324398922703 0 +5 9937 17.324558922703 0 +5 9937 17.324558922703 0 +5 9963 17.331276182573 0 +5 9963 17.331276182573 0 +5 9970 17.331436182573 0 +5 9970 17.331436182573 0 +5 10008 17.357384419138 0 +5 10008 17.357384419138 0 +5 10023 17.357544419138 0 +5 10023 17.357544419138 0 +5 10041 17.39358614821 0 +5 10041 17.39358614821 0 +5 10052 17.39374614821 0 +5 10052 17.39374614821 0 +5 10082 17.443993565736 0 +5 10082 17.443993565736 0 +5 10093 17.444153565736 0 +5 10093 17.444153565736 0 +5 10131 17.614556809491 0 +5 10131 17.614556809491 0 +5 10139 17.614716809491 0 +5 10139 17.614716809491 0 +5 10175 17.624398938357 0 +5 10175 17.624398938357 0 +5 10186 17.624558938357 0 +5 10186 17.624558938357 0 +5 10212 17.631276196794 0 +5 10212 17.631276196794 0 +5 10219 17.631436196794 0 +5 10219 17.631436196794 0 +5 10257 17.657384431773 0 +5 10257 17.657384431773 0 +5 10272 17.657544431773 0 +5 10272 17.657544431773 0 +5 10290 17.69358613177 0 +5 10290 17.69358613177 0 +5 10301 17.69374613177 0 +5 10301 17.69374613177 0 +5 10331 17.743993551191 0 +5 10331 17.743993551191 0 +5 10342 17.744153551191 0 +5 10342 17.744153551191 0 +5 10380 17.914556809491 0 +5 10380 17.914556809491 0 +5 10388 17.914716809491 0 +5 10388 17.914716809491 0 +5 10420 17.924398954 0 +5 10420 17.924398954 0 +5 10431 17.924558954 0 +5 10431 17.924558954 0 +5 10457 17.931276211881 0 +5 10457 17.931276211881 0 +5 10464 17.931436211881 0 +5 10464 17.931436211881 0 +5 10502 17.957384444486 0 +5 10502 17.957384444486 0 +5 10517 17.957544444486 0 +5 10517 17.957544444486 0 +5 10531 17.993586116127 0 +5 10531 17.993586116127 0 +5 10542 17.993746116127 0 +5 10542 17.993746116127 0 +5 10572 18.04399353668 0 +5 10572 18.04399353668 0 +5 10583 18.04415353668 0 +5 10583 18.04415353668 0 +5 10621 18.214556809491 0 +5 10621 18.214556809491 0 +5 10629 18.214716809491 0 +5 10629 18.214716809491 0 +5 10661 18.224398969656 0 +5 10661 18.224398969656 0 +5 10672 18.224558969656 0 +5 10672 18.224558969656 0 +5 10694 18.231276227234 0 +5 10694 18.231276227234 0 +5 10701 18.231436227234 0 +5 10701 18.231436227234 0 +5 10768 18.293586100476 0 +5 10768 18.293586100476 0 +5 10779 18.293746100476 0 +5 10779 18.293746100476 0 +5 10809 18.343993522105 0 +5 10809 18.343993522105 0 +5 10820 18.344153522105 0 +5 10820 18.344153522105 0 +5 10854 18.514556809491 0 +5 10854 18.514556809491 0 +5 10862 18.514716809491 0 +5 10862 18.514716809491 0 +5 10894 18.524398984772 0 +5 10894 18.524398984772 0 +5 10905 18.524558984772 0 +5 10905 18.524558984772 0 +5 10927 18.531276242598 0 +5 10927 18.531276242598 0 +5 10934 18.531436242598 0 +5 10934 18.531436242598 0 +5 11001 18.593586085525 0 +5 11001 18.593586085525 0 +5 11012 18.593746085525 0 +5 11012 18.593746085525 0 +5 11042 18.643993508193 0 +5 11042 18.643993508193 0 +5 11053 18.644153508193 0 +5 11053 18.644153508193 0 +5 11087 18.814556809491 0 +5 11087 18.814556809491 0 +5 11095 18.814716809491 0 +5 11095 18.814716809491 0 +5 11127 18.824398992869 0 +5 11127 18.824398992869 0 +5 11138 18.824558992869 0 +5 11138 18.824558992869 0 +5 11160 18.831276252819 0 +5 11160 18.831276252819 0 +5 11167 18.831436252819 0 +5 11167 18.831436252819 0 +5 11234 18.893586078461 0 +5 11234 18.893586078461 0 +5 11245 18.893746078461 0 +5 11245 18.893746078461 0 +5 11275 18.9439935017 0 +5 11275 18.9439935017 0 +5 11286 18.9441535017 0 +5 11286 18.9441535017 0 +5 11320 19.114556809491 0 +5 11320 19.114556809491 0 +5 11328 19.114716809491 0 +5 11328 19.114716809491 0 +5 11360 19.124398995465 0 +5 11360 19.124398995465 0 +5 11371 19.124558995465 0 +5 11371 19.124558995465 0 +5 11393 19.131276259429 0 +5 11393 19.131276259429 0 +5 11400 19.131436259429 0 +5 11400 19.131436259429 0 +5 11467 19.193586077908 0 +5 11467 19.193586077908 0 +5 11478 19.193746077908 0 +5 11478 19.193746077908 0 +5 11508 19.243993499144 0 +5 11508 19.243993499144 0 +5 11519 19.244153499144 0 +5 11519 19.244153499144 0 +5 11553 19.414556809491 0 +5 11553 19.414556809491 0 +5 11561 19.414716809491 0 +5 11561 19.414716809491 0 +5 11593 19.424398998137 0 +5 11593 19.424398998137 0 +5 11604 19.424558998137 0 +5 11604 19.424558998137 0 +5 11626 19.431276267371 0 +5 11626 19.431276267371 0 +5 11633 19.431436267371 0 +5 11633 19.431436267371 0 +5 11700 19.493586078167 0 +5 11700 19.493586078167 0 +5 11711 19.493746078167 0 +5 11711 19.493746078167 0 +5 11741 19.543993497268 0 +5 11741 19.543993497268 0 +5 11752 19.544153497268 0 +5 11752 19.544153497268 0 +5 11786 19.714556809491 0 +5 11786 19.714556809491 0 +5 11794 19.714716809491 0 +5 11794 19.714716809491 0 +5 11826 19.724399001753 0 +5 11826 19.724399001753 0 +5 11837 19.724559001753 0 +5 11837 19.724559001753 0 +5 11859 19.731276277055 0 +5 11859 19.731276277055 0 +5 11866 19.731436277055 0 +5 11866 19.731436277055 0 +5 11933 19.793586078318 0 +5 11933 19.793586078318 0 +5 11944 19.793746078318 0 +5 11944 19.793746078318 0 +5 11974 19.843993496076 0 +5 11974 19.843993496076 0 +5 11985 19.844153496076 0 +5 11985 19.844153496076 0 +5 12019 20.014556809491 0 +5 12019 20.014556809491 0 +5 12027 20.014716809491 0 +5 12027 20.014716809491 0 +5 12063 20.024399006417 0 +5 12063 20.024399006417 0 +5 12074 20.024559006417 0 +5 12074 20.024559006417 0 +5 12096 20.031276288225 0 +5 12096 20.031276288225 0 +5 12103 20.031436288225 0 +5 12103 20.031436288225 0 +5 12141 20.057384440568 0 +5 12141 20.057384440568 0 +5 12156 20.057544440568 0 +5 12156 20.057544440568 0 +5 12174 20.093586078154 0 +5 12174 20.093586078154 0 +5 12185 20.093746078154 0 +5 12185 20.093746078154 0 +5 12215 20.143993495659 0 +5 12215 20.143993495659 0 +5 12226 20.144153495659 0 +5 12226 20.144153495659 0 +5 12260 20.314556809491 0 +5 12260 20.314556809491 0 +5 12268 20.314716809491 0 +5 12268 20.314716809491 0 +5 12304 20.324399012107 0 +5 12304 20.324399012107 0 +5 12315 20.324559012107 0 +5 12315 20.324559012107 0 +5 12337 20.331276300497 0 +5 12337 20.331276300497 0 +5 12344 20.331436300497 0 +5 12344 20.331436300497 0 +5 12382 20.357384434459 0 +5 12382 20.357384434459 0 +5 12397 20.357544434459 0 +5 12397 20.357544434459 0 +5 12415 20.393586077762 0 +5 12415 20.393586077762 0 +5 12426 20.393746077762 0 +5 12426 20.393746077762 0 +5 12456 20.443993496115 0 +5 12456 20.443993496115 0 +5 12467 20.444153496115 0 +5 12467 20.444153496115 0 +5 12501 20.614556809491 0 +5 12501 20.614556809491 0 +5 12509 20.614716809491 0 +5 12509 20.614716809491 0 +5 12545 20.624399018883 0 +5 12545 20.624399018883 0 +5 12556 20.624559018883 0 +5 12556 20.624559018883 0 +5 12578 20.631276313658 0 +5 12578 20.631276313658 0 +5 12585 20.631436313658 0 +5 12585 20.631436313658 0 +5 12623 20.657384428826 0 +5 12623 20.657384428826 0 +5 12638 20.657544428826 0 +5 12638 20.657544428826 0 +5 12656 20.693586077186 0 +5 12656 20.693586077186 0 +5 12667 20.693746077186 0 +5 12667 20.693746077186 0 +5 12697 20.743993497538 0 +5 12697 20.743993497538 0 +5 12708 20.744153497538 0 +5 12708 20.744153497538 0 +5 12742 20.914556809491 0 +5 12742 20.914556809491 0 +5 12750 20.914716809491 0 +5 12750 20.914716809491 0 +5 12786 20.924399026768 0 +5 12786 20.924399026768 0 +5 12797 20.924559026768 0 +5 12797 20.924559026768 0 +5 12819 20.931276327544 0 +5 12819 20.931276327544 0 +5 12826 20.931436327544 0 +5 12826 20.931436327544 0 +5 12864 20.957384423566 0 +5 12864 20.957384423566 0 +5 12879 20.957544423566 0 +5 12879 20.957544423566 0 +5 12897 20.993586076495 0 +5 12897 20.993586076495 0 +5 12908 20.993746076495 0 +5 12908 20.993746076495 0 +5 12938 21.043993500002 0 +5 12938 21.043993500002 0 +5 12949 21.044153500002 0 +5 12949 21.044153500002 0 +5 12983 21.214556809491 0 +5 12983 21.214556809491 0 +5 12991 21.214716809491 0 +5 12991 21.214716809491 0 +5 13027 21.224399035584 0 +5 13027 21.224399035584 0 +5 13038 21.224559035584 0 +5 13038 21.224559035584 0 +5 13060 21.231276341939 0 +5 13060 21.231276341939 0 +5 13067 21.231436341939 0 +5 13067 21.231436341939 0 +5 13105 21.257384418748 0 +5 13105 21.257384418748 0 +5 13120 21.257544418748 0 +5 13120 21.257544418748 0 +5 13138 21.293586075717 0 +5 13138 21.293586075717 0 +5 13149 21.293746075717 0 +5 13149 21.293746075717 0 +5 13179 21.343993503566 0 +5 13179 21.343993503566 0 +5 13190 21.344153503566 0 +5 13190 21.344153503566 0 +5 13224 21.514556809491 0 +5 13224 21.514556809491 0 +5 13232 21.514716809491 0 +5 13232 21.514716809491 0 +5 13268 21.524399045258 0 +5 13268 21.524399045258 0 +5 13279 21.524559045258 0 +5 13279 21.524559045258 0 +5 13301 21.531276356826 0 +5 13301 21.531276356826 0 +5 13308 21.531436356826 0 +5 13308 21.531436356826 0 +5 13346 21.557384414308 0 +5 13346 21.557384414308 0 +5 13361 21.557544414308 0 +5 13361 21.557544414308 0 +5 13379 21.593586074727 0 +5 13379 21.593586074727 0 +5 13390 21.593746074727 0 +5 13390 21.593746074727 0 +5 13420 21.643993508321 0 +5 13420 21.643993508321 0 +5 13431 21.644153508321 0 +5 13431 21.644153508321 0 +5 13465 21.814556809491 0 +5 13465 21.814556809491 0 +5 13473 21.814716809491 0 +5 13473 21.814716809491 0 +5 13509 21.82439905578 0 +5 13509 21.82439905578 0 +5 13520 21.82455905578 0 +5 13520 21.82455905578 0 +5 13542 21.831276372147 0 +5 13542 21.831276372147 0 +5 13549 21.831436372147 0 +5 13549 21.831436372147 0 +5 13587 21.85738441021 0 +5 13587 21.85738441021 0 +5 13602 21.85754441021 0 +5 13602 21.85754441021 0 +5 13620 21.893586073568 0 +5 13620 21.893586073568 0 +5 13631 21.893746073568 0 +5 13631 21.893746073568 0 +5 13661 21.943993514273 0 +5 13661 21.943993514273 0 +5 13672 21.944153514273 0 +5 13672 21.944153514273 0 +5 13706 22.114556809491 0 +5 13706 22.114556809491 0 +5 13714 22.114716809491 0 +5 13714 22.114716809491 0 +5 13750 22.124399067102 0 +5 13750 22.124399067102 0 +5 13761 22.124559067102 0 +5 13761 22.124559067102 0 +5 13783 22.131276387853 0 +5 13783 22.131276387853 0 +5 13790 22.131436387853 0 +5 13790 22.131436387853 0 +5 13828 22.157384406427 0 +5 13828 22.157384406427 0 +5 13843 22.157544406427 0 +5 13843 22.157544406427 0 +5 13861 22.193586072252 0 +5 13861 22.193586072252 0 +5 13872 22.193746072252 0 +5 13872 22.193746072252 0 +5 13902 22.243993521464 0 +5 13902 22.243993521464 0 +5 13913 22.244153521464 0 +5 13913 22.244153521464 0 +5 13947 22.414556809491 0 +5 13947 22.414556809491 0 +5 13955 22.414716809491 0 +5 13955 22.414716809491 0 +5 13991 22.424399079181 0 +5 13991 22.424399079181 0 +5 14002 22.424559079181 0 +5 14002 22.424559079181 0 +5 14024 22.431276403914 0 +5 14024 22.431276403914 0 +5 14031 22.431436403914 0 +5 14031 22.431436403914 0 +5 14069 22.457384402943 0 +5 14069 22.457384402943 0 +5 14084 22.457544402943 0 +5 14084 22.457544402943 0 +5 14102 22.4935860709 0 +5 14102 22.4935860709 0 +5 14113 22.4937460709 0 +5 14113 22.4937460709 0 +5 14143 22.543993529992 0 +5 14143 22.543993529992 0 +5 14154 22.544153529992 0 +5 14154 22.544153529992 0 +5 14188 22.714556809491 0 +5 14188 22.714556809491 0 +5 14196 22.714716809491 0 +5 14196 22.714716809491 0 +5 14232 22.724399091991 0 +5 14232 22.724399091991 0 +5 14243 22.724559091991 0 +5 14243 22.724559091991 0 +5 14265 22.731276420334 0 +5 14265 22.731276420334 0 +5 14272 22.731436420334 0 +5 14272 22.731436420334 0 +5 14310 22.757384399779 0 +5 14310 22.757384399779 0 +5 14325 22.757544399779 0 +5 14325 22.757544399779 0 +5 14343 22.793586069444 0 +5 14343 22.793586069444 0 +5 14354 22.793746069444 0 +5 14354 22.793746069444 0 +5 14384 22.843993539394 0 +5 14384 22.843993539394 0 +5 14395 22.844153539394 0 +5 14395 22.844153539394 0 +5 14429 23.014556809491 0 +5 14429 23.014556809491 0 +5 14437 23.014716809491 0 +5 14437 23.014716809491 0 +5 14474 23.02439910552 0 +5 14474 23.02439910552 0 +5 14489 23.02455910552 0 +5 14489 23.02455910552 0 +5 14506 23.031276437066 0 +5 14506 23.031276437066 0 +5 14513 23.031436437066 0 +5 14513 23.031436437066 0 +5 14551 23.057384396928 0 +5 14551 23.057384396928 0 +5 14566 23.057544396928 0 +5 14566 23.057544396928 0 +5 14584 23.093586067888 0 +5 14584 23.093586067888 0 +5 14595 23.093746067888 0 +5 14595 23.093746067888 0 +5 14625 23.143993549741 0 +5 14625 23.143993549741 0 +5 14636 23.144153549741 0 +5 14636 23.144153549741 0 +5 14670 23.314556809491 0 +5 14670 23.314556809491 0 +5 14678 23.314716809491 0 +5 14678 23.314716809491 0 +5 14715 23.324399119693 0 +5 14715 23.324399119693 0 +5 14730 23.324559119693 0 +5 14730 23.324559119693 0 +5 14747 23.331276454133 0 +5 14747 23.331276454133 0 +5 14754 23.331436454133 0 +5 14754 23.331436454133 0 +5 14792 23.357384394378 0 +5 14792 23.357384394378 0 +5 14807 23.357544394378 0 +5 14807 23.357544394378 0 +5 14825 23.393586066244 0 +5 14825 23.393586066244 0 +5 14836 23.393746066244 0 +5 14836 23.393746066244 0 +5 14866 23.443993561136 0 +5 14866 23.443993561136 0 +5 14877 23.444153561136 0 +5 14877 23.444153561136 0 +5 14911 23.614556809491 0 +5 14911 23.614556809491 0 +5 14919 23.614716809491 0 +5 14919 23.614716809491 0 +5 14956 23.624399134588 0 +5 14956 23.624399134588 0 +5 14971 23.624559134588 0 +5 14971 23.624559134588 0 +5 14988 23.63127647154 0 +5 14988 23.63127647154 0 +5 14995 23.63143647154 0 +5 14995 23.63143647154 0 +5 15033 23.6573843921 0 +5 15033 23.6573843921 0 +5 15048 23.6575443921 0 +5 15048 23.6575443921 0 +5 15066 23.693586064635 0 +5 15066 23.693586064635 0 +5 15077 23.693746064635 0 +5 15077 23.693746064635 0 +5 15107 23.743993567162 0 +5 15107 23.743993567162 0 +5 15118 23.744153567162 0 +5 15118 23.744153567162 0 +5 15152 23.914556809491 0 +5 15152 23.914556809491 0 +5 15160 23.914716809491 0 +5 15160 23.914716809491 0 +5 15197 23.924399150101 0 +5 15197 23.924399150101 0 +5 15212 23.924559150101 0 +5 15212 23.924559150101 0 +5 15230 23.931276489241 0 +5 15230 23.931276489241 0 +5 15241 23.931436489241 0 +5 15241 23.931436489241 0 +5 15274 23.957384390086 0 +5 15274 23.957384390086 0 +5 15289 23.957544390086 0 +5 15289 23.957544390086 0 +5 15307 23.993586063012 0 +5 15307 23.993586063012 0 +5 15318 23.993746063012 0 +5 15318 23.993746063012 0 +5 15348 24.043993568182 0 +5 15348 24.043993568182 0 +5 15359 24.044153568182 0 +5 15359 24.044153568182 0 +5 15393 24.214556809491 0 +5 15393 24.214556809491 0 +5 15401 24.214716809491 0 +5 15401 24.214716809491 0 +5 15438 24.224399166253 0 +5 15438 24.224399166253 0 +5 15453 24.224559166253 0 +5 15453 24.224559166253 0 +5 15471 24.231276507166 0 +5 15471 24.231276507166 0 +5 15482 24.231436507166 0 +5 15482 24.231436507166 0 +5 15514 24.257384388316 0 +5 15514 24.257384388316 0 +5 15525 24.257544388316 0 +5 15525 24.257544388316 0 +5 15548 24.293586061339 0 +5 15548 24.293586061339 0 +5 15559 24.293746061339 0 +5 15559 24.293746061339 0 +5 15589 24.343993571496 0 +5 15589 24.343993571496 0 +5 15600 24.344153571496 0 +5 15600 24.344153571496 0 +5 15634 24.514556809491 0 +5 15634 24.514556809491 0 +5 15642 24.514716809491 0 +5 15642 24.514716809491 0 +5 15679 24.524399183101 0 +5 15679 24.524399183101 0 +5 15694 24.524559183101 0 +5 15694 24.524559183101 0 +5 15712 24.531276525482 0 +5 15712 24.531276525482 0 +5 15723 24.531436525482 0 +5 15723 24.531436525482 0 +5 15755 24.557384386729 0 +5 15755 24.557384386729 0 +5 15766 24.557544386729 0 +5 15766 24.557544386729 0 +5 15789 24.593586059807 0 +5 15789 24.593586059807 0 +5 15800 24.593746059807 0 +5 15800 24.593746059807 0 +5 15830 24.6439935745 0 +5 15830 24.6439935745 0 +5 15841 24.6441535745 0 +5 15841 24.6441535745 0 +5 15875 24.814556809491 0 +5 15875 24.814556809491 0 +5 15883 24.814716809491 0 +5 15883 24.814716809491 0 +5 15920 24.824399200464 0 +5 15920 24.824399200464 0 +5 15935 24.824559200464 0 +5 15935 24.824559200464 0 +5 15953 24.831276544164 0 +5 15953 24.831276544164 0 +5 15964 24.831436544164 0 +5 15964 24.831436544164 0 +5 15996 24.857384385359 0 +5 15996 24.857384385359 0 +5 16007 24.857544385359 0 +5 16007 24.857544385359 0 +5 16030 24.893586058439 0 +5 16030 24.893586058439 0 +5 16041 24.893746058439 0 +5 16041 24.893746058439 0 +5 16071 24.943993577203 0 +5 16071 24.943993577203 0 +5 16082 24.944153577203 0 +5 16082 24.944153577203 0 +5 16116 25.114556809491 0 +5 16116 25.114556809491 0 +5 16124 25.114716809491 0 +5 16124 25.114716809491 0 +5 16161 25.12439921797 0 +5 16161 25.12439921797 0 +5 16176 25.12455921797 0 +5 16176 25.12455921797 0 +5 16194 25.131276563184 0 +5 16194 25.131276563184 0 +5 16205 25.131436563184 0 +5 16205 25.131436563184 0 +5 16237 25.157384384197 0 +5 16237 25.157384384197 0 +5 16248 25.157544384197 0 +5 16248 25.157544384197 0 +5 16271 25.193586057203 0 +5 16271 25.193586057203 0 +5 16282 25.193746057203 0 +5 16282 25.193746057203 0 +5 16312 25.24399357959 0 +5 16312 25.24399357959 0 +5 16323 25.24415357959 0 +5 16323 25.24415357959 0 +5 16357 25.414556809491 0 +5 16357 25.414556809491 0 +5 16365 25.414716809491 0 +5 16365 25.414716809491 0 +5 16402 25.424399235494 0 +5 16402 25.424399235494 0 +5 16417 25.424559235494 0 +5 16417 25.424559235494 0 +5 16435 25.431276582461 0 +5 16435 25.431276582461 0 +5 16446 25.431436582461 0 +5 16446 25.431436582461 0 +5 16478 25.457384383218 0 +5 16478 25.457384383218 0 +5 16489 25.457544383218 0 +5 16489 25.457544383218 0 +5 16512 25.493586056133 0 +5 16512 25.493586056133 0 +5 16523 25.493746056133 0 +5 16523 25.493746056133 0 +5 16553 25.543993581628 0 +5 16553 25.543993581628 0 +5 16564 25.544153581628 0 +5 16564 25.544153581628 0 +5 16598 25.714556809491 0 +5 16598 25.714556809491 0 +5 16606 25.714716809491 0 +5 16606 25.714716809491 0 +5 16643 25.72439925309 0 +5 16643 25.72439925309 0 +5 16658 25.72455925309 0 +5 16658 25.72455925309 0 +5 16676 25.731276602139 0 +5 16676 25.731276602139 0 +5 16687 25.731436602139 0 +5 16687 25.731436602139 0 +5 16719 25.757384382378 0 +5 16719 25.757384382378 0 +5 16730 25.757544382378 0 +5 16730 25.757544382378 0 +5 16753 25.793586055358 0 +5 16753 25.793586055358 0 +5 16764 25.793746055358 0 +5 16764 25.793746055358 0 +5 16794 25.843993583304 0 +5 16794 25.843993583304 0 +5 16805 25.844153583304 0 +5 16805 25.844153583304 0 +5 16839 26.014556809491 0 +5 16839 26.014556809491 0 +5 16847 26.014716809491 0 +5 16847 26.014716809491 0 +5 16884 26.02439927079 0 +5 16884 26.02439927079 0 +5 16899 26.02455927079 0 +5 16899 26.02455927079 0 +5 16917 26.031276621424 0 +5 16917 26.031276621424 0 +5 16928 26.031436621424 0 +5 16928 26.031436621424 0 +5 16960 26.057384381741 0 +5 16960 26.057384381741 0 +5 16971 26.057544381741 0 +5 16971 26.057544381741 0 +5 16994 26.093586054815 0 +5 16994 26.093586054815 0 +5 17005 26.093746054815 0 +5 17005 26.093746054815 0 +5 17035 26.143993584607 0 +5 17035 26.143993584607 0 +5 17046 26.144153584607 0 +5 17046 26.144153584607 0 +5 17080 26.314556809491 0 +5 17080 26.314556809491 0 +5 17088 26.314716809491 0 +5 17088 26.314716809491 0 +5 17125 26.324399288461 0 +5 17125 26.324399288461 0 +5 17140 26.324559288461 0 +5 17140 26.324559288461 0 +5 17158 26.331276639945 0 +5 17158 26.331276639945 0 +5 17169 26.331436639945 0 +5 17169 26.331436639945 0 +5 17201 26.357384381246 0 +5 17201 26.357384381246 0 +5 17212 26.357544381246 0 +5 17212 26.357544381246 0 +5 17235 26.393586054911 0 +5 17235 26.393586054911 0 +5 17246 26.393746054911 0 +5 17246 26.393746054911 0 +5 17276 26.443993585474 0 +5 17276 26.443993585474 0 +5 17287 26.444153585474 0 +5 17287 26.444153585474 0 +5 17321 26.614556809491 0 +5 17321 26.614556809491 0 +5 17329 26.614716809491 0 +5 17329 26.614716809491 0 +5 17366 26.624399306213 0 +5 17366 26.624399306213 0 +5 17381 26.624559306213 0 +5 17381 26.624559306213 0 +5 17399 26.631276657697 0 +5 17399 26.631276657697 0 +5 17410 26.631436657697 0 +5 17410 26.631436657697 0 +5 17442 26.657384380772 0 +5 17442 26.657384380772 0 +5 17453 26.657544380772 0 +5 17453 26.657544380772 0 +5 17476 26.693586055774 0 +5 17476 26.693586055774 0 +5 17487 26.693746055774 0 +5 17487 26.693746055774 0 +5 17517 26.743993585917 0 +5 17517 26.743993585917 0 +5 17528 26.744153585917 0 +5 17528 26.744153585917 0 +5 17562 26.914556809491 0 +5 17562 26.914556809491 0 +5 17570 26.914716809491 0 +5 17570 26.914716809491 0 +5 17607 26.924399324013 0 +5 17607 26.924399324013 0 +5 17622 26.924559324013 0 +5 17622 26.924559324013 0 +5 17640 26.931276674713 0 +5 17640 26.931276674713 0 +5 17651 26.931436674713 0 +5 17651 26.931436674713 0 +5 17683 26.957384380173 0 +5 17683 26.957384380173 0 +5 17694 26.957544380173 0 +5 17694 26.957544380173 0 +5 17717 26.993586057387 0 +5 17717 26.993586057387 0 +5 17728 26.993746057387 0 +5 17728 26.993746057387 0 +5 17758 27.043993586021 0 +5 17758 27.043993586021 0 +5 17769 27.044153586021 0 +5 17769 27.044153586021 0 +5 17803 27.214556809491 0 +5 17803 27.214556809491 0 +5 17811 27.214716809491 0 +5 17811 27.214716809491 0 +5 17844 27.224399341349 0 +5 17844 27.224399341349 0 +5 17859 27.224559341349 0 +5 17859 27.224559341349 0 +5 17873 27.231276690939 0 +5 17873 27.231276690939 0 +5 17884 27.231436690939 0 +5 17884 27.231436690939 0 +5 17916 27.257384379228 0 +5 17916 27.257384379228 0 +5 17927 27.257544379228 0 +5 17927 27.257544379228 0 +5 17950 27.293586059723 0 +5 17950 27.293586059723 0 +5 17961 27.293746059723 0 +5 17961 27.293746059723 0 +5 17991 27.343993585835 0 +5 17991 27.343993585835 0 +5 18002 27.344153585835 0 +5 18002 27.344153585835 0 +5 18036 27.514556809491 0 +5 18036 27.514556809491 0 +5 18044 27.514716809491 0 +5 18044 27.514716809491 0 +5 18106 27.531276706855 0 +5 18106 27.531276706855 0 +5 18117 27.531436706855 0 +5 18117 27.531436706855 0 +5 18149 27.557384377938 0 +5 18149 27.557384377938 0 +5 18160 27.557544377938 0 +5 18160 27.557544377938 0 +5 18183 27.593586062815 0 +5 18183 27.593586062815 0 +5 18194 27.593746062815 0 +5 18194 27.593746062815 0 +5 18224 27.643993585638 0 +5 18224 27.643993585638 0 +5 18235 27.644153585638 0 +5 18235 27.644153585638 0 +5 18269 27.814556809491 0 +5 18269 27.814556809491 0 +5 18277 27.814716809491 0 +5 18277 27.814716809491 0 +5 18339 27.831276720086 0 +5 18339 27.831276720086 0 +5 18350 27.831436720086 0 +5 18350 27.831436720086 0 +5 18382 27.857384376349 0 +5 18382 27.857384376349 0 +5 18393 27.857544376349 0 +5 18393 27.857544376349 0 +5 18416 27.893586066606 0 +5 18416 27.893586066606 0 +5 18427 27.893746066606 0 +5 18427 27.893746066606 0 +5 18457 27.943993585413 0 +5 18457 27.943993585413 0 +5 18468 27.944153585413 0 +5 18468 27.944153585413 0 +5 18502 28.114556809491 0 +5 18502 28.114556809491 0 +5 18510 28.114716809491 0 +5 18510 28.114716809491 0 +5 18572 28.13127672571 0 +5 18572 28.13127672571 0 +5 18583 28.13143672571 0 +5 18583 28.13143672571 0 +5 18615 28.157384373989 0 +5 18615 28.157384373989 0 +5 18626 28.157544373989 0 +5 18626 28.157544373989 0 +5 18649 28.193586071088 0 +5 18649 28.193586071088 0 +5 18660 28.193746071088 0 +5 18660 28.193746071088 0 +5 18690 28.243993585227 0 +5 18690 28.243993585227 0 +5 18701 28.244153585227 0 +5 18701 28.244153585227 0 +5 18735 28.414556809491 0 +5 18735 28.414556809491 0 +5 18743 28.414716809491 0 +5 18743 28.414716809491 0 +5 18805 28.431276732587 0 +5 18805 28.431276732587 0 +5 18816 28.431436732587 0 +5 18816 28.431436732587 0 +5 18848 28.457384371101 0 +5 18848 28.457384371101 0 +5 18859 28.457544371101 0 +5 18859 28.457544371101 0 +5 18882 28.493586076328 0 +5 18882 28.493586076328 0 +5 18893 28.493746076328 0 +5 18893 28.493746076328 0 +5 18923 28.543993585019 0 +5 18923 28.543993585019 0 +5 18934 28.544153585019 0 +5 18934 28.544153585019 0 +5 18968 28.714556809491 0 +5 18968 28.714556809491 0 +5 18976 28.714716809491 0 +5 18976 28.714716809491 0 +5 19039 28.731276740327 0 +5 19039 28.731276740327 0 +5 19054 28.731436740327 0 +5 19054 28.731436740327 0 +5 19081 28.75738436664 0 +5 19081 28.75738436664 0 +5 19092 28.75754436664 0 +5 19092 28.75754436664 0 +5 19116 28.793586082194 0 +5 19116 28.793586082194 0 +5 19131 28.793746082194 0 +5 19131 28.793746082194 0 +5 19156 28.843993584814 0 +5 19156 28.843993584814 0 +5 19167 28.844153584814 0 +5 19167 28.844153584814 0 +5 19201 29.014556809491 0 +5 19201 29.014556809491 0 +5 19209 29.014716809491 0 +5 19209 29.014716809491 0 +5 19272 29.031276748231 0 +5 19272 29.031276748231 0 +5 19287 29.031436748231 0 +5 19287 29.031436748231 0 +5 19310 29.057384360134 0 +5 19310 29.057384360134 0 +5 19321 29.057544360134 0 +5 19321 29.057544360134 0 +5 19341 29.093586088751 0 +5 19341 29.093586088751 0 +5 19356 29.093746088751 0 +5 19356 29.093746088751 0 +5 19381 29.143993584619 0 +5 19381 29.143993584619 0 +5 19392 29.144153584619 0 +5 19392 29.144153584619 0 +5 19426 29.314556809491 0 +5 19426 29.314556809491 0 +5 19434 29.314716809491 0 +5 19434 29.314716809491 0 +5 19497 29.331276756353 0 +5 19497 29.331276756353 0 +5 19512 29.331436756353 0 +5 19512 29.331436756353 0 +5 19534 29.357384350663 0 +5 19534 29.357384350663 0 +5 19541 29.357544350663 0 +5 19541 29.357544350663 0 +5 19566 29.393586095971 0 +5 19566 29.393586095971 0 +5 19581 29.393746095971 0 +5 19581 29.393746095971 0 +5 19606 29.443993584404 0 +5 19606 29.443993584404 0 +5 19617 29.444153584404 0 +5 19617 29.444153584404 0 +5 19651 29.614556809491 0 +5 19651 29.614556809491 0 +5 19659 29.614716809491 0 +5 19659 29.614716809491 0 +5 19722 29.631276764677 0 +5 19722 29.631276764677 0 +5 19737 29.631436764677 0 +5 19737 29.631436764677 0 +5 19759 29.657384339017 0 +5 19759 29.657384339017 0 +5 19766 29.657544339017 0 +5 19766 29.657544339017 0 +5 19791 29.693586103788 0 +5 19791 29.693586103788 0 +5 19806 29.693746103788 0 +5 19806 29.693746103788 0 +5 19831 29.743993584219 0 +5 19831 29.743993584219 0 +5 19842 29.744153584219 0 +5 19842 29.744153584219 0 +5 19876 29.914556809491 0 +5 19876 29.914556809491 0 +5 19884 29.914716809491 0 +5 19884 29.914716809491 0 +5 19947 29.931276773214 0 +5 19947 29.931276773214 0 +5 19962 29.931436773214 0 +5 19962 29.931436773214 0 +5 19984 29.957384326873 0 +5 19984 29.957384326873 0 +5 19991 29.957544326873 0 +5 19991 29.957544326873 0 +5 20016 29.993586112191 0 +5 20016 29.993586112191 0 +5 20031 29.993746112191 0 +5 20031 29.993746112191 0 +5 20056 30.043993584023 0 +5 20056 30.043993584023 0 +5 20067 30.044153584023 0 +5 20067 30.044153584023 0 +5 20101 30.214556809491 0 +5 20101 30.214556809491 0 +5 20109 30.214716809491 0 +5 20109 30.214716809491 0 +5 20172 30.231276781919 0 +5 20172 30.231276781919 0 +5 20187 30.231436781919 0 +5 20187 30.231436781919 0 +5 20209 30.257384314288 0 +5 20209 30.257384314288 0 +5 20216 30.257544314288 0 +5 20216 30.257544314288 0 +5 20241 30.293586121137 0 +5 20241 30.293586121137 0 +5 20256 30.293746121137 0 +5 20256 30.293746121137 0 +5 20281 30.343993583815 0 +5 20281 30.343993583815 0 +5 20292 30.344153583815 0 +5 20292 30.344153583815 0 +5 20326 30.514556809491 0 +5 20326 30.514556809491 0 +5 20334 30.514716809491 0 +5 20334 30.514716809491 0 +5 20397 30.531276790863 0 +5 20397 30.531276790863 0 +5 20412 30.531436790863 0 +5 20412 30.531436790863 0 +5 20434 30.557384301358 0 +5 20434 30.557384301358 0 +5 20441 30.557544301358 0 +5 20441 30.557544301358 0 +5 20466 30.593586130599 0 +5 20466 30.593586130599 0 +5 20481 30.593746130599 0 +5 20481 30.593746130599 0 +5 20506 30.643993583594 0 +5 20506 30.643993583594 0 +5 20517 30.644153583594 0 +5 20517 30.644153583594 0 +5 20551 30.814556809491 0 +5 20551 30.814556809491 0 +5 20559 30.814716809491 0 +5 20559 30.814716809491 0 +5 20623 30.831276800084 0 +5 20623 30.831276800084 0 +5 20642 30.831436800084 0 +5 20642 30.831436800084 0 +5 20659 30.857384288203 0 +5 20659 30.857384288203 0 +5 20666 30.857544288203 0 +5 20666 30.857544288203 0 +5 20691 30.893586140579 0 +5 20691 30.893586140579 0 +5 20706 30.893746140579 0 +5 20706 30.893746140579 0 +5 20731 30.943993583376 0 +5 20731 30.943993583376 0 +5 20742 30.944153583376 0 +5 20742 30.944153583376 0 +5 20776 31.114556809491 0 +5 20776 31.114556809491 0 +5 20784 31.114716809491 0 +5 20784 31.114716809491 0 +5 20852 31.131276809733 0 +5 20852 31.131276809733 0 +5 20871 31.131436809733 0 +5 20871 31.131436809733 0 +5 20888 31.157384274763 0 +5 20888 31.157384274763 0 +5 20895 31.157544274763 0 +5 20895 31.157544274763 0 +5 20920 31.193586151091 0 +5 20920 31.193586151091 0 +5 20935 31.193746151091 0 +5 20935 31.193746151091 0 +5 20964 31.243993583185 0 +5 20964 31.243993583185 0 +5 20975 31.244153583185 0 +5 20975 31.244153583185 0 +5 21009 31.414556809491 0 +5 21009 31.414556809491 0 +5 21017 31.414716809491 0 +5 21017 31.414716809491 0 +5 21085 31.43127681984 0 +5 21085 31.43127681984 0 +5 21104 31.43143681984 0 +5 21104 31.43143681984 0 +5 21121 31.45738426113 0 +5 21121 31.45738426113 0 +5 21128 31.45754426113 0 +5 21128 31.45754426113 0 +5 21153 31.493586162045 0 +5 21153 31.493586162045 0 +5 21168 31.493746162045 0 +5 21168 31.493746162045 0 +5 21197 31.543993582999 0 +5 21197 31.543993582999 0 +5 21208 31.544153582999 0 +5 21208 31.544153582999 0 +5 21242 31.714556809491 0 +5 21242 31.714556809491 0 +5 21250 31.714716809491 0 +5 21250 31.714716809491 0 +5 21318 31.73127683044 0 +5 21318 31.73127683044 0 +5 21337 31.73143683044 0 +5 21337 31.73143683044 0 +5 21354 31.757384247459 0 +5 21354 31.757384247459 0 +5 21361 31.757544247459 0 +5 21361 31.757544247459 0 +5 21386 31.793586173478 0 +5 21386 31.793586173478 0 +5 21401 31.793746173478 0 +5 21401 31.793746173478 0 +5 21429 31.843993582814 0 +5 21429 31.843993582814 0 +5 21436 31.844153582814 0 +5 21436 31.844153582814 0 +5 21475 32.014556809491 0 +5 21475 32.014556809491 0 +5 21483 32.014716809491 0 +5 21483 32.014716809491 0 +5 21551 32.031276841444 0 +5 21551 32.031276841444 0 +5 21570 32.031436841444 0 +5 21570 32.031436841444 0 +5 21587 32.057384234163 0 +5 21587 32.057384234163 0 +5 21594 32.057544234163 0 +5 21594 32.057544234163 0 +5 21620 32.093586185302 0 +5 21620 32.093586185302 0 +5 21639 32.093746185302 0 +5 21639 32.093746185302 0 +5 21662 32.143993582627 0 +5 21662 32.143993582627 0 +5 21669 32.144153582627 0 +5 21669 32.144153582627 0 +5 21708 32.314556809491 0 +5 21708 32.314556809491 0 +5 21716 32.314716809491 0 +5 21716 32.314716809491 0 +5 21784 32.331276852904 0 +5 21784 32.331276852904 0 +5 21803 32.331436852904 0 +5 21803 32.331436852904 0 +5 21820 32.357384221209 0 +5 21820 32.357384221209 0 +5 21827 32.357544221209 0 +5 21827 32.357544221209 0 +5 21853 32.393586197538 0 +5 21853 32.393586197538 0 +5 21872 32.393746197538 0 +5 21872 32.393746197538 0 +5 21895 32.44399358243 0 +5 21895 32.44399358243 0 +5 21902 32.44415358243 0 +5 21902 32.44415358243 0 +5 21941 32.614556809491 0 +5 21941 32.614556809491 0 +5 21949 32.614716809491 0 +5 21949 32.614716809491 0 +5 22017 32.631276864721 0 +5 22017 32.631276864721 0 +5 22036 32.631436864721 0 +5 22036 32.631436864721 0 +5 22053 32.657384208687 0 +5 22053 32.657384208687 0 +5 22060 32.657544208687 0 +5 22060 32.657544208687 0 +5 22086 32.693586210128 0 +5 22086 32.693586210128 0 +5 22105 32.693746210128 0 +5 22105 32.693746210128 0 +5 22128 32.743993582216 0 +5 22128 32.743993582216 0 +5 22135 32.744153582216 0 +5 22135 32.744153582216 0 +5 22174 32.914556809491 0 +5 22174 32.914556809491 0 +5 22182 32.914716809491 0 +5 22182 32.914716809491 0 +5 22250 32.931276876958 0 +5 22250 32.931276876958 0 +5 22269 32.931436876958 0 +5 22269 32.931436876958 0 +5 22286 32.957384196619 0 +5 22286 32.957384196619 0 +5 22293 32.957544196619 0 +5 22293 32.957544196619 0 +5 22319 32.993586223119 0 +5 22319 32.993586223119 0 +5 22338 32.993746223119 0 +5 22338 32.993746223119 0 +5 22361 33.043993582014 0 +5 22361 33.043993582014 0 +5 22368 33.044153582014 0 +5 22368 33.044153582014 0 +5 22407 33.214556809491 0 +5 22407 33.214556809491 0 +5 22415 33.214716809491 0 +5 22415 33.214716809491 0 +5 22483 33.231276889508 0 +5 22483 33.231276889508 0 +5 22502 33.231436889508 0 +5 22502 33.231436889508 0 +5 22519 33.25738418501 0 +5 22519 33.25738418501 0 +5 22526 33.25754418501 0 +5 22526 33.25754418501 0 +5 22552 33.293586236404 0 +5 22552 33.293586236404 0 +5 22571 33.293746236404 0 +5 22571 33.293746236404 0 +5 22594 33.34399358181 0 +5 22594 33.34399358181 0 +5 22601 33.34415358181 0 +5 22601 33.34415358181 0 +5 22640 33.514556809491 0 +5 22640 33.514556809491 0 +5 22648 33.514716809491 0 +5 22648 33.514716809491 0 +5 22716 33.531276902417 0 +5 22716 33.531276902417 0 +5 22735 33.531436902417 0 +5 22735 33.531436902417 0 +5 22752 33.557384173944 0 +5 22752 33.557384173944 0 +5 22759 33.557544173944 0 +5 22759 33.557544173944 0 +5 22785 33.593586250026 0 +5 22785 33.593586250026 0 +5 22804 33.593746250026 0 +5 22804 33.593746250026 0 +5 22827 33.643993581593 0 +5 22827 33.643993581593 0 +5 22834 33.644153581593 0 +5 22834 33.644153581593 0 +5 22873 33.814556809491 0 +5 22873 33.814556809491 0 +5 22881 33.814716809491 0 +5 22881 33.814716809491 0 +5 22945 33.831276915646 0 +5 22945 33.831276915646 0 +5 22964 33.831436915646 0 +5 22964 33.831436915646 0 +5 22981 33.857384163418 0 +5 22981 33.857384163418 0 +5 22988 33.857544163418 0 +5 22988 33.857544163418 0 +5 23051 33.943993581377 0 +5 23051 33.943993581377 0 +5 23057 33.944153581377 0 +5 23057 33.944153581377 0 +5 23089 34.114556809491 0 +5 23089 34.114556809491 0 +5 23096 34.114716809491 0 +5 23096 34.114716809491 0 +5 23175 34.157384153508 0 +5 23175 34.157384153508 0 +5 23181 34.157544153508 0 +5 23181 34.157544153508 0 +5 23209 34.243993581155 0 +5 23209 34.243993581155 0 +5 23215 34.244153581155 0 +5 23215 34.244153581155 0 +5 23247 34.414556809491 0 +5 23247 34.414556809491 0 +5 23254 34.414716809491 0 +5 23254 34.414716809491 0 +5 23333 34.457384144204 0 +5 23333 34.457384144204 0 +5 23339 34.457544144204 0 +5 23339 34.457544144204 0 +5 23367 34.543993580981 0 +5 23367 34.543993580981 0 +5 23373 34.544153580981 0 +5 23373 34.544153580981 0 +5 23405 34.714556809491 0 +5 23405 34.714556809491 0 +5 23412 34.714716809491 0 +5 23412 34.714716809491 0 +5 23491 34.75738413555 0 +5 23491 34.75738413555 0 +5 23497 34.75754413555 0 +5 23497 34.75754413555 0 +5 23525 34.843993580776 0 +5 23525 34.843993580776 0 +5 23531 34.844153580776 0 +5 23531 34.844153580776 0 +5 23563 35.014556809491 0 +5 23563 35.014556809491 0 +5 23570 35.014716809491 0 +5 23570 35.014716809491 0 +5 23649 35.057384127604 0 +5 23649 35.057384127604 0 +5 23655 35.057544127604 0 +5 23655 35.057544127604 0 +5 23683 35.143993580566 0 +5 23683 35.143993580566 0 +5 23689 35.144153580566 0 +5 23689 35.144153580566 0 +5 23725 35.314556809491 0 +5 23725 35.314556809491 0 +5 23732 35.314716809491 0 +5 23732 35.314716809491 0 +5 23811 35.357384120761 0 +5 23811 35.357384120761 0 +5 23817 35.357544120761 0 +5 23817 35.357544120761 0 +5 23849 35.443993580357 0 +5 23849 35.443993580357 0 +5 23855 35.444153580357 0 +5 23855 35.444153580357 0 +5 23891 35.614556809491 0 +5 23891 35.614556809491 0 +5 23898 35.614716809491 0 +5 23898 35.614716809491 0 +5 23977 35.657384115863 0 +5 23977 35.657384115863 0 +5 23983 35.657544115863 0 +5 23983 35.657544115863 0 +5 24015 35.743993580181 0 +5 24015 35.743993580181 0 +5 24021 35.744153580181 0 +5 24021 35.744153580181 0 +5 24057 35.914556809491 0 +5 24057 35.914556809491 0 +5 24064 35.914716809491 0 +5 24064 35.914716809491 0 +5 24143 35.957384112909 0 +5 24143 35.957384112909 0 +5 24149 35.957544112909 0 +5 24149 35.957544112909 0 +5 24181 36.043993579975 0 +5 24181 36.043993579975 0 +5 24187 36.044153579975 0 +5 24187 36.044153579975 0 +5 24223 36.214556809491 0 +5 24223 36.214556809491 0 +5 24230 36.214716809491 0 +5 24230 36.214716809491 0 +5 24309 36.257384111896 0 +5 24309 36.257384111896 0 +5 24315 36.257544111896 0 +5 24315 36.257544111896 0 +5 24347 36.343993579779 0 +5 24347 36.343993579779 0 +5 24353 36.344153579779 0 +5 24353 36.344153579779 0 +5 24389 36.514556809491 0 +5 24389 36.514556809491 0 +5 24396 36.514716809491 0 +5 24396 36.514716809491 0 +5 24475 36.557384112695 0 +5 24475 36.557384112695 0 +5 24481 36.557544112695 0 +5 24481 36.557544112695 0 +5 24513 36.64399357959 0 +5 24513 36.64399357959 0 +5 24519 36.64415357959 0 +5 24519 36.64415357959 0 +5 24555 36.814556809491 0 +5 24555 36.814556809491 0 +5 24562 36.814716809491 0 +5 24562 36.814716809491 0 +5 24641 36.857384114665 0 +5 24641 36.857384114665 0 +5 24647 36.857544114665 0 +5 24647 36.857544114665 0 +5 24679 36.943993579358 0 +5 24679 36.943993579358 0 +5 24685 36.944153579358 0 +5 24685 36.944153579358 0 +5 24721 37.114556809491 0 +5 24721 37.114556809491 0 +5 24728 37.114716809491 0 +5 24728 37.114716809491 0 +5 24807 37.157384116577 0 +5 24807 37.157384116577 0 +5 24813 37.157544116577 0 +5 24813 37.157544116577 0 +5 24845 37.243993577605 0 +5 24845 37.243993577605 0 +5 24851 37.244153577605 0 +5 24851 37.244153577605 0 +5 24887 37.414556809491 0 +5 24887 37.414556809491 0 +5 24894 37.414716809491 0 +5 24894 37.414716809491 0 +5 24973 37.457384118525 0 +5 24973 37.457384118525 0 +5 24979 37.457544118525 0 +5 24979 37.457544118525 0 +5 25011 37.543993572915 0 +5 25011 37.543993572915 0 +5 25017 37.544153572915 0 +5 25017 37.544153572915 0 +5 25053 37.714556809491 0 +5 25053 37.714556809491 0 +5 25060 37.714716809491 0 +5 25060 37.714716809491 0 +5 25139 37.757384120668 0 +5 25139 37.757384120668 0 +5 25145 37.757544120668 0 +5 25145 37.757544120668 0 +5 25177 37.843993571184 0 +5 25177 37.843993571184 0 +5 25183 37.844153571184 0 +5 25183 37.844153571184 0 +5 25219 38.014556809491 0 +5 25219 38.014556809491 0 +5 25226 38.014716809491 0 +5 25226 38.014716809491 0 +5 25305 38.05738412309 0 +5 25305 38.05738412309 0 +5 25311 38.05754412309 0 +5 25311 38.05754412309 0 +5 25343 38.143993570903 0 +5 25343 38.143993570903 0 +5 25349 38.144153570903 0 +5 25349 38.144153570903 0 +5 25385 38.314556809491 0 +5 25385 38.314556809491 0 +5 25392 38.314716809491 0 +5 25392 38.314716809491 0 +5 25471 38.357384125785 0 +5 25471 38.357384125785 0 +5 25477 38.357544125785 0 +5 25477 38.357544125785 0 +5 25509 38.443993571748 0 +5 25509 38.443993571748 0 +5 25515 38.444153571748 0 +5 25515 38.444153571748 0 +5 25551 38.614556809491 0 +5 25551 38.614556809491 0 +5 25558 38.614716809491 0 +5 25558 38.614716809491 0 +5 25637 38.65738412876 0 +5 25637 38.65738412876 0 +5 25643 38.65754412876 0 +5 25643 38.65754412876 0 +5 25675 38.74399357356 0 +5 25675 38.74399357356 0 +5 25681 38.74415357356 0 +5 25681 38.74415357356 0 +5 25717 38.914556809491 0 +5 25717 38.914556809491 0 +5 25724 38.914716809491 0 +5 25724 38.914716809491 0 +5 25803 38.957384132048 0 +5 25803 38.957384132048 0 +5 25809 38.957544132048 0 +5 25809 38.957544132048 0 +5 25841 39.043993576469 0 +5 25841 39.043993576469 0 +5 25847 39.044153576469 0 +5 25847 39.044153576469 0 +5 25883 39.214556809491 0 +5 25883 39.214556809491 0 +5 25890 39.214716809491 0 +5 25890 39.214716809491 0 +5 25969 39.257384135646 0 +5 25969 39.257384135646 0 +5 25975 39.257544135646 0 +5 25975 39.257544135646 0 +5 26007 39.34399358036 0 +5 26007 39.34399358036 0 +5 26013 39.34415358036 0 +5 26013 39.34415358036 0 +5 26049 39.514556809491 0 +5 26049 39.514556809491 0 +5 26056 39.514716809491 0 +5 26056 39.514716809491 0 +5 26135 39.557384139563 0 +5 26135 39.557384139563 0 +5 26141 39.557544139563 0 +5 26141 39.557544139563 0 +5 26173 39.643993585234 0 +5 26173 39.643993585234 0 +5 26179 39.644153585234 0 +5 26179 39.644153585234 0 +5 26215 39.814556809491 0 +5 26215 39.814556809491 0 +5 26222 39.814716809491 0 +5 26222 39.814716809491 0 +5 26301 39.857384143904 0 +5 26301 39.857384143904 0 +5 26307 39.857544143904 0 +5 26307 39.857544143904 0 +5 26339 39.943993591067 0 +5 26339 39.943993591067 0 +5 26345 39.944153591067 0 +5 26345 39.944153591067 0 +5 26381 40.114556809491 0 +5 26381 40.114556809491 0 +5 26388 40.114716809491 0 +5 26388 40.114716809491 0 +5 26468 40.157384148943 0 +5 26468 40.157384148943 0 +5 26478 40.157544148943 0 +5 26478 40.157544148943 0 +5 26506 40.243993597798 0 +5 26506 40.243993597798 0 +5 26516 40.244153597798 0 +5 26516 40.244153597798 0 +5 26547 40.414556809491 0 +5 26547 40.414556809491 0 +5 26554 40.414716809491 0 +5 26554 40.414716809491 0 +5 26634 40.457384154717 0 +5 26634 40.457384154717 0 +5 26644 40.457544154717 0 +5 26644 40.457544154717 0 +5 26672 40.543993605352 0 +5 26672 40.543993605352 0 +5 26682 40.544153605352 0 +5 26682 40.544153605352 0 +5 26713 40.714556809491 0 +5 26713 40.714556809491 0 +5 26720 40.714716809491 0 +5 26720 40.714716809491 0 +5 26804 40.757384161295 0 +5 26804 40.757384161295 0 +5 26814 40.757544161295 0 +5 26814 40.757544161295 0 +5 26842 40.843993613829 0 +5 26842 40.843993613829 0 +5 26852 40.844153613829 0 +5 26852 40.844153613829 0 +5 26887 41.014556809491 0 +5 26887 41.014556809491 0 +5 26894 41.014716809491 0 +5 26894 41.014716809491 0 +5 26978 41.05738416852 0 +5 26978 41.05738416852 0 +5 26988 41.05754416852 0 +5 26988 41.05754416852 0 +5 27016 41.143993623009 0 +5 27016 41.143993623009 0 +5 27026 41.144153623009 0 +5 27026 41.144153623009 0 +5 27061 41.314556809491 0 +5 27061 41.314556809491 0 +5 27068 41.314716809491 0 +5 27068 41.314716809491 0 +5 27152 41.357384176462 0 +5 27152 41.357384176462 0 +5 27162 41.357544176462 0 +5 27162 41.357544176462 0 +5 27190 41.443993632949 0 +5 27190 41.443993632949 0 +5 27200 41.444153632949 0 +5 27200 41.444153632949 0 +5 27235 41.614556809491 0 +5 27235 41.614556809491 0 +5 27242 41.614716809491 0 +5 27242 41.614716809491 0 +5 27326 41.657384185007 0 +5 27326 41.657384185007 0 +5 27336 41.657544185007 0 +5 27336 41.657544185007 0 +5 27364 41.743993643584 0 +5 27364 41.743993643584 0 +5 27374 41.744153643584 0 +5 27374 41.744153643584 0 +5 27409 41.914556809491 0 +5 27409 41.914556809491 0 +5 27416 41.914716809491 0 +5 27416 41.914716809491 0 +5 27500 41.957384194196 0 +5 27500 41.957384194196 0 +5 27510 41.957544194196 0 +5 27510 41.957544194196 0 +5 27538 42.043993655076 0 +5 27538 42.043993655076 0 +5 27548 42.044153655076 0 +5 27548 42.044153655076 0 +5 27583 42.214556809491 0 +5 27583 42.214556809491 0 +5 27590 42.214716809491 0 +5 27590 42.214716809491 0 +5 27674 42.257384203962 0 +5 27674 42.257384203962 0 +5 27684 42.257544203962 0 +5 27684 42.257544203962 0 +5 27712 42.343993667279 0 +5 27712 42.343993667279 0 +5 27722 42.344153667279 0 +5 27722 42.344153667279 0 +5 27757 42.514556809491 0 +5 27757 42.514556809491 0 +5 27764 42.514716809491 0 +5 27764 42.514716809491 0 +5 27848 42.557384214263 0 +5 27848 42.557384214263 0 +5 27858 42.557544214263 0 +5 27858 42.557544214263 0 +5 27886 42.643993680118 0 +5 27886 42.643993680118 0 +5 27896 42.644153680118 0 +5 27896 42.644153680118 0 +5 27931 42.814556809491 0 +5 27931 42.814556809491 0 +5 27938 42.814716809491 0 +5 27938 42.814716809491 0 +5 28022 42.857384225113 0 +5 28022 42.857384225113 0 +5 28032 42.857544225113 0 +5 28032 42.857544225113 0 +5 28060 42.943993693453 0 +5 28060 42.943993693453 0 +5 28070 42.944153693453 0 +5 28070 42.944153693453 0 +5 28105 43.114556809491 0 +5 28105 43.114556809491 0 +5 28112 43.114716809491 0 +5 28112 43.114716809491 0 +5 28196 43.15738423643 0 +5 28196 43.15738423643 0 +5 28206 43.15754423643 0 +5 28206 43.15754423643 0 +5 28234 43.243993707142 0 +5 28234 43.243993707142 0 +5 28244 43.244153707142 0 +5 28244 43.244153707142 0 +5 28279 43.414556809491 0 +5 28279 43.414556809491 0 +5 28286 43.414716809491 0 +5 28286 43.414716809491 0 +5 28370 43.457384248185 0 +5 28370 43.457384248185 0 +5 28380 43.457544248185 0 +5 28380 43.457544248185 0 +5 28408 43.54399372113 0 +5 28408 43.54399372113 0 +5 28418 43.54415372113 0 +5 28418 43.54415372113 0 +5 28453 43.714556809491 0 +5 28453 43.714556809491 0 +5 28460 43.714716809491 0 +5 28460 43.714716809491 0 +5 28544 43.757384260094 0 +5 28544 43.757384260094 0 +5 28554 43.757544260094 0 +5 28554 43.757544260094 0 +5 28582 43.843993734654 0 +5 28582 43.843993734654 0 +5 28592 43.844153734654 0 +5 28592 43.844153734654 0 +5 28627 44.014556809491 0 +5 28627 44.014556809491 0 +5 28634 44.014716809491 0 +5 28634 44.014716809491 0 +5 28718 44.05738427113 0 +5 28718 44.05738427113 0 +5 28728 44.05754427113 0 +5 28728 44.05754427113 0 +5 28756 44.143993746996 0 +5 28756 44.143993746996 0 +5 28766 44.144153746996 0 +5 28766 44.144153746996 0 +5 28801 44.314556809491 0 +5 28801 44.314556809491 0 +5 28808 44.314716809491 0 +5 28808 44.314716809491 0 +5 28888 44.357384281313 0 +5 28888 44.357384281313 0 +5 28898 44.357544281313 0 +5 28898 44.357544281313 0 +5 28926 44.443993758119 0 +5 28926 44.443993758119 0 +5 28936 44.444153758119 0 +5 28936 44.444153758119 0 +5 28967 44.614556809491 0 +5 28967 44.614556809491 0 +5 28974 44.614716809491 0 +5 28974 44.614716809491 0 +5 29054 44.657384290579 0 +5 29054 44.657384290579 0 +5 29064 44.657544290579 0 +5 29064 44.657544290579 0 +5 29092 44.743993767993 0 +5 29092 44.743993767993 0 +5 29102 44.744153767993 0 +5 29102 44.744153767993 0 +5 29133 44.914556809491 0 +5 29133 44.914556809491 0 +5 29140 44.914716809491 0 +5 29140 44.914716809491 0 +5 29220 44.957384298829 0 +5 29220 44.957384298829 0 +5 29230 44.957544298829 0 +5 29230 44.957544298829 0 +5 29258 45.04399377659 0 +5 29258 45.04399377659 0 +5 29268 45.04415377659 0 +5 29268 45.04415377659 0 +5 29299 45.214556809491 0 +5 29299 45.214556809491 0 +5 29306 45.214716809491 0 +5 29306 45.214716809491 0 +5 29386 45.257384305981 0 +5 29386 45.257384305981 0 +5 29396 45.257544305981 0 +5 29396 45.257544305981 0 +5 29424 45.343993783865 0 +5 29424 45.343993783865 0 +5 29434 45.344153783865 0 +5 29434 45.344153783865 0 +5 29465 45.514556809491 0 +5 29465 45.514556809491 0 +5 29472 45.514716809491 0 +5 29472 45.514716809491 0 +5 29552 45.557384312206 0 +5 29552 45.557384312206 0 +5 29562 45.557544312206 0 +5 29562 45.557544312206 0 +5 29590 45.643993790499 0 +5 29590 45.643993790499 0 +5 29600 45.644153790499 0 +5 29600 45.644153790499 0 +5 29631 45.814556809491 0 +5 29631 45.814556809491 0 +5 29638 45.814716809491 0 +5 29638 45.814716809491 0 +5 29718 45.857384319049 0 +5 29718 45.857384319049 0 +5 29728 45.857544319049 0 +5 29728 45.857544319049 0 +5 29756 45.943993797914 0 +5 29756 45.943993797914 0 +5 29766 45.944153797914 0 +5 29766 45.944153797914 0 +5 29797 46.114556809491 0 +5 29797 46.114556809491 0 +5 29804 46.114716809491 0 +5 29804 46.114716809491 0 +5 29884 46.157384326651 0 +5 29884 46.157384326651 0 +5 29894 46.157544326651 0 +5 29894 46.157544326651 0 +5 29923 46.243993806003 0 +5 29923 46.243993806003 0 +5 29937 46.244153806003 0 +5 29937 46.244153806003 0 +5 29963 46.414556809491 0 +5 29963 46.414556809491 0 +5 29970 46.414716809491 0 +5 29970 46.414716809491 0 +5 30050 46.457384334527 0 +5 30050 46.457384334527 0 +5 30060 46.457544334527 0 +5 30060 46.457544334527 0 +5 30089 46.543993813964 0 +5 30089 46.543993813964 0 +5 30103 46.544153813964 0 +5 30103 46.544153813964 0 +5 30129 46.714556809491 0 +5 30129 46.714556809491 0 +5 30136 46.714716809491 0 +5 30136 46.714716809491 0 +5 30217 46.757384340536 0 +5 30217 46.757384340536 0 +5 30231 46.757544340536 0 +5 30231 46.757544340536 0 +5 30255 46.843993818595 0 +5 30255 46.843993818595 0 +5 30269 46.844153818595 0 +5 30269 46.844153818595 0 +5 30295 47.014556809491 0 +5 30295 47.014556809491 0 +5 30302 47.014716809491 0 +5 30302 47.014716809491 0 +5 30383 47.057384342941 0 +5 30383 47.057384342941 0 +5 30397 47.057544342941 0 +5 30397 47.057544342941 0 +5 30421 47.143993819767 0 +5 30421 47.143993819767 0 +5 30435 47.144153819767 0 +5 30435 47.144153819767 0 +5 30461 47.314556809491 0 +5 30461 47.314556809491 0 +5 30468 47.314716809491 0 +5 30468 47.314716809491 0 +5 30549 47.357384344047 0 +5 30549 47.357384344047 0 +5 30563 47.357544344047 0 +5 30563 47.357544344047 0 +5 30587 47.443993820025 0 +5 30587 47.443993820025 0 +5 30601 47.444153820025 0 +5 30601 47.444153820025 0 +5 30627 47.614556809491 0 +5 30627 47.614556809491 0 +5 30634 47.614716809491 0 +5 30634 47.614716809491 0 +5 30715 47.657384345882 0 +5 30715 47.657384345882 0 +5 30729 47.657544345882 0 +5 30729 47.657544345882 0 +5 30753 47.743993820289 0 +5 30753 47.743993820289 0 +5 30767 47.744153820289 0 +5 30767 47.744153820289 0 +5 30793 47.914556809491 0 +5 30793 47.914556809491 0 +5 30800 47.914716809491 0 +5 30800 47.914716809491 0 +5 30881 47.95738434856 0 +5 30881 47.95738434856 0 +5 30895 47.95754434856 0 +5 30895 47.95754434856 0 +5 30919 48.043993820574 0 +5 30919 48.043993820574 0 +5 30933 48.044153820574 0 +5 30933 48.044153820574 0 +5 30959 48.214556809491 0 +5 30959 48.214556809491 0 +5 30966 48.214716809491 0 +5 30966 48.214716809491 0 +5 31047 48.257384352185 0 +5 31047 48.257384352185 0 +5 31061 48.257544352185 0 +5 31061 48.257544352185 0 +5 31085 48.343993819422 0 +5 31085 48.343993819422 0 +5 31099 48.344153819422 0 +5 31099 48.344153819422 0 +5 31125 48.514556809491 0 +5 31125 48.514556809491 0 +5 31132 48.514716809491 0 +5 31132 48.514716809491 0 +5 31213 48.557384356842 0 +5 31213 48.557384356842 0 +5 31227 48.557544356842 0 +5 31227 48.557544356842 0 +5 31251 48.643993818083 0 +5 31251 48.643993818083 0 +5 31265 48.644153818083 0 +5 31265 48.644153818083 0 +5 31291 48.814556809491 0 +5 31291 48.814556809491 0 +5 31298 48.814716809491 0 +5 31298 48.814716809491 0 +5 31379 48.857384362664 0 +5 31379 48.857384362664 0 +5 31393 48.857544362664 0 +5 31393 48.857544362664 0 +5 31417 48.943993815516 0 +5 31417 48.943993815516 0 +5 31431 48.944153815516 0 +5 31431 48.944153815516 0 +5 31457 49.114556809491 0 +5 31457 49.114556809491 0 +5 31464 49.114716809491 0 +5 31464 49.114716809491 0 +5 31545 49.157384369644 0 +5 31545 49.157384369644 0 +5 31559 49.157544369644 0 +5 31559 49.157544369644 0 +5 31583 49.243993812156 0 +5 31583 49.243993812156 0 +5 31597 49.244153812156 0 +5 31597 49.244153812156 0 +5 31623 49.414556809491 0 +5 31623 49.414556809491 0 +5 31630 49.414716809491 0 +5 31630 49.414716809491 0 +5 31711 49.457384377764 0 +5 31711 49.457384377764 0 +5 31725 49.457544377764 0 +5 31725 49.457544377764 0 +5 31749 49.543993808185 0 +5 31749 49.543993808185 0 +5 31763 49.544153808185 0 +5 31763 49.544153808185 0 +5 31789 49.714556809491 0 +5 31789 49.714556809491 0 +5 31796 49.714716809491 0 +5 31796 49.714716809491 0 +5 31877 49.757384386996 0 +5 31877 49.757384386996 0 +5 31891 49.757544386996 0 +5 31891 49.757544386996 0 +5 31915 49.843993803841 0 +5 31915 49.843993803841 0 +5 31929 49.844153803841 0 +5 31929 49.844153803841 0 +5 31955 50.014556809491 0 +5 31955 50.014556809491 0 +5 31962 50.014716809491 0 +5 31962 50.014716809491 0 +5 32043 50.05738439718 0 +5 32043 50.05738439718 0 +5 32057 50.05754439718 0 +5 32057 50.05754439718 0 +5 32081 50.143993799517 0 +5 32081 50.143993799517 0 +5 32095 50.144153799517 0 +5 32095 50.144153799517 0 +5 32121 50.314556809491 0 +5 32121 50.314556809491 0 +5 32128 50.314716809491 0 +5 32128 50.314716809491 0 +5 32209 50.3573844083 0 +5 32209 50.3573844083 0 +5 32223 50.3575444083 0 +5 32223 50.3575444083 0 +5 32247 50.443993795058 0 +5 32247 50.443993795058 0 +5 32261 50.444153795058 0 +5 32261 50.444153795058 0 +5 32287 50.614556809491 0 +5 32287 50.614556809491 0 +5 32294 50.614716809491 0 +5 32294 50.614716809491 0 +5 32375 50.657384420305 0 +5 32375 50.657384420305 0 +5 32389 50.657544420305 0 +5 32389 50.657544420305 0 +5 32413 50.743993790392 0 +5 32413 50.743993790392 0 +5 32427 50.744153790392 0 +5 32427 50.744153790392 0 +5 32453 50.914556809491 0 +5 32453 50.914556809491 0 +5 32460 50.914716809491 0 +5 32460 50.914716809491 0 +5 32541 50.957384433105 0 +5 32541 50.957384433105 0 +5 32555 50.957544433105 0 +5 32555 50.957544433105 0 +5 32579 51.043993785603 0 +5 32579 51.043993785603 0 +5 32593 51.044153785603 0 +5 32593 51.044153785603 0 +5 32619 51.214556809491 0 +5 32619 51.214556809491 0 +5 32626 51.214716809491 0 +5 32626 51.214716809491 0 +5 32737 51.343993780685 0 +5 32737 51.343993780685 0 +5 32751 51.344153780685 0 +5 32751 51.344153780685 0 +5 32777 51.514556809491 0 +5 32777 51.514556809491 0 +5 32784 51.514716809491 0 +5 32784 51.514716809491 0 +5 32903 51.643993775717 0 +5 32903 51.643993775717 0 +5 32917 51.644153775717 0 +5 32917 51.644153775717 0 +5 32943 51.814556809491 0 +5 32943 51.814556809491 0 +5 32950 51.814716809491 0 +5 32950 51.814716809491 0 +5 33069 51.943993770578 0 +5 33069 51.943993770578 0 +5 33083 51.944153770578 0 +5 33083 51.944153770578 0 +5 33109 52.114556809491 0 +5 33109 52.114556809491 0 +5 33116 52.114716809491 0 +5 33116 52.114716809491 0 +5 33235 52.243993765452 0 +5 33235 52.243993765452 0 +5 33249 52.244153765452 0 +5 33249 52.244153765452 0 +5 33275 52.414556809491 0 +5 33275 52.414556809491 0 +5 33282 52.414716809491 0 +5 33282 52.414716809491 0 +5 33401 52.543993760435 0 +5 33401 52.543993760435 0 +5 33415 52.544153760435 0 +5 33415 52.544153760435 0 +5 33441 52.714556809491 0 +5 33441 52.714556809491 0 +5 33448 52.714716809491 0 +5 33448 52.714716809491 0 +5 33567 52.843993755494 0 +5 33567 52.843993755494 0 +5 33581 52.844153755494 0 +5 33581 52.844153755494 0 +5 33607 53.014556809491 0 +5 33607 53.014556809491 0 +5 33614 53.014716809491 0 +5 33614 53.014716809491 0 +5 33733 53.143993750731 0 +5 33733 53.143993750731 0 +5 33747 53.144153750731 0 +5 33747 53.144153750731 0 +6 22 2.1 0 +6 22 2.1 0 +6 43 2.614556809491 0 +6 43 2.614556809491 2 +6 44 2.614556809491 2 +6 44 2.614556809491 0 +6 47 2.614556809491 0 +6 47 2.614556809491 0 +6 51 2.614716809491 0 +6 51 2.614716809491 0 +6 67 2.65738405803 0 +6 67 2.65738405803 0 +6 70 2.65754405803 0 +6 70 2.65754405803 0 +6 88 2.914556809491 0 +6 88 2.914556809491 2 +6 89 2.914556809491 2 +6 89 2.914556809491 0 +6 92 2.914556809491 0 +6 92 2.914556809491 0 +6 96 2.914716809491 0 +6 96 2.914716809491 0 +6 112 2.957384059145 0 +6 112 2.957384059145 0 +6 115 2.957544059145 0 +6 115 2.957544059145 0 +6 135 3.214556809491 0 +6 135 3.214556809491 2 +6 136 3.214556809491 2 +6 136 3.214556809491 0 +6 139 3.214556809491 0 +6 139 3.214556809491 0 +6 144 3.214716809491 0 +6 144 3.214716809491 0 +6 165 3.257384060325 0 +6 165 3.257384060325 0 +6 169 3.257544060325 0 +6 169 3.257544060325 0 +6 195 3.514556809491 0 +6 195 3.514556809491 2 +6 196 3.514556809491 2 +6 196 3.514556809491 0 +6 199 3.514556809491 0 +6 199 3.514556809491 0 +6 204 3.514716809491 0 +6 204 3.514716809491 0 +6 225 3.531276752816 0 +6 225 3.531276752816 0 +6 229 3.531436752816 0 +6 229 3.531436752816 0 +6 249 3.5573840616 0 +6 249 3.5573840616 0 +6 253 3.5575440616 0 +6 253 3.5575440616 0 +6 279 3.814556809491 0 +6 279 3.814556809491 2 +6 280 3.814556809491 2 +6 280 3.814556809491 0 +6 283 3.814556809491 0 +6 283 3.814556809491 0 +6 288 3.814716809491 0 +6 288 3.814716809491 0 +6 309 3.831276748492 0 +6 309 3.831276748492 0 +6 313 3.831436748492 0 +6 313 3.831436748492 0 +6 333 3.857384062957 0 +6 333 3.857384062957 0 +6 337 3.857544062957 0 +6 337 3.857544062957 0 +6 364 4.114556809491 0 +6 364 4.114556809491 2 +6 365 4.114556809491 2 +6 365 4.114556809491 0 +6 368 4.114556809491 0 +6 368 4.114556809491 0 +6 374 4.114716809491 0 +6 374 4.114716809491 0 +6 397 4.131276743562 0 +6 397 4.131276743562 0 +6 406 4.131436743562 0 +6 406 4.131436743562 0 +6 426 4.157384064405 0 +6 426 4.157384064405 0 +6 431 4.157544064405 0 +6 431 4.157544064405 0 +6 461 4.414556809491 0 +6 461 4.414556809491 2 +6 462 4.414556809491 2 +6 462 4.414556809491 0 +6 465 4.414556809491 0 +6 465 4.414556809491 0 +6 471 4.414716809491 0 +6 471 4.414716809491 0 +6 494 4.431276737964 0 +6 494 4.431276737964 0 +6 503 4.431436737964 0 +6 503 4.431436737964 0 +6 523 4.457384065992 0 +6 523 4.457384065992 0 +6 528 4.457544065992 0 +6 528 4.457544065992 0 +6 580 4.714556809491 0 +6 580 4.714556809491 2 +6 581 4.714556809491 2 +6 581 4.714556809491 0 +6 584 4.714556809491 0 +6 584 4.714556809491 0 +6 590 4.714716809491 0 +6 590 4.714716809491 0 +6 613 4.731276731904 0 +6 613 4.731276731904 0 +6 622 4.731436731904 0 +6 622 4.731436731904 0 +6 642 4.757384067713 0 +6 642 4.757384067713 0 +6 647 4.757544067713 0 +6 647 4.757544067713 0 +6 699 5.014556809491 0 +6 699 5.014556809491 2 +6 700 5.014556809491 2 +6 700 5.014556809491 0 +6 703 5.014556809491 0 +6 703 5.014556809491 0 +6 709 5.014716809491 0 +6 709 5.014716809491 0 +6 732 5.031276725247 0 +6 732 5.031276725247 0 +6 741 5.031436725247 0 +6 741 5.031436725247 0 +6 761 5.057384069567 0 +6 761 5.057384069567 0 +6 766 5.057544069567 0 +6 766 5.057544069567 0 +6 827 5.314556809491 0 +6 827 5.314556809491 2 +6 828 5.314556809491 2 +6 828 5.314556809491 0 +6 831 5.314556809491 0 +6 831 5.314556809491 0 +6 838 5.314716809491 0 +6 838 5.314716809491 0 +6 862 5.331276717912 0 +6 862 5.331276717912 0 +6 872 5.331436717912 0 +6 872 5.331436717912 0 +6 893 5.357384071635 0 +6 893 5.357384071635 0 +6 899 5.357544071635 0 +6 899 5.357544071635 0 +6 961 5.614556809491 0 +6 961 5.614556809491 2 +6 962 5.614556809491 2 +6 962 5.614556809491 0 +6 965 5.614556809491 0 +6 965 5.614556809491 0 +6 972 5.614716809491 0 +6 972 5.614716809491 0 +6 996 5.631276710029 0 +6 996 5.631276710029 0 +6 1006 5.631436710029 0 +6 1006 5.631436710029 0 +6 1027 5.657384073906 0 +6 1027 5.657384073906 0 +6 1033 5.657544073906 0 +6 1033 5.657544073906 0 +6 1119 5.914556809491 0 +6 1119 5.914556809491 2 +6 1120 5.914556809491 2 +6 1120 5.914556809491 0 +6 1123 5.914556809491 0 +6 1123 5.914556809491 0 +6 1130 5.914716809491 0 +6 1130 5.914716809491 0 +6 1154 5.931276701497 0 +6 1154 5.931276701497 0 +6 1164 5.931436701497 0 +6 1164 5.931436701497 0 +6 1185 5.957384076426 0 +6 1185 5.957384076426 0 +6 1191 5.957544076426 0 +6 1191 5.957544076426 0 +6 1279 6.214556809491 0 +6 1279 6.214556809491 2 +6 1280 6.214556809491 2 +6 1280 6.214556809491 0 +6 1283 6.214556809491 0 +6 1283 6.214556809491 0 +6 1291 6.214716809491 0 +6 1291 6.214716809491 0 +6 1321 6.231276692343 0 +6 1321 6.231276692343 0 +6 1336 6.231436692343 0 +6 1336 6.231436692343 0 +6 1357 6.257384079226 0 +6 1357 6.257384079226 0 +6 1364 6.257544079226 0 +6 1364 6.257544079226 0 +6 1462 6.514556809491 0 +6 1462 6.514556809491 2 +6 1463 6.514556809491 2 +6 1463 6.514556809491 0 +6 1466 6.514556809491 0 +6 1466 6.514556809491 0 +6 1474 6.514716809491 0 +6 1474 6.514716809491 0 +6 1501 6.524398778352 0 +6 1501 6.524398778352 0 +6 1508 6.524558778352 0 +6 1508 6.524558778352 0 +6 1537 6.531276682665 0 +6 1537 6.531276682665 0 +6 1552 6.531436682665 0 +6 1552 6.531436682665 0 +6 1574 6.557384082316 0 +6 1574 6.557384082316 0 +6 1581 6.557544082316 0 +6 1581 6.557544082316 0 +6 1679 6.814556809491 0 +6 1679 6.814556809491 2 +6 1680 6.814556809491 2 +6 1680 6.814556809491 0 +6 1683 6.814556809491 0 +6 1683 6.814556809491 0 +6 1691 6.814716809491 0 +6 1691 6.814716809491 0 +6 1718 6.824398768033 0 +6 1718 6.824398768033 0 +6 1725 6.824558768033 0 +6 1725 6.824558768033 0 +6 1754 6.831276672312 0 +6 1754 6.831276672312 0 +6 1769 6.831436672312 0 +6 1769 6.831436672312 0 +6 1791 6.857384085755 0 +6 1791 6.857384085755 0 +6 1798 6.857544085755 0 +6 1798 6.857544085755 0 +6 1896 7.114556809491 0 +6 1896 7.114556809491 2 +6 1897 7.114556809491 2 +6 1897 7.114556809491 0 +6 1900 7.114556809491 0 +6 1900 7.114556809491 0 +6 1908 7.114716809491 0 +6 1908 7.114716809491 0 +6 1935 7.124398757068 0 +6 1935 7.124398757068 0 +6 1942 7.124558757068 0 +6 1942 7.124558757068 0 +6 1971 7.131276661329 0 +6 1971 7.131276661329 0 +6 1986 7.131436661329 0 +6 1986 7.131436661329 0 +6 2008 7.157384089564 0 +6 2008 7.157384089564 0 +6 2015 7.157544089564 0 +6 2015 7.157544089564 0 +6 2113 7.414556809491 0 +6 2113 7.414556809491 2 +6 2114 7.414556809491 2 +6 2114 7.414556809491 0 +6 2117 7.414556809491 0 +6 2117 7.414556809491 0 +6 2125 7.414716809491 0 +6 2125 7.414716809491 0 +6 2152 7.424398745664 0 +6 2152 7.424398745664 0 +6 2159 7.424558745664 0 +6 2159 7.424558745664 0 +6 2188 7.431276649891 0 +6 2188 7.431276649891 0 +6 2203 7.431436649891 0 +6 2203 7.431436649891 0 +6 2225 7.457384093735 0 +6 2225 7.457384093735 0 +6 2232 7.457544093735 0 +6 2232 7.457544093735 0 +6 2330 7.714556809491 0 +6 2330 7.714556809491 2 +6 2331 7.714556809491 2 +6 2331 7.714556809491 0 +6 2334 7.714556809491 0 +6 2334 7.714556809491 0 +6 2342 7.714716809491 0 +6 2342 7.714716809491 0 +6 2369 7.724398733784 0 +6 2369 7.724398733784 0 +6 2376 7.724558733784 0 +6 2376 7.724558733784 0 +6 2405 7.731276637989 0 +6 2405 7.731276637989 0 +6 2420 7.731436637989 0 +6 2420 7.731436637989 0 +6 2442 7.757384098302 0 +6 2442 7.757384098302 0 +6 2449 7.757544098302 0 +6 2449 7.757544098302 0 +6 2547 8.014556809491 0 +6 2547 8.014556809491 2 +6 2548 8.014556809491 2 +6 2548 8.014556809491 0 +6 2551 8.014556809491 0 +6 2551 8.014556809491 0 +6 2559 8.014716809491 0 +6 2559 8.014716809491 0 +6 2586 8.02439872132 0 +6 2586 8.02439872132 0 +6 2593 8.02455872132 0 +6 2593 8.02455872132 0 +6 2621 8.031276625491 0 +6 2621 8.031276625491 0 +6 2632 8.031436625491 0 +6 2632 8.031436625491 0 +6 2659 8.057384103323 0 +6 2659 8.057384103323 0 +6 2666 8.057544103323 0 +6 2666 8.057544103323 0 +6 2764 8.314556809491 0 +6 2764 8.314556809491 2 +6 2765 8.314556809491 2 +6 2765 8.314556809491 0 +6 2768 8.314556809491 0 +6 2768 8.314556809491 0 +6 2776 8.314716809491 0 +6 2776 8.314716809491 0 +6 2803 8.324398708136 0 +6 2803 8.324398708136 0 +6 2810 8.324558708136 0 +6 2810 8.324558708136 0 +6 2842 8.33127661228 0 +6 2842 8.33127661228 0 +6 2853 8.33143661228 0 +6 2853 8.33143661228 0 +6 2880 8.357384108886 0 +6 2880 8.357384108886 0 +6 2887 8.357544108886 0 +6 2887 8.357544108886 0 +6 2989 8.614556809491 0 +6 2989 8.614556809491 2 +6 2990 8.614556809491 2 +6 2990 8.614556809491 0 +6 2993 8.614556809491 0 +6 2993 8.614556809491 0 +6 3001 8.614716809491 0 +6 3001 8.614716809491 0 +6 3028 8.624398694405 0 +6 3028 8.624398694405 0 +6 3035 8.624558694405 0 +6 3035 8.624558694405 0 +6 3067 8.631276598484 0 +6 3067 8.631276598484 0 +6 3078 8.631436598484 0 +6 3078 8.631436598484 0 +6 3105 8.65738411496 0 +6 3105 8.65738411496 0 +6 3112 8.65754411496 0 +6 3112 8.65754411496 0 +6 3214 8.914556809491 0 +6 3214 8.914556809491 2 +6 3215 8.914556809491 2 +6 3215 8.914556809491 0 +6 3218 8.914556809491 0 +6 3218 8.914556809491 0 +6 3226 8.914716809491 0 +6 3226 8.914716809491 0 +6 3253 8.924398680104 0 +6 3253 8.924398680104 0 +6 3260 8.924558680104 0 +6 3260 8.924558680104 0 +6 3292 8.931276584082 0 +6 3292 8.931276584082 0 +6 3303 8.931436584082 0 +6 3303 8.931436584082 0 +6 3330 8.957384121588 0 +6 3330 8.957384121588 0 +6 3337 8.957544121588 0 +6 3337 8.957544121588 0 +6 3439 9.214556809491 0 +6 3439 9.214556809491 2 +6 3440 9.214556809491 2 +6 3440 9.214556809491 0 +6 3443 9.214556809491 0 +6 3443 9.214556809491 0 +6 3451 9.214716809491 0 +6 3451 9.214716809491 0 +6 3478 9.224398665264 0 +6 3478 9.224398665264 0 +6 3485 9.224558665264 0 +6 3485 9.224558665264 0 +6 3517 9.231276569158 0 +6 3517 9.231276569158 0 +6 3528 9.231436569158 0 +6 3528 9.231436569158 0 +6 3555 9.257384128789 0 +6 3555 9.257384128789 0 +6 3562 9.257544128789 0 +6 3562 9.257544128789 0 +6 3664 9.514556809491 0 +6 3664 9.514556809491 2 +6 3665 9.514556809491 2 +6 3665 9.514556809491 0 +6 3668 9.514556809491 0 +6 3668 9.514556809491 0 +6 3676 9.514716809491 0 +6 3676 9.514716809491 0 +6 3703 9.524398649996 0 +6 3703 9.524398649996 0 +6 3710 9.524558649996 0 +6 3710 9.524558649996 0 +6 3742 9.531276553733 0 +6 3742 9.531276553733 0 +6 3753 9.531436553733 0 +6 3753 9.531436553733 0 +6 3780 9.557384136549 0 +6 3780 9.557384136549 0 +6 3787 9.557544136549 0 +6 3787 9.557544136549 0 +6 3889 9.814556809491 0 +6 3889 9.814556809491 2 +6 3890 9.814556809491 2 +6 3890 9.814556809491 0 +6 3893 9.814556809491 0 +6 3893 9.814556809491 0 +6 3901 9.814716809491 0 +6 3901 9.814716809491 0 +6 3928 9.824398634568 0 +6 3928 9.824398634568 0 +6 3935 9.824558634568 0 +6 3935 9.824558634568 0 +6 3967 9.831276538055 0 +6 3967 9.831276538055 0 +6 3978 9.831436538055 0 +6 3978 9.831436538055 0 +6 4005 9.857384144771 0 +6 4005 9.857384144771 0 +6 4012 9.857544144771 0 +6 4012 9.857544144771 0 +6 4114 10.114556809491 0 +6 4114 10.114556809491 2 +6 4115 10.114556809491 2 +6 4115 10.114556809491 0 +6 4118 10.114556809491 0 +6 4118 10.114556809491 0 +6 4126 10.114716809491 0 +6 4126 10.114716809491 0 +6 4153 10.124398619363 0 +6 4153 10.124398619363 0 +6 4160 10.124558619363 0 +6 4160 10.124558619363 0 +6 4192 10.131276522386 0 +6 4192 10.131276522386 0 +6 4203 10.131436522386 0 +6 4203 10.131436522386 0 +6 4230 10.157384153312 0 +6 4230 10.157384153312 0 +6 4237 10.157544153312 0 +6 4237 10.157544153312 0 +6 4339 10.414556809491 0 +6 4339 10.414556809491 2 +6 4340 10.414556809491 2 +6 4340 10.414556809491 0 +6 4343 10.414556809491 0 +6 4343 10.414556809491 0 +6 4351 10.414716809491 0 +6 4351 10.414716809491 0 +6 4378 10.424398604844 0 +6 4378 10.424398604844 0 +6 4385 10.424558604844 0 +6 4385 10.424558604844 0 +6 4417 10.431276506743 0 +6 4417 10.431276506743 0 +6 4428 10.431436506743 0 +6 4428 10.431436506743 0 +6 4455 10.457384162122 0 +6 4455 10.457384162122 0 +6 4462 10.457544162122 0 +6 4462 10.457544162122 0 +6 4525 10.543993907449 0 +6 4525 10.543993907449 0 +6 4544 10.544153907449 0 +6 4544 10.544153907449 0 +6 4568 10.714556809491 0 +6 4568 10.714556809491 2 +6 4569 10.714556809491 2 +6 4569 10.714556809491 0 +6 4572 10.714556809491 0 +6 4572 10.714556809491 0 +6 4580 10.714716809491 0 +6 4580 10.714716809491 0 +6 4611 10.72439859379 0 +6 4611 10.72439859379 0 +6 4618 10.72455859379 0 +6 4618 10.72455859379 0 +6 4650 10.731276491102 0 +6 4650 10.731276491102 0 +6 4661 10.731436491102 0 +6 4661 10.731436491102 0 +6 4688 10.757384171218 0 +6 4688 10.757384171218 0 +6 4695 10.757544171218 0 +6 4695 10.757544171218 0 +6 4757 10.84399389067 0 +6 4757 10.84399389067 0 +6 4772 10.84415389067 0 +6 4772 10.84415389067 0 +6 4801 11.014556809491 0 +6 4801 11.014556809491 2 +6 4802 11.014556809491 2 +6 4802 11.014556809491 0 +6 4805 11.014556809491 0 +6 4805 11.014556809491 0 +6 4813 11.014716809491 0 +6 4813 11.014716809491 0 +6 4844 11.024398598014 0 +6 4844 11.024398598014 0 +6 4851 11.024558598014 0 +6 4851 11.024558598014 0 +6 4882 11.031276475464 0 +6 4882 11.031276475464 0 +6 4889 11.031436475464 0 +6 4889 11.031436475464 0 +6 4921 11.057384180599 0 +6 4921 11.057384180599 0 +6 4928 11.057544180599 0 +6 4928 11.057544180599 0 +6 4990 11.143993874452 0 +6 4990 11.143993874452 0 +6 5005 11.144153874452 0 +6 5005 11.144153874452 0 +6 5034 11.314556809491 0 +6 5034 11.314556809491 2 +6 5035 11.314556809491 2 +6 5035 11.314556809491 0 +6 5038 11.314556809491 0 +6 5038 11.314556809491 0 +6 5046 11.314716809491 0 +6 5046 11.314716809491 0 +6 5077 11.324398611475 0 +6 5077 11.324398611475 0 +6 5084 11.324558611475 0 +6 5084 11.324558611475 0 +6 5115 11.331276459858 0 +6 5115 11.331276459858 0 +6 5122 11.331436459858 0 +6 5122 11.331436459858 0 +6 5155 11.3573841902 0 +6 5155 11.3573841902 0 +6 5166 11.3575441902 0 +6 5166 11.3575441902 0 +6 5223 11.443993858741 0 +6 5223 11.443993858741 0 +6 5238 11.444153858741 0 +6 5238 11.444153858741 0 +6 5267 11.614556809491 0 +6 5267 11.614556809491 2 +6 5268 11.614556809491 2 +6 5268 11.614556809491 0 +6 5271 11.614556809491 0 +6 5271 11.614556809491 0 +6 5279 11.614716809491 0 +6 5279 11.614716809491 0 +6 5310 11.624398626396 0 +6 5310 11.624398626396 0 +6 5317 11.624558626396 0 +6 5317 11.624558626396 0 +6 5348 11.631276444245 0 +6 5348 11.631276444245 0 +6 5355 11.631436444245 0 +6 5355 11.631436444245 0 +6 5392 11.657384200055 0 +6 5392 11.657384200055 0 +6 5403 11.657544200055 0 +6 5403 11.657544200055 0 +6 5464 11.743993843502 0 +6 5464 11.743993843502 0 +6 5479 11.744153843502 0 +6 5479 11.744153843502 0 +6 5508 11.914556809491 0 +6 5508 11.914556809491 2 +6 5509 11.914556809491 2 +6 5509 11.914556809491 0 +6 5512 11.914556809491 0 +6 5512 11.914556809491 0 +6 5520 11.914716809491 0 +6 5520 11.914716809491 0 +6 5551 11.92439864171 0 +6 5551 11.92439864171 0 +6 5558 11.92455864171 0 +6 5558 11.92455864171 0 +6 5589 11.931276428595 0 +6 5589 11.931276428595 0 +6 5596 11.931436428595 0 +6 5596 11.931436428595 0 +6 5633 11.957384210159 0 +6 5633 11.957384210159 0 +6 5644 11.957544210159 0 +6 5644 11.957544210159 0 +6 5705 12.043993828636 0 +6 5705 12.043993828636 0 +6 5720 12.044153828636 0 +6 5720 12.044153828636 0 +6 5749 12.214556809491 0 +6 5749 12.214556809491 2 +6 5750 12.214556809491 2 +6 5750 12.214556809491 0 +6 5753 12.214556809491 0 +6 5753 12.214556809491 0 +6 5761 12.214716809491 0 +6 5761 12.214716809491 0 +6 5792 12.224398657188 0 +6 5792 12.224398657188 0 +6 5799 12.224558657188 0 +6 5799 12.224558657188 0 +6 5830 12.231276412948 0 +6 5830 12.231276412948 0 +6 5837 12.231436412948 0 +6 5837 12.231436412948 0 +6 5874 12.257384220477 0 +6 5874 12.257384220477 0 +6 5885 12.257544220477 0 +6 5885 12.257544220477 0 +6 5946 12.343993813991 0 +6 5946 12.343993813991 0 +6 5961 12.344153813991 0 +6 5961 12.344153813991 0 +6 5990 12.514556809491 0 +6 5990 12.514556809491 2 +6 5991 12.514556809491 2 +6 5991 12.514556809491 0 +6 5994 12.514556809491 0 +6 5994 12.514556809491 0 +6 6002 12.514716809491 0 +6 6002 12.514716809491 0 +6 6033 12.524398672694 0 +6 6033 12.524398672694 0 +6 6040 12.524558672694 0 +6 6040 12.524558672694 0 +6 6071 12.531276397317 0 +6 6071 12.531276397317 0 +6 6078 12.531436397317 0 +6 6078 12.531436397317 0 +6 6115 12.557384230993 0 +6 6115 12.557384230993 0 +6 6126 12.557544230993 0 +6 6126 12.557544230993 0 +6 6187 12.643993799362 0 +6 6187 12.643993799362 0 +6 6202 12.644153799362 0 +6 6202 12.644153799362 0 +6 6231 12.814556809491 0 +6 6231 12.814556809491 2 +6 6232 12.814556809491 2 +6 6232 12.814556809491 0 +6 6235 12.814556809491 0 +6 6235 12.814556809491 0 +6 6243 12.814716809491 0 +6 6243 12.814716809491 0 +6 6274 12.824398688243 0 +6 6274 12.824398688243 0 +6 6281 12.824558688243 0 +6 6281 12.824558688243 0 +6 6312 12.831276381695 0 +6 6312 12.831276381695 0 +6 6319 12.831436381695 0 +6 6319 12.831436381695 0 +6 6356 12.857384241685 0 +6 6356 12.857384241685 0 +6 6367 12.857544241685 0 +6 6367 12.857544241685 0 +6 6428 12.943993784749 0 +6 6428 12.943993784749 0 +6 6443 12.944153784749 0 +6 6443 12.944153784749 0 +6 6472 13.114556809491 0 +6 6472 13.114556809491 2 +6 6473 13.114556809491 2 +6 6473 13.114556809491 0 +6 6476 13.114556809491 0 +6 6476 13.114556809491 0 +6 6484 13.114716809491 0 +6 6484 13.114716809491 0 +6 6515 13.124398703844 0 +6 6515 13.124398703844 0 +6 6522 13.124558703844 0 +6 6522 13.124558703844 0 +6 6553 13.131276366027 0 +6 6553 13.131276366027 0 +6 6560 13.131436366027 0 +6 6560 13.131436366027 0 +6 6597 13.157384252586 0 +6 6597 13.157384252586 0 +6 6608 13.157544252586 0 +6 6608 13.157544252586 0 +6 6669 13.243993770092 0 +6 6669 13.243993770092 0 +6 6684 13.244153770092 0 +6 6684 13.244153770092 0 +6 6713 13.414556809491 0 +6 6713 13.414556809491 2 +6 6714 13.414556809491 2 +6 6714 13.414556809491 0 +6 6717 13.414556809491 0 +6 6717 13.414556809491 0 +6 6725 13.414716809491 0 +6 6725 13.414716809491 0 +6 6756 13.424398719435 0 +6 6756 13.424398719435 0 +6 6763 13.424558719435 0 +6 6763 13.424558719435 0 +6 6794 13.431276350417 0 +6 6794 13.431276350417 0 +6 6801 13.431436350417 0 +6 6801 13.431436350417 0 +6 6838 13.457384263637 0 +6 6838 13.457384263637 0 +6 6849 13.457544263637 0 +6 6849 13.457544263637 0 +6 6910 13.543993755468 0 +6 6910 13.543993755468 0 +6 6925 13.544153755468 0 +6 6925 13.544153755468 0 +6 6954 13.714556809491 0 +6 6954 13.714556809491 2 +6 6955 13.714556809491 2 +6 6955 13.714556809491 0 +6 6958 13.714556809491 0 +6 6958 13.714556809491 0 +6 6966 13.714716809491 0 +6 6966 13.714716809491 0 +6 6997 13.724398735043 0 +6 6997 13.724398735043 0 +6 7004 13.724558735043 0 +6 7004 13.724558735043 0 +6 7035 13.731276334798 0 +6 7035 13.731276334798 0 +6 7042 13.731436334798 0 +6 7042 13.731436334798 0 +6 7079 13.757384274837 0 +6 7079 13.757384274837 0 +6 7090 13.757544274837 0 +6 7090 13.757544274837 0 +6 7151 13.843993740827 0 +6 7151 13.843993740827 0 +6 7166 13.844153740827 0 +6 7166 13.844153740827 0 +6 7195 14.014556809491 0 +6 7195 14.014556809491 2 +6 7196 14.014556809491 2 +6 7196 14.014556809491 0 +6 7199 14.014556809491 0 +6 7199 14.014556809491 0 +6 7207 14.014716809491 0 +6 7207 14.014716809491 0 +6 7238 14.024398750707 0 +6 7238 14.024398750707 0 +6 7245 14.024558750707 0 +6 7245 14.024558750707 0 +6 7276 14.031276319127 0 +6 7276 14.031276319127 0 +6 7283 14.031436319127 0 +6 7283 14.031436319127 0 +6 7320 14.05738428623 0 +6 7320 14.05738428623 0 +6 7331 14.05754428623 0 +6 7331 14.05754428623 0 +6 7392 14.14399372616 0 +6 7392 14.14399372616 0 +6 7407 14.14415372616 0 +6 7407 14.14415372616 0 +6 7436 14.314556809491 0 +6 7436 14.314556809491 2 +6 7437 14.314556809491 2 +6 7437 14.314556809491 0 +6 7440 14.314556809491 0 +6 7440 14.314556809491 0 +6 7448 14.314716809491 0 +6 7448 14.314716809491 0 +6 7479 14.324398766341 0 +6 7479 14.324398766341 0 +6 7486 14.324558766341 0 +6 7486 14.324558766341 0 +6 7517 14.331276303517 0 +6 7517 14.331276303517 0 +6 7524 14.331436303517 0 +6 7524 14.331436303517 0 +6 7561 14.357384297742 0 +6 7561 14.357384297742 0 +6 7572 14.357544297742 0 +6 7572 14.357544297742 0 +6 7633 14.443993711546 0 +6 7633 14.443993711546 0 +6 7648 14.444153711546 0 +6 7648 14.444153711546 0 +6 7677 14.614556809491 0 +6 7677 14.614556809491 2 +6 7678 14.614556809491 2 +6 7678 14.614556809491 0 +6 7681 14.614556809491 0 +6 7681 14.614556809491 0 +6 7689 14.614716809491 0 +6 7689 14.614716809491 0 +6 7720 14.624398781946 0 +6 7720 14.624398781946 0 +6 7727 14.624558781946 0 +6 7727 14.624558781946 0 +6 7758 14.631276287929 0 +6 7758 14.631276287929 0 +6 7765 14.631436287929 0 +6 7765 14.631436287929 0 +6 7802 14.657384309371 0 +6 7802 14.657384309371 0 +6 7813 14.657544309371 0 +6 7813 14.657544309371 0 +6 7874 14.743993696951 0 +6 7874 14.743993696951 0 +6 7889 14.744153696951 0 +6 7889 14.744153696951 0 +6 7918 14.914556809491 0 +6 7918 14.914556809491 2 +6 7919 14.914556809491 2 +6 7919 14.914556809491 0 +6 7922 14.914556809491 0 +6 7922 14.914556809491 0 +6 7930 14.914716809491 0 +6 7930 14.914716809491 0 +6 7961 14.924398797557 0 +6 7961 14.924398797557 0 +6 7968 14.924558797557 0 +6 7968 14.924558797557 0 +6 7999 14.931276272358 0 +6 7999 14.931276272358 0 +6 8006 14.931436272358 0 +6 8006 14.931436272358 0 +6 8043 14.957384321127 0 +6 8043 14.957384321127 0 +6 8054 14.957544321127 0 +6 8054 14.957544321127 0 +6 8115 15.043993682366 0 +6 8115 15.043993682366 0 +6 8130 15.044153682366 0 +6 8130 15.044153682366 0 +6 8159 15.214556809491 0 +6 8159 15.214556809491 2 +6 8160 15.214556809491 2 +6 8160 15.214556809491 0 +6 8163 15.214556809491 0 +6 8163 15.214556809491 0 +6 8171 15.214716809491 0 +6 8171 15.214716809491 0 +6 8202 15.224398813176 0 +6 8202 15.224398813176 0 +6 8209 15.224558813176 0 +6 8209 15.224558813176 0 +6 8240 15.231276256794 0 +6 8240 15.231276256794 0 +6 8247 15.231436256794 0 +6 8247 15.231436256794 0 +6 8284 15.257384333003 0 +6 8284 15.257384333003 0 +6 8295 15.257544333003 0 +6 8295 15.257544333003 0 +6 8356 15.343993667781 0 +6 8356 15.343993667781 0 +6 8371 15.344153667781 0 +6 8371 15.344153667781 0 +6 8400 15.514556809491 0 +6 8400 15.514556809491 2 +6 8401 15.514556809491 2 +6 8401 15.514556809491 0 +6 8404 15.514556809491 0 +6 8404 15.514556809491 0 +6 8412 15.514716809491 0 +6 8412 15.514716809491 0 +6 8443 15.524398828841 0 +6 8443 15.524398828841 0 +6 8450 15.524558828841 0 +6 8450 15.524558828841 0 +6 8481 15.531276241243 0 +6 8481 15.531276241243 0 +6 8488 15.531436241243 0 +6 8488 15.531436241243 0 +6 8525 15.557384345028 0 +6 8525 15.557384345028 0 +6 8536 15.557544345028 0 +6 8536 15.557544345028 0 +6 8597 15.643993653166 0 +6 8597 15.643993653166 0 +6 8612 15.644153653166 0 +6 8612 15.644153653166 0 +6 8641 15.814556809491 0 +6 8641 15.814556809491 2 +6 8642 15.814556809491 2 +6 8642 15.814556809491 0 +6 8645 15.814556809491 0 +6 8645 15.814556809491 0 +6 8653 15.814716809491 0 +6 8653 15.814716809491 0 +6 8684 15.824398844455 0 +6 8684 15.824398844455 0 +6 8691 15.824558844455 0 +6 8691 15.824558844455 0 +6 8722 15.831276225819 0 +6 8722 15.831276225819 0 +6 8729 15.831436225819 0 +6 8729 15.831436225819 0 +6 8766 15.857384357121 0 +6 8766 15.857384357121 0 +6 8777 15.857544357121 0 +6 8777 15.857544357121 0 +6 8838 15.943993638616 0 +6 8838 15.943993638616 0 +6 8853 15.944153638616 0 +6 8853 15.944153638616 0 +6 8882 16.114556809491 0 +6 8882 16.114556809491 2 +6 8883 16.114556809491 2 +6 8883 16.114556809491 0 +6 8886 16.114556809491 0 +6 8886 16.114556809491 0 +6 8894 16.114716809491 0 +6 8894 16.114716809491 0 +6 8929 16.124398860085 0 +6 8929 16.124398860085 0 +6 8936 16.124558860085 0 +6 8936 16.124558860085 0 +6 8967 16.131276210464 0 +6 8967 16.131276210464 0 +6 8974 16.131436210464 0 +6 8974 16.131436210464 0 +6 9011 16.157384369327 0 +6 9011 16.157384369327 0 +6 9022 16.157544369327 0 +6 9022 16.157544369327 0 +6 9046 16.193586240802 0 +6 9046 16.193586240802 0 +6 9061 16.193746240802 0 +6 9061 16.193746240802 0 +6 9087 16.243993624037 0 +6 9087 16.243993624037 0 +6 9102 16.244153624037 0 +6 9102 16.244153624037 0 +6 9131 16.414556809491 0 +6 9131 16.414556809491 2 +6 9132 16.414556809491 2 +6 9132 16.414556809491 0 +6 9135 16.414556809491 0 +6 9135 16.414556809491 0 +6 9143 16.414716809491 0 +6 9143 16.414716809491 0 +6 9178 16.424398875726 0 +6 9178 16.424398875726 0 +6 9185 16.424558875726 0 +6 9185 16.424558875726 0 +6 9216 16.431276195381 0 +6 9216 16.431276195381 0 +6 9223 16.431436195381 0 +6 9223 16.431436195381 0 +6 9260 16.457384381652 0 +6 9260 16.457384381652 0 +6 9271 16.457544381652 0 +6 9271 16.457544381652 0 +6 9295 16.4935862136 0 +6 9295 16.4935862136 0 +6 9310 16.4937462136 0 +6 9310 16.4937462136 0 +6 9336 16.54399360942 0 +6 9336 16.54399360942 0 +6 9351 16.54415360942 0 +6 9351 16.54415360942 0 +6 9380 16.714556809491 0 +6 9380 16.714556809491 2 +6 9381 16.714556809491 2 +6 9381 16.714556809491 0 +6 9384 16.714556809491 0 +6 9384 16.714556809491 0 +6 9392 16.714716809491 0 +6 9392 16.714716809491 0 +6 9427 16.724398891381 0 +6 9427 16.724398891381 0 +6 9434 16.724558891381 0 +6 9434 16.724558891381 0 +6 9465 16.731276181333 0 +6 9465 16.731276181333 0 +6 9472 16.731436181333 0 +6 9472 16.731436181333 0 +6 9509 16.757384394067 0 +6 9509 16.757384394067 0 +6 9520 16.757544394067 0 +6 9520 16.757544394067 0 +6 9544 16.793586189096 0 +6 9544 16.793586189096 0 +6 9559 16.793746189096 0 +6 9559 16.793746189096 0 +6 9585 16.84399359486 0 +6 9585 16.84399359486 0 +6 9600 16.84415359486 0 +6 9600 16.84415359486 0 +6 9629 17.014556809491 0 +6 9629 17.014556809491 2 +6 9630 17.014556809491 2 +6 9630 17.014556809491 0 +6 9633 17.014556809491 0 +6 9633 17.014556809491 0 +6 9641 17.014716809491 0 +6 9641 17.014716809491 0 +6 9677 17.02439890702 0 +6 9677 17.02439890702 0 +6 9688 17.02455890702 0 +6 9688 17.02455890702 0 +6 9714 17.031276173692 0 +6 9714 17.031276173692 0 +6 9721 17.031436173692 0 +6 9721 17.031436173692 0 +6 9758 17.057384406545 0 +6 9758 17.057384406545 0 +6 9769 17.057544406545 0 +6 9769 17.057544406545 0 +6 9792 17.093586167318 0 +6 9792 17.093586167318 0 +6 9803 17.093746167318 0 +6 9803 17.093746167318 0 +6 9833 17.143993580311 0 +6 9833 17.143993580311 0 +6 9844 17.144153580311 0 +6 9844 17.144153580311 0 +6 9878 17.314556809491 0 +6 9878 17.314556809491 2 +6 9879 17.314556809491 2 +6 9879 17.314556809491 0 +6 9882 17.314556809491 0 +6 9882 17.314556809491 0 +6 9890 17.314716809491 0 +6 9890 17.314716809491 0 +6 9926 17.324398922703 0 +6 9926 17.324398922703 0 +6 9937 17.324558922703 0 +6 9937 17.324558922703 0 +6 9963 17.331276182573 0 +6 9963 17.331276182573 0 +6 9970 17.331436182573 0 +6 9970 17.331436182573 0 +6 10008 17.357384419138 0 +6 10008 17.357384419138 0 +6 10023 17.357544419138 0 +6 10023 17.357544419138 0 +6 10041 17.39358614821 0 +6 10041 17.39358614821 0 +6 10052 17.39374614821 0 +6 10052 17.39374614821 0 +6 10082 17.443993565736 0 +6 10082 17.443993565736 0 +6 10093 17.444153565736 0 +6 10093 17.444153565736 0 +6 10127 17.614556809491 0 +6 10127 17.614556809491 2 +6 10128 17.614556809491 2 +6 10128 17.614556809491 0 +6 10131 17.614556809491 0 +6 10131 17.614556809491 0 +6 10139 17.614716809491 0 +6 10139 17.614716809491 0 +6 10175 17.624398938357 0 +6 10175 17.624398938357 0 +6 10186 17.624558938357 0 +6 10186 17.624558938357 0 +6 10212 17.631276196794 0 +6 10212 17.631276196794 0 +6 10219 17.631436196794 0 +6 10219 17.631436196794 0 +6 10257 17.657384431773 0 +6 10257 17.657384431773 0 +6 10272 17.657544431773 0 +6 10272 17.657544431773 0 +6 10290 17.69358613177 0 +6 10290 17.69358613177 0 +6 10301 17.69374613177 0 +6 10301 17.69374613177 0 +6 10331 17.743993551191 0 +6 10331 17.743993551191 0 +6 10342 17.744153551191 0 +6 10342 17.744153551191 0 +6 10376 17.914556809491 0 +6 10376 17.914556809491 2 +6 10377 17.914556809491 2 +6 10377 17.914556809491 0 +6 10380 17.914556809491 0 +6 10380 17.914556809491 0 +6 10388 17.914716809491 0 +6 10388 17.914716809491 0 +6 10420 17.924398954 0 +6 10420 17.924398954 0 +6 10431 17.924558954 0 +6 10431 17.924558954 0 +6 10457 17.931276211881 0 +6 10457 17.931276211881 0 +6 10464 17.931436211881 0 +6 10464 17.931436211881 0 +6 10502 17.957384444486 0 +6 10502 17.957384444486 0 +6 10517 17.957544444486 0 +6 10517 17.957544444486 0 +6 10531 17.993586116127 0 +6 10531 17.993586116127 0 +6 10542 17.993746116127 0 +6 10542 17.993746116127 0 +6 10572 18.04399353668 0 +6 10572 18.04399353668 0 +6 10583 18.04415353668 0 +6 10583 18.04415353668 0 +6 10617 18.214556809491 0 +6 10617 18.214556809491 2 +6 10618 18.214556809491 2 +6 10618 18.214556809491 0 +6 10621 18.214556809491 0 +6 10621 18.214556809491 0 +6 10629 18.214716809491 0 +6 10629 18.214716809491 0 +6 10661 18.224398969656 0 +6 10661 18.224398969656 0 +6 10672 18.224558969656 0 +6 10672 18.224558969656 0 +6 10694 18.231276227234 0 +6 10694 18.231276227234 0 +6 10701 18.231436227234 0 +6 10701 18.231436227234 0 +6 10768 18.293586100476 0 +6 10768 18.293586100476 0 +6 10779 18.293746100476 0 +6 10779 18.293746100476 0 +6 10809 18.343993522105 0 +6 10809 18.343993522105 0 +6 10820 18.344153522105 0 +6 10820 18.344153522105 0 +6 10850 18.514556809491 0 +6 10850 18.514556809491 2 +6 10851 18.514556809491 2 +6 10851 18.514556809491 0 +6 10854 18.514556809491 0 +6 10854 18.514556809491 0 +6 10862 18.514716809491 0 +6 10862 18.514716809491 0 +6 10894 18.524398984772 0 +6 10894 18.524398984772 0 +6 10905 18.524558984772 0 +6 10905 18.524558984772 0 +6 10927 18.531276242598 0 +6 10927 18.531276242598 0 +6 10934 18.531436242598 0 +6 10934 18.531436242598 0 +6 11001 18.593586085525 0 +6 11001 18.593586085525 0 +6 11012 18.593746085525 0 +6 11012 18.593746085525 0 +6 11042 18.643993508193 0 +6 11042 18.643993508193 0 +6 11053 18.644153508193 0 +6 11053 18.644153508193 0 +6 11083 18.814556809491 0 +6 11083 18.814556809491 2 +6 11084 18.814556809491 2 +6 11084 18.814556809491 0 +6 11087 18.814556809491 0 +6 11087 18.814556809491 0 +6 11095 18.814716809491 0 +6 11095 18.814716809491 0 +6 11127 18.824398992869 0 +6 11127 18.824398992869 0 +6 11138 18.824558992869 0 +6 11138 18.824558992869 0 +6 11160 18.831276252819 0 +6 11160 18.831276252819 0 +6 11167 18.831436252819 0 +6 11167 18.831436252819 0 +6 11234 18.893586078461 0 +6 11234 18.893586078461 0 +6 11245 18.893746078461 0 +6 11245 18.893746078461 0 +6 11275 18.9439935017 0 +6 11275 18.9439935017 0 +6 11286 18.9441535017 0 +6 11286 18.9441535017 0 +6 11316 19.114556809491 0 +6 11316 19.114556809491 2 +6 11317 19.114556809491 2 +6 11317 19.114556809491 0 +6 11320 19.114556809491 0 +6 11320 19.114556809491 0 +6 11328 19.114716809491 0 +6 11328 19.114716809491 0 +6 11360 19.124398995465 0 +6 11360 19.124398995465 0 +6 11371 19.124558995465 0 +6 11371 19.124558995465 0 +6 11393 19.131276259429 0 +6 11393 19.131276259429 0 +6 11400 19.131436259429 0 +6 11400 19.131436259429 0 +6 11467 19.193586077908 0 +6 11467 19.193586077908 0 +6 11478 19.193746077908 0 +6 11478 19.193746077908 0 +6 11508 19.243993499144 0 +6 11508 19.243993499144 0 +6 11519 19.244153499144 0 +6 11519 19.244153499144 0 +6 11549 19.414556809491 0 +6 11549 19.414556809491 2 +6 11550 19.414556809491 2 +6 11550 19.414556809491 0 +6 11553 19.414556809491 0 +6 11553 19.414556809491 0 +6 11561 19.414716809491 0 +6 11561 19.414716809491 0 +6 11593 19.424398998137 0 +6 11593 19.424398998137 0 +6 11604 19.424558998137 0 +6 11604 19.424558998137 0 +6 11626 19.431276267371 0 +6 11626 19.431276267371 0 +6 11633 19.431436267371 0 +6 11633 19.431436267371 0 +6 11700 19.493586078167 0 +6 11700 19.493586078167 0 +6 11711 19.493746078167 0 +6 11711 19.493746078167 0 +6 11741 19.543993497268 0 +6 11741 19.543993497268 0 +6 11752 19.544153497268 0 +6 11752 19.544153497268 0 +6 11782 19.714556809491 0 +6 11782 19.714556809491 2 +6 11783 19.714556809491 2 +6 11783 19.714556809491 0 +6 11786 19.714556809491 0 +6 11786 19.714556809491 0 +6 11794 19.714716809491 0 +6 11794 19.714716809491 0 +6 11826 19.724399001753 0 +6 11826 19.724399001753 0 +6 11837 19.724559001753 0 +6 11837 19.724559001753 0 +6 11859 19.731276277055 0 +6 11859 19.731276277055 0 +6 11866 19.731436277055 0 +6 11866 19.731436277055 0 +6 11933 19.793586078318 0 +6 11933 19.793586078318 0 +6 11944 19.793746078318 0 +6 11944 19.793746078318 0 +6 11974 19.843993496076 0 +6 11974 19.843993496076 0 +6 11985 19.844153496076 0 +6 11985 19.844153496076 0 +6 12015 20.014556809491 0 +6 12015 20.014556809491 2 +6 12016 20.014556809491 2 +6 12016 20.014556809491 0 +6 12019 20.014556809491 0 +6 12019 20.014556809491 0 +6 12027 20.014716809491 0 +6 12027 20.014716809491 0 +6 12063 20.024399006417 0 +6 12063 20.024399006417 0 +6 12074 20.024559006417 0 +6 12074 20.024559006417 0 +6 12096 20.031276288225 0 +6 12096 20.031276288225 0 +6 12103 20.031436288225 0 +6 12103 20.031436288225 0 +6 12141 20.057384440568 0 +6 12141 20.057384440568 0 +6 12156 20.057544440568 0 +6 12156 20.057544440568 0 +6 12174 20.093586078154 0 +6 12174 20.093586078154 0 +6 12185 20.093746078154 0 +6 12185 20.093746078154 0 +6 12215 20.143993495659 0 +6 12215 20.143993495659 0 +6 12226 20.144153495659 0 +6 12226 20.144153495659 0 +6 12256 20.314556809491 0 +6 12256 20.314556809491 2 +6 12257 20.314556809491 2 +6 12257 20.314556809491 0 +6 12260 20.314556809491 0 +6 12260 20.314556809491 0 +6 12268 20.314716809491 0 +6 12268 20.314716809491 0 +6 12304 20.324399012107 0 +6 12304 20.324399012107 0 +6 12315 20.324559012107 0 +6 12315 20.324559012107 0 +6 12337 20.331276300497 0 +6 12337 20.331276300497 0 +6 12344 20.331436300497 0 +6 12344 20.331436300497 0 +6 12382 20.357384434459 0 +6 12382 20.357384434459 0 +6 12397 20.357544434459 0 +6 12397 20.357544434459 0 +6 12415 20.393586077762 0 +6 12415 20.393586077762 0 +6 12426 20.393746077762 0 +6 12426 20.393746077762 0 +6 12456 20.443993496115 0 +6 12456 20.443993496115 0 +6 12467 20.444153496115 0 +6 12467 20.444153496115 0 +6 12497 20.614556809491 0 +6 12497 20.614556809491 2 +6 12498 20.614556809491 2 +6 12498 20.614556809491 0 +6 12501 20.614556809491 0 +6 12501 20.614556809491 0 +6 12509 20.614716809491 0 +6 12509 20.614716809491 0 +6 12545 20.624399018883 0 +6 12545 20.624399018883 0 +6 12556 20.624559018883 0 +6 12556 20.624559018883 0 +6 12578 20.631276313658 0 +6 12578 20.631276313658 0 +6 12585 20.631436313658 0 +6 12585 20.631436313658 0 +6 12623 20.657384428826 0 +6 12623 20.657384428826 0 +6 12638 20.657544428826 0 +6 12638 20.657544428826 0 +6 12656 20.693586077186 0 +6 12656 20.693586077186 0 +6 12667 20.693746077186 0 +6 12667 20.693746077186 0 +6 12697 20.743993497538 0 +6 12697 20.743993497538 0 +6 12708 20.744153497538 0 +6 12708 20.744153497538 0 +6 12738 20.914556809491 0 +6 12738 20.914556809491 2 +6 12739 20.914556809491 2 +6 12739 20.914556809491 0 +6 12742 20.914556809491 0 +6 12742 20.914556809491 0 +6 12750 20.914716809491 0 +6 12750 20.914716809491 0 +6 12786 20.924399026768 0 +6 12786 20.924399026768 0 +6 12797 20.924559026768 0 +6 12797 20.924559026768 0 +6 12819 20.931276327544 0 +6 12819 20.931276327544 0 +6 12826 20.931436327544 0 +6 12826 20.931436327544 0 +6 12864 20.957384423566 0 +6 12864 20.957384423566 0 +6 12879 20.957544423566 0 +6 12879 20.957544423566 0 +6 12897 20.993586076495 0 +6 12897 20.993586076495 0 +6 12908 20.993746076495 0 +6 12908 20.993746076495 0 +6 12938 21.043993500002 0 +6 12938 21.043993500002 0 +6 12949 21.044153500002 0 +6 12949 21.044153500002 0 +6 12979 21.214556809491 0 +6 12979 21.214556809491 2 +6 12980 21.214556809491 2 +6 12980 21.214556809491 0 +6 12983 21.214556809491 0 +6 12983 21.214556809491 0 +6 12991 21.214716809491 0 +6 12991 21.214716809491 0 +6 13027 21.224399035584 0 +6 13027 21.224399035584 0 +6 13038 21.224559035584 0 +6 13038 21.224559035584 0 +6 13060 21.231276341939 0 +6 13060 21.231276341939 0 +6 13067 21.231436341939 0 +6 13067 21.231436341939 0 +6 13105 21.257384418748 0 +6 13105 21.257384418748 0 +6 13120 21.257544418748 0 +6 13120 21.257544418748 0 +6 13138 21.293586075717 0 +6 13138 21.293586075717 0 +6 13149 21.293746075717 0 +6 13149 21.293746075717 0 +6 13179 21.343993503566 0 +6 13179 21.343993503566 0 +6 13190 21.344153503566 0 +6 13190 21.344153503566 0 +6 13220 21.514556809491 0 +6 13220 21.514556809491 2 +6 13221 21.514556809491 2 +6 13221 21.514556809491 0 +6 13224 21.514556809491 0 +6 13224 21.514556809491 0 +6 13232 21.514716809491 0 +6 13232 21.514716809491 0 +6 13268 21.524399045258 0 +6 13268 21.524399045258 0 +6 13279 21.524559045258 0 +6 13279 21.524559045258 0 +6 13301 21.531276356826 0 +6 13301 21.531276356826 0 +6 13308 21.531436356826 0 +6 13308 21.531436356826 0 +6 13346 21.557384414308 0 +6 13346 21.557384414308 0 +6 13361 21.557544414308 0 +6 13361 21.557544414308 0 +6 13379 21.593586074727 0 +6 13379 21.593586074727 0 +6 13390 21.593746074727 0 +6 13390 21.593746074727 0 +6 13420 21.643993508321 0 +6 13420 21.643993508321 0 +6 13431 21.644153508321 0 +6 13431 21.644153508321 0 +6 13461 21.814556809491 0 +6 13461 21.814556809491 2 +6 13462 21.814556809491 2 +6 13462 21.814556809491 0 +6 13465 21.814556809491 0 +6 13465 21.814556809491 0 +6 13473 21.814716809491 0 +6 13473 21.814716809491 0 +6 13509 21.82439905578 0 +6 13509 21.82439905578 0 +6 13520 21.82455905578 0 +6 13520 21.82455905578 0 +6 13542 21.831276372147 0 +6 13542 21.831276372147 0 +6 13549 21.831436372147 0 +6 13549 21.831436372147 0 +6 13587 21.85738441021 0 +6 13587 21.85738441021 0 +6 13602 21.85754441021 0 +6 13602 21.85754441021 0 +6 13620 21.893586073568 0 +6 13620 21.893586073568 0 +6 13631 21.893746073568 0 +6 13631 21.893746073568 0 +6 13661 21.943993514273 0 +6 13661 21.943993514273 0 +6 13672 21.944153514273 0 +6 13672 21.944153514273 0 +6 13702 22.114556809491 0 +6 13702 22.114556809491 2 +6 13703 22.114556809491 2 +6 13703 22.114556809491 0 +6 13706 22.114556809491 0 +6 13706 22.114556809491 0 +6 13714 22.114716809491 0 +6 13714 22.114716809491 0 +6 13750 22.124399067102 0 +6 13750 22.124399067102 0 +6 13761 22.124559067102 0 +6 13761 22.124559067102 0 +6 13783 22.131276387853 0 +6 13783 22.131276387853 0 +6 13790 22.131436387853 0 +6 13790 22.131436387853 0 +6 13828 22.157384406427 0 +6 13828 22.157384406427 0 +6 13843 22.157544406427 0 +6 13843 22.157544406427 0 +6 13861 22.193586072252 0 +6 13861 22.193586072252 0 +6 13872 22.193746072252 0 +6 13872 22.193746072252 0 +6 13902 22.243993521464 0 +6 13902 22.243993521464 0 +6 13913 22.244153521464 0 +6 13913 22.244153521464 0 +6 13943 22.414556809491 0 +6 13943 22.414556809491 2 +6 13944 22.414556809491 2 +6 13944 22.414556809491 0 +6 13947 22.414556809491 0 +6 13947 22.414556809491 0 +6 13955 22.414716809491 0 +6 13955 22.414716809491 0 +6 13991 22.424399079181 0 +6 13991 22.424399079181 0 +6 14002 22.424559079181 0 +6 14002 22.424559079181 0 +6 14024 22.431276403914 0 +6 14024 22.431276403914 0 +6 14031 22.431436403914 0 +6 14031 22.431436403914 0 +6 14069 22.457384402943 0 +6 14069 22.457384402943 0 +6 14084 22.457544402943 0 +6 14084 22.457544402943 0 +6 14102 22.4935860709 0 +6 14102 22.4935860709 0 +6 14113 22.4937460709 0 +6 14113 22.4937460709 0 +6 14143 22.543993529992 0 +6 14143 22.543993529992 0 +6 14154 22.544153529992 0 +6 14154 22.544153529992 0 +6 14184 22.714556809491 0 +6 14184 22.714556809491 2 +6 14185 22.714556809491 2 +6 14185 22.714556809491 0 +6 14188 22.714556809491 0 +6 14188 22.714556809491 0 +6 14196 22.714716809491 0 +6 14196 22.714716809491 0 +6 14232 22.724399091991 0 +6 14232 22.724399091991 0 +6 14243 22.724559091991 0 +6 14243 22.724559091991 0 +6 14265 22.731276420334 0 +6 14265 22.731276420334 0 +6 14272 22.731436420334 0 +6 14272 22.731436420334 0 +6 14310 22.757384399779 0 +6 14310 22.757384399779 0 +6 14325 22.757544399779 0 +6 14325 22.757544399779 0 +6 14343 22.793586069444 0 +6 14343 22.793586069444 0 +6 14354 22.793746069444 0 +6 14354 22.793746069444 0 +6 14384 22.843993539394 0 +6 14384 22.843993539394 0 +6 14395 22.844153539394 0 +6 14395 22.844153539394 0 +6 14425 23.014556809491 0 +6 14425 23.014556809491 2 +6 14426 23.014556809491 2 +6 14426 23.014556809491 0 +6 14429 23.014556809491 0 +6 14429 23.014556809491 0 +6 14437 23.014716809491 0 +6 14437 23.014716809491 0 +6 14474 23.02439910552 0 +6 14474 23.02439910552 0 +6 14489 23.02455910552 0 +6 14489 23.02455910552 0 +6 14506 23.031276437066 0 +6 14506 23.031276437066 0 +6 14513 23.031436437066 0 +6 14513 23.031436437066 0 +6 14551 23.057384396928 0 +6 14551 23.057384396928 0 +6 14566 23.057544396928 0 +6 14566 23.057544396928 0 +6 14584 23.093586067888 0 +6 14584 23.093586067888 0 +6 14595 23.093746067888 0 +6 14595 23.093746067888 0 +6 14625 23.143993549741 0 +6 14625 23.143993549741 0 +6 14636 23.144153549741 0 +6 14636 23.144153549741 0 +6 14666 23.314556809491 0 +6 14666 23.314556809491 2 +6 14667 23.314556809491 2 +6 14667 23.314556809491 0 +6 14670 23.314556809491 0 +6 14670 23.314556809491 0 +6 14678 23.314716809491 0 +6 14678 23.314716809491 0 +6 14715 23.324399119693 0 +6 14715 23.324399119693 0 +6 14730 23.324559119693 0 +6 14730 23.324559119693 0 +6 14747 23.331276454133 0 +6 14747 23.331276454133 0 +6 14754 23.331436454133 0 +6 14754 23.331436454133 0 +6 14792 23.357384394378 0 +6 14792 23.357384394378 0 +6 14807 23.357544394378 0 +6 14807 23.357544394378 0 +6 14825 23.393586066244 0 +6 14825 23.393586066244 0 +6 14836 23.393746066244 0 +6 14836 23.393746066244 0 +6 14866 23.443993561136 0 +6 14866 23.443993561136 0 +6 14877 23.444153561136 0 +6 14877 23.444153561136 0 +6 14907 23.614556809491 0 +6 14907 23.614556809491 2 +6 14908 23.614556809491 2 +6 14908 23.614556809491 0 +6 14911 23.614556809491 0 +6 14911 23.614556809491 0 +6 14919 23.614716809491 0 +6 14919 23.614716809491 0 +6 14956 23.624399134588 0 +6 14956 23.624399134588 0 +6 14971 23.624559134588 0 +6 14971 23.624559134588 0 +6 14988 23.63127647154 0 +6 14988 23.63127647154 0 +6 14995 23.63143647154 0 +6 14995 23.63143647154 0 +6 15033 23.6573843921 0 +6 15033 23.6573843921 0 +6 15048 23.6575443921 0 +6 15048 23.6575443921 0 +6 15066 23.693586064635 0 +6 15066 23.693586064635 0 +6 15077 23.693746064635 0 +6 15077 23.693746064635 0 +6 15107 23.743993567162 0 +6 15107 23.743993567162 0 +6 15118 23.744153567162 0 +6 15118 23.744153567162 0 +6 15148 23.914556809491 0 +6 15148 23.914556809491 2 +6 15149 23.914556809491 2 +6 15149 23.914556809491 0 +6 15152 23.914556809491 0 +6 15152 23.914556809491 0 +6 15160 23.914716809491 0 +6 15160 23.914716809491 0 +6 15197 23.924399150101 0 +6 15197 23.924399150101 0 +6 15212 23.924559150101 0 +6 15212 23.924559150101 0 +6 15230 23.931276489241 0 +6 15230 23.931276489241 0 +6 15241 23.931436489241 0 +6 15241 23.931436489241 0 +6 15274 23.957384390086 0 +6 15274 23.957384390086 0 +6 15289 23.957544390086 0 +6 15289 23.957544390086 0 +6 15307 23.993586063012 0 +6 15307 23.993586063012 0 +6 15318 23.993746063012 0 +6 15318 23.993746063012 0 +6 15348 24.043993568182 0 +6 15348 24.043993568182 0 +6 15359 24.044153568182 0 +6 15359 24.044153568182 0 +6 15389 24.214556809491 0 +6 15389 24.214556809491 2 +6 15390 24.214556809491 2 +6 15390 24.214556809491 0 +6 15393 24.214556809491 0 +6 15393 24.214556809491 0 +6 15401 24.214716809491 0 +6 15401 24.214716809491 0 +6 15438 24.224399166253 0 +6 15438 24.224399166253 0 +6 15453 24.224559166253 0 +6 15453 24.224559166253 0 +6 15471 24.231276507166 0 +6 15471 24.231276507166 0 +6 15482 24.231436507166 0 +6 15482 24.231436507166 0 +6 15514 24.257384388316 0 +6 15514 24.257384388316 0 +6 15525 24.257544388316 0 +6 15525 24.257544388316 0 +6 15548 24.293586061339 0 +6 15548 24.293586061339 0 +6 15559 24.293746061339 0 +6 15559 24.293746061339 0 +6 15589 24.343993571496 0 +6 15589 24.343993571496 0 +6 15600 24.344153571496 0 +6 15600 24.344153571496 0 +6 15630 24.514556809491 0 +6 15630 24.514556809491 2 +6 15631 24.514556809491 2 +6 15631 24.514556809491 0 +6 15634 24.514556809491 0 +6 15634 24.514556809491 0 +6 15642 24.514716809491 0 +6 15642 24.514716809491 0 +6 15679 24.524399183101 0 +6 15679 24.524399183101 0 +6 15694 24.524559183101 0 +6 15694 24.524559183101 0 +6 15712 24.531276525482 0 +6 15712 24.531276525482 0 +6 15723 24.531436525482 0 +6 15723 24.531436525482 0 +6 15755 24.557384386729 0 +6 15755 24.557384386729 0 +6 15766 24.557544386729 0 +6 15766 24.557544386729 0 +6 15789 24.593586059807 0 +6 15789 24.593586059807 0 +6 15800 24.593746059807 0 +6 15800 24.593746059807 0 +6 15830 24.6439935745 0 +6 15830 24.6439935745 0 +6 15841 24.6441535745 0 +6 15841 24.6441535745 0 +6 15871 24.814556809491 0 +6 15871 24.814556809491 2 +6 15872 24.814556809491 2 +6 15872 24.814556809491 0 +6 15875 24.814556809491 0 +6 15875 24.814556809491 0 +6 15883 24.814716809491 0 +6 15883 24.814716809491 0 +6 15920 24.824399200464 0 +6 15920 24.824399200464 0 +6 15935 24.824559200464 0 +6 15935 24.824559200464 0 +6 15953 24.831276544164 0 +6 15953 24.831276544164 0 +6 15964 24.831436544164 0 +6 15964 24.831436544164 0 +6 15996 24.857384385359 0 +6 15996 24.857384385359 0 +6 16007 24.857544385359 0 +6 16007 24.857544385359 0 +6 16030 24.893586058439 0 +6 16030 24.893586058439 0 +6 16041 24.893746058439 0 +6 16041 24.893746058439 0 +6 16071 24.943993577203 0 +6 16071 24.943993577203 0 +6 16082 24.944153577203 0 +6 16082 24.944153577203 0 +6 16112 25.114556809491 0 +6 16112 25.114556809491 2 +6 16113 25.114556809491 2 +6 16113 25.114556809491 0 +6 16116 25.114556809491 0 +6 16116 25.114556809491 0 +6 16124 25.114716809491 0 +6 16124 25.114716809491 0 +6 16161 25.12439921797 0 +6 16161 25.12439921797 0 +6 16176 25.12455921797 0 +6 16176 25.12455921797 0 +6 16194 25.131276563184 0 +6 16194 25.131276563184 0 +6 16205 25.131436563184 0 +6 16205 25.131436563184 0 +6 16237 25.157384384197 0 +6 16237 25.157384384197 0 +6 16248 25.157544384197 0 +6 16248 25.157544384197 0 +6 16271 25.193586057203 0 +6 16271 25.193586057203 0 +6 16282 25.193746057203 0 +6 16282 25.193746057203 0 +6 16312 25.24399357959 0 +6 16312 25.24399357959 0 +6 16323 25.24415357959 0 +6 16323 25.24415357959 0 +6 16353 25.414556809491 0 +6 16353 25.414556809491 2 +6 16354 25.414556809491 2 +6 16354 25.414556809491 0 +6 16357 25.414556809491 0 +6 16357 25.414556809491 0 +6 16365 25.414716809491 0 +6 16365 25.414716809491 0 +6 16402 25.424399235494 0 +6 16402 25.424399235494 0 +6 16417 25.424559235494 0 +6 16417 25.424559235494 0 +6 16435 25.431276582461 0 +6 16435 25.431276582461 0 +6 16446 25.431436582461 0 +6 16446 25.431436582461 0 +6 16478 25.457384383218 0 +6 16478 25.457384383218 0 +6 16489 25.457544383218 0 +6 16489 25.457544383218 0 +6 16512 25.493586056133 0 +6 16512 25.493586056133 0 +6 16523 25.493746056133 0 +6 16523 25.493746056133 0 +6 16553 25.543993581628 0 +6 16553 25.543993581628 0 +6 16564 25.544153581628 0 +6 16564 25.544153581628 0 +6 16594 25.714556809491 0 +6 16594 25.714556809491 2 +6 16595 25.714556809491 2 +6 16595 25.714556809491 0 +6 16598 25.714556809491 0 +6 16598 25.714556809491 0 +6 16606 25.714716809491 0 +6 16606 25.714716809491 0 +6 16643 25.72439925309 0 +6 16643 25.72439925309 0 +6 16658 25.72455925309 0 +6 16658 25.72455925309 0 +6 16676 25.731276602139 0 +6 16676 25.731276602139 0 +6 16687 25.731436602139 0 +6 16687 25.731436602139 0 +6 16719 25.757384382378 0 +6 16719 25.757384382378 0 +6 16730 25.757544382378 0 +6 16730 25.757544382378 0 +6 16753 25.793586055358 0 +6 16753 25.793586055358 0 +6 16764 25.793746055358 0 +6 16764 25.793746055358 0 +6 16794 25.843993583304 0 +6 16794 25.843993583304 0 +6 16805 25.844153583304 0 +6 16805 25.844153583304 0 +6 16835 26.014556809491 0 +6 16835 26.014556809491 2 +6 16836 26.014556809491 2 +6 16836 26.014556809491 0 +6 16839 26.014556809491 0 +6 16839 26.014556809491 0 +6 16847 26.014716809491 0 +6 16847 26.014716809491 0 +6 16884 26.02439927079 0 +6 16884 26.02439927079 0 +6 16899 26.02455927079 0 +6 16899 26.02455927079 0 +6 16917 26.031276621424 0 +6 16917 26.031276621424 0 +6 16928 26.031436621424 0 +6 16928 26.031436621424 0 +6 16960 26.057384381741 0 +6 16960 26.057384381741 0 +6 16971 26.057544381741 0 +6 16971 26.057544381741 0 +6 16994 26.093586054815 0 +6 16994 26.093586054815 0 +6 17005 26.093746054815 0 +6 17005 26.093746054815 0 +6 17035 26.143993584607 0 +6 17035 26.143993584607 0 +6 17046 26.144153584607 0 +6 17046 26.144153584607 0 +6 17076 26.314556809491 0 +6 17076 26.314556809491 2 +6 17077 26.314556809491 2 +6 17077 26.314556809491 0 +6 17080 26.314556809491 0 +6 17080 26.314556809491 0 +6 17088 26.314716809491 0 +6 17088 26.314716809491 0 +6 17125 26.324399288461 0 +6 17125 26.324399288461 0 +6 17140 26.324559288461 0 +6 17140 26.324559288461 0 +6 17158 26.331276639945 0 +6 17158 26.331276639945 0 +6 17169 26.331436639945 0 +6 17169 26.331436639945 0 +6 17201 26.357384381246 0 +6 17201 26.357384381246 0 +6 17212 26.357544381246 0 +6 17212 26.357544381246 0 +6 17235 26.393586054911 0 +6 17235 26.393586054911 0 +6 17246 26.393746054911 0 +6 17246 26.393746054911 0 +6 17276 26.443993585474 0 +6 17276 26.443993585474 0 +6 17287 26.444153585474 0 +6 17287 26.444153585474 0 +6 17317 26.614556809491 0 +6 17317 26.614556809491 2 +6 17318 26.614556809491 2 +6 17318 26.614556809491 0 +6 17321 26.614556809491 0 +6 17321 26.614556809491 0 +6 17329 26.614716809491 0 +6 17329 26.614716809491 0 +6 17366 26.624399306213 0 +6 17366 26.624399306213 0 +6 17381 26.624559306213 0 +6 17381 26.624559306213 0 +6 17399 26.631276657697 0 +6 17399 26.631276657697 0 +6 17410 26.631436657697 0 +6 17410 26.631436657697 0 +6 17442 26.657384380772 0 +6 17442 26.657384380772 0 +6 17453 26.657544380772 0 +6 17453 26.657544380772 0 +6 17476 26.693586055774 0 +6 17476 26.693586055774 0 +6 17487 26.693746055774 0 +6 17487 26.693746055774 0 +6 17517 26.743993585917 0 +6 17517 26.743993585917 0 +6 17528 26.744153585917 0 +6 17528 26.744153585917 0 +6 17558 26.914556809491 0 +6 17558 26.914556809491 2 +6 17559 26.914556809491 2 +6 17559 26.914556809491 0 +6 17562 26.914556809491 0 +6 17562 26.914556809491 0 +6 17570 26.914716809491 0 +6 17570 26.914716809491 0 +6 17607 26.924399324013 0 +6 17607 26.924399324013 0 +6 17622 26.924559324013 0 +6 17622 26.924559324013 0 +6 17640 26.931276674713 0 +6 17640 26.931276674713 0 +6 17651 26.931436674713 0 +6 17651 26.931436674713 0 +6 17683 26.957384380173 0 +6 17683 26.957384380173 0 +6 17694 26.957544380173 0 +6 17694 26.957544380173 0 +6 17717 26.993586057387 0 +6 17717 26.993586057387 0 +6 17728 26.993746057387 0 +6 17728 26.993746057387 0 +6 17758 27.043993586021 0 +6 17758 27.043993586021 0 +6 17769 27.044153586021 0 +6 17769 27.044153586021 0 +6 17799 27.214556809491 0 +6 17799 27.214556809491 2 +6 17800 27.214556809491 2 +6 17800 27.214556809491 0 +6 17803 27.214556809491 0 +6 17803 27.214556809491 0 +6 17811 27.214716809491 0 +6 17811 27.214716809491 0 +6 17844 27.224399341349 0 +6 17844 27.224399341349 0 +6 17859 27.224559341349 0 +6 17859 27.224559341349 0 +6 17873 27.231276690939 0 +6 17873 27.231276690939 0 +6 17884 27.231436690939 0 +6 17884 27.231436690939 0 +6 17916 27.257384379228 0 +6 17916 27.257384379228 0 +6 17927 27.257544379228 0 +6 17927 27.257544379228 0 +6 17950 27.293586059723 0 +6 17950 27.293586059723 0 +6 17961 27.293746059723 0 +6 17961 27.293746059723 0 +6 17991 27.343993585835 0 +6 17991 27.343993585835 0 +6 18002 27.344153585835 0 +6 18002 27.344153585835 0 +6 18032 27.514556809491 0 +6 18032 27.514556809491 2 +6 18033 27.514556809491 2 +6 18033 27.514556809491 0 +6 18036 27.514556809491 0 +6 18036 27.514556809491 0 +6 18044 27.514716809491 0 +6 18044 27.514716809491 0 +6 18106 27.531276706855 0 +6 18106 27.531276706855 0 +6 18117 27.531436706855 0 +6 18117 27.531436706855 0 +6 18149 27.557384377938 0 +6 18149 27.557384377938 0 +6 18160 27.557544377938 0 +6 18160 27.557544377938 0 +6 18183 27.593586062815 0 +6 18183 27.593586062815 0 +6 18194 27.593746062815 0 +6 18194 27.593746062815 0 +6 18224 27.643993585638 0 +6 18224 27.643993585638 0 +6 18235 27.644153585638 0 +6 18235 27.644153585638 0 +6 18265 27.814556809491 0 +6 18265 27.814556809491 2 +6 18266 27.814556809491 2 +6 18266 27.814556809491 0 +6 18269 27.814556809491 0 +6 18269 27.814556809491 0 +6 18277 27.814716809491 0 +6 18277 27.814716809491 0 +6 18339 27.831276720086 0 +6 18339 27.831276720086 0 +6 18350 27.831436720086 0 +6 18350 27.831436720086 0 +6 18382 27.857384376349 0 +6 18382 27.857384376349 0 +6 18393 27.857544376349 0 +6 18393 27.857544376349 0 +6 18416 27.893586066606 0 +6 18416 27.893586066606 0 +6 18427 27.893746066606 0 +6 18427 27.893746066606 0 +6 18457 27.943993585413 0 +6 18457 27.943993585413 0 +6 18468 27.944153585413 0 +6 18468 27.944153585413 0 +6 18498 28.114556809491 0 +6 18498 28.114556809491 2 +6 18499 28.114556809491 2 +6 18499 28.114556809491 0 +6 18502 28.114556809491 0 +6 18502 28.114556809491 0 +6 18510 28.114716809491 0 +6 18510 28.114716809491 0 +6 18572 28.13127672571 0 +6 18572 28.13127672571 0 +6 18583 28.13143672571 0 +6 18583 28.13143672571 0 +6 18615 28.157384373989 0 +6 18615 28.157384373989 0 +6 18626 28.157544373989 0 +6 18626 28.157544373989 0 +6 18649 28.193586071088 0 +6 18649 28.193586071088 0 +6 18660 28.193746071088 0 +6 18660 28.193746071088 0 +6 18690 28.243993585227 0 +6 18690 28.243993585227 0 +6 18701 28.244153585227 0 +6 18701 28.244153585227 0 +6 18731 28.414556809491 0 +6 18731 28.414556809491 2 +6 18732 28.414556809491 2 +6 18732 28.414556809491 0 +6 18735 28.414556809491 0 +6 18735 28.414556809491 0 +6 18743 28.414716809491 0 +6 18743 28.414716809491 0 +6 18805 28.431276732587 0 +6 18805 28.431276732587 0 +6 18816 28.431436732587 0 +6 18816 28.431436732587 0 +6 18848 28.457384371101 0 +6 18848 28.457384371101 0 +6 18859 28.457544371101 0 +6 18859 28.457544371101 0 +6 18882 28.493586076328 0 +6 18882 28.493586076328 0 +6 18893 28.493746076328 0 +6 18893 28.493746076328 0 +6 18923 28.543993585019 0 +6 18923 28.543993585019 0 +6 18934 28.544153585019 0 +6 18934 28.544153585019 0 +6 18964 28.714556809491 0 +6 18964 28.714556809491 2 +6 18965 28.714556809491 2 +6 18965 28.714556809491 0 +6 18968 28.714556809491 0 +6 18968 28.714556809491 0 +6 18976 28.714716809491 0 +6 18976 28.714716809491 0 +6 19039 28.731276740327 0 +6 19039 28.731276740327 0 +6 19054 28.731436740327 0 +6 19054 28.731436740327 0 +6 19081 28.75738436664 0 +6 19081 28.75738436664 0 +6 19092 28.75754436664 0 +6 19092 28.75754436664 0 +6 19116 28.793586082194 0 +6 19116 28.793586082194 0 +6 19131 28.793746082194 0 +6 19131 28.793746082194 0 +6 19156 28.843993584814 0 +6 19156 28.843993584814 0 +6 19167 28.844153584814 0 +6 19167 28.844153584814 0 +6 19197 29.014556809491 0 +6 19197 29.014556809491 2 +6 19198 29.014556809491 2 +6 19198 29.014556809491 0 +6 19201 29.014556809491 0 +6 19201 29.014556809491 0 +6 19209 29.014716809491 0 +6 19209 29.014716809491 0 +6 19272 29.031276748231 0 +6 19272 29.031276748231 0 +6 19287 29.031436748231 0 +6 19287 29.031436748231 0 +6 19310 29.057384360134 0 +6 19310 29.057384360134 0 +6 19321 29.057544360134 0 +6 19321 29.057544360134 0 +6 19341 29.093586088751 0 +6 19341 29.093586088751 0 +6 19356 29.093746088751 0 +6 19356 29.093746088751 0 +6 19381 29.143993584619 0 +6 19381 29.143993584619 0 +6 19392 29.144153584619 0 +6 19392 29.144153584619 0 +6 19422 29.314556809491 0 +6 19422 29.314556809491 2 +6 19423 29.314556809491 2 +6 19423 29.314556809491 0 +6 19426 29.314556809491 0 +6 19426 29.314556809491 0 +6 19434 29.314716809491 0 +6 19434 29.314716809491 0 +6 19497 29.331276756353 0 +6 19497 29.331276756353 0 +6 19512 29.331436756353 0 +6 19512 29.331436756353 0 +6 19534 29.357384350663 0 +6 19534 29.357384350663 0 +6 19541 29.357544350663 0 +6 19541 29.357544350663 0 +6 19566 29.393586095971 0 +6 19566 29.393586095971 0 +6 19581 29.393746095971 0 +6 19581 29.393746095971 0 +6 19606 29.443993584404 0 +6 19606 29.443993584404 0 +6 19617 29.444153584404 0 +6 19617 29.444153584404 0 +6 19647 29.614556809491 0 +6 19647 29.614556809491 2 +6 19648 29.614556809491 2 +6 19648 29.614556809491 0 +6 19651 29.614556809491 0 +6 19651 29.614556809491 0 +6 19659 29.614716809491 0 +6 19659 29.614716809491 0 +6 19722 29.631276764677 0 +6 19722 29.631276764677 0 +6 19737 29.631436764677 0 +6 19737 29.631436764677 0 +6 19759 29.657384339017 0 +6 19759 29.657384339017 0 +6 19766 29.657544339017 0 +6 19766 29.657544339017 0 +6 19791 29.693586103788 0 +6 19791 29.693586103788 0 +6 19806 29.693746103788 0 +6 19806 29.693746103788 0 +6 19831 29.743993584219 0 +6 19831 29.743993584219 0 +6 19842 29.744153584219 0 +6 19842 29.744153584219 0 +6 19872 29.914556809491 0 +6 19872 29.914556809491 2 +6 19873 29.914556809491 2 +6 19873 29.914556809491 0 +6 19876 29.914556809491 0 +6 19876 29.914556809491 0 +6 19884 29.914716809491 0 +6 19884 29.914716809491 0 +6 19947 29.931276773214 0 +6 19947 29.931276773214 0 +6 19962 29.931436773214 0 +6 19962 29.931436773214 0 +6 19984 29.957384326873 0 +6 19984 29.957384326873 0 +6 19991 29.957544326873 0 +6 19991 29.957544326873 0 +6 20016 29.993586112191 0 +6 20016 29.993586112191 0 +6 20031 29.993746112191 0 +6 20031 29.993746112191 0 +6 20056 30.043993584023 0 +6 20056 30.043993584023 0 +6 20067 30.044153584023 0 +6 20067 30.044153584023 0 +6 20097 30.214556809491 0 +6 20097 30.214556809491 2 +6 20098 30.214556809491 2 +6 20098 30.214556809491 0 +6 20101 30.214556809491 0 +6 20101 30.214556809491 0 +6 20109 30.214716809491 0 +6 20109 30.214716809491 0 +6 20172 30.231276781919 0 +6 20172 30.231276781919 0 +6 20187 30.231436781919 0 +6 20187 30.231436781919 0 +6 20209 30.257384314288 0 +6 20209 30.257384314288 0 +6 20216 30.257544314288 0 +6 20216 30.257544314288 0 +6 20241 30.293586121137 0 +6 20241 30.293586121137 0 +6 20256 30.293746121137 0 +6 20256 30.293746121137 0 +6 20281 30.343993583815 0 +6 20281 30.343993583815 0 +6 20292 30.344153583815 0 +6 20292 30.344153583815 0 +6 20322 30.514556809491 0 +6 20322 30.514556809491 2 +6 20323 30.514556809491 2 +6 20323 30.514556809491 0 +6 20326 30.514556809491 0 +6 20326 30.514556809491 0 +6 20334 30.514716809491 0 +6 20334 30.514716809491 0 +6 20397 30.531276790863 0 +6 20397 30.531276790863 0 +6 20412 30.531436790863 0 +6 20412 30.531436790863 0 +6 20434 30.557384301358 0 +6 20434 30.557384301358 0 +6 20441 30.557544301358 0 +6 20441 30.557544301358 0 +6 20466 30.593586130599 0 +6 20466 30.593586130599 0 +6 20481 30.593746130599 0 +6 20481 30.593746130599 0 +6 20506 30.643993583594 0 +6 20506 30.643993583594 0 +6 20517 30.644153583594 0 +6 20517 30.644153583594 0 +6 20547 30.814556809491 0 +6 20547 30.814556809491 2 +6 20548 30.814556809491 2 +6 20548 30.814556809491 0 +6 20551 30.814556809491 0 +6 20551 30.814556809491 0 +6 20559 30.814716809491 0 +6 20559 30.814716809491 0 +6 20623 30.831276800084 0 +6 20623 30.831276800084 0 +6 20642 30.831436800084 0 +6 20642 30.831436800084 0 +6 20659 30.857384288203 0 +6 20659 30.857384288203 0 +6 20666 30.857544288203 0 +6 20666 30.857544288203 0 +6 20691 30.893586140579 0 +6 20691 30.893586140579 0 +6 20706 30.893746140579 0 +6 20706 30.893746140579 0 +6 20731 30.943993583376 0 +6 20731 30.943993583376 0 +6 20742 30.944153583376 0 +6 20742 30.944153583376 0 +6 20772 31.114556809491 0 +6 20772 31.114556809491 2 +6 20773 31.114556809491 2 +6 20773 31.114556809491 0 +6 20776 31.114556809491 0 +6 20776 31.114556809491 0 +6 20784 31.114716809491 0 +6 20784 31.114716809491 0 +6 20852 31.131276809733 0 +6 20852 31.131276809733 0 +6 20871 31.131436809733 0 +6 20871 31.131436809733 0 +6 20888 31.157384274763 0 +6 20888 31.157384274763 0 +6 20895 31.157544274763 0 +6 20895 31.157544274763 0 +6 20920 31.193586151091 0 +6 20920 31.193586151091 0 +6 20935 31.193746151091 0 +6 20935 31.193746151091 0 +6 20964 31.243993583185 0 +6 20964 31.243993583185 0 +6 20975 31.244153583185 0 +6 20975 31.244153583185 0 +6 21005 31.414556809491 0 +6 21005 31.414556809491 2 +6 21006 31.414556809491 2 +6 21006 31.414556809491 0 +6 21009 31.414556809491 0 +6 21009 31.414556809491 0 +6 21017 31.414716809491 0 +6 21017 31.414716809491 0 +6 21085 31.43127681984 0 +6 21085 31.43127681984 0 +6 21104 31.43143681984 0 +6 21104 31.43143681984 0 +6 21121 31.45738426113 0 +6 21121 31.45738426113 0 +6 21128 31.45754426113 0 +6 21128 31.45754426113 0 +6 21153 31.493586162045 0 +6 21153 31.493586162045 0 +6 21168 31.493746162045 0 +6 21168 31.493746162045 0 +6 21197 31.543993582999 0 +6 21197 31.543993582999 0 +6 21208 31.544153582999 0 +6 21208 31.544153582999 0 +6 21238 31.714556809491 0 +6 21238 31.714556809491 2 +6 21239 31.714556809491 2 +6 21239 31.714556809491 0 +6 21242 31.714556809491 0 +6 21242 31.714556809491 0 +6 21250 31.714716809491 0 +6 21250 31.714716809491 0 +6 21318 31.73127683044 0 +6 21318 31.73127683044 0 +6 21337 31.73143683044 0 +6 21337 31.73143683044 0 +6 21354 31.757384247459 0 +6 21354 31.757384247459 0 +6 21361 31.757544247459 0 +6 21361 31.757544247459 0 +6 21386 31.793586173478 0 +6 21386 31.793586173478 0 +6 21401 31.793746173478 0 +6 21401 31.793746173478 0 +6 21429 31.843993582814 0 +6 21429 31.843993582814 0 +6 21436 31.844153582814 0 +6 21436 31.844153582814 0 +6 21471 32.014556809491 0 +6 21471 32.014556809491 2 +6 21472 32.014556809491 2 +6 21472 32.014556809491 0 +6 21475 32.014556809491 0 +6 21475 32.014556809491 0 +6 21483 32.014716809491 0 +6 21483 32.014716809491 0 +6 21551 32.031276841444 0 +6 21551 32.031276841444 0 +6 21570 32.031436841444 0 +6 21570 32.031436841444 0 +6 21587 32.057384234163 0 +6 21587 32.057384234163 0 +6 21594 32.057544234163 0 +6 21594 32.057544234163 0 +6 21620 32.093586185302 0 +6 21620 32.093586185302 0 +6 21639 32.093746185302 0 +6 21639 32.093746185302 0 +6 21662 32.143993582627 0 +6 21662 32.143993582627 0 +6 21669 32.144153582627 0 +6 21669 32.144153582627 0 +6 21704 32.314556809491 0 +6 21704 32.314556809491 2 +6 21705 32.314556809491 2 +6 21705 32.314556809491 0 +6 21708 32.314556809491 0 +6 21708 32.314556809491 0 +6 21716 32.314716809491 0 +6 21716 32.314716809491 0 +6 21784 32.331276852904 0 +6 21784 32.331276852904 0 +6 21803 32.331436852904 0 +6 21803 32.331436852904 0 +6 21820 32.357384221209 0 +6 21820 32.357384221209 0 +6 21827 32.357544221209 0 +6 21827 32.357544221209 0 +6 21853 32.393586197538 0 +6 21853 32.393586197538 0 +6 21872 32.393746197538 0 +6 21872 32.393746197538 0 +6 21895 32.44399358243 0 +6 21895 32.44399358243 0 +6 21902 32.44415358243 0 +6 21902 32.44415358243 0 +6 21937 32.614556809491 0 +6 21937 32.614556809491 2 +6 21938 32.614556809491 2 +6 21938 32.614556809491 0 +6 21941 32.614556809491 0 +6 21941 32.614556809491 0 +6 21949 32.614716809491 0 +6 21949 32.614716809491 0 +6 22017 32.631276864721 0 +6 22017 32.631276864721 0 +6 22036 32.631436864721 0 +6 22036 32.631436864721 0 +6 22053 32.657384208687 0 +6 22053 32.657384208687 0 +6 22060 32.657544208687 0 +6 22060 32.657544208687 0 +6 22086 32.693586210128 0 +6 22086 32.693586210128 0 +6 22105 32.693746210128 0 +6 22105 32.693746210128 0 +6 22128 32.743993582216 0 +6 22128 32.743993582216 0 +6 22135 32.744153582216 0 +6 22135 32.744153582216 0 +6 22170 32.914556809491 0 +6 22170 32.914556809491 2 +6 22171 32.914556809491 2 +6 22171 32.914556809491 0 +6 22174 32.914556809491 0 +6 22174 32.914556809491 0 +6 22182 32.914716809491 0 +6 22182 32.914716809491 0 +6 22250 32.931276876958 0 +6 22250 32.931276876958 0 +6 22269 32.931436876958 0 +6 22269 32.931436876958 0 +6 22286 32.957384196619 0 +6 22286 32.957384196619 0 +6 22293 32.957544196619 0 +6 22293 32.957544196619 0 +6 22319 32.993586223119 0 +6 22319 32.993586223119 0 +6 22338 32.993746223119 0 +6 22338 32.993746223119 0 +6 22361 33.043993582014 0 +6 22361 33.043993582014 0 +6 22368 33.044153582014 0 +6 22368 33.044153582014 0 +6 22403 33.214556809491 0 +6 22403 33.214556809491 2 +6 22404 33.214556809491 2 +6 22404 33.214556809491 0 +6 22407 33.214556809491 0 +6 22407 33.214556809491 0 +6 22415 33.214716809491 0 +6 22415 33.214716809491 0 +6 22483 33.231276889508 0 +6 22483 33.231276889508 0 +6 22502 33.231436889508 0 +6 22502 33.231436889508 0 +6 22519 33.25738418501 0 +6 22519 33.25738418501 0 +6 22526 33.25754418501 0 +6 22526 33.25754418501 0 +6 22552 33.293586236404 0 +6 22552 33.293586236404 0 +6 22571 33.293746236404 0 +6 22571 33.293746236404 0 +6 22594 33.34399358181 0 +6 22594 33.34399358181 0 +6 22601 33.34415358181 0 +6 22601 33.34415358181 0 +6 22636 33.514556809491 0 +6 22636 33.514556809491 2 +6 22637 33.514556809491 2 +6 22637 33.514556809491 0 +6 22640 33.514556809491 0 +6 22640 33.514556809491 0 +6 22648 33.514716809491 0 +6 22648 33.514716809491 0 +6 22716 33.531276902417 0 +6 22716 33.531276902417 0 +6 22735 33.531436902417 0 +6 22735 33.531436902417 0 +6 22752 33.557384173944 0 +6 22752 33.557384173944 0 +6 22759 33.557544173944 0 +6 22759 33.557544173944 0 +6 22785 33.593586250026 0 +6 22785 33.593586250026 0 +6 22804 33.593746250026 0 +6 22804 33.593746250026 0 +6 22827 33.643993581593 0 +6 22827 33.643993581593 0 +6 22834 33.644153581593 0 +6 22834 33.644153581593 0 +6 22869 33.814556809491 0 +6 22869 33.814556809491 2 +6 22870 33.814556809491 2 +6 22870 33.814556809491 0 +6 22873 33.814556809491 0 +6 22873 33.814556809491 0 +6 22881 33.814716809491 0 +6 22881 33.814716809491 0 +6 22945 33.831276915646 0 +6 22945 33.831276915646 0 +6 22964 33.831436915646 0 +6 22964 33.831436915646 0 +6 22981 33.857384163418 0 +6 22981 33.857384163418 0 +6 22988 33.857544163418 0 +6 22988 33.857544163418 0 +6 23051 33.943993581377 0 +6 23051 33.943993581377 0 +6 23057 33.944153581377 0 +6 23057 33.944153581377 0 +6 23085 34.114556809491 0 +6 23085 34.114556809491 2 +6 23086 34.114556809491 2 +6 23086 34.114556809491 0 +6 23089 34.114556809491 0 +6 23089 34.114556809491 0 +6 23096 34.114716809491 0 +6 23096 34.114716809491 0 +6 23175 34.157384153508 0 +6 23175 34.157384153508 0 +6 23181 34.157544153508 0 +6 23181 34.157544153508 0 +6 23209 34.243993581155 0 +6 23209 34.243993581155 0 +6 23215 34.244153581155 0 +6 23215 34.244153581155 0 +6 23243 34.414556809491 0 +6 23243 34.414556809491 2 +6 23244 34.414556809491 2 +6 23244 34.414556809491 0 +6 23247 34.414556809491 0 +6 23247 34.414556809491 0 +6 23254 34.414716809491 0 +6 23254 34.414716809491 0 +6 23333 34.457384144204 0 +6 23333 34.457384144204 0 +6 23339 34.457544144204 0 +6 23339 34.457544144204 0 +6 23367 34.543993580981 0 +6 23367 34.543993580981 0 +6 23373 34.544153580981 0 +6 23373 34.544153580981 0 +6 23401 34.714556809491 0 +6 23401 34.714556809491 2 +6 23402 34.714556809491 2 +6 23402 34.714556809491 0 +6 23405 34.714556809491 0 +6 23405 34.714556809491 0 +6 23412 34.714716809491 0 +6 23412 34.714716809491 0 +6 23491 34.75738413555 0 +6 23491 34.75738413555 0 +6 23497 34.75754413555 0 +6 23497 34.75754413555 0 +6 23525 34.843993580776 0 +6 23525 34.843993580776 0 +6 23531 34.844153580776 0 +6 23531 34.844153580776 0 +6 23559 35.014556809491 0 +6 23559 35.014556809491 2 +6 23560 35.014556809491 2 +6 23560 35.014556809491 0 +6 23563 35.014556809491 0 +6 23563 35.014556809491 0 +6 23570 35.014716809491 0 +6 23570 35.014716809491 0 +6 23649 35.057384127604 0 +6 23649 35.057384127604 0 +6 23655 35.057544127604 0 +6 23655 35.057544127604 0 +6 23683 35.143993580566 0 +6 23683 35.143993580566 0 +6 23689 35.144153580566 0 +6 23689 35.144153580566 0 +6 23721 35.314556809491 0 +6 23721 35.314556809491 2 +6 23722 35.314556809491 2 +6 23722 35.314556809491 0 +6 23725 35.314556809491 0 +6 23725 35.314556809491 0 +6 23732 35.314716809491 0 +6 23732 35.314716809491 0 +6 23811 35.357384120761 0 +6 23811 35.357384120761 0 +6 23817 35.357544120761 0 +6 23817 35.357544120761 0 +6 23849 35.443993580357 0 +6 23849 35.443993580357 0 +6 23855 35.444153580357 0 +6 23855 35.444153580357 0 +6 23887 35.614556809491 0 +6 23887 35.614556809491 2 +6 23888 35.614556809491 2 +6 23888 35.614556809491 0 +6 23891 35.614556809491 0 +6 23891 35.614556809491 0 +6 23898 35.614716809491 0 +6 23898 35.614716809491 0 +6 23977 35.657384115863 0 +6 23977 35.657384115863 0 +6 23983 35.657544115863 0 +6 23983 35.657544115863 0 +6 24015 35.743993580181 0 +6 24015 35.743993580181 0 +6 24021 35.744153580181 0 +6 24021 35.744153580181 0 +6 24053 35.914556809491 0 +6 24053 35.914556809491 2 +6 24054 35.914556809491 2 +6 24054 35.914556809491 0 +6 24057 35.914556809491 0 +6 24057 35.914556809491 0 +6 24064 35.914716809491 0 +6 24064 35.914716809491 0 +6 24143 35.957384112909 0 +6 24143 35.957384112909 0 +6 24149 35.957544112909 0 +6 24149 35.957544112909 0 +6 24181 36.043993579975 0 +6 24181 36.043993579975 0 +6 24187 36.044153579975 0 +6 24187 36.044153579975 0 +6 24219 36.214556809491 0 +6 24219 36.214556809491 2 +6 24220 36.214556809491 2 +6 24220 36.214556809491 0 +6 24223 36.214556809491 0 +6 24223 36.214556809491 0 +6 24230 36.214716809491 0 +6 24230 36.214716809491 0 +6 24309 36.257384111896 0 +6 24309 36.257384111896 0 +6 24315 36.257544111896 0 +6 24315 36.257544111896 0 +6 24347 36.343993579779 0 +6 24347 36.343993579779 0 +6 24353 36.344153579779 0 +6 24353 36.344153579779 0 +6 24385 36.514556809491 0 +6 24385 36.514556809491 2 +6 24386 36.514556809491 2 +6 24386 36.514556809491 0 +6 24389 36.514556809491 0 +6 24389 36.514556809491 0 +6 24396 36.514716809491 0 +6 24396 36.514716809491 0 +6 24475 36.557384112695 0 +6 24475 36.557384112695 0 +6 24481 36.557544112695 0 +6 24481 36.557544112695 0 +6 24513 36.64399357959 0 +6 24513 36.64399357959 0 +6 24519 36.64415357959 0 +6 24519 36.64415357959 0 +6 24551 36.814556809491 0 +6 24551 36.814556809491 2 +6 24552 36.814556809491 2 +6 24552 36.814556809491 0 +6 24555 36.814556809491 0 +6 24555 36.814556809491 0 +6 24562 36.814716809491 0 +6 24562 36.814716809491 0 +6 24641 36.857384114665 0 +6 24641 36.857384114665 0 +6 24647 36.857544114665 0 +6 24647 36.857544114665 0 +6 24679 36.943993579358 0 +6 24679 36.943993579358 0 +6 24685 36.944153579358 0 +6 24685 36.944153579358 0 +6 24717 37.114556809491 0 +6 24717 37.114556809491 2 +6 24718 37.114556809491 2 +6 24718 37.114556809491 0 +6 24721 37.114556809491 0 +6 24721 37.114556809491 0 +6 24728 37.114716809491 0 +6 24728 37.114716809491 0 +6 24807 37.157384116577 0 +6 24807 37.157384116577 0 +6 24813 37.157544116577 0 +6 24813 37.157544116577 0 +6 24845 37.243993577605 0 +6 24845 37.243993577605 0 +6 24851 37.244153577605 0 +6 24851 37.244153577605 0 +6 24883 37.414556809491 0 +6 24883 37.414556809491 2 +6 24884 37.414556809491 2 +6 24884 37.414556809491 0 +6 24887 37.414556809491 0 +6 24887 37.414556809491 0 +6 24894 37.414716809491 0 +6 24894 37.414716809491 0 +6 24973 37.457384118525 0 +6 24973 37.457384118525 0 +6 24979 37.457544118525 0 +6 24979 37.457544118525 0 +6 25011 37.543993572915 0 +6 25011 37.543993572915 0 +6 25017 37.544153572915 0 +6 25017 37.544153572915 0 +6 25049 37.714556809491 0 +6 25049 37.714556809491 2 +6 25050 37.714556809491 2 +6 25050 37.714556809491 0 +6 25053 37.714556809491 0 +6 25053 37.714556809491 0 +6 25060 37.714716809491 0 +6 25060 37.714716809491 0 +6 25139 37.757384120668 0 +6 25139 37.757384120668 0 +6 25145 37.757544120668 0 +6 25145 37.757544120668 0 +6 25177 37.843993571184 0 +6 25177 37.843993571184 0 +6 25183 37.844153571184 0 +6 25183 37.844153571184 0 +6 25215 38.014556809491 0 +6 25215 38.014556809491 2 +6 25216 38.014556809491 2 +6 25216 38.014556809491 0 +6 25219 38.014556809491 0 +6 25219 38.014556809491 0 +6 25226 38.014716809491 0 +6 25226 38.014716809491 0 +6 25305 38.05738412309 0 +6 25305 38.05738412309 0 +6 25311 38.05754412309 0 +6 25311 38.05754412309 0 +6 25343 38.143993570903 0 +6 25343 38.143993570903 0 +6 25349 38.144153570903 0 +6 25349 38.144153570903 0 +6 25381 38.314556809491 0 +6 25381 38.314556809491 2 +6 25382 38.314556809491 2 +6 25382 38.314556809491 0 +6 25385 38.314556809491 0 +6 25385 38.314556809491 0 +6 25392 38.314716809491 0 +6 25392 38.314716809491 0 +6 25471 38.357384125785 0 +6 25471 38.357384125785 0 +6 25477 38.357544125785 0 +6 25477 38.357544125785 0 +6 25509 38.443993571748 0 +6 25509 38.443993571748 0 +6 25515 38.444153571748 0 +6 25515 38.444153571748 0 +6 25547 38.614556809491 0 +6 25547 38.614556809491 2 +6 25548 38.614556809491 2 +6 25548 38.614556809491 0 +6 25551 38.614556809491 0 +6 25551 38.614556809491 0 +6 25558 38.614716809491 0 +6 25558 38.614716809491 0 +6 25637 38.65738412876 0 +6 25637 38.65738412876 0 +6 25643 38.65754412876 0 +6 25643 38.65754412876 0 +6 25675 38.74399357356 0 +6 25675 38.74399357356 0 +6 25681 38.74415357356 0 +6 25681 38.74415357356 0 +6 25713 38.914556809491 0 +6 25713 38.914556809491 2 +6 25714 38.914556809491 2 +6 25714 38.914556809491 0 +6 25717 38.914556809491 0 +6 25717 38.914556809491 0 +6 25724 38.914716809491 0 +6 25724 38.914716809491 0 +6 25803 38.957384132048 0 +6 25803 38.957384132048 0 +6 25809 38.957544132048 0 +6 25809 38.957544132048 0 +6 25841 39.043993576469 0 +6 25841 39.043993576469 0 +6 25847 39.044153576469 0 +6 25847 39.044153576469 0 +6 25879 39.214556809491 0 +6 25879 39.214556809491 2 +6 25880 39.214556809491 2 +6 25880 39.214556809491 0 +6 25883 39.214556809491 0 +6 25883 39.214556809491 0 +6 25890 39.214716809491 0 +6 25890 39.214716809491 0 +6 25969 39.257384135646 0 +6 25969 39.257384135646 0 +6 25975 39.257544135646 0 +6 25975 39.257544135646 0 +6 26007 39.34399358036 0 +6 26007 39.34399358036 0 +6 26013 39.34415358036 0 +6 26013 39.34415358036 0 +6 26045 39.514556809491 0 +6 26045 39.514556809491 2 +6 26046 39.514556809491 2 +6 26046 39.514556809491 0 +6 26049 39.514556809491 0 +6 26049 39.514556809491 0 +6 26056 39.514716809491 0 +6 26056 39.514716809491 0 +6 26135 39.557384139563 0 +6 26135 39.557384139563 0 +6 26141 39.557544139563 0 +6 26141 39.557544139563 0 +6 26173 39.643993585234 0 +6 26173 39.643993585234 0 +6 26179 39.644153585234 0 +6 26179 39.644153585234 0 +6 26211 39.814556809491 0 +6 26211 39.814556809491 2 +6 26212 39.814556809491 2 +6 26212 39.814556809491 0 +6 26215 39.814556809491 0 +6 26215 39.814556809491 0 +6 26222 39.814716809491 0 +6 26222 39.814716809491 0 +6 26301 39.857384143904 0 +6 26301 39.857384143904 0 +6 26307 39.857544143904 0 +6 26307 39.857544143904 0 +6 26339 39.943993591067 0 +6 26339 39.943993591067 0 +6 26345 39.944153591067 0 +6 26345 39.944153591067 0 +6 26377 40.114556809491 0 +6 26377 40.114556809491 2 +6 26378 40.114556809491 2 +6 26378 40.114556809491 0 +6 26381 40.114556809491 0 +6 26381 40.114556809491 0 +6 26388 40.114716809491 0 +6 26388 40.114716809491 0 +6 26468 40.157384148943 0 +6 26468 40.157384148943 0 +6 26478 40.157544148943 0 +6 26478 40.157544148943 0 +6 26506 40.243993597798 0 +6 26506 40.243993597798 0 +6 26516 40.244153597798 0 +6 26516 40.244153597798 0 +6 26543 40.414556809491 0 +6 26543 40.414556809491 2 +6 26544 40.414556809491 2 +6 26544 40.414556809491 0 +6 26547 40.414556809491 0 +6 26547 40.414556809491 0 +6 26554 40.414716809491 0 +6 26554 40.414716809491 0 +6 26634 40.457384154717 0 +6 26634 40.457384154717 0 +6 26644 40.457544154717 0 +6 26644 40.457544154717 0 +6 26672 40.543993605352 0 +6 26672 40.543993605352 0 +6 26682 40.544153605352 0 +6 26682 40.544153605352 0 +6 26709 40.714556809491 0 +6 26709 40.714556809491 2 +6 26710 40.714556809491 2 +6 26710 40.714556809491 0 +6 26713 40.714556809491 0 +6 26713 40.714556809491 0 +6 26720 40.714716809491 0 +6 26720 40.714716809491 0 +6 26804 40.757384161295 0 +6 26804 40.757384161295 0 +6 26814 40.757544161295 0 +6 26814 40.757544161295 0 +6 26842 40.843993613829 0 +6 26842 40.843993613829 0 +6 26852 40.844153613829 0 +6 26852 40.844153613829 0 +6 26883 41.014556809491 0 +6 26883 41.014556809491 2 +6 26884 41.014556809491 2 +6 26884 41.014556809491 0 +6 26887 41.014556809491 0 +6 26887 41.014556809491 0 +6 26894 41.014716809491 0 +6 26894 41.014716809491 0 +6 26978 41.05738416852 0 +6 26978 41.05738416852 0 +6 26988 41.05754416852 0 +6 26988 41.05754416852 0 +6 27016 41.143993623009 0 +6 27016 41.143993623009 0 +6 27026 41.144153623009 0 +6 27026 41.144153623009 0 +6 27057 41.314556809491 0 +6 27057 41.314556809491 2 +6 27058 41.314556809491 2 +6 27058 41.314556809491 0 +6 27061 41.314556809491 0 +6 27061 41.314556809491 0 +6 27068 41.314716809491 0 +6 27068 41.314716809491 0 +6 27152 41.357384176462 0 +6 27152 41.357384176462 0 +6 27162 41.357544176462 0 +6 27162 41.357544176462 0 +6 27190 41.443993632949 0 +6 27190 41.443993632949 0 +6 27200 41.444153632949 0 +6 27200 41.444153632949 0 +6 27231 41.614556809491 0 +6 27231 41.614556809491 2 +6 27232 41.614556809491 2 +6 27232 41.614556809491 0 +6 27235 41.614556809491 0 +6 27235 41.614556809491 0 +6 27242 41.614716809491 0 +6 27242 41.614716809491 0 +6 27326 41.657384185007 0 +6 27326 41.657384185007 0 +6 27336 41.657544185007 0 +6 27336 41.657544185007 0 +6 27364 41.743993643584 0 +6 27364 41.743993643584 0 +6 27374 41.744153643584 0 +6 27374 41.744153643584 0 +6 27405 41.914556809491 0 +6 27405 41.914556809491 2 +6 27406 41.914556809491 2 +6 27406 41.914556809491 0 +6 27409 41.914556809491 0 +6 27409 41.914556809491 0 +6 27416 41.914716809491 0 +6 27416 41.914716809491 0 +6 27500 41.957384194196 0 +6 27500 41.957384194196 0 +6 27510 41.957544194196 0 +6 27510 41.957544194196 0 +6 27538 42.043993655076 0 +6 27538 42.043993655076 0 +6 27548 42.044153655076 0 +6 27548 42.044153655076 0 +6 27579 42.214556809491 0 +6 27579 42.214556809491 2 +6 27580 42.214556809491 2 +6 27580 42.214556809491 0 +6 27583 42.214556809491 0 +6 27583 42.214556809491 0 +6 27590 42.214716809491 0 +6 27590 42.214716809491 0 +6 27674 42.257384203962 0 +6 27674 42.257384203962 0 +6 27684 42.257544203962 0 +6 27684 42.257544203962 0 +6 27712 42.343993667279 0 +6 27712 42.343993667279 0 +6 27722 42.344153667279 0 +6 27722 42.344153667279 0 +6 27753 42.514556809491 0 +6 27753 42.514556809491 2 +6 27754 42.514556809491 2 +6 27754 42.514556809491 0 +6 27757 42.514556809491 0 +6 27757 42.514556809491 0 +6 27764 42.514716809491 0 +6 27764 42.514716809491 0 +6 27848 42.557384214263 0 +6 27848 42.557384214263 0 +6 27858 42.557544214263 0 +6 27858 42.557544214263 0 +6 27886 42.643993680118 0 +6 27886 42.643993680118 0 +6 27896 42.644153680118 0 +6 27896 42.644153680118 0 +6 27927 42.814556809491 0 +6 27927 42.814556809491 2 +6 27928 42.814556809491 2 +6 27928 42.814556809491 0 +6 27931 42.814556809491 0 +6 27931 42.814556809491 0 +6 27938 42.814716809491 0 +6 27938 42.814716809491 0 +6 28022 42.857384225113 0 +6 28022 42.857384225113 0 +6 28032 42.857544225113 0 +6 28032 42.857544225113 0 +6 28060 42.943993693453 0 +6 28060 42.943993693453 0 +6 28070 42.944153693453 0 +6 28070 42.944153693453 0 +6 28101 43.114556809491 0 +6 28101 43.114556809491 2 +6 28102 43.114556809491 2 +6 28102 43.114556809491 0 +6 28105 43.114556809491 0 +6 28105 43.114556809491 0 +6 28112 43.114716809491 0 +6 28112 43.114716809491 0 +6 28196 43.15738423643 0 +6 28196 43.15738423643 0 +6 28206 43.15754423643 0 +6 28206 43.15754423643 0 +6 28234 43.243993707142 0 +6 28234 43.243993707142 0 +6 28244 43.244153707142 0 +6 28244 43.244153707142 0 +6 28275 43.414556809491 0 +6 28275 43.414556809491 2 +6 28276 43.414556809491 2 +6 28276 43.414556809491 0 +6 28279 43.414556809491 0 +6 28279 43.414556809491 0 +6 28286 43.414716809491 0 +6 28286 43.414716809491 0 +6 28370 43.457384248185 0 +6 28370 43.457384248185 0 +6 28380 43.457544248185 0 +6 28380 43.457544248185 0 +6 28408 43.54399372113 0 +6 28408 43.54399372113 0 +6 28418 43.54415372113 0 +6 28418 43.54415372113 0 +6 28449 43.714556809491 0 +6 28449 43.714556809491 2 +6 28450 43.714556809491 2 +6 28450 43.714556809491 0 +6 28453 43.714556809491 0 +6 28453 43.714556809491 0 +6 28460 43.714716809491 0 +6 28460 43.714716809491 0 +6 28544 43.757384260094 0 +6 28544 43.757384260094 0 +6 28554 43.757544260094 0 +6 28554 43.757544260094 0 +6 28582 43.843993734654 0 +6 28582 43.843993734654 0 +6 28592 43.844153734654 0 +6 28592 43.844153734654 0 +6 28623 44.014556809491 0 +6 28623 44.014556809491 2 +6 28624 44.014556809491 2 +6 28624 44.014556809491 0 +6 28627 44.014556809491 0 +6 28627 44.014556809491 0 +6 28634 44.014716809491 0 +6 28634 44.014716809491 0 +6 28718 44.05738427113 0 +6 28718 44.05738427113 0 +6 28728 44.05754427113 0 +6 28728 44.05754427113 0 +6 28756 44.143993746996 0 +6 28756 44.143993746996 0 +6 28766 44.144153746996 0 +6 28766 44.144153746996 0 +6 28797 44.314556809491 0 +6 28797 44.314556809491 2 +6 28798 44.314556809491 2 +6 28798 44.314556809491 0 +6 28801 44.314556809491 0 +6 28801 44.314556809491 0 +6 28808 44.314716809491 0 +6 28808 44.314716809491 0 +6 28888 44.357384281313 0 +6 28888 44.357384281313 0 +6 28898 44.357544281313 0 +6 28898 44.357544281313 0 +6 28926 44.443993758119 0 +6 28926 44.443993758119 0 +6 28936 44.444153758119 0 +6 28936 44.444153758119 0 +6 28963 44.614556809491 0 +6 28963 44.614556809491 2 +6 28964 44.614556809491 2 +6 28964 44.614556809491 0 +6 28967 44.614556809491 0 +6 28967 44.614556809491 0 +6 28974 44.614716809491 0 +6 28974 44.614716809491 0 +6 29054 44.657384290579 0 +6 29054 44.657384290579 0 +6 29064 44.657544290579 0 +6 29064 44.657544290579 0 +6 29092 44.743993767993 0 +6 29092 44.743993767993 0 +6 29102 44.744153767993 0 +6 29102 44.744153767993 0 +6 29129 44.914556809491 0 +6 29129 44.914556809491 2 +6 29130 44.914556809491 2 +6 29130 44.914556809491 0 +6 29133 44.914556809491 0 +6 29133 44.914556809491 0 +6 29140 44.914716809491 0 +6 29140 44.914716809491 0 +6 29220 44.957384298829 0 +6 29220 44.957384298829 0 +6 29230 44.957544298829 0 +6 29230 44.957544298829 0 +6 29258 45.04399377659 0 +6 29258 45.04399377659 0 +6 29268 45.04415377659 0 +6 29268 45.04415377659 0 +6 29295 45.214556809491 0 +6 29295 45.214556809491 2 +6 29296 45.214556809491 2 +6 29296 45.214556809491 0 +6 29299 45.214556809491 0 +6 29299 45.214556809491 0 +6 29306 45.214716809491 0 +6 29306 45.214716809491 0 +6 29386 45.257384305981 0 +6 29386 45.257384305981 0 +6 29396 45.257544305981 0 +6 29396 45.257544305981 0 +6 29424 45.343993783865 0 +6 29424 45.343993783865 0 +6 29434 45.344153783865 0 +6 29434 45.344153783865 0 +6 29461 45.514556809491 0 +6 29461 45.514556809491 2 +6 29462 45.514556809491 2 +6 29462 45.514556809491 0 +6 29465 45.514556809491 0 +6 29465 45.514556809491 0 +6 29472 45.514716809491 0 +6 29472 45.514716809491 0 +6 29552 45.557384312206 0 +6 29552 45.557384312206 0 +6 29562 45.557544312206 0 +6 29562 45.557544312206 0 +6 29590 45.643993790499 0 +6 29590 45.643993790499 0 +6 29600 45.644153790499 0 +6 29600 45.644153790499 0 +6 29627 45.814556809491 0 +6 29627 45.814556809491 2 +6 29628 45.814556809491 2 +6 29628 45.814556809491 0 +6 29631 45.814556809491 0 +6 29631 45.814556809491 0 +6 29638 45.814716809491 0 +6 29638 45.814716809491 0 +6 29718 45.857384319049 0 +6 29718 45.857384319049 0 +6 29728 45.857544319049 0 +6 29728 45.857544319049 0 +6 29756 45.943993797914 0 +6 29756 45.943993797914 0 +6 29766 45.944153797914 0 +6 29766 45.944153797914 0 +6 29793 46.114556809491 0 +6 29793 46.114556809491 2 +6 29794 46.114556809491 2 +6 29794 46.114556809491 0 +6 29797 46.114556809491 0 +6 29797 46.114556809491 0 +6 29804 46.114716809491 0 +6 29804 46.114716809491 0 +6 29884 46.157384326651 0 +6 29884 46.157384326651 0 +6 29894 46.157544326651 0 +6 29894 46.157544326651 0 +6 29923 46.243993806003 0 +6 29923 46.243993806003 0 +6 29937 46.244153806003 0 +6 29937 46.244153806003 0 +6 29959 46.414556809491 0 +6 29959 46.414556809491 2 +6 29960 46.414556809491 2 +6 29960 46.414556809491 0 +6 29963 46.414556809491 0 +6 29963 46.414556809491 0 +6 29970 46.414716809491 0 +6 29970 46.414716809491 0 +6 30050 46.457384334527 0 +6 30050 46.457384334527 0 +6 30060 46.457544334527 0 +6 30060 46.457544334527 0 +6 30089 46.543993813964 0 +6 30089 46.543993813964 0 +6 30103 46.544153813964 0 +6 30103 46.544153813964 0 +6 30125 46.714556809491 0 +6 30125 46.714556809491 2 +6 30126 46.714556809491 2 +6 30126 46.714556809491 0 +6 30129 46.714556809491 0 +6 30129 46.714556809491 0 +6 30136 46.714716809491 0 +6 30136 46.714716809491 0 +6 30217 46.757384340536 0 +6 30217 46.757384340536 0 +6 30231 46.757544340536 0 +6 30231 46.757544340536 0 +6 30255 46.843993818595 0 +6 30255 46.843993818595 0 +6 30269 46.844153818595 0 +6 30269 46.844153818595 0 +6 30291 47.014556809491 0 +6 30291 47.014556809491 2 +6 30292 47.014556809491 2 +6 30292 47.014556809491 0 +6 30295 47.014556809491 0 +6 30295 47.014556809491 0 +6 30302 47.014716809491 0 +6 30302 47.014716809491 0 +6 30383 47.057384342941 0 +6 30383 47.057384342941 0 +6 30397 47.057544342941 0 +6 30397 47.057544342941 0 +6 30421 47.143993819767 0 +6 30421 47.143993819767 0 +6 30435 47.144153819767 0 +6 30435 47.144153819767 0 +6 30457 47.314556809491 0 +6 30457 47.314556809491 2 +6 30458 47.314556809491 2 +6 30458 47.314556809491 0 +6 30461 47.314556809491 0 +6 30461 47.314556809491 0 +6 30468 47.314716809491 0 +6 30468 47.314716809491 0 +6 30549 47.357384344047 0 +6 30549 47.357384344047 0 +6 30563 47.357544344047 0 +6 30563 47.357544344047 0 +6 30587 47.443993820025 0 +6 30587 47.443993820025 0 +6 30601 47.444153820025 0 +6 30601 47.444153820025 0 +6 30623 47.614556809491 0 +6 30623 47.614556809491 2 +6 30624 47.614556809491 2 +6 30624 47.614556809491 0 +6 30627 47.614556809491 0 +6 30627 47.614556809491 0 +6 30634 47.614716809491 0 +6 30634 47.614716809491 0 +6 30715 47.657384345882 0 +6 30715 47.657384345882 0 +6 30729 47.657544345882 0 +6 30729 47.657544345882 0 +6 30753 47.743993820289 0 +6 30753 47.743993820289 0 +6 30767 47.744153820289 0 +6 30767 47.744153820289 0 +6 30789 47.914556809491 0 +6 30789 47.914556809491 2 +6 30790 47.914556809491 2 +6 30790 47.914556809491 0 +6 30793 47.914556809491 0 +6 30793 47.914556809491 0 +6 30800 47.914716809491 0 +6 30800 47.914716809491 0 +6 30881 47.95738434856 0 +6 30881 47.95738434856 0 +6 30895 47.95754434856 0 +6 30895 47.95754434856 0 +6 30919 48.043993820574 0 +6 30919 48.043993820574 0 +6 30933 48.044153820574 0 +6 30933 48.044153820574 0 +6 30955 48.214556809491 0 +6 30955 48.214556809491 2 +6 30956 48.214556809491 2 +6 30956 48.214556809491 0 +6 30959 48.214556809491 0 +6 30959 48.214556809491 0 +6 30966 48.214716809491 0 +6 30966 48.214716809491 0 +6 31047 48.257384352185 0 +6 31047 48.257384352185 0 +6 31061 48.257544352185 0 +6 31061 48.257544352185 0 +6 31085 48.343993819422 0 +6 31085 48.343993819422 0 +6 31099 48.344153819422 0 +6 31099 48.344153819422 0 +6 31121 48.514556809491 0 +6 31121 48.514556809491 2 +6 31122 48.514556809491 2 +6 31122 48.514556809491 0 +6 31125 48.514556809491 0 +6 31125 48.514556809491 0 +6 31132 48.514716809491 0 +6 31132 48.514716809491 0 +6 31213 48.557384356842 0 +6 31213 48.557384356842 0 +6 31227 48.557544356842 0 +6 31227 48.557544356842 0 +6 31251 48.643993818083 0 +6 31251 48.643993818083 0 +6 31265 48.644153818083 0 +6 31265 48.644153818083 0 +6 31287 48.814556809491 0 +6 31287 48.814556809491 2 +6 31288 48.814556809491 2 +6 31288 48.814556809491 0 +6 31291 48.814556809491 0 +6 31291 48.814556809491 0 +6 31298 48.814716809491 0 +6 31298 48.814716809491 0 +6 31379 48.857384362664 0 +6 31379 48.857384362664 0 +6 31393 48.857544362664 0 +6 31393 48.857544362664 0 +6 31417 48.943993815516 0 +6 31417 48.943993815516 0 +6 31431 48.944153815516 0 +6 31431 48.944153815516 0 +6 31453 49.114556809491 0 +6 31453 49.114556809491 2 +6 31454 49.114556809491 2 +6 31454 49.114556809491 0 +6 31457 49.114556809491 0 +6 31457 49.114556809491 0 +6 31464 49.114716809491 0 +6 31464 49.114716809491 0 +6 31545 49.157384369644 0 +6 31545 49.157384369644 0 +6 31559 49.157544369644 0 +6 31559 49.157544369644 0 +6 31583 49.243993812156 0 +6 31583 49.243993812156 0 +6 31597 49.244153812156 0 +6 31597 49.244153812156 0 +6 31619 49.414556809491 0 +6 31619 49.414556809491 2 +6 31620 49.414556809491 2 +6 31620 49.414556809491 0 +6 31623 49.414556809491 0 +6 31623 49.414556809491 0 +6 31630 49.414716809491 0 +6 31630 49.414716809491 0 +6 31711 49.457384377764 0 +6 31711 49.457384377764 0 +6 31725 49.457544377764 0 +6 31725 49.457544377764 0 +6 31749 49.543993808185 0 +6 31749 49.543993808185 0 +6 31763 49.544153808185 0 +6 31763 49.544153808185 0 +6 31785 49.714556809491 0 +6 31785 49.714556809491 2 +6 31786 49.714556809491 2 +6 31786 49.714556809491 0 +6 31789 49.714556809491 0 +6 31789 49.714556809491 0 +6 31796 49.714716809491 0 +6 31796 49.714716809491 0 +6 31877 49.757384386996 0 +6 31877 49.757384386996 0 +6 31891 49.757544386996 0 +6 31891 49.757544386996 0 +6 31915 49.843993803841 0 +6 31915 49.843993803841 0 +6 31929 49.844153803841 0 +6 31929 49.844153803841 0 +6 31951 50.014556809491 0 +6 31951 50.014556809491 2 +6 31952 50.014556809491 2 +6 31952 50.014556809491 0 +6 31955 50.014556809491 0 +6 31955 50.014556809491 0 +6 31962 50.014716809491 0 +6 31962 50.014716809491 0 +6 32043 50.05738439718 0 +6 32043 50.05738439718 0 +6 32057 50.05754439718 0 +6 32057 50.05754439718 0 +6 32081 50.143993799517 0 +6 32081 50.143993799517 0 +6 32095 50.144153799517 0 +6 32095 50.144153799517 0 +6 32117 50.314556809491 0 +6 32117 50.314556809491 2 +6 32118 50.314556809491 2 +6 32118 50.314556809491 0 +6 32121 50.314556809491 0 +6 32121 50.314556809491 0 +6 32128 50.314716809491 0 +6 32128 50.314716809491 0 +6 32209 50.3573844083 0 +6 32209 50.3573844083 0 +6 32223 50.3575444083 0 +6 32223 50.3575444083 0 +6 32247 50.443993795058 0 +6 32247 50.443993795058 0 +6 32261 50.444153795058 0 +6 32261 50.444153795058 0 +6 32283 50.614556809491 0 +6 32283 50.614556809491 2 +6 32284 50.614556809491 2 +6 32284 50.614556809491 0 +6 32287 50.614556809491 0 +6 32287 50.614556809491 0 +6 32294 50.614716809491 0 +6 32294 50.614716809491 0 +6 32375 50.657384420305 0 +6 32375 50.657384420305 0 +6 32389 50.657544420305 0 +6 32389 50.657544420305 0 +6 32413 50.743993790392 0 +6 32413 50.743993790392 0 +6 32427 50.744153790392 0 +6 32427 50.744153790392 0 +6 32449 50.914556809491 0 +6 32449 50.914556809491 2 +6 32450 50.914556809491 2 +6 32450 50.914556809491 0 +6 32453 50.914556809491 0 +6 32453 50.914556809491 0 +6 32460 50.914716809491 0 +6 32460 50.914716809491 0 +6 32541 50.957384433105 0 +6 32541 50.957384433105 0 +6 32555 50.957544433105 0 +6 32555 50.957544433105 0 +6 32579 51.043993785603 0 +6 32579 51.043993785603 0 +6 32593 51.044153785603 0 +6 32593 51.044153785603 0 +6 32615 51.214556809491 0 +6 32615 51.214556809491 2 +6 32616 51.214556809491 2 +6 32616 51.214556809491 0 +6 32619 51.214556809491 0 +6 32619 51.214556809491 0 +6 32626 51.214716809491 0 +6 32626 51.214716809491 0 +6 32737 51.343993780685 0 +6 32737 51.343993780685 0 +6 32751 51.344153780685 0 +6 32751 51.344153780685 0 +6 32773 51.514556809491 0 +6 32773 51.514556809491 2 +6 32774 51.514556809491 2 +6 32774 51.514556809491 0 +6 32777 51.514556809491 0 +6 32777 51.514556809491 0 +6 32784 51.514716809491 0 +6 32784 51.514716809491 0 +6 32903 51.643993775717 0 +6 32903 51.643993775717 0 +6 32917 51.644153775717 0 +6 32917 51.644153775717 0 +6 32939 51.814556809491 0 +6 32939 51.814556809491 2 +6 32940 51.814556809491 2 +6 32940 51.814556809491 0 +6 32943 51.814556809491 0 +6 32943 51.814556809491 0 +6 32950 51.814716809491 0 +6 32950 51.814716809491 0 +6 33069 51.943993770578 0 +6 33069 51.943993770578 0 +6 33083 51.944153770578 0 +6 33083 51.944153770578 0 +6 33105 52.114556809491 0 +6 33105 52.114556809491 2 +6 33106 52.114556809491 2 +6 33106 52.114556809491 0 +6 33109 52.114556809491 0 +6 33109 52.114556809491 0 +6 33116 52.114716809491 0 +6 33116 52.114716809491 0 +6 33235 52.243993765452 0 +6 33235 52.243993765452 0 +6 33249 52.244153765452 0 +6 33249 52.244153765452 0 +6 33271 52.414556809491 0 +6 33271 52.414556809491 2 +6 33272 52.414556809491 2 +6 33272 52.414556809491 0 +6 33275 52.414556809491 0 +6 33275 52.414556809491 0 +6 33282 52.414716809491 0 +6 33282 52.414716809491 0 +6 33401 52.543993760435 0 +6 33401 52.543993760435 0 +6 33415 52.544153760435 0 +6 33415 52.544153760435 0 +6 33437 52.714556809491 0 +6 33437 52.714556809491 2 +6 33438 52.714556809491 2 +6 33438 52.714556809491 0 +6 33441 52.714556809491 0 +6 33441 52.714556809491 0 +6 33448 52.714716809491 0 +6 33448 52.714716809491 0 +6 33567 52.843993755494 0 +6 33567 52.843993755494 0 +6 33581 52.844153755494 0 +6 33581 52.844153755494 0 +6 33603 53.014556809491 0 +6 33603 53.014556809491 2 +6 33604 53.014556809491 2 +6 33604 53.014556809491 0 +6 33607 53.014556809491 0 +6 33607 53.014556809491 0 +6 33614 53.014716809491 0 +6 33614 53.014716809491 0 +6 33733 53.143993750731 0 +6 33733 53.143993750731 0 +6 33747 53.144153750731 0 +6 33747 53.144153750731 0 +7 22 2.1 0 +7 22 2.1 0 +7 47 2.614556809491 0 +7 47 2.614556809491 0 +7 51 2.614716809491 0 +7 51 2.614716809491 0 +7 67 2.65738405803 0 +7 67 2.65738405803 0 +7 70 2.65754405803 0 +7 70 2.65754405803 0 +7 92 2.914556809491 0 +7 92 2.914556809491 0 +7 96 2.914716809491 0 +7 96 2.914716809491 0 +7 112 2.957384059145 0 +7 112 2.957384059145 0 +7 115 2.957544059145 0 +7 115 2.957544059145 0 +7 139 3.214556809491 0 +7 139 3.214556809491 0 +7 144 3.214716809491 0 +7 144 3.214716809491 0 +7 165 3.257384060325 0 +7 165 3.257384060325 0 +7 169 3.257544060325 0 +7 169 3.257544060325 0 +7 199 3.514556809491 0 +7 199 3.514556809491 0 +7 204 3.514716809491 0 +7 204 3.514716809491 0 +7 225 3.531276752816 0 +7 225 3.531276752816 0 +7 229 3.531436752816 0 +7 229 3.531436752816 0 +7 249 3.5573840616 0 +7 249 3.5573840616 0 +7 253 3.5575440616 0 +7 253 3.5575440616 0 +7 283 3.814556809491 0 +7 283 3.814556809491 0 +7 288 3.814716809491 0 +7 288 3.814716809491 0 +7 309 3.831276748492 0 +7 309 3.831276748492 0 +7 313 3.831436748492 0 +7 313 3.831436748492 0 +7 333 3.857384062957 0 +7 333 3.857384062957 0 +7 337 3.857544062957 0 +7 337 3.857544062957 0 +7 368 4.114556809491 0 +7 368 4.114556809491 0 +7 374 4.114716809491 0 +7 374 4.114716809491 0 +7 397 4.131276743562 0 +7 397 4.131276743562 0 +7 406 4.131436743562 0 +7 406 4.131436743562 0 +7 426 4.157384064405 0 +7 426 4.157384064405 0 +7 431 4.157544064405 0 +7 431 4.157544064405 0 +7 465 4.414556809491 0 +7 465 4.414556809491 0 +7 471 4.414716809491 0 +7 471 4.414716809491 0 +7 494 4.431276737964 0 +7 494 4.431276737964 0 +7 503 4.431436737964 0 +7 503 4.431436737964 0 +7 523 4.457384065992 0 +7 523 4.457384065992 0 +7 528 4.457544065992 0 +7 528 4.457544065992 0 +7 584 4.714556809491 0 +7 584 4.714556809491 0 +7 590 4.714716809491 0 +7 590 4.714716809491 0 +7 613 4.731276731904 0 +7 613 4.731276731904 0 +7 622 4.731436731904 0 +7 622 4.731436731904 0 +7 642 4.757384067713 0 +7 642 4.757384067713 0 +7 647 4.757544067713 0 +7 647 4.757544067713 0 +7 703 5.014556809491 0 +7 703 5.014556809491 0 +7 709 5.014716809491 0 +7 709 5.014716809491 0 +7 732 5.031276725247 0 +7 732 5.031276725247 0 +7 741 5.031436725247 0 +7 741 5.031436725247 0 +7 761 5.057384069567 0 +7 761 5.057384069567 0 +7 766 5.057544069567 0 +7 766 5.057544069567 0 +7 831 5.314556809491 0 +7 831 5.314556809491 0 +7 838 5.314716809491 0 +7 838 5.314716809491 0 +7 862 5.331276717912 0 +7 862 5.331276717912 0 +7 872 5.331436717912 0 +7 872 5.331436717912 0 +7 893 5.357384071635 0 +7 893 5.357384071635 0 +7 899 5.357544071635 0 +7 899 5.357544071635 0 +7 965 5.614556809491 0 +7 965 5.614556809491 0 +7 972 5.614716809491 0 +7 972 5.614716809491 0 +7 996 5.631276710029 0 +7 996 5.631276710029 0 +7 1006 5.631436710029 0 +7 1006 5.631436710029 0 +7 1027 5.657384073906 0 +7 1027 5.657384073906 0 +7 1033 5.657544073906 0 +7 1033 5.657544073906 0 +7 1123 5.914556809491 0 +7 1123 5.914556809491 0 +7 1130 5.914716809491 0 +7 1130 5.914716809491 0 +7 1154 5.931276701497 0 +7 1154 5.931276701497 0 +7 1164 5.931436701497 0 +7 1164 5.931436701497 0 +7 1185 5.957384076426 0 +7 1185 5.957384076426 0 +7 1191 5.957544076426 0 +7 1191 5.957544076426 0 +7 1283 6.214556809491 0 +7 1283 6.214556809491 0 +7 1291 6.214716809491 0 +7 1291 6.214716809491 0 +7 1321 6.231276692343 0 +7 1321 6.231276692343 0 +7 1336 6.231436692343 0 +7 1336 6.231436692343 0 +7 1357 6.257384079226 0 +7 1357 6.257384079226 0 +7 1364 6.257544079226 0 +7 1364 6.257544079226 0 +7 1466 6.514556809491 0 +7 1466 6.514556809491 0 +7 1474 6.514716809491 0 +7 1474 6.514716809491 0 +7 1501 6.524398778352 0 +7 1501 6.524398778352 0 +7 1508 6.524558778352 0 +7 1508 6.524558778352 0 +7 1537 6.531276682665 0 +7 1537 6.531276682665 0 +7 1552 6.531436682665 0 +7 1552 6.531436682665 0 +7 1574 6.557384082316 0 +7 1574 6.557384082316 0 +7 1581 6.557544082316 0 +7 1581 6.557544082316 0 +7 1683 6.814556809491 0 +7 1683 6.814556809491 0 +7 1691 6.814716809491 0 +7 1691 6.814716809491 0 +7 1718 6.824398768033 0 +7 1718 6.824398768033 0 +7 1725 6.824558768033 0 +7 1725 6.824558768033 0 +7 1754 6.831276672312 0 +7 1754 6.831276672312 0 +7 1769 6.831436672312 0 +7 1769 6.831436672312 0 +7 1791 6.857384085755 0 +7 1791 6.857384085755 0 +7 1798 6.857544085755 0 +7 1798 6.857544085755 0 +7 1900 7.114556809491 0 +7 1900 7.114556809491 0 +7 1908 7.114716809491 0 +7 1908 7.114716809491 0 +7 1935 7.124398757068 0 +7 1935 7.124398757068 0 +7 1942 7.124558757068 0 +7 1942 7.124558757068 0 +7 1971 7.131276661329 0 +7 1971 7.131276661329 0 +7 1986 7.131436661329 0 +7 1986 7.131436661329 0 +7 2008 7.157384089564 0 +7 2008 7.157384089564 0 +7 2015 7.157544089564 0 +7 2015 7.157544089564 0 +7 2117 7.414556809491 0 +7 2117 7.414556809491 0 +7 2125 7.414716809491 0 +7 2125 7.414716809491 0 +7 2152 7.424398745664 0 +7 2152 7.424398745664 0 +7 2159 7.424558745664 0 +7 2159 7.424558745664 0 +7 2188 7.431276649891 0 +7 2188 7.431276649891 0 +7 2203 7.431436649891 0 +7 2203 7.431436649891 0 +7 2225 7.457384093735 0 +7 2225 7.457384093735 0 +7 2232 7.457544093735 0 +7 2232 7.457544093735 0 +7 2334 7.714556809491 0 +7 2334 7.714556809491 0 +7 2342 7.714716809491 0 +7 2342 7.714716809491 0 +7 2369 7.724398733784 0 +7 2369 7.724398733784 0 +7 2376 7.724558733784 0 +7 2376 7.724558733784 0 +7 2405 7.731276637989 0 +7 2405 7.731276637989 0 +7 2420 7.731436637989 0 +7 2420 7.731436637989 0 +7 2442 7.757384098302 0 +7 2442 7.757384098302 0 +7 2449 7.757544098302 0 +7 2449 7.757544098302 0 +7 2551 8.014556809491 0 +7 2551 8.014556809491 0 +7 2559 8.014716809491 0 +7 2559 8.014716809491 0 +7 2586 8.02439872132 0 +7 2586 8.02439872132 0 +7 2593 8.02455872132 0 +7 2593 8.02455872132 0 +7 2621 8.031276625491 0 +7 2621 8.031276625491 0 +7 2632 8.031436625491 0 +7 2632 8.031436625491 0 +7 2659 8.057384103323 0 +7 2659 8.057384103323 0 +7 2666 8.057544103323 0 +7 2666 8.057544103323 0 +7 2768 8.314556809491 0 +7 2768 8.314556809491 0 +7 2776 8.314716809491 0 +7 2776 8.314716809491 0 +7 2803 8.324398708136 0 +7 2803 8.324398708136 0 +7 2810 8.324558708136 0 +7 2810 8.324558708136 0 +7 2842 8.33127661228 0 +7 2842 8.33127661228 0 +7 2853 8.33143661228 0 +7 2853 8.33143661228 0 +7 2880 8.357384108886 0 +7 2880 8.357384108886 0 +7 2887 8.357544108886 0 +7 2887 8.357544108886 0 +7 2993 8.614556809491 0 +7 2993 8.614556809491 0 +7 3001 8.614716809491 0 +7 3001 8.614716809491 0 +7 3028 8.624398694405 0 +7 3028 8.624398694405 0 +7 3035 8.624558694405 0 +7 3035 8.624558694405 0 +7 3067 8.631276598484 0 +7 3067 8.631276598484 0 +7 3078 8.631436598484 0 +7 3078 8.631436598484 0 +7 3105 8.65738411496 0 +7 3105 8.65738411496 0 +7 3112 8.65754411496 0 +7 3112 8.65754411496 0 +7 3218 8.914556809491 0 +7 3218 8.914556809491 0 +7 3226 8.914716809491 0 +7 3226 8.914716809491 0 +7 3253 8.924398680104 0 +7 3253 8.924398680104 0 +7 3260 8.924558680104 0 +7 3260 8.924558680104 0 +7 3292 8.931276584082 0 +7 3292 8.931276584082 0 +7 3303 8.931436584082 0 +7 3303 8.931436584082 0 +7 3330 8.957384121588 0 +7 3330 8.957384121588 0 +7 3337 8.957544121588 0 +7 3337 8.957544121588 0 +7 3443 9.214556809491 0 +7 3443 9.214556809491 0 +7 3451 9.214716809491 0 +7 3451 9.214716809491 0 +7 3478 9.224398665264 0 +7 3478 9.224398665264 0 +7 3485 9.224558665264 0 +7 3485 9.224558665264 0 +7 3517 9.231276569158 0 +7 3517 9.231276569158 0 +7 3528 9.231436569158 0 +7 3528 9.231436569158 0 +7 3555 9.257384128789 0 +7 3555 9.257384128789 0 +7 3562 9.257544128789 0 +7 3562 9.257544128789 0 +7 3668 9.514556809491 0 +7 3668 9.514556809491 0 +7 3676 9.514716809491 0 +7 3676 9.514716809491 0 +7 3703 9.524398649996 0 +7 3703 9.524398649996 0 +7 3710 9.524558649996 0 +7 3710 9.524558649996 0 +7 3742 9.531276553733 0 +7 3742 9.531276553733 0 +7 3753 9.531436553733 0 +7 3753 9.531436553733 0 +7 3780 9.557384136549 0 +7 3780 9.557384136549 0 +7 3787 9.557544136549 0 +7 3787 9.557544136549 0 +7 3893 9.814556809491 0 +7 3893 9.814556809491 0 +7 3901 9.814716809491 0 +7 3901 9.814716809491 0 +7 3928 9.824398634568 0 +7 3928 9.824398634568 0 +7 3935 9.824558634568 0 +7 3935 9.824558634568 0 +7 3967 9.831276538055 0 +7 3967 9.831276538055 0 +7 3978 9.831436538055 0 +7 3978 9.831436538055 0 +7 4005 9.857384144771 0 +7 4005 9.857384144771 0 +7 4012 9.857544144771 0 +7 4012 9.857544144771 0 +7 4118 10.114556809491 0 +7 4118 10.114556809491 0 +7 4126 10.114716809491 0 +7 4126 10.114716809491 0 +7 4153 10.124398619363 0 +7 4153 10.124398619363 0 +7 4160 10.124558619363 0 +7 4160 10.124558619363 0 +7 4192 10.131276522386 0 +7 4192 10.131276522386 0 +7 4203 10.131436522386 0 +7 4203 10.131436522386 0 +7 4230 10.157384153312 0 +7 4230 10.157384153312 0 +7 4237 10.157544153312 0 +7 4237 10.157544153312 0 +7 4343 10.414556809491 0 +7 4343 10.414556809491 0 +7 4351 10.414716809491 0 +7 4351 10.414716809491 0 +7 4378 10.424398604844 0 +7 4378 10.424398604844 0 +7 4385 10.424558604844 0 +7 4385 10.424558604844 0 +7 4417 10.431276506743 0 +7 4417 10.431276506743 0 +7 4428 10.431436506743 0 +7 4428 10.431436506743 0 +7 4455 10.457384162122 0 +7 4455 10.457384162122 0 +7 4462 10.457544162122 0 +7 4462 10.457544162122 0 +7 4525 10.543993907449 0 +7 4525 10.543993907449 0 +7 4544 10.544153907449 0 +7 4544 10.544153907449 0 +7 4572 10.714556809491 0 +7 4572 10.714556809491 0 +7 4580 10.714716809491 0 +7 4580 10.714716809491 0 +7 4611 10.72439859379 0 +7 4611 10.72439859379 0 +7 4618 10.72455859379 0 +7 4618 10.72455859379 0 +7 4650 10.731276491102 0 +7 4650 10.731276491102 0 +7 4661 10.731436491102 0 +7 4661 10.731436491102 0 +7 4688 10.757384171218 0 +7 4688 10.757384171218 0 +7 4695 10.757544171218 0 +7 4695 10.757544171218 0 +7 4757 10.84399389067 0 +7 4757 10.84399389067 0 +7 4772 10.84415389067 0 +7 4772 10.84415389067 0 +7 4805 11.014556809491 0 +7 4805 11.014556809491 0 +7 4813 11.014716809491 0 +7 4813 11.014716809491 0 +7 4844 11.024398598014 0 +7 4844 11.024398598014 0 +7 4851 11.024558598014 0 +7 4851 11.024558598014 0 +7 4882 11.031276475464 0 +7 4882 11.031276475464 0 +7 4889 11.031436475464 0 +7 4889 11.031436475464 0 +7 4921 11.057384180599 0 +7 4921 11.057384180599 0 +7 4928 11.057544180599 0 +7 4928 11.057544180599 0 +7 4990 11.143993874452 0 +7 4990 11.143993874452 0 +7 5005 11.144153874452 0 +7 5005 11.144153874452 0 +7 5038 11.314556809491 0 +7 5038 11.314556809491 0 +7 5046 11.314716809491 0 +7 5046 11.314716809491 0 +7 5077 11.324398611475 0 +7 5077 11.324398611475 0 +7 5084 11.324558611475 0 +7 5084 11.324558611475 0 +7 5115 11.331276459858 0 +7 5115 11.331276459858 0 +7 5122 11.331436459858 0 +7 5122 11.331436459858 0 +7 5155 11.3573841902 0 +7 5155 11.3573841902 0 +7 5166 11.3575441902 0 +7 5166 11.3575441902 0 +7 5223 11.443993858741 0 +7 5223 11.443993858741 0 +7 5238 11.444153858741 0 +7 5238 11.444153858741 0 +7 5271 11.614556809491 0 +7 5271 11.614556809491 0 +7 5279 11.614716809491 0 +7 5279 11.614716809491 0 +7 5310 11.624398626396 0 +7 5310 11.624398626396 0 +7 5317 11.624558626396 0 +7 5317 11.624558626396 0 +7 5348 11.631276444245 0 +7 5348 11.631276444245 0 +7 5355 11.631436444245 0 +7 5355 11.631436444245 0 +7 5392 11.657384200055 0 +7 5392 11.657384200055 0 +7 5403 11.657544200055 0 +7 5403 11.657544200055 0 +7 5464 11.743993843502 0 +7 5464 11.743993843502 0 +7 5479 11.744153843502 0 +7 5479 11.744153843502 0 +7 5512 11.914556809491 0 +7 5512 11.914556809491 0 +7 5520 11.914716809491 0 +7 5520 11.914716809491 0 +7 5551 11.92439864171 0 +7 5551 11.92439864171 0 +7 5558 11.92455864171 0 +7 5558 11.92455864171 0 +7 5589 11.931276428595 0 +7 5589 11.931276428595 0 +7 5596 11.931436428595 0 +7 5596 11.931436428595 0 +7 5633 11.957384210159 0 +7 5633 11.957384210159 0 +7 5644 11.957544210159 0 +7 5644 11.957544210159 0 +7 5705 12.043993828636 0 +7 5705 12.043993828636 0 +7 5720 12.044153828636 0 +7 5720 12.044153828636 0 +7 5753 12.214556809491 0 +7 5753 12.214556809491 0 +7 5761 12.214716809491 0 +7 5761 12.214716809491 0 +7 5792 12.224398657188 0 +7 5792 12.224398657188 0 +7 5799 12.224558657188 0 +7 5799 12.224558657188 0 +7 5830 12.231276412948 0 +7 5830 12.231276412948 0 +7 5837 12.231436412948 0 +7 5837 12.231436412948 0 +7 5874 12.257384220477 0 +7 5874 12.257384220477 0 +7 5885 12.257544220477 0 +7 5885 12.257544220477 0 +7 5946 12.343993813991 0 +7 5946 12.343993813991 0 +7 5961 12.344153813991 0 +7 5961 12.344153813991 0 +7 5994 12.514556809491 0 +7 5994 12.514556809491 0 +7 6002 12.514716809491 0 +7 6002 12.514716809491 0 +7 6033 12.524398672694 0 +7 6033 12.524398672694 0 +7 6040 12.524558672694 0 +7 6040 12.524558672694 0 +7 6071 12.531276397317 0 +7 6071 12.531276397317 0 +7 6078 12.531436397317 0 +7 6078 12.531436397317 0 +7 6115 12.557384230993 0 +7 6115 12.557384230993 0 +7 6126 12.557544230993 0 +7 6126 12.557544230993 0 +7 6187 12.643993799362 0 +7 6187 12.643993799362 0 +7 6202 12.644153799362 0 +7 6202 12.644153799362 0 +7 6235 12.814556809491 0 +7 6235 12.814556809491 0 +7 6243 12.814716809491 0 +7 6243 12.814716809491 0 +7 6274 12.824398688243 0 +7 6274 12.824398688243 0 +7 6281 12.824558688243 0 +7 6281 12.824558688243 0 +7 6312 12.831276381695 0 +7 6312 12.831276381695 0 +7 6319 12.831436381695 0 +7 6319 12.831436381695 0 +7 6356 12.857384241685 0 +7 6356 12.857384241685 0 +7 6367 12.857544241685 0 +7 6367 12.857544241685 0 +7 6428 12.943993784749 0 +7 6428 12.943993784749 0 +7 6443 12.944153784749 0 +7 6443 12.944153784749 0 +7 6476 13.114556809491 0 +7 6476 13.114556809491 0 +7 6484 13.114716809491 0 +7 6484 13.114716809491 0 +7 6515 13.124398703844 0 +7 6515 13.124398703844 0 +7 6522 13.124558703844 0 +7 6522 13.124558703844 0 +7 6553 13.131276366027 0 +7 6553 13.131276366027 0 +7 6560 13.131436366027 0 +7 6560 13.131436366027 0 +7 6597 13.157384252586 0 +7 6597 13.157384252586 0 +7 6608 13.157544252586 0 +7 6608 13.157544252586 0 +7 6669 13.243993770092 0 +7 6669 13.243993770092 0 +7 6684 13.244153770092 0 +7 6684 13.244153770092 0 +7 6717 13.414556809491 0 +7 6717 13.414556809491 0 +7 6725 13.414716809491 0 +7 6725 13.414716809491 0 +7 6756 13.424398719435 0 +7 6756 13.424398719435 0 +7 6763 13.424558719435 0 +7 6763 13.424558719435 0 +7 6794 13.431276350417 0 +7 6794 13.431276350417 0 +7 6801 13.431436350417 0 +7 6801 13.431436350417 0 +7 6838 13.457384263637 0 +7 6838 13.457384263637 0 +7 6849 13.457544263637 0 +7 6849 13.457544263637 0 +7 6910 13.543993755468 0 +7 6910 13.543993755468 0 +7 6925 13.544153755468 0 +7 6925 13.544153755468 0 +7 6958 13.714556809491 0 +7 6958 13.714556809491 0 +7 6966 13.714716809491 0 +7 6966 13.714716809491 0 +7 6997 13.724398735043 0 +7 6997 13.724398735043 0 +7 7004 13.724558735043 0 +7 7004 13.724558735043 0 +7 7035 13.731276334798 0 +7 7035 13.731276334798 0 +7 7042 13.731436334798 0 +7 7042 13.731436334798 0 +7 7079 13.757384274837 0 +7 7079 13.757384274837 0 +7 7090 13.757544274837 0 +7 7090 13.757544274837 0 +7 7151 13.843993740827 0 +7 7151 13.843993740827 0 +7 7166 13.844153740827 0 +7 7166 13.844153740827 0 +7 7199 14.014556809491 0 +7 7199 14.014556809491 0 +7 7207 14.014716809491 0 +7 7207 14.014716809491 0 +7 7238 14.024398750707 0 +7 7238 14.024398750707 0 +7 7245 14.024558750707 0 +7 7245 14.024558750707 0 +7 7276 14.031276319127 0 +7 7276 14.031276319127 0 +7 7283 14.031436319127 0 +7 7283 14.031436319127 0 +7 7320 14.05738428623 0 +7 7320 14.05738428623 0 +7 7331 14.05754428623 0 +7 7331 14.05754428623 0 +7 7392 14.14399372616 0 +7 7392 14.14399372616 0 +7 7407 14.14415372616 0 +7 7407 14.14415372616 0 +7 7440 14.314556809491 0 +7 7440 14.314556809491 0 +7 7448 14.314716809491 0 +7 7448 14.314716809491 0 +7 7479 14.324398766341 0 +7 7479 14.324398766341 0 +7 7486 14.324558766341 0 +7 7486 14.324558766341 0 +7 7517 14.331276303517 0 +7 7517 14.331276303517 0 +7 7524 14.331436303517 0 +7 7524 14.331436303517 0 +7 7561 14.357384297742 0 +7 7561 14.357384297742 0 +7 7572 14.357544297742 0 +7 7572 14.357544297742 0 +7 7633 14.443993711546 0 +7 7633 14.443993711546 0 +7 7648 14.444153711546 0 +7 7648 14.444153711546 0 +7 7681 14.614556809491 0 +7 7681 14.614556809491 0 +7 7689 14.614716809491 0 +7 7689 14.614716809491 0 +7 7720 14.624398781946 0 +7 7720 14.624398781946 0 +7 7727 14.624558781946 0 +7 7727 14.624558781946 0 +7 7758 14.631276287929 0 +7 7758 14.631276287929 0 +7 7765 14.631436287929 0 +7 7765 14.631436287929 0 +7 7802 14.657384309371 0 +7 7802 14.657384309371 0 +7 7813 14.657544309371 0 +7 7813 14.657544309371 0 +7 7874 14.743993696951 0 +7 7874 14.743993696951 0 +7 7889 14.744153696951 0 +7 7889 14.744153696951 0 +7 7922 14.914556809491 0 +7 7922 14.914556809491 0 +7 7930 14.914716809491 0 +7 7930 14.914716809491 0 +7 7961 14.924398797557 0 +7 7961 14.924398797557 0 +7 7968 14.924558797557 0 +7 7968 14.924558797557 0 +7 7999 14.931276272358 0 +7 7999 14.931276272358 0 +7 8006 14.931436272358 0 +7 8006 14.931436272358 0 +7 8043 14.957384321127 0 +7 8043 14.957384321127 0 +7 8054 14.957544321127 0 +7 8054 14.957544321127 0 +7 8115 15.043993682366 0 +7 8115 15.043993682366 0 +7 8130 15.044153682366 0 +7 8130 15.044153682366 0 +7 8163 15.214556809491 0 +7 8163 15.214556809491 0 +7 8171 15.214716809491 0 +7 8171 15.214716809491 0 +7 8202 15.224398813176 0 +7 8202 15.224398813176 0 +7 8209 15.224558813176 0 +7 8209 15.224558813176 0 +7 8240 15.231276256794 0 +7 8240 15.231276256794 0 +7 8247 15.231436256794 0 +7 8247 15.231436256794 0 +7 8284 15.257384333003 0 +7 8284 15.257384333003 0 +7 8295 15.257544333003 0 +7 8295 15.257544333003 0 +7 8356 15.343993667781 0 +7 8356 15.343993667781 0 +7 8371 15.344153667781 0 +7 8371 15.344153667781 0 +7 8404 15.514556809491 0 +7 8404 15.514556809491 0 +7 8412 15.514716809491 0 +7 8412 15.514716809491 0 +7 8443 15.524398828841 0 +7 8443 15.524398828841 0 +7 8450 15.524558828841 0 +7 8450 15.524558828841 0 +7 8481 15.531276241243 0 +7 8481 15.531276241243 0 +7 8488 15.531436241243 0 +7 8488 15.531436241243 0 +7 8525 15.557384345028 0 +7 8525 15.557384345028 0 +7 8536 15.557544345028 0 +7 8536 15.557544345028 0 +7 8597 15.643993653166 0 +7 8597 15.643993653166 0 +7 8612 15.644153653166 0 +7 8612 15.644153653166 0 +7 8645 15.814556809491 0 +7 8645 15.814556809491 0 +7 8653 15.814716809491 0 +7 8653 15.814716809491 0 +7 8684 15.824398844455 0 +7 8684 15.824398844455 0 +7 8691 15.824558844455 0 +7 8691 15.824558844455 0 +7 8722 15.831276225819 0 +7 8722 15.831276225819 0 +7 8729 15.831436225819 0 +7 8729 15.831436225819 0 +7 8766 15.857384357121 0 +7 8766 15.857384357121 0 +7 8777 15.857544357121 0 +7 8777 15.857544357121 0 +7 8838 15.943993638616 0 +7 8838 15.943993638616 0 +7 8853 15.944153638616 0 +7 8853 15.944153638616 0 +7 8886 16.114556809491 0 +7 8886 16.114556809491 0 +7 8894 16.114716809491 0 +7 8894 16.114716809491 0 +7 8929 16.124398860085 0 +7 8929 16.124398860085 0 +7 8936 16.124558860085 0 +7 8936 16.124558860085 0 +7 8967 16.131276210464 0 +7 8967 16.131276210464 0 +7 8974 16.131436210464 0 +7 8974 16.131436210464 0 +7 9011 16.157384369327 0 +7 9011 16.157384369327 0 +7 9022 16.157544369327 0 +7 9022 16.157544369327 0 +7 9046 16.193586240802 0 +7 9046 16.193586240802 0 +7 9061 16.193746240802 0 +7 9061 16.193746240802 0 +7 9087 16.243993624037 0 +7 9087 16.243993624037 0 +7 9102 16.244153624037 0 +7 9102 16.244153624037 0 +7 9135 16.414556809491 0 +7 9135 16.414556809491 0 +7 9143 16.414716809491 0 +7 9143 16.414716809491 0 +7 9178 16.424398875726 0 +7 9178 16.424398875726 0 +7 9185 16.424558875726 0 +7 9185 16.424558875726 0 +7 9216 16.431276195381 0 +7 9216 16.431276195381 0 +7 9223 16.431436195381 0 +7 9223 16.431436195381 0 +7 9260 16.457384381652 0 +7 9260 16.457384381652 0 +7 9271 16.457544381652 0 +7 9271 16.457544381652 0 +7 9295 16.4935862136 0 +7 9295 16.4935862136 0 +7 9310 16.4937462136 0 +7 9310 16.4937462136 0 +7 9336 16.54399360942 0 +7 9336 16.54399360942 0 +7 9351 16.54415360942 0 +7 9351 16.54415360942 0 +7 9384 16.714556809491 0 +7 9384 16.714556809491 0 +7 9392 16.714716809491 0 +7 9392 16.714716809491 0 +7 9427 16.724398891381 0 +7 9427 16.724398891381 0 +7 9434 16.724558891381 0 +7 9434 16.724558891381 0 +7 9465 16.731276181333 0 +7 9465 16.731276181333 0 +7 9472 16.731436181333 0 +7 9472 16.731436181333 0 +7 9509 16.757384394067 0 +7 9509 16.757384394067 0 +7 9520 16.757544394067 0 +7 9520 16.757544394067 0 +7 9544 16.793586189096 0 +7 9544 16.793586189096 0 +7 9559 16.793746189096 0 +7 9559 16.793746189096 0 +7 9585 16.84399359486 0 +7 9585 16.84399359486 0 +7 9600 16.84415359486 0 +7 9600 16.84415359486 0 +7 9633 17.014556809491 0 +7 9633 17.014556809491 0 +7 9641 17.014716809491 0 +7 9641 17.014716809491 0 +7 9677 17.02439890702 0 +7 9677 17.02439890702 0 +7 9688 17.02455890702 0 +7 9688 17.02455890702 0 +7 9714 17.031276173692 0 +7 9714 17.031276173692 0 +7 9721 17.031436173692 0 +7 9721 17.031436173692 0 +7 9758 17.057384406545 0 +7 9758 17.057384406545 0 +7 9769 17.057544406545 0 +7 9769 17.057544406545 0 +7 9792 17.093586167318 0 +7 9792 17.093586167318 0 +7 9803 17.093746167318 0 +7 9803 17.093746167318 0 +7 9833 17.143993580311 0 +7 9833 17.143993580311 0 +7 9844 17.144153580311 0 +7 9844 17.144153580311 0 +7 9882 17.314556809491 0 +7 9882 17.314556809491 0 +7 9890 17.314716809491 0 +7 9890 17.314716809491 0 +7 9926 17.324398922703 0 +7 9926 17.324398922703 0 +7 9937 17.324558922703 0 +7 9937 17.324558922703 0 +7 9963 17.331276182573 0 +7 9963 17.331276182573 0 +7 9970 17.331436182573 0 +7 9970 17.331436182573 0 +7 10008 17.357384419138 0 +7 10008 17.357384419138 0 +7 10023 17.357544419138 0 +7 10023 17.357544419138 0 +7 10041 17.39358614821 0 +7 10041 17.39358614821 0 +7 10052 17.39374614821 0 +7 10052 17.39374614821 0 +7 10082 17.443993565736 0 +7 10082 17.443993565736 0 +7 10093 17.444153565736 0 +7 10093 17.444153565736 0 +7 10131 17.614556809491 0 +7 10131 17.614556809491 0 +7 10139 17.614716809491 0 +7 10139 17.614716809491 0 +7 10175 17.624398938357 0 +7 10175 17.624398938357 0 +7 10186 17.624558938357 0 +7 10186 17.624558938357 0 +7 10212 17.631276196794 0 +7 10212 17.631276196794 0 +7 10219 17.631436196794 0 +7 10219 17.631436196794 0 +7 10257 17.657384431773 0 +7 10257 17.657384431773 0 +7 10272 17.657544431773 0 +7 10272 17.657544431773 0 +7 10290 17.69358613177 0 +7 10290 17.69358613177 0 +7 10301 17.69374613177 0 +7 10301 17.69374613177 0 +7 10331 17.743993551191 0 +7 10331 17.743993551191 0 +7 10342 17.744153551191 0 +7 10342 17.744153551191 0 +7 10380 17.914556809491 0 +7 10380 17.914556809491 0 +7 10388 17.914716809491 0 +7 10388 17.914716809491 0 +7 10420 17.924398954 0 +7 10420 17.924398954 0 +7 10431 17.924558954 0 +7 10431 17.924558954 0 +7 10457 17.931276211881 0 +7 10457 17.931276211881 0 +7 10464 17.931436211881 0 +7 10464 17.931436211881 0 +7 10502 17.957384444486 0 +7 10502 17.957384444486 0 +7 10517 17.957544444486 0 +7 10517 17.957544444486 0 +7 10531 17.993586116127 0 +7 10531 17.993586116127 0 +7 10542 17.993746116127 0 +7 10542 17.993746116127 0 +7 10572 18.04399353668 0 +7 10572 18.04399353668 0 +7 10583 18.04415353668 0 +7 10583 18.04415353668 0 +7 10621 18.214556809491 0 +7 10621 18.214556809491 0 +7 10629 18.214716809491 0 +7 10629 18.214716809491 0 +7 10661 18.224398969656 0 +7 10661 18.224398969656 0 +7 10672 18.224558969656 0 +7 10672 18.224558969656 0 +7 10694 18.231276227234 0 +7 10694 18.231276227234 0 +7 10701 18.231436227234 0 +7 10701 18.231436227234 0 +7 10768 18.293586100476 0 +7 10768 18.293586100476 0 +7 10779 18.293746100476 0 +7 10779 18.293746100476 0 +7 10809 18.343993522105 0 +7 10809 18.343993522105 0 +7 10820 18.344153522105 0 +7 10820 18.344153522105 0 +7 10854 18.514556809491 0 +7 10854 18.514556809491 0 +7 10862 18.514716809491 0 +7 10862 18.514716809491 0 +7 10894 18.524398984772 0 +7 10894 18.524398984772 0 +7 10905 18.524558984772 0 +7 10905 18.524558984772 0 +7 10927 18.531276242598 0 +7 10927 18.531276242598 0 +7 10934 18.531436242598 0 +7 10934 18.531436242598 0 +7 11001 18.593586085525 0 +7 11001 18.593586085525 0 +7 11012 18.593746085525 0 +7 11012 18.593746085525 0 +7 11042 18.643993508193 0 +7 11042 18.643993508193 0 +7 11053 18.644153508193 0 +7 11053 18.644153508193 0 +7 11087 18.814556809491 0 +7 11087 18.814556809491 0 +7 11095 18.814716809491 0 +7 11095 18.814716809491 0 +7 11127 18.824398992869 0 +7 11127 18.824398992869 0 +7 11138 18.824558992869 0 +7 11138 18.824558992869 0 +7 11160 18.831276252819 0 +7 11160 18.831276252819 0 +7 11167 18.831436252819 0 +7 11167 18.831436252819 0 +7 11234 18.893586078461 0 +7 11234 18.893586078461 0 +7 11245 18.893746078461 0 +7 11245 18.893746078461 0 +7 11275 18.9439935017 0 +7 11275 18.9439935017 0 +7 11286 18.9441535017 0 +7 11286 18.9441535017 0 +7 11320 19.114556809491 0 +7 11320 19.114556809491 0 +7 11328 19.114716809491 0 +7 11328 19.114716809491 0 +7 11360 19.124398995465 0 +7 11360 19.124398995465 0 +7 11371 19.124558995465 0 +7 11371 19.124558995465 0 +7 11393 19.131276259429 0 +7 11393 19.131276259429 0 +7 11400 19.131436259429 0 +7 11400 19.131436259429 0 +7 11467 19.193586077908 0 +7 11467 19.193586077908 0 +7 11478 19.193746077908 0 +7 11478 19.193746077908 0 +7 11508 19.243993499144 0 +7 11508 19.243993499144 0 +7 11519 19.244153499144 0 +7 11519 19.244153499144 0 +7 11553 19.414556809491 0 +7 11553 19.414556809491 0 +7 11561 19.414716809491 0 +7 11561 19.414716809491 0 +7 11593 19.424398998137 0 +7 11593 19.424398998137 0 +7 11604 19.424558998137 0 +7 11604 19.424558998137 0 +7 11626 19.431276267371 0 +7 11626 19.431276267371 0 +7 11633 19.431436267371 0 +7 11633 19.431436267371 0 +7 11700 19.493586078167 0 +7 11700 19.493586078167 0 +7 11711 19.493746078167 0 +7 11711 19.493746078167 0 +7 11741 19.543993497268 0 +7 11741 19.543993497268 0 +7 11752 19.544153497268 0 +7 11752 19.544153497268 0 +7 11786 19.714556809491 0 +7 11786 19.714556809491 0 +7 11794 19.714716809491 0 +7 11794 19.714716809491 0 +7 11826 19.724399001753 0 +7 11826 19.724399001753 0 +7 11837 19.724559001753 0 +7 11837 19.724559001753 0 +7 11859 19.731276277055 0 +7 11859 19.731276277055 0 +7 11866 19.731436277055 0 +7 11866 19.731436277055 0 +7 11933 19.793586078318 0 +7 11933 19.793586078318 0 +7 11944 19.793746078318 0 +7 11944 19.793746078318 0 +7 11974 19.843993496076 0 +7 11974 19.843993496076 0 +7 11985 19.844153496076 0 +7 11985 19.844153496076 0 +7 12019 20.014556809491 0 +7 12019 20.014556809491 0 +7 12027 20.014716809491 0 +7 12027 20.014716809491 0 +7 12063 20.024399006417 0 +7 12063 20.024399006417 0 +7 12074 20.024559006417 0 +7 12074 20.024559006417 0 +7 12096 20.031276288225 0 +7 12096 20.031276288225 0 +7 12103 20.031436288225 0 +7 12103 20.031436288225 0 +7 12141 20.057384440568 0 +7 12141 20.057384440568 0 +7 12156 20.057544440568 0 +7 12156 20.057544440568 0 +7 12174 20.093586078154 0 +7 12174 20.093586078154 0 +7 12185 20.093746078154 0 +7 12185 20.093746078154 0 +7 12215 20.143993495659 0 +7 12215 20.143993495659 0 +7 12226 20.144153495659 0 +7 12226 20.144153495659 0 +7 12260 20.314556809491 0 +7 12260 20.314556809491 0 +7 12268 20.314716809491 0 +7 12268 20.314716809491 0 +7 12304 20.324399012107 0 +7 12304 20.324399012107 0 +7 12315 20.324559012107 0 +7 12315 20.324559012107 0 +7 12337 20.331276300497 0 +7 12337 20.331276300497 0 +7 12344 20.331436300497 0 +7 12344 20.331436300497 0 +7 12382 20.357384434459 0 +7 12382 20.357384434459 0 +7 12397 20.357544434459 0 +7 12397 20.357544434459 0 +7 12415 20.393586077762 0 +7 12415 20.393586077762 0 +7 12426 20.393746077762 0 +7 12426 20.393746077762 0 +7 12456 20.443993496115 0 +7 12456 20.443993496115 0 +7 12467 20.444153496115 0 +7 12467 20.444153496115 0 +7 12501 20.614556809491 0 +7 12501 20.614556809491 0 +7 12509 20.614716809491 0 +7 12509 20.614716809491 0 +7 12545 20.624399018883 0 +7 12545 20.624399018883 0 +7 12556 20.624559018883 0 +7 12556 20.624559018883 0 +7 12578 20.631276313658 0 +7 12578 20.631276313658 0 +7 12585 20.631436313658 0 +7 12585 20.631436313658 0 +7 12623 20.657384428826 0 +7 12623 20.657384428826 0 +7 12638 20.657544428826 0 +7 12638 20.657544428826 0 +7 12656 20.693586077186 0 +7 12656 20.693586077186 0 +7 12667 20.693746077186 0 +7 12667 20.693746077186 0 +7 12697 20.743993497538 0 +7 12697 20.743993497538 0 +7 12708 20.744153497538 0 +7 12708 20.744153497538 0 +7 12742 20.914556809491 0 +7 12742 20.914556809491 0 +7 12750 20.914716809491 0 +7 12750 20.914716809491 0 +7 12786 20.924399026768 0 +7 12786 20.924399026768 0 +7 12797 20.924559026768 0 +7 12797 20.924559026768 0 +7 12819 20.931276327544 0 +7 12819 20.931276327544 0 +7 12826 20.931436327544 0 +7 12826 20.931436327544 0 +7 12864 20.957384423566 0 +7 12864 20.957384423566 0 +7 12879 20.957544423566 0 +7 12879 20.957544423566 0 +7 12897 20.993586076495 0 +7 12897 20.993586076495 0 +7 12908 20.993746076495 0 +7 12908 20.993746076495 0 +7 12938 21.043993500002 0 +7 12938 21.043993500002 0 +7 12949 21.044153500002 0 +7 12949 21.044153500002 0 +7 12983 21.214556809491 0 +7 12983 21.214556809491 0 +7 12991 21.214716809491 0 +7 12991 21.214716809491 0 +7 13027 21.224399035584 0 +7 13027 21.224399035584 0 +7 13038 21.224559035584 0 +7 13038 21.224559035584 0 +7 13060 21.231276341939 0 +7 13060 21.231276341939 0 +7 13067 21.231436341939 0 +7 13067 21.231436341939 0 +7 13105 21.257384418748 0 +7 13105 21.257384418748 0 +7 13120 21.257544418748 0 +7 13120 21.257544418748 0 +7 13138 21.293586075717 0 +7 13138 21.293586075717 0 +7 13149 21.293746075717 0 +7 13149 21.293746075717 0 +7 13179 21.343993503566 0 +7 13179 21.343993503566 0 +7 13190 21.344153503566 0 +7 13190 21.344153503566 0 +7 13224 21.514556809491 0 +7 13224 21.514556809491 0 +7 13232 21.514716809491 0 +7 13232 21.514716809491 0 +7 13268 21.524399045258 0 +7 13268 21.524399045258 0 +7 13279 21.524559045258 0 +7 13279 21.524559045258 0 +7 13301 21.531276356826 0 +7 13301 21.531276356826 0 +7 13308 21.531436356826 0 +7 13308 21.531436356826 0 +7 13346 21.557384414308 0 +7 13346 21.557384414308 0 +7 13361 21.557544414308 0 +7 13361 21.557544414308 0 +7 13379 21.593586074727 0 +7 13379 21.593586074727 0 +7 13390 21.593746074727 0 +7 13390 21.593746074727 0 +7 13420 21.643993508321 0 +7 13420 21.643993508321 0 +7 13431 21.644153508321 0 +7 13431 21.644153508321 0 +7 13465 21.814556809491 0 +7 13465 21.814556809491 0 +7 13473 21.814716809491 0 +7 13473 21.814716809491 0 +7 13509 21.82439905578 0 +7 13509 21.82439905578 0 +7 13520 21.82455905578 0 +7 13520 21.82455905578 0 +7 13542 21.831276372147 0 +7 13542 21.831276372147 0 +7 13549 21.831436372147 0 +7 13549 21.831436372147 0 +7 13587 21.85738441021 0 +7 13587 21.85738441021 0 +7 13602 21.85754441021 0 +7 13602 21.85754441021 0 +7 13620 21.893586073568 0 +7 13620 21.893586073568 0 +7 13631 21.893746073568 0 +7 13631 21.893746073568 0 +7 13661 21.943993514273 0 +7 13661 21.943993514273 0 +7 13672 21.944153514273 0 +7 13672 21.944153514273 0 +7 13706 22.114556809491 0 +7 13706 22.114556809491 0 +7 13714 22.114716809491 0 +7 13714 22.114716809491 0 +7 13750 22.124399067102 0 +7 13750 22.124399067102 0 +7 13761 22.124559067102 0 +7 13761 22.124559067102 0 +7 13783 22.131276387853 0 +7 13783 22.131276387853 0 +7 13790 22.131436387853 0 +7 13790 22.131436387853 0 +7 13828 22.157384406427 0 +7 13828 22.157384406427 0 +7 13843 22.157544406427 0 +7 13843 22.157544406427 0 +7 13861 22.193586072252 0 +7 13861 22.193586072252 0 +7 13872 22.193746072252 0 +7 13872 22.193746072252 0 +7 13902 22.243993521464 0 +7 13902 22.243993521464 0 +7 13913 22.244153521464 0 +7 13913 22.244153521464 0 +7 13947 22.414556809491 0 +7 13947 22.414556809491 0 +7 13955 22.414716809491 0 +7 13955 22.414716809491 0 +7 13991 22.424399079181 0 +7 13991 22.424399079181 0 +7 14002 22.424559079181 0 +7 14002 22.424559079181 0 +7 14024 22.431276403914 0 +7 14024 22.431276403914 0 +7 14031 22.431436403914 0 +7 14031 22.431436403914 0 +7 14069 22.457384402943 0 +7 14069 22.457384402943 0 +7 14084 22.457544402943 0 +7 14084 22.457544402943 0 +7 14102 22.4935860709 0 +7 14102 22.4935860709 0 +7 14113 22.4937460709 0 +7 14113 22.4937460709 0 +7 14143 22.543993529992 0 +7 14143 22.543993529992 0 +7 14154 22.544153529992 0 +7 14154 22.544153529992 0 +7 14188 22.714556809491 0 +7 14188 22.714556809491 0 +7 14196 22.714716809491 0 +7 14196 22.714716809491 0 +7 14232 22.724399091991 0 +7 14232 22.724399091991 0 +7 14243 22.724559091991 0 +7 14243 22.724559091991 0 +7 14265 22.731276420334 0 +7 14265 22.731276420334 0 +7 14272 22.731436420334 0 +7 14272 22.731436420334 0 +7 14310 22.757384399779 0 +7 14310 22.757384399779 0 +7 14325 22.757544399779 0 +7 14325 22.757544399779 0 +7 14343 22.793586069444 0 +7 14343 22.793586069444 0 +7 14354 22.793746069444 0 +7 14354 22.793746069444 0 +7 14384 22.843993539394 0 +7 14384 22.843993539394 0 +7 14395 22.844153539394 0 +7 14395 22.844153539394 0 +7 14429 23.014556809491 0 +7 14429 23.014556809491 0 +7 14437 23.014716809491 0 +7 14437 23.014716809491 0 +7 14474 23.02439910552 0 +7 14474 23.02439910552 0 +7 14489 23.02455910552 0 +7 14489 23.02455910552 0 +7 14506 23.031276437066 0 +7 14506 23.031276437066 0 +7 14513 23.031436437066 0 +7 14513 23.031436437066 0 +7 14551 23.057384396928 0 +7 14551 23.057384396928 0 +7 14566 23.057544396928 0 +7 14566 23.057544396928 0 +7 14584 23.093586067888 0 +7 14584 23.093586067888 0 +7 14595 23.093746067888 0 +7 14595 23.093746067888 0 +7 14625 23.143993549741 0 +7 14625 23.143993549741 0 +7 14636 23.144153549741 0 +7 14636 23.144153549741 0 +7 14670 23.314556809491 0 +7 14670 23.314556809491 0 +7 14678 23.314716809491 0 +7 14678 23.314716809491 0 +7 14715 23.324399119693 0 +7 14715 23.324399119693 0 +7 14730 23.324559119693 0 +7 14730 23.324559119693 0 +7 14747 23.331276454133 0 +7 14747 23.331276454133 0 +7 14754 23.331436454133 0 +7 14754 23.331436454133 0 +7 14792 23.357384394378 0 +7 14792 23.357384394378 0 +7 14807 23.357544394378 0 +7 14807 23.357544394378 0 +7 14825 23.393586066244 0 +7 14825 23.393586066244 0 +7 14836 23.393746066244 0 +7 14836 23.393746066244 0 +7 14866 23.443993561136 0 +7 14866 23.443993561136 0 +7 14877 23.444153561136 0 +7 14877 23.444153561136 0 +7 14911 23.614556809491 0 +7 14911 23.614556809491 0 +7 14919 23.614716809491 0 +7 14919 23.614716809491 0 +7 14956 23.624399134588 0 +7 14956 23.624399134588 0 +7 14971 23.624559134588 0 +7 14971 23.624559134588 0 +7 14988 23.63127647154 0 +7 14988 23.63127647154 0 +7 14995 23.63143647154 0 +7 14995 23.63143647154 0 +7 15033 23.6573843921 0 +7 15033 23.6573843921 0 +7 15048 23.6575443921 0 +7 15048 23.6575443921 0 +7 15066 23.693586064635 0 +7 15066 23.693586064635 0 +7 15077 23.693746064635 0 +7 15077 23.693746064635 0 +7 15107 23.743993567162 0 +7 15107 23.743993567162 0 +7 15118 23.744153567162 0 +7 15118 23.744153567162 0 +7 15152 23.914556809491 0 +7 15152 23.914556809491 0 +7 15160 23.914716809491 0 +7 15160 23.914716809491 0 +7 15197 23.924399150101 0 +7 15197 23.924399150101 0 +7 15212 23.924559150101 0 +7 15212 23.924559150101 0 +7 15230 23.931276489241 0 +7 15230 23.931276489241 0 +7 15241 23.931436489241 0 +7 15241 23.931436489241 0 +7 15274 23.957384390086 0 +7 15274 23.957384390086 0 +7 15289 23.957544390086 0 +7 15289 23.957544390086 0 +7 15307 23.993586063012 0 +7 15307 23.993586063012 0 +7 15318 23.993746063012 0 +7 15318 23.993746063012 0 +7 15348 24.043993568182 0 +7 15348 24.043993568182 0 +7 15359 24.044153568182 0 +7 15359 24.044153568182 0 +7 15393 24.214556809491 0 +7 15393 24.214556809491 0 +7 15401 24.214716809491 0 +7 15401 24.214716809491 0 +7 15438 24.224399166253 0 +7 15438 24.224399166253 0 +7 15453 24.224559166253 0 +7 15453 24.224559166253 0 +7 15471 24.231276507166 0 +7 15471 24.231276507166 0 +7 15482 24.231436507166 0 +7 15482 24.231436507166 0 +7 15514 24.257384388316 0 +7 15514 24.257384388316 0 +7 15525 24.257544388316 0 +7 15525 24.257544388316 0 +7 15548 24.293586061339 0 +7 15548 24.293586061339 0 +7 15559 24.293746061339 0 +7 15559 24.293746061339 0 +7 15589 24.343993571496 0 +7 15589 24.343993571496 0 +7 15600 24.344153571496 0 +7 15600 24.344153571496 0 +7 15634 24.514556809491 0 +7 15634 24.514556809491 0 +7 15642 24.514716809491 0 +7 15642 24.514716809491 0 +7 15679 24.524399183101 0 +7 15679 24.524399183101 0 +7 15694 24.524559183101 0 +7 15694 24.524559183101 0 +7 15712 24.531276525482 0 +7 15712 24.531276525482 0 +7 15723 24.531436525482 0 +7 15723 24.531436525482 0 +7 15755 24.557384386729 0 +7 15755 24.557384386729 0 +7 15766 24.557544386729 0 +7 15766 24.557544386729 0 +7 15789 24.593586059807 0 +7 15789 24.593586059807 0 +7 15800 24.593746059807 0 +7 15800 24.593746059807 0 +7 15830 24.6439935745 0 +7 15830 24.6439935745 0 +7 15841 24.6441535745 0 +7 15841 24.6441535745 0 +7 15875 24.814556809491 0 +7 15875 24.814556809491 0 +7 15883 24.814716809491 0 +7 15883 24.814716809491 0 +7 15920 24.824399200464 0 +7 15920 24.824399200464 0 +7 15935 24.824559200464 0 +7 15935 24.824559200464 0 +7 15953 24.831276544164 0 +7 15953 24.831276544164 0 +7 15964 24.831436544164 0 +7 15964 24.831436544164 0 +7 15996 24.857384385359 0 +7 15996 24.857384385359 0 +7 16007 24.857544385359 0 +7 16007 24.857544385359 0 +7 16030 24.893586058439 0 +7 16030 24.893586058439 0 +7 16041 24.893746058439 0 +7 16041 24.893746058439 0 +7 16071 24.943993577203 0 +7 16071 24.943993577203 0 +7 16082 24.944153577203 0 +7 16082 24.944153577203 0 +7 16116 25.114556809491 0 +7 16116 25.114556809491 0 +7 16124 25.114716809491 0 +7 16124 25.114716809491 0 +7 16161 25.12439921797 0 +7 16161 25.12439921797 0 +7 16176 25.12455921797 0 +7 16176 25.12455921797 0 +7 16194 25.131276563184 0 +7 16194 25.131276563184 0 +7 16205 25.131436563184 0 +7 16205 25.131436563184 0 +7 16237 25.157384384197 0 +7 16237 25.157384384197 0 +7 16248 25.157544384197 0 +7 16248 25.157544384197 0 +7 16271 25.193586057203 0 +7 16271 25.193586057203 0 +7 16282 25.193746057203 0 +7 16282 25.193746057203 0 +7 16312 25.24399357959 0 +7 16312 25.24399357959 0 +7 16323 25.24415357959 0 +7 16323 25.24415357959 0 +7 16357 25.414556809491 0 +7 16357 25.414556809491 0 +7 16365 25.414716809491 0 +7 16365 25.414716809491 0 +7 16402 25.424399235494 0 +7 16402 25.424399235494 0 +7 16417 25.424559235494 0 +7 16417 25.424559235494 0 +7 16435 25.431276582461 0 +7 16435 25.431276582461 0 +7 16446 25.431436582461 0 +7 16446 25.431436582461 0 +7 16478 25.457384383218 0 +7 16478 25.457384383218 0 +7 16489 25.457544383218 0 +7 16489 25.457544383218 0 +7 16512 25.493586056133 0 +7 16512 25.493586056133 0 +7 16523 25.493746056133 0 +7 16523 25.493746056133 0 +7 16553 25.543993581628 0 +7 16553 25.543993581628 0 +7 16564 25.544153581628 0 +7 16564 25.544153581628 0 +7 16598 25.714556809491 0 +7 16598 25.714556809491 0 +7 16606 25.714716809491 0 +7 16606 25.714716809491 0 +7 16643 25.72439925309 0 +7 16643 25.72439925309 0 +7 16658 25.72455925309 0 +7 16658 25.72455925309 0 +7 16676 25.731276602139 0 +7 16676 25.731276602139 0 +7 16687 25.731436602139 0 +7 16687 25.731436602139 0 +7 16719 25.757384382378 0 +7 16719 25.757384382378 0 +7 16730 25.757544382378 0 +7 16730 25.757544382378 0 +7 16753 25.793586055358 0 +7 16753 25.793586055358 0 +7 16764 25.793746055358 0 +7 16764 25.793746055358 0 +7 16794 25.843993583304 0 +7 16794 25.843993583304 0 +7 16805 25.844153583304 0 +7 16805 25.844153583304 0 +7 16839 26.014556809491 0 +7 16839 26.014556809491 0 +7 16847 26.014716809491 0 +7 16847 26.014716809491 0 +7 16884 26.02439927079 0 +7 16884 26.02439927079 0 +7 16899 26.02455927079 0 +7 16899 26.02455927079 0 +7 16917 26.031276621424 0 +7 16917 26.031276621424 0 +7 16928 26.031436621424 0 +7 16928 26.031436621424 0 +7 16960 26.057384381741 0 +7 16960 26.057384381741 0 +7 16971 26.057544381741 0 +7 16971 26.057544381741 0 +7 16994 26.093586054815 0 +7 16994 26.093586054815 0 +7 17005 26.093746054815 0 +7 17005 26.093746054815 0 +7 17035 26.143993584607 0 +7 17035 26.143993584607 0 +7 17046 26.144153584607 0 +7 17046 26.144153584607 0 +7 17080 26.314556809491 0 +7 17080 26.314556809491 0 +7 17088 26.314716809491 0 +7 17088 26.314716809491 0 +7 17125 26.324399288461 0 +7 17125 26.324399288461 0 +7 17140 26.324559288461 0 +7 17140 26.324559288461 0 +7 17158 26.331276639945 0 +7 17158 26.331276639945 0 +7 17169 26.331436639945 0 +7 17169 26.331436639945 0 +7 17201 26.357384381246 0 +7 17201 26.357384381246 0 +7 17212 26.357544381246 0 +7 17212 26.357544381246 0 +7 17235 26.393586054911 0 +7 17235 26.393586054911 0 +7 17246 26.393746054911 0 +7 17246 26.393746054911 0 +7 17276 26.443993585474 0 +7 17276 26.443993585474 0 +7 17287 26.444153585474 0 +7 17287 26.444153585474 0 +7 17321 26.614556809491 0 +7 17321 26.614556809491 0 +7 17329 26.614716809491 0 +7 17329 26.614716809491 0 +7 17366 26.624399306213 0 +7 17366 26.624399306213 0 +7 17381 26.624559306213 0 +7 17381 26.624559306213 0 +7 17399 26.631276657697 0 +7 17399 26.631276657697 0 +7 17410 26.631436657697 0 +7 17410 26.631436657697 0 +7 17442 26.657384380772 0 +7 17442 26.657384380772 0 +7 17453 26.657544380772 0 +7 17453 26.657544380772 0 +7 17476 26.693586055774 0 +7 17476 26.693586055774 0 +7 17487 26.693746055774 0 +7 17487 26.693746055774 0 +7 17517 26.743993585917 0 +7 17517 26.743993585917 0 +7 17528 26.744153585917 0 +7 17528 26.744153585917 0 +7 17562 26.914556809491 0 +7 17562 26.914556809491 0 +7 17570 26.914716809491 0 +7 17570 26.914716809491 0 +7 17607 26.924399324013 0 +7 17607 26.924399324013 0 +7 17622 26.924559324013 0 +7 17622 26.924559324013 0 +7 17640 26.931276674713 0 +7 17640 26.931276674713 0 +7 17651 26.931436674713 0 +7 17651 26.931436674713 0 +7 17683 26.957384380173 0 +7 17683 26.957384380173 0 +7 17694 26.957544380173 0 +7 17694 26.957544380173 0 +7 17717 26.993586057387 0 +7 17717 26.993586057387 0 +7 17728 26.993746057387 0 +7 17728 26.993746057387 0 +7 17758 27.043993586021 0 +7 17758 27.043993586021 0 +7 17769 27.044153586021 0 +7 17769 27.044153586021 0 +7 17803 27.214556809491 0 +7 17803 27.214556809491 0 +7 17811 27.214716809491 0 +7 17811 27.214716809491 0 +7 17844 27.224399341349 0 +7 17844 27.224399341349 0 +7 17859 27.224559341349 0 +7 17859 27.224559341349 0 +7 17873 27.231276690939 0 +7 17873 27.231276690939 0 +7 17884 27.231436690939 0 +7 17884 27.231436690939 0 +7 17916 27.257384379228 0 +7 17916 27.257384379228 0 +7 17927 27.257544379228 0 +7 17927 27.257544379228 0 +7 17950 27.293586059723 0 +7 17950 27.293586059723 0 +7 17961 27.293746059723 0 +7 17961 27.293746059723 0 +7 17991 27.343993585835 0 +7 17991 27.343993585835 0 +7 18002 27.344153585835 0 +7 18002 27.344153585835 0 +7 18036 27.514556809491 0 +7 18036 27.514556809491 0 +7 18044 27.514716809491 0 +7 18044 27.514716809491 0 +7 18106 27.531276706855 0 +7 18106 27.531276706855 0 +7 18117 27.531436706855 0 +7 18117 27.531436706855 0 +7 18149 27.557384377938 0 +7 18149 27.557384377938 0 +7 18160 27.557544377938 0 +7 18160 27.557544377938 0 +7 18183 27.593586062815 0 +7 18183 27.593586062815 0 +7 18194 27.593746062815 0 +7 18194 27.593746062815 0 +7 18224 27.643993585638 0 +7 18224 27.643993585638 0 +7 18235 27.644153585638 0 +7 18235 27.644153585638 0 +7 18269 27.814556809491 0 +7 18269 27.814556809491 0 +7 18277 27.814716809491 0 +7 18277 27.814716809491 0 +7 18339 27.831276720086 0 +7 18339 27.831276720086 0 +7 18350 27.831436720086 0 +7 18350 27.831436720086 0 +7 18382 27.857384376349 0 +7 18382 27.857384376349 0 +7 18393 27.857544376349 0 +7 18393 27.857544376349 0 +7 18416 27.893586066606 0 +7 18416 27.893586066606 0 +7 18427 27.893746066606 0 +7 18427 27.893746066606 0 +7 18457 27.943993585413 0 +7 18457 27.943993585413 0 +7 18468 27.944153585413 0 +7 18468 27.944153585413 0 +7 18502 28.114556809491 0 +7 18502 28.114556809491 0 +7 18510 28.114716809491 0 +7 18510 28.114716809491 0 +7 18572 28.13127672571 0 +7 18572 28.13127672571 0 +7 18583 28.13143672571 0 +7 18583 28.13143672571 0 +7 18615 28.157384373989 0 +7 18615 28.157384373989 0 +7 18626 28.157544373989 0 +7 18626 28.157544373989 0 +7 18649 28.193586071088 0 +7 18649 28.193586071088 0 +7 18660 28.193746071088 0 +7 18660 28.193746071088 0 +7 18690 28.243993585227 0 +7 18690 28.243993585227 0 +7 18701 28.244153585227 0 +7 18701 28.244153585227 0 +7 18735 28.414556809491 0 +7 18735 28.414556809491 0 +7 18743 28.414716809491 0 +7 18743 28.414716809491 0 +7 18805 28.431276732587 0 +7 18805 28.431276732587 0 +7 18816 28.431436732587 0 +7 18816 28.431436732587 0 +7 18848 28.457384371101 0 +7 18848 28.457384371101 0 +7 18859 28.457544371101 0 +7 18859 28.457544371101 0 +7 18882 28.493586076328 0 +7 18882 28.493586076328 0 +7 18893 28.493746076328 0 +7 18893 28.493746076328 0 +7 18923 28.543993585019 0 +7 18923 28.543993585019 0 +7 18934 28.544153585019 0 +7 18934 28.544153585019 0 +7 18968 28.714556809491 0 +7 18968 28.714556809491 0 +7 18976 28.714716809491 0 +7 18976 28.714716809491 0 +7 19039 28.731276740327 0 +7 19039 28.731276740327 0 +7 19054 28.731436740327 0 +7 19054 28.731436740327 0 +7 19081 28.75738436664 0 +7 19081 28.75738436664 0 +7 19092 28.75754436664 0 +7 19092 28.75754436664 0 +7 19116 28.793586082194 0 +7 19116 28.793586082194 0 +7 19131 28.793746082194 0 +7 19131 28.793746082194 0 +7 19156 28.843993584814 0 +7 19156 28.843993584814 0 +7 19167 28.844153584814 0 +7 19167 28.844153584814 0 +7 19201 29.014556809491 0 +7 19201 29.014556809491 0 +7 19209 29.014716809491 0 +7 19209 29.014716809491 0 +7 19272 29.031276748231 0 +7 19272 29.031276748231 0 +7 19287 29.031436748231 0 +7 19287 29.031436748231 0 +7 19310 29.057384360134 0 +7 19310 29.057384360134 0 +7 19321 29.057544360134 0 +7 19321 29.057544360134 0 +7 19341 29.093586088751 0 +7 19341 29.093586088751 0 +7 19356 29.093746088751 0 +7 19356 29.093746088751 0 +7 19381 29.143993584619 0 +7 19381 29.143993584619 0 +7 19392 29.144153584619 0 +7 19392 29.144153584619 0 +7 19426 29.314556809491 0 +7 19426 29.314556809491 0 +7 19434 29.314716809491 0 +7 19434 29.314716809491 0 +7 19497 29.331276756353 0 +7 19497 29.331276756353 0 +7 19512 29.331436756353 0 +7 19512 29.331436756353 0 +7 19534 29.357384350663 0 +7 19534 29.357384350663 0 +7 19541 29.357544350663 0 +7 19541 29.357544350663 0 +7 19566 29.393586095971 0 +7 19566 29.393586095971 0 +7 19581 29.393746095971 0 +7 19581 29.393746095971 0 +7 19606 29.443993584404 0 +7 19606 29.443993584404 0 +7 19617 29.444153584404 0 +7 19617 29.444153584404 0 +7 19651 29.614556809491 0 +7 19651 29.614556809491 0 +7 19659 29.614716809491 0 +7 19659 29.614716809491 0 +7 19722 29.631276764677 0 +7 19722 29.631276764677 0 +7 19737 29.631436764677 0 +7 19737 29.631436764677 0 +7 19759 29.657384339017 0 +7 19759 29.657384339017 0 +7 19766 29.657544339017 0 +7 19766 29.657544339017 0 +7 19791 29.693586103788 0 +7 19791 29.693586103788 0 +7 19806 29.693746103788 0 +7 19806 29.693746103788 0 +7 19831 29.743993584219 0 +7 19831 29.743993584219 0 +7 19842 29.744153584219 0 +7 19842 29.744153584219 0 +7 19876 29.914556809491 0 +7 19876 29.914556809491 0 +7 19884 29.914716809491 0 +7 19884 29.914716809491 0 +7 19947 29.931276773214 0 +7 19947 29.931276773214 0 +7 19962 29.931436773214 0 +7 19962 29.931436773214 0 +7 19984 29.957384326873 0 +7 19984 29.957384326873 0 +7 19991 29.957544326873 0 +7 19991 29.957544326873 0 +7 20016 29.993586112191 0 +7 20016 29.993586112191 0 +7 20031 29.993746112191 0 +7 20031 29.993746112191 0 +7 20056 30.043993584023 0 +7 20056 30.043993584023 0 +7 20067 30.044153584023 0 +7 20067 30.044153584023 0 +7 20101 30.214556809491 0 +7 20101 30.214556809491 0 +7 20109 30.214716809491 0 +7 20109 30.214716809491 0 +7 20172 30.231276781919 0 +7 20172 30.231276781919 0 +7 20187 30.231436781919 0 +7 20187 30.231436781919 0 +7 20209 30.257384314288 0 +7 20209 30.257384314288 0 +7 20216 30.257544314288 0 +7 20216 30.257544314288 0 +7 20241 30.293586121137 0 +7 20241 30.293586121137 0 +7 20256 30.293746121137 0 +7 20256 30.293746121137 0 +7 20281 30.343993583815 0 +7 20281 30.343993583815 0 +7 20292 30.344153583815 0 +7 20292 30.344153583815 0 +7 20326 30.514556809491 0 +7 20326 30.514556809491 0 +7 20334 30.514716809491 0 +7 20334 30.514716809491 0 +7 20397 30.531276790863 0 +7 20397 30.531276790863 0 +7 20412 30.531436790863 0 +7 20412 30.531436790863 0 +7 20434 30.557384301358 0 +7 20434 30.557384301358 0 +7 20441 30.557544301358 0 +7 20441 30.557544301358 0 +7 20466 30.593586130599 0 +7 20466 30.593586130599 0 +7 20481 30.593746130599 0 +7 20481 30.593746130599 0 +7 20506 30.643993583594 0 +7 20506 30.643993583594 0 +7 20517 30.644153583594 0 +7 20517 30.644153583594 0 +7 20551 30.814556809491 0 +7 20551 30.814556809491 0 +7 20559 30.814716809491 0 +7 20559 30.814716809491 0 +7 20623 30.831276800084 0 +7 20623 30.831276800084 0 +7 20642 30.831436800084 0 +7 20642 30.831436800084 0 +7 20659 30.857384288203 0 +7 20659 30.857384288203 0 +7 20666 30.857544288203 0 +7 20666 30.857544288203 0 +7 20691 30.893586140579 0 +7 20691 30.893586140579 0 +7 20706 30.893746140579 0 +7 20706 30.893746140579 0 +7 20731 30.943993583376 0 +7 20731 30.943993583376 0 +7 20742 30.944153583376 0 +7 20742 30.944153583376 0 +7 20776 31.114556809491 0 +7 20776 31.114556809491 0 +7 20784 31.114716809491 0 +7 20784 31.114716809491 0 +7 20852 31.131276809733 0 +7 20852 31.131276809733 0 +7 20871 31.131436809733 0 +7 20871 31.131436809733 0 +7 20888 31.157384274763 0 +7 20888 31.157384274763 0 +7 20895 31.157544274763 0 +7 20895 31.157544274763 0 +7 20920 31.193586151091 0 +7 20920 31.193586151091 0 +7 20935 31.193746151091 0 +7 20935 31.193746151091 0 +7 20964 31.243993583185 0 +7 20964 31.243993583185 0 +7 20975 31.244153583185 0 +7 20975 31.244153583185 0 +7 21009 31.414556809491 0 +7 21009 31.414556809491 0 +7 21017 31.414716809491 0 +7 21017 31.414716809491 0 +7 21085 31.43127681984 0 +7 21085 31.43127681984 0 +7 21104 31.43143681984 0 +7 21104 31.43143681984 0 +7 21121 31.45738426113 0 +7 21121 31.45738426113 0 +7 21128 31.45754426113 0 +7 21128 31.45754426113 0 +7 21153 31.493586162045 0 +7 21153 31.493586162045 0 +7 21168 31.493746162045 0 +7 21168 31.493746162045 0 +7 21197 31.543993582999 0 +7 21197 31.543993582999 0 +7 21208 31.544153582999 0 +7 21208 31.544153582999 0 +7 21242 31.714556809491 0 +7 21242 31.714556809491 0 +7 21250 31.714716809491 0 +7 21250 31.714716809491 0 +7 21318 31.73127683044 0 +7 21318 31.73127683044 0 +7 21337 31.73143683044 0 +7 21337 31.73143683044 0 +7 21354 31.757384247459 0 +7 21354 31.757384247459 0 +7 21361 31.757544247459 0 +7 21361 31.757544247459 0 +7 21386 31.793586173478 0 +7 21386 31.793586173478 0 +7 21401 31.793746173478 0 +7 21401 31.793746173478 0 +7 21429 31.843993582814 0 +7 21429 31.843993582814 0 +7 21436 31.844153582814 0 +7 21436 31.844153582814 0 +7 21475 32.014556809491 0 +7 21475 32.014556809491 0 +7 21483 32.014716809491 0 +7 21483 32.014716809491 0 +7 21551 32.031276841444 0 +7 21551 32.031276841444 0 +7 21570 32.031436841444 0 +7 21570 32.031436841444 0 +7 21587 32.057384234163 0 +7 21587 32.057384234163 0 +7 21594 32.057544234163 0 +7 21594 32.057544234163 0 +7 21620 32.093586185302 0 +7 21620 32.093586185302 0 +7 21639 32.093746185302 0 +7 21639 32.093746185302 0 +7 21662 32.143993582627 0 +7 21662 32.143993582627 0 +7 21669 32.144153582627 0 +7 21669 32.144153582627 0 +7 21708 32.314556809491 0 +7 21708 32.314556809491 0 +7 21716 32.314716809491 0 +7 21716 32.314716809491 0 +7 21784 32.331276852904 0 +7 21784 32.331276852904 0 +7 21803 32.331436852904 0 +7 21803 32.331436852904 0 +7 21820 32.357384221209 0 +7 21820 32.357384221209 0 +7 21827 32.357544221209 0 +7 21827 32.357544221209 0 +7 21853 32.393586197538 0 +7 21853 32.393586197538 0 +7 21872 32.393746197538 0 +7 21872 32.393746197538 0 +7 21895 32.44399358243 0 +7 21895 32.44399358243 0 +7 21902 32.44415358243 0 +7 21902 32.44415358243 0 +7 21941 32.614556809491 0 +7 21941 32.614556809491 0 +7 21949 32.614716809491 0 +7 21949 32.614716809491 0 +7 22017 32.631276864721 0 +7 22017 32.631276864721 0 +7 22036 32.631436864721 0 +7 22036 32.631436864721 0 +7 22053 32.657384208687 0 +7 22053 32.657384208687 0 +7 22060 32.657544208687 0 +7 22060 32.657544208687 0 +7 22086 32.693586210128 0 +7 22086 32.693586210128 0 +7 22105 32.693746210128 0 +7 22105 32.693746210128 0 +7 22128 32.743993582216 0 +7 22128 32.743993582216 0 +7 22135 32.744153582216 0 +7 22135 32.744153582216 0 +7 22174 32.914556809491 0 +7 22174 32.914556809491 0 +7 22182 32.914716809491 0 +7 22182 32.914716809491 0 +7 22250 32.931276876958 0 +7 22250 32.931276876958 0 +7 22269 32.931436876958 0 +7 22269 32.931436876958 0 +7 22286 32.957384196619 0 +7 22286 32.957384196619 0 +7 22293 32.957544196619 0 +7 22293 32.957544196619 0 +7 22319 32.993586223119 0 +7 22319 32.993586223119 0 +7 22338 32.993746223119 0 +7 22338 32.993746223119 0 +7 22361 33.043993582014 0 +7 22361 33.043993582014 0 +7 22368 33.044153582014 0 +7 22368 33.044153582014 0 +7 22407 33.214556809491 0 +7 22407 33.214556809491 0 +7 22415 33.214716809491 0 +7 22415 33.214716809491 0 +7 22483 33.231276889508 0 +7 22483 33.231276889508 0 +7 22502 33.231436889508 0 +7 22502 33.231436889508 0 +7 22519 33.25738418501 0 +7 22519 33.25738418501 0 +7 22526 33.25754418501 0 +7 22526 33.25754418501 0 +7 22552 33.293586236404 0 +7 22552 33.293586236404 0 +7 22571 33.293746236404 0 +7 22571 33.293746236404 0 +7 22594 33.34399358181 0 +7 22594 33.34399358181 0 +7 22601 33.34415358181 0 +7 22601 33.34415358181 0 +7 22640 33.514556809491 0 +7 22640 33.514556809491 0 +7 22648 33.514716809491 0 +7 22648 33.514716809491 0 +7 22716 33.531276902417 0 +7 22716 33.531276902417 0 +7 22735 33.531436902417 0 +7 22735 33.531436902417 0 +7 22752 33.557384173944 0 +7 22752 33.557384173944 0 +7 22759 33.557544173944 0 +7 22759 33.557544173944 0 +7 22785 33.593586250026 0 +7 22785 33.593586250026 0 +7 22804 33.593746250026 0 +7 22804 33.593746250026 0 +7 22827 33.643993581593 0 +7 22827 33.643993581593 0 +7 22834 33.644153581593 0 +7 22834 33.644153581593 0 +7 22873 33.814556809491 0 +7 22873 33.814556809491 0 +7 22881 33.814716809491 0 +7 22881 33.814716809491 0 +7 22945 33.831276915646 0 +7 22945 33.831276915646 0 +7 22964 33.831436915646 0 +7 22964 33.831436915646 0 +7 22981 33.857384163418 0 +7 22981 33.857384163418 0 +7 22988 33.857544163418 0 +7 22988 33.857544163418 0 +7 23051 33.943993581377 0 +7 23051 33.943993581377 0 +7 23057 33.944153581377 0 +7 23057 33.944153581377 0 +7 23089 34.114556809491 0 +7 23089 34.114556809491 0 +7 23096 34.114716809491 0 +7 23096 34.114716809491 0 +7 23175 34.157384153508 0 +7 23175 34.157384153508 0 +7 23181 34.157544153508 0 +7 23181 34.157544153508 0 +7 23209 34.243993581155 0 +7 23209 34.243993581155 0 +7 23215 34.244153581155 0 +7 23215 34.244153581155 0 +7 23247 34.414556809491 0 +7 23247 34.414556809491 0 +7 23254 34.414716809491 0 +7 23254 34.414716809491 0 +7 23333 34.457384144204 0 +7 23333 34.457384144204 0 +7 23339 34.457544144204 0 +7 23339 34.457544144204 0 +7 23367 34.543993580981 0 +7 23367 34.543993580981 0 +7 23373 34.544153580981 0 +7 23373 34.544153580981 0 +7 23405 34.714556809491 0 +7 23405 34.714556809491 0 +7 23412 34.714716809491 0 +7 23412 34.714716809491 0 +7 23491 34.75738413555 0 +7 23491 34.75738413555 0 +7 23497 34.75754413555 0 +7 23497 34.75754413555 0 +7 23525 34.843993580776 0 +7 23525 34.843993580776 0 +7 23531 34.844153580776 0 +7 23531 34.844153580776 0 +7 23563 35.014556809491 0 +7 23563 35.014556809491 0 +7 23570 35.014716809491 0 +7 23570 35.014716809491 0 +7 23649 35.057384127604 0 +7 23649 35.057384127604 0 +7 23655 35.057544127604 0 +7 23655 35.057544127604 0 +7 23683 35.143993580566 0 +7 23683 35.143993580566 0 +7 23689 35.144153580566 0 +7 23689 35.144153580566 0 +7 23725 35.314556809491 0 +7 23725 35.314556809491 0 +7 23732 35.314716809491 0 +7 23732 35.314716809491 0 +7 23811 35.357384120761 0 +7 23811 35.357384120761 0 +7 23817 35.357544120761 0 +7 23817 35.357544120761 0 +7 23849 35.443993580357 0 +7 23849 35.443993580357 0 +7 23855 35.444153580357 0 +7 23855 35.444153580357 0 +7 23891 35.614556809491 0 +7 23891 35.614556809491 0 +7 23898 35.614716809491 0 +7 23898 35.614716809491 0 +7 23977 35.657384115863 0 +7 23977 35.657384115863 0 +7 23983 35.657544115863 0 +7 23983 35.657544115863 0 +7 24015 35.743993580181 0 +7 24015 35.743993580181 0 +7 24021 35.744153580181 0 +7 24021 35.744153580181 0 +7 24057 35.914556809491 0 +7 24057 35.914556809491 0 +7 24064 35.914716809491 0 +7 24064 35.914716809491 0 +7 24143 35.957384112909 0 +7 24143 35.957384112909 0 +7 24149 35.957544112909 0 +7 24149 35.957544112909 0 +7 24181 36.043993579975 0 +7 24181 36.043993579975 0 +7 24187 36.044153579975 0 +7 24187 36.044153579975 0 +7 24223 36.214556809491 0 +7 24223 36.214556809491 0 +7 24230 36.214716809491 0 +7 24230 36.214716809491 0 +7 24309 36.257384111896 0 +7 24309 36.257384111896 0 +7 24315 36.257544111896 0 +7 24315 36.257544111896 0 +7 24347 36.343993579779 0 +7 24347 36.343993579779 0 +7 24353 36.344153579779 0 +7 24353 36.344153579779 0 +7 24389 36.514556809491 0 +7 24389 36.514556809491 0 +7 24396 36.514716809491 0 +7 24396 36.514716809491 0 +7 24475 36.557384112695 0 +7 24475 36.557384112695 0 +7 24481 36.557544112695 0 +7 24481 36.557544112695 0 +7 24513 36.64399357959 0 +7 24513 36.64399357959 0 +7 24519 36.64415357959 0 +7 24519 36.64415357959 0 +7 24555 36.814556809491 0 +7 24555 36.814556809491 0 +7 24562 36.814716809491 0 +7 24562 36.814716809491 0 +7 24641 36.857384114665 0 +7 24641 36.857384114665 0 +7 24647 36.857544114665 0 +7 24647 36.857544114665 0 +7 24679 36.943993579358 0 +7 24679 36.943993579358 0 +7 24685 36.944153579358 0 +7 24685 36.944153579358 0 +7 24721 37.114556809491 0 +7 24721 37.114556809491 0 +7 24728 37.114716809491 0 +7 24728 37.114716809491 0 +7 24807 37.157384116577 0 +7 24807 37.157384116577 0 +7 24813 37.157544116577 0 +7 24813 37.157544116577 0 +7 24845 37.243993577605 0 +7 24845 37.243993577605 0 +7 24851 37.244153577605 0 +7 24851 37.244153577605 0 +7 24887 37.414556809491 0 +7 24887 37.414556809491 0 +7 24894 37.414716809491 0 +7 24894 37.414716809491 0 +7 24973 37.457384118525 0 +7 24973 37.457384118525 0 +7 24979 37.457544118525 0 +7 24979 37.457544118525 0 +7 25011 37.543993572915 0 +7 25011 37.543993572915 0 +7 25017 37.544153572915 0 +7 25017 37.544153572915 0 +7 25053 37.714556809491 0 +7 25053 37.714556809491 0 +7 25060 37.714716809491 0 +7 25060 37.714716809491 0 +7 25139 37.757384120668 0 +7 25139 37.757384120668 0 +7 25145 37.757544120668 0 +7 25145 37.757544120668 0 +7 25177 37.843993571184 0 +7 25177 37.843993571184 0 +7 25183 37.844153571184 0 +7 25183 37.844153571184 0 +7 25219 38.014556809491 0 +7 25219 38.014556809491 0 +7 25226 38.014716809491 0 +7 25226 38.014716809491 0 +7 25305 38.05738412309 0 +7 25305 38.05738412309 0 +7 25311 38.05754412309 0 +7 25311 38.05754412309 0 +7 25343 38.143993570903 0 +7 25343 38.143993570903 0 +7 25349 38.144153570903 0 +7 25349 38.144153570903 0 +7 25385 38.314556809491 0 +7 25385 38.314556809491 0 +7 25392 38.314716809491 0 +7 25392 38.314716809491 0 +7 25471 38.357384125785 0 +7 25471 38.357384125785 0 +7 25477 38.357544125785 0 +7 25477 38.357544125785 0 +7 25509 38.443993571748 0 +7 25509 38.443993571748 0 +7 25515 38.444153571748 0 +7 25515 38.444153571748 0 +7 25551 38.614556809491 0 +7 25551 38.614556809491 0 +7 25558 38.614716809491 0 +7 25558 38.614716809491 0 +7 25637 38.65738412876 0 +7 25637 38.65738412876 0 +7 25643 38.65754412876 0 +7 25643 38.65754412876 0 +7 25675 38.74399357356 0 +7 25675 38.74399357356 0 +7 25681 38.74415357356 0 +7 25681 38.74415357356 0 +7 25717 38.914556809491 0 +7 25717 38.914556809491 0 +7 25724 38.914716809491 0 +7 25724 38.914716809491 0 +7 25803 38.957384132048 0 +7 25803 38.957384132048 0 +7 25809 38.957544132048 0 +7 25809 38.957544132048 0 +7 25841 39.043993576469 0 +7 25841 39.043993576469 0 +7 25847 39.044153576469 0 +7 25847 39.044153576469 0 +7 25883 39.214556809491 0 +7 25883 39.214556809491 0 +7 25890 39.214716809491 0 +7 25890 39.214716809491 0 +7 25969 39.257384135646 0 +7 25969 39.257384135646 0 +7 25975 39.257544135646 0 +7 25975 39.257544135646 0 +7 26007 39.34399358036 0 +7 26007 39.34399358036 0 +7 26013 39.34415358036 0 +7 26013 39.34415358036 0 +7 26049 39.514556809491 0 +7 26049 39.514556809491 0 +7 26056 39.514716809491 0 +7 26056 39.514716809491 0 +7 26135 39.557384139563 0 +7 26135 39.557384139563 0 +7 26141 39.557544139563 0 +7 26141 39.557544139563 0 +7 26173 39.643993585234 0 +7 26173 39.643993585234 0 +7 26179 39.644153585234 0 +7 26179 39.644153585234 0 +7 26215 39.814556809491 0 +7 26215 39.814556809491 0 +7 26222 39.814716809491 0 +7 26222 39.814716809491 0 +7 26301 39.857384143904 0 +7 26301 39.857384143904 0 +7 26307 39.857544143904 0 +7 26307 39.857544143904 0 +7 26339 39.943993591067 0 +7 26339 39.943993591067 0 +7 26345 39.944153591067 0 +7 26345 39.944153591067 0 +7 26381 40.114556809491 0 +7 26381 40.114556809491 0 +7 26388 40.114716809491 0 +7 26388 40.114716809491 0 +7 26468 40.157384148943 0 +7 26468 40.157384148943 0 +7 26478 40.157544148943 0 +7 26478 40.157544148943 0 +7 26506 40.243993597798 0 +7 26506 40.243993597798 0 +7 26516 40.244153597798 0 +7 26516 40.244153597798 0 +7 26547 40.414556809491 0 +7 26547 40.414556809491 0 +7 26554 40.414716809491 0 +7 26554 40.414716809491 0 +7 26634 40.457384154717 0 +7 26634 40.457384154717 0 +7 26644 40.457544154717 0 +7 26644 40.457544154717 0 +7 26672 40.543993605352 0 +7 26672 40.543993605352 0 +7 26682 40.544153605352 0 +7 26682 40.544153605352 0 +7 26713 40.714556809491 0 +7 26713 40.714556809491 0 +7 26720 40.714716809491 0 +7 26720 40.714716809491 0 +7 26804 40.757384161295 0 +7 26804 40.757384161295 0 +7 26814 40.757544161295 0 +7 26814 40.757544161295 0 +7 26842 40.843993613829 0 +7 26842 40.843993613829 0 +7 26852 40.844153613829 0 +7 26852 40.844153613829 0 +7 26887 41.014556809491 0 +7 26887 41.014556809491 0 +7 26894 41.014716809491 0 +7 26894 41.014716809491 0 +7 26978 41.05738416852 0 +7 26978 41.05738416852 0 +7 26988 41.05754416852 0 +7 26988 41.05754416852 0 +7 27016 41.143993623009 0 +7 27016 41.143993623009 0 +7 27026 41.144153623009 0 +7 27026 41.144153623009 0 +7 27061 41.314556809491 0 +7 27061 41.314556809491 0 +7 27068 41.314716809491 0 +7 27068 41.314716809491 0 +7 27152 41.357384176462 0 +7 27152 41.357384176462 0 +7 27162 41.357544176462 0 +7 27162 41.357544176462 0 +7 27190 41.443993632949 0 +7 27190 41.443993632949 0 +7 27200 41.444153632949 0 +7 27200 41.444153632949 0 +7 27235 41.614556809491 0 +7 27235 41.614556809491 0 +7 27242 41.614716809491 0 +7 27242 41.614716809491 0 +7 27326 41.657384185007 0 +7 27326 41.657384185007 0 +7 27336 41.657544185007 0 +7 27336 41.657544185007 0 +7 27364 41.743993643584 0 +7 27364 41.743993643584 0 +7 27374 41.744153643584 0 +7 27374 41.744153643584 0 +7 27409 41.914556809491 0 +7 27409 41.914556809491 0 +7 27416 41.914716809491 0 +7 27416 41.914716809491 0 +7 27500 41.957384194196 0 +7 27500 41.957384194196 0 +7 27510 41.957544194196 0 +7 27510 41.957544194196 0 +7 27538 42.043993655076 0 +7 27538 42.043993655076 0 +7 27548 42.044153655076 0 +7 27548 42.044153655076 0 +7 27583 42.214556809491 0 +7 27583 42.214556809491 0 +7 27590 42.214716809491 0 +7 27590 42.214716809491 0 +7 27674 42.257384203962 0 +7 27674 42.257384203962 0 +7 27684 42.257544203962 0 +7 27684 42.257544203962 0 +7 27712 42.343993667279 0 +7 27712 42.343993667279 0 +7 27722 42.344153667279 0 +7 27722 42.344153667279 0 +7 27757 42.514556809491 0 +7 27757 42.514556809491 0 +7 27764 42.514716809491 0 +7 27764 42.514716809491 0 +7 27848 42.557384214263 0 +7 27848 42.557384214263 0 +7 27858 42.557544214263 0 +7 27858 42.557544214263 0 +7 27886 42.643993680118 0 +7 27886 42.643993680118 0 +7 27896 42.644153680118 0 +7 27896 42.644153680118 0 +7 27931 42.814556809491 0 +7 27931 42.814556809491 0 +7 27938 42.814716809491 0 +7 27938 42.814716809491 0 +7 28022 42.857384225113 0 +7 28022 42.857384225113 0 +7 28032 42.857544225113 0 +7 28032 42.857544225113 0 +7 28060 42.943993693453 0 +7 28060 42.943993693453 0 +7 28070 42.944153693453 0 +7 28070 42.944153693453 0 +7 28105 43.114556809491 0 +7 28105 43.114556809491 0 +7 28112 43.114716809491 0 +7 28112 43.114716809491 0 +7 28196 43.15738423643 0 +7 28196 43.15738423643 0 +7 28206 43.15754423643 0 +7 28206 43.15754423643 0 +7 28234 43.243993707142 0 +7 28234 43.243993707142 0 +7 28244 43.244153707142 0 +7 28244 43.244153707142 0 +7 28279 43.414556809491 0 +7 28279 43.414556809491 0 +7 28286 43.414716809491 0 +7 28286 43.414716809491 0 +7 28370 43.457384248185 0 +7 28370 43.457384248185 0 +7 28380 43.457544248185 0 +7 28380 43.457544248185 0 +7 28408 43.54399372113 0 +7 28408 43.54399372113 0 +7 28418 43.54415372113 0 +7 28418 43.54415372113 0 +7 28453 43.714556809491 0 +7 28453 43.714556809491 0 +7 28460 43.714716809491 0 +7 28460 43.714716809491 0 +7 28544 43.757384260094 0 +7 28544 43.757384260094 0 +7 28554 43.757544260094 0 +7 28554 43.757544260094 0 +7 28582 43.843993734654 0 +7 28582 43.843993734654 0 +7 28592 43.844153734654 0 +7 28592 43.844153734654 0 +7 28627 44.014556809491 0 +7 28627 44.014556809491 0 +7 28634 44.014716809491 0 +7 28634 44.014716809491 0 +7 28718 44.05738427113 0 +7 28718 44.05738427113 0 +7 28728 44.05754427113 0 +7 28728 44.05754427113 0 +7 28756 44.143993746996 0 +7 28756 44.143993746996 0 +7 28766 44.144153746996 0 +7 28766 44.144153746996 0 +7 28801 44.314556809491 0 +7 28801 44.314556809491 0 +7 28808 44.314716809491 0 +7 28808 44.314716809491 0 +7 28888 44.357384281313 0 +7 28888 44.357384281313 0 +7 28898 44.357544281313 0 +7 28898 44.357544281313 0 +7 28926 44.443993758119 0 +7 28926 44.443993758119 0 +7 28936 44.444153758119 0 +7 28936 44.444153758119 0 +7 28967 44.614556809491 0 +7 28967 44.614556809491 0 +7 28974 44.614716809491 0 +7 28974 44.614716809491 0 +7 29054 44.657384290579 0 +7 29054 44.657384290579 0 +7 29064 44.657544290579 0 +7 29064 44.657544290579 0 +7 29092 44.743993767993 0 +7 29092 44.743993767993 0 +7 29102 44.744153767993 0 +7 29102 44.744153767993 0 +7 29133 44.914556809491 0 +7 29133 44.914556809491 0 +7 29140 44.914716809491 0 +7 29140 44.914716809491 0 +7 29220 44.957384298829 0 +7 29220 44.957384298829 0 +7 29230 44.957544298829 0 +7 29230 44.957544298829 0 +7 29258 45.04399377659 0 +7 29258 45.04399377659 0 +7 29268 45.04415377659 0 +7 29268 45.04415377659 0 +7 29299 45.214556809491 0 +7 29299 45.214556809491 0 +7 29306 45.214716809491 0 +7 29306 45.214716809491 0 +7 29386 45.257384305981 0 +7 29386 45.257384305981 0 +7 29396 45.257544305981 0 +7 29396 45.257544305981 0 +7 29424 45.343993783865 0 +7 29424 45.343993783865 0 +7 29434 45.344153783865 0 +7 29434 45.344153783865 0 +7 29465 45.514556809491 0 +7 29465 45.514556809491 0 +7 29472 45.514716809491 0 +7 29472 45.514716809491 0 +7 29552 45.557384312206 0 +7 29552 45.557384312206 0 +7 29562 45.557544312206 0 +7 29562 45.557544312206 0 +7 29590 45.643993790499 0 +7 29590 45.643993790499 0 +7 29600 45.644153790499 0 +7 29600 45.644153790499 0 +7 29631 45.814556809491 0 +7 29631 45.814556809491 0 +7 29638 45.814716809491 0 +7 29638 45.814716809491 0 +7 29718 45.857384319049 0 +7 29718 45.857384319049 0 +7 29728 45.857544319049 0 +7 29728 45.857544319049 0 +7 29756 45.943993797914 0 +7 29756 45.943993797914 0 +7 29766 45.944153797914 0 +7 29766 45.944153797914 0 +7 29797 46.114556809491 0 +7 29797 46.114556809491 0 +7 29804 46.114716809491 0 +7 29804 46.114716809491 0 +7 29884 46.157384326651 0 +7 29884 46.157384326651 0 +7 29894 46.157544326651 0 +7 29894 46.157544326651 0 +7 29923 46.243993806003 0 +7 29923 46.243993806003 0 +7 29937 46.244153806003 0 +7 29937 46.244153806003 0 +7 29963 46.414556809491 0 +7 29963 46.414556809491 0 +7 29970 46.414716809491 0 +7 29970 46.414716809491 0 +7 30050 46.457384334527 0 +7 30050 46.457384334527 0 +7 30060 46.457544334527 0 +7 30060 46.457544334527 0 +7 30089 46.543993813964 0 +7 30089 46.543993813964 0 +7 30103 46.544153813964 0 +7 30103 46.544153813964 0 +7 30129 46.714556809491 0 +7 30129 46.714556809491 0 +7 30136 46.714716809491 0 +7 30136 46.714716809491 0 +7 30217 46.757384340536 0 +7 30217 46.757384340536 0 +7 30231 46.757544340536 0 +7 30231 46.757544340536 0 +7 30255 46.843993818595 0 +7 30255 46.843993818595 0 +7 30269 46.844153818595 0 +7 30269 46.844153818595 0 +7 30295 47.014556809491 0 +7 30295 47.014556809491 0 +7 30302 47.014716809491 0 +7 30302 47.014716809491 0 +7 30383 47.057384342941 0 +7 30383 47.057384342941 0 +7 30397 47.057544342941 0 +7 30397 47.057544342941 0 +7 30421 47.143993819767 0 +7 30421 47.143993819767 0 +7 30435 47.144153819767 0 +7 30435 47.144153819767 0 +7 30461 47.314556809491 0 +7 30461 47.314556809491 0 +7 30468 47.314716809491 0 +7 30468 47.314716809491 0 +7 30549 47.357384344047 0 +7 30549 47.357384344047 0 +7 30563 47.357544344047 0 +7 30563 47.357544344047 0 +7 30587 47.443993820025 0 +7 30587 47.443993820025 0 +7 30601 47.444153820025 0 +7 30601 47.444153820025 0 +7 30627 47.614556809491 0 +7 30627 47.614556809491 0 +7 30634 47.614716809491 0 +7 30634 47.614716809491 0 +7 30715 47.657384345882 0 +7 30715 47.657384345882 0 +7 30729 47.657544345882 0 +7 30729 47.657544345882 0 +7 30753 47.743993820289 0 +7 30753 47.743993820289 0 +7 30767 47.744153820289 0 +7 30767 47.744153820289 0 +7 30793 47.914556809491 0 +7 30793 47.914556809491 0 +7 30800 47.914716809491 0 +7 30800 47.914716809491 0 +7 30881 47.95738434856 0 +7 30881 47.95738434856 0 +7 30895 47.95754434856 0 +7 30895 47.95754434856 0 +7 30919 48.043993820574 0 +7 30919 48.043993820574 0 +7 30933 48.044153820574 0 +7 30933 48.044153820574 0 +7 30959 48.214556809491 0 +7 30959 48.214556809491 0 +7 30966 48.214716809491 0 +7 30966 48.214716809491 0 +7 31047 48.257384352185 0 +7 31047 48.257384352185 0 +7 31061 48.257544352185 0 +7 31061 48.257544352185 0 +7 31085 48.343993819422 0 +7 31085 48.343993819422 0 +7 31099 48.344153819422 0 +7 31099 48.344153819422 0 +7 31125 48.514556809491 0 +7 31125 48.514556809491 0 +7 31132 48.514716809491 0 +7 31132 48.514716809491 0 +7 31213 48.557384356842 0 +7 31213 48.557384356842 0 +7 31227 48.557544356842 0 +7 31227 48.557544356842 0 +7 31251 48.643993818083 0 +7 31251 48.643993818083 0 +7 31265 48.644153818083 0 +7 31265 48.644153818083 0 +7 31291 48.814556809491 0 +7 31291 48.814556809491 0 +7 31298 48.814716809491 0 +7 31298 48.814716809491 0 +7 31379 48.857384362664 0 +7 31379 48.857384362664 0 +7 31393 48.857544362664 0 +7 31393 48.857544362664 0 +7 31417 48.943993815516 0 +7 31417 48.943993815516 0 +7 31431 48.944153815516 0 +7 31431 48.944153815516 0 +7 31457 49.114556809491 0 +7 31457 49.114556809491 0 +7 31464 49.114716809491 0 +7 31464 49.114716809491 0 +7 31545 49.157384369644 0 +7 31545 49.157384369644 0 +7 31559 49.157544369644 0 +7 31559 49.157544369644 0 +7 31583 49.243993812156 0 +7 31583 49.243993812156 0 +7 31597 49.244153812156 0 +7 31597 49.244153812156 0 +7 31623 49.414556809491 0 +7 31623 49.414556809491 0 +7 31630 49.414716809491 0 +7 31630 49.414716809491 0 +7 31711 49.457384377764 0 +7 31711 49.457384377764 0 +7 31725 49.457544377764 0 +7 31725 49.457544377764 0 +7 31749 49.543993808185 0 +7 31749 49.543993808185 0 +7 31763 49.544153808185 0 +7 31763 49.544153808185 0 +7 31789 49.714556809491 0 +7 31789 49.714556809491 0 +7 31796 49.714716809491 0 +7 31796 49.714716809491 0 +7 31877 49.757384386996 0 +7 31877 49.757384386996 0 +7 31891 49.757544386996 0 +7 31891 49.757544386996 0 +7 31915 49.843993803841 0 +7 31915 49.843993803841 0 +7 31929 49.844153803841 0 +7 31929 49.844153803841 0 +7 31955 50.014556809491 0 +7 31955 50.014556809491 0 +7 31962 50.014716809491 0 +7 31962 50.014716809491 0 +7 32043 50.05738439718 0 +7 32043 50.05738439718 0 +7 32057 50.05754439718 0 +7 32057 50.05754439718 0 +7 32081 50.143993799517 0 +7 32081 50.143993799517 0 +7 32095 50.144153799517 0 +7 32095 50.144153799517 0 +7 32121 50.314556809491 0 +7 32121 50.314556809491 0 +7 32128 50.314716809491 0 +7 32128 50.314716809491 0 +7 32209 50.3573844083 0 +7 32209 50.3573844083 0 +7 32223 50.3575444083 0 +7 32223 50.3575444083 0 +7 32247 50.443993795058 0 +7 32247 50.443993795058 0 +7 32261 50.444153795058 0 +7 32261 50.444153795058 0 +7 32287 50.614556809491 0 +7 32287 50.614556809491 0 +7 32294 50.614716809491 0 +7 32294 50.614716809491 0 +7 32375 50.657384420305 0 +7 32375 50.657384420305 0 +7 32389 50.657544420305 0 +7 32389 50.657544420305 0 +7 32413 50.743993790392 0 +7 32413 50.743993790392 0 +7 32427 50.744153790392 0 +7 32427 50.744153790392 0 +7 32453 50.914556809491 0 +7 32453 50.914556809491 0 +7 32460 50.914716809491 0 +7 32460 50.914716809491 0 +7 32541 50.957384433105 0 +7 32541 50.957384433105 0 +7 32555 50.957544433105 0 +7 32555 50.957544433105 0 +7 32579 51.043993785603 0 +7 32579 51.043993785603 0 +7 32593 51.044153785603 0 +7 32593 51.044153785603 0 +7 32619 51.214556809491 0 +7 32619 51.214556809491 0 +7 32626 51.214716809491 0 +7 32626 51.214716809491 0 +7 32737 51.343993780685 0 +7 32737 51.343993780685 0 +7 32751 51.344153780685 0 +7 32751 51.344153780685 0 +7 32777 51.514556809491 0 +7 32777 51.514556809491 0 +7 32784 51.514716809491 0 +7 32784 51.514716809491 0 +7 32903 51.643993775717 0 +7 32903 51.643993775717 0 +7 32917 51.644153775717 0 +7 32917 51.644153775717 0 +7 32943 51.814556809491 0 +7 32943 51.814556809491 0 +7 32950 51.814716809491 0 +7 32950 51.814716809491 0 +7 33069 51.943993770578 0 +7 33069 51.943993770578 0 +7 33083 51.944153770578 0 +7 33083 51.944153770578 0 +7 33109 52.114556809491 0 +7 33109 52.114556809491 0 +7 33116 52.114716809491 0 +7 33116 52.114716809491 0 +7 33235 52.243993765452 0 +7 33235 52.243993765452 0 +7 33249 52.244153765452 0 +7 33249 52.244153765452 0 +7 33275 52.414556809491 0 +7 33275 52.414556809491 0 +7 33282 52.414716809491 0 +7 33282 52.414716809491 0 +7 33401 52.543993760435 0 +7 33401 52.543993760435 0 +7 33415 52.544153760435 0 +7 33415 52.544153760435 0 +7 33441 52.714556809491 0 +7 33441 52.714556809491 0 +7 33448 52.714716809491 0 +7 33448 52.714716809491 0 +7 33567 52.843993755494 0 +7 33567 52.843993755494 0 +7 33581 52.844153755494 0 +7 33581 52.844153755494 0 +7 33607 53.014556809491 0 +7 33607 53.014556809491 0 +7 33614 53.014716809491 0 +7 33614 53.014716809491 0 +7 33733 53.143993750731 0 +7 33733 53.143993750731 0 +7 33747 53.144153750731 0 +7 33747 53.144153750731 0 +1 22 2.1 180 +18 47 2.614556809491 1 +18 48 2.614556809491 2 +18 50 2.614716809491 1 +18 51 2.614716809491 0 +18 92 2.914556809491 1 +18 93 2.914556809491 2 +18 95 2.914716809491 1 +18 96 2.914716809491 0 +18 139 3.214556809491 1 +18 140 3.214556809491 2 +18 143 3.214716809491 1 +18 144 3.214716809491 0 +18 199 3.514556809491 1 +18 200 3.514556809491 2 +18 203 3.514716809491 1 +18 204 3.514716809491 0 +18 283 3.814556809491 1 +18 284 3.814556809491 2 +18 287 3.814716809491 1 +18 288 3.814716809491 0 +18 368 4.114556809491 1 +18 369 4.114556809491 2 +18 373 4.114716809491 1 +18 374 4.114716809491 0 +18 465 4.414556809491 1 +18 466 4.414556809491 2 +18 470 4.414716809491 1 +18 471 4.414716809491 0 +18 584 4.714556809491 1 +18 585 4.714556809491 2 +18 589 4.714716809491 1 +18 590 4.714716809491 0 +18 703 5.014556809491 1 +18 704 5.014556809491 2 +18 708 5.014716809491 1 +18 709 5.014716809491 0 +18 831 5.314556809491 1 +18 832 5.314556809491 2 +18 837 5.314716809491 1 +18 838 5.314716809491 0 +18 965 5.614556809491 1 +18 966 5.614556809491 2 +18 971 5.614716809491 1 +18 972 5.614716809491 0 +18 1123 5.914556809491 1 +18 1124 5.914556809491 2 +18 1129 5.914716809491 1 +18 1130 5.914716809491 0 +18 1283 6.214556809491 1 +18 1284 6.214556809491 2 +18 1290 6.214716809491 1 +18 1291 6.214716809491 0 +18 1466 6.514556809491 1 +18 1467 6.514556809491 2 +18 1473 6.514716809491 1 +18 1474 6.514716809491 0 +18 1683 6.814556809491 1 +18 1684 6.814556809491 2 +18 1690 6.814716809491 1 +18 1691 6.814716809491 0 +18 1900 7.114556809491 1 +18 1901 7.114556809491 2 +18 1907 7.114716809491 1 +18 1908 7.114716809491 0 +18 2117 7.414556809491 1 +18 2118 7.414556809491 2 +18 2124 7.414716809491 1 +18 2125 7.414716809491 0 +18 2334 7.714556809491 1 +18 2335 7.714556809491 2 +18 2341 7.714716809491 1 +18 2342 7.714716809491 0 +18 2551 8.014556809491 1 +18 2552 8.014556809491 2 +18 2558 8.014716809491 1 +18 2559 8.014716809491 0 +18 2768 8.314556809491 1 +18 2769 8.314556809491 2 +18 2775 8.314716809491 1 +18 2776 8.314716809491 0 +18 2993 8.614556809491 1 +18 2994 8.614556809491 2 +18 3000 8.614716809491 1 +18 3001 8.614716809491 0 +18 3218 8.914556809491 1 +18 3219 8.914556809491 2 +18 3225 8.914716809491 1 +18 3226 8.914716809491 0 +18 3443 9.214556809491 1 +18 3444 9.214556809491 2 +18 3450 9.214716809491 1 +18 3451 9.214716809491 0 +18 3668 9.514556809491 1 +18 3669 9.514556809491 2 +18 3675 9.514716809491 1 +18 3676 9.514716809491 0 +18 3893 9.814556809491 1 +18 3894 9.814556809491 2 +18 3900 9.814716809491 1 +18 3901 9.814716809491 0 +18 4118 10.114556809491 1 +18 4119 10.114556809491 2 +18 4125 10.114716809491 1 +18 4126 10.114716809491 0 +18 4343 10.414556809491 1 +18 4344 10.414556809491 2 +18 4350 10.414716809491 1 +18 4351 10.414716809491 0 +18 4572 10.714556809491 1 +18 4573 10.714556809491 2 +18 4579 10.714716809491 1 +18 4580 10.714716809491 0 +18 4805 11.014556809491 1 +18 4806 11.014556809491 2 +18 4812 11.014716809491 1 +18 4813 11.014716809491 0 +18 5038 11.314556809491 1 +18 5039 11.314556809491 2 +18 5045 11.314716809491 1 +18 5046 11.314716809491 0 +18 5271 11.614556809491 1 +18 5272 11.614556809491 2 +18 5278 11.614716809491 1 +18 5279 11.614716809491 0 +18 5512 11.914556809491 1 +18 5513 11.914556809491 2 +18 5519 11.914716809491 1 +18 5520 11.914716809491 0 +18 5753 12.214556809491 1 +18 5754 12.214556809491 2 +18 5760 12.214716809491 1 +18 5761 12.214716809491 0 +18 5994 12.514556809491 1 +18 5995 12.514556809491 2 +18 6001 12.514716809491 1 +18 6002 12.514716809491 0 +18 6235 12.814556809491 1 +18 6236 12.814556809491 2 +18 6242 12.814716809491 1 +18 6243 12.814716809491 0 +18 6476 13.114556809491 1 +18 6477 13.114556809491 2 +18 6483 13.114716809491 1 +18 6484 13.114716809491 0 +18 6717 13.414556809491 1 +18 6718 13.414556809491 2 +18 6724 13.414716809491 1 +18 6725 13.414716809491 0 +18 6958 13.714556809491 1 +18 6959 13.714556809491 2 +18 6965 13.714716809491 1 +18 6966 13.714716809491 0 +18 7199 14.014556809491 1 +18 7200 14.014556809491 2 +18 7206 14.014716809491 1 +18 7207 14.014716809491 0 +18 7440 14.314556809491 1 +18 7441 14.314556809491 2 +18 7447 14.314716809491 1 +18 7448 14.314716809491 0 +18 7681 14.614556809491 1 +18 7682 14.614556809491 2 +18 7688 14.614716809491 1 +18 7689 14.614716809491 0 +18 7922 14.914556809491 1 +18 7923 14.914556809491 2 +18 7929 14.914716809491 1 +18 7930 14.914716809491 0 +18 8163 15.214556809491 1 +18 8164 15.214556809491 2 +18 8170 15.214716809491 1 +18 8171 15.214716809491 0 +18 8404 15.514556809491 1 +18 8405 15.514556809491 2 +18 8411 15.514716809491 1 +18 8412 15.514716809491 0 +18 8645 15.814556809491 1 +18 8646 15.814556809491 2 +18 8652 15.814716809491 1 +18 8653 15.814716809491 0 +18 8886 16.114556809491 1 +18 8887 16.114556809491 2 +18 8893 16.114716809491 1 +18 8894 16.114716809491 0 +18 9135 16.414556809491 1 +18 9136 16.414556809491 2 +18 9142 16.414716809491 1 +18 9143 16.414716809491 0 +18 9384 16.714556809491 1 +18 9385 16.714556809491 2 +18 9391 16.714716809491 1 +18 9392 16.714716809491 0 +18 9633 17.014556809491 1 +18 9634 17.014556809491 2 +18 9640 17.014716809491 1 +18 9641 17.014716809491 0 +18 9882 17.314556809491 1 +18 9883 17.314556809491 2 +18 9889 17.314716809491 1 +18 9890 17.314716809491 0 +18 10131 17.614556809491 1 +18 10132 17.614556809491 2 +18 10138 17.614716809491 1 +18 10139 17.614716809491 0 +18 10380 17.914556809491 1 +18 10381 17.914556809491 2 +18 10387 17.914716809491 1 +18 10388 17.914716809491 0 +18 10621 18.214556809491 1 +18 10622 18.214556809491 2 +18 10628 18.214716809491 1 +18 10629 18.214716809491 0 +18 10854 18.514556809491 1 +18 10855 18.514556809491 2 +18 10861 18.514716809491 1 +18 10862 18.514716809491 0 +18 11087 18.814556809491 1 +18 11088 18.814556809491 2 +18 11094 18.814716809491 1 +18 11095 18.814716809491 0 +18 11320 19.114556809491 1 +18 11321 19.114556809491 2 +18 11327 19.114716809491 1 +18 11328 19.114716809491 0 +18 11553 19.414556809491 1 +18 11554 19.414556809491 2 +18 11560 19.414716809491 1 +18 11561 19.414716809491 0 +18 11786 19.714556809491 1 +18 11787 19.714556809491 2 +18 11793 19.714716809491 1 +18 11794 19.714716809491 0 +18 12019 20.014556809491 1 +18 12020 20.014556809491 2 +18 12026 20.014716809491 1 +18 12027 20.014716809491 0 +18 12260 20.314556809491 1 +18 12261 20.314556809491 2 +18 12267 20.314716809491 1 +18 12268 20.314716809491 0 +18 12501 20.614556809491 1 +18 12502 20.614556809491 2 +18 12508 20.614716809491 1 +18 12509 20.614716809491 0 +18 12742 20.914556809491 1 +18 12743 20.914556809491 2 +18 12749 20.914716809491 1 +18 12750 20.914716809491 0 +18 12983 21.214556809491 1 +18 12984 21.214556809491 2 +18 12990 21.214716809491 1 +18 12991 21.214716809491 0 +18 13224 21.514556809491 1 +18 13225 21.514556809491 2 +18 13231 21.514716809491 1 +18 13232 21.514716809491 0 +18 13465 21.814556809491 1 +18 13466 21.814556809491 2 +18 13472 21.814716809491 1 +18 13473 21.814716809491 0 +18 13706 22.114556809491 1 +18 13707 22.114556809491 2 +18 13713 22.114716809491 1 +18 13714 22.114716809491 0 +18 13947 22.414556809491 1 +18 13948 22.414556809491 2 +18 13954 22.414716809491 1 +18 13955 22.414716809491 0 +18 14188 22.714556809491 1 +18 14189 22.714556809491 2 +18 14195 22.714716809491 1 +18 14196 22.714716809491 0 +18 14429 23.014556809491 1 +18 14430 23.014556809491 2 +18 14436 23.014716809491 1 +18 14437 23.014716809491 0 +18 14670 23.314556809491 1 +18 14671 23.314556809491 2 +18 14677 23.314716809491 1 +18 14678 23.314716809491 0 +18 14911 23.614556809491 1 +18 14912 23.614556809491 2 +18 14918 23.614716809491 1 +18 14919 23.614716809491 0 +18 15152 23.914556809491 1 +18 15153 23.914556809491 2 +18 15159 23.914716809491 1 +18 15160 23.914716809491 0 +18 15393 24.214556809491 1 +18 15394 24.214556809491 2 +18 15400 24.214716809491 1 +18 15401 24.214716809491 0 +18 15634 24.514556809491 1 +18 15635 24.514556809491 2 +18 15641 24.514716809491 1 +18 15642 24.514716809491 0 +18 15875 24.814556809491 1 +18 15876 24.814556809491 2 +18 15882 24.814716809491 1 +18 15883 24.814716809491 0 +18 16116 25.114556809491 1 +18 16117 25.114556809491 2 +18 16123 25.114716809491 1 +18 16124 25.114716809491 0 +18 16357 25.414556809491 1 +18 16358 25.414556809491 2 +18 16364 25.414716809491 1 +18 16365 25.414716809491 0 +18 16598 25.714556809491 1 +18 16599 25.714556809491 2 +18 16605 25.714716809491 1 +18 16606 25.714716809491 0 +18 16839 26.014556809491 1 +18 16840 26.014556809491 2 +18 16846 26.014716809491 1 +18 16847 26.014716809491 0 +18 17080 26.314556809491 1 +18 17081 26.314556809491 2 +18 17087 26.314716809491 1 +18 17088 26.314716809491 0 +18 17321 26.614556809491 1 +18 17322 26.614556809491 2 +18 17328 26.614716809491 1 +18 17329 26.614716809491 0 +18 17562 26.914556809491 1 +18 17563 26.914556809491 2 +18 17569 26.914716809491 1 +18 17570 26.914716809491 0 +18 17803 27.214556809491 1 +18 17804 27.214556809491 2 +18 17810 27.214716809491 1 +18 17811 27.214716809491 0 +18 18036 27.514556809491 1 +18 18037 27.514556809491 2 +18 18043 27.514716809491 1 +18 18044 27.514716809491 0 +18 18269 27.814556809491 1 +18 18270 27.814556809491 2 +18 18276 27.814716809491 1 +18 18277 27.814716809491 0 +18 18502 28.114556809491 1 +18 18503 28.114556809491 2 +18 18509 28.114716809491 1 +18 18510 28.114716809491 0 +18 18735 28.414556809491 1 +18 18736 28.414556809491 2 +18 18742 28.414716809491 1 +18 18743 28.414716809491 0 +18 18968 28.714556809491 1 +18 18969 28.714556809491 2 +18 18975 28.714716809491 1 +18 18976 28.714716809491 0 +18 19201 29.014556809491 1 +18 19202 29.014556809491 2 +18 19208 29.014716809491 1 +18 19209 29.014716809491 0 +18 19426 29.314556809491 1 +18 19427 29.314556809491 2 +18 19433 29.314716809491 1 +18 19434 29.314716809491 0 +18 19651 29.614556809491 1 +18 19652 29.614556809491 2 +18 19658 29.614716809491 1 +18 19659 29.614716809491 0 +18 19876 29.914556809491 1 +18 19877 29.914556809491 2 +18 19883 29.914716809491 1 +18 19884 29.914716809491 0 +18 20101 30.214556809491 1 +18 20102 30.214556809491 2 +18 20108 30.214716809491 1 +18 20109 30.214716809491 0 +18 20326 30.514556809491 1 +18 20327 30.514556809491 2 +18 20333 30.514716809491 1 +18 20334 30.514716809491 0 +18 20551 30.814556809491 1 +18 20552 30.814556809491 2 +18 20558 30.814716809491 1 +18 20559 30.814716809491 0 +18 20776 31.114556809491 1 +18 20777 31.114556809491 2 +18 20783 31.114716809491 1 +18 20784 31.114716809491 0 +18 21009 31.414556809491 1 +18 21010 31.414556809491 2 +18 21016 31.414716809491 1 +18 21017 31.414716809491 0 +18 21242 31.714556809491 1 +18 21243 31.714556809491 2 +18 21249 31.714716809491 1 +18 21250 31.714716809491 0 +18 21475 32.014556809491 1 +18 21476 32.014556809491 2 +18 21482 32.014716809491 1 +18 21483 32.014716809491 0 +18 21708 32.314556809491 1 +18 21709 32.314556809491 2 +18 21715 32.314716809491 1 +18 21716 32.314716809491 0 +18 21941 32.614556809491 1 +18 21942 32.614556809491 2 +18 21948 32.614716809491 1 +18 21949 32.614716809491 0 +18 22174 32.914556809491 1 +18 22175 32.914556809491 2 +18 22181 32.914716809491 1 +18 22182 32.914716809491 0 +18 22407 33.214556809491 1 +18 22408 33.214556809491 2 +18 22414 33.214716809491 1 +18 22415 33.214716809491 0 +18 22640 33.514556809491 1 +18 22641 33.514556809491 2 +18 22647 33.514716809491 1 +18 22648 33.514716809491 0 +18 22873 33.814556809491 1 +18 22874 33.814556809491 2 +18 22880 33.814716809491 1 +18 22881 33.814716809491 0 +18 23089 34.114556809491 1 +18 23090 34.114556809491 2 +18 23095 34.114716809491 1 +18 23096 34.114716809491 0 +18 23247 34.414556809491 1 +18 23248 34.414556809491 2 +18 23253 34.414716809491 1 +18 23254 34.414716809491 0 +18 23405 34.714556809491 1 +18 23406 34.714556809491 2 +18 23411 34.714716809491 1 +18 23412 34.714716809491 0 +18 23563 35.014556809491 1 +18 23564 35.014556809491 2 +18 23569 35.014716809491 1 +18 23570 35.014716809491 0 +18 23725 35.314556809491 1 +18 23726 35.314556809491 2 +18 23731 35.314716809491 1 +18 23732 35.314716809491 0 +18 23891 35.614556809491 1 +18 23892 35.614556809491 2 +18 23897 35.614716809491 1 +18 23898 35.614716809491 0 +18 24057 35.914556809491 1 +18 24058 35.914556809491 2 +18 24063 35.914716809491 1 +18 24064 35.914716809491 0 +18 24223 36.214556809491 1 +18 24224 36.214556809491 2 +18 24229 36.214716809491 1 +18 24230 36.214716809491 0 +18 24389 36.514556809491 1 +18 24390 36.514556809491 2 +18 24395 36.514716809491 1 +18 24396 36.514716809491 0 +18 24555 36.814556809491 1 +18 24556 36.814556809491 2 +18 24561 36.814716809491 1 +18 24562 36.814716809491 0 +18 24721 37.114556809491 1 +18 24722 37.114556809491 2 +18 24727 37.114716809491 1 +18 24728 37.114716809491 0 +18 24887 37.414556809491 1 +18 24888 37.414556809491 2 +18 24893 37.414716809491 1 +18 24894 37.414716809491 0 +18 25053 37.714556809491 1 +18 25054 37.714556809491 2 +18 25059 37.714716809491 1 +18 25060 37.714716809491 0 +18 25219 38.014556809491 1 +18 25220 38.014556809491 2 +18 25225 38.014716809491 1 +18 25226 38.014716809491 0 +18 25385 38.314556809491 1 +18 25386 38.314556809491 2 +18 25391 38.314716809491 1 +18 25392 38.314716809491 0 +18 25551 38.614556809491 1 +18 25552 38.614556809491 2 +18 25557 38.614716809491 1 +18 25558 38.614716809491 0 +18 25717 38.914556809491 1 +18 25718 38.914556809491 2 +18 25723 38.914716809491 1 +18 25724 38.914716809491 0 +18 25883 39.214556809491 1 +18 25884 39.214556809491 2 +18 25889 39.214716809491 1 +18 25890 39.214716809491 0 +18 26049 39.514556809491 1 +18 26050 39.514556809491 2 +18 26055 39.514716809491 1 +18 26056 39.514716809491 0 +18 26215 39.814556809491 1 +18 26216 39.814556809491 2 +18 26221 39.814716809491 1 +18 26222 39.814716809491 0 +18 26381 40.114556809491 1 +18 26382 40.114556809491 2 +18 26387 40.114716809491 1 +18 26388 40.114716809491 0 +18 26547 40.414556809491 1 +18 26548 40.414556809491 2 +18 26553 40.414716809491 1 +18 26554 40.414716809491 0 +18 26713 40.714556809491 1 +18 26714 40.714556809491 2 +18 26719 40.714716809491 1 +18 26720 40.714716809491 0 +18 26887 41.014556809491 1 +18 26888 41.014556809491 2 +18 26893 41.014716809491 1 +18 26894 41.014716809491 0 +18 27061 41.314556809491 1 +18 27062 41.314556809491 2 +18 27067 41.314716809491 1 +18 27068 41.314716809491 0 +18 27235 41.614556809491 1 +18 27236 41.614556809491 2 +18 27241 41.614716809491 1 +18 27242 41.614716809491 0 +18 27409 41.914556809491 1 +18 27410 41.914556809491 2 +18 27415 41.914716809491 1 +18 27416 41.914716809491 0 +18 27583 42.214556809491 1 +18 27584 42.214556809491 2 +18 27589 42.214716809491 1 +18 27590 42.214716809491 0 +18 27757 42.514556809491 1 +18 27758 42.514556809491 2 +18 27763 42.514716809491 1 +18 27764 42.514716809491 0 +18 27931 42.814556809491 1 +18 27932 42.814556809491 2 +18 27937 42.814716809491 1 +18 27938 42.814716809491 0 +18 28105 43.114556809491 1 +18 28106 43.114556809491 2 +18 28111 43.114716809491 1 +18 28112 43.114716809491 0 +18 28279 43.414556809491 1 +18 28280 43.414556809491 2 +18 28285 43.414716809491 1 +18 28286 43.414716809491 0 +18 28453 43.714556809491 1 +18 28454 43.714556809491 2 +18 28459 43.714716809491 1 +18 28460 43.714716809491 0 +18 28627 44.014556809491 1 +18 28628 44.014556809491 2 +18 28633 44.014716809491 1 +18 28634 44.014716809491 0 +18 28801 44.314556809491 1 +18 28802 44.314556809491 2 +18 28807 44.314716809491 1 +18 28808 44.314716809491 0 +18 28967 44.614556809491 1 +18 28968 44.614556809491 2 +18 28973 44.614716809491 1 +18 28974 44.614716809491 0 +18 29133 44.914556809491 1 +18 29134 44.914556809491 2 +18 29139 44.914716809491 1 +18 29140 44.914716809491 0 +18 29299 45.214556809491 1 +18 29300 45.214556809491 2 +18 29305 45.214716809491 1 +18 29306 45.214716809491 0 +18 29465 45.514556809491 1 +18 29466 45.514556809491 2 +18 29471 45.514716809491 1 +18 29472 45.514716809491 0 +18 29631 45.814556809491 1 +18 29632 45.814556809491 2 +18 29637 45.814716809491 1 +18 29638 45.814716809491 0 +18 29797 46.114556809491 1 +18 29798 46.114556809491 2 +18 29803 46.114716809491 1 +18 29804 46.114716809491 0 +18 29963 46.414556809491 1 +18 29964 46.414556809491 2 +18 29969 46.414716809491 1 +18 29970 46.414716809491 0 +18 30129 46.714556809491 1 +18 30130 46.714556809491 2 +18 30135 46.714716809491 1 +18 30136 46.714716809491 0 +18 30295 47.014556809491 1 +18 30296 47.014556809491 2 +18 30301 47.014716809491 1 +18 30302 47.014716809491 0 +18 30461 47.314556809491 1 +18 30462 47.314556809491 2 +18 30467 47.314716809491 1 +18 30468 47.314716809491 0 +18 30627 47.614556809491 1 +18 30628 47.614556809491 2 +18 30633 47.614716809491 1 +18 30634 47.614716809491 0 +18 30793 47.914556809491 1 +18 30794 47.914556809491 2 +18 30799 47.914716809491 1 +18 30800 47.914716809491 0 +18 30959 48.214556809491 1 +18 30960 48.214556809491 2 +18 30965 48.214716809491 1 +18 30966 48.214716809491 0 +18 31125 48.514556809491 1 +18 31126 48.514556809491 2 +18 31131 48.514716809491 1 +18 31132 48.514716809491 0 +18 31291 48.814556809491 1 +18 31292 48.814556809491 2 +18 31297 48.814716809491 1 +18 31298 48.814716809491 0 +18 31457 49.114556809491 1 +18 31458 49.114556809491 2 +18 31463 49.114716809491 1 +18 31464 49.114716809491 0 +18 31623 49.414556809491 1 +18 31624 49.414556809491 2 +18 31629 49.414716809491 1 +18 31630 49.414716809491 0 +18 31789 49.714556809491 1 +18 31790 49.714556809491 2 +18 31795 49.714716809491 1 +18 31796 49.714716809491 0 +18 31955 50.014556809491 1 +18 31956 50.014556809491 2 +18 31961 50.014716809491 1 +18 31962 50.014716809491 0 +18 32121 50.314556809491 1 +18 32122 50.314556809491 2 +18 32127 50.314716809491 1 +18 32128 50.314716809491 0 +18 32287 50.614556809491 1 +18 32288 50.614556809491 2 +18 32293 50.614716809491 1 +18 32294 50.614716809491 0 +18 32453 50.914556809491 1 +18 32454 50.914556809491 2 +18 32459 50.914716809491 1 +18 32460 50.914716809491 0 +18 32619 51.214556809491 1 +18 32620 51.214556809491 2 +18 32625 51.214716809491 1 +18 32626 51.214716809491 0 +18 32777 51.514556809491 1 +18 32778 51.514556809491 2 +18 32783 51.514716809491 1 +18 32784 51.514716809491 0 +18 32943 51.814556809491 1 +18 32944 51.814556809491 2 +18 32949 51.814716809491 1 +18 32950 51.814716809491 0 +18 33109 52.114556809491 1 +18 33110 52.114556809491 2 +18 33115 52.114716809491 1 +18 33116 52.114716809491 0 +18 33275 52.414556809491 1 +18 33276 52.414556809491 2 +18 33281 52.414716809491 1 +18 33282 52.414716809491 0 +18 33441 52.714556809491 1 +18 33442 52.714556809491 2 +18 33447 52.714716809491 1 +18 33448 52.714716809491 0 +18 33607 53.014556809491 1 +18 33608 53.014556809491 2 +18 33613 53.014716809491 1 +18 33614 53.014716809491 0 +2 22 2.1 1 +2 47 2.614556809491 0 +2 51 2.614716809491 1 +2 67 2.65738405803 3 +2 70 2.65754405803 1 +2 92 2.914556809491 0 +2 96 2.914716809491 1 +2 112 2.957384059145 3 +2 115 2.957544059145 1 +2 139 3.214556809491 0 +2 144 3.214716809491 1 +2 165 3.257384060325 3 +2 169 3.257544060325 1 +2 199 3.514556809491 0 +2 204 3.514716809491 1 +2 225 3.531276752816 3 +2 229 3.531436752816 1 +2 249 3.5573840616 3 +2 253 3.5575440616 1 +2 283 3.814556809491 0 +2 288 3.814716809491 1 +2 309 3.831276748492 3 +2 313 3.831436748492 1 +2 333 3.857384062957 3 +2 337 3.857544062957 1 +2 368 4.114556809491 0 +2 374 4.114716809491 1 +2 397 4.131276743562 3 +2 406 4.131436743562 1 +2 426 4.157384064405 3 +2 431 4.157544064405 1 +2 465 4.414556809491 0 +2 471 4.414716809491 1 +2 494 4.431276737964 3 +2 503 4.431436737964 1 +2 523 4.457384065992 3 +2 528 4.457544065992 1 +2 584 4.714556809491 0 +2 590 4.714716809491 1 +2 613 4.731276731904 3 +2 622 4.731436731904 1 +2 642 4.757384067713 3 +2 647 4.757544067713 1 +2 703 5.014556809491 0 +2 709 5.014716809491 1 +2 732 5.031276725247 3 +2 741 5.031436725247 1 +2 761 5.057384069567 3 +2 766 5.057544069567 1 +2 831 5.314556809491 0 +2 838 5.314716809491 1 +2 862 5.331276717912 3 +2 872 5.331436717912 1 +2 893 5.357384071635 3 +2 899 5.357544071635 1 +2 965 5.614556809491 0 +2 972 5.614716809491 1 +2 996 5.631276710029 3 +2 1006 5.631436710029 1 +2 1027 5.657384073906 3 +2 1033 5.657544073906 1 +2 1123 5.914556809491 0 +2 1130 5.914716809491 1 +2 1154 5.931276701497 3 +2 1164 5.931436701497 1 +2 1185 5.957384076426 3 +2 1191 5.957544076426 1 +2 1283 6.214556809491 0 +2 1291 6.214716809491 1 +2 1321 6.231276692343 3 +2 1336 6.231436692343 1 +2 1357 6.257384079226 3 +2 1364 6.257544079226 1 +2 1466 6.514556809491 0 +2 1474 6.514716809491 1 +2 1501 6.524398778352 3 +2 1508 6.524558778352 1 +2 1537 6.531276682665 3 +2 1552 6.531436682665 1 +2 1574 6.557384082316 3 +2 1581 6.557544082316 1 +2 1683 6.814556809491 0 +2 1691 6.814716809491 1 +2 1718 6.824398768033 3 +2 1725 6.824558768033 1 +2 1754 6.831276672312 3 +2 1769 6.831436672312 1 +2 1791 6.857384085755 3 +2 1798 6.857544085755 1 +2 1900 7.114556809491 0 +2 1908 7.114716809491 1 +2 1935 7.124398757068 3 +2 1942 7.124558757068 1 +2 1971 7.131276661329 3 +2 1986 7.131436661329 1 +2 2008 7.157384089564 3 +2 2015 7.157544089564 1 +2 2117 7.414556809491 0 +2 2125 7.414716809491 1 +2 2152 7.424398745664 3 +2 2159 7.424558745664 1 +2 2188 7.431276649891 3 +2 2203 7.431436649891 1 +2 2225 7.457384093735 3 +2 2232 7.457544093735 1 +2 2334 7.714556809491 0 +2 2342 7.714716809491 1 +2 2369 7.724398733784 3 +2 2376 7.724558733784 1 +2 2405 7.731276637989 3 +2 2420 7.731436637989 1 +2 2442 7.757384098302 3 +2 2449 7.757544098302 1 +2 2551 8.014556809491 0 +2 2559 8.014716809491 1 +2 2586 8.02439872132 3 +2 2593 8.02455872132 1 +2 2621 8.031276625491 3 +2 2632 8.031436625491 1 +2 2659 8.057384103323 3 +2 2666 8.057544103323 1 +2 2768 8.314556809491 0 +2 2776 8.314716809491 1 +2 2803 8.324398708136 3 +2 2810 8.324558708136 1 +2 2842 8.33127661228 3 +2 2853 8.33143661228 1 +2 2880 8.357384108886 3 +2 2887 8.357544108886 1 +2 2993 8.614556809491 0 +2 3001 8.614716809491 1 +2 3028 8.624398694405 3 +2 3035 8.624558694405 1 +2 3067 8.631276598484 3 +2 3078 8.631436598484 1 +2 3105 8.65738411496 3 +2 3112 8.65754411496 1 +2 3218 8.914556809491 0 +2 3226 8.914716809491 1 +2 3253 8.924398680104 3 +2 3260 8.924558680104 1 +2 3292 8.931276584082 3 +2 3303 8.931436584082 1 +2 3330 8.957384121588 3 +2 3337 8.957544121588 1 +2 3443 9.214556809491 0 +2 3451 9.214716809491 1 +2 3478 9.224398665264 3 +2 3485 9.224558665264 1 +2 3517 9.231276569158 3 +2 3528 9.231436569158 1 +2 3555 9.257384128789 3 +2 3562 9.257544128789 1 +2 3668 9.514556809491 0 +2 3676 9.514716809491 1 +2 3703 9.524398649996 3 +2 3710 9.524558649996 1 +2 3742 9.531276553733 3 +2 3753 9.531436553733 1 +2 3780 9.557384136549 3 +2 3787 9.557544136549 1 +2 3893 9.814556809491 0 +2 3901 9.814716809491 1 +2 3928 9.824398634568 3 +2 3935 9.824558634568 1 +2 3967 9.831276538055 3 +2 3978 9.831436538055 1 +2 4005 9.857384144771 3 +2 4012 9.857544144771 1 +2 4118 10.114556809491 0 +2 4126 10.114716809491 1 +2 4153 10.124398619363 3 +2 4160 10.124558619363 1 +2 4192 10.131276522386 3 +2 4203 10.131436522386 1 +2 4230 10.157384153312 3 +2 4237 10.157544153312 1 +2 4343 10.414556809491 0 +2 4351 10.414716809491 1 +2 4378 10.424398604844 3 +2 4385 10.424558604844 1 +2 4417 10.431276506743 3 +2 4428 10.431436506743 1 +2 4455 10.457384162122 3 +2 4462 10.457544162122 1 +2 4525 10.543993907449 3 +2 4544 10.544153907449 1 +2 4572 10.714556809491 0 +2 4580 10.714716809491 1 +2 4611 10.72439859379 3 +2 4618 10.72455859379 1 +2 4650 10.731276491102 3 +2 4661 10.731436491102 1 +2 4688 10.757384171218 3 +2 4695 10.757544171218 1 +2 4757 10.84399389067 3 +2 4772 10.84415389067 1 +2 4805 11.014556809491 0 +2 4813 11.014716809491 1 +2 4844 11.024398598014 3 +2 4851 11.024558598014 1 +2 4882 11.031276475464 3 +2 4889 11.031436475464 1 +2 4921 11.057384180599 3 +2 4928 11.057544180599 1 +2 4990 11.143993874452 3 +2 5005 11.144153874452 1 +2 5038 11.314556809491 0 +2 5046 11.314716809491 1 +2 5077 11.324398611475 3 +2 5084 11.324558611475 1 +2 5115 11.331276459858 3 +2 5122 11.331436459858 1 +2 5155 11.3573841902 3 +2 5166 11.3575441902 1 +2 5223 11.443993858741 3 +2 5238 11.444153858741 1 +2 5271 11.614556809491 0 +2 5279 11.614716809491 1 +2 5310 11.624398626396 3 +2 5317 11.624558626396 1 +2 5348 11.631276444245 3 +2 5355 11.631436444245 1 +2 5392 11.657384200055 3 +2 5403 11.657544200055 1 +2 5464 11.743993843502 3 +2 5479 11.744153843502 1 +2 5512 11.914556809491 0 +2 5520 11.914716809491 1 +2 5551 11.92439864171 3 +2 5558 11.92455864171 1 +2 5589 11.931276428595 3 +2 5596 11.931436428595 1 +2 5633 11.957384210159 3 +2 5644 11.957544210159 1 +2 5705 12.043993828636 3 +2 5720 12.044153828636 1 +2 5753 12.214556809491 0 +2 5761 12.214716809491 1 +2 5792 12.224398657188 3 +2 5799 12.224558657188 1 +2 5830 12.231276412948 3 +2 5837 12.231436412948 1 +2 5874 12.257384220477 3 +2 5885 12.257544220477 1 +2 5946 12.343993813991 3 +2 5961 12.344153813991 1 +2 5994 12.514556809491 0 +2 6002 12.514716809491 1 +2 6033 12.524398672694 3 +2 6040 12.524558672694 1 +2 6071 12.531276397317 3 +2 6078 12.531436397317 1 +2 6115 12.557384230993 3 +2 6126 12.557544230993 1 +2 6187 12.643993799362 3 +2 6202 12.644153799362 1 +2 6235 12.814556809491 0 +2 6243 12.814716809491 1 +2 6274 12.824398688243 3 +2 6281 12.824558688243 1 +2 6312 12.831276381695 3 +2 6319 12.831436381695 1 +2 6356 12.857384241685 3 +2 6367 12.857544241685 1 +2 6428 12.943993784749 3 +2 6443 12.944153784749 1 +2 6476 13.114556809491 0 +2 6484 13.114716809491 1 +2 6515 13.124398703844 3 +2 6522 13.124558703844 1 +2 6553 13.131276366027 3 +2 6560 13.131436366027 1 +2 6597 13.157384252586 3 +2 6608 13.157544252586 1 +2 6669 13.243993770092 3 +2 6684 13.244153770092 1 +2 6717 13.414556809491 0 +2 6725 13.414716809491 1 +2 6756 13.424398719435 3 +2 6763 13.424558719435 1 +2 6794 13.431276350417 3 +2 6801 13.431436350417 1 +2 6838 13.457384263637 3 +2 6849 13.457544263637 1 +2 6910 13.543993755468 3 +2 6925 13.544153755468 1 +2 6958 13.714556809491 0 +2 6966 13.714716809491 1 +2 6997 13.724398735043 3 +2 7004 13.724558735043 1 +2 7035 13.731276334798 3 +2 7042 13.731436334798 1 +2 7079 13.757384274837 3 +2 7090 13.757544274837 1 +2 7151 13.843993740827 3 +2 7166 13.844153740827 1 +2 7199 14.014556809491 0 +2 7207 14.014716809491 1 +2 7238 14.024398750707 3 +2 7245 14.024558750707 1 +2 7276 14.031276319127 3 +2 7283 14.031436319127 1 +2 7320 14.05738428623 3 +2 7331 14.05754428623 1 +2 7392 14.14399372616 3 +2 7407 14.14415372616 1 +2 7440 14.314556809491 0 +2 7448 14.314716809491 1 +2 7479 14.324398766341 3 +2 7486 14.324558766341 1 +2 7517 14.331276303517 3 +2 7524 14.331436303517 1 +2 7561 14.357384297742 3 +2 7572 14.357544297742 1 +2 7633 14.443993711546 3 +2 7648 14.444153711546 1 +2 7681 14.614556809491 0 +2 7689 14.614716809491 1 +2 7720 14.624398781946 3 +2 7727 14.624558781946 1 +2 7758 14.631276287929 3 +2 7765 14.631436287929 1 +2 7802 14.657384309371 3 +2 7813 14.657544309371 1 +2 7874 14.743993696951 3 +2 7889 14.744153696951 1 +2 7922 14.914556809491 0 +2 7930 14.914716809491 1 +2 7961 14.924398797557 3 +2 7968 14.924558797557 1 +2 7999 14.931276272358 3 +2 8006 14.931436272358 1 +2 8043 14.957384321127 3 +2 8054 14.957544321127 1 +2 8115 15.043993682366 3 +2 8130 15.044153682366 1 +2 8163 15.214556809491 0 +2 8171 15.214716809491 1 +2 8202 15.224398813176 3 +2 8209 15.224558813176 1 +2 8240 15.231276256794 3 +2 8247 15.231436256794 1 +2 8284 15.257384333003 3 +2 8295 15.257544333003 1 +2 8356 15.343993667781 3 +2 8371 15.344153667781 1 +2 8404 15.514556809491 0 +2 8412 15.514716809491 1 +2 8443 15.524398828841 3 +2 8450 15.524558828841 1 +2 8481 15.531276241243 3 +2 8488 15.531436241243 1 +2 8525 15.557384345028 3 +2 8536 15.557544345028 1 +2 8597 15.643993653166 3 +2 8612 15.644153653166 1 +2 8645 15.814556809491 0 +2 8653 15.814716809491 1 +2 8684 15.824398844455 3 +2 8691 15.824558844455 1 +2 8722 15.831276225819 3 +2 8729 15.831436225819 1 +2 8766 15.857384357121 3 +2 8777 15.857544357121 1 +2 8838 15.943993638616 3 +2 8853 15.944153638616 1 +2 8886 16.114556809491 0 +2 8894 16.114716809491 1 +2 8929 16.124398860085 3 +2 8936 16.124558860085 1 +2 8967 16.131276210464 3 +2 8974 16.131436210464 1 +2 9011 16.157384369327 3 +2 9022 16.157544369327 1 +2 9046 16.193586240802 3 +2 9061 16.193746240802 1 +2 9087 16.243993624037 3 +2 9102 16.244153624037 1 +2 9135 16.414556809491 0 +2 9143 16.414716809491 1 +2 9178 16.424398875726 3 +2 9185 16.424558875726 1 +2 9216 16.431276195381 3 +2 9223 16.431436195381 1 +2 9260 16.457384381652 3 +2 9271 16.457544381652 1 +2 9295 16.4935862136 3 +2 9310 16.4937462136 1 +2 9336 16.54399360942 3 +2 9351 16.54415360942 1 +2 9384 16.714556809491 0 +2 9392 16.714716809491 1 +2 9427 16.724398891381 3 +2 9434 16.724558891381 1 +2 9465 16.731276181333 3 +2 9472 16.731436181333 1 +2 9509 16.757384394067 3 +2 9520 16.757544394067 1 +2 9544 16.793586189096 3 +2 9559 16.793746189096 1 +2 9585 16.84399359486 3 +2 9600 16.84415359486 1 +2 9633 17.014556809491 0 +2 9641 17.014716809491 1 +2 9677 17.02439890702 3 +2 9688 17.02455890702 1 +2 9714 17.031276173692 3 +2 9721 17.031436173692 1 +2 9758 17.057384406545 3 +2 9769 17.057544406545 1 +2 9792 17.093586167318 3 +2 9803 17.093746167318 1 +2 9833 17.143993580311 3 +2 9844 17.144153580311 1 +2 9882 17.314556809491 0 +2 9890 17.314716809491 1 +2 9926 17.324398922703 3 +2 9937 17.324558922703 1 +2 9963 17.331276182573 3 +2 9970 17.331436182573 1 +2 10008 17.357384419138 3 +2 10023 17.357544419138 1 +2 10041 17.39358614821 3 +2 10052 17.39374614821 1 +2 10082 17.443993565736 3 +2 10093 17.444153565736 1 +2 10131 17.614556809491 0 +2 10139 17.614716809491 1 +2 10175 17.624398938357 3 +2 10186 17.624558938357 1 +2 10212 17.631276196794 3 +2 10219 17.631436196794 1 +2 10257 17.657384431773 3 +2 10272 17.657544431773 1 +2 10290 17.69358613177 3 +2 10301 17.69374613177 1 +2 10331 17.743993551191 3 +2 10342 17.744153551191 1 +2 10380 17.914556809491 0 +2 10388 17.914716809491 1 +2 10420 17.924398954 3 +2 10431 17.924558954 1 +2 10457 17.931276211881 3 +2 10464 17.931436211881 1 +2 10502 17.957384444486 2 +2 10517 17.957544444486 1 +2 10531 17.993586116127 3 +2 10542 17.993746116127 1 +2 10572 18.04399353668 3 +2 10583 18.04415353668 1 +2 10621 18.214556809491 0 +2 10629 18.214716809491 1 +2 10661 18.224398969656 3 +2 10672 18.224558969656 1 +2 10694 18.231276227234 3 +2 10701 18.231436227234 1 +2 10768 18.293586100476 3 +2 10779 18.293746100476 1 +2 10809 18.343993522105 3 +2 10820 18.344153522105 1 +2 10854 18.514556809491 0 +2 10862 18.514716809491 1 +2 10894 18.524398984772 3 +2 10905 18.524558984772 1 +2 10927 18.531276242598 3 +2 10934 18.531436242598 1 +2 11001 18.593586085525 3 +2 11012 18.593746085525 1 +2 11042 18.643993508193 3 +2 11053 18.644153508193 1 +2 11087 18.814556809491 0 +2 11095 18.814716809491 1 +2 11127 18.824398992869 3 +2 11138 18.824558992869 1 +2 11160 18.831276252819 3 +2 11167 18.831436252819 1 +2 11234 18.893586078461 3 +2 11245 18.893746078461 1 +2 11275 18.9439935017 3 +2 11286 18.9441535017 1 +2 11320 19.114556809491 0 +2 11328 19.114716809491 1 +2 11360 19.124398995465 3 +2 11371 19.124558995465 1 +2 11393 19.131276259429 3 +2 11400 19.131436259429 1 +2 11467 19.193586077908 3 +2 11478 19.193746077908 1 +2 11508 19.243993499144 3 +2 11519 19.244153499144 1 +2 11553 19.414556809491 0 +2 11561 19.414716809491 1 +2 11593 19.424398998137 3 +2 11604 19.424558998137 1 +2 11626 19.431276267371 3 +2 11633 19.431436267371 1 +2 11700 19.493586078167 3 +2 11711 19.493746078167 1 +2 11741 19.543993497268 3 +2 11752 19.544153497268 1 +2 11786 19.714556809491 0 +2 11794 19.714716809491 1 +2 11826 19.724399001753 3 +2 11837 19.724559001753 1 +2 11859 19.731276277055 3 +2 11866 19.731436277055 1 +2 11933 19.793586078318 3 +2 11944 19.793746078318 1 +2 11974 19.843993496076 3 +2 11985 19.844153496076 1 +2 12019 20.014556809491 0 +2 12027 20.014716809491 1 +2 12063 20.024399006417 3 +2 12074 20.024559006417 1 +2 12096 20.031276288225 3 +2 12103 20.031436288225 1 +2 12141 20.057384440568 3 +2 12156 20.057544440568 1 +2 12174 20.093586078154 3 +2 12185 20.093746078154 1 +2 12215 20.143993495659 3 +2 12226 20.144153495659 1 +2 12260 20.314556809491 0 +2 12268 20.314716809491 1 +2 12304 20.324399012107 3 +2 12315 20.324559012107 1 +2 12337 20.331276300497 3 +2 12344 20.331436300497 1 +2 12382 20.357384434459 3 +2 12397 20.357544434459 1 +2 12415 20.393586077762 3 +2 12426 20.393746077762 1 +2 12456 20.443993496115 3 +2 12467 20.444153496115 1 +2 12501 20.614556809491 0 +2 12509 20.614716809491 1 +2 12545 20.624399018883 3 +2 12556 20.624559018883 1 +2 12578 20.631276313658 3 +2 12585 20.631436313658 1 +2 12623 20.657384428826 3 +2 12638 20.657544428826 1 +2 12656 20.693586077186 3 +2 12667 20.693746077186 1 +2 12697 20.743993497538 3 +2 12708 20.744153497538 1 +2 12742 20.914556809491 0 +2 12750 20.914716809491 1 +2 12786 20.924399026768 3 +2 12797 20.924559026768 1 +2 12819 20.931276327544 3 +2 12826 20.931436327544 1 +2 12864 20.957384423566 3 +2 12879 20.957544423566 1 +2 12897 20.993586076495 3 +2 12908 20.993746076495 1 +2 12938 21.043993500002 3 +2 12949 21.044153500002 1 +2 12983 21.214556809491 0 +2 12991 21.214716809491 1 +2 13027 21.224399035584 3 +2 13038 21.224559035584 1 +2 13060 21.231276341939 3 +2 13067 21.231436341939 1 +2 13105 21.257384418748 3 +2 13120 21.257544418748 1 +2 13138 21.293586075717 3 +2 13149 21.293746075717 1 +2 13179 21.343993503566 3 +2 13190 21.344153503566 1 +2 13224 21.514556809491 0 +2 13232 21.514716809491 1 +2 13268 21.524399045258 3 +2 13279 21.524559045258 1 +2 13301 21.531276356826 3 +2 13308 21.531436356826 1 +2 13346 21.557384414308 3 +2 13361 21.557544414308 1 +2 13379 21.593586074727 3 +2 13390 21.593746074727 1 +2 13420 21.643993508321 3 +2 13431 21.644153508321 1 +2 13465 21.814556809491 0 +2 13473 21.814716809491 1 +2 13509 21.82439905578 3 +2 13520 21.82455905578 1 +2 13542 21.831276372147 3 +2 13549 21.831436372147 1 +2 13587 21.85738441021 3 +2 13602 21.85754441021 1 +2 13620 21.893586073568 3 +2 13631 21.893746073568 1 +2 13661 21.943993514273 3 +2 13672 21.944153514273 1 +2 13706 22.114556809491 0 +2 13714 22.114716809491 1 +2 13750 22.124399067102 3 +2 13761 22.124559067102 1 +2 13783 22.131276387853 3 +2 13790 22.131436387853 1 +2 13828 22.157384406427 3 +2 13843 22.157544406427 1 +2 13861 22.193586072252 3 +2 13872 22.193746072252 1 +2 13902 22.243993521464 3 +2 13913 22.244153521464 1 +2 13947 22.414556809491 0 +2 13955 22.414716809491 1 +2 13991 22.424399079181 3 +2 14002 22.424559079181 1 +2 14024 22.431276403914 3 +2 14031 22.431436403914 1 +2 14069 22.457384402943 3 +2 14084 22.457544402943 1 +2 14102 22.4935860709 3 +2 14113 22.4937460709 1 +2 14143 22.543993529992 3 +2 14154 22.544153529992 1 +2 14188 22.714556809491 0 +2 14196 22.714716809491 1 +2 14232 22.724399091991 3 +2 14243 22.724559091991 1 +2 14265 22.731276420334 3 +2 14272 22.731436420334 1 +2 14310 22.757384399779 3 +2 14325 22.757544399779 1 +2 14343 22.793586069444 3 +2 14354 22.793746069444 1 +2 14384 22.843993539394 3 +2 14395 22.844153539394 1 +2 14429 23.014556809491 0 +2 14437 23.014716809491 1 +2 14474 23.02439910552 3 +2 14489 23.02455910552 1 +2 14506 23.031276437066 3 +2 14513 23.031436437066 1 +2 14551 23.057384396928 3 +2 14566 23.057544396928 1 +2 14584 23.093586067888 3 +2 14595 23.093746067888 1 +2 14625 23.143993549741 3 +2 14636 23.144153549741 1 +2 14670 23.314556809491 0 +2 14678 23.314716809491 1 +2 14715 23.324399119693 3 +2 14730 23.324559119693 1 +2 14747 23.331276454133 3 +2 14754 23.331436454133 1 +2 14792 23.357384394378 3 +2 14807 23.357544394378 1 +2 14825 23.393586066244 3 +2 14836 23.393746066244 1 +2 14866 23.443993561136 3 +2 14877 23.444153561136 1 +2 14911 23.614556809491 0 +2 14919 23.614716809491 1 +2 14956 23.624399134588 3 +2 14971 23.624559134588 1 +2 14988 23.63127647154 3 +2 14995 23.63143647154 1 +2 15033 23.6573843921 3 +2 15048 23.6575443921 1 +2 15066 23.693586064635 3 +2 15077 23.693746064635 1 +2 15107 23.743993567162 3 +2 15118 23.744153567162 1 +2 15152 23.914556809491 0 +2 15160 23.914716809491 1 +2 15197 23.924399150101 3 +2 15212 23.924559150101 1 +2 15230 23.931276489241 3 +2 15241 23.931436489241 1 +2 15274 23.957384390086 3 +2 15289 23.957544390086 1 +2 15307 23.993586063012 3 +2 15318 23.993746063012 1 +2 15348 24.043993568182 3 +2 15359 24.044153568182 1 +2 15393 24.214556809491 0 +2 15401 24.214716809491 1 +2 15438 24.224399166253 3 +2 15453 24.224559166253 1 +2 15471 24.231276507166 3 +2 15482 24.231436507166 1 +2 15514 24.257384388316 3 +2 15525 24.257544388316 1 +2 15548 24.293586061339 3 +2 15559 24.293746061339 1 +2 15589 24.343993571496 3 +2 15600 24.344153571496 1 +2 15634 24.514556809491 0 +2 15642 24.514716809491 1 +2 15679 24.524399183101 3 +2 15694 24.524559183101 1 +2 15712 24.531276525482 3 +2 15723 24.531436525482 1 +2 15755 24.557384386729 3 +2 15766 24.557544386729 1 +2 15789 24.593586059807 3 +2 15800 24.593746059807 1 +2 15830 24.6439935745 3 +2 15841 24.6441535745 1 +2 15875 24.814556809491 0 +2 15883 24.814716809491 1 +2 15920 24.824399200464 3 +2 15935 24.824559200464 1 +2 15953 24.831276544164 3 +2 15964 24.831436544164 1 +2 15996 24.857384385359 3 +2 16007 24.857544385359 1 +2 16030 24.893586058439 3 +2 16041 24.893746058439 1 +2 16071 24.943993577203 3 +2 16082 24.944153577203 1 +2 16116 25.114556809491 0 +2 16124 25.114716809491 1 +2 16161 25.12439921797 3 +2 16176 25.12455921797 1 +2 16194 25.131276563184 3 +2 16205 25.131436563184 1 +2 16237 25.157384384197 3 +2 16248 25.157544384197 1 +2 16271 25.193586057203 3 +2 16282 25.193746057203 1 +2 16312 25.24399357959 3 +2 16323 25.24415357959 1 +2 16357 25.414556809491 0 +2 16365 25.414716809491 1 +2 16402 25.424399235494 3 +2 16417 25.424559235494 1 +2 16435 25.431276582461 3 +2 16446 25.431436582461 1 +2 16478 25.457384383218 3 +2 16489 25.457544383218 1 +2 16512 25.493586056133 3 +2 16523 25.493746056133 1 +2 16553 25.543993581628 3 +2 16564 25.544153581628 1 +2 16598 25.714556809491 0 +2 16606 25.714716809491 1 +2 16643 25.72439925309 3 +2 16658 25.72455925309 1 +2 16676 25.731276602139 3 +2 16687 25.731436602139 1 +2 16719 25.757384382378 3 +2 16730 25.757544382378 1 +2 16753 25.793586055358 3 +2 16764 25.793746055358 1 +2 16794 25.843993583304 3 +2 16805 25.844153583304 1 +2 16839 26.014556809491 0 +2 16847 26.014716809491 1 +2 16884 26.02439927079 3 +2 16899 26.02455927079 1 +2 16917 26.031276621424 3 +2 16928 26.031436621424 1 +2 16960 26.057384381741 3 +2 16971 26.057544381741 1 +2 16994 26.093586054815 3 +2 17005 26.093746054815 1 +2 17035 26.143993584607 3 +2 17046 26.144153584607 1 +2 17080 26.314556809491 0 +2 17088 26.314716809491 1 +2 17125 26.324399288461 3 +2 17140 26.324559288461 1 +2 17158 26.331276639945 3 +2 17169 26.331436639945 1 +2 17201 26.357384381246 3 +2 17212 26.357544381246 1 +2 17235 26.393586054911 3 +2 17246 26.393746054911 1 +2 17276 26.443993585474 3 +2 17287 26.444153585474 1 +2 17321 26.614556809491 0 +2 17329 26.614716809491 1 +2 17366 26.624399306213 3 +2 17381 26.624559306213 1 +2 17399 26.631276657697 3 +2 17410 26.631436657697 1 +2 17442 26.657384380772 3 +2 17453 26.657544380772 1 +2 17476 26.693586055774 3 +2 17487 26.693746055774 1 +2 17517 26.743993585917 3 +2 17528 26.744153585917 1 +2 17562 26.914556809491 0 +2 17570 26.914716809491 1 +2 17607 26.924399324013 3 +2 17622 26.924559324013 1 +2 17640 26.931276674713 3 +2 17651 26.931436674713 1 +2 17683 26.957384380173 3 +2 17694 26.957544380173 1 +2 17717 26.993586057387 3 +2 17728 26.993746057387 1 +2 17758 27.043993586021 3 +2 17769 27.044153586021 1 +2 17803 27.214556809491 0 +2 17811 27.214716809491 1 +2 17844 27.224399341349 2 +2 17859 27.224559341349 1 +2 17873 27.231276690939 3 +2 17884 27.231436690939 1 +2 17916 27.257384379228 3 +2 17927 27.257544379228 1 +2 17950 27.293586059723 3 +2 17961 27.293746059723 1 +2 17991 27.343993585835 3 +2 18002 27.344153585835 1 +2 18036 27.514556809491 0 +2 18044 27.514716809491 1 +2 18106 27.531276706855 3 +2 18117 27.531436706855 1 +2 18149 27.557384377938 3 +2 18160 27.557544377938 1 +2 18183 27.593586062815 3 +2 18194 27.593746062815 1 +2 18224 27.643993585638 3 +2 18235 27.644153585638 1 +2 18269 27.814556809491 0 +2 18277 27.814716809491 1 +2 18339 27.831276720086 3 +2 18350 27.831436720086 1 +2 18382 27.857384376349 3 +2 18393 27.857544376349 1 +2 18416 27.893586066606 3 +2 18427 27.893746066606 1 +2 18457 27.943993585413 3 +2 18468 27.944153585413 1 +2 18502 28.114556809491 0 +2 18510 28.114716809491 1 +2 18572 28.13127672571 3 +2 18583 28.13143672571 1 +2 18615 28.157384373989 3 +2 18626 28.157544373989 1 +2 18649 28.193586071088 3 +2 18660 28.193746071088 1 +2 18690 28.243993585227 3 +2 18701 28.244153585227 1 +2 18735 28.414556809491 0 +2 18743 28.414716809491 1 +2 18805 28.431276732587 3 +2 18816 28.431436732587 1 +2 18848 28.457384371101 3 +2 18859 28.457544371101 1 +2 18882 28.493586076328 3 +2 18893 28.493746076328 1 +2 18923 28.543993585019 3 +2 18934 28.544153585019 1 +2 18968 28.714556809491 0 +2 18976 28.714716809491 1 +2 19039 28.731276740327 3 +2 19054 28.731436740327 1 +2 19081 28.75738436664 3 +2 19092 28.75754436664 1 +2 19116 28.793586082194 3 +2 19131 28.793746082194 1 +2 19156 28.843993584814 3 +2 19167 28.844153584814 1 +2 19201 29.014556809491 0 +2 19209 29.014716809491 1 +2 19272 29.031276748231 3 +2 19287 29.031436748231 1 +2 19310 29.057384360134 3 +2 19321 29.057544360134 1 +2 19341 29.093586088751 3 +2 19356 29.093746088751 1 +2 19381 29.143993584619 3 +2 19392 29.144153584619 1 +2 19426 29.314556809491 0 +2 19434 29.314716809491 1 +2 19497 29.331276756353 3 +2 19512 29.331436756353 1 +2 19534 29.357384350663 3 +2 19541 29.357544350663 1 +2 19566 29.393586095971 3 +2 19581 29.393746095971 1 +2 19606 29.443993584404 3 +2 19617 29.444153584404 1 +2 19651 29.614556809491 0 +2 19659 29.614716809491 1 +2 19722 29.631276764677 3 +2 19737 29.631436764677 1 +2 19759 29.657384339017 3 +2 19766 29.657544339017 1 +2 19791 29.693586103788 3 +2 19806 29.693746103788 1 +2 19831 29.743993584219 3 +2 19842 29.744153584219 1 +2 19876 29.914556809491 0 +2 19884 29.914716809491 1 +2 19947 29.931276773214 3 +2 19962 29.931436773214 1 +2 19984 29.957384326873 3 +2 19991 29.957544326873 1 +2 20016 29.993586112191 3 +2 20031 29.993746112191 1 +2 20056 30.043993584023 3 +2 20067 30.044153584023 1 +2 20101 30.214556809491 0 +2 20109 30.214716809491 1 +2 20172 30.231276781919 3 +2 20187 30.231436781919 1 +2 20209 30.257384314288 3 +2 20216 30.257544314288 1 +2 20241 30.293586121137 3 +2 20256 30.293746121137 1 +2 20281 30.343993583815 3 +2 20292 30.344153583815 1 +2 20326 30.514556809491 0 +2 20334 30.514716809491 1 +2 20397 30.531276790863 3 +2 20412 30.531436790863 1 +2 20434 30.557384301358 3 +2 20441 30.557544301358 1 +2 20466 30.593586130599 3 +2 20481 30.593746130599 1 +2 20506 30.643993583594 3 +2 20517 30.644153583594 1 +2 20551 30.814556809491 0 +2 20559 30.814716809491 1 +2 20623 30.831276800084 3 +2 20642 30.831436800084 1 +2 20659 30.857384288203 3 +2 20666 30.857544288203 1 +2 20691 30.893586140579 3 +2 20706 30.893746140579 1 +2 20731 30.943993583376 3 +2 20742 30.944153583376 1 +2 20776 31.114556809491 0 +2 20784 31.114716809491 1 +2 20852 31.131276809733 3 +2 20871 31.131436809733 1 +2 20888 31.157384274763 3 +2 20895 31.157544274763 1 +2 20920 31.193586151091 3 +2 20935 31.193746151091 1 +2 20964 31.243993583185 3 +2 20975 31.244153583185 1 +2 21009 31.414556809491 0 +2 21017 31.414716809491 1 +2 21085 31.43127681984 3 +2 21104 31.43143681984 1 +2 21121 31.45738426113 3 +2 21128 31.45754426113 1 +2 21153 31.493586162045 3 +2 21168 31.493746162045 1 +2 21197 31.543993582999 3 +2 21208 31.544153582999 1 +2 21242 31.714556809491 0 +2 21250 31.714716809491 1 +2 21318 31.73127683044 3 +2 21337 31.73143683044 1 +2 21354 31.757384247459 3 +2 21361 31.757544247459 1 +2 21386 31.793586173478 3 +2 21401 31.793746173478 1 +2 21429 31.843993582814 3 +2 21436 31.844153582814 1 +2 21475 32.014556809491 0 +2 21483 32.014716809491 1 +2 21551 32.031276841444 3 +2 21570 32.031436841444 1 +2 21587 32.057384234163 3 +2 21594 32.057544234163 1 +2 21620 32.093586185302 3 +2 21639 32.093746185302 1 +2 21662 32.143993582627 3 +2 21669 32.144153582627 1 +2 21708 32.314556809491 0 +2 21716 32.314716809491 1 +2 21784 32.331276852904 3 +2 21803 32.331436852904 1 +2 21820 32.357384221209 3 +2 21827 32.357544221209 1 +2 21853 32.393586197538 3 +2 21872 32.393746197538 1 +2 21895 32.44399358243 3 +2 21902 32.44415358243 1 +2 21941 32.614556809491 0 +2 21949 32.614716809491 1 +2 22017 32.631276864721 3 +2 22036 32.631436864721 1 +2 22053 32.657384208687 3 +2 22060 32.657544208687 1 +2 22086 32.693586210128 3 +2 22105 32.693746210128 1 +2 22128 32.743993582216 3 +2 22135 32.744153582216 1 +2 22174 32.914556809491 0 +2 22182 32.914716809491 1 +2 22250 32.931276876958 3 +2 22269 32.931436876958 1 +2 22286 32.957384196619 3 +2 22293 32.957544196619 1 +2 22319 32.993586223119 3 +2 22338 32.993746223119 1 +2 22361 33.043993582014 3 +2 22368 33.044153582014 1 +2 22407 33.214556809491 0 +2 22415 33.214716809491 1 +2 22483 33.231276889508 3 +2 22502 33.231436889508 1 +2 22519 33.25738418501 3 +2 22526 33.25754418501 1 +2 22552 33.293586236404 3 +2 22571 33.293746236404 1 +2 22594 33.34399358181 3 +2 22601 33.34415358181 1 +2 22640 33.514556809491 0 +2 22648 33.514716809491 1 +2 22716 33.531276902417 3 +2 22735 33.531436902417 1 +2 22752 33.557384173944 3 +2 22759 33.557544173944 1 +2 22785 33.593586250026 3 +2 22804 33.593746250026 1 +2 22827 33.643993581593 3 +2 22834 33.644153581593 1 +2 22873 33.814556809491 0 +2 22881 33.814716809491 1 +2 22945 33.831276915646 3 +2 22964 33.831436915646 1 +2 22981 33.857384163418 3 +2 22988 33.857544163418 1 +2 23051 33.943993581377 3 +2 23057 33.944153581377 1 +2 23089 34.114556809491 0 +2 23096 34.114716809491 1 +2 23175 34.157384153508 3 +2 23181 34.157544153508 1 +2 23209 34.243993581155 3 +2 23215 34.244153581155 1 +2 23247 34.414556809491 0 +2 23254 34.414716809491 1 +2 23333 34.457384144204 3 +2 23339 34.457544144204 1 +2 23367 34.543993580981 3 +2 23373 34.544153580981 1 +2 23405 34.714556809491 0 +2 23412 34.714716809491 1 +2 23491 34.75738413555 3 +2 23497 34.75754413555 1 +2 23525 34.843993580776 3 +2 23531 34.844153580776 1 +2 23563 35.014556809491 0 +2 23570 35.014716809491 1 +2 23649 35.057384127604 3 +2 23655 35.057544127604 1 +2 23683 35.143993580566 3 +2 23689 35.144153580566 1 +2 23725 35.314556809491 0 +2 23732 35.314716809491 1 +2 23811 35.357384120761 3 +2 23817 35.357544120761 1 +2 23849 35.443993580357 3 +2 23855 35.444153580357 1 +2 23891 35.614556809491 0 +2 23898 35.614716809491 1 +2 23977 35.657384115863 3 +2 23983 35.657544115863 1 +2 24015 35.743993580181 3 +2 24021 35.744153580181 1 +2 24057 35.914556809491 0 +2 24064 35.914716809491 1 +2 24143 35.957384112909 3 +2 24149 35.957544112909 1 +2 24181 36.043993579975 3 +2 24187 36.044153579975 1 +2 24223 36.214556809491 0 +2 24230 36.214716809491 1 +2 24309 36.257384111896 3 +2 24315 36.257544111896 1 +2 24347 36.343993579779 3 +2 24353 36.344153579779 1 +2 24389 36.514556809491 0 +2 24396 36.514716809491 1 +2 24475 36.557384112695 3 +2 24481 36.557544112695 1 +2 24513 36.64399357959 3 +2 24519 36.64415357959 1 +2 24555 36.814556809491 0 +2 24562 36.814716809491 1 +2 24641 36.857384114665 3 +2 24647 36.857544114665 1 +2 24679 36.943993579358 3 +2 24685 36.944153579358 1 +2 24721 37.114556809491 0 +2 24728 37.114716809491 1 +2 24807 37.157384116577 3 +2 24813 37.157544116577 1 +2 24845 37.243993577605 3 +2 24851 37.244153577605 1 +2 24887 37.414556809491 0 +2 24894 37.414716809491 1 +2 24973 37.457384118525 3 +2 24979 37.457544118525 1 +2 25011 37.543993572915 3 +2 25017 37.544153572915 1 +2 25053 37.714556809491 0 +2 25060 37.714716809491 1 +2 25139 37.757384120668 3 +2 25145 37.757544120668 1 +2 25177 37.843993571184 3 +2 25183 37.844153571184 1 +2 25219 38.014556809491 0 +2 25226 38.014716809491 1 +2 25305 38.05738412309 3 +2 25311 38.05754412309 1 +2 25343 38.143993570903 3 +2 25349 38.144153570903 1 +2 25385 38.314556809491 0 +2 25392 38.314716809491 1 +2 25471 38.357384125785 3 +2 25477 38.357544125785 1 +2 25509 38.443993571748 3 +2 25515 38.444153571748 1 +2 25551 38.614556809491 0 +2 25558 38.614716809491 1 +2 25637 38.65738412876 3 +2 25643 38.65754412876 1 +2 25675 38.74399357356 3 +2 25681 38.74415357356 1 +2 25717 38.914556809491 0 +2 25724 38.914716809491 1 +2 25803 38.957384132048 3 +2 25809 38.957544132048 1 +2 25841 39.043993576469 3 +2 25847 39.044153576469 1 +2 25883 39.214556809491 0 +2 25890 39.214716809491 1 +2 25969 39.257384135646 3 +2 25975 39.257544135646 1 +2 26007 39.34399358036 3 +2 26013 39.34415358036 1 +2 26049 39.514556809491 0 +2 26056 39.514716809491 1 +2 26135 39.557384139563 3 +2 26141 39.557544139563 1 +2 26173 39.643993585234 3 +2 26179 39.644153585234 1 +2 26215 39.814556809491 0 +2 26222 39.814716809491 1 +2 26301 39.857384143904 3 +2 26307 39.857544143904 1 +2 26339 39.943993591067 3 +2 26345 39.944153591067 1 +2 26381 40.114556809491 0 +2 26388 40.114716809491 1 +2 26468 40.157384148943 3 +2 26478 40.157544148943 1 +2 26506 40.243993597798 3 +2 26516 40.244153597798 1 +2 26547 40.414556809491 0 +2 26554 40.414716809491 1 +2 26634 40.457384154717 3 +2 26644 40.457544154717 1 +2 26672 40.543993605352 3 +2 26682 40.544153605352 1 +2 26713 40.714556809491 0 +2 26720 40.714716809491 1 +2 26804 40.757384161295 3 +2 26814 40.757544161295 1 +2 26842 40.843993613829 3 +2 26852 40.844153613829 1 +2 26887 41.014556809491 0 +2 26894 41.014716809491 1 +2 26978 41.05738416852 3 +2 26988 41.05754416852 1 +2 27016 41.143993623009 3 +2 27026 41.144153623009 1 +2 27061 41.314556809491 0 +2 27068 41.314716809491 1 +2 27152 41.357384176462 3 +2 27162 41.357544176462 1 +2 27190 41.443993632949 3 +2 27200 41.444153632949 1 +2 27235 41.614556809491 0 +2 27242 41.614716809491 1 +2 27326 41.657384185007 3 +2 27336 41.657544185007 1 +2 27364 41.743993643584 3 +2 27374 41.744153643584 1 +2 27409 41.914556809491 0 +2 27416 41.914716809491 1 +2 27500 41.957384194196 3 +2 27510 41.957544194196 1 +2 27538 42.043993655076 3 +2 27548 42.044153655076 1 +2 27583 42.214556809491 0 +2 27590 42.214716809491 1 +2 27674 42.257384203962 3 +2 27684 42.257544203962 1 +2 27712 42.343993667279 3 +2 27722 42.344153667279 1 +2 27757 42.514556809491 0 +2 27764 42.514716809491 1 +2 27848 42.557384214263 3 +2 27858 42.557544214263 1 +2 27886 42.643993680118 3 +2 27896 42.644153680118 1 +2 27931 42.814556809491 0 +2 27938 42.814716809491 1 +2 28022 42.857384225113 3 +2 28032 42.857544225113 1 +2 28060 42.943993693453 3 +2 28070 42.944153693453 1 +2 28105 43.114556809491 0 +2 28112 43.114716809491 1 +2 28196 43.15738423643 3 +2 28206 43.15754423643 1 +2 28234 43.243993707142 3 +2 28244 43.244153707142 1 +2 28279 43.414556809491 0 +2 28286 43.414716809491 1 +2 28370 43.457384248185 3 +2 28380 43.457544248185 1 +2 28408 43.54399372113 3 +2 28418 43.54415372113 1 +2 28453 43.714556809491 0 +2 28460 43.714716809491 1 +2 28544 43.757384260094 3 +2 28554 43.757544260094 1 +2 28582 43.843993734654 3 +2 28592 43.844153734654 1 +2 28627 44.014556809491 0 +2 28634 44.014716809491 1 +2 28718 44.05738427113 3 +2 28728 44.05754427113 1 +2 28756 44.143993746996 3 +2 28766 44.144153746996 1 +2 28801 44.314556809491 0 +2 28808 44.314716809491 1 +2 28888 44.357384281313 3 +2 28898 44.357544281313 1 +2 28926 44.443993758119 3 +2 28936 44.444153758119 1 +2 28967 44.614556809491 0 +2 28974 44.614716809491 1 +2 29054 44.657384290579 3 +2 29064 44.657544290579 1 +2 29092 44.743993767993 3 +2 29102 44.744153767993 1 +2 29133 44.914556809491 0 +2 29140 44.914716809491 1 +2 29220 44.957384298829 3 +2 29230 44.957544298829 1 +2 29258 45.04399377659 3 +2 29268 45.04415377659 1 +2 29299 45.214556809491 0 +2 29306 45.214716809491 1 +2 29386 45.257384305981 3 +2 29396 45.257544305981 1 +2 29424 45.343993783865 3 +2 29434 45.344153783865 1 +2 29465 45.514556809491 0 +2 29472 45.514716809491 1 +2 29552 45.557384312206 3 +2 29562 45.557544312206 1 +2 29590 45.643993790499 3 +2 29600 45.644153790499 1 +2 29631 45.814556809491 0 +2 29638 45.814716809491 1 +2 29718 45.857384319049 3 +2 29728 45.857544319049 1 +2 29756 45.943993797914 3 +2 29766 45.944153797914 1 +2 29797 46.114556809491 0 +2 29804 46.114716809491 1 +2 29884 46.157384326651 3 +2 29894 46.157544326651 1 +2 29923 46.243993806003 3 +2 29937 46.244153806003 1 +2 29963 46.414556809491 0 +2 29970 46.414716809491 1 +2 30050 46.457384334527 3 +2 30060 46.457544334527 1 +2 30089 46.543993813964 3 +2 30103 46.544153813964 1 +2 30129 46.714556809491 0 +2 30136 46.714716809491 1 +2 30217 46.757384340536 3 +2 30231 46.757544340536 1 +2 30255 46.843993818595 3 +2 30269 46.844153818595 1 +2 30295 47.014556809491 0 +2 30302 47.014716809491 1 +2 30383 47.057384342941 3 +2 30397 47.057544342941 1 +2 30421 47.143993819767 3 +2 30435 47.144153819767 1 +2 30461 47.314556809491 0 +2 30468 47.314716809491 1 +2 30549 47.357384344047 3 +2 30563 47.357544344047 1 +2 30587 47.443993820025 3 +2 30601 47.444153820025 1 +2 30627 47.614556809491 0 +2 30634 47.614716809491 1 +2 30715 47.657384345882 3 +2 30729 47.657544345882 1 +2 30753 47.743993820289 3 +2 30767 47.744153820289 1 +2 30793 47.914556809491 0 +2 30800 47.914716809491 1 +2 30881 47.95738434856 3 +2 30895 47.95754434856 1 +2 30919 48.043993820574 3 +2 30933 48.044153820574 1 +2 30959 48.214556809491 0 +2 30966 48.214716809491 1 +2 31047 48.257384352185 3 +2 31061 48.257544352185 1 +2 31085 48.343993819422 3 +2 31099 48.344153819422 1 +2 31125 48.514556809491 0 +2 31132 48.514716809491 1 +2 31213 48.557384356842 3 +2 31227 48.557544356842 1 +2 31251 48.643993818083 3 +2 31265 48.644153818083 1 +2 31291 48.814556809491 0 +2 31298 48.814716809491 1 +2 31379 48.857384362664 3 +2 31393 48.857544362664 1 +2 31417 48.943993815516 3 +2 31431 48.944153815516 1 +2 31457 49.114556809491 0 +2 31464 49.114716809491 1 +2 31545 49.157384369644 3 +2 31559 49.157544369644 1 +2 31583 49.243993812156 3 +2 31597 49.244153812156 1 +2 31623 49.414556809491 0 +2 31630 49.414716809491 1 +2 31711 49.457384377764 3 +2 31725 49.457544377764 1 +2 31749 49.543993808185 3 +2 31763 49.544153808185 1 +2 31789 49.714556809491 0 +2 31796 49.714716809491 1 +2 31877 49.757384386996 3 +2 31891 49.757544386996 1 +2 31915 49.843993803841 3 +2 31929 49.844153803841 1 +2 31955 50.014556809491 0 +2 31962 50.014716809491 1 +2 32043 50.05738439718 3 +2 32057 50.05754439718 1 +2 32081 50.143993799517 3 +2 32095 50.144153799517 1 +2 32121 50.314556809491 0 +2 32128 50.314716809491 1 +2 32209 50.3573844083 3 +2 32223 50.3575444083 1 +2 32247 50.443993795058 3 +2 32261 50.444153795058 1 +2 32287 50.614556809491 0 +2 32294 50.614716809491 1 +2 32375 50.657384420305 3 +2 32389 50.657544420305 1 +2 32413 50.743993790392 3 +2 32427 50.744153790392 1 +2 32453 50.914556809491 0 +2 32460 50.914716809491 1 +2 32541 50.957384433105 3 +2 32555 50.957544433105 1 +2 32579 51.043993785603 3 +2 32593 51.044153785603 1 +2 32619 51.214556809491 0 +2 32626 51.214716809491 1 +2 32737 51.343993780685 3 +2 32751 51.344153780685 1 +2 32777 51.514556809491 0 +2 32784 51.514716809491 1 +2 32903 51.643993775717 3 +2 32917 51.644153775717 1 +2 32943 51.814556809491 0 +2 32950 51.814716809491 1 +2 33069 51.943993770578 3 +2 33083 51.944153770578 1 +2 33109 52.114556809491 0 +2 33116 52.114716809491 1 +2 33235 52.243993765452 3 +2 33249 52.244153765452 1 +2 33275 52.414556809491 0 +2 33282 52.414716809491 1 +2 33401 52.543993760435 3 +2 33415 52.544153760435 1 +2 33441 52.714556809491 0 +2 33448 52.714716809491 1 +2 33567 52.843993755494 3 +2 33581 52.844153755494 1 +2 33607 53.014556809491 0 +2 33614 53.014716809491 1 +2 33733 53.143993750731 3 +2 33747 53.144153750731 1 +0 22 2.1 0 +0 22 2.1 2 +0 47 2.614556809491 3 +0 51 2.614716809491 2 +0 92 2.914556809491 3 +0 96 2.914716809491 2 +0 139 3.214556809491 3 +0 144 3.214716809491 2 +0 199 3.514556809491 3 +0 204 3.514716809491 2 +0 283 3.814556809491 3 +0 288 3.814716809491 2 +0 368 4.114556809491 3 +0 374 4.114716809491 2 +0 465 4.414556809491 3 +0 471 4.414716809491 2 +0 584 4.714556809491 3 +0 590 4.714716809491 2 +0 703 5.014556809491 3 +0 709 5.014716809491 2 +0 831 5.314556809491 3 +0 838 5.314716809491 2 +0 965 5.614556809491 3 +0 972 5.614716809491 2 +0 1123 5.914556809491 3 +0 1130 5.914716809491 2 +0 1283 6.214556809491 3 +0 1291 6.214716809491 2 +0 1466 6.514556809491 3 +0 1474 6.514716809491 2 +0 1683 6.814556809491 3 +0 1691 6.814716809491 2 +0 1900 7.114556809491 3 +0 1908 7.114716809491 2 +0 2117 7.414556809491 3 +0 2125 7.414716809491 2 +0 2334 7.714556809491 3 +0 2342 7.714716809491 2 +0 2551 8.014556809491 3 +0 2559 8.014716809491 2 +0 2768 8.314556809491 3 +0 2776 8.314716809491 2 +0 2993 8.614556809491 3 +0 3001 8.614716809491 2 +0 3218 8.914556809491 3 +0 3226 8.914716809491 2 +0 3443 9.214556809491 3 +0 3451 9.214716809491 2 +0 3668 9.514556809491 3 +0 3676 9.514716809491 2 +0 3893 9.814556809491 3 +0 3901 9.814716809491 2 +0 4118 10.114556809491 3 +0 4126 10.114716809491 2 +0 4343 10.414556809491 3 +0 4351 10.414716809491 2 +0 4572 10.714556809491 3 +0 4580 10.714716809491 2 +0 4805 11.014556809491 3 +0 4813 11.014716809491 2 +0 5038 11.314556809491 3 +0 5046 11.314716809491 2 +0 5271 11.614556809491 3 +0 5279 11.614716809491 2 +0 5512 11.914556809491 3 +0 5520 11.914716809491 2 +0 5753 12.214556809491 3 +0 5761 12.214716809491 2 +0 5994 12.514556809491 3 +0 6002 12.514716809491 2 +0 6235 12.814556809491 3 +0 6243 12.814716809491 2 +0 6476 13.114556809491 3 +0 6484 13.114716809491 2 +0 6717 13.414556809491 3 +0 6725 13.414716809491 2 +0 6958 13.714556809491 3 +0 6966 13.714716809491 2 +0 7199 14.014556809491 3 +0 7207 14.014716809491 2 +0 7440 14.314556809491 3 +0 7448 14.314716809491 2 +0 7681 14.614556809491 3 +0 7689 14.614716809491 2 +0 7922 14.914556809491 3 +0 7930 14.914716809491 2 +0 8163 15.214556809491 3 +0 8171 15.214716809491 2 +0 8404 15.514556809491 3 +0 8412 15.514716809491 2 +0 8645 15.814556809491 3 +0 8653 15.814716809491 2 +0 8886 16.114556809491 3 +0 8894 16.114716809491 2 +0 9135 16.414556809491 3 +0 9143 16.414716809491 2 +0 9384 16.714556809491 3 +0 9392 16.714716809491 2 +0 9633 17.014556809491 3 +0 9641 17.014716809491 2 +0 9882 17.314556809491 3 +0 9890 17.314716809491 2 +0 10131 17.614556809491 3 +0 10139 17.614716809491 2 +0 10380 17.914556809491 3 +0 10388 17.914716809491 2 +0 10621 18.214556809491 3 +0 10629 18.214716809491 2 +0 10854 18.514556809491 3 +0 10862 18.514716809491 2 +0 11087 18.814556809491 3 +0 11095 18.814716809491 2 +0 11320 19.114556809491 3 +0 11328 19.114716809491 2 +0 11553 19.414556809491 3 +0 11561 19.414716809491 2 +0 11786 19.714556809491 3 +0 11794 19.714716809491 2 +0 12019 20.014556809491 3 +0 12027 20.014716809491 2 +0 12260 20.314556809491 3 +0 12268 20.314716809491 2 +0 12501 20.614556809491 3 +0 12509 20.614716809491 2 +0 12742 20.914556809491 3 +0 12750 20.914716809491 2 +0 12983 21.214556809491 3 +0 12991 21.214716809491 2 +0 13224 21.514556809491 3 +0 13232 21.514716809491 2 +0 13465 21.814556809491 3 +0 13473 21.814716809491 2 +0 13706 22.114556809491 3 +0 13714 22.114716809491 2 +0 13947 22.414556809491 3 +0 13955 22.414716809491 2 +0 14188 22.714556809491 3 +0 14196 22.714716809491 2 +0 14429 23.014556809491 3 +0 14437 23.014716809491 2 +0 14670 23.314556809491 3 +0 14678 23.314716809491 2 +0 14911 23.614556809491 3 +0 14919 23.614716809491 2 +0 15152 23.914556809491 3 +0 15160 23.914716809491 2 +0 15393 24.214556809491 3 +0 15401 24.214716809491 2 +0 15634 24.514556809491 3 +0 15642 24.514716809491 2 +0 15875 24.814556809491 3 +0 15883 24.814716809491 2 +0 16116 25.114556809491 3 +0 16124 25.114716809491 2 +0 16357 25.414556809491 3 +0 16365 25.414716809491 2 +0 16598 25.714556809491 3 +0 16606 25.714716809491 2 +0 16839 26.014556809491 3 +0 16847 26.014716809491 2 +0 17080 26.314556809491 3 +0 17088 26.314716809491 2 +0 17321 26.614556809491 3 +0 17329 26.614716809491 2 +0 17562 26.914556809491 3 +0 17570 26.914716809491 2 +0 17803 27.214556809491 3 +0 17811 27.214716809491 2 +0 18036 27.514556809491 3 +0 18044 27.514716809491 2 +0 18269 27.814556809491 3 +0 18277 27.814716809491 2 +0 18502 28.114556809491 3 +0 18510 28.114716809491 2 +0 18735 28.414556809491 3 +0 18743 28.414716809491 2 +0 18968 28.714556809491 3 +0 18976 28.714716809491 2 +0 19201 29.014556809491 3 +0 19209 29.014716809491 2 +0 19426 29.314556809491 3 +0 19434 29.314716809491 2 +0 19651 29.614556809491 3 +0 19659 29.614716809491 2 +0 19876 29.914556809491 3 +0 19884 29.914716809491 2 +0 20101 30.214556809491 3 +0 20109 30.214716809491 2 +0 20326 30.514556809491 3 +0 20334 30.514716809491 2 +0 20551 30.814556809491 3 +0 20559 30.814716809491 2 +0 20776 31.114556809491 3 +0 20784 31.114716809491 2 +0 21009 31.414556809491 3 +0 21017 31.414716809491 2 +0 21242 31.714556809491 3 +0 21250 31.714716809491 2 +0 21475 32.014556809491 3 +0 21483 32.014716809491 2 +0 21708 32.314556809491 3 +0 21716 32.314716809491 2 +0 21941 32.614556809491 3 +0 21949 32.614716809491 2 +0 22174 32.914556809491 3 +0 22182 32.914716809491 2 +0 22407 33.214556809491 3 +0 22415 33.214716809491 2 +0 22640 33.514556809491 3 +0 22648 33.514716809491 2 +0 22873 33.814556809491 3 +0 22881 33.814716809491 2 +0 23089 34.114556809491 3 +0 23096 34.114716809491 2 +0 23247 34.414556809491 3 +0 23254 34.414716809491 2 +0 23405 34.714556809491 3 +0 23412 34.714716809491 2 +0 23563 35.014556809491 3 +0 23570 35.014716809491 2 +0 23725 35.314556809491 3 +0 23732 35.314716809491 2 +0 23891 35.614556809491 3 +0 23898 35.614716809491 2 +0 24057 35.914556809491 3 +0 24064 35.914716809491 2 +0 24223 36.214556809491 3 +0 24230 36.214716809491 2 +0 24389 36.514556809491 3 +0 24396 36.514716809491 2 +0 24555 36.814556809491 3 +0 24562 36.814716809491 2 +0 24721 37.114556809491 3 +0 24728 37.114716809491 2 +0 24887 37.414556809491 3 +0 24894 37.414716809491 2 +0 25053 37.714556809491 3 +0 25060 37.714716809491 2 +0 25219 38.014556809491 3 +0 25226 38.014716809491 2 +0 25385 38.314556809491 3 +0 25392 38.314716809491 2 +0 25551 38.614556809491 3 +0 25558 38.614716809491 2 +0 25717 38.914556809491 3 +0 25724 38.914716809491 2 +0 25883 39.214556809491 3 +0 25890 39.214716809491 2 +0 26049 39.514556809491 3 +0 26056 39.514716809491 2 +0 26215 39.814556809491 3 +0 26222 39.814716809491 2 +0 26381 40.114556809491 3 +0 26388 40.114716809491 2 +0 26547 40.414556809491 3 +0 26554 40.414716809491 2 +0 26713 40.714556809491 3 +0 26720 40.714716809491 2 +0 26887 41.014556809491 3 +0 26894 41.014716809491 2 +0 27061 41.314556809491 3 +0 27068 41.314716809491 2 +0 27235 41.614556809491 3 +0 27242 41.614716809491 2 +0 27409 41.914556809491 3 +0 27416 41.914716809491 2 +0 27583 42.214556809491 3 +0 27590 42.214716809491 2 +0 27757 42.514556809491 3 +0 27764 42.514716809491 2 +0 27931 42.814556809491 3 +0 27938 42.814716809491 2 +0 28105 43.114556809491 3 +0 28112 43.114716809491 2 +0 28279 43.414556809491 3 +0 28286 43.414716809491 2 +0 28453 43.714556809491 3 +0 28460 43.714716809491 2 +0 28627 44.014556809491 3 +0 28634 44.014716809491 2 +0 28801 44.314556809491 3 +0 28808 44.314716809491 2 +0 28967 44.614556809491 3 +0 28974 44.614716809491 2 +0 29133 44.914556809491 3 +0 29140 44.914716809491 2 +0 29299 45.214556809491 3 +0 29306 45.214716809491 2 +0 29465 45.514556809491 3 +0 29472 45.514716809491 2 +0 29631 45.814556809491 3 +0 29638 45.814716809491 2 +0 29797 46.114556809491 3 +0 29804 46.114716809491 2 +0 29963 46.414556809491 3 +0 29970 46.414716809491 2 +0 30129 46.714556809491 3 +0 30136 46.714716809491 2 +0 30295 47.014556809491 3 +0 30302 47.014716809491 2 +0 30461 47.314556809491 3 +0 30468 47.314716809491 2 +0 30627 47.614556809491 3 +0 30634 47.614716809491 2 +0 30793 47.914556809491 3 +0 30800 47.914716809491 2 +0 30959 48.214556809491 3 +0 30966 48.214716809491 2 +0 31125 48.514556809491 3 +0 31132 48.514716809491 2 +0 31291 48.814556809491 3 +0 31298 48.814716809491 2 +0 31457 49.114556809491 3 +0 31464 49.114716809491 2 +0 31623 49.414556809491 3 +0 31630 49.414716809491 2 +0 31789 49.714556809491 3 +0 31796 49.714716809491 2 +0 31955 50.014556809491 3 +0 31962 50.014716809491 2 +0 32121 50.314556809491 3 +0 32128 50.314716809491 2 +0 32287 50.614556809491 3 +0 32294 50.614716809491 2 +0 32453 50.914556809491 3 +0 32460 50.914716809491 2 +0 32619 51.214556809491 3 +0 32626 51.214716809491 2 +0 32777 51.514556809491 3 +0 32784 51.514716809491 2 +0 32943 51.814556809491 3 +0 32950 51.814716809491 2 +0 33109 52.114556809491 3 +0 33116 52.114716809491 2 +0 33275 52.414556809491 3 +0 33282 52.414716809491 2 +0 33441 52.714556809491 3 +0 33448 52.714716809491 2 +0 33607 53.014556809491 3 +0 33614 53.014716809491 2 +47 402 4.131436647939 82 +47 499 4.43143664842 82 +47 618 4.731436648452 82 +47 737 5.031436648071 82 +47 868 5.331436647275 82 +47 1002 5.631436646135 82 +47 1062 5.693745836534 82 +47 1160 5.931436644725 82 +47 1220 5.993745836591 82 +47 1332 6.231436643012 82 +47 1399 6.293745836659 82 +47 1548 6.531436640981 82 +47 1616 6.593745836741 82 +47 1765 6.83143663868 82 +47 1833 6.893745836836 82 +47 1982 7.131436636128 82 +47 2050 7.193745836946 82 +47 2199 7.431436633301 82 +47 2267 7.493745837077 82 +47 2416 7.73143663025 82 +47 2484 7.79374583722 82 +47 2638 8.031436627008 82 +47 2701 8.093745837381 82 +47 2826 8.324559339726 82 +47 2859 8.331436623516 82 +47 2922 8.393745837564 82 +47 3051 8.624559337937 82 +47 3084 8.631436619892 82 +47 3147 8.693745837758 82 +47 3276 8.924559336079 82 +47 3309 8.931436616157 82 +47 3372 8.993745837958 82 +47 3501 9.2245593342 82 +47 3534 9.231436612299 82 +47 3597 9.293745838174 82 +47 3726 9.524559332304 82 +47 3759 9.531436608424 82 +47 3822 9.593745838387 82 +47 3951 9.824559330432 82 +47 3984 9.831436604546 82 +47 4047 9.89374583861 82 +47 4176 10.124559328574 82 +47 4209 10.13143660067 82 +47 4272 10.193745838842 82 +47 4401 10.424559326766 82 +47 4434 10.43143659687 82 +47 4497 10.493745839083 82 +47 4597 10.714717554278 82 +47 4634 10.724559325082 82 +47 4667 10.731436593222 82 +47 4730 10.793745839325 82 +47 4830 11.014717537855 82 +47 4867 11.0245593239 82 +47 4900 11.031436590451 82 +47 4963 11.093745839276 82 +47 5063 11.314717521994 82 +47 5100 11.324559323363 82 +47 5133 11.331436588755 82 +47 5196 11.39374583882 82 +47 5296 11.614717506596 82 +47 5333 11.624559323354 82 +47 5366 11.631436587986 82 +47 5433 11.69374583807 82 +47 5537 11.914717491616 82 +47 5574 11.924559323823 82 +47 5607 11.93143658806 82 +47 5674 11.993745837216 82 +47 5778 12.21471747694 82 +47 5815 12.224559324626 82 +47 5848 12.231436588692 82 +47 5915 12.293745836586 82 +47 6019 12.514717462306 82 +47 6056 12.524559325429 82 +47 6089 12.531436589365 82 +47 6156 12.593745836449 82 +47 6260 12.814717447681 82 +47 6297 12.824559326242 82 +47 6330 12.831436590037 82 +47 6397 12.893745836843 82 +47 6501 13.114717433023 82 +47 6538 13.12455932705 82 +47 6571 13.131436590725 82 +47 6638 13.193745837765 82 +47 6742 13.414717418408 82 +47 6779 13.424559327873 82 +47 6812 13.431436591403 82 +47 6879 13.493745839212 82 +47 6983 13.71471740379 82 +47 7020 13.724559328697 82 +47 7053 13.731436592089 82 +47 7120 13.793745841175 82 +47 7219 14.014717389119 82 +47 7261 14.024559329512 82 +47 7294 14.031436592779 82 +47 7361 14.093745843644 82 +47 7460 14.314717374493 82 +47 7502 14.324559330335 82 +47 7535 14.33143659346 82 +47 7602 14.393745846603 82 +47 7701 14.614717359901 82 +47 7743 14.624559331156 82 +47 7776 14.63143659416 82 +47 7843 14.693745849737 82 +47 7942 14.914717345304 82 +47 7984 14.924559331969 82 +47 8017 14.931436594853 82 +47 8084 14.993745846435 82 +47 8183 15.214717330718 82 +47 8225 15.224559332795 82 +47 8258 15.231436595569 82 +47 8325 15.293745833695 82 +47 8424 15.514717316098 82 +47 8466 15.524559333627 82 +47 8499 15.531436596269 82 +47 8566 15.593745819925 82 +47 8665 15.814717301533 82 +47 8707 15.824559334455 82 +47 8740 15.831436596954 82 +47 8807 15.893745806179 82 +47 8906 16.114717286953 82 +47 8952 16.124559335277 82 +47 8985 16.131436597671 82 +47 9052 16.193745792487 82 +47 9155 16.414717272365 82 +47 9201 16.424559336094 82 +47 9234 16.431436598394 82 +47 9301 16.493745780506 82 +47 9404 16.714717257775 82 +47 9450 16.724559336915 82 +47 9483 16.731436599099 82 +47 9550 16.793745771057 82 +47 9653 17.014717243226 82 +47 9699 17.024559337752 82 +47 9732 17.031436599817 82 +47 9799 17.093745764134 82 +47 9902 17.314717228649 82 +47 9948 17.324559338595 82 +47 9981 17.331436600539 82 +47 10048 17.393745759695 82 +47 10151 17.614717214117 82 +47 10197 17.624559339444 82 +47 10230 17.631436601271 82 +47 10297 17.69374575768 82 +47 10400 17.914717199593 82 +47 10442 17.92455934028 82 +47 10475 17.931436601981 82 +47 10538 17.993745756396 82 +47 10636 18.214717185085 82 +47 10712 18.231436602699 82 +47 10775 18.293745755106 82 +47 10869 18.514717170436 82 +47 10945 18.531436603438 82 +47 11008 18.593745753817 82 +47 11102 18.814717161182 82 +47 11178 18.831436604167 82 +47 11241 18.893745752536 82 +47 11335 19.114717157992 82 +47 11411 19.131436604913 82 +47 11474 19.193745751249 82 +47 11568 19.414717155892 82 +47 11644 19.431436605661 82 +47 11707 19.493745749962 82 +47 11801 19.714717154461 82 +47 11877 19.731436606768 82 +47 11940 19.793745748041 82 +47 12034 20.014717153776 82 +47 12114 20.031436608452 82 +47 12181 20.093745745227 82 +47 12275 20.31471715393 82 +47 12355 20.331436610588 82 +47 12422 20.393745741612 82 +47 12516 20.614717155021 82 +47 12596 20.631436613242 82 +47 12663 20.693745737229 82 +47 12757 20.914717157133 82 +47 12837 20.931436616399 82 +47 12904 20.993745732172 82 +47 12998 21.214717160323 82 +47 13078 21.231436620049 82 +47 13145 21.293745726489 82 +47 13239 21.514717164674 82 +47 13319 21.531436624253 82 +47 13386 21.593745720024 82 +47 13480 21.814717170229 82 +47 13560 21.831436629063 82 +47 13627 21.893745712841 82 +47 13721 22.114717176994 82 +47 13801 22.131436634514 82 +47 13868 22.193745704988 82 +47 13962 22.414717185072 82 +47 14042 22.431436640553 82 +47 14109 22.49374569653 82 +47 14203 22.714717194287 82 +47 14283 22.73143664727 82 +47 14350 22.793745687538 82 +47 14444 23.014717204223 82 +47 14524 23.031436654734 82 +47 14591 23.093745678184 82 +47 14685 23.314717215428 82 +47 14765 23.331436662913 82 +47 14832 23.393745668176 82 +47 14926 23.614717224167 82 +47 15006 23.631436668226 82 +47 15073 23.693745661458 82 +47 15167 23.914717225534 82 +47 15247 23.931436671861 82 +47 15314 23.993745658609 82 +47 15408 24.214717228476 82 +47 15488 24.231436682111 82 +47 15555 24.293745650885 82 +47 15649 24.514717231601 82 +47 15729 24.531436693849 82 +47 15796 24.593745643051 82 +47 15890 24.814717234404 82 +47 15970 24.831436706445 82 +47 16037 24.893745636131 82 +47 16131 25.114717236911 82 +47 16211 25.131436719839 82 +47 16278 25.193745630457 82 +47 16372 25.414717239038 82 +47 16452 25.431436734024 82 +47 16519 25.493745626591 82 +47 16608 25.714717240854 82 +47 16693 25.731436749009 82 +47 16760 25.793745625056 82 +47 16849 26.014717242289 82 +47 16934 26.031436763556 82 +47 17001 26.093745626275 82 +47 17090 26.314717243311 82 +47 17175 26.331436777067 82 +47 17242 26.393745630812 82 +47 17331 26.614717243876 82 +47 17416 26.631436789593 82 +47 17483 26.693745638677 82 +47 17572 26.914717244114 82 +47 17657 26.931436801135 82 +47 17724 26.993745649352 82 +47 17813 27.214717243957 82 +47 17895 27.231436811734 82 +47 17957 27.293745662469 82 +47 18046 27.514717243783 82 +47 18128 27.53143682198 82 +47 18190 27.593745677115 82 +47 18279 27.814717243571 82 +47 18361 27.831436831392 82 +47 18423 27.893745692883 82 +47 18512 28.114717243343 82 +47 18594 28.13143683163 82 +47 18656 28.193745709573 82 +47 18745 28.414717243176 82 +47 18827 28.4314368277 82 +47 18889 28.493745726899 82 +47 18978 28.71471724295 82 +47 19060 28.731436823589 82 +47 19122 28.793745744792 82 +47 19211 29.014717242752 82 +47 19293 29.031436819366 82 +47 19347 29.093745763099 82 +47 19436 29.31471724256 82 +47 19518 29.331436815156 82 +47 19572 29.393745781743 82 +47 19661 29.614717242339 82 +47 19743 29.631436811006 82 +47 19797 29.693745800658 82 +47 19886 29.914717242168 82 +47 19968 29.931436806789 82 +47 20022 29.99374581976 82 +47 20111 30.214717241952 82 +47 20193 30.231436802516 82 +47 20247 30.29374583909 82 +47 20336 30.514717241756 82 +47 20418 30.531436798256 82 +47 20472 30.593745858538 82 +47 20561 30.814717241503 82 +47 20638 30.831436794122 82 +47 20697 30.893745878179 82 +47 20786 31.114717241331 82 +47 20867 31.131436790287 82 +47 20931 31.193745897854 82 +47 21019 31.414717241138 82 +47 21100 31.431436787097 82 +47 21164 31.49374591764 82 +47 21252 31.714717240949 82 +47 21333 31.731436784583 82 +47 21397 31.793745937521 82 +47 21485 32.014717240765 82 +47 21566 32.031436782702 82 +47 21630 32.093745957424 82 +47 21718 32.31471724058 82 +47 21799 32.331436781557 82 +47 21863 32.393745977454 82 +47 21951 32.614717240362 82 +47 22032 32.631436781062 82 +47 22096 32.693745997543 82 +47 22184 32.914717240161 82 +47 22265 32.93143678126 82 +47 22329 32.993746017691 82 +47 22417 33.214717239961 82 +47 22498 33.23143678211 82 +47 22562 33.293746037835 82 +47 22650 33.514717239737 82 +47 22731 33.531436783685 82 +47 22800 33.593746058084 82 +47 22883 33.814717239531 82 +47 22960 33.831436785904 82 +47 23029 33.893746078308 82 +47 23098 34.11471723931 82 +47 23158 34.131436788788 82 +47 23256 34.414717239094 82 +47 23316 34.431436792338 82 +47 23414 34.71471723891 82 +47 23474 34.731436796515 82 +47 23572 35.014717238698 82 +47 23632 35.031436801357 82 +47 23734 35.31471723851 82 +47 23794 35.331436806756 82 +47 23828 35.357544434054 82 +47 23900 35.614717238324 82 +47 23960 35.631436812771 82 +47 23994 35.657544420736 82 +47 24071 35.914717238104 82 +47 24126 35.931436819372 82 +47 24160 35.957544409002 82 +47 24237 36.214717237923 82 +47 24292 36.231436826584 82 +47 24326 36.257544398867 82 +47 24403 36.514717237718 82 +47 24458 36.531436834329 82 +47 24492 36.557544390339 82 +47 24564 36.814717237512 82 +47 24624 36.831436842622 82 +47 24658 36.857544382745 82 +47 24730 37.114717236718 82 +47 24790 37.131436851096 82 +47 24824 37.157544373889 82 +47 24896 37.41471723223 82 +47 24956 37.431436854108 82 +47 24990 37.457544356842 82 +47 25062 37.714717229579 82 +47 25122 37.731436847205 82 +47 25151 37.757544333389 82 +47 25228 38.014717228941 82 +47 25288 38.031436839602 82 +47 25317 38.0575443092 82 +47 25394 38.314717229416 82 +47 25454 38.331436833175 82 +47 25483 38.357544284464 82 +47 25560 38.614717230908 82 +47 25620 38.631436827949 82 +47 25649 38.657544259185 82 +47 25726 38.914717233464 82 +47 25786 38.93143682395 82 +47 25815 38.957544233306 82 +47 25892 39.214717237033 82 +47 25952 39.231436821205 82 +47 25981 39.257544206756 82 +47 26058 39.514717241575 82 +47 26118 39.531436819725 82 +47 26147 39.557544179549 82 +47 26224 39.814717247083 82 +47 26284 39.831436819522 82 +47 26313 39.857544151671 82 +47 26390 40.114717253513 82 +47 26450 40.1314368206 82 +47 26474 40.157544123679 82 +47 26556 40.414717260797 82 +47 26616 40.431436822952 82 +47 26640 40.457544095641 82 +47 26722 40.714717269001 82 +47 26759 40.72455933755 82 +47 26786 40.731436826556 82 +47 26810 40.757544067729 82 +47 26896 41.014717277925 82 +47 26933 41.024559324799 82 +47 26960 41.031436831396 82 +47 26984 41.057544039737 82 +47 27070 41.314717287623 82 +47 27107 41.324559312788 82 +47 27134 41.331436837463 82 +47 27158 41.357544011756 82 +47 27244 41.614717298022 82 +47 27281 41.624559301583 82 +47 27308 41.631436844699 82 +47 27332 41.657543983797 82 +47 27418 41.914717309216 82 +47 27455 41.924559291388 82 +47 27482 41.931436852916 82 +47 27506 41.957543956357 82 +47 27592 42.214717321205 82 +47 27629 42.224559282466 82 +47 27656 42.231436861741 82 +47 27680 42.257543930301 82 +47 27766 42.514717333849 82 +47 27803 42.52455927473 82 +47 27830 42.531436870996 82 +47 27854 42.557543905564 82 +47 27940 42.814717347041 82 +47 27977 42.824559268076 82 +47 28004 42.831436880478 82 +47 28028 42.857543882214 82 +47 28119 43.114717360624 82 +47 28151 43.124559262415 82 +47 28178 43.131436890097 82 +47 28202 43.157543860218 82 +47 28293 43.414717374505 82 +47 28325 43.424559257654 82 +47 28352 43.431436899681 82 +47 28376 43.45754383957 82 +47 28467 43.714717388346 82 +47 28499 43.724559253693 82 +47 28526 43.73143690914 82 +47 28550 43.757543820288 82 +47 28641 44.014717401083 82 +47 28673 44.024559250434 82 +47 28700 44.031436918359 82 +47 28724 44.057543802369 82 +47 28815 44.31471741262 82 +47 28842 44.324559247783 82 +47 28894 44.357543786728 82 +47 28981 44.614717422913 82 +47 29008 44.624559245654 82 +47 29060 44.657543773768 82 +47 29147 44.914717431937 82 +47 29174 44.924559243982 82 +47 29226 44.957543763502 82 +47 29313 45.21471743966 82 +47 29340 45.224559242636 82 +47 29392 45.257543755525 82 +47 29479 45.514717446271 82 +47 29506 45.524559241497 82 +47 29558 45.557543748928 82 +47 29645 45.814717453426 82 +47 29672 45.824559240537 82 +47 29724 45.857543742284 82 +47 29811 46.11471746131 82 +47 29838 46.124559236922 82 +47 29890 46.157543734922 82 +47 29977 46.414717469463 82 +47 30004 46.424559227691 82 +47 30056 46.457543726677 82 +47 30143 46.7147174756 82 +47 30170 46.724559216308 82 +47 30222 46.757543717477 82 +47 30309 47.014717477752 82 +47 30336 47.024559204936 82 +47 30388 47.057543707399 82 +47 30475 47.31471747801 82 +47 30502 47.324559193637 82 +47 30554 47.357543698008 82 +47 30641 47.614717478274 82 +47 30668 47.62455918244 82 +47 30720 47.657543697458 82 +47 30807 47.914717478544 82 +47 30829 47.92455917133 82 +47 30886 47.957543708789 82 +47 30973 48.214717477888 82 +47 30995 48.224559161344 82 +47 31052 48.257543722862 82 +47 31134 48.514717476625 82 +47 31161 48.524559152109 82 +47 31218 48.557543738369 82 +47 31300 48.814717474634 82 +47 31327 48.824559143836 82 +47 31384 48.857543754702 82 +47 31466 49.11471747139 82 +47 31493 49.124559137291 82 +47 31550 49.157543770654 82 +47 31632 49.414717467632 82 +47 31659 49.424559131732 82 +47 31716 49.457543786041 82 +47 31798 49.71471746338 82 +47 31830 49.724559127231 82 +47 31882 49.757543800762 82 +47 31964 50.014717459048 82 +47 31996 50.024559123312 82 +47 32048 50.057543815148 82 +47 32130 50.314717454631 82 +47 32162 50.324559119987 82 +47 32214 50.357543829549 82 +47 32296 50.614717450054 82 +47 32328 50.624559117227 82 +47 32380 50.657543844282 82 +47 32462 50.914717445285 82 +47 32494 50.924559115103 82 +47 32546 50.957543859315 82 +47 32628 51.21471744041 82 +47 32656 51.224559113583 82 +47 32708 51.257543874742 82 +47 32786 51.514717435458 82 +47 32814 51.524559112627 82 +47 32870 51.557543890499 82 +47 32952 51.814717430365 82 +47 32980 51.824559112353 82 +47 33036 51.857543906635 82 +47 33118 52.114717425224 82 +47 33146 52.124559112693 82 +47 33202 52.157543923181 82 +47 33284 52.414717420182 82 +47 33312 52.424559113556 82 +47 33368 52.457543940072 82 +47 33450 52.714717415208 82 +47 33478 52.724559114954 82 +47 33534 52.757543957286 82 +47 33616 53.014717410369 82 +47 33644 53.024559116886 82 +47 33700 53.057543974792 82 +47 33785 53.32455911934 82 +47 33836 53.357543991743 82 +47 33912 53.624559122413 82 +47 33963 53.657544007982 82 +47 34039 53.924559125883 82 +47 34090 53.957544023455 82 +47 34166 54.224559129356 82 +47 34217 54.257544037982 82 +47 34293 54.524559132878 82 +47 34344 54.557544051792 82 +47 34420 54.824559136418 82 +47 34471 54.857544066271 82 +47 34547 55.124559139869 82 +47 34598 55.157544081514 82 +47 34674 55.424559143329 82 +47 34725 55.457544097382 82 +47 34801 55.724559146854 82 +47 34852 55.757544113825 82 +47 34928 56.024559150367 82 +47 34979 56.057544130858 82 +47 35055 56.324559153849 82 +47 35111 56.357544148407 82 +50 551 4.543993151421 82 +50 670 4.843993151421 82 +50 790 5.143993151421 82 +50 924 5.443993151421 82 +50 1082 5.743993151421 82 +50 1240 6.043993151421 82 +50 1421 6.343993151421 82 +50 1638 6.643993151421 82 +50 1855 6.943993151421 82 +50 2072 7.243993151421 82 +50 2289 7.543993151421 82 +50 2506 7.843993151421 82 +50 2723 8.143993151421 82 +50 2944 8.443993151421 82 +50 3169 8.743993151421 82 +50 3394 9.043993151421 82 +50 3619 9.343993151421 82 +50 3844 9.643993151421 82 +50 4069 9.943993151421 82 +50 4294 10.243993151421 82 +50 4519 10.543993151421 82 +50 4752 10.843993151421 82 +50 4985 11.143993151421 82 +50 5218 11.443993151421 82 +50 5459 11.743993151421 82 +50 5700 12.043993151421 82 +50 5941 12.343993151421 82 +50 6182 12.643993151421 82 +50 6423 12.943993151421 82 +50 6664 13.243993151421 82 +50 6905 13.543993151421 82 +50 7146 13.843993151421 82 +50 7387 14.143993151421 82 +50 7628 14.443993151421 82 +50 7869 14.743993151421 82 +50 8110 15.043993151421 82 +50 8351 15.343993151421 82 +50 8592 15.643993151421 82 +50 8833 15.943993151421 82 +50 9082 16.243993151421 82 +50 9331 16.543993151421 82 +50 9580 16.843993151421 82 +50 9829 17.143993151421 82 +50 10078 17.443993151421 82 +50 10327 17.743993151421 82 +50 10568 18.043993151421 82 +50 10805 18.343993151421 82 +50 11038 18.643993151421 82 +50 11271 18.943993151421 82 +50 11504 19.243993151421 82 +50 11737 19.543993151421 82 +50 11970 19.843993151421 82 +50 12211 20.143993151421 82 +50 12452 20.443993151421 82 +50 12693 20.743993151421 82 +50 12934 21.043993151421 82 +50 13175 21.343993151421 82 +50 13416 21.643993151421 82 +50 13657 21.943993151421 82 +50 13898 22.243993151421 82 +50 14139 22.543993151421 82 +50 14380 22.843993151421 82 +50 14621 23.143993151421 82 +50 14862 23.443993151421 82 +50 15103 23.743993151421 82 +50 15344 24.043993151421 82 +50 15585 24.343993151421 82 +50 15826 24.643993151421 82 +50 16067 24.943993151421 82 +50 16308 25.243993151421 82 +50 16549 25.543993151421 82 +50 16790 25.843993151421 82 +50 17031 26.143993151421 82 +50 17272 26.443993151421 82 +50 17513 26.743993151421 82 +50 17754 27.043993151421 82 +50 17987 27.343993151421 82 +50 18220 27.643993151421 82 +50 18453 27.943993151421 82 +50 18686 28.243993151421 82 +50 18919 28.543993151421 82 +50 19152 28.843993151421 82 +50 19377 29.143993151421 82 +50 19602 29.443993151421 82 +50 19827 29.743993151421 82 +50 20052 30.043993151421 82 +50 20277 30.343993151421 82 +50 20502 30.643993151421 82 +50 20727 30.943993151421 82 +50 20960 31.243993151421 82 +50 21193 31.543993151421 82 +50 21426 31.843993151421 82 +50 21659 32.143993151421 82 +50 21892 32.443993151421 82 +50 22125 32.743993151421 82 +50 22358 33.043993151421 82 +50 22591 33.343993151421 82 +50 22824 33.643993151421 82 +50 23048 33.943993151421 82 +50 23206 34.243993151421 82 +50 23364 34.543993151421 82 +50 23522 34.843993151421 82 +50 23680 35.143993151421 82 +50 23846 35.443993151421 82 +50 24012 35.743993151421 82 +50 24178 36.043993151421 82 +50 24344 36.343993151421 82 +50 24510 36.643993151421 82 +50 24676 36.943993151421 82 +50 24842 37.243993151421 82 +50 25008 37.543993151421 82 +50 25174 37.843993151421 82 +50 25340 38.143993151421 82 +50 25506 38.443993151421 82 +50 25672 38.743993151421 82 +50 25838 39.043993151421 82 +50 26004 39.343993151421 82 +50 26170 39.643993151421 82 +50 26336 39.943993151421 82 +50 26502 40.243993151421 82 +50 26668 40.543993151421 82 +50 26838 40.843993151421 82 +50 27012 41.143993151421 82 +50 27186 41.443993151421 82 +50 27360 41.743993151421 82 +50 27534 42.043993151421 82 +50 27708 42.343993151421 82 +50 27882 42.643993151421 82 +50 28056 42.943993151421 82 +50 28230 43.243993151421 82 +50 28404 43.543993151421 82 +50 28578 43.843993151421 82 +50 28752 44.143993151421 82 +50 28922 44.443993151421 82 +50 29088 44.743993151421 82 +50 29254 45.043993151421 82 +50 29420 45.343993151421 82 +50 29586 45.643993151421 82 +50 29752 45.943993151421 82 +50 29918 46.243993151421 82 +50 30084 46.543993151421 82 +50 30250 46.843993151421 82 +50 30416 47.143993151421 82 +50 30582 47.443993151421 82 +50 30748 47.743993151421 82 +50 30914 48.043993151421 82 +50 31080 48.343993151421 82 +50 31246 48.643993151421 82 +50 31412 48.943993151421 82 +50 31578 49.243993151421 82 +50 31744 49.543993151421 82 +50 31910 49.843993151421 82 +50 32076 50.143993151421 82 +50 32242 50.443993151421 82 +50 32408 50.743993151421 82 +50 32574 51.043993151421 82 +50 32732 51.343993151421 82 +50 32898 51.643993151421 82 +50 33064 51.943993151421 82 +50 33230 52.243993151421 82 +50 33396 52.543993151421 82 +50 33562 52.843993151421 82 +50 33728 53.143993151421 82 +50 33862 53.443993151421 82 +50 33989 53.743993151421 82 +50 34116 54.043993151421 82 +50 34243 54.343993151421 82 +50 34370 54.643993151421 82 +50 34497 54.943993151421 82 +50 34624 55.243993151421 82 +50 34751 55.543993151421 82 +50 34878 55.843993151421 82 +50 35005 56.143993151421 82 +50 35132 56.443993151421 82 +49 548 4.543993151421 82 +49 667 4.843993151421 82 +49 787 5.143993151421 82 +49 921 5.443993151421 82 +49 1079 5.743993151421 82 +49 1237 6.043993151421 82 +49 1418 6.343993151421 82 +49 1635 6.643993151421 82 +49 1852 6.943993151421 82 +49 2069 7.243993151421 82 +49 2286 7.543993151421 82 +49 2503 7.843993151421 82 +49 2720 8.143993151421 82 +49 2941 8.443993151421 82 +49 3166 8.743993151421 82 +49 3391 9.043993151421 82 +49 3616 9.343993151421 82 +49 3841 9.643993151421 82 +49 4066 9.943993151421 82 +49 4291 10.243993151421 82 +49 4516 10.543993151421 82 +49 4749 10.843993151421 82 +49 4982 11.143993151421 82 +49 5215 11.443993151421 82 +49 5456 11.743993151421 82 +49 5697 12.043993151421 82 +49 5938 12.343993151421 82 +49 6179 12.643993151421 82 +49 6420 12.943993151421 82 +49 6661 13.243993151421 82 +49 6902 13.543993151421 82 +49 7143 13.843993151421 82 +49 7384 14.143993151421 82 +49 7625 14.443993151421 82 +49 7866 14.743993151421 82 +49 8107 15.043993151421 82 +49 8348 15.343993151421 82 +49 8589 15.643993151421 82 +49 8830 15.943993151421 82 +49 9079 16.243993151421 82 +49 9328 16.543993151421 82 +49 9577 16.843993151421 82 +49 9826 17.143993151421 82 +49 10075 17.443993151421 82 +49 10324 17.743993151421 82 +49 10565 18.043993151421 82 +49 10802 18.343993151421 82 +49 11035 18.643993151421 82 +49 11268 18.943993151421 82 +49 11501 19.243993151421 82 +49 11734 19.543993151421 82 +49 11967 19.843993151421 82 +49 12208 20.143993151421 82 +49 12449 20.443993151421 82 +49 12690 20.743993151421 82 +49 12931 21.043993151421 82 +49 13172 21.343993151421 82 +49 13413 21.643993151421 82 +49 13654 21.943993151421 82 +49 13895 22.243993151421 82 +49 14136 22.543993151421 82 +49 14377 22.843993151421 82 +49 14618 23.143993151421 82 +49 14859 23.443993151421 82 +49 15100 23.743993151421 82 +49 15341 24.043993151421 82 +49 15582 24.343993151421 82 +49 15823 24.643993151421 82 +49 16064 24.943993151421 82 +49 16305 25.243993151421 82 +49 16546 25.543993151421 82 +49 16787 25.843993151421 82 +49 17028 26.143993151421 82 +49 17269 26.443993151421 82 +49 17510 26.743993151421 82 +49 17751 27.043993151421 82 +49 17984 27.343993151421 82 +49 18217 27.643993151421 82 +49 18450 27.943993151421 82 +49 18683 28.243993151421 82 +49 18916 28.543993151421 82 +49 19149 28.843993151421 82 +49 19374 29.143993151421 82 +49 19599 29.443993151421 82 +49 19824 29.743993151421 82 +49 20049 30.043993151421 82 +49 20274 30.343993151421 82 +49 20499 30.643993151421 82 +49 20724 30.943993151421 82 +49 20957 31.243993151421 82 +49 21190 31.543993151421 82 +49 21423 31.843993151421 82 +49 21656 32.143993151421 82 +49 21889 32.443993151421 82 +49 22122 32.743993151421 82 +49 22355 33.043993151421 82 +49 22588 33.343993151421 82 +49 22821 33.643993151421 82 +49 23045 33.943993151421 82 +49 23203 34.243993151421 82 +49 23361 34.543993151421 82 +49 23519 34.843993151421 82 +49 23677 35.143993151421 82 +49 23843 35.443993151421 82 +49 24009 35.743993151421 82 +49 24175 36.043993151421 82 +49 24341 36.343993151421 82 +49 24507 36.643993151421 82 +49 24673 36.943993151421 82 +49 24839 37.243993151421 82 +49 25005 37.543993151421 82 +49 25171 37.843993151421 82 +49 25337 38.143993151421 82 +49 25503 38.443993151421 82 +49 25669 38.743993151421 82 +49 25835 39.043993151421 82 +49 26001 39.343993151421 82 +49 26167 39.643993151421 82 +49 26333 39.943993151421 82 +49 26499 40.243993151421 82 +49 26665 40.543993151421 82 +49 26835 40.843993151421 82 +49 27009 41.143993151421 82 +49 27183 41.443993151421 82 +49 27357 41.743993151421 82 +49 27531 42.043993151421 82 +49 27705 42.343993151421 82 +49 27879 42.643993151421 82 +49 28053 42.943993151421 82 +49 28227 43.243993151421 82 +49 28401 43.543993151421 82 +49 28575 43.843993151421 82 +49 28749 44.143993151421 82 +49 28919 44.443993151421 82 +49 29085 44.743993151421 82 +49 29251 45.043993151421 82 +49 29417 45.343993151421 82 +49 29583 45.643993151421 82 +49 29749 45.943993151421 82 +49 29915 46.243993151421 82 +49 30081 46.543993151421 82 +49 30247 46.843993151421 82 +49 30413 47.143993151421 82 +49 30579 47.443993151421 82 +49 30745 47.743993151421 82 +49 30911 48.043993151421 82 +49 31077 48.343993151421 82 +49 31243 48.643993151421 82 +49 31409 48.943993151421 82 +49 31575 49.243993151421 82 +49 31741 49.543993151421 82 +49 31907 49.843993151421 82 +49 32073 50.143993151421 82 +49 32239 50.443993151421 82 +49 32405 50.743993151421 82 +49 32571 51.043993151421 82 +49 32729 51.343993151421 82 +49 32895 51.643993151421 82 +49 33061 51.943993151421 82 +49 33227 52.243993151421 82 +49 33393 52.543993151421 82 +49 33559 52.843993151421 82 +49 33725 53.143993151421 82 +49 33859 53.443993151421 82 +49 33986 53.743993151421 82 +49 34113 54.043993151421 82 +49 34240 54.343993151421 82 +49 34367 54.643993151421 82 +49 34494 54.943993151421 82 +49 34621 55.243993151421 82 +49 34748 55.543993151421 82 +49 34875 55.843993151421 82 +49 35002 56.143993151421 82 +49 35129 56.443993151421 82 +48 402 4.131436647939 82 +48 499 4.43143664842 82 +48 618 4.731436648452 82 +48 737 5.031436648071 82 +48 868 5.331436647275 82 +48 1002 5.631436646135 82 +48 1062 5.693745836534 82 +48 1160 5.931436644725 82 +48 1220 5.993745836591 82 +48 1332 6.231436643012 82 +48 1399 6.293745836659 82 +48 1548 6.531436640981 82 +48 1616 6.593745836741 82 +48 1765 6.83143663868 82 +48 1833 6.893745836836 82 +48 1982 7.131436636128 82 +48 2050 7.193745836946 82 +48 2199 7.431436633301 82 +48 2267 7.493745837077 82 +48 2416 7.73143663025 82 +48 2484 7.79374583722 82 +48 2638 8.031436627008 82 +48 2701 8.093745837381 82 +48 2826 8.324559339726 82 +48 2859 8.331436623516 82 +48 2922 8.393745837564 82 +48 3051 8.624559337937 82 +48 3084 8.631436619892 82 +48 3147 8.693745837758 82 +48 3276 8.924559336079 82 +48 3309 8.931436616157 82 +48 3372 8.993745837958 82 +48 3501 9.2245593342 82 +48 3534 9.231436612299 82 +48 3597 9.293745838174 82 +48 3726 9.524559332304 82 +48 3759 9.531436608424 82 +48 3822 9.593745838387 82 +48 3951 9.824559330432 82 +48 3984 9.831436604546 82 +48 4047 9.89374583861 82 +48 4176 10.124559328574 82 +48 4209 10.13143660067 82 +48 4272 10.193745838842 82 +48 4401 10.424559326766 82 +48 4434 10.43143659687 82 +48 4497 10.493745839083 82 +48 4597 10.714717554278 82 +48 4634 10.724559325082 82 +48 4667 10.731436593222 82 +48 4730 10.793745839325 82 +48 4830 11.014717537855 82 +48 4867 11.0245593239 82 +48 4900 11.031436590451 82 +48 4963 11.093745839276 82 +48 5063 11.314717521994 82 +48 5100 11.324559323363 82 +48 5133 11.331436588755 82 +48 5196 11.39374583882 82 +48 5296 11.614717506596 82 +48 5333 11.624559323354 82 +48 5366 11.631436587986 82 +48 5433 11.69374583807 82 +48 5537 11.914717491616 82 +48 5574 11.924559323823 82 +48 5607 11.93143658806 82 +48 5674 11.993745837216 82 +48 5778 12.21471747694 82 +48 5815 12.224559324626 82 +48 5848 12.231436588692 82 +48 5915 12.293745836586 82 +48 6019 12.514717462306 82 +48 6056 12.524559325429 82 +48 6089 12.531436589365 82 +48 6156 12.593745836449 82 +48 6260 12.814717447681 82 +48 6297 12.824559326242 82 +48 6330 12.831436590037 82 +48 6397 12.893745836843 82 +48 6501 13.114717433023 82 +48 6538 13.12455932705 82 +48 6571 13.131436590725 82 +48 6638 13.193745837765 82 +48 6742 13.414717418408 82 +48 6779 13.424559327873 82 +48 6812 13.431436591403 82 +48 6879 13.493745839212 82 +48 6983 13.71471740379 82 +48 7020 13.724559328697 82 +48 7053 13.731436592089 82 +48 7120 13.793745841175 82 +48 7219 14.014717389119 82 +48 7261 14.024559329512 82 +48 7294 14.031436592779 82 +48 7361 14.093745843644 82 +48 7460 14.314717374493 82 +48 7502 14.324559330335 82 +48 7535 14.33143659346 82 +48 7602 14.393745846603 82 +48 7701 14.614717359901 82 +48 7743 14.624559331156 82 +48 7776 14.63143659416 82 +48 7843 14.693745849737 82 +48 7942 14.914717345304 82 +48 7984 14.924559331969 82 +48 8017 14.931436594853 82 +48 8084 14.993745846435 82 +48 8183 15.214717330718 82 +48 8225 15.224559332795 82 +48 8258 15.231436595569 82 +48 8325 15.293745833695 82 +48 8424 15.514717316098 82 +48 8466 15.524559333627 82 +48 8499 15.531436596269 82 +48 8566 15.593745819925 82 +48 8665 15.814717301533 82 +48 8707 15.824559334455 82 +48 8740 15.831436596954 82 +48 8807 15.893745806179 82 +48 8906 16.114717286953 82 +48 8952 16.124559335277 82 +48 8985 16.131436597671 82 +48 9052 16.193745792487 82 +48 9155 16.414717272365 82 +48 9201 16.424559336094 82 +48 9234 16.431436598394 82 +48 9301 16.493745780506 82 +48 9404 16.714717257775 82 +48 9450 16.724559336915 82 +48 9483 16.731436599099 82 +48 9550 16.793745771057 82 +48 9653 17.014717243226 82 +48 9699 17.024559337752 82 +48 9732 17.031436599817 82 +48 9799 17.093745764134 82 +48 9902 17.314717228649 82 +48 9948 17.324559338595 82 +48 9981 17.331436600539 82 +48 10048 17.393745759695 82 +48 10151 17.614717214117 82 +48 10197 17.624559339444 82 +48 10230 17.631436601271 82 +48 10297 17.69374575768 82 +48 10400 17.914717199593 82 +48 10442 17.92455934028 82 +48 10475 17.931436601981 82 +48 10538 17.993745756396 82 +48 10636 18.214717185085 82 +48 10712 18.231436602699 82 +48 10775 18.293745755106 82 +48 10869 18.514717170436 82 +48 10945 18.531436603438 82 +48 11008 18.593745753817 82 +48 11102 18.814717161182 82 +48 11178 18.831436604167 82 +48 11241 18.893745752536 82 +48 11335 19.114717157992 82 +48 11411 19.131436604913 82 +48 11474 19.193745751249 82 +48 11568 19.414717155892 82 +48 11644 19.431436605661 82 +48 11707 19.493745749962 82 +48 11801 19.714717154461 82 +48 11877 19.731436606768 82 +48 11940 19.793745748041 82 +48 12034 20.014717153776 82 +48 12114 20.031436608452 82 +48 12181 20.093745745227 82 +48 12275 20.31471715393 82 +48 12355 20.331436610588 82 +48 12422 20.393745741612 82 +48 12516 20.614717155021 82 +48 12596 20.631436613242 82 +48 12663 20.693745737229 82 +48 12757 20.914717157133 82 +48 12837 20.931436616399 82 +48 12904 20.993745732172 82 +48 12998 21.214717160323 82 +48 13078 21.231436620049 82 +48 13145 21.293745726489 82 +48 13239 21.514717164674 82 +48 13319 21.531436624253 82 +48 13386 21.593745720024 82 +48 13480 21.814717170229 82 +48 13560 21.831436629063 82 +48 13627 21.893745712841 82 +48 13721 22.114717176994 82 +48 13801 22.131436634514 82 +48 13868 22.193745704988 82 +48 13962 22.414717185072 82 +48 14042 22.431436640553 82 +48 14109 22.49374569653 82 +48 14203 22.714717194287 82 +48 14283 22.73143664727 82 +48 14350 22.793745687538 82 +48 14444 23.014717204223 82 +48 14524 23.031436654734 82 +48 14591 23.093745678184 82 +48 14685 23.314717215428 82 +48 14765 23.331436662913 82 +48 14832 23.393745668176 82 +48 14926 23.614717224167 82 +48 15006 23.631436668226 82 +48 15073 23.693745661458 82 +48 15167 23.914717225534 82 +48 15247 23.931436671861 82 +48 15314 23.993745658609 82 +48 15408 24.214717228476 82 +48 15488 24.231436682111 82 +48 15555 24.293745650885 82 +48 15649 24.514717231601 82 +48 15729 24.531436693849 82 +48 15796 24.593745643051 82 +48 15890 24.814717234404 82 +48 15970 24.831436706445 82 +48 16037 24.893745636131 82 +48 16131 25.114717236911 82 +48 16211 25.131436719839 82 +48 16278 25.193745630457 82 +48 16372 25.414717239038 82 +48 16452 25.431436734024 82 +48 16519 25.493745626591 82 +48 16608 25.714717240854 82 +48 16693 25.731436749009 82 +48 16760 25.793745625056 82 +48 16849 26.014717242289 82 +48 16934 26.031436763556 82 +48 17001 26.093745626275 82 +48 17090 26.314717243311 82 +48 17175 26.331436777067 82 +48 17242 26.393745630812 82 +48 17331 26.614717243876 82 +48 17416 26.631436789593 82 +48 17483 26.693745638677 82 +48 17572 26.914717244114 82 +48 17657 26.931436801135 82 +48 17724 26.993745649352 82 +48 17813 27.214717243957 82 +48 17895 27.231436811734 82 +48 17957 27.293745662469 82 +48 18046 27.514717243783 82 +48 18128 27.53143682198 82 +48 18190 27.593745677115 82 +48 18279 27.814717243571 82 +48 18361 27.831436831392 82 +48 18423 27.893745692883 82 +48 18512 28.114717243343 82 +48 18594 28.13143683163 82 +48 18656 28.193745709573 82 +48 18745 28.414717243176 82 +48 18827 28.4314368277 82 +48 18889 28.493745726899 82 +48 18978 28.71471724295 82 +48 19060 28.731436823589 82 +48 19122 28.793745744792 82 +48 19211 29.014717242752 82 +48 19293 29.031436819366 82 +48 19347 29.093745763099 82 +48 19436 29.31471724256 82 +48 19518 29.331436815156 82 +48 19572 29.393745781743 82 +48 19661 29.614717242339 82 +48 19743 29.631436811006 82 +48 19797 29.693745800658 82 +48 19886 29.914717242168 82 +48 19968 29.931436806789 82 +48 20022 29.99374581976 82 +48 20111 30.214717241952 82 +48 20193 30.231436802516 82 +48 20247 30.29374583909 82 +48 20336 30.514717241756 82 +48 20418 30.531436798256 82 +48 20472 30.593745858538 82 +48 20561 30.814717241503 82 +48 20638 30.831436794122 82 +48 20697 30.893745878179 82 +48 20786 31.114717241331 82 +48 20867 31.131436790287 82 +48 20931 31.193745897854 82 +48 21019 31.414717241138 82 +48 21100 31.431436787097 82 +48 21164 31.49374591764 82 +48 21252 31.714717240949 82 +48 21333 31.731436784583 82 +48 21397 31.793745937521 82 +48 21485 32.014717240765 82 +48 21566 32.031436782702 82 +48 21630 32.093745957424 82 +48 21718 32.31471724058 82 +48 21799 32.331436781557 82 +48 21863 32.393745977454 82 +48 21951 32.614717240362 82 +48 22032 32.631436781062 82 +48 22096 32.693745997543 82 +48 22184 32.914717240161 82 +48 22265 32.93143678126 82 +48 22329 32.993746017691 82 +48 22417 33.214717239961 82 +48 22498 33.23143678211 82 +48 22562 33.293746037835 82 +48 22650 33.514717239737 82 +48 22731 33.531436783685 82 +48 22800 33.593746058084 82 +48 22883 33.814717239531 82 +48 22960 33.831436785904 82 +48 23029 33.893746078308 82 +48 23098 34.11471723931 82 +48 23158 34.131436788788 82 +48 23256 34.414717239094 82 +48 23316 34.431436792338 82 +48 23414 34.71471723891 82 +48 23474 34.731436796515 82 +48 23572 35.014717238698 82 +48 23632 35.031436801357 82 +48 23734 35.31471723851 82 +48 23794 35.331436806756 82 +48 23828 35.357544434054 82 +48 23900 35.614717238324 82 +48 23960 35.631436812771 82 +48 23994 35.657544420736 82 +48 24071 35.914717238104 82 +48 24126 35.931436819372 82 +48 24160 35.957544409002 82 +48 24237 36.214717237923 82 +48 24292 36.231436826584 82 +48 24326 36.257544398867 82 +48 24403 36.514717237718 82 +48 24458 36.531436834329 82 +48 24492 36.557544390339 82 +48 24564 36.814717237512 82 +48 24624 36.831436842622 82 +48 24658 36.857544382745 82 +48 24730 37.114717236718 82 +48 24790 37.131436851096 82 +48 24824 37.157544373889 82 +48 24896 37.41471723223 82 +48 24956 37.431436854108 82 +48 24990 37.457544356842 82 +48 25062 37.714717229579 82 +48 25122 37.731436847205 82 +48 25151 37.757544333389 82 +48 25228 38.014717228941 82 +48 25288 38.031436839602 82 +48 25317 38.0575443092 82 +48 25394 38.314717229416 82 +48 25454 38.331436833175 82 +48 25483 38.357544284464 82 +48 25560 38.614717230908 82 +48 25620 38.631436827949 82 +48 25649 38.657544259185 82 +48 25726 38.914717233464 82 +48 25786 38.93143682395 82 +48 25815 38.957544233306 82 +48 25892 39.214717237033 82 +48 25952 39.231436821205 82 +48 25981 39.257544206756 82 +48 26058 39.514717241575 82 +48 26118 39.531436819725 82 +48 26147 39.557544179549 82 +48 26224 39.814717247083 82 +48 26284 39.831436819522 82 +48 26313 39.857544151671 82 +48 26390 40.114717253513 82 +48 26450 40.1314368206 82 +48 26474 40.157544123679 82 +48 26556 40.414717260797 82 +48 26616 40.431436822952 82 +48 26640 40.457544095641 82 +48 26722 40.714717269001 82 +48 26759 40.72455933755 82 +48 26786 40.731436826556 82 +48 26810 40.757544067729 82 +48 26896 41.014717277925 82 +48 26933 41.024559324799 82 +48 26960 41.031436831396 82 +48 26984 41.057544039737 82 +48 27070 41.314717287623 82 +48 27107 41.324559312788 82 +48 27134 41.331436837463 82 +48 27158 41.357544011756 82 +48 27244 41.614717298022 82 +48 27281 41.624559301583 82 +48 27308 41.631436844699 82 +48 27332 41.657543983797 82 +48 27418 41.914717309216 82 +48 27455 41.924559291388 82 +48 27482 41.931436852916 82 +48 27506 41.957543956357 82 +48 27592 42.214717321205 82 +48 27629 42.224559282466 82 +48 27656 42.231436861741 82 +48 27680 42.257543930301 82 +48 27766 42.514717333849 82 +48 27803 42.52455927473 82 +48 27830 42.531436870996 82 +48 27854 42.557543905564 82 +48 27940 42.814717347041 82 +48 27977 42.824559268076 82 +48 28004 42.831436880478 82 +48 28028 42.857543882214 82 +48 28119 43.114717360624 82 +48 28151 43.124559262415 82 +48 28178 43.131436890097 82 +48 28202 43.157543860218 82 +48 28293 43.414717374505 82 +48 28325 43.424559257654 82 +48 28352 43.431436899681 82 +48 28376 43.45754383957 82 +48 28467 43.714717388346 82 +48 28499 43.724559253693 82 +48 28526 43.73143690914 82 +48 28550 43.757543820288 82 +48 28641 44.014717401083 82 +48 28673 44.024559250434 82 +48 28700 44.031436918359 82 +48 28724 44.057543802369 82 +48 28815 44.31471741262 82 +48 28842 44.324559247783 82 +48 28894 44.357543786728 82 +48 28981 44.614717422913 82 +48 29008 44.624559245654 82 +48 29060 44.657543773768 82 +48 29147 44.914717431937 82 +48 29174 44.924559243982 82 +48 29226 44.957543763502 82 +48 29313 45.21471743966 82 +48 29340 45.224559242636 82 +48 29392 45.257543755525 82 +48 29479 45.514717446271 82 +48 29506 45.524559241497 82 +48 29558 45.557543748928 82 +48 29645 45.814717453426 82 +48 29672 45.824559240537 82 +48 29724 45.857543742284 82 +48 29811 46.11471746131 82 +48 29838 46.124559236922 82 +48 29890 46.157543734922 82 +48 29977 46.414717469463 82 +48 30004 46.424559227691 82 +48 30056 46.457543726677 82 +48 30143 46.7147174756 82 +48 30170 46.724559216308 82 +48 30222 46.757543717477 82 +48 30309 47.014717477752 82 +48 30336 47.024559204936 82 +48 30388 47.057543707399 82 +48 30475 47.31471747801 82 +48 30502 47.324559193637 82 +48 30554 47.357543698008 82 +48 30641 47.614717478274 82 +48 30668 47.62455918244 82 +48 30720 47.657543697458 82 +48 30807 47.914717478544 82 +48 30829 47.92455917133 82 +48 30886 47.957543708789 82 +48 30973 48.214717477888 82 +48 30995 48.224559161344 82 +48 31052 48.257543722862 82 +48 31134 48.514717476625 82 +48 31161 48.524559152109 82 +48 31218 48.557543738369 82 +48 31300 48.814717474634 82 +48 31327 48.824559143836 82 +48 31384 48.857543754702 82 +48 31466 49.11471747139 82 +48 31493 49.124559137291 82 +48 31550 49.157543770654 82 +48 31632 49.414717467632 82 +48 31659 49.424559131732 82 +48 31716 49.457543786041 82 +48 31798 49.71471746338 82 +48 31830 49.724559127231 82 +48 31882 49.757543800762 82 +48 31964 50.014717459048 82 +48 31996 50.024559123312 82 +48 32048 50.057543815148 82 +48 32130 50.314717454631 82 +48 32162 50.324559119987 82 +48 32214 50.357543829549 82 +48 32296 50.614717450054 82 +48 32328 50.624559117227 82 +48 32380 50.657543844282 82 +48 32462 50.914717445285 82 +48 32494 50.924559115103 82 +48 32546 50.957543859315 82 +48 32628 51.21471744041 82 +48 32656 51.224559113583 82 +48 32708 51.257543874742 82 +48 32786 51.514717435458 82 +48 32814 51.524559112627 82 +48 32870 51.557543890499 82 +48 32952 51.814717430365 82 +48 32980 51.824559112353 82 +48 33036 51.857543906635 82 +48 33118 52.114717425224 82 +48 33146 52.124559112693 82 +48 33202 52.157543923181 82 +48 33284 52.414717420182 82 +48 33312 52.424559113556 82 +48 33368 52.457543940072 82 +48 33450 52.714717415208 82 +48 33478 52.724559114954 82 +48 33534 52.757543957286 82 +48 33616 53.014717410369 82 +48 33644 53.024559116886 82 +48 33700 53.057543974792 82 +48 33785 53.32455911934 82 +48 33836 53.357543991743 82 +48 33912 53.624559122413 82 +48 33963 53.657544007982 82 +48 34039 53.924559125883 82 +48 34090 53.957544023455 82 +48 34166 54.224559129356 82 +48 34217 54.257544037982 82 +48 34293 54.524559132878 82 +48 34344 54.557544051792 82 +48 34420 54.824559136418 82 +48 34471 54.857544066271 82 +48 34547 55.124559139869 82 +48 34598 55.157544081514 82 +48 34674 55.424559143329 82 +48 34725 55.457544097382 82 +48 34801 55.724559146854 82 +48 34852 55.757544113825 82 +48 34928 56.024559150367 82 +48 34979 56.057544130858 82 +48 35055 56.324559153849 82 +48 35111 56.357544148407 82 +42 356 4.1 0 +42 356 4.1 0 +42 396 4.131276647939 0 +42 396 4.131276647939 0 +42 401 4.131436647939 0 +42 401 4.131436647939 0 +42 493 4.43127664842 0 +42 493 4.43127664842 0 +42 498 4.43143664842 0 +42 498 4.43143664842 0 +42 552 4.543993151421 0 +42 552 4.543993151421 0 +42 558 4.544153151421 0 +42 558 4.544153151421 0 +42 612 4.731276648452 0 +42 612 4.731276648452 0 +42 617 4.731436648452 0 +42 617 4.731436648452 0 +42 671 4.843993151421 0 +42 671 4.843993151421 0 +42 677 4.844153151421 0 +42 677 4.844153151421 0 +42 731 5.031276648071 0 +42 731 5.031276648071 0 +42 736 5.031436648071 0 +42 736 5.031436648071 0 +42 791 5.143993151421 0 +42 791 5.143993151421 0 +42 798 5.144153151421 0 +42 798 5.144153151421 0 +42 861 5.331276647275 0 +42 861 5.331276647275 0 +42 867 5.331436647275 0 +42 867 5.331436647275 0 +42 925 5.443993151421 0 +42 925 5.443993151421 0 +42 932 5.444153151421 0 +42 932 5.444153151421 0 +42 995 5.631276646135 0 +42 995 5.631276646135 0 +42 1001 5.631436646135 0 +42 1001 5.631436646135 0 +42 1055 5.693585836534 0 +42 1055 5.693585836534 0 +42 1061 5.693745836534 0 +42 1061 5.693745836534 0 +42 1083 5.743993151421 0 +42 1083 5.743993151421 0 +42 1090 5.744153151421 0 +42 1090 5.744153151421 0 +42 1153 5.931276644725 0 +42 1153 5.931276644725 0 +42 1159 5.931436644725 0 +42 1159 5.931436644725 0 +42 1213 5.993585836591 0 +42 1213 5.993585836591 0 +42 1219 5.993745836591 0 +42 1219 5.993745836591 0 +42 1241 6.043993151421 0 +42 1241 6.043993151421 0 +42 1248 6.044153151421 0 +42 1248 6.044153151421 0 +42 1320 6.231276643012 0 +42 1320 6.231276643012 0 +42 1331 6.231436643012 0 +42 1331 6.231436643012 0 +42 1391 6.293585836659 0 +42 1391 6.293585836659 0 +42 1398 6.293745836659 0 +42 1398 6.293745836659 0 +42 1422 6.343993151421 0 +42 1422 6.343993151421 0 +42 1430 6.344153151421 0 +42 1430 6.344153151421 0 +42 1536 6.531276640981 0 +42 1536 6.531276640981 0 +42 1547 6.531436640981 0 +42 1547 6.531436640981 0 +42 1608 6.593585836741 0 +42 1608 6.593585836741 0 +42 1615 6.593745836741 0 +42 1615 6.593745836741 0 +42 1639 6.643993151421 0 +42 1639 6.643993151421 0 +42 1647 6.644153151421 0 +42 1647 6.644153151421 0 +42 1753 6.83127663868 0 +42 1753 6.83127663868 0 +42 1764 6.83143663868 0 +42 1764 6.83143663868 0 +42 1825 6.893585836836 0 +42 1825 6.893585836836 0 +42 1832 6.893745836836 0 +42 1832 6.893745836836 0 +42 1856 6.943993151421 0 +42 1856 6.943993151421 0 +42 1864 6.944153151421 0 +42 1864 6.944153151421 0 +42 1970 7.131276636128 0 +42 1970 7.131276636128 0 +42 1981 7.131436636128 0 +42 1981 7.131436636128 0 +42 2042 7.193585836946 0 +42 2042 7.193585836946 0 +42 2049 7.193745836946 0 +42 2049 7.193745836946 0 +42 2073 7.243993151421 0 +42 2073 7.243993151421 0 +42 2081 7.244153151421 0 +42 2081 7.244153151421 0 +42 2187 7.431276633301 0 +42 2187 7.431276633301 0 +42 2198 7.431436633301 0 +42 2198 7.431436633301 0 +42 2259 7.493585837077 0 +42 2259 7.493585837077 0 +42 2266 7.493745837077 0 +42 2266 7.493745837077 0 +42 2290 7.543993151421 0 +42 2290 7.543993151421 0 +42 2298 7.544153151421 0 +42 2298 7.544153151421 0 +42 2404 7.73127663025 0 +42 2404 7.73127663025 0 +42 2415 7.73143663025 0 +42 2415 7.73143663025 0 +42 2476 7.79358583722 0 +42 2476 7.79358583722 0 +42 2483 7.79374583722 0 +42 2483 7.79374583722 0 +42 2507 7.843993151421 0 +42 2507 7.843993151421 0 +42 2515 7.844153151421 0 +42 2515 7.844153151421 0 +42 2589 8.024399341429 0 +42 2589 8.024399341429 0 +42 2608 8.024559341429 0 +42 2608 8.024559341429 0 +42 2622 8.031276627008 0 +42 2622 8.031276627008 0 +42 2637 8.031436627008 0 +42 2637 8.031436627008 0 +42 2693 8.093585837381 0 +42 2693 8.093585837381 0 +42 2700 8.093745837381 0 +42 2700 8.093745837381 0 +42 2724 8.143993151421 0 +42 2724 8.143993151421 0 +42 2732 8.144153151421 0 +42 2732 8.144153151421 0 +42 2806 8.324399339726 0 +42 2806 8.324399339726 0 +42 2825 8.324559339726 0 +42 2825 8.324559339726 0 +42 2843 8.331276623516 0 +42 2843 8.331276623516 0 +42 2858 8.331436623516 0 +42 2858 8.331436623516 0 +42 2914 8.393585837564 0 +42 2914 8.393585837564 0 +42 2921 8.393745837564 0 +42 2921 8.393745837564 0 +42 2945 8.443993151421 0 +42 2945 8.443993151421 0 +42 2953 8.444153151421 0 +42 2953 8.444153151421 0 +42 3031 8.624399337937 0 +42 3031 8.624399337937 0 +42 3050 8.624559337937 0 +42 3050 8.624559337937 0 +42 3068 8.631276619892 0 +42 3068 8.631276619892 0 +42 3083 8.631436619892 0 +42 3083 8.631436619892 0 +42 3139 8.693585837758 0 +42 3139 8.693585837758 0 +42 3146 8.693745837758 0 +42 3146 8.693745837758 0 +42 3170 8.743993151421 0 +42 3170 8.743993151421 0 +42 3178 8.744153151421 0 +42 3178 8.744153151421 0 +42 3256 8.924399336079 0 +42 3256 8.924399336079 0 +42 3275 8.924559336079 0 +42 3275 8.924559336079 0 +42 3293 8.931276616157 0 +42 3293 8.931276616157 0 +42 3308 8.931436616157 0 +42 3308 8.931436616157 0 +42 3364 8.993585837958 0 +42 3364 8.993585837958 0 +42 3371 8.993745837958 0 +42 3371 8.993745837958 0 +42 3395 9.043993151421 0 +42 3395 9.043993151421 0 +42 3403 9.044153151421 0 +42 3403 9.044153151421 0 +42 3481 9.2243993342 0 +42 3481 9.2243993342 0 +42 3500 9.2245593342 0 +42 3500 9.2245593342 0 +42 3518 9.231276612299 0 +42 3518 9.231276612299 0 +42 3533 9.231436612299 0 +42 3533 9.231436612299 0 +42 3589 9.293585838174 0 +42 3589 9.293585838174 0 +42 3596 9.293745838174 0 +42 3596 9.293745838174 0 +42 3620 9.343993151421 0 +42 3620 9.343993151421 0 +42 3628 9.344153151421 0 +42 3628 9.344153151421 0 +42 3706 9.524399332304 0 +42 3706 9.524399332304 0 +42 3725 9.524559332304 0 +42 3725 9.524559332304 0 +42 3743 9.531276608424 0 +42 3743 9.531276608424 0 +42 3758 9.531436608424 0 +42 3758 9.531436608424 0 +42 3814 9.593585838387 0 +42 3814 9.593585838387 0 +42 3821 9.593745838387 0 +42 3821 9.593745838387 0 +42 3845 9.643993151421 0 +42 3845 9.643993151421 0 +42 3853 9.644153151421 0 +42 3853 9.644153151421 0 +42 3931 9.824399330432 0 +42 3931 9.824399330432 0 +42 3950 9.824559330432 0 +42 3950 9.824559330432 0 +42 3968 9.831276604546 0 +42 3968 9.831276604546 0 +42 3983 9.831436604546 0 +42 3983 9.831436604546 0 +42 4039 9.89358583861 0 +42 4039 9.89358583861 0 +42 4046 9.89374583861 0 +42 4046 9.89374583861 0 +42 4070 9.943993151421 0 +42 4070 9.943993151421 0 +42 4078 9.944153151421 0 +42 4078 9.944153151421 0 +42 4156 10.124399328574 0 +42 4156 10.124399328574 0 +42 4175 10.124559328574 0 +42 4175 10.124559328574 0 +42 4193 10.13127660067 0 +42 4193 10.13127660067 0 +42 4208 10.13143660067 0 +42 4208 10.13143660067 0 +42 4264 10.193585838842 0 +42 4264 10.193585838842 0 +42 4271 10.193745838842 0 +42 4271 10.193745838842 0 +42 4295 10.243993151421 0 +42 4295 10.243993151421 0 +42 4303 10.244153151421 0 +42 4303 10.244153151421 0 +42 4381 10.424399326766 0 +42 4381 10.424399326766 0 +42 4400 10.424559326766 0 +42 4400 10.424559326766 0 +42 4418 10.43127659687 0 +42 4418 10.43127659687 0 +42 4433 10.43143659687 0 +42 4433 10.43143659687 0 +42 4489 10.493585839083 0 +42 4489 10.493585839083 0 +42 4496 10.493745839083 0 +42 4496 10.493745839083 0 +42 4520 10.543993151421 0 +42 4520 10.543993151421 0 +42 4528 10.544153151421 0 +42 4528 10.544153151421 0 +42 4577 10.714557554278 0 +42 4577 10.714557554278 0 +42 4596 10.714717554278 0 +42 4596 10.714717554278 0 +42 4614 10.724399325082 0 +42 4614 10.724399325082 0 +42 4633 10.724559325082 0 +42 4633 10.724559325082 0 +42 4651 10.731276593222 0 +42 4651 10.731276593222 0 +42 4666 10.731436593222 0 +42 4666 10.731436593222 0 +42 4722 10.793585839325 0 +42 4722 10.793585839325 0 +42 4729 10.793745839325 0 +42 4729 10.793745839325 0 +42 4753 10.843993151421 0 +42 4753 10.843993151421 0 +42 4761 10.844153151421 0 +42 4761 10.844153151421 0 +42 4810 11.014557537855 0 +42 4810 11.014557537855 0 +42 4829 11.014717537855 0 +42 4829 11.014717537855 0 +42 4847 11.0243993239 0 +42 4847 11.0243993239 0 +42 4866 11.0245593239 0 +42 4866 11.0245593239 0 +42 4884 11.031276590451 0 +42 4884 11.031276590451 0 +42 4899 11.031436590451 0 +42 4899 11.031436590451 0 +42 4955 11.093585839276 0 +42 4955 11.093585839276 0 +42 4962 11.093745839276 0 +42 4962 11.093745839276 0 +42 4986 11.143993151421 0 +42 4986 11.143993151421 0 +42 4994 11.144153151421 0 +42 4994 11.144153151421 0 +42 5043 11.314557521994 0 +42 5043 11.314557521994 0 +42 5062 11.314717521994 0 +42 5062 11.314717521994 0 +42 5080 11.324399323363 0 +42 5080 11.324399323363 0 +42 5099 11.324559323363 0 +42 5099 11.324559323363 0 +42 5117 11.331276588755 0 +42 5117 11.331276588755 0 +42 5132 11.331436588755 0 +42 5132 11.331436588755 0 +42 5188 11.39358583882 0 +42 5188 11.39358583882 0 +42 5195 11.39374583882 0 +42 5195 11.39374583882 0 +42 5219 11.443993151421 0 +42 5219 11.443993151421 0 +42 5227 11.444153151421 0 +42 5227 11.444153151421 0 +42 5276 11.614557506596 0 +42 5276 11.614557506596 0 +42 5295 11.614717506596 0 +42 5295 11.614717506596 0 +42 5313 11.624399323354 0 +42 5313 11.624399323354 0 +42 5332 11.624559323354 0 +42 5332 11.624559323354 0 +42 5350 11.631276587986 0 +42 5350 11.631276587986 0 +42 5365 11.631436587986 0 +42 5365 11.631436587986 0 +42 5425 11.69358583807 0 +42 5425 11.69358583807 0 +42 5432 11.69374583807 0 +42 5432 11.69374583807 0 +42 5460 11.743993151421 0 +42 5460 11.743993151421 0 +42 5468 11.744153151421 0 +42 5468 11.744153151421 0 +42 5517 11.914557491616 0 +42 5517 11.914557491616 0 +42 5536 11.914717491616 0 +42 5536 11.914717491616 0 +42 5554 11.924399323823 0 +42 5554 11.924399323823 0 +42 5573 11.924559323823 0 +42 5573 11.924559323823 0 +42 5591 11.93127658806 0 +42 5591 11.93127658806 0 +42 5606 11.93143658806 0 +42 5606 11.93143658806 0 +42 5666 11.993585837216 0 +42 5666 11.993585837216 0 +42 5673 11.993745837216 0 +42 5673 11.993745837216 0 +42 5701 12.043993151421 0 +42 5701 12.043993151421 0 +42 5709 12.044153151421 0 +42 5709 12.044153151421 0 +42 5758 12.21455747694 0 +42 5758 12.21455747694 0 +42 5777 12.21471747694 0 +42 5777 12.21471747694 0 +42 5795 12.224399324626 0 +42 5795 12.224399324626 0 +42 5814 12.224559324626 0 +42 5814 12.224559324626 0 +42 5832 12.231276588692 0 +42 5832 12.231276588692 0 +42 5847 12.231436588692 0 +42 5847 12.231436588692 0 +42 5907 12.293585836586 0 +42 5907 12.293585836586 0 +42 5914 12.293745836586 0 +42 5914 12.293745836586 0 +42 5942 12.343993151421 0 +42 5942 12.343993151421 0 +42 5950 12.344153151421 0 +42 5950 12.344153151421 0 +42 5999 12.514557462306 0 +42 5999 12.514557462306 0 +42 6018 12.514717462306 0 +42 6018 12.514717462306 0 +42 6036 12.524399325429 0 +42 6036 12.524399325429 0 +42 6055 12.524559325429 0 +42 6055 12.524559325429 0 +42 6073 12.531276589365 0 +42 6073 12.531276589365 0 +42 6088 12.531436589365 0 +42 6088 12.531436589365 0 +42 6148 12.593585836449 0 +42 6148 12.593585836449 0 +42 6155 12.593745836449 0 +42 6155 12.593745836449 0 +42 6183 12.643993151421 0 +42 6183 12.643993151421 0 +42 6191 12.644153151421 0 +42 6191 12.644153151421 0 +42 6240 12.814557447681 0 +42 6240 12.814557447681 0 +42 6259 12.814717447681 0 +42 6259 12.814717447681 0 +42 6277 12.824399326242 0 +42 6277 12.824399326242 0 +42 6296 12.824559326242 0 +42 6296 12.824559326242 0 +42 6314 12.831276590037 0 +42 6314 12.831276590037 0 +42 6329 12.831436590037 0 +42 6329 12.831436590037 0 +42 6389 12.893585836843 0 +42 6389 12.893585836843 0 +42 6396 12.893745836843 0 +42 6396 12.893745836843 0 +42 6424 12.943993151421 0 +42 6424 12.943993151421 0 +42 6432 12.944153151421 0 +42 6432 12.944153151421 0 +42 6481 13.114557433023 0 +42 6481 13.114557433023 0 +42 6500 13.114717433023 0 +42 6500 13.114717433023 0 +42 6518 13.12439932705 0 +42 6518 13.12439932705 0 +42 6537 13.12455932705 0 +42 6537 13.12455932705 0 +42 6555 13.131276590725 0 +42 6555 13.131276590725 0 +42 6570 13.131436590725 0 +42 6570 13.131436590725 0 +42 6630 13.193585837765 0 +42 6630 13.193585837765 0 +42 6637 13.193745837765 0 +42 6637 13.193745837765 0 +42 6665 13.243993151421 0 +42 6665 13.243993151421 0 +42 6673 13.244153151421 0 +42 6673 13.244153151421 0 +42 6722 13.414557418408 0 +42 6722 13.414557418408 0 +42 6741 13.414717418408 0 +42 6741 13.414717418408 0 +42 6759 13.424399327873 0 +42 6759 13.424399327873 0 +42 6778 13.424559327873 0 +42 6778 13.424559327873 0 +42 6796 13.431276591403 0 +42 6796 13.431276591403 0 +42 6811 13.431436591403 0 +42 6811 13.431436591403 0 +42 6871 13.493585839212 0 +42 6871 13.493585839212 0 +42 6878 13.493745839212 0 +42 6878 13.493745839212 0 +42 6906 13.543993151421 0 +42 6906 13.543993151421 0 +42 6914 13.544153151421 0 +42 6914 13.544153151421 0 +42 6963 13.71455740379 0 +42 6963 13.71455740379 0 +42 6982 13.71471740379 0 +42 6982 13.71471740379 0 +42 7000 13.724399328697 0 +42 7000 13.724399328697 0 +42 7019 13.724559328697 0 +42 7019 13.724559328697 0 +42 7037 13.731276592089 0 +42 7037 13.731276592089 0 +42 7052 13.731436592089 0 +42 7052 13.731436592089 0 +42 7112 13.793585841175 0 +42 7112 13.793585841175 0 +42 7119 13.793745841175 0 +42 7119 13.793745841175 0 +42 7147 13.843993151421 0 +42 7147 13.843993151421 0 +42 7155 13.844153151421 0 +42 7155 13.844153151421 0 +42 7203 14.014557389119 0 +42 7203 14.014557389119 0 +42 7218 14.014717389119 0 +42 7218 14.014717389119 0 +42 7241 14.024399329512 0 +42 7241 14.024399329512 0 +42 7260 14.024559329512 0 +42 7260 14.024559329512 0 +42 7278 14.031276592779 0 +42 7278 14.031276592779 0 +42 7293 14.031436592779 0 +42 7293 14.031436592779 0 +42 7353 14.093585843644 0 +42 7353 14.093585843644 0 +42 7360 14.093745843644 0 +42 7360 14.093745843644 0 +42 7388 14.143993151421 0 +42 7388 14.143993151421 0 +42 7396 14.144153151421 0 +42 7396 14.144153151421 0 +42 7444 14.314557374493 0 +42 7444 14.314557374493 0 +42 7459 14.314717374493 0 +42 7459 14.314717374493 0 +42 7482 14.324399330335 0 +42 7482 14.324399330335 0 +42 7501 14.324559330335 0 +42 7501 14.324559330335 0 +42 7519 14.33127659346 0 +42 7519 14.33127659346 0 +42 7534 14.33143659346 0 +42 7534 14.33143659346 0 +42 7594 14.393585846603 0 +42 7594 14.393585846603 0 +42 7601 14.393745846603 0 +42 7601 14.393745846603 0 +42 7629 14.443993151421 0 +42 7629 14.443993151421 0 +42 7637 14.444153151421 0 +42 7637 14.444153151421 0 +42 7685 14.614557359901 0 +42 7685 14.614557359901 0 +42 7700 14.614717359901 0 +42 7700 14.614717359901 0 +42 7723 14.624399331156 0 +42 7723 14.624399331156 0 +42 7742 14.624559331156 0 +42 7742 14.624559331156 0 +42 7760 14.63127659416 0 +42 7760 14.63127659416 0 +42 7775 14.63143659416 0 +42 7775 14.63143659416 0 +42 7835 14.693585849737 0 +42 7835 14.693585849737 0 +42 7842 14.693745849737 0 +42 7842 14.693745849737 0 +42 7870 14.743993151421 0 +42 7870 14.743993151421 0 +42 7878 14.744153151421 0 +42 7878 14.744153151421 0 +42 7926 14.914557345304 0 +42 7926 14.914557345304 0 +42 7941 14.914717345304 0 +42 7941 14.914717345304 0 +42 7964 14.924399331969 0 +42 7964 14.924399331969 0 +42 7983 14.924559331969 0 +42 7983 14.924559331969 0 +42 8001 14.931276594853 0 +42 8001 14.931276594853 0 +42 8016 14.931436594853 0 +42 8016 14.931436594853 0 +42 8076 14.993585846435 0 +42 8076 14.993585846435 0 +42 8083 14.993745846435 0 +42 8083 14.993745846435 0 +42 8111 15.043993151421 0 +42 8111 15.043993151421 0 +42 8119 15.044153151421 0 +42 8119 15.044153151421 0 +42 8167 15.214557330718 0 +42 8167 15.214557330718 0 +42 8182 15.214717330718 0 +42 8182 15.214717330718 0 +42 8205 15.224399332795 0 +42 8205 15.224399332795 0 +42 8224 15.224559332795 0 +42 8224 15.224559332795 0 +42 8242 15.231276595569 0 +42 8242 15.231276595569 0 +42 8257 15.231436595569 0 +42 8257 15.231436595569 0 +42 8317 15.293585833695 0 +42 8317 15.293585833695 0 +42 8324 15.293745833695 0 +42 8324 15.293745833695 0 +42 8352 15.343993151421 0 +42 8352 15.343993151421 0 +42 8360 15.344153151421 0 +42 8360 15.344153151421 0 +42 8408 15.514557316098 0 +42 8408 15.514557316098 0 +42 8423 15.514717316098 0 +42 8423 15.514717316098 0 +42 8446 15.524399333627 0 +42 8446 15.524399333627 0 +42 8465 15.524559333627 0 +42 8465 15.524559333627 0 +42 8483 15.531276596269 0 +42 8483 15.531276596269 0 +42 8498 15.531436596269 0 +42 8498 15.531436596269 0 +42 8558 15.593585819925 0 +42 8558 15.593585819925 0 +42 8565 15.593745819925 0 +42 8565 15.593745819925 0 +42 8593 15.643993151421 0 +42 8593 15.643993151421 0 +42 8601 15.644153151421 0 +42 8601 15.644153151421 0 +42 8649 15.814557301533 0 +42 8649 15.814557301533 0 +42 8664 15.814717301533 0 +42 8664 15.814717301533 0 +42 8687 15.824399334455 0 +42 8687 15.824399334455 0 +42 8706 15.824559334455 0 +42 8706 15.824559334455 0 +42 8724 15.831276596954 0 +42 8724 15.831276596954 0 +42 8739 15.831436596954 0 +42 8739 15.831436596954 0 +42 8799 15.893585806179 0 +42 8799 15.893585806179 0 +42 8806 15.893745806179 0 +42 8806 15.893745806179 0 +42 8834 15.943993151421 0 +42 8834 15.943993151421 0 +42 8842 15.944153151421 0 +42 8842 15.944153151421 0 +42 8890 16.114557286953 0 +42 8890 16.114557286953 0 +42 8905 16.114717286953 0 +42 8905 16.114717286953 0 +42 8932 16.124399335277 0 +42 8932 16.124399335277 0 +42 8951 16.124559335277 0 +42 8951 16.124559335277 0 +42 8969 16.131276597671 0 +42 8969 16.131276597671 0 +42 8984 16.131436597671 0 +42 8984 16.131436597671 0 +42 9044 16.193585792487 0 +42 9044 16.193585792487 0 +42 9051 16.193745792487 0 +42 9051 16.193745792487 0 +42 9083 16.243993151421 0 +42 9083 16.243993151421 0 +42 9091 16.244153151421 0 +42 9091 16.244153151421 0 +42 9139 16.414557272365 0 +42 9139 16.414557272365 0 +42 9154 16.414717272365 0 +42 9154 16.414717272365 0 +42 9181 16.424399336094 0 +42 9181 16.424399336094 0 +42 9200 16.424559336094 0 +42 9200 16.424559336094 0 +42 9218 16.431276598394 0 +42 9218 16.431276598394 0 +42 9233 16.431436598394 0 +42 9233 16.431436598394 0 +42 9293 16.493585780506 0 +42 9293 16.493585780506 0 +42 9300 16.493745780506 0 +42 9300 16.493745780506 0 +42 9332 16.543993151421 0 +42 9332 16.543993151421 0 +42 9340 16.544153151421 0 +42 9340 16.544153151421 0 +42 9388 16.714557257775 0 +42 9388 16.714557257775 0 +42 9403 16.714717257775 0 +42 9403 16.714717257775 0 +42 9430 16.724399336915 0 +42 9430 16.724399336915 0 +42 9449 16.724559336915 0 +42 9449 16.724559336915 0 +42 9467 16.731276599099 0 +42 9467 16.731276599099 0 +42 9482 16.731436599099 0 +42 9482 16.731436599099 0 +42 9542 16.793585771057 0 +42 9542 16.793585771057 0 +42 9549 16.793745771057 0 +42 9549 16.793745771057 0 +42 9581 16.843993151421 0 +42 9581 16.843993151421 0 +42 9589 16.844153151421 0 +42 9589 16.844153151421 0 +42 9637 17.014557243226 0 +42 9637 17.014557243226 0 +42 9652 17.014717243226 0 +42 9652 17.014717243226 0 +42 9679 17.024399337752 0 +42 9679 17.024399337752 0 +42 9698 17.024559337752 0 +42 9698 17.024559337752 0 +42 9716 17.031276599817 0 +42 9716 17.031276599817 0 +42 9731 17.031436599817 0 +42 9731 17.031436599817 0 +42 9791 17.093585764134 0 +42 9791 17.093585764134 0 +42 9798 17.093745764134 0 +42 9798 17.093745764134 0 +42 9830 17.143993151421 0 +42 9830 17.143993151421 0 +42 9838 17.144153151421 0 +42 9838 17.144153151421 0 +42 9886 17.314557228649 0 +42 9886 17.314557228649 0 +42 9901 17.314717228649 0 +42 9901 17.314717228649 0 +42 9928 17.324399338595 0 +42 9928 17.324399338595 0 +42 9947 17.324559338595 0 +42 9947 17.324559338595 0 +42 9965 17.331276600539 0 +42 9965 17.331276600539 0 +42 9980 17.331436600539 0 +42 9980 17.331436600539 0 +42 10040 17.393585759695 0 +42 10040 17.393585759695 0 +42 10047 17.393745759695 0 +42 10047 17.393745759695 0 +42 10079 17.443993151421 0 +42 10079 17.443993151421 0 +42 10087 17.444153151421 0 +42 10087 17.444153151421 0 +42 10135 17.614557214117 0 +42 10135 17.614557214117 0 +42 10150 17.614717214117 0 +42 10150 17.614717214117 0 +42 10177 17.624399339444 0 +42 10177 17.624399339444 0 +42 10196 17.624559339444 0 +42 10196 17.624559339444 0 +42 10214 17.631276601271 0 +42 10214 17.631276601271 0 +42 10229 17.631436601271 0 +42 10229 17.631436601271 0 +42 10289 17.69358575768 0 +42 10289 17.69358575768 0 +42 10296 17.69374575768 0 +42 10296 17.69374575768 0 +42 10328 17.743993151421 0 +42 10328 17.743993151421 0 +42 10336 17.744153151421 0 +42 10336 17.744153151421 0 +42 10384 17.914557199593 0 +42 10384 17.914557199593 0 +42 10399 17.914717199593 0 +42 10399 17.914717199593 0 +42 10422 17.92439934028 0 +42 10422 17.92439934028 0 +42 10441 17.92455934028 0 +42 10441 17.92455934028 0 +42 10459 17.931276601981 0 +42 10459 17.931276601981 0 +42 10474 17.931436601981 0 +42 10474 17.931436601981 0 +42 10530 17.993585756396 0 +42 10530 17.993585756396 0 +42 10537 17.993745756396 0 +42 10537 17.993745756396 0 +42 10569 18.043993151421 0 +42 10569 18.043993151421 0 +42 10577 18.044153151421 0 +42 10577 18.044153151421 0 +42 10624 18.214557185085 0 +42 10624 18.214557185085 0 +42 10635 18.214717185085 0 +42 10635 18.214717185085 0 +42 10663 18.22439934113 0 +42 10663 18.22439934113 0 +42 10682 18.22455934113 0 +42 10682 18.22455934113 0 +42 10696 18.231276602699 0 +42 10696 18.231276602699 0 +42 10711 18.231436602699 0 +42 10711 18.231436602699 0 +42 10767 18.293585755106 0 +42 10767 18.293585755106 0 +42 10774 18.293745755106 0 +42 10774 18.293745755106 0 +42 10806 18.343993151421 0 +42 10806 18.343993151421 0 +42 10814 18.344153151421 0 +42 10814 18.344153151421 0 +42 10857 18.514557170436 0 +42 10857 18.514557170436 0 +42 10868 18.514717170436 0 +42 10868 18.514717170436 0 +42 10896 18.524399341978 0 +42 10896 18.524399341978 0 +42 10915 18.524559341978 0 +42 10915 18.524559341978 0 +42 10929 18.531276603438 0 +42 10929 18.531276603438 0 +42 10944 18.531436603438 0 +42 10944 18.531436603438 0 +42 11000 18.593585753817 0 +42 11000 18.593585753817 0 +42 11007 18.593745753817 0 +42 11007 18.593745753817 0 +42 11039 18.643993151421 0 +42 11039 18.643993151421 0 +42 11047 18.644153151421 0 +42 11047 18.644153151421 0 +42 11090 18.814557161182 0 +42 11090 18.814557161182 0 +42 11101 18.814717161182 0 +42 11101 18.814717161182 0 +42 11162 18.831276604167 0 +42 11162 18.831276604167 0 +42 11177 18.831436604167 0 +42 11177 18.831436604167 0 +42 11233 18.893585752536 0 +42 11233 18.893585752536 0 +42 11240 18.893745752536 0 +42 11240 18.893745752536 0 +42 11272 18.943993151421 0 +42 11272 18.943993151421 0 +42 11280 18.944153151421 0 +42 11280 18.944153151421 0 +42 11323 19.114557157992 0 +42 11323 19.114557157992 0 +42 11334 19.114717157992 0 +42 11334 19.114717157992 0 +42 11395 19.131276604913 0 +42 11395 19.131276604913 0 +42 11410 19.131436604913 0 +42 11410 19.131436604913 0 +42 11466 19.193585751249 0 +42 11466 19.193585751249 0 +42 11473 19.193745751249 0 +42 11473 19.193745751249 0 +42 11505 19.243993151421 0 +42 11505 19.243993151421 0 +42 11513 19.244153151421 0 +42 11513 19.244153151421 0 +42 11556 19.414557155892 0 +42 11556 19.414557155892 0 +42 11567 19.414717155892 0 +42 11567 19.414717155892 0 +42 11628 19.431276605661 0 +42 11628 19.431276605661 0 +42 11643 19.431436605661 0 +42 11643 19.431436605661 0 +42 11699 19.493585749962 0 +42 11699 19.493585749962 0 +42 11706 19.493745749962 0 +42 11706 19.493745749962 0 +42 11738 19.543993151421 0 +42 11738 19.543993151421 0 +42 11746 19.544153151421 0 +42 11746 19.544153151421 0 +42 11789 19.714557154461 0 +42 11789 19.714557154461 0 +42 11800 19.714717154461 0 +42 11800 19.714717154461 0 +42 11861 19.731276606768 0 +42 11861 19.731276606768 0 +42 11876 19.731436606768 0 +42 11876 19.731436606768 0 +42 11932 19.793585748041 0 +42 11932 19.793585748041 0 +42 11939 19.793745748041 0 +42 11939 19.793745748041 0 +42 11971 19.843993151421 0 +42 11971 19.843993151421 0 +42 11979 19.844153151421 0 +42 11979 19.844153151421 0 +42 12022 20.014557153776 0 +42 12022 20.014557153776 0 +42 12033 20.014717153776 0 +42 12033 20.014717153776 0 +42 12098 20.031276608452 0 +42 12098 20.031276608452 0 +42 12113 20.031436608452 0 +42 12113 20.031436608452 0 +42 12173 20.093585745227 0 +42 12173 20.093585745227 0 +42 12180 20.093745745227 0 +42 12180 20.093745745227 0 +42 12212 20.143993151421 0 +42 12212 20.143993151421 0 +42 12220 20.144153151421 0 +42 12220 20.144153151421 0 +42 12263 20.31455715393 0 +42 12263 20.31455715393 0 +42 12274 20.31471715393 0 +42 12274 20.31471715393 0 +42 12339 20.331276610588 0 +42 12339 20.331276610588 0 +42 12354 20.331436610588 0 +42 12354 20.331436610588 0 +42 12414 20.393585741612 0 +42 12414 20.393585741612 0 +42 12421 20.393745741612 0 +42 12421 20.393745741612 0 +42 12453 20.443993151421 0 +42 12453 20.443993151421 0 +42 12461 20.444153151421 0 +42 12461 20.444153151421 0 +42 12504 20.614557155021 0 +42 12504 20.614557155021 0 +42 12515 20.614717155021 0 +42 12515 20.614717155021 0 +42 12580 20.631276613242 0 +42 12580 20.631276613242 0 +42 12595 20.631436613242 0 +42 12595 20.631436613242 0 +42 12655 20.693585737229 0 +42 12655 20.693585737229 0 +42 12662 20.693745737229 0 +42 12662 20.693745737229 0 +42 12694 20.743993151421 0 +42 12694 20.743993151421 0 +42 12702 20.744153151421 0 +42 12702 20.744153151421 0 +42 12745 20.914557157133 0 +42 12745 20.914557157133 0 +42 12756 20.914717157133 0 +42 12756 20.914717157133 0 +42 12821 20.931276616399 0 +42 12821 20.931276616399 0 +42 12836 20.931436616399 0 +42 12836 20.931436616399 0 +42 12896 20.993585732172 0 +42 12896 20.993585732172 0 +42 12903 20.993745732172 0 +42 12903 20.993745732172 0 +42 12935 21.043993151421 0 +42 12935 21.043993151421 0 +42 12943 21.044153151421 0 +42 12943 21.044153151421 0 +42 12986 21.214557160323 0 +42 12986 21.214557160323 0 +42 12997 21.214717160323 0 +42 12997 21.214717160323 0 +42 13062 21.231276620049 0 +42 13062 21.231276620049 0 +42 13077 21.231436620049 0 +42 13077 21.231436620049 0 +42 13137 21.293585726489 0 +42 13137 21.293585726489 0 +42 13144 21.293745726489 0 +42 13144 21.293745726489 0 +42 13176 21.343993151421 0 +42 13176 21.343993151421 0 +42 13184 21.344153151421 0 +42 13184 21.344153151421 0 +42 13227 21.514557164674 0 +42 13227 21.514557164674 0 +42 13238 21.514717164674 0 +42 13238 21.514717164674 0 +42 13303 21.531276624253 0 +42 13303 21.531276624253 0 +42 13318 21.531436624253 0 +42 13318 21.531436624253 0 +42 13378 21.593585720024 0 +42 13378 21.593585720024 0 +42 13385 21.593745720024 0 +42 13385 21.593745720024 0 +42 13417 21.643993151421 0 +42 13417 21.643993151421 0 +42 13425 21.644153151421 0 +42 13425 21.644153151421 0 +42 13468 21.814557170229 0 +42 13468 21.814557170229 0 +42 13479 21.814717170229 0 +42 13479 21.814717170229 0 +42 13544 21.831276629063 0 +42 13544 21.831276629063 0 +42 13559 21.831436629063 0 +42 13559 21.831436629063 0 +42 13619 21.893585712841 0 +42 13619 21.893585712841 0 +42 13626 21.893745712841 0 +42 13626 21.893745712841 0 +42 13658 21.943993151421 0 +42 13658 21.943993151421 0 +42 13666 21.944153151421 0 +42 13666 21.944153151421 0 +42 13709 22.114557176994 0 +42 13709 22.114557176994 0 +42 13720 22.114717176994 0 +42 13720 22.114717176994 0 +42 13785 22.131276634514 0 +42 13785 22.131276634514 0 +42 13800 22.131436634514 0 +42 13800 22.131436634514 0 +42 13860 22.193585704988 0 +42 13860 22.193585704988 0 +42 13867 22.193745704988 0 +42 13867 22.193745704988 0 +42 13899 22.243993151421 0 +42 13899 22.243993151421 0 +42 13907 22.244153151421 0 +42 13907 22.244153151421 0 +42 13950 22.414557185072 0 +42 13950 22.414557185072 0 +42 13961 22.414717185072 0 +42 13961 22.414717185072 0 +42 14026 22.431276640553 0 +42 14026 22.431276640553 0 +42 14041 22.431436640553 0 +42 14041 22.431436640553 0 +42 14101 22.49358569653 0 +42 14101 22.49358569653 0 +42 14108 22.49374569653 0 +42 14108 22.49374569653 0 +42 14140 22.543993151421 0 +42 14140 22.543993151421 0 +42 14148 22.544153151421 0 +42 14148 22.544153151421 0 +42 14191 22.714557194287 0 +42 14191 22.714557194287 0 +42 14202 22.714717194287 0 +42 14202 22.714717194287 0 +42 14267 22.73127664727 0 +42 14267 22.73127664727 0 +42 14282 22.73143664727 0 +42 14282 22.73143664727 0 +42 14342 22.793585687538 0 +42 14342 22.793585687538 0 +42 14349 22.793745687538 0 +42 14349 22.793745687538 0 +42 14381 22.843993151421 0 +42 14381 22.843993151421 0 +42 14389 22.844153151421 0 +42 14389 22.844153151421 0 +42 14432 23.014557204223 0 +42 14432 23.014557204223 0 +42 14443 23.014717204223 0 +42 14443 23.014717204223 0 +42 14508 23.031276654734 0 +42 14508 23.031276654734 0 +42 14523 23.031436654734 0 +42 14523 23.031436654734 0 +42 14583 23.093585678184 0 +42 14583 23.093585678184 0 +42 14590 23.093745678184 0 +42 14590 23.093745678184 0 +42 14622 23.143993151421 0 +42 14622 23.143993151421 0 +42 14630 23.144153151421 0 +42 14630 23.144153151421 0 +42 14673 23.314557215428 0 +42 14673 23.314557215428 0 +42 14684 23.314717215428 0 +42 14684 23.314717215428 0 +42 14749 23.331276662913 0 +42 14749 23.331276662913 0 +42 14764 23.331436662913 0 +42 14764 23.331436662913 0 +42 14824 23.393585668176 0 +42 14824 23.393585668176 0 +42 14831 23.393745668176 0 +42 14831 23.393745668176 0 +42 14863 23.443993151421 0 +42 14863 23.443993151421 0 +42 14871 23.444153151421 0 +42 14871 23.444153151421 0 +42 14914 23.614557224167 0 +42 14914 23.614557224167 0 +42 14925 23.614717224167 0 +42 14925 23.614717224167 0 +42 14990 23.631276668226 0 +42 14990 23.631276668226 0 +42 15005 23.631436668226 0 +42 15005 23.631436668226 0 +42 15065 23.693585661458 0 +42 15065 23.693585661458 0 +42 15072 23.693745661458 0 +42 15072 23.693745661458 0 +42 15104 23.743993151421 0 +42 15104 23.743993151421 0 +42 15112 23.744153151421 0 +42 15112 23.744153151421 0 +42 15155 23.914557225534 0 +42 15155 23.914557225534 0 +42 15166 23.914717225534 0 +42 15166 23.914717225534 0 +42 15231 23.931276671861 0 +42 15231 23.931276671861 0 +42 15246 23.931436671861 0 +42 15246 23.931436671861 0 +42 15306 23.993585658609 0 +42 15306 23.993585658609 0 +42 15313 23.993745658609 0 +42 15313 23.993745658609 0 +42 15345 24.043993151421 0 +42 15345 24.043993151421 0 +42 15353 24.044153151421 0 +42 15353 24.044153151421 0 +42 15396 24.214557228476 0 +42 15396 24.214557228476 0 +42 15407 24.214717228476 0 +42 15407 24.214717228476 0 +42 15472 24.231276682111 0 +42 15472 24.231276682111 0 +42 15487 24.231436682111 0 +42 15487 24.231436682111 0 +42 15547 24.293585650885 0 +42 15547 24.293585650885 0 +42 15554 24.293745650885 0 +42 15554 24.293745650885 0 +42 15586 24.343993151421 0 +42 15586 24.343993151421 0 +42 15594 24.344153151421 0 +42 15594 24.344153151421 0 +42 15637 24.514557231601 0 +42 15637 24.514557231601 0 +42 15648 24.514717231601 0 +42 15648 24.514717231601 0 +42 15713 24.531276693849 0 +42 15713 24.531276693849 0 +42 15728 24.531436693849 0 +42 15728 24.531436693849 0 +42 15788 24.593585643051 0 +42 15788 24.593585643051 0 +42 15795 24.593745643051 0 +42 15795 24.593745643051 0 +42 15827 24.643993151421 0 +42 15827 24.643993151421 0 +42 15835 24.644153151421 0 +42 15835 24.644153151421 0 +42 15878 24.814557234404 0 +42 15878 24.814557234404 0 +42 15889 24.814717234404 0 +42 15889 24.814717234404 0 +42 15954 24.831276706445 0 +42 15954 24.831276706445 0 +42 15969 24.831436706445 0 +42 15969 24.831436706445 0 +42 16029 24.893585636131 0 +42 16029 24.893585636131 0 +42 16036 24.893745636131 0 +42 16036 24.893745636131 0 +42 16068 24.943993151421 0 +42 16068 24.943993151421 0 +42 16076 24.944153151421 0 +42 16076 24.944153151421 0 +42 16119 25.114557236911 0 +42 16119 25.114557236911 0 +42 16130 25.114717236911 0 +42 16130 25.114717236911 0 +42 16195 25.131276719839 0 +42 16195 25.131276719839 0 +42 16210 25.131436719839 0 +42 16210 25.131436719839 0 +42 16270 25.193585630457 0 +42 16270 25.193585630457 0 +42 16277 25.193745630457 0 +42 16277 25.193745630457 0 +42 16309 25.243993151421 0 +42 16309 25.243993151421 0 +42 16317 25.244153151421 0 +42 16317 25.244153151421 0 +42 16360 25.414557239038 0 +42 16360 25.414557239038 0 +42 16371 25.414717239038 0 +42 16371 25.414717239038 0 +42 16436 25.431276734024 0 +42 16436 25.431276734024 0 +42 16451 25.431436734024 0 +42 16451 25.431436734024 0 +42 16511 25.493585626591 0 +42 16511 25.493585626591 0 +42 16518 25.493745626591 0 +42 16518 25.493745626591 0 +42 16550 25.543993151421 0 +42 16550 25.543993151421 0 +42 16558 25.544153151421 0 +42 16558 25.544153151421 0 +42 16600 25.714557240854 0 +42 16600 25.714557240854 0 +42 16607 25.714717240854 0 +42 16607 25.714717240854 0 +42 16677 25.731276749009 0 +42 16677 25.731276749009 0 +42 16692 25.731436749009 0 +42 16692 25.731436749009 0 +42 16752 25.793585625056 0 +42 16752 25.793585625056 0 +42 16759 25.793745625056 0 +42 16759 25.793745625056 0 +42 16791 25.843993151421 0 +42 16791 25.843993151421 0 +42 16799 25.844153151421 0 +42 16799 25.844153151421 0 +42 16841 26.014557242289 0 +42 16841 26.014557242289 0 +42 16848 26.014717242289 0 +42 16848 26.014717242289 0 +42 16918 26.031276763556 0 +42 16918 26.031276763556 0 +42 16933 26.031436763556 0 +42 16933 26.031436763556 0 +42 16993 26.093585626275 0 +42 16993 26.093585626275 0 +42 17000 26.093745626275 0 +42 17000 26.093745626275 0 +42 17032 26.143993151421 0 +42 17032 26.143993151421 0 +42 17040 26.144153151421 0 +42 17040 26.144153151421 0 +42 17082 26.314557243311 0 +42 17082 26.314557243311 0 +42 17089 26.314717243311 0 +42 17089 26.314717243311 0 +42 17159 26.331276777067 0 +42 17159 26.331276777067 0 +42 17174 26.331436777067 0 +42 17174 26.331436777067 0 +42 17234 26.393585630812 0 +42 17234 26.393585630812 0 +42 17241 26.393745630812 0 +42 17241 26.393745630812 0 +42 17273 26.443993151421 0 +42 17273 26.443993151421 0 +42 17281 26.444153151421 0 +42 17281 26.444153151421 0 +42 17323 26.614557243876 0 +42 17323 26.614557243876 0 +42 17330 26.614717243876 0 +42 17330 26.614717243876 0 +42 17400 26.631276789593 0 +42 17400 26.631276789593 0 +42 17415 26.631436789593 0 +42 17415 26.631436789593 0 +42 17475 26.693585638677 0 +42 17475 26.693585638677 0 +42 17482 26.693745638677 0 +42 17482 26.693745638677 0 +42 17514 26.743993151421 0 +42 17514 26.743993151421 0 +42 17522 26.744153151421 0 +42 17522 26.744153151421 0 +42 17564 26.914557244114 0 +42 17564 26.914557244114 0 +42 17571 26.914717244114 0 +42 17571 26.914717244114 0 +42 17641 26.931276801135 0 +42 17641 26.931276801135 0 +42 17656 26.931436801135 0 +42 17656 26.931436801135 0 +42 17716 26.993585649352 0 +42 17716 26.993585649352 0 +42 17723 26.993745649352 0 +42 17723 26.993745649352 0 +42 17755 27.043993151421 0 +42 17755 27.043993151421 0 +42 17763 27.044153151421 0 +42 17763 27.044153151421 0 +42 17805 27.214557243957 0 +42 17805 27.214557243957 0 +42 17812 27.214717243957 0 +42 17812 27.214717243957 0 +42 17875 27.231276811734 0 +42 17875 27.231276811734 0 +42 17894 27.231436811734 0 +42 17894 27.231436811734 0 +42 17949 27.293585662469 0 +42 17949 27.293585662469 0 +42 17956 27.293745662469 0 +42 17956 27.293745662469 0 +42 17988 27.343993151421 0 +42 17988 27.343993151421 0 +42 17996 27.344153151421 0 +42 17996 27.344153151421 0 +42 18038 27.514557243783 0 +42 18038 27.514557243783 0 +42 18045 27.514717243783 0 +42 18045 27.514717243783 0 +42 18108 27.53127682198 0 +42 18108 27.53127682198 0 +42 18127 27.53143682198 0 +42 18127 27.53143682198 0 +42 18182 27.593585677115 0 +42 18182 27.593585677115 0 +42 18189 27.593745677115 0 +42 18189 27.593745677115 0 +42 18221 27.643993151421 0 +42 18221 27.643993151421 0 +42 18229 27.644153151421 0 +42 18229 27.644153151421 0 +42 18271 27.814557243571 0 +42 18271 27.814557243571 0 +42 18278 27.814717243571 0 +42 18278 27.814717243571 0 +42 18341 27.831276831392 0 +42 18341 27.831276831392 0 +42 18360 27.831436831392 0 +42 18360 27.831436831392 0 +42 18415 27.893585692883 0 +42 18415 27.893585692883 0 +42 18422 27.893745692883 0 +42 18422 27.893745692883 0 +42 18454 27.943993151421 0 +42 18454 27.943993151421 0 +42 18462 27.944153151421 0 +42 18462 27.944153151421 0 +42 18504 28.114557243343 0 +42 18504 28.114557243343 0 +42 18511 28.114717243343 0 +42 18511 28.114717243343 0 +42 18574 28.13127683163 0 +42 18574 28.13127683163 0 +42 18593 28.13143683163 0 +42 18593 28.13143683163 0 +42 18648 28.193585709573 0 +42 18648 28.193585709573 0 +42 18655 28.193745709573 0 +42 18655 28.193745709573 0 +42 18687 28.243993151421 0 +42 18687 28.243993151421 0 +42 18695 28.244153151421 0 +42 18695 28.244153151421 0 +42 18737 28.414557243176 0 +42 18737 28.414557243176 0 +42 18744 28.414717243176 0 +42 18744 28.414717243176 0 +42 18807 28.4312768277 0 +42 18807 28.4312768277 0 +42 18826 28.4314368277 0 +42 18826 28.4314368277 0 +42 18881 28.493585726899 0 +42 18881 28.493585726899 0 +42 18888 28.493745726899 0 +42 18888 28.493745726899 0 +42 18920 28.543993151421 0 +42 18920 28.543993151421 0 +42 18928 28.544153151421 0 +42 18928 28.544153151421 0 +42 18970 28.71455724295 0 +42 18970 28.71455724295 0 +42 18977 28.71471724295 0 +42 18977 28.71471724295 0 +42 19040 28.731276823589 0 +42 19040 28.731276823589 0 +42 19059 28.731436823589 0 +42 19059 28.731436823589 0 +42 19114 28.793585744792 0 +42 19114 28.793585744792 0 +42 19121 28.793745744792 0 +42 19121 28.793745744792 0 +42 19153 28.843993151421 0 +42 19153 28.843993151421 0 +42 19161 28.844153151421 0 +42 19161 28.844153151421 0 +42 19203 29.014557242752 0 +42 19203 29.014557242752 0 +42 19210 29.014717242752 0 +42 19210 29.014717242752 0 +42 19273 29.031276819366 0 +42 19273 29.031276819366 0 +42 19292 29.031436819366 0 +42 19292 29.031436819366 0 +42 19339 29.093585763099 0 +42 19339 29.093585763099 0 +42 19346 29.093745763099 0 +42 19346 29.093745763099 0 +42 19378 29.143993151421 0 +42 19378 29.143993151421 0 +42 19386 29.144153151421 0 +42 19386 29.144153151421 0 +42 19428 29.31455724256 0 +42 19428 29.31455724256 0 +42 19435 29.31471724256 0 +42 19435 29.31471724256 0 +42 19498 29.331276815156 0 +42 19498 29.331276815156 0 +42 19517 29.331436815156 0 +42 19517 29.331436815156 0 +42 19564 29.393585781743 0 +42 19564 29.393585781743 0 +42 19571 29.393745781743 0 +42 19571 29.393745781743 0 +42 19603 29.443993151421 0 +42 19603 29.443993151421 0 +42 19611 29.444153151421 0 +42 19611 29.444153151421 0 +42 19653 29.614557242339 0 +42 19653 29.614557242339 0 +42 19660 29.614717242339 0 +42 19660 29.614717242339 0 +42 19723 29.631276811006 0 +42 19723 29.631276811006 0 +42 19742 29.631436811006 0 +42 19742 29.631436811006 0 +42 19789 29.693585800658 0 +42 19789 29.693585800658 0 +42 19796 29.693745800658 0 +42 19796 29.693745800658 0 +42 19828 29.743993151421 0 +42 19828 29.743993151421 0 +42 19836 29.744153151421 0 +42 19836 29.744153151421 0 +42 19878 29.914557242168 0 +42 19878 29.914557242168 0 +42 19885 29.914717242168 0 +42 19885 29.914717242168 0 +42 19948 29.931276806789 0 +42 19948 29.931276806789 0 +42 19967 29.931436806789 0 +42 19967 29.931436806789 0 +42 20014 29.99358581976 0 +42 20014 29.99358581976 0 +42 20021 29.99374581976 0 +42 20021 29.99374581976 0 +42 20053 30.043993151421 0 +42 20053 30.043993151421 0 +42 20061 30.044153151421 0 +42 20061 30.044153151421 0 +42 20103 30.214557241952 0 +42 20103 30.214557241952 0 +42 20110 30.214717241952 0 +42 20110 30.214717241952 0 +42 20173 30.231276802516 0 +42 20173 30.231276802516 0 +42 20192 30.231436802516 0 +42 20192 30.231436802516 0 +42 20239 30.29358583909 0 +42 20239 30.29358583909 0 +42 20246 30.29374583909 0 +42 20246 30.29374583909 0 +42 20278 30.343993151421 0 +42 20278 30.343993151421 0 +42 20286 30.344153151421 0 +42 20286 30.344153151421 0 +42 20328 30.514557241756 0 +42 20328 30.514557241756 0 +42 20335 30.514717241756 0 +42 20335 30.514717241756 0 +42 20398 30.531276798256 0 +42 20398 30.531276798256 0 +42 20417 30.531436798256 0 +42 20417 30.531436798256 0 +42 20464 30.593585858538 0 +42 20464 30.593585858538 0 +42 20471 30.593745858538 0 +42 20471 30.593745858538 0 +42 20503 30.643993151421 0 +42 20503 30.643993151421 0 +42 20511 30.644153151421 0 +42 20511 30.644153151421 0 +42 20553 30.814557241503 0 +42 20553 30.814557241503 0 +42 20560 30.814717241503 0 +42 20560 30.814717241503 0 +42 20622 30.831276794122 0 +42 20622 30.831276794122 0 +42 20637 30.831436794122 0 +42 20637 30.831436794122 0 +42 20689 30.893585878179 0 +42 20689 30.893585878179 0 +42 20696 30.893745878179 0 +42 20696 30.893745878179 0 +42 20728 30.943993151421 0 +42 20728 30.943993151421 0 +42 20736 30.944153151421 0 +42 20736 30.944153151421 0 +42 20778 31.114557241331 0 +42 20778 31.114557241331 0 +42 20785 31.114717241331 0 +42 20785 31.114717241331 0 +42 20851 31.131276790287 0 +42 20851 31.131276790287 0 +42 20866 31.131436790287 0 +42 20866 31.131436790287 0 +42 20919 31.193585897854 0 +42 20919 31.193585897854 0 +42 20930 31.193745897854 0 +42 20930 31.193745897854 0 +42 20961 31.243993151421 0 +42 20961 31.243993151421 0 +42 20969 31.244153151421 0 +42 20969 31.244153151421 0 +42 21011 31.414557241138 0 +42 21011 31.414557241138 0 +42 21018 31.414717241138 0 +42 21018 31.414717241138 0 +42 21084 31.431276787097 0 +42 21084 31.431276787097 0 +42 21099 31.431436787097 0 +42 21099 31.431436787097 0 +42 21152 31.49358591764 0 +42 21152 31.49358591764 0 +42 21163 31.49374591764 0 +42 21163 31.49374591764 0 +42 21194 31.543993151421 0 +42 21194 31.543993151421 0 +42 21202 31.544153151421 0 +42 21202 31.544153151421 0 +42 21244 31.714557240949 0 +42 21244 31.714557240949 0 +42 21251 31.714717240949 0 +42 21251 31.714717240949 0 +42 21317 31.731276784583 0 +42 21317 31.731276784583 0 +42 21332 31.731436784583 0 +42 21332 31.731436784583 0 +42 21385 31.793585937521 0 +42 21385 31.793585937521 0 +42 21396 31.793745937521 0 +42 21396 31.793745937521 0 +42 21427 31.843993151421 0 +42 21427 31.843993151421 0 +42 21435 31.844153151421 0 +42 21435 31.844153151421 0 +42 21477 32.014557240765 0 +42 21477 32.014557240765 0 +42 21484 32.014717240765 0 +42 21484 32.014717240765 0 +42 21550 32.031276782702 0 +42 21550 32.031276782702 0 +42 21565 32.031436782702 0 +42 21565 32.031436782702 0 +42 21618 32.093585957424 0 +42 21618 32.093585957424 0 +42 21629 32.093745957424 0 +42 21629 32.093745957424 0 +42 21660 32.143993151421 0 +42 21660 32.143993151421 0 +42 21668 32.144153151421 0 +42 21668 32.144153151421 0 +42 21710 32.31455724058 0 +42 21710 32.31455724058 0 +42 21717 32.31471724058 0 +42 21717 32.31471724058 0 +42 21783 32.331276781557 0 +42 21783 32.331276781557 0 +42 21798 32.331436781557 0 +42 21798 32.331436781557 0 +42 21851 32.393585977454 0 +42 21851 32.393585977454 0 +42 21862 32.393745977454 0 +42 21862 32.393745977454 0 +42 21893 32.443993151421 0 +42 21893 32.443993151421 0 +42 21901 32.444153151421 0 +42 21901 32.444153151421 0 +42 21943 32.614557240362 0 +42 21943 32.614557240362 0 +42 21950 32.614717240362 0 +42 21950 32.614717240362 0 +42 22016 32.631276781062 0 +42 22016 32.631276781062 0 +42 22031 32.631436781062 0 +42 22031 32.631436781062 0 +42 22084 32.693585997543 0 +42 22084 32.693585997543 0 +42 22095 32.693745997543 0 +42 22095 32.693745997543 0 +42 22126 32.743993151421 0 +42 22126 32.743993151421 0 +42 22134 32.744153151421 0 +42 22134 32.744153151421 0 +42 22176 32.914557240161 0 +42 22176 32.914557240161 0 +42 22183 32.914717240161 0 +42 22183 32.914717240161 0 +42 22249 32.93127678126 0 +42 22249 32.93127678126 0 +42 22264 32.93143678126 0 +42 22264 32.93143678126 0 +42 22317 32.993586017691 0 +42 22317 32.993586017691 0 +42 22328 32.993746017691 0 +42 22328 32.993746017691 0 +42 22359 33.043993151421 0 +42 22359 33.043993151421 0 +42 22367 33.044153151421 0 +42 22367 33.044153151421 0 +42 22409 33.214557239961 0 +42 22409 33.214557239961 0 +42 22416 33.214717239961 0 +42 22416 33.214717239961 0 +42 22482 33.23127678211 0 +42 22482 33.23127678211 0 +42 22497 33.23143678211 0 +42 22497 33.23143678211 0 +42 22550 33.293586037835 0 +42 22550 33.293586037835 0 +42 22561 33.293746037835 0 +42 22561 33.293746037835 0 +42 22592 33.343993151421 0 +42 22592 33.343993151421 0 +42 22600 33.344153151421 0 +42 22600 33.344153151421 0 +42 22642 33.514557239737 0 +42 22642 33.514557239737 0 +42 22649 33.514717239737 0 +42 22649 33.514717239737 0 +42 22715 33.531276783685 0 +42 22715 33.531276783685 0 +42 22730 33.531436783685 0 +42 22730 33.531436783685 0 +42 22784 33.593586058084 0 +42 22784 33.593586058084 0 +42 22799 33.593746058084 0 +42 22799 33.593746058084 0 +42 22825 33.643993151421 0 +42 22825 33.643993151421 0 +42 22833 33.644153151421 0 +42 22833 33.644153151421 0 +42 22875 33.814557239531 0 +42 22875 33.814557239531 0 +42 22882 33.814717239531 0 +42 22882 33.814717239531 0 +42 22944 33.831276785904 0 +42 22944 33.831276785904 0 +42 22959 33.831436785904 0 +42 22959 33.831436785904 0 +42 23013 33.893586078308 0 +42 23013 33.893586078308 0 +42 23028 33.893746078308 0 +42 23028 33.893746078308 0 +42 23049 33.943993151421 0 +42 23049 33.943993151421 0 +42 23056 33.944153151421 0 +42 23056 33.944153151421 0 +42 23091 34.11455723931 0 +42 23091 34.11455723931 0 +42 23097 34.11471723931 0 +42 23097 34.11471723931 0 +42 23147 34.131276788788 0 +42 23147 34.131276788788 0 +42 23157 34.131436788788 0 +42 23157 34.131436788788 0 +42 23207 34.243993151421 0 +42 23207 34.243993151421 0 +42 23214 34.244153151421 0 +42 23214 34.244153151421 0 +42 23249 34.414557239094 0 +42 23249 34.414557239094 0 +42 23255 34.414717239094 0 +42 23255 34.414717239094 0 +42 23305 34.431276792338 0 +42 23305 34.431276792338 0 +42 23315 34.431436792338 0 +42 23315 34.431436792338 0 +42 23365 34.543993151421 0 +42 23365 34.543993151421 0 +42 23372 34.544153151421 0 +42 23372 34.544153151421 0 +42 23407 34.71455723891 0 +42 23407 34.71455723891 0 +42 23413 34.71471723891 0 +42 23413 34.71471723891 0 +42 23463 34.731276796515 0 +42 23463 34.731276796515 0 +42 23473 34.731436796515 0 +42 23473 34.731436796515 0 +42 23523 34.843993151421 0 +42 23523 34.843993151421 0 +42 23530 34.844153151421 0 +42 23530 34.844153151421 0 +42 23565 35.014557238698 0 +42 23565 35.014557238698 0 +42 23571 35.014717238698 0 +42 23571 35.014717238698 0 +42 23621 35.031276801357 0 +42 23621 35.031276801357 0 +42 23631 35.031436801357 0 +42 23631 35.031436801357 0 +42 23681 35.143993151421 0 +42 23681 35.143993151421 0 +42 23688 35.144153151421 0 +42 23688 35.144153151421 0 +42 23727 35.31455723851 0 +42 23727 35.31455723851 0 +42 23733 35.31471723851 0 +42 23733 35.31471723851 0 +42 23783 35.331276806756 0 +42 23783 35.331276806756 0 +42 23793 35.331436806756 0 +42 23793 35.331436806756 0 +42 23813 35.357384434054 0 +42 23813 35.357384434054 0 +42 23827 35.357544434054 0 +42 23827 35.357544434054 0 +42 23847 35.443993151421 0 +42 23847 35.443993151421 0 +42 23854 35.444153151421 0 +42 23854 35.444153151421 0 +42 23893 35.614557238324 0 +42 23893 35.614557238324 0 +42 23899 35.614717238324 0 +42 23899 35.614717238324 0 +42 23949 35.631276812771 0 +42 23949 35.631276812771 0 +42 23959 35.631436812771 0 +42 23959 35.631436812771 0 +42 23979 35.657384420736 0 +42 23979 35.657384420736 0 +42 23993 35.657544420736 0 +42 23993 35.657544420736 0 +42 24013 35.743993151421 0 +42 24013 35.743993151421 0 +42 24020 35.744153151421 0 +42 24020 35.744153151421 0 +42 24060 35.914557238104 0 +42 24060 35.914557238104 0 +42 24070 35.914717238104 0 +42 24070 35.914717238104 0 +42 24115 35.931276819372 0 +42 24115 35.931276819372 0 +42 24125 35.931436819372 0 +42 24125 35.931436819372 0 +42 24145 35.957384409002 0 +42 24145 35.957384409002 0 +42 24159 35.957544409002 0 +42 24159 35.957544409002 0 +42 24179 36.043993151421 0 +42 24179 36.043993151421 0 +42 24186 36.044153151421 0 +42 24186 36.044153151421 0 +42 24226 36.214557237923 0 +42 24226 36.214557237923 0 +42 24236 36.214717237923 0 +42 24236 36.214717237923 0 +42 24281 36.231276826584 0 +42 24281 36.231276826584 0 +42 24291 36.231436826584 0 +42 24291 36.231436826584 0 +42 24311 36.257384398867 0 +42 24311 36.257384398867 0 +42 24325 36.257544398867 0 +42 24325 36.257544398867 0 +42 24345 36.343993151421 0 +42 24345 36.343993151421 0 +42 24352 36.344153151421 0 +42 24352 36.344153151421 0 +42 24392 36.514557237718 0 +42 24392 36.514557237718 0 +42 24402 36.514717237718 0 +42 24402 36.514717237718 0 +42 24447 36.531276834329 0 +42 24447 36.531276834329 0 +42 24457 36.531436834329 0 +42 24457 36.531436834329 0 +42 24477 36.557384390339 0 +42 24477 36.557384390339 0 +42 24491 36.557544390339 0 +42 24491 36.557544390339 0 +42 24511 36.643993151421 0 +42 24511 36.643993151421 0 +42 24518 36.644153151421 0 +42 24518 36.644153151421 0 +42 24557 36.814557237512 0 +42 24557 36.814557237512 0 +42 24563 36.814717237512 0 +42 24563 36.814717237512 0 +42 24613 36.831276842622 0 +42 24613 36.831276842622 0 +42 24623 36.831436842622 0 +42 24623 36.831436842622 0 +42 24643 36.857384382745 0 +42 24643 36.857384382745 0 +42 24657 36.857544382745 0 +42 24657 36.857544382745 0 +42 24677 36.943993151421 0 +42 24677 36.943993151421 0 +42 24684 36.944153151421 0 +42 24684 36.944153151421 0 +42 24723 37.114557236718 0 +42 24723 37.114557236718 0 +42 24729 37.114717236718 0 +42 24729 37.114717236718 0 +42 24779 37.131276851096 0 +42 24779 37.131276851096 0 +42 24789 37.131436851096 0 +42 24789 37.131436851096 0 +42 24809 37.157384373889 0 +42 24809 37.157384373889 0 +42 24823 37.157544373889 0 +42 24823 37.157544373889 0 +42 24843 37.243993151421 0 +42 24843 37.243993151421 0 +42 24850 37.244153151421 0 +42 24850 37.244153151421 0 +42 24889 37.41455723223 0 +42 24889 37.41455723223 0 +42 24895 37.41471723223 0 +42 24895 37.41471723223 0 +42 24945 37.431276854108 0 +42 24945 37.431276854108 0 +42 24955 37.431436854108 0 +42 24955 37.431436854108 0 +42 24975 37.457384356842 0 +42 24975 37.457384356842 0 +42 24989 37.457544356842 0 +42 24989 37.457544356842 0 +42 25009 37.543993151421 0 +42 25009 37.543993151421 0 +42 25016 37.544153151421 0 +42 25016 37.544153151421 0 +42 25055 37.714557229579 0 +42 25055 37.714557229579 0 +42 25061 37.714717229579 0 +42 25061 37.714717229579 0 +42 25111 37.731276847205 0 +42 25111 37.731276847205 0 +42 25121 37.731436847205 0 +42 25121 37.731436847205 0 +42 25140 37.757384333389 0 +42 25140 37.757384333389 0 +42 25150 37.757544333389 0 +42 25150 37.757544333389 0 +42 25175 37.843993151421 0 +42 25175 37.843993151421 0 +42 25182 37.844153151421 0 +42 25182 37.844153151421 0 +42 25221 38.014557228941 0 +42 25221 38.014557228941 0 +42 25227 38.014717228941 0 +42 25227 38.014717228941 0 +42 25277 38.031276839602 0 +42 25277 38.031276839602 0 +42 25287 38.031436839602 0 +42 25287 38.031436839602 0 +42 25306 38.0573843092 0 +42 25306 38.0573843092 0 +42 25316 38.0575443092 0 +42 25316 38.0575443092 0 +42 25341 38.143993151421 0 +42 25341 38.143993151421 0 +42 25348 38.144153151421 0 +42 25348 38.144153151421 0 +42 25387 38.314557229416 0 +42 25387 38.314557229416 0 +42 25393 38.314717229416 0 +42 25393 38.314717229416 0 +42 25443 38.331276833175 0 +42 25443 38.331276833175 0 +42 25453 38.331436833175 0 +42 25453 38.331436833175 0 +42 25472 38.357384284464 0 +42 25472 38.357384284464 0 +42 25482 38.357544284464 0 +42 25482 38.357544284464 0 +42 25507 38.443993151421 0 +42 25507 38.443993151421 0 +42 25514 38.444153151421 0 +42 25514 38.444153151421 0 +42 25553 38.614557230908 0 +42 25553 38.614557230908 0 +42 25559 38.614717230908 0 +42 25559 38.614717230908 0 +42 25609 38.631276827949 0 +42 25609 38.631276827949 0 +42 25619 38.631436827949 0 +42 25619 38.631436827949 0 +42 25638 38.657384259185 0 +42 25638 38.657384259185 0 +42 25648 38.657544259185 0 +42 25648 38.657544259185 0 +42 25673 38.743993151421 0 +42 25673 38.743993151421 0 +42 25680 38.744153151421 0 +42 25680 38.744153151421 0 +42 25719 38.914557233464 0 +42 25719 38.914557233464 0 +42 25725 38.914717233464 0 +42 25725 38.914717233464 0 +42 25775 38.93127682395 0 +42 25775 38.93127682395 0 +42 25785 38.93143682395 0 +42 25785 38.93143682395 0 +42 25804 38.957384233306 0 +42 25804 38.957384233306 0 +42 25814 38.957544233306 0 +42 25814 38.957544233306 0 +42 25839 39.043993151421 0 +42 25839 39.043993151421 0 +42 25846 39.044153151421 0 +42 25846 39.044153151421 0 +42 25885 39.214557237033 0 +42 25885 39.214557237033 0 +42 25891 39.214717237033 0 +42 25891 39.214717237033 0 +42 25941 39.231276821205 0 +42 25941 39.231276821205 0 +42 25951 39.231436821205 0 +42 25951 39.231436821205 0 +42 25970 39.257384206756 0 +42 25970 39.257384206756 0 +42 25980 39.257544206756 0 +42 25980 39.257544206756 0 +42 26005 39.343993151421 0 +42 26005 39.343993151421 0 +42 26012 39.344153151421 0 +42 26012 39.344153151421 0 +42 26051 39.514557241575 0 +42 26051 39.514557241575 0 +42 26057 39.514717241575 0 +42 26057 39.514717241575 0 +42 26107 39.531276819725 0 +42 26107 39.531276819725 0 +42 26117 39.531436819725 0 +42 26117 39.531436819725 0 +42 26136 39.557384179549 0 +42 26136 39.557384179549 0 +42 26146 39.557544179549 0 +42 26146 39.557544179549 0 +42 26171 39.643993151421 0 +42 26171 39.643993151421 0 +42 26178 39.644153151421 0 +42 26178 39.644153151421 0 +42 26217 39.814557247083 0 +42 26217 39.814557247083 0 +42 26223 39.814717247083 0 +42 26223 39.814717247083 0 +42 26273 39.831276819522 0 +42 26273 39.831276819522 0 +42 26283 39.831436819522 0 +42 26283 39.831436819522 0 +42 26302 39.857384151671 0 +42 26302 39.857384151671 0 +42 26312 39.857544151671 0 +42 26312 39.857544151671 0 +42 26337 39.943993151421 0 +42 26337 39.943993151421 0 +42 26344 39.944153151421 0 +42 26344 39.944153151421 0 +42 26383 40.114557253513 0 +42 26383 40.114557253513 0 +42 26389 40.114717253513 0 +42 26389 40.114717253513 0 +42 26439 40.1312768206 0 +42 26439 40.1312768206 0 +42 26449 40.1314368206 0 +42 26449 40.1314368206 0 +42 26467 40.157384123679 0 +42 26467 40.157384123679 0 +42 26473 40.157544123679 0 +42 26473 40.157544123679 0 +42 26503 40.243993151421 0 +42 26503 40.243993151421 0 +42 26510 40.244153151421 0 +42 26510 40.244153151421 0 +42 26549 40.414557260797 0 +42 26549 40.414557260797 0 +42 26555 40.414717260797 0 +42 26555 40.414717260797 0 +42 26605 40.431276822952 0 +42 26605 40.431276822952 0 +42 26615 40.431436822952 0 +42 26615 40.431436822952 0 +42 26633 40.457384095641 0 +42 26633 40.457384095641 0 +42 26639 40.457544095641 0 +42 26639 40.457544095641 0 +42 26669 40.543993151421 0 +42 26669 40.543993151421 0 +42 26676 40.544153151421 0 +42 26676 40.544153151421 0 +42 26715 40.714557269001 0 +42 26715 40.714557269001 0 +42 26721 40.714717269001 0 +42 26721 40.714717269001 0 +42 26744 40.72439933755 0 +42 26744 40.72439933755 0 +42 26758 40.72455933755 0 +42 26758 40.72455933755 0 +42 26775 40.731276826556 0 +42 26775 40.731276826556 0 +42 26785 40.731436826556 0 +42 26785 40.731436826556 0 +42 26803 40.757384067729 0 +42 26803 40.757384067729 0 +42 26809 40.757544067729 0 +42 26809 40.757544067729 0 +42 26839 40.843993151421 0 +42 26839 40.843993151421 0 +42 26846 40.844153151421 0 +42 26846 40.844153151421 0 +42 26889 41.014557277925 0 +42 26889 41.014557277925 0 +42 26895 41.014717277925 0 +42 26895 41.014717277925 0 +42 26918 41.024399324799 0 +42 26918 41.024399324799 0 +42 26932 41.024559324799 0 +42 26932 41.024559324799 0 +42 26949 41.031276831396 0 +42 26949 41.031276831396 0 +42 26959 41.031436831396 0 +42 26959 41.031436831396 0 +42 26977 41.057384039737 0 +42 26977 41.057384039737 0 +42 26983 41.057544039737 0 +42 26983 41.057544039737 0 +42 27013 41.143993151421 0 +42 27013 41.143993151421 0 +42 27020 41.144153151421 0 +42 27020 41.144153151421 0 +42 27063 41.314557287623 0 +42 27063 41.314557287623 0 +42 27069 41.314717287623 0 +42 27069 41.314717287623 0 +42 27092 41.324399312788 0 +42 27092 41.324399312788 0 +42 27106 41.324559312788 0 +42 27106 41.324559312788 0 +42 27123 41.331276837463 0 +42 27123 41.331276837463 0 +42 27133 41.331436837463 0 +42 27133 41.331436837463 0 +42 27151 41.357384011756 0 +42 27151 41.357384011756 0 +42 27157 41.357544011756 0 +42 27157 41.357544011756 0 +42 27187 41.443993151421 0 +42 27187 41.443993151421 0 +42 27194 41.444153151421 0 +42 27194 41.444153151421 0 +42 27237 41.614557298022 0 +42 27237 41.614557298022 0 +42 27243 41.614717298022 0 +42 27243 41.614717298022 0 +42 27266 41.624399301583 0 +42 27266 41.624399301583 0 +42 27280 41.624559301583 0 +42 27280 41.624559301583 0 +42 27297 41.631276844699 0 +42 27297 41.631276844699 0 +42 27307 41.631436844699 0 +42 27307 41.631436844699 0 +42 27325 41.657383983797 0 +42 27325 41.657383983797 0 +42 27331 41.657543983797 0 +42 27331 41.657543983797 0 +42 27361 41.743993151421 0 +42 27361 41.743993151421 0 +42 27368 41.744153151421 0 +42 27368 41.744153151421 0 +42 27411 41.914557309216 0 +42 27411 41.914557309216 0 +42 27417 41.914717309216 0 +42 27417 41.914717309216 0 +42 27440 41.924399291388 0 +42 27440 41.924399291388 0 +42 27454 41.924559291388 0 +42 27454 41.924559291388 0 +42 27471 41.931276852916 0 +42 27471 41.931276852916 0 +42 27481 41.931436852916 0 +42 27481 41.931436852916 0 +42 27499 41.957383956357 0 +42 27499 41.957383956357 0 +42 27505 41.957543956357 0 +42 27505 41.957543956357 0 +42 27535 42.043993151421 0 +42 27535 42.043993151421 0 +42 27542 42.044153151421 0 +42 27542 42.044153151421 0 +42 27585 42.214557321205 0 +42 27585 42.214557321205 0 +42 27591 42.214717321205 0 +42 27591 42.214717321205 0 +42 27614 42.224399282466 0 +42 27614 42.224399282466 0 +42 27628 42.224559282466 0 +42 27628 42.224559282466 0 +42 27645 42.231276861741 0 +42 27645 42.231276861741 0 +42 27655 42.231436861741 0 +42 27655 42.231436861741 0 +42 27673 42.257383930301 0 +42 27673 42.257383930301 0 +42 27679 42.257543930301 0 +42 27679 42.257543930301 0 +42 27709 42.343993151421 0 +42 27709 42.343993151421 0 +42 27716 42.344153151421 0 +42 27716 42.344153151421 0 +42 27759 42.514557333849 0 +42 27759 42.514557333849 0 +42 27765 42.514717333849 0 +42 27765 42.514717333849 0 +42 27788 42.52439927473 0 +42 27788 42.52439927473 0 +42 27802 42.52455927473 0 +42 27802 42.52455927473 0 +42 27819 42.531276870996 0 +42 27819 42.531276870996 0 +42 27829 42.531436870996 0 +42 27829 42.531436870996 0 +42 27847 42.557383905564 0 +42 27847 42.557383905564 0 +42 27853 42.557543905564 0 +42 27853 42.557543905564 0 +42 27883 42.643993151421 0 +42 27883 42.643993151421 0 +42 27890 42.644153151421 0 +42 27890 42.644153151421 0 +42 27933 42.814557347041 0 +42 27933 42.814557347041 0 +42 27939 42.814717347041 0 +42 27939 42.814717347041 0 +42 27962 42.824399268076 0 +42 27962 42.824399268076 0 +42 27976 42.824559268076 0 +42 27976 42.824559268076 0 +42 27993 42.831276880478 0 +42 27993 42.831276880478 0 +42 28003 42.831436880478 0 +42 28003 42.831436880478 0 +42 28021 42.857383882214 0 +42 28021 42.857383882214 0 +42 28027 42.857543882214 0 +42 28027 42.857543882214 0 +42 28057 42.943993151421 0 +42 28057 42.943993151421 0 +42 28064 42.944153151421 0 +42 28064 42.944153151421 0 +42 28108 43.114557360624 0 +42 28108 43.114557360624 0 +42 28118 43.114717360624 0 +42 28118 43.114717360624 0 +42 28136 43.124399262415 0 +42 28136 43.124399262415 0 +42 28150 43.124559262415 0 +42 28150 43.124559262415 0 +42 28167 43.131276890097 0 +42 28167 43.131276890097 0 +42 28177 43.131436890097 0 +42 28177 43.131436890097 0 +42 28195 43.157383860218 0 +42 28195 43.157383860218 0 +42 28201 43.157543860218 0 +42 28201 43.157543860218 0 +42 28231 43.243993151421 0 +42 28231 43.243993151421 0 +42 28238 43.244153151421 0 +42 28238 43.244153151421 0 +42 28282 43.414557374505 0 +42 28282 43.414557374505 0 +42 28292 43.414717374505 0 +42 28292 43.414717374505 0 +42 28310 43.424399257654 0 +42 28310 43.424399257654 0 +42 28324 43.424559257654 0 +42 28324 43.424559257654 0 +42 28341 43.431276899681 0 +42 28341 43.431276899681 0 +42 28351 43.431436899681 0 +42 28351 43.431436899681 0 +42 28369 43.45738383957 0 +42 28369 43.45738383957 0 +42 28375 43.45754383957 0 +42 28375 43.45754383957 0 +42 28405 43.543993151421 0 +42 28405 43.543993151421 0 +42 28412 43.544153151421 0 +42 28412 43.544153151421 0 +42 28456 43.714557388346 0 +42 28456 43.714557388346 0 +42 28466 43.714717388346 0 +42 28466 43.714717388346 0 +42 28484 43.724399253693 0 +42 28484 43.724399253693 0 +42 28498 43.724559253693 0 +42 28498 43.724559253693 0 +42 28515 43.73127690914 0 +42 28515 43.73127690914 0 +42 28525 43.73143690914 0 +42 28525 43.73143690914 0 +42 28543 43.757383820288 0 +42 28543 43.757383820288 0 +42 28549 43.757543820288 0 +42 28549 43.757543820288 0 +42 28579 43.843993151421 0 +42 28579 43.843993151421 0 +42 28586 43.844153151421 0 +42 28586 43.844153151421 0 +42 28630 44.014557401083 0 +42 28630 44.014557401083 0 +42 28640 44.014717401083 0 +42 28640 44.014717401083 0 +42 28658 44.024399250434 0 +42 28658 44.024399250434 0 +42 28672 44.024559250434 0 +42 28672 44.024559250434 0 +42 28689 44.031276918359 0 +42 28689 44.031276918359 0 +42 28699 44.031436918359 0 +42 28699 44.031436918359 0 +42 28717 44.057383802369 0 +42 28717 44.057383802369 0 +42 28723 44.057543802369 0 +42 28723 44.057543802369 0 +42 28753 44.143993151421 0 +42 28753 44.143993151421 0 +42 28760 44.144153151421 0 +42 28760 44.144153151421 0 +42 28804 44.31455741262 0 +42 28804 44.31455741262 0 +42 28814 44.31471741262 0 +42 28814 44.31471741262 0 +42 28831 44.324399247783 0 +42 28831 44.324399247783 0 +42 28841 44.324559247783 0 +42 28841 44.324559247783 0 +42 28887 44.357383786728 0 +42 28887 44.357383786728 0 +42 28893 44.357543786728 0 +42 28893 44.357543786728 0 +42 28923 44.443993151421 0 +42 28923 44.443993151421 0 +42 28930 44.444153151421 0 +42 28930 44.444153151421 0 +42 28970 44.614557422913 0 +42 28970 44.614557422913 0 +42 28980 44.614717422913 0 +42 28980 44.614717422913 0 +42 28997 44.624399245654 0 +42 28997 44.624399245654 0 +42 29007 44.624559245654 0 +42 29007 44.624559245654 0 +42 29053 44.657383773768 0 +42 29053 44.657383773768 0 +42 29059 44.657543773768 0 +42 29059 44.657543773768 0 +42 29089 44.743993151421 0 +42 29089 44.743993151421 0 +42 29096 44.744153151421 0 +42 29096 44.744153151421 0 +42 29136 44.914557431937 0 +42 29136 44.914557431937 0 +42 29146 44.914717431937 0 +42 29146 44.914717431937 0 +42 29163 44.924399243982 0 +42 29163 44.924399243982 0 +42 29173 44.924559243982 0 +42 29173 44.924559243982 0 +42 29219 44.957383763502 0 +42 29219 44.957383763502 0 +42 29225 44.957543763502 0 +42 29225 44.957543763502 0 +42 29255 45.043993151421 0 +42 29255 45.043993151421 0 +42 29262 45.044153151421 0 +42 29262 45.044153151421 0 +42 29302 45.21455743966 0 +42 29302 45.21455743966 0 +42 29312 45.21471743966 0 +42 29312 45.21471743966 0 +42 29329 45.224399242636 0 +42 29329 45.224399242636 0 +42 29339 45.224559242636 0 +42 29339 45.224559242636 0 +42 29385 45.257383755525 0 +42 29385 45.257383755525 0 +42 29391 45.257543755525 0 +42 29391 45.257543755525 0 +42 29421 45.343993151421 0 +42 29421 45.343993151421 0 +42 29428 45.344153151421 0 +42 29428 45.344153151421 0 +42 29468 45.514557446271 0 +42 29468 45.514557446271 0 +42 29478 45.514717446271 0 +42 29478 45.514717446271 0 +42 29495 45.524399241497 0 +42 29495 45.524399241497 0 +42 29505 45.524559241497 0 +42 29505 45.524559241497 0 +42 29551 45.557383748928 0 +42 29551 45.557383748928 0 +42 29557 45.557543748928 0 +42 29557 45.557543748928 0 +42 29587 45.643993151421 0 +42 29587 45.643993151421 0 +42 29594 45.644153151421 0 +42 29594 45.644153151421 0 +42 29634 45.814557453426 0 +42 29634 45.814557453426 0 +42 29644 45.814717453426 0 +42 29644 45.814717453426 0 +42 29661 45.824399240537 0 +42 29661 45.824399240537 0 +42 29671 45.824559240537 0 +42 29671 45.824559240537 0 +42 29717 45.857383742284 0 +42 29717 45.857383742284 0 +42 29723 45.857543742284 0 +42 29723 45.857543742284 0 +42 29753 45.943993151421 0 +42 29753 45.943993151421 0 +42 29760 45.944153151421 0 +42 29760 45.944153151421 0 +42 29800 46.11455746131 0 +42 29800 46.11455746131 0 +42 29810 46.11471746131 0 +42 29810 46.11471746131 0 +42 29827 46.124399236922 0 +42 29827 46.124399236922 0 +42 29837 46.124559236922 0 +42 29837 46.124559236922 0 +42 29883 46.157383734922 0 +42 29883 46.157383734922 0 +42 29889 46.157543734922 0 +42 29889 46.157543734922 0 +42 29919 46.243993151421 0 +42 29919 46.243993151421 0 +42 29926 46.244153151421 0 +42 29926 46.244153151421 0 +42 29966 46.414557469463 0 +42 29966 46.414557469463 0 +42 29976 46.414717469463 0 +42 29976 46.414717469463 0 +42 29993 46.424399227691 0 +42 29993 46.424399227691 0 +42 30003 46.424559227691 0 +42 30003 46.424559227691 0 +42 30049 46.457383726677 0 +42 30049 46.457383726677 0 +42 30055 46.457543726677 0 +42 30055 46.457543726677 0 +42 30085 46.543993151421 0 +42 30085 46.543993151421 0 +42 30092 46.544153151421 0 +42 30092 46.544153151421 0 +42 30132 46.7145574756 0 +42 30132 46.7145574756 0 +42 30142 46.7147174756 0 +42 30142 46.7147174756 0 +42 30159 46.724399216308 0 +42 30159 46.724399216308 0 +42 30169 46.724559216308 0 +42 30169 46.724559216308 0 +42 30215 46.757383717477 0 +42 30215 46.757383717477 0 +42 30221 46.757543717477 0 +42 30221 46.757543717477 0 +42 30251 46.843993151421 0 +42 30251 46.843993151421 0 +42 30258 46.844153151421 0 +42 30258 46.844153151421 0 +42 30298 47.014557477752 0 +42 30298 47.014557477752 0 +42 30308 47.014717477752 0 +42 30308 47.014717477752 0 +42 30325 47.024399204936 0 +42 30325 47.024399204936 0 +42 30335 47.024559204936 0 +42 30335 47.024559204936 0 +42 30381 47.057383707399 0 +42 30381 47.057383707399 0 +42 30387 47.057543707399 0 +42 30387 47.057543707399 0 +42 30417 47.143993151421 0 +42 30417 47.143993151421 0 +42 30424 47.144153151421 0 +42 30424 47.144153151421 0 +42 30464 47.31455747801 0 +42 30464 47.31455747801 0 +42 30474 47.31471747801 0 +42 30474 47.31471747801 0 +42 30491 47.324399193637 0 +42 30491 47.324399193637 0 +42 30501 47.324559193637 0 +42 30501 47.324559193637 0 +42 30547 47.357383698008 0 +42 30547 47.357383698008 0 +42 30553 47.357543698008 0 +42 30553 47.357543698008 0 +42 30583 47.443993151421 0 +42 30583 47.443993151421 0 +42 30590 47.444153151421 0 +42 30590 47.444153151421 0 +42 30630 47.614557478274 0 +42 30630 47.614557478274 0 +42 30640 47.614717478274 0 +42 30640 47.614717478274 0 +42 30657 47.62439918244 0 +42 30657 47.62439918244 0 +42 30667 47.62455918244 0 +42 30667 47.62455918244 0 +42 30713 47.657383697458 0 +42 30713 47.657383697458 0 +42 30719 47.657543697458 0 +42 30719 47.657543697458 0 +42 30749 47.743993151421 0 +42 30749 47.743993151421 0 +42 30756 47.744153151421 0 +42 30756 47.744153151421 0 +42 30796 47.914557478544 0 +42 30796 47.914557478544 0 +42 30806 47.914717478544 0 +42 30806 47.914717478544 0 +42 30822 47.92439917133 0 +42 30822 47.92439917133 0 +42 30828 47.92455917133 0 +42 30828 47.92455917133 0 +42 30879 47.957383708789 0 +42 30879 47.957383708789 0 +42 30885 47.957543708789 0 +42 30885 47.957543708789 0 +42 30915 48.043993151421 0 +42 30915 48.043993151421 0 +42 30922 48.044153151421 0 +42 30922 48.044153151421 0 +42 30962 48.214557477888 0 +42 30962 48.214557477888 0 +42 30972 48.214717477888 0 +42 30972 48.214717477888 0 +42 30988 48.224399161344 0 +42 30988 48.224399161344 0 +42 30994 48.224559161344 0 +42 30994 48.224559161344 0 +42 31045 48.257383722862 0 +42 31045 48.257383722862 0 +42 31051 48.257543722862 0 +42 31051 48.257543722862 0 +42 31081 48.343993151421 0 +42 31081 48.343993151421 0 +42 31088 48.344153151421 0 +42 31088 48.344153151421 0 +42 31127 48.514557476625 0 +42 31127 48.514557476625 0 +42 31133 48.514717476625 0 +42 31133 48.514717476625 0 +42 31154 48.524399152109 0 +42 31154 48.524399152109 0 +42 31160 48.524559152109 0 +42 31160 48.524559152109 0 +42 31211 48.557383738369 0 +42 31211 48.557383738369 0 +42 31217 48.557543738369 0 +42 31217 48.557543738369 0 +42 31247 48.643993151421 0 +42 31247 48.643993151421 0 +42 31254 48.644153151421 0 +42 31254 48.644153151421 0 +42 31293 48.814557474634 0 +42 31293 48.814557474634 0 +42 31299 48.814717474634 0 +42 31299 48.814717474634 0 +42 31320 48.824399143836 0 +42 31320 48.824399143836 0 +42 31326 48.824559143836 0 +42 31326 48.824559143836 0 +42 31377 48.857383754702 0 +42 31377 48.857383754702 0 +42 31383 48.857543754702 0 +42 31383 48.857543754702 0 +42 31413 48.943993151421 0 +42 31413 48.943993151421 0 +42 31420 48.944153151421 0 +42 31420 48.944153151421 0 +42 31459 49.11455747139 0 +42 31459 49.11455747139 0 +42 31465 49.11471747139 0 +42 31465 49.11471747139 0 +42 31486 49.124399137291 0 +42 31486 49.124399137291 0 +42 31492 49.124559137291 0 +42 31492 49.124559137291 0 +42 31543 49.157383770654 0 +42 31543 49.157383770654 0 +42 31549 49.157543770654 0 +42 31549 49.157543770654 0 +42 31579 49.243993151421 0 +42 31579 49.243993151421 0 +42 31586 49.244153151421 0 +42 31586 49.244153151421 0 +42 31625 49.414557467632 0 +42 31625 49.414557467632 0 +42 31631 49.414717467632 0 +42 31631 49.414717467632 0 +42 31652 49.424399131732 0 +42 31652 49.424399131732 0 +42 31658 49.424559131732 0 +42 31658 49.424559131732 0 +42 31709 49.457383786041 0 +42 31709 49.457383786041 0 +42 31715 49.457543786041 0 +42 31715 49.457543786041 0 +42 31745 49.543993151421 0 +42 31745 49.543993151421 0 +42 31752 49.544153151421 0 +42 31752 49.544153151421 0 +42 31791 49.71455746338 0 +42 31791 49.71455746338 0 +42 31797 49.71471746338 0 +42 31797 49.71471746338 0 +42 31819 49.724399127231 0 +42 31819 49.724399127231 0 +42 31829 49.724559127231 0 +42 31829 49.724559127231 0 +42 31875 49.757383800762 0 +42 31875 49.757383800762 0 +42 31881 49.757543800762 0 +42 31881 49.757543800762 0 +42 31911 49.843993151421 0 +42 31911 49.843993151421 0 +42 31918 49.844153151421 0 +42 31918 49.844153151421 0 +42 31957 50.014557459048 0 +42 31957 50.014557459048 0 +42 31963 50.014717459048 0 +42 31963 50.014717459048 0 +42 31985 50.024399123312 0 +42 31985 50.024399123312 0 +42 31995 50.024559123312 0 +42 31995 50.024559123312 0 +42 32041 50.057383815148 0 +42 32041 50.057383815148 0 +42 32047 50.057543815148 0 +42 32047 50.057543815148 0 +42 32077 50.143993151421 0 +42 32077 50.143993151421 0 +42 32084 50.144153151421 0 +42 32084 50.144153151421 0 +42 32123 50.314557454631 0 +42 32123 50.314557454631 0 +42 32129 50.314717454631 0 +42 32129 50.314717454631 0 +42 32151 50.324399119987 0 +42 32151 50.324399119987 0 +42 32161 50.324559119987 0 +42 32161 50.324559119987 0 +42 32207 50.357383829549 0 +42 32207 50.357383829549 0 +42 32213 50.357543829549 0 +42 32213 50.357543829549 0 +42 32243 50.443993151421 0 +42 32243 50.443993151421 0 +42 32250 50.444153151421 0 +42 32250 50.444153151421 0 +42 32289 50.614557450054 0 +42 32289 50.614557450054 0 +42 32295 50.614717450054 0 +42 32295 50.614717450054 0 +42 32317 50.624399117227 0 +42 32317 50.624399117227 0 +42 32327 50.624559117227 0 +42 32327 50.624559117227 0 +42 32373 50.657383844282 0 +42 32373 50.657383844282 0 +42 32379 50.657543844282 0 +42 32379 50.657543844282 0 +42 32409 50.743993151421 0 +42 32409 50.743993151421 0 +42 32416 50.744153151421 0 +42 32416 50.744153151421 0 +42 32455 50.914557445285 0 +42 32455 50.914557445285 0 +42 32461 50.914717445285 0 +42 32461 50.914717445285 0 +42 32483 50.924399115103 0 +42 32483 50.924399115103 0 +42 32493 50.924559115103 0 +42 32493 50.924559115103 0 +42 32539 50.957383859315 0 +42 32539 50.957383859315 0 +42 32545 50.957543859315 0 +42 32545 50.957543859315 0 +42 32575 51.043993151421 0 +42 32575 51.043993151421 0 +42 32582 51.044153151421 0 +42 32582 51.044153151421 0 +42 32621 51.21455744041 0 +42 32621 51.21455744041 0 +42 32627 51.21471744041 0 +42 32627 51.21471744041 0 +42 32645 51.224399113583 0 +42 32645 51.224399113583 0 +42 32655 51.224559113583 0 +42 32655 51.224559113583 0 +42 32701 51.257383874742 0 +42 32701 51.257383874742 0 +42 32707 51.257543874742 0 +42 32707 51.257543874742 0 +42 32733 51.343993151421 0 +42 32733 51.343993151421 0 +42 32740 51.344153151421 0 +42 32740 51.344153151421 0 +42 32779 51.514557435458 0 +42 32779 51.514557435458 0 +42 32785 51.514717435458 0 +42 32785 51.514717435458 0 +42 32803 51.524399112627 0 +42 32803 51.524399112627 0 +42 32813 51.524559112627 0 +42 32813 51.524559112627 0 +42 32863 51.557383890499 0 +42 32863 51.557383890499 0 +42 32869 51.557543890499 0 +42 32869 51.557543890499 0 +42 32899 51.643993151421 0 +42 32899 51.643993151421 0 +42 32906 51.644153151421 0 +42 32906 51.644153151421 0 +42 32945 51.814557430365 0 +42 32945 51.814557430365 0 +42 32951 51.814717430365 0 +42 32951 51.814717430365 0 +42 32969 51.824399112353 0 +42 32969 51.824399112353 0 +42 32979 51.824559112353 0 +42 32979 51.824559112353 0 +42 33029 51.857383906635 0 +42 33029 51.857383906635 0 +42 33035 51.857543906635 0 +42 33035 51.857543906635 0 +42 33065 51.943993151421 0 +42 33065 51.943993151421 0 +42 33072 51.944153151421 0 +42 33072 51.944153151421 0 +42 33111 52.114557425224 0 +42 33111 52.114557425224 0 +42 33117 52.114717425224 0 +42 33117 52.114717425224 0 +42 33135 52.124399112693 0 +42 33135 52.124399112693 0 +42 33145 52.124559112693 0 +42 33145 52.124559112693 0 +42 33195 52.157383923181 0 +42 33195 52.157383923181 0 +42 33201 52.157543923181 0 +42 33201 52.157543923181 0 +42 33231 52.243993151421 0 +42 33231 52.243993151421 0 +42 33238 52.244153151421 0 +42 33238 52.244153151421 0 +42 33277 52.414557420182 0 +42 33277 52.414557420182 0 +42 33283 52.414717420182 0 +42 33283 52.414717420182 0 +42 33301 52.424399113556 0 +42 33301 52.424399113556 0 +42 33311 52.424559113556 0 +42 33311 52.424559113556 0 +42 33361 52.457383940072 0 +42 33361 52.457383940072 0 +42 33367 52.457543940072 0 +42 33367 52.457543940072 0 +42 33397 52.543993151421 0 +42 33397 52.543993151421 0 +42 33404 52.544153151421 0 +42 33404 52.544153151421 0 +42 33443 52.714557415208 0 +42 33443 52.714557415208 0 +42 33449 52.714717415208 0 +42 33449 52.714717415208 0 +42 33467 52.724399114954 0 +42 33467 52.724399114954 0 +42 33477 52.724559114954 0 +42 33477 52.724559114954 0 +42 33527 52.757383957286 0 +42 33527 52.757383957286 0 +42 33533 52.757543957286 0 +42 33533 52.757543957286 0 +42 33563 52.843993151421 0 +42 33563 52.843993151421 0 +42 33570 52.844153151421 0 +42 33570 52.844153151421 0 +42 33609 53.014557410369 0 +42 33609 53.014557410369 0 +42 33615 53.014717410369 0 +42 33615 53.014717410369 0 +42 33633 53.024399116886 0 +42 33633 53.024399116886 0 +42 33643 53.024559116886 0 +42 33643 53.024559116886 0 +42 33693 53.057383974792 0 +42 33693 53.057383974792 0 +42 33699 53.057543974792 0 +42 33699 53.057543974792 0 +42 33729 53.143993151421 0 +42 33729 53.143993151421 0 +42 33736 53.144153151421 0 +42 33736 53.144153151421 0 +42 33775 53.32439911934 0 +42 33775 53.32439911934 0 +42 33784 53.32455911934 0 +42 33784 53.32455911934 0 +42 33830 53.357383991743 0 +42 33830 53.357383991743 0 +42 33835 53.357543991743 0 +42 33835 53.357543991743 0 +42 33863 53.443993151421 0 +42 33863 53.443993151421 0 +42 33869 53.444153151421 0 +42 33869 53.444153151421 0 +42 33902 53.624399122413 0 +42 33902 53.624399122413 0 +42 33911 53.624559122413 0 +42 33911 53.624559122413 0 +42 33957 53.657384007982 0 +42 33957 53.657384007982 0 +42 33962 53.657544007982 0 +42 33962 53.657544007982 0 +42 33990 53.743993151421 0 +42 33990 53.743993151421 0 +42 33996 53.744153151421 0 +42 33996 53.744153151421 0 +42 34029 53.924399125883 0 +42 34029 53.924399125883 0 +42 34038 53.924559125883 0 +42 34038 53.924559125883 0 +42 34084 53.957384023455 0 +42 34084 53.957384023455 0 +42 34089 53.957544023455 0 +42 34089 53.957544023455 0 +42 34117 54.043993151421 0 +42 34117 54.043993151421 0 +42 34123 54.044153151421 0 +42 34123 54.044153151421 0 +42 34156 54.224399129356 0 +42 34156 54.224399129356 0 +42 34165 54.224559129356 0 +42 34165 54.224559129356 0 +42 34211 54.257384037982 0 +42 34211 54.257384037982 0 +42 34216 54.257544037982 0 +42 34216 54.257544037982 0 +42 34244 54.343993151421 0 +42 34244 54.343993151421 0 +42 34250 54.344153151421 0 +42 34250 54.344153151421 0 +42 34283 54.524399132878 0 +42 34283 54.524399132878 0 +42 34292 54.524559132878 0 +42 34292 54.524559132878 0 +42 34338 54.557384051792 0 +42 34338 54.557384051792 0 +42 34343 54.557544051792 0 +42 34343 54.557544051792 0 +42 34371 54.643993151421 0 +42 34371 54.643993151421 0 +42 34377 54.644153151421 0 +42 34377 54.644153151421 0 +42 34410 54.824399136418 0 +42 34410 54.824399136418 0 +42 34419 54.824559136418 0 +42 34419 54.824559136418 0 +42 34465 54.857384066271 0 +42 34465 54.857384066271 0 +42 34470 54.857544066271 0 +42 34470 54.857544066271 0 +42 34498 54.943993151421 0 +42 34498 54.943993151421 0 +42 34504 54.944153151421 0 +42 34504 54.944153151421 0 +42 34537 55.124399139869 0 +42 34537 55.124399139869 0 +42 34546 55.124559139869 0 +42 34546 55.124559139869 0 +42 34592 55.157384081514 0 +42 34592 55.157384081514 0 +42 34597 55.157544081514 0 +42 34597 55.157544081514 0 +42 34625 55.243993151421 0 +42 34625 55.243993151421 0 +42 34631 55.244153151421 0 +42 34631 55.244153151421 0 +42 34664 55.424399143329 0 +42 34664 55.424399143329 0 +42 34673 55.424559143329 0 +42 34673 55.424559143329 0 +42 34719 55.457384097382 0 +42 34719 55.457384097382 0 +42 34724 55.457544097382 0 +42 34724 55.457544097382 0 +42 34752 55.543993151421 0 +42 34752 55.543993151421 0 +42 34758 55.544153151421 0 +42 34758 55.544153151421 0 +42 34791 55.724399146854 0 +42 34791 55.724399146854 0 +42 34800 55.724559146854 0 +42 34800 55.724559146854 0 +42 34846 55.757384113825 0 +42 34846 55.757384113825 0 +42 34851 55.757544113825 0 +42 34851 55.757544113825 0 +42 34879 55.843993151421 0 +42 34879 55.843993151421 0 +42 34885 55.844153151421 0 +42 34885 55.844153151421 0 +42 34918 56.024399150367 0 +42 34918 56.024399150367 0 +42 34927 56.024559150367 0 +42 34927 56.024559150367 0 +42 34973 56.057384130858 0 +42 34973 56.057384130858 0 +42 34978 56.057544130858 0 +42 34978 56.057544130858 0 +42 35006 56.143993151421 0 +42 35006 56.143993151421 0 +42 35012 56.144153151421 0 +42 35012 56.144153151421 0 +42 35045 56.324399153849 0 +42 35045 56.324399153849 0 +42 35054 56.324559153849 0 +42 35054 56.324559153849 0 +42 35101 56.357384148407 0 +42 35101 56.357384148407 0 +42 35110 56.357544148407 0 +42 35110 56.357544148407 0 +42 35133 56.443993151421 0 +42 35133 56.443993151421 0 +42 35139 56.444153151421 0 +42 35139 56.444153151421 0 +43 356 4.1 0 +43 356 4.1 0 +43 396 4.131276647939 0 +43 396 4.131276647939 0 +43 401 4.131436647939 0 +43 401 4.131436647939 0 +43 493 4.43127664842 0 +43 493 4.43127664842 0 +43 498 4.43143664842 0 +43 498 4.43143664842 0 +43 552 4.543993151421 0 +43 552 4.543993151421 0 +43 558 4.544153151421 0 +43 558 4.544153151421 0 +43 612 4.731276648452 0 +43 612 4.731276648452 0 +43 617 4.731436648452 0 +43 617 4.731436648452 0 +43 671 4.843993151421 0 +43 671 4.843993151421 0 +43 677 4.844153151421 0 +43 677 4.844153151421 0 +43 731 5.031276648071 0 +43 731 5.031276648071 0 +43 736 5.031436648071 0 +43 736 5.031436648071 0 +43 791 5.143993151421 0 +43 791 5.143993151421 0 +43 798 5.144153151421 0 +43 798 5.144153151421 0 +43 861 5.331276647275 0 +43 861 5.331276647275 0 +43 867 5.331436647275 0 +43 867 5.331436647275 0 +43 925 5.443993151421 0 +43 925 5.443993151421 0 +43 932 5.444153151421 0 +43 932 5.444153151421 0 +43 995 5.631276646135 0 +43 995 5.631276646135 0 +43 1001 5.631436646135 0 +43 1001 5.631436646135 0 +43 1055 5.693585836534 0 +43 1055 5.693585836534 0 +43 1061 5.693745836534 0 +43 1061 5.693745836534 0 +43 1083 5.743993151421 0 +43 1083 5.743993151421 0 +43 1090 5.744153151421 0 +43 1090 5.744153151421 0 +43 1153 5.931276644725 0 +43 1153 5.931276644725 0 +43 1159 5.931436644725 0 +43 1159 5.931436644725 0 +43 1213 5.993585836591 0 +43 1213 5.993585836591 0 +43 1219 5.993745836591 0 +43 1219 5.993745836591 0 +43 1241 6.043993151421 0 +43 1241 6.043993151421 0 +43 1248 6.044153151421 0 +43 1248 6.044153151421 0 +43 1320 6.231276643012 0 +43 1320 6.231276643012 0 +43 1331 6.231436643012 0 +43 1331 6.231436643012 0 +43 1391 6.293585836659 0 +43 1391 6.293585836659 0 +43 1398 6.293745836659 0 +43 1398 6.293745836659 0 +43 1422 6.343993151421 0 +43 1422 6.343993151421 0 +43 1430 6.344153151421 0 +43 1430 6.344153151421 0 +43 1536 6.531276640981 0 +43 1536 6.531276640981 0 +43 1547 6.531436640981 0 +43 1547 6.531436640981 0 +43 1608 6.593585836741 0 +43 1608 6.593585836741 0 +43 1615 6.593745836741 0 +43 1615 6.593745836741 0 +43 1639 6.643993151421 0 +43 1639 6.643993151421 0 +43 1647 6.644153151421 0 +43 1647 6.644153151421 0 +43 1753 6.83127663868 0 +43 1753 6.83127663868 0 +43 1764 6.83143663868 0 +43 1764 6.83143663868 0 +43 1825 6.893585836836 0 +43 1825 6.893585836836 0 +43 1832 6.893745836836 0 +43 1832 6.893745836836 0 +43 1856 6.943993151421 0 +43 1856 6.943993151421 0 +43 1864 6.944153151421 0 +43 1864 6.944153151421 0 +43 1970 7.131276636128 0 +43 1970 7.131276636128 0 +43 1981 7.131436636128 0 +43 1981 7.131436636128 0 +43 2042 7.193585836946 0 +43 2042 7.193585836946 0 +43 2049 7.193745836946 0 +43 2049 7.193745836946 0 +43 2073 7.243993151421 0 +43 2073 7.243993151421 0 +43 2081 7.244153151421 0 +43 2081 7.244153151421 0 +43 2187 7.431276633301 0 +43 2187 7.431276633301 0 +43 2198 7.431436633301 0 +43 2198 7.431436633301 0 +43 2259 7.493585837077 0 +43 2259 7.493585837077 0 +43 2266 7.493745837077 0 +43 2266 7.493745837077 0 +43 2290 7.543993151421 0 +43 2290 7.543993151421 0 +43 2298 7.544153151421 0 +43 2298 7.544153151421 0 +43 2404 7.73127663025 0 +43 2404 7.73127663025 0 +43 2415 7.73143663025 0 +43 2415 7.73143663025 0 +43 2476 7.79358583722 0 +43 2476 7.79358583722 0 +43 2483 7.79374583722 0 +43 2483 7.79374583722 0 +43 2507 7.843993151421 0 +43 2507 7.843993151421 0 +43 2515 7.844153151421 0 +43 2515 7.844153151421 0 +43 2589 8.024399341429 0 +43 2589 8.024399341429 0 +43 2608 8.024559341429 0 +43 2608 8.024559341429 0 +43 2622 8.031276627008 0 +43 2622 8.031276627008 0 +43 2637 8.031436627008 0 +43 2637 8.031436627008 0 +43 2693 8.093585837381 0 +43 2693 8.093585837381 0 +43 2700 8.093745837381 0 +43 2700 8.093745837381 0 +43 2724 8.143993151421 0 +43 2724 8.143993151421 0 +43 2732 8.144153151421 0 +43 2732 8.144153151421 0 +43 2806 8.324399339726 0 +43 2806 8.324399339726 0 +43 2825 8.324559339726 0 +43 2825 8.324559339726 0 +43 2843 8.331276623516 0 +43 2843 8.331276623516 0 +43 2858 8.331436623516 0 +43 2858 8.331436623516 0 +43 2914 8.393585837564 0 +43 2914 8.393585837564 0 +43 2921 8.393745837564 0 +43 2921 8.393745837564 0 +43 2945 8.443993151421 0 +43 2945 8.443993151421 0 +43 2953 8.444153151421 0 +43 2953 8.444153151421 0 +43 3031 8.624399337937 0 +43 3031 8.624399337937 0 +43 3050 8.624559337937 0 +43 3050 8.624559337937 0 +43 3068 8.631276619892 0 +43 3068 8.631276619892 0 +43 3083 8.631436619892 0 +43 3083 8.631436619892 0 +43 3139 8.693585837758 0 +43 3139 8.693585837758 0 +43 3146 8.693745837758 0 +43 3146 8.693745837758 0 +43 3170 8.743993151421 0 +43 3170 8.743993151421 0 +43 3178 8.744153151421 0 +43 3178 8.744153151421 0 +43 3256 8.924399336079 0 +43 3256 8.924399336079 0 +43 3275 8.924559336079 0 +43 3275 8.924559336079 0 +43 3293 8.931276616157 0 +43 3293 8.931276616157 0 +43 3308 8.931436616157 0 +43 3308 8.931436616157 0 +43 3364 8.993585837958 0 +43 3364 8.993585837958 0 +43 3371 8.993745837958 0 +43 3371 8.993745837958 0 +43 3395 9.043993151421 0 +43 3395 9.043993151421 0 +43 3403 9.044153151421 0 +43 3403 9.044153151421 0 +43 3481 9.2243993342 0 +43 3481 9.2243993342 0 +43 3500 9.2245593342 0 +43 3500 9.2245593342 0 +43 3518 9.231276612299 0 +43 3518 9.231276612299 0 +43 3533 9.231436612299 0 +43 3533 9.231436612299 0 +43 3589 9.293585838174 0 +43 3589 9.293585838174 0 +43 3596 9.293745838174 0 +43 3596 9.293745838174 0 +43 3620 9.343993151421 0 +43 3620 9.343993151421 0 +43 3628 9.344153151421 0 +43 3628 9.344153151421 0 +43 3706 9.524399332304 0 +43 3706 9.524399332304 0 +43 3725 9.524559332304 0 +43 3725 9.524559332304 0 +43 3743 9.531276608424 0 +43 3743 9.531276608424 0 +43 3758 9.531436608424 0 +43 3758 9.531436608424 0 +43 3814 9.593585838387 0 +43 3814 9.593585838387 0 +43 3821 9.593745838387 0 +43 3821 9.593745838387 0 +43 3845 9.643993151421 0 +43 3845 9.643993151421 0 +43 3853 9.644153151421 0 +43 3853 9.644153151421 0 +43 3931 9.824399330432 0 +43 3931 9.824399330432 0 +43 3950 9.824559330432 0 +43 3950 9.824559330432 0 +43 3968 9.831276604546 0 +43 3968 9.831276604546 0 +43 3983 9.831436604546 0 +43 3983 9.831436604546 0 +43 4039 9.89358583861 0 +43 4039 9.89358583861 0 +43 4046 9.89374583861 0 +43 4046 9.89374583861 0 +43 4070 9.943993151421 0 +43 4070 9.943993151421 0 +43 4078 9.944153151421 0 +43 4078 9.944153151421 0 +43 4156 10.124399328574 0 +43 4156 10.124399328574 0 +43 4175 10.124559328574 0 +43 4175 10.124559328574 0 +43 4193 10.13127660067 0 +43 4193 10.13127660067 0 +43 4208 10.13143660067 0 +43 4208 10.13143660067 0 +43 4264 10.193585838842 0 +43 4264 10.193585838842 0 +43 4271 10.193745838842 0 +43 4271 10.193745838842 0 +43 4295 10.243993151421 0 +43 4295 10.243993151421 0 +43 4303 10.244153151421 0 +43 4303 10.244153151421 0 +43 4381 10.424399326766 0 +43 4381 10.424399326766 0 +43 4400 10.424559326766 0 +43 4400 10.424559326766 0 +43 4418 10.43127659687 0 +43 4418 10.43127659687 0 +43 4433 10.43143659687 0 +43 4433 10.43143659687 0 +43 4489 10.493585839083 0 +43 4489 10.493585839083 0 +43 4496 10.493745839083 0 +43 4496 10.493745839083 0 +43 4520 10.543993151421 0 +43 4520 10.543993151421 0 +43 4528 10.544153151421 0 +43 4528 10.544153151421 0 +43 4577 10.714557554278 0 +43 4577 10.714557554278 0 +43 4596 10.714717554278 0 +43 4596 10.714717554278 0 +43 4614 10.724399325082 0 +43 4614 10.724399325082 0 +43 4633 10.724559325082 0 +43 4633 10.724559325082 0 +43 4651 10.731276593222 0 +43 4651 10.731276593222 0 +43 4666 10.731436593222 0 +43 4666 10.731436593222 0 +43 4722 10.793585839325 0 +43 4722 10.793585839325 0 +43 4729 10.793745839325 0 +43 4729 10.793745839325 0 +43 4753 10.843993151421 0 +43 4753 10.843993151421 0 +43 4761 10.844153151421 0 +43 4761 10.844153151421 0 +43 4810 11.014557537855 0 +43 4810 11.014557537855 0 +43 4829 11.014717537855 0 +43 4829 11.014717537855 0 +43 4847 11.0243993239 0 +43 4847 11.0243993239 0 +43 4866 11.0245593239 0 +43 4866 11.0245593239 0 +43 4884 11.031276590451 0 +43 4884 11.031276590451 0 +43 4899 11.031436590451 0 +43 4899 11.031436590451 0 +43 4955 11.093585839276 0 +43 4955 11.093585839276 0 +43 4962 11.093745839276 0 +43 4962 11.093745839276 0 +43 4986 11.143993151421 0 +43 4986 11.143993151421 0 +43 4994 11.144153151421 0 +43 4994 11.144153151421 0 +43 5043 11.314557521994 0 +43 5043 11.314557521994 0 +43 5062 11.314717521994 0 +43 5062 11.314717521994 0 +43 5080 11.324399323363 0 +43 5080 11.324399323363 0 +43 5099 11.324559323363 0 +43 5099 11.324559323363 0 +43 5117 11.331276588755 0 +43 5117 11.331276588755 0 +43 5132 11.331436588755 0 +43 5132 11.331436588755 0 +43 5188 11.39358583882 0 +43 5188 11.39358583882 0 +43 5195 11.39374583882 0 +43 5195 11.39374583882 0 +43 5219 11.443993151421 0 +43 5219 11.443993151421 0 +43 5227 11.444153151421 0 +43 5227 11.444153151421 0 +43 5276 11.614557506596 0 +43 5276 11.614557506596 0 +43 5295 11.614717506596 0 +43 5295 11.614717506596 0 +43 5313 11.624399323354 0 +43 5313 11.624399323354 0 +43 5332 11.624559323354 0 +43 5332 11.624559323354 0 +43 5350 11.631276587986 0 +43 5350 11.631276587986 0 +43 5365 11.631436587986 0 +43 5365 11.631436587986 0 +43 5425 11.69358583807 0 +43 5425 11.69358583807 0 +43 5432 11.69374583807 0 +43 5432 11.69374583807 0 +43 5460 11.743993151421 0 +43 5460 11.743993151421 0 +43 5468 11.744153151421 0 +43 5468 11.744153151421 0 +43 5517 11.914557491616 0 +43 5517 11.914557491616 0 +43 5536 11.914717491616 0 +43 5536 11.914717491616 0 +43 5554 11.924399323823 0 +43 5554 11.924399323823 0 +43 5573 11.924559323823 0 +43 5573 11.924559323823 0 +43 5591 11.93127658806 0 +43 5591 11.93127658806 0 +43 5606 11.93143658806 0 +43 5606 11.93143658806 0 +43 5666 11.993585837216 0 +43 5666 11.993585837216 0 +43 5673 11.993745837216 0 +43 5673 11.993745837216 0 +43 5701 12.043993151421 0 +43 5701 12.043993151421 0 +43 5709 12.044153151421 0 +43 5709 12.044153151421 0 +43 5758 12.21455747694 0 +43 5758 12.21455747694 0 +43 5777 12.21471747694 0 +43 5777 12.21471747694 0 +43 5795 12.224399324626 0 +43 5795 12.224399324626 0 +43 5814 12.224559324626 0 +43 5814 12.224559324626 0 +43 5832 12.231276588692 0 +43 5832 12.231276588692 0 +43 5847 12.231436588692 0 +43 5847 12.231436588692 0 +43 5907 12.293585836586 0 +43 5907 12.293585836586 0 +43 5914 12.293745836586 0 +43 5914 12.293745836586 0 +43 5942 12.343993151421 0 +43 5942 12.343993151421 0 +43 5950 12.344153151421 0 +43 5950 12.344153151421 0 +43 5999 12.514557462306 0 +43 5999 12.514557462306 0 +43 6018 12.514717462306 0 +43 6018 12.514717462306 0 +43 6036 12.524399325429 0 +43 6036 12.524399325429 0 +43 6055 12.524559325429 0 +43 6055 12.524559325429 0 +43 6073 12.531276589365 0 +43 6073 12.531276589365 0 +43 6088 12.531436589365 0 +43 6088 12.531436589365 0 +43 6148 12.593585836449 0 +43 6148 12.593585836449 0 +43 6155 12.593745836449 0 +43 6155 12.593745836449 0 +43 6183 12.643993151421 0 +43 6183 12.643993151421 0 +43 6191 12.644153151421 0 +43 6191 12.644153151421 0 +43 6240 12.814557447681 0 +43 6240 12.814557447681 0 +43 6259 12.814717447681 0 +43 6259 12.814717447681 0 +43 6277 12.824399326242 0 +43 6277 12.824399326242 0 +43 6296 12.824559326242 0 +43 6296 12.824559326242 0 +43 6314 12.831276590037 0 +43 6314 12.831276590037 0 +43 6329 12.831436590037 0 +43 6329 12.831436590037 0 +43 6389 12.893585836843 0 +43 6389 12.893585836843 0 +43 6396 12.893745836843 0 +43 6396 12.893745836843 0 +43 6424 12.943993151421 0 +43 6424 12.943993151421 0 +43 6432 12.944153151421 0 +43 6432 12.944153151421 0 +43 6481 13.114557433023 0 +43 6481 13.114557433023 0 +43 6500 13.114717433023 0 +43 6500 13.114717433023 0 +43 6518 13.12439932705 0 +43 6518 13.12439932705 0 +43 6537 13.12455932705 0 +43 6537 13.12455932705 0 +43 6555 13.131276590725 0 +43 6555 13.131276590725 0 +43 6570 13.131436590725 0 +43 6570 13.131436590725 0 +43 6630 13.193585837765 0 +43 6630 13.193585837765 0 +43 6637 13.193745837765 0 +43 6637 13.193745837765 0 +43 6665 13.243993151421 0 +43 6665 13.243993151421 0 +43 6673 13.244153151421 0 +43 6673 13.244153151421 0 +43 6722 13.414557418408 0 +43 6722 13.414557418408 0 +43 6741 13.414717418408 0 +43 6741 13.414717418408 0 +43 6759 13.424399327873 0 +43 6759 13.424399327873 0 +43 6778 13.424559327873 0 +43 6778 13.424559327873 0 +43 6796 13.431276591403 0 +43 6796 13.431276591403 0 +43 6811 13.431436591403 0 +43 6811 13.431436591403 0 +43 6871 13.493585839212 0 +43 6871 13.493585839212 0 +43 6878 13.493745839212 0 +43 6878 13.493745839212 0 +43 6906 13.543993151421 0 +43 6906 13.543993151421 0 +43 6914 13.544153151421 0 +43 6914 13.544153151421 0 +43 6963 13.71455740379 0 +43 6963 13.71455740379 0 +43 6982 13.71471740379 0 +43 6982 13.71471740379 0 +43 7000 13.724399328697 0 +43 7000 13.724399328697 0 +43 7019 13.724559328697 0 +43 7019 13.724559328697 0 +43 7037 13.731276592089 0 +43 7037 13.731276592089 0 +43 7052 13.731436592089 0 +43 7052 13.731436592089 0 +43 7112 13.793585841175 0 +43 7112 13.793585841175 0 +43 7119 13.793745841175 0 +43 7119 13.793745841175 0 +43 7147 13.843993151421 0 +43 7147 13.843993151421 0 +43 7155 13.844153151421 0 +43 7155 13.844153151421 0 +43 7203 14.014557389119 0 +43 7203 14.014557389119 0 +43 7218 14.014717389119 0 +43 7218 14.014717389119 0 +43 7241 14.024399329512 0 +43 7241 14.024399329512 0 +43 7260 14.024559329512 0 +43 7260 14.024559329512 0 +43 7278 14.031276592779 0 +43 7278 14.031276592779 0 +43 7293 14.031436592779 0 +43 7293 14.031436592779 0 +43 7353 14.093585843644 0 +43 7353 14.093585843644 0 +43 7360 14.093745843644 0 +43 7360 14.093745843644 0 +43 7388 14.143993151421 0 +43 7388 14.143993151421 0 +43 7396 14.144153151421 0 +43 7396 14.144153151421 0 +43 7444 14.314557374493 0 +43 7444 14.314557374493 0 +43 7459 14.314717374493 0 +43 7459 14.314717374493 0 +43 7482 14.324399330335 0 +43 7482 14.324399330335 0 +43 7501 14.324559330335 0 +43 7501 14.324559330335 0 +43 7519 14.33127659346 0 +43 7519 14.33127659346 0 +43 7534 14.33143659346 0 +43 7534 14.33143659346 0 +43 7594 14.393585846603 0 +43 7594 14.393585846603 0 +43 7601 14.393745846603 0 +43 7601 14.393745846603 0 +43 7629 14.443993151421 0 +43 7629 14.443993151421 0 +43 7637 14.444153151421 0 +43 7637 14.444153151421 0 +43 7685 14.614557359901 0 +43 7685 14.614557359901 0 +43 7700 14.614717359901 0 +43 7700 14.614717359901 0 +43 7723 14.624399331156 0 +43 7723 14.624399331156 0 +43 7742 14.624559331156 0 +43 7742 14.624559331156 0 +43 7760 14.63127659416 0 +43 7760 14.63127659416 0 +43 7775 14.63143659416 0 +43 7775 14.63143659416 0 +43 7835 14.693585849737 0 +43 7835 14.693585849737 0 +43 7842 14.693745849737 0 +43 7842 14.693745849737 0 +43 7870 14.743993151421 0 +43 7870 14.743993151421 0 +43 7878 14.744153151421 0 +43 7878 14.744153151421 0 +43 7926 14.914557345304 0 +43 7926 14.914557345304 0 +43 7941 14.914717345304 0 +43 7941 14.914717345304 0 +43 7964 14.924399331969 0 +43 7964 14.924399331969 0 +43 7983 14.924559331969 0 +43 7983 14.924559331969 0 +43 8001 14.931276594853 0 +43 8001 14.931276594853 0 +43 8016 14.931436594853 0 +43 8016 14.931436594853 0 +43 8076 14.993585846435 0 +43 8076 14.993585846435 0 +43 8083 14.993745846435 0 +43 8083 14.993745846435 0 +43 8111 15.043993151421 0 +43 8111 15.043993151421 0 +43 8119 15.044153151421 0 +43 8119 15.044153151421 0 +43 8167 15.214557330718 0 +43 8167 15.214557330718 0 +43 8182 15.214717330718 0 +43 8182 15.214717330718 0 +43 8205 15.224399332795 0 +43 8205 15.224399332795 0 +43 8224 15.224559332795 0 +43 8224 15.224559332795 0 +43 8242 15.231276595569 0 +43 8242 15.231276595569 0 +43 8257 15.231436595569 0 +43 8257 15.231436595569 0 +43 8317 15.293585833695 0 +43 8317 15.293585833695 0 +43 8324 15.293745833695 0 +43 8324 15.293745833695 0 +43 8352 15.343993151421 0 +43 8352 15.343993151421 0 +43 8360 15.344153151421 0 +43 8360 15.344153151421 0 +43 8408 15.514557316098 0 +43 8408 15.514557316098 0 +43 8423 15.514717316098 0 +43 8423 15.514717316098 0 +43 8446 15.524399333627 0 +43 8446 15.524399333627 0 +43 8465 15.524559333627 0 +43 8465 15.524559333627 0 +43 8483 15.531276596269 0 +43 8483 15.531276596269 0 +43 8498 15.531436596269 0 +43 8498 15.531436596269 0 +43 8558 15.593585819925 0 +43 8558 15.593585819925 0 +43 8565 15.593745819925 0 +43 8565 15.593745819925 0 +43 8593 15.643993151421 0 +43 8593 15.643993151421 0 +43 8601 15.644153151421 0 +43 8601 15.644153151421 0 +43 8649 15.814557301533 0 +43 8649 15.814557301533 0 +43 8664 15.814717301533 0 +43 8664 15.814717301533 0 +43 8687 15.824399334455 0 +43 8687 15.824399334455 0 +43 8706 15.824559334455 0 +43 8706 15.824559334455 0 +43 8724 15.831276596954 0 +43 8724 15.831276596954 0 +43 8739 15.831436596954 0 +43 8739 15.831436596954 0 +43 8799 15.893585806179 0 +43 8799 15.893585806179 0 +43 8806 15.893745806179 0 +43 8806 15.893745806179 0 +43 8834 15.943993151421 0 +43 8834 15.943993151421 0 +43 8842 15.944153151421 0 +43 8842 15.944153151421 0 +43 8890 16.114557286953 0 +43 8890 16.114557286953 0 +43 8905 16.114717286953 0 +43 8905 16.114717286953 0 +43 8932 16.124399335277 0 +43 8932 16.124399335277 0 +43 8951 16.124559335277 0 +43 8951 16.124559335277 0 +43 8969 16.131276597671 0 +43 8969 16.131276597671 0 +43 8984 16.131436597671 0 +43 8984 16.131436597671 0 +43 9044 16.193585792487 0 +43 9044 16.193585792487 0 +43 9051 16.193745792487 0 +43 9051 16.193745792487 0 +43 9083 16.243993151421 0 +43 9083 16.243993151421 0 +43 9091 16.244153151421 0 +43 9091 16.244153151421 0 +43 9139 16.414557272365 0 +43 9139 16.414557272365 0 +43 9154 16.414717272365 0 +43 9154 16.414717272365 0 +43 9181 16.424399336094 0 +43 9181 16.424399336094 0 +43 9200 16.424559336094 0 +43 9200 16.424559336094 0 +43 9218 16.431276598394 0 +43 9218 16.431276598394 0 +43 9233 16.431436598394 0 +43 9233 16.431436598394 0 +43 9293 16.493585780506 0 +43 9293 16.493585780506 0 +43 9300 16.493745780506 0 +43 9300 16.493745780506 0 +43 9332 16.543993151421 0 +43 9332 16.543993151421 0 +43 9340 16.544153151421 0 +43 9340 16.544153151421 0 +43 9388 16.714557257775 0 +43 9388 16.714557257775 0 +43 9403 16.714717257775 0 +43 9403 16.714717257775 0 +43 9430 16.724399336915 0 +43 9430 16.724399336915 0 +43 9449 16.724559336915 0 +43 9449 16.724559336915 0 +43 9467 16.731276599099 0 +43 9467 16.731276599099 0 +43 9482 16.731436599099 0 +43 9482 16.731436599099 0 +43 9542 16.793585771057 0 +43 9542 16.793585771057 0 +43 9549 16.793745771057 0 +43 9549 16.793745771057 0 +43 9581 16.843993151421 0 +43 9581 16.843993151421 0 +43 9589 16.844153151421 0 +43 9589 16.844153151421 0 +43 9637 17.014557243226 0 +43 9637 17.014557243226 0 +43 9652 17.014717243226 0 +43 9652 17.014717243226 0 +43 9679 17.024399337752 0 +43 9679 17.024399337752 0 +43 9698 17.024559337752 0 +43 9698 17.024559337752 0 +43 9716 17.031276599817 0 +43 9716 17.031276599817 0 +43 9731 17.031436599817 0 +43 9731 17.031436599817 0 +43 9791 17.093585764134 0 +43 9791 17.093585764134 0 +43 9798 17.093745764134 0 +43 9798 17.093745764134 0 +43 9830 17.143993151421 0 +43 9830 17.143993151421 0 +43 9838 17.144153151421 0 +43 9838 17.144153151421 0 +43 9886 17.314557228649 0 +43 9886 17.314557228649 0 +43 9901 17.314717228649 0 +43 9901 17.314717228649 0 +43 9928 17.324399338595 0 +43 9928 17.324399338595 0 +43 9947 17.324559338595 0 +43 9947 17.324559338595 0 +43 9965 17.331276600539 0 +43 9965 17.331276600539 0 +43 9980 17.331436600539 0 +43 9980 17.331436600539 0 +43 10040 17.393585759695 0 +43 10040 17.393585759695 0 +43 10047 17.393745759695 0 +43 10047 17.393745759695 0 +43 10079 17.443993151421 0 +43 10079 17.443993151421 0 +43 10087 17.444153151421 0 +43 10087 17.444153151421 0 +43 10135 17.614557214117 0 +43 10135 17.614557214117 0 +43 10150 17.614717214117 0 +43 10150 17.614717214117 0 +43 10177 17.624399339444 0 +43 10177 17.624399339444 0 +43 10196 17.624559339444 0 +43 10196 17.624559339444 0 +43 10214 17.631276601271 0 +43 10214 17.631276601271 0 +43 10229 17.631436601271 0 +43 10229 17.631436601271 0 +43 10289 17.69358575768 0 +43 10289 17.69358575768 0 +43 10296 17.69374575768 0 +43 10296 17.69374575768 0 +43 10328 17.743993151421 0 +43 10328 17.743993151421 0 +43 10336 17.744153151421 0 +43 10336 17.744153151421 0 +43 10384 17.914557199593 0 +43 10384 17.914557199593 0 +43 10399 17.914717199593 0 +43 10399 17.914717199593 0 +43 10422 17.92439934028 0 +43 10422 17.92439934028 0 +43 10441 17.92455934028 0 +43 10441 17.92455934028 0 +43 10459 17.931276601981 0 +43 10459 17.931276601981 0 +43 10474 17.931436601981 0 +43 10474 17.931436601981 0 +43 10530 17.993585756396 0 +43 10530 17.993585756396 0 +43 10537 17.993745756396 0 +43 10537 17.993745756396 0 +43 10569 18.043993151421 0 +43 10569 18.043993151421 0 +43 10577 18.044153151421 0 +43 10577 18.044153151421 0 +43 10624 18.214557185085 0 +43 10624 18.214557185085 0 +43 10635 18.214717185085 0 +43 10635 18.214717185085 0 +43 10663 18.22439934113 0 +43 10663 18.22439934113 0 +43 10682 18.22455934113 0 +43 10682 18.22455934113 0 +43 10696 18.231276602699 0 +43 10696 18.231276602699 0 +43 10711 18.231436602699 0 +43 10711 18.231436602699 0 +43 10767 18.293585755106 0 +43 10767 18.293585755106 0 +43 10774 18.293745755106 0 +43 10774 18.293745755106 0 +43 10806 18.343993151421 0 +43 10806 18.343993151421 0 +43 10814 18.344153151421 0 +43 10814 18.344153151421 0 +43 10857 18.514557170436 0 +43 10857 18.514557170436 0 +43 10868 18.514717170436 0 +43 10868 18.514717170436 0 +43 10896 18.524399341978 0 +43 10896 18.524399341978 0 +43 10915 18.524559341978 0 +43 10915 18.524559341978 0 +43 10929 18.531276603438 0 +43 10929 18.531276603438 0 +43 10944 18.531436603438 0 +43 10944 18.531436603438 0 +43 11000 18.593585753817 0 +43 11000 18.593585753817 0 +43 11007 18.593745753817 0 +43 11007 18.593745753817 0 +43 11039 18.643993151421 0 +43 11039 18.643993151421 0 +43 11047 18.644153151421 0 +43 11047 18.644153151421 0 +43 11090 18.814557161182 0 +43 11090 18.814557161182 0 +43 11101 18.814717161182 0 +43 11101 18.814717161182 0 +43 11162 18.831276604167 0 +43 11162 18.831276604167 0 +43 11177 18.831436604167 0 +43 11177 18.831436604167 0 +43 11233 18.893585752536 0 +43 11233 18.893585752536 0 +43 11240 18.893745752536 0 +43 11240 18.893745752536 0 +43 11272 18.943993151421 0 +43 11272 18.943993151421 0 +43 11280 18.944153151421 0 +43 11280 18.944153151421 0 +43 11323 19.114557157992 0 +43 11323 19.114557157992 0 +43 11334 19.114717157992 0 +43 11334 19.114717157992 0 +43 11395 19.131276604913 0 +43 11395 19.131276604913 0 +43 11410 19.131436604913 0 +43 11410 19.131436604913 0 +43 11466 19.193585751249 0 +43 11466 19.193585751249 0 +43 11473 19.193745751249 0 +43 11473 19.193745751249 0 +43 11505 19.243993151421 0 +43 11505 19.243993151421 0 +43 11513 19.244153151421 0 +43 11513 19.244153151421 0 +43 11556 19.414557155892 0 +43 11556 19.414557155892 0 +43 11567 19.414717155892 0 +43 11567 19.414717155892 0 +43 11628 19.431276605661 0 +43 11628 19.431276605661 0 +43 11643 19.431436605661 0 +43 11643 19.431436605661 0 +43 11699 19.493585749962 0 +43 11699 19.493585749962 0 +43 11706 19.493745749962 0 +43 11706 19.493745749962 0 +43 11738 19.543993151421 0 +43 11738 19.543993151421 0 +43 11746 19.544153151421 0 +43 11746 19.544153151421 0 +43 11789 19.714557154461 0 +43 11789 19.714557154461 0 +43 11800 19.714717154461 0 +43 11800 19.714717154461 0 +43 11861 19.731276606768 0 +43 11861 19.731276606768 0 +43 11876 19.731436606768 0 +43 11876 19.731436606768 0 +43 11932 19.793585748041 0 +43 11932 19.793585748041 0 +43 11939 19.793745748041 0 +43 11939 19.793745748041 0 +43 11971 19.843993151421 0 +43 11971 19.843993151421 0 +43 11979 19.844153151421 0 +43 11979 19.844153151421 0 +43 12022 20.014557153776 0 +43 12022 20.014557153776 0 +43 12033 20.014717153776 0 +43 12033 20.014717153776 0 +43 12098 20.031276608452 0 +43 12098 20.031276608452 0 +43 12113 20.031436608452 0 +43 12113 20.031436608452 0 +43 12173 20.093585745227 0 +43 12173 20.093585745227 0 +43 12180 20.093745745227 0 +43 12180 20.093745745227 0 +43 12212 20.143993151421 0 +43 12212 20.143993151421 0 +43 12220 20.144153151421 0 +43 12220 20.144153151421 0 +43 12263 20.31455715393 0 +43 12263 20.31455715393 0 +43 12274 20.31471715393 0 +43 12274 20.31471715393 0 +43 12339 20.331276610588 0 +43 12339 20.331276610588 0 +43 12354 20.331436610588 0 +43 12354 20.331436610588 0 +43 12414 20.393585741612 0 +43 12414 20.393585741612 0 +43 12421 20.393745741612 0 +43 12421 20.393745741612 0 +43 12453 20.443993151421 0 +43 12453 20.443993151421 0 +43 12461 20.444153151421 0 +43 12461 20.444153151421 0 +43 12504 20.614557155021 0 +43 12504 20.614557155021 0 +43 12515 20.614717155021 0 +43 12515 20.614717155021 0 +43 12580 20.631276613242 0 +43 12580 20.631276613242 0 +43 12595 20.631436613242 0 +43 12595 20.631436613242 0 +43 12655 20.693585737229 0 +43 12655 20.693585737229 0 +43 12662 20.693745737229 0 +43 12662 20.693745737229 0 +43 12694 20.743993151421 0 +43 12694 20.743993151421 0 +43 12702 20.744153151421 0 +43 12702 20.744153151421 0 +43 12745 20.914557157133 0 +43 12745 20.914557157133 0 +43 12756 20.914717157133 0 +43 12756 20.914717157133 0 +43 12821 20.931276616399 0 +43 12821 20.931276616399 0 +43 12836 20.931436616399 0 +43 12836 20.931436616399 0 +43 12896 20.993585732172 0 +43 12896 20.993585732172 0 +43 12903 20.993745732172 0 +43 12903 20.993745732172 0 +43 12935 21.043993151421 0 +43 12935 21.043993151421 0 +43 12943 21.044153151421 0 +43 12943 21.044153151421 0 +43 12986 21.214557160323 0 +43 12986 21.214557160323 0 +43 12997 21.214717160323 0 +43 12997 21.214717160323 0 +43 13062 21.231276620049 0 +43 13062 21.231276620049 0 +43 13077 21.231436620049 0 +43 13077 21.231436620049 0 +43 13137 21.293585726489 0 +43 13137 21.293585726489 0 +43 13144 21.293745726489 0 +43 13144 21.293745726489 0 +43 13176 21.343993151421 0 +43 13176 21.343993151421 0 +43 13184 21.344153151421 0 +43 13184 21.344153151421 0 +43 13227 21.514557164674 0 +43 13227 21.514557164674 0 +43 13238 21.514717164674 0 +43 13238 21.514717164674 0 +43 13303 21.531276624253 0 +43 13303 21.531276624253 0 +43 13318 21.531436624253 0 +43 13318 21.531436624253 0 +43 13378 21.593585720024 0 +43 13378 21.593585720024 0 +43 13385 21.593745720024 0 +43 13385 21.593745720024 0 +43 13417 21.643993151421 0 +43 13417 21.643993151421 0 +43 13425 21.644153151421 0 +43 13425 21.644153151421 0 +43 13468 21.814557170229 0 +43 13468 21.814557170229 0 +43 13479 21.814717170229 0 +43 13479 21.814717170229 0 +43 13544 21.831276629063 0 +43 13544 21.831276629063 0 +43 13559 21.831436629063 0 +43 13559 21.831436629063 0 +43 13619 21.893585712841 0 +43 13619 21.893585712841 0 +43 13626 21.893745712841 0 +43 13626 21.893745712841 0 +43 13658 21.943993151421 0 +43 13658 21.943993151421 0 +43 13666 21.944153151421 0 +43 13666 21.944153151421 0 +43 13709 22.114557176994 0 +43 13709 22.114557176994 0 +43 13720 22.114717176994 0 +43 13720 22.114717176994 0 +43 13785 22.131276634514 0 +43 13785 22.131276634514 0 +43 13800 22.131436634514 0 +43 13800 22.131436634514 0 +43 13860 22.193585704988 0 +43 13860 22.193585704988 0 +43 13867 22.193745704988 0 +43 13867 22.193745704988 0 +43 13899 22.243993151421 0 +43 13899 22.243993151421 0 +43 13907 22.244153151421 0 +43 13907 22.244153151421 0 +43 13950 22.414557185072 0 +43 13950 22.414557185072 0 +43 13961 22.414717185072 0 +43 13961 22.414717185072 0 +43 14026 22.431276640553 0 +43 14026 22.431276640553 0 +43 14041 22.431436640553 0 +43 14041 22.431436640553 0 +43 14101 22.49358569653 0 +43 14101 22.49358569653 0 +43 14108 22.49374569653 0 +43 14108 22.49374569653 0 +43 14140 22.543993151421 0 +43 14140 22.543993151421 0 +43 14148 22.544153151421 0 +43 14148 22.544153151421 0 +43 14191 22.714557194287 0 +43 14191 22.714557194287 0 +43 14202 22.714717194287 0 +43 14202 22.714717194287 0 +43 14267 22.73127664727 0 +43 14267 22.73127664727 0 +43 14282 22.73143664727 0 +43 14282 22.73143664727 0 +43 14342 22.793585687538 0 +43 14342 22.793585687538 0 +43 14349 22.793745687538 0 +43 14349 22.793745687538 0 +43 14381 22.843993151421 0 +43 14381 22.843993151421 0 +43 14389 22.844153151421 0 +43 14389 22.844153151421 0 +43 14432 23.014557204223 0 +43 14432 23.014557204223 0 +43 14443 23.014717204223 0 +43 14443 23.014717204223 0 +43 14508 23.031276654734 0 +43 14508 23.031276654734 0 +43 14523 23.031436654734 0 +43 14523 23.031436654734 0 +43 14583 23.093585678184 0 +43 14583 23.093585678184 0 +43 14590 23.093745678184 0 +43 14590 23.093745678184 0 +43 14622 23.143993151421 0 +43 14622 23.143993151421 0 +43 14630 23.144153151421 0 +43 14630 23.144153151421 0 +43 14673 23.314557215428 0 +43 14673 23.314557215428 0 +43 14684 23.314717215428 0 +43 14684 23.314717215428 0 +43 14749 23.331276662913 0 +43 14749 23.331276662913 0 +43 14764 23.331436662913 0 +43 14764 23.331436662913 0 +43 14824 23.393585668176 0 +43 14824 23.393585668176 0 +43 14831 23.393745668176 0 +43 14831 23.393745668176 0 +43 14863 23.443993151421 0 +43 14863 23.443993151421 0 +43 14871 23.444153151421 0 +43 14871 23.444153151421 0 +43 14914 23.614557224167 0 +43 14914 23.614557224167 0 +43 14925 23.614717224167 0 +43 14925 23.614717224167 0 +43 14990 23.631276668226 0 +43 14990 23.631276668226 0 +43 15005 23.631436668226 0 +43 15005 23.631436668226 0 +43 15065 23.693585661458 0 +43 15065 23.693585661458 0 +43 15072 23.693745661458 0 +43 15072 23.693745661458 0 +43 15104 23.743993151421 0 +43 15104 23.743993151421 0 +43 15112 23.744153151421 0 +43 15112 23.744153151421 0 +43 15155 23.914557225534 0 +43 15155 23.914557225534 0 +43 15166 23.914717225534 0 +43 15166 23.914717225534 0 +43 15231 23.931276671861 0 +43 15231 23.931276671861 0 +43 15246 23.931436671861 0 +43 15246 23.931436671861 0 +43 15306 23.993585658609 0 +43 15306 23.993585658609 0 +43 15313 23.993745658609 0 +43 15313 23.993745658609 0 +43 15345 24.043993151421 0 +43 15345 24.043993151421 0 +43 15353 24.044153151421 0 +43 15353 24.044153151421 0 +43 15396 24.214557228476 0 +43 15396 24.214557228476 0 +43 15407 24.214717228476 0 +43 15407 24.214717228476 0 +43 15472 24.231276682111 0 +43 15472 24.231276682111 0 +43 15487 24.231436682111 0 +43 15487 24.231436682111 0 +43 15547 24.293585650885 0 +43 15547 24.293585650885 0 +43 15554 24.293745650885 0 +43 15554 24.293745650885 0 +43 15586 24.343993151421 0 +43 15586 24.343993151421 0 +43 15594 24.344153151421 0 +43 15594 24.344153151421 0 +43 15637 24.514557231601 0 +43 15637 24.514557231601 0 +43 15648 24.514717231601 0 +43 15648 24.514717231601 0 +43 15713 24.531276693849 0 +43 15713 24.531276693849 0 +43 15728 24.531436693849 0 +43 15728 24.531436693849 0 +43 15788 24.593585643051 0 +43 15788 24.593585643051 0 +43 15795 24.593745643051 0 +43 15795 24.593745643051 0 +43 15827 24.643993151421 0 +43 15827 24.643993151421 0 +43 15835 24.644153151421 0 +43 15835 24.644153151421 0 +43 15878 24.814557234404 0 +43 15878 24.814557234404 0 +43 15889 24.814717234404 0 +43 15889 24.814717234404 0 +43 15954 24.831276706445 0 +43 15954 24.831276706445 0 +43 15969 24.831436706445 0 +43 15969 24.831436706445 0 +43 16029 24.893585636131 0 +43 16029 24.893585636131 0 +43 16036 24.893745636131 0 +43 16036 24.893745636131 0 +43 16068 24.943993151421 0 +43 16068 24.943993151421 0 +43 16076 24.944153151421 0 +43 16076 24.944153151421 0 +43 16119 25.114557236911 0 +43 16119 25.114557236911 0 +43 16130 25.114717236911 0 +43 16130 25.114717236911 0 +43 16195 25.131276719839 0 +43 16195 25.131276719839 0 +43 16210 25.131436719839 0 +43 16210 25.131436719839 0 +43 16270 25.193585630457 0 +43 16270 25.193585630457 0 +43 16277 25.193745630457 0 +43 16277 25.193745630457 0 +43 16309 25.243993151421 0 +43 16309 25.243993151421 0 +43 16317 25.244153151421 0 +43 16317 25.244153151421 0 +43 16360 25.414557239038 0 +43 16360 25.414557239038 0 +43 16371 25.414717239038 0 +43 16371 25.414717239038 0 +43 16436 25.431276734024 0 +43 16436 25.431276734024 0 +43 16451 25.431436734024 0 +43 16451 25.431436734024 0 +43 16511 25.493585626591 0 +43 16511 25.493585626591 0 +43 16518 25.493745626591 0 +43 16518 25.493745626591 0 +43 16550 25.543993151421 0 +43 16550 25.543993151421 0 +43 16558 25.544153151421 0 +43 16558 25.544153151421 0 +43 16600 25.714557240854 0 +43 16600 25.714557240854 0 +43 16607 25.714717240854 0 +43 16607 25.714717240854 0 +43 16677 25.731276749009 0 +43 16677 25.731276749009 0 +43 16692 25.731436749009 0 +43 16692 25.731436749009 0 +43 16752 25.793585625056 0 +43 16752 25.793585625056 0 +43 16759 25.793745625056 0 +43 16759 25.793745625056 0 +43 16791 25.843993151421 0 +43 16791 25.843993151421 0 +43 16799 25.844153151421 0 +43 16799 25.844153151421 0 +43 16841 26.014557242289 0 +43 16841 26.014557242289 0 +43 16848 26.014717242289 0 +43 16848 26.014717242289 0 +43 16918 26.031276763556 0 +43 16918 26.031276763556 0 +43 16933 26.031436763556 0 +43 16933 26.031436763556 0 +43 16993 26.093585626275 0 +43 16993 26.093585626275 0 +43 17000 26.093745626275 0 +43 17000 26.093745626275 0 +43 17032 26.143993151421 0 +43 17032 26.143993151421 0 +43 17040 26.144153151421 0 +43 17040 26.144153151421 0 +43 17082 26.314557243311 0 +43 17082 26.314557243311 0 +43 17089 26.314717243311 0 +43 17089 26.314717243311 0 +43 17159 26.331276777067 0 +43 17159 26.331276777067 0 +43 17174 26.331436777067 0 +43 17174 26.331436777067 0 +43 17234 26.393585630812 0 +43 17234 26.393585630812 0 +43 17241 26.393745630812 0 +43 17241 26.393745630812 0 +43 17273 26.443993151421 0 +43 17273 26.443993151421 0 +43 17281 26.444153151421 0 +43 17281 26.444153151421 0 +43 17323 26.614557243876 0 +43 17323 26.614557243876 0 +43 17330 26.614717243876 0 +43 17330 26.614717243876 0 +43 17400 26.631276789593 0 +43 17400 26.631276789593 0 +43 17415 26.631436789593 0 +43 17415 26.631436789593 0 +43 17475 26.693585638677 0 +43 17475 26.693585638677 0 +43 17482 26.693745638677 0 +43 17482 26.693745638677 0 +43 17514 26.743993151421 0 +43 17514 26.743993151421 0 +43 17522 26.744153151421 0 +43 17522 26.744153151421 0 +43 17564 26.914557244114 0 +43 17564 26.914557244114 0 +43 17571 26.914717244114 0 +43 17571 26.914717244114 0 +43 17641 26.931276801135 0 +43 17641 26.931276801135 0 +43 17656 26.931436801135 0 +43 17656 26.931436801135 0 +43 17716 26.993585649352 0 +43 17716 26.993585649352 0 +43 17723 26.993745649352 0 +43 17723 26.993745649352 0 +43 17755 27.043993151421 0 +43 17755 27.043993151421 0 +43 17763 27.044153151421 0 +43 17763 27.044153151421 0 +43 17805 27.214557243957 0 +43 17805 27.214557243957 0 +43 17812 27.214717243957 0 +43 17812 27.214717243957 0 +43 17875 27.231276811734 0 +43 17875 27.231276811734 0 +43 17894 27.231436811734 0 +43 17894 27.231436811734 0 +43 17949 27.293585662469 0 +43 17949 27.293585662469 0 +43 17956 27.293745662469 0 +43 17956 27.293745662469 0 +43 17988 27.343993151421 0 +43 17988 27.343993151421 0 +43 17996 27.344153151421 0 +43 17996 27.344153151421 0 +43 18038 27.514557243783 0 +43 18038 27.514557243783 0 +43 18045 27.514717243783 0 +43 18045 27.514717243783 0 +43 18108 27.53127682198 0 +43 18108 27.53127682198 0 +43 18127 27.53143682198 0 +43 18127 27.53143682198 0 +43 18182 27.593585677115 0 +43 18182 27.593585677115 0 +43 18189 27.593745677115 0 +43 18189 27.593745677115 0 +43 18221 27.643993151421 0 +43 18221 27.643993151421 0 +43 18229 27.644153151421 0 +43 18229 27.644153151421 0 +43 18271 27.814557243571 0 +43 18271 27.814557243571 0 +43 18278 27.814717243571 0 +43 18278 27.814717243571 0 +43 18341 27.831276831392 0 +43 18341 27.831276831392 0 +43 18360 27.831436831392 0 +43 18360 27.831436831392 0 +43 18415 27.893585692883 0 +43 18415 27.893585692883 0 +43 18422 27.893745692883 0 +43 18422 27.893745692883 0 +43 18454 27.943993151421 0 +43 18454 27.943993151421 0 +43 18462 27.944153151421 0 +43 18462 27.944153151421 0 +43 18504 28.114557243343 0 +43 18504 28.114557243343 0 +43 18511 28.114717243343 0 +43 18511 28.114717243343 0 +43 18574 28.13127683163 0 +43 18574 28.13127683163 0 +43 18593 28.13143683163 0 +43 18593 28.13143683163 0 +43 18648 28.193585709573 0 +43 18648 28.193585709573 0 +43 18655 28.193745709573 0 +43 18655 28.193745709573 0 +43 18687 28.243993151421 0 +43 18687 28.243993151421 0 +43 18695 28.244153151421 0 +43 18695 28.244153151421 0 +43 18737 28.414557243176 0 +43 18737 28.414557243176 0 +43 18744 28.414717243176 0 +43 18744 28.414717243176 0 +43 18807 28.4312768277 0 +43 18807 28.4312768277 0 +43 18826 28.4314368277 0 +43 18826 28.4314368277 0 +43 18881 28.493585726899 0 +43 18881 28.493585726899 0 +43 18888 28.493745726899 0 +43 18888 28.493745726899 0 +43 18920 28.543993151421 0 +43 18920 28.543993151421 0 +43 18928 28.544153151421 0 +43 18928 28.544153151421 0 +43 18970 28.71455724295 0 +43 18970 28.71455724295 0 +43 18977 28.71471724295 0 +43 18977 28.71471724295 0 +43 19040 28.731276823589 0 +43 19040 28.731276823589 0 +43 19059 28.731436823589 0 +43 19059 28.731436823589 0 +43 19114 28.793585744792 0 +43 19114 28.793585744792 0 +43 19121 28.793745744792 0 +43 19121 28.793745744792 0 +43 19153 28.843993151421 0 +43 19153 28.843993151421 0 +43 19161 28.844153151421 0 +43 19161 28.844153151421 0 +43 19203 29.014557242752 0 +43 19203 29.014557242752 0 +43 19210 29.014717242752 0 +43 19210 29.014717242752 0 +43 19273 29.031276819366 0 +43 19273 29.031276819366 0 +43 19292 29.031436819366 0 +43 19292 29.031436819366 0 +43 19339 29.093585763099 0 +43 19339 29.093585763099 0 +43 19346 29.093745763099 0 +43 19346 29.093745763099 0 +43 19378 29.143993151421 0 +43 19378 29.143993151421 0 +43 19386 29.144153151421 0 +43 19386 29.144153151421 0 +43 19428 29.31455724256 0 +43 19428 29.31455724256 0 +43 19435 29.31471724256 0 +43 19435 29.31471724256 0 +43 19498 29.331276815156 0 +43 19498 29.331276815156 0 +43 19517 29.331436815156 0 +43 19517 29.331436815156 0 +43 19564 29.393585781743 0 +43 19564 29.393585781743 0 +43 19571 29.393745781743 0 +43 19571 29.393745781743 0 +43 19603 29.443993151421 0 +43 19603 29.443993151421 0 +43 19611 29.444153151421 0 +43 19611 29.444153151421 0 +43 19653 29.614557242339 0 +43 19653 29.614557242339 0 +43 19660 29.614717242339 0 +43 19660 29.614717242339 0 +43 19723 29.631276811006 0 +43 19723 29.631276811006 0 +43 19742 29.631436811006 0 +43 19742 29.631436811006 0 +43 19789 29.693585800658 0 +43 19789 29.693585800658 0 +43 19796 29.693745800658 0 +43 19796 29.693745800658 0 +43 19828 29.743993151421 0 +43 19828 29.743993151421 0 +43 19836 29.744153151421 0 +43 19836 29.744153151421 0 +43 19878 29.914557242168 0 +43 19878 29.914557242168 0 +43 19885 29.914717242168 0 +43 19885 29.914717242168 0 +43 19948 29.931276806789 0 +43 19948 29.931276806789 0 +43 19967 29.931436806789 0 +43 19967 29.931436806789 0 +43 20014 29.99358581976 0 +43 20014 29.99358581976 0 +43 20021 29.99374581976 0 +43 20021 29.99374581976 0 +43 20053 30.043993151421 0 +43 20053 30.043993151421 0 +43 20061 30.044153151421 0 +43 20061 30.044153151421 0 +43 20103 30.214557241952 0 +43 20103 30.214557241952 0 +43 20110 30.214717241952 0 +43 20110 30.214717241952 0 +43 20173 30.231276802516 0 +43 20173 30.231276802516 0 +43 20192 30.231436802516 0 +43 20192 30.231436802516 0 +43 20239 30.29358583909 0 +43 20239 30.29358583909 0 +43 20246 30.29374583909 0 +43 20246 30.29374583909 0 +43 20278 30.343993151421 0 +43 20278 30.343993151421 0 +43 20286 30.344153151421 0 +43 20286 30.344153151421 0 +43 20328 30.514557241756 0 +43 20328 30.514557241756 0 +43 20335 30.514717241756 0 +43 20335 30.514717241756 0 +43 20398 30.531276798256 0 +43 20398 30.531276798256 0 +43 20417 30.531436798256 0 +43 20417 30.531436798256 0 +43 20464 30.593585858538 0 +43 20464 30.593585858538 0 +43 20471 30.593745858538 0 +43 20471 30.593745858538 0 +43 20503 30.643993151421 0 +43 20503 30.643993151421 0 +43 20511 30.644153151421 0 +43 20511 30.644153151421 0 +43 20553 30.814557241503 0 +43 20553 30.814557241503 0 +43 20560 30.814717241503 0 +43 20560 30.814717241503 0 +43 20622 30.831276794122 0 +43 20622 30.831276794122 0 +43 20637 30.831436794122 0 +43 20637 30.831436794122 0 +43 20689 30.893585878179 0 +43 20689 30.893585878179 0 +43 20696 30.893745878179 0 +43 20696 30.893745878179 0 +43 20728 30.943993151421 0 +43 20728 30.943993151421 0 +43 20736 30.944153151421 0 +43 20736 30.944153151421 0 +43 20778 31.114557241331 0 +43 20778 31.114557241331 0 +43 20785 31.114717241331 0 +43 20785 31.114717241331 0 +43 20851 31.131276790287 0 +43 20851 31.131276790287 0 +43 20866 31.131436790287 0 +43 20866 31.131436790287 0 +43 20919 31.193585897854 0 +43 20919 31.193585897854 0 +43 20930 31.193745897854 0 +43 20930 31.193745897854 0 +43 20961 31.243993151421 0 +43 20961 31.243993151421 0 +43 20969 31.244153151421 0 +43 20969 31.244153151421 0 +43 21011 31.414557241138 0 +43 21011 31.414557241138 0 +43 21018 31.414717241138 0 +43 21018 31.414717241138 0 +43 21084 31.431276787097 0 +43 21084 31.431276787097 0 +43 21099 31.431436787097 0 +43 21099 31.431436787097 0 +43 21152 31.49358591764 0 +43 21152 31.49358591764 0 +43 21163 31.49374591764 0 +43 21163 31.49374591764 0 +43 21194 31.543993151421 0 +43 21194 31.543993151421 0 +43 21202 31.544153151421 0 +43 21202 31.544153151421 0 +43 21244 31.714557240949 0 +43 21244 31.714557240949 0 +43 21251 31.714717240949 0 +43 21251 31.714717240949 0 +43 21317 31.731276784583 0 +43 21317 31.731276784583 0 +43 21332 31.731436784583 0 +43 21332 31.731436784583 0 +43 21385 31.793585937521 0 +43 21385 31.793585937521 0 +43 21396 31.793745937521 0 +43 21396 31.793745937521 0 +43 21427 31.843993151421 0 +43 21427 31.843993151421 0 +43 21435 31.844153151421 0 +43 21435 31.844153151421 0 +43 21477 32.014557240765 0 +43 21477 32.014557240765 0 +43 21484 32.014717240765 0 +43 21484 32.014717240765 0 +43 21550 32.031276782702 0 +43 21550 32.031276782702 0 +43 21565 32.031436782702 0 +43 21565 32.031436782702 0 +43 21618 32.093585957424 0 +43 21618 32.093585957424 0 +43 21629 32.093745957424 0 +43 21629 32.093745957424 0 +43 21660 32.143993151421 0 +43 21660 32.143993151421 0 +43 21668 32.144153151421 0 +43 21668 32.144153151421 0 +43 21710 32.31455724058 0 +43 21710 32.31455724058 0 +43 21717 32.31471724058 0 +43 21717 32.31471724058 0 +43 21783 32.331276781557 0 +43 21783 32.331276781557 0 +43 21798 32.331436781557 0 +43 21798 32.331436781557 0 +43 21851 32.393585977454 0 +43 21851 32.393585977454 0 +43 21862 32.393745977454 0 +43 21862 32.393745977454 0 +43 21893 32.443993151421 0 +43 21893 32.443993151421 0 +43 21901 32.444153151421 0 +43 21901 32.444153151421 0 +43 21943 32.614557240362 0 +43 21943 32.614557240362 0 +43 21950 32.614717240362 0 +43 21950 32.614717240362 0 +43 22016 32.631276781062 0 +43 22016 32.631276781062 0 +43 22031 32.631436781062 0 +43 22031 32.631436781062 0 +43 22084 32.693585997543 0 +43 22084 32.693585997543 0 +43 22095 32.693745997543 0 +43 22095 32.693745997543 0 +43 22126 32.743993151421 0 +43 22126 32.743993151421 0 +43 22134 32.744153151421 0 +43 22134 32.744153151421 0 +43 22176 32.914557240161 0 +43 22176 32.914557240161 0 +43 22183 32.914717240161 0 +43 22183 32.914717240161 0 +43 22249 32.93127678126 0 +43 22249 32.93127678126 0 +43 22264 32.93143678126 0 +43 22264 32.93143678126 0 +43 22317 32.993586017691 0 +43 22317 32.993586017691 0 +43 22328 32.993746017691 0 +43 22328 32.993746017691 0 +43 22359 33.043993151421 0 +43 22359 33.043993151421 0 +43 22367 33.044153151421 0 +43 22367 33.044153151421 0 +43 22409 33.214557239961 0 +43 22409 33.214557239961 0 +43 22416 33.214717239961 0 +43 22416 33.214717239961 0 +43 22482 33.23127678211 0 +43 22482 33.23127678211 0 +43 22497 33.23143678211 0 +43 22497 33.23143678211 0 +43 22550 33.293586037835 0 +43 22550 33.293586037835 0 +43 22561 33.293746037835 0 +43 22561 33.293746037835 0 +43 22592 33.343993151421 0 +43 22592 33.343993151421 0 +43 22600 33.344153151421 0 +43 22600 33.344153151421 0 +43 22642 33.514557239737 0 +43 22642 33.514557239737 0 +43 22649 33.514717239737 0 +43 22649 33.514717239737 0 +43 22715 33.531276783685 0 +43 22715 33.531276783685 0 +43 22730 33.531436783685 0 +43 22730 33.531436783685 0 +43 22784 33.593586058084 0 +43 22784 33.593586058084 0 +43 22799 33.593746058084 0 +43 22799 33.593746058084 0 +43 22825 33.643993151421 0 +43 22825 33.643993151421 0 +43 22833 33.644153151421 0 +43 22833 33.644153151421 0 +43 22875 33.814557239531 0 +43 22875 33.814557239531 0 +43 22882 33.814717239531 0 +43 22882 33.814717239531 0 +43 22944 33.831276785904 0 +43 22944 33.831276785904 0 +43 22959 33.831436785904 0 +43 22959 33.831436785904 0 +43 23013 33.893586078308 0 +43 23013 33.893586078308 0 +43 23028 33.893746078308 0 +43 23028 33.893746078308 0 +43 23049 33.943993151421 0 +43 23049 33.943993151421 0 +43 23056 33.944153151421 0 +43 23056 33.944153151421 0 +43 23091 34.11455723931 0 +43 23091 34.11455723931 0 +43 23097 34.11471723931 0 +43 23097 34.11471723931 0 +43 23147 34.131276788788 0 +43 23147 34.131276788788 0 +43 23157 34.131436788788 0 +43 23157 34.131436788788 0 +43 23207 34.243993151421 0 +43 23207 34.243993151421 0 +43 23214 34.244153151421 0 +43 23214 34.244153151421 0 +43 23249 34.414557239094 0 +43 23249 34.414557239094 0 +43 23255 34.414717239094 0 +43 23255 34.414717239094 0 +43 23305 34.431276792338 0 +43 23305 34.431276792338 0 +43 23315 34.431436792338 0 +43 23315 34.431436792338 0 +43 23365 34.543993151421 0 +43 23365 34.543993151421 0 +43 23372 34.544153151421 0 +43 23372 34.544153151421 0 +43 23407 34.71455723891 0 +43 23407 34.71455723891 0 +43 23413 34.71471723891 0 +43 23413 34.71471723891 0 +43 23463 34.731276796515 0 +43 23463 34.731276796515 0 +43 23473 34.731436796515 0 +43 23473 34.731436796515 0 +43 23523 34.843993151421 0 +43 23523 34.843993151421 0 +43 23530 34.844153151421 0 +43 23530 34.844153151421 0 +43 23565 35.014557238698 0 +43 23565 35.014557238698 0 +43 23571 35.014717238698 0 +43 23571 35.014717238698 0 +43 23621 35.031276801357 0 +43 23621 35.031276801357 0 +43 23631 35.031436801357 0 +43 23631 35.031436801357 0 +43 23681 35.143993151421 0 +43 23681 35.143993151421 0 +43 23688 35.144153151421 0 +43 23688 35.144153151421 0 +43 23727 35.31455723851 0 +43 23727 35.31455723851 0 +43 23733 35.31471723851 0 +43 23733 35.31471723851 0 +43 23783 35.331276806756 0 +43 23783 35.331276806756 0 +43 23793 35.331436806756 0 +43 23793 35.331436806756 0 +43 23813 35.357384434054 0 +43 23813 35.357384434054 0 +43 23827 35.357544434054 0 +43 23827 35.357544434054 0 +43 23847 35.443993151421 0 +43 23847 35.443993151421 0 +43 23854 35.444153151421 0 +43 23854 35.444153151421 0 +43 23893 35.614557238324 0 +43 23893 35.614557238324 0 +43 23899 35.614717238324 0 +43 23899 35.614717238324 0 +43 23949 35.631276812771 0 +43 23949 35.631276812771 0 +43 23959 35.631436812771 0 +43 23959 35.631436812771 0 +43 23979 35.657384420736 0 +43 23979 35.657384420736 0 +43 23993 35.657544420736 0 +43 23993 35.657544420736 0 +43 24013 35.743993151421 0 +43 24013 35.743993151421 0 +43 24020 35.744153151421 0 +43 24020 35.744153151421 0 +43 24060 35.914557238104 0 +43 24060 35.914557238104 0 +43 24070 35.914717238104 0 +43 24070 35.914717238104 0 +43 24115 35.931276819372 0 +43 24115 35.931276819372 0 +43 24125 35.931436819372 0 +43 24125 35.931436819372 0 +43 24145 35.957384409002 0 +43 24145 35.957384409002 0 +43 24159 35.957544409002 0 +43 24159 35.957544409002 0 +43 24179 36.043993151421 0 +43 24179 36.043993151421 0 +43 24186 36.044153151421 0 +43 24186 36.044153151421 0 +43 24226 36.214557237923 0 +43 24226 36.214557237923 0 +43 24236 36.214717237923 0 +43 24236 36.214717237923 0 +43 24281 36.231276826584 0 +43 24281 36.231276826584 0 +43 24291 36.231436826584 0 +43 24291 36.231436826584 0 +43 24311 36.257384398867 0 +43 24311 36.257384398867 0 +43 24325 36.257544398867 0 +43 24325 36.257544398867 0 +43 24345 36.343993151421 0 +43 24345 36.343993151421 0 +43 24352 36.344153151421 0 +43 24352 36.344153151421 0 +43 24392 36.514557237718 0 +43 24392 36.514557237718 0 +43 24402 36.514717237718 0 +43 24402 36.514717237718 0 +43 24447 36.531276834329 0 +43 24447 36.531276834329 0 +43 24457 36.531436834329 0 +43 24457 36.531436834329 0 +43 24477 36.557384390339 0 +43 24477 36.557384390339 0 +43 24491 36.557544390339 0 +43 24491 36.557544390339 0 +43 24511 36.643993151421 0 +43 24511 36.643993151421 0 +43 24518 36.644153151421 0 +43 24518 36.644153151421 0 +43 24557 36.814557237512 0 +43 24557 36.814557237512 0 +43 24563 36.814717237512 0 +43 24563 36.814717237512 0 +43 24613 36.831276842622 0 +43 24613 36.831276842622 0 +43 24623 36.831436842622 0 +43 24623 36.831436842622 0 +43 24643 36.857384382745 0 +43 24643 36.857384382745 0 +43 24657 36.857544382745 0 +43 24657 36.857544382745 0 +43 24677 36.943993151421 0 +43 24677 36.943993151421 0 +43 24684 36.944153151421 0 +43 24684 36.944153151421 0 +43 24723 37.114557236718 0 +43 24723 37.114557236718 0 +43 24729 37.114717236718 0 +43 24729 37.114717236718 0 +43 24779 37.131276851096 0 +43 24779 37.131276851096 0 +43 24789 37.131436851096 0 +43 24789 37.131436851096 0 +43 24809 37.157384373889 0 +43 24809 37.157384373889 0 +43 24823 37.157544373889 0 +43 24823 37.157544373889 0 +43 24843 37.243993151421 0 +43 24843 37.243993151421 0 +43 24850 37.244153151421 0 +43 24850 37.244153151421 0 +43 24889 37.41455723223 0 +43 24889 37.41455723223 0 +43 24895 37.41471723223 0 +43 24895 37.41471723223 0 +43 24945 37.431276854108 0 +43 24945 37.431276854108 0 +43 24955 37.431436854108 0 +43 24955 37.431436854108 0 +43 24975 37.457384356842 0 +43 24975 37.457384356842 0 +43 24989 37.457544356842 0 +43 24989 37.457544356842 0 +43 25009 37.543993151421 0 +43 25009 37.543993151421 0 +43 25016 37.544153151421 0 +43 25016 37.544153151421 0 +43 25055 37.714557229579 0 +43 25055 37.714557229579 0 +43 25061 37.714717229579 0 +43 25061 37.714717229579 0 +43 25111 37.731276847205 0 +43 25111 37.731276847205 0 +43 25121 37.731436847205 0 +43 25121 37.731436847205 0 +43 25140 37.757384333389 0 +43 25140 37.757384333389 0 +43 25150 37.757544333389 0 +43 25150 37.757544333389 0 +43 25175 37.843993151421 0 +43 25175 37.843993151421 0 +43 25182 37.844153151421 0 +43 25182 37.844153151421 0 +43 25221 38.014557228941 0 +43 25221 38.014557228941 0 +43 25227 38.014717228941 0 +43 25227 38.014717228941 0 +43 25277 38.031276839602 0 +43 25277 38.031276839602 0 +43 25287 38.031436839602 0 +43 25287 38.031436839602 0 +43 25306 38.0573843092 0 +43 25306 38.0573843092 0 +43 25316 38.0575443092 0 +43 25316 38.0575443092 0 +43 25341 38.143993151421 0 +43 25341 38.143993151421 0 +43 25348 38.144153151421 0 +43 25348 38.144153151421 0 +43 25387 38.314557229416 0 +43 25387 38.314557229416 0 +43 25393 38.314717229416 0 +43 25393 38.314717229416 0 +43 25443 38.331276833175 0 +43 25443 38.331276833175 0 +43 25453 38.331436833175 0 +43 25453 38.331436833175 0 +43 25472 38.357384284464 0 +43 25472 38.357384284464 0 +43 25482 38.357544284464 0 +43 25482 38.357544284464 0 +43 25507 38.443993151421 0 +43 25507 38.443993151421 0 +43 25514 38.444153151421 0 +43 25514 38.444153151421 0 +43 25553 38.614557230908 0 +43 25553 38.614557230908 0 +43 25559 38.614717230908 0 +43 25559 38.614717230908 0 +43 25609 38.631276827949 0 +43 25609 38.631276827949 0 +43 25619 38.631436827949 0 +43 25619 38.631436827949 0 +43 25638 38.657384259185 0 +43 25638 38.657384259185 0 +43 25648 38.657544259185 0 +43 25648 38.657544259185 0 +43 25673 38.743993151421 0 +43 25673 38.743993151421 0 +43 25680 38.744153151421 0 +43 25680 38.744153151421 0 +43 25719 38.914557233464 0 +43 25719 38.914557233464 0 +43 25725 38.914717233464 0 +43 25725 38.914717233464 0 +43 25775 38.93127682395 0 +43 25775 38.93127682395 0 +43 25785 38.93143682395 0 +43 25785 38.93143682395 0 +43 25804 38.957384233306 0 +43 25804 38.957384233306 0 +43 25814 38.957544233306 0 +43 25814 38.957544233306 0 +43 25839 39.043993151421 0 +43 25839 39.043993151421 0 +43 25846 39.044153151421 0 +43 25846 39.044153151421 0 +43 25885 39.214557237033 0 +43 25885 39.214557237033 0 +43 25891 39.214717237033 0 +43 25891 39.214717237033 0 +43 25941 39.231276821205 0 +43 25941 39.231276821205 0 +43 25951 39.231436821205 0 +43 25951 39.231436821205 0 +43 25970 39.257384206756 0 +43 25970 39.257384206756 0 +43 25980 39.257544206756 0 +43 25980 39.257544206756 0 +43 26005 39.343993151421 0 +43 26005 39.343993151421 0 +43 26012 39.344153151421 0 +43 26012 39.344153151421 0 +43 26051 39.514557241575 0 +43 26051 39.514557241575 0 +43 26057 39.514717241575 0 +43 26057 39.514717241575 0 +43 26107 39.531276819725 0 +43 26107 39.531276819725 0 +43 26117 39.531436819725 0 +43 26117 39.531436819725 0 +43 26136 39.557384179549 0 +43 26136 39.557384179549 0 +43 26146 39.557544179549 0 +43 26146 39.557544179549 0 +43 26171 39.643993151421 0 +43 26171 39.643993151421 0 +43 26178 39.644153151421 0 +43 26178 39.644153151421 0 +43 26217 39.814557247083 0 +43 26217 39.814557247083 0 +43 26223 39.814717247083 0 +43 26223 39.814717247083 0 +43 26273 39.831276819522 0 +43 26273 39.831276819522 0 +43 26283 39.831436819522 0 +43 26283 39.831436819522 0 +43 26302 39.857384151671 0 +43 26302 39.857384151671 0 +43 26312 39.857544151671 0 +43 26312 39.857544151671 0 +43 26337 39.943993151421 0 +43 26337 39.943993151421 0 +43 26344 39.944153151421 0 +43 26344 39.944153151421 0 +43 26383 40.114557253513 0 +43 26383 40.114557253513 0 +43 26389 40.114717253513 0 +43 26389 40.114717253513 0 +43 26439 40.1312768206 0 +43 26439 40.1312768206 0 +43 26449 40.1314368206 0 +43 26449 40.1314368206 0 +43 26467 40.157384123679 0 +43 26467 40.157384123679 0 +43 26473 40.157544123679 0 +43 26473 40.157544123679 0 +43 26503 40.243993151421 0 +43 26503 40.243993151421 0 +43 26510 40.244153151421 0 +43 26510 40.244153151421 0 +43 26549 40.414557260797 0 +43 26549 40.414557260797 0 +43 26555 40.414717260797 0 +43 26555 40.414717260797 0 +43 26605 40.431276822952 0 +43 26605 40.431276822952 0 +43 26615 40.431436822952 0 +43 26615 40.431436822952 0 +43 26633 40.457384095641 0 +43 26633 40.457384095641 0 +43 26639 40.457544095641 0 +43 26639 40.457544095641 0 +43 26669 40.543993151421 0 +43 26669 40.543993151421 0 +43 26676 40.544153151421 0 +43 26676 40.544153151421 0 +43 26715 40.714557269001 0 +43 26715 40.714557269001 0 +43 26721 40.714717269001 0 +43 26721 40.714717269001 0 +43 26744 40.72439933755 0 +43 26744 40.72439933755 0 +43 26758 40.72455933755 0 +43 26758 40.72455933755 0 +43 26775 40.731276826556 0 +43 26775 40.731276826556 0 +43 26785 40.731436826556 0 +43 26785 40.731436826556 0 +43 26803 40.757384067729 0 +43 26803 40.757384067729 0 +43 26809 40.757544067729 0 +43 26809 40.757544067729 0 +43 26839 40.843993151421 0 +43 26839 40.843993151421 0 +43 26846 40.844153151421 0 +43 26846 40.844153151421 0 +43 26889 41.014557277925 0 +43 26889 41.014557277925 0 +43 26895 41.014717277925 0 +43 26895 41.014717277925 0 +43 26918 41.024399324799 0 +43 26918 41.024399324799 0 +43 26932 41.024559324799 0 +43 26932 41.024559324799 0 +43 26949 41.031276831396 0 +43 26949 41.031276831396 0 +43 26959 41.031436831396 0 +43 26959 41.031436831396 0 +43 26977 41.057384039737 0 +43 26977 41.057384039737 0 +43 26983 41.057544039737 0 +43 26983 41.057544039737 0 +43 27013 41.143993151421 0 +43 27013 41.143993151421 0 +43 27020 41.144153151421 0 +43 27020 41.144153151421 0 +43 27063 41.314557287623 0 +43 27063 41.314557287623 0 +43 27069 41.314717287623 0 +43 27069 41.314717287623 0 +43 27092 41.324399312788 0 +43 27092 41.324399312788 0 +43 27106 41.324559312788 0 +43 27106 41.324559312788 0 +43 27123 41.331276837463 0 +43 27123 41.331276837463 0 +43 27133 41.331436837463 0 +43 27133 41.331436837463 0 +43 27151 41.357384011756 0 +43 27151 41.357384011756 0 +43 27157 41.357544011756 0 +43 27157 41.357544011756 0 +43 27187 41.443993151421 0 +43 27187 41.443993151421 0 +43 27194 41.444153151421 0 +43 27194 41.444153151421 0 +43 27237 41.614557298022 0 +43 27237 41.614557298022 0 +43 27243 41.614717298022 0 +43 27243 41.614717298022 0 +43 27266 41.624399301583 0 +43 27266 41.624399301583 0 +43 27280 41.624559301583 0 +43 27280 41.624559301583 0 +43 27297 41.631276844699 0 +43 27297 41.631276844699 0 +43 27307 41.631436844699 0 +43 27307 41.631436844699 0 +43 27325 41.657383983797 0 +43 27325 41.657383983797 0 +43 27331 41.657543983797 0 +43 27331 41.657543983797 0 +43 27361 41.743993151421 0 +43 27361 41.743993151421 0 +43 27368 41.744153151421 0 +43 27368 41.744153151421 0 +43 27411 41.914557309216 0 +43 27411 41.914557309216 0 +43 27417 41.914717309216 0 +43 27417 41.914717309216 0 +43 27440 41.924399291388 0 +43 27440 41.924399291388 0 +43 27454 41.924559291388 0 +43 27454 41.924559291388 0 +43 27471 41.931276852916 0 +43 27471 41.931276852916 0 +43 27481 41.931436852916 0 +43 27481 41.931436852916 0 +43 27499 41.957383956357 0 +43 27499 41.957383956357 0 +43 27505 41.957543956357 0 +43 27505 41.957543956357 0 +43 27535 42.043993151421 0 +43 27535 42.043993151421 0 +43 27542 42.044153151421 0 +43 27542 42.044153151421 0 +43 27585 42.214557321205 0 +43 27585 42.214557321205 0 +43 27591 42.214717321205 0 +43 27591 42.214717321205 0 +43 27614 42.224399282466 0 +43 27614 42.224399282466 0 +43 27628 42.224559282466 0 +43 27628 42.224559282466 0 +43 27645 42.231276861741 0 +43 27645 42.231276861741 0 +43 27655 42.231436861741 0 +43 27655 42.231436861741 0 +43 27673 42.257383930301 0 +43 27673 42.257383930301 0 +43 27679 42.257543930301 0 +43 27679 42.257543930301 0 +43 27709 42.343993151421 0 +43 27709 42.343993151421 0 +43 27716 42.344153151421 0 +43 27716 42.344153151421 0 +43 27759 42.514557333849 0 +43 27759 42.514557333849 0 +43 27765 42.514717333849 0 +43 27765 42.514717333849 0 +43 27788 42.52439927473 0 +43 27788 42.52439927473 0 +43 27802 42.52455927473 0 +43 27802 42.52455927473 0 +43 27819 42.531276870996 0 +43 27819 42.531276870996 0 +43 27829 42.531436870996 0 +43 27829 42.531436870996 0 +43 27847 42.557383905564 0 +43 27847 42.557383905564 0 +43 27853 42.557543905564 0 +43 27853 42.557543905564 0 +43 27883 42.643993151421 0 +43 27883 42.643993151421 0 +43 27890 42.644153151421 0 +43 27890 42.644153151421 0 +43 27933 42.814557347041 0 +43 27933 42.814557347041 0 +43 27939 42.814717347041 0 +43 27939 42.814717347041 0 +43 27962 42.824399268076 0 +43 27962 42.824399268076 0 +43 27976 42.824559268076 0 +43 27976 42.824559268076 0 +43 27993 42.831276880478 0 +43 27993 42.831276880478 0 +43 28003 42.831436880478 0 +43 28003 42.831436880478 0 +43 28021 42.857383882214 0 +43 28021 42.857383882214 0 +43 28027 42.857543882214 0 +43 28027 42.857543882214 0 +43 28057 42.943993151421 0 +43 28057 42.943993151421 0 +43 28064 42.944153151421 0 +43 28064 42.944153151421 0 +43 28108 43.114557360624 0 +43 28108 43.114557360624 0 +43 28118 43.114717360624 0 +43 28118 43.114717360624 0 +43 28136 43.124399262415 0 +43 28136 43.124399262415 0 +43 28150 43.124559262415 0 +43 28150 43.124559262415 0 +43 28167 43.131276890097 0 +43 28167 43.131276890097 0 +43 28177 43.131436890097 0 +43 28177 43.131436890097 0 +43 28195 43.157383860218 0 +43 28195 43.157383860218 0 +43 28201 43.157543860218 0 +43 28201 43.157543860218 0 +43 28231 43.243993151421 0 +43 28231 43.243993151421 0 +43 28238 43.244153151421 0 +43 28238 43.244153151421 0 +43 28282 43.414557374505 0 +43 28282 43.414557374505 0 +43 28292 43.414717374505 0 +43 28292 43.414717374505 0 +43 28310 43.424399257654 0 +43 28310 43.424399257654 0 +43 28324 43.424559257654 0 +43 28324 43.424559257654 0 +43 28341 43.431276899681 0 +43 28341 43.431276899681 0 +43 28351 43.431436899681 0 +43 28351 43.431436899681 0 +43 28369 43.45738383957 0 +43 28369 43.45738383957 0 +43 28375 43.45754383957 0 +43 28375 43.45754383957 0 +43 28405 43.543993151421 0 +43 28405 43.543993151421 0 +43 28412 43.544153151421 0 +43 28412 43.544153151421 0 +43 28456 43.714557388346 0 +43 28456 43.714557388346 0 +43 28466 43.714717388346 0 +43 28466 43.714717388346 0 +43 28484 43.724399253693 0 +43 28484 43.724399253693 0 +43 28498 43.724559253693 0 +43 28498 43.724559253693 0 +43 28515 43.73127690914 0 +43 28515 43.73127690914 0 +43 28525 43.73143690914 0 +43 28525 43.73143690914 0 +43 28543 43.757383820288 0 +43 28543 43.757383820288 0 +43 28549 43.757543820288 0 +43 28549 43.757543820288 0 +43 28579 43.843993151421 0 +43 28579 43.843993151421 0 +43 28586 43.844153151421 0 +43 28586 43.844153151421 0 +43 28630 44.014557401083 0 +43 28630 44.014557401083 0 +43 28640 44.014717401083 0 +43 28640 44.014717401083 0 +43 28658 44.024399250434 0 +43 28658 44.024399250434 0 +43 28672 44.024559250434 0 +43 28672 44.024559250434 0 +43 28689 44.031276918359 0 +43 28689 44.031276918359 0 +43 28699 44.031436918359 0 +43 28699 44.031436918359 0 +43 28717 44.057383802369 0 +43 28717 44.057383802369 0 +43 28723 44.057543802369 0 +43 28723 44.057543802369 0 +43 28753 44.143993151421 0 +43 28753 44.143993151421 0 +43 28760 44.144153151421 0 +43 28760 44.144153151421 0 +43 28804 44.31455741262 0 +43 28804 44.31455741262 0 +43 28814 44.31471741262 0 +43 28814 44.31471741262 0 +43 28831 44.324399247783 0 +43 28831 44.324399247783 0 +43 28841 44.324559247783 0 +43 28841 44.324559247783 0 +43 28887 44.357383786728 0 +43 28887 44.357383786728 0 +43 28893 44.357543786728 0 +43 28893 44.357543786728 0 +43 28923 44.443993151421 0 +43 28923 44.443993151421 0 +43 28930 44.444153151421 0 +43 28930 44.444153151421 0 +43 28970 44.614557422913 0 +43 28970 44.614557422913 0 +43 28980 44.614717422913 0 +43 28980 44.614717422913 0 +43 28997 44.624399245654 0 +43 28997 44.624399245654 0 +43 29007 44.624559245654 0 +43 29007 44.624559245654 0 +43 29053 44.657383773768 0 +43 29053 44.657383773768 0 +43 29059 44.657543773768 0 +43 29059 44.657543773768 0 +43 29089 44.743993151421 0 +43 29089 44.743993151421 0 +43 29096 44.744153151421 0 +43 29096 44.744153151421 0 +43 29136 44.914557431937 0 +43 29136 44.914557431937 0 +43 29146 44.914717431937 0 +43 29146 44.914717431937 0 +43 29163 44.924399243982 0 +43 29163 44.924399243982 0 +43 29173 44.924559243982 0 +43 29173 44.924559243982 0 +43 29219 44.957383763502 0 +43 29219 44.957383763502 0 +43 29225 44.957543763502 0 +43 29225 44.957543763502 0 +43 29255 45.043993151421 0 +43 29255 45.043993151421 0 +43 29262 45.044153151421 0 +43 29262 45.044153151421 0 +43 29302 45.21455743966 0 +43 29302 45.21455743966 0 +43 29312 45.21471743966 0 +43 29312 45.21471743966 0 +43 29329 45.224399242636 0 +43 29329 45.224399242636 0 +43 29339 45.224559242636 0 +43 29339 45.224559242636 0 +43 29385 45.257383755525 0 +43 29385 45.257383755525 0 +43 29391 45.257543755525 0 +43 29391 45.257543755525 0 +43 29421 45.343993151421 0 +43 29421 45.343993151421 0 +43 29428 45.344153151421 0 +43 29428 45.344153151421 0 +43 29468 45.514557446271 0 +43 29468 45.514557446271 0 +43 29478 45.514717446271 0 +43 29478 45.514717446271 0 +43 29495 45.524399241497 0 +43 29495 45.524399241497 0 +43 29505 45.524559241497 0 +43 29505 45.524559241497 0 +43 29551 45.557383748928 0 +43 29551 45.557383748928 0 +43 29557 45.557543748928 0 +43 29557 45.557543748928 0 +43 29587 45.643993151421 0 +43 29587 45.643993151421 0 +43 29594 45.644153151421 0 +43 29594 45.644153151421 0 +43 29634 45.814557453426 0 +43 29634 45.814557453426 0 +43 29644 45.814717453426 0 +43 29644 45.814717453426 0 +43 29661 45.824399240537 0 +43 29661 45.824399240537 0 +43 29671 45.824559240537 0 +43 29671 45.824559240537 0 +43 29717 45.857383742284 0 +43 29717 45.857383742284 0 +43 29723 45.857543742284 0 +43 29723 45.857543742284 0 +43 29753 45.943993151421 0 +43 29753 45.943993151421 0 +43 29760 45.944153151421 0 +43 29760 45.944153151421 0 +43 29800 46.11455746131 0 +43 29800 46.11455746131 0 +43 29810 46.11471746131 0 +43 29810 46.11471746131 0 +43 29827 46.124399236922 0 +43 29827 46.124399236922 0 +43 29837 46.124559236922 0 +43 29837 46.124559236922 0 +43 29883 46.157383734922 0 +43 29883 46.157383734922 0 +43 29889 46.157543734922 0 +43 29889 46.157543734922 0 +43 29919 46.243993151421 0 +43 29919 46.243993151421 0 +43 29926 46.244153151421 0 +43 29926 46.244153151421 0 +43 29966 46.414557469463 0 +43 29966 46.414557469463 0 +43 29976 46.414717469463 0 +43 29976 46.414717469463 0 +43 29993 46.424399227691 0 +43 29993 46.424399227691 0 +43 30003 46.424559227691 0 +43 30003 46.424559227691 0 +43 30049 46.457383726677 0 +43 30049 46.457383726677 0 +43 30055 46.457543726677 0 +43 30055 46.457543726677 0 +43 30085 46.543993151421 0 +43 30085 46.543993151421 0 +43 30092 46.544153151421 0 +43 30092 46.544153151421 0 +43 30132 46.7145574756 0 +43 30132 46.7145574756 0 +43 30142 46.7147174756 0 +43 30142 46.7147174756 0 +43 30159 46.724399216308 0 +43 30159 46.724399216308 0 +43 30169 46.724559216308 0 +43 30169 46.724559216308 0 +43 30215 46.757383717477 0 +43 30215 46.757383717477 0 +43 30221 46.757543717477 0 +43 30221 46.757543717477 0 +43 30251 46.843993151421 0 +43 30251 46.843993151421 0 +43 30258 46.844153151421 0 +43 30258 46.844153151421 0 +43 30298 47.014557477752 0 +43 30298 47.014557477752 0 +43 30308 47.014717477752 0 +43 30308 47.014717477752 0 +43 30325 47.024399204936 0 +43 30325 47.024399204936 0 +43 30335 47.024559204936 0 +43 30335 47.024559204936 0 +43 30381 47.057383707399 0 +43 30381 47.057383707399 0 +43 30387 47.057543707399 0 +43 30387 47.057543707399 0 +43 30417 47.143993151421 0 +43 30417 47.143993151421 0 +43 30424 47.144153151421 0 +43 30424 47.144153151421 0 +43 30464 47.31455747801 0 +43 30464 47.31455747801 0 +43 30474 47.31471747801 0 +43 30474 47.31471747801 0 +43 30491 47.324399193637 0 +43 30491 47.324399193637 0 +43 30501 47.324559193637 0 +43 30501 47.324559193637 0 +43 30547 47.357383698008 0 +43 30547 47.357383698008 0 +43 30553 47.357543698008 0 +43 30553 47.357543698008 0 +43 30583 47.443993151421 0 +43 30583 47.443993151421 0 +43 30590 47.444153151421 0 +43 30590 47.444153151421 0 +43 30630 47.614557478274 0 +43 30630 47.614557478274 0 +43 30640 47.614717478274 0 +43 30640 47.614717478274 0 +43 30657 47.62439918244 0 +43 30657 47.62439918244 0 +43 30667 47.62455918244 0 +43 30667 47.62455918244 0 +43 30713 47.657383697458 0 +43 30713 47.657383697458 0 +43 30719 47.657543697458 0 +43 30719 47.657543697458 0 +43 30749 47.743993151421 0 +43 30749 47.743993151421 0 +43 30756 47.744153151421 0 +43 30756 47.744153151421 0 +43 30796 47.914557478544 0 +43 30796 47.914557478544 0 +43 30806 47.914717478544 0 +43 30806 47.914717478544 0 +43 30822 47.92439917133 0 +43 30822 47.92439917133 0 +43 30828 47.92455917133 0 +43 30828 47.92455917133 0 +43 30879 47.957383708789 0 +43 30879 47.957383708789 0 +43 30885 47.957543708789 0 +43 30885 47.957543708789 0 +43 30915 48.043993151421 0 +43 30915 48.043993151421 0 +43 30922 48.044153151421 0 +43 30922 48.044153151421 0 +43 30962 48.214557477888 0 +43 30962 48.214557477888 0 +43 30972 48.214717477888 0 +43 30972 48.214717477888 0 +43 30988 48.224399161344 0 +43 30988 48.224399161344 0 +43 30994 48.224559161344 0 +43 30994 48.224559161344 0 +43 31045 48.257383722862 0 +43 31045 48.257383722862 0 +43 31051 48.257543722862 0 +43 31051 48.257543722862 0 +43 31081 48.343993151421 0 +43 31081 48.343993151421 0 +43 31088 48.344153151421 0 +43 31088 48.344153151421 0 +43 31127 48.514557476625 0 +43 31127 48.514557476625 0 +43 31133 48.514717476625 0 +43 31133 48.514717476625 0 +43 31154 48.524399152109 0 +43 31154 48.524399152109 0 +43 31160 48.524559152109 0 +43 31160 48.524559152109 0 +43 31211 48.557383738369 0 +43 31211 48.557383738369 0 +43 31217 48.557543738369 0 +43 31217 48.557543738369 0 +43 31247 48.643993151421 0 +43 31247 48.643993151421 0 +43 31254 48.644153151421 0 +43 31254 48.644153151421 0 +43 31293 48.814557474634 0 +43 31293 48.814557474634 0 +43 31299 48.814717474634 0 +43 31299 48.814717474634 0 +43 31320 48.824399143836 0 +43 31320 48.824399143836 0 +43 31326 48.824559143836 0 +43 31326 48.824559143836 0 +43 31377 48.857383754702 0 +43 31377 48.857383754702 0 +43 31383 48.857543754702 0 +43 31383 48.857543754702 0 +43 31413 48.943993151421 0 +43 31413 48.943993151421 0 +43 31420 48.944153151421 0 +43 31420 48.944153151421 0 +43 31459 49.11455747139 0 +43 31459 49.11455747139 0 +43 31465 49.11471747139 0 +43 31465 49.11471747139 0 +43 31486 49.124399137291 0 +43 31486 49.124399137291 0 +43 31492 49.124559137291 0 +43 31492 49.124559137291 0 +43 31543 49.157383770654 0 +43 31543 49.157383770654 0 +43 31549 49.157543770654 0 +43 31549 49.157543770654 0 +43 31579 49.243993151421 0 +43 31579 49.243993151421 0 +43 31586 49.244153151421 0 +43 31586 49.244153151421 0 +43 31625 49.414557467632 0 +43 31625 49.414557467632 0 +43 31631 49.414717467632 0 +43 31631 49.414717467632 0 +43 31652 49.424399131732 0 +43 31652 49.424399131732 0 +43 31658 49.424559131732 0 +43 31658 49.424559131732 0 +43 31709 49.457383786041 0 +43 31709 49.457383786041 0 +43 31715 49.457543786041 0 +43 31715 49.457543786041 0 +43 31745 49.543993151421 0 +43 31745 49.543993151421 0 +43 31752 49.544153151421 0 +43 31752 49.544153151421 0 +43 31791 49.71455746338 0 +43 31791 49.71455746338 0 +43 31797 49.71471746338 0 +43 31797 49.71471746338 0 +43 31819 49.724399127231 0 +43 31819 49.724399127231 0 +43 31829 49.724559127231 0 +43 31829 49.724559127231 0 +43 31875 49.757383800762 0 +43 31875 49.757383800762 0 +43 31881 49.757543800762 0 +43 31881 49.757543800762 0 +43 31911 49.843993151421 0 +43 31911 49.843993151421 0 +43 31918 49.844153151421 0 +43 31918 49.844153151421 0 +43 31957 50.014557459048 0 +43 31957 50.014557459048 0 +43 31963 50.014717459048 0 +43 31963 50.014717459048 0 +43 31985 50.024399123312 0 +43 31985 50.024399123312 0 +43 31995 50.024559123312 0 +43 31995 50.024559123312 0 +43 32041 50.057383815148 0 +43 32041 50.057383815148 0 +43 32047 50.057543815148 0 +43 32047 50.057543815148 0 +43 32077 50.143993151421 0 +43 32077 50.143993151421 0 +43 32084 50.144153151421 0 +43 32084 50.144153151421 0 +43 32123 50.314557454631 0 +43 32123 50.314557454631 0 +43 32129 50.314717454631 0 +43 32129 50.314717454631 0 +43 32151 50.324399119987 0 +43 32151 50.324399119987 0 +43 32161 50.324559119987 0 +43 32161 50.324559119987 0 +43 32207 50.357383829549 0 +43 32207 50.357383829549 0 +43 32213 50.357543829549 0 +43 32213 50.357543829549 0 +43 32243 50.443993151421 0 +43 32243 50.443993151421 0 +43 32250 50.444153151421 0 +43 32250 50.444153151421 0 +43 32289 50.614557450054 0 +43 32289 50.614557450054 0 +43 32295 50.614717450054 0 +43 32295 50.614717450054 0 +43 32317 50.624399117227 0 +43 32317 50.624399117227 0 +43 32327 50.624559117227 0 +43 32327 50.624559117227 0 +43 32373 50.657383844282 0 +43 32373 50.657383844282 0 +43 32379 50.657543844282 0 +43 32379 50.657543844282 0 +43 32409 50.743993151421 0 +43 32409 50.743993151421 0 +43 32416 50.744153151421 0 +43 32416 50.744153151421 0 +43 32455 50.914557445285 0 +43 32455 50.914557445285 0 +43 32461 50.914717445285 0 +43 32461 50.914717445285 0 +43 32483 50.924399115103 0 +43 32483 50.924399115103 0 +43 32493 50.924559115103 0 +43 32493 50.924559115103 0 +43 32539 50.957383859315 0 +43 32539 50.957383859315 0 +43 32545 50.957543859315 0 +43 32545 50.957543859315 0 +43 32575 51.043993151421 0 +43 32575 51.043993151421 0 +43 32582 51.044153151421 0 +43 32582 51.044153151421 0 +43 32621 51.21455744041 0 +43 32621 51.21455744041 0 +43 32627 51.21471744041 0 +43 32627 51.21471744041 0 +43 32645 51.224399113583 0 +43 32645 51.224399113583 0 +43 32655 51.224559113583 0 +43 32655 51.224559113583 0 +43 32701 51.257383874742 0 +43 32701 51.257383874742 0 +43 32707 51.257543874742 0 +43 32707 51.257543874742 0 +43 32733 51.343993151421 0 +43 32733 51.343993151421 0 +43 32740 51.344153151421 0 +43 32740 51.344153151421 0 +43 32779 51.514557435458 0 +43 32779 51.514557435458 0 +43 32785 51.514717435458 0 +43 32785 51.514717435458 0 +43 32803 51.524399112627 0 +43 32803 51.524399112627 0 +43 32813 51.524559112627 0 +43 32813 51.524559112627 0 +43 32863 51.557383890499 0 +43 32863 51.557383890499 0 +43 32869 51.557543890499 0 +43 32869 51.557543890499 0 +43 32899 51.643993151421 0 +43 32899 51.643993151421 0 +43 32906 51.644153151421 0 +43 32906 51.644153151421 0 +43 32945 51.814557430365 0 +43 32945 51.814557430365 0 +43 32951 51.814717430365 0 +43 32951 51.814717430365 0 +43 32969 51.824399112353 0 +43 32969 51.824399112353 0 +43 32979 51.824559112353 0 +43 32979 51.824559112353 0 +43 33029 51.857383906635 0 +43 33029 51.857383906635 0 +43 33035 51.857543906635 0 +43 33035 51.857543906635 0 +43 33065 51.943993151421 0 +43 33065 51.943993151421 0 +43 33072 51.944153151421 0 +43 33072 51.944153151421 0 +43 33111 52.114557425224 0 +43 33111 52.114557425224 0 +43 33117 52.114717425224 0 +43 33117 52.114717425224 0 +43 33135 52.124399112693 0 +43 33135 52.124399112693 0 +43 33145 52.124559112693 0 +43 33145 52.124559112693 0 +43 33195 52.157383923181 0 +43 33195 52.157383923181 0 +43 33201 52.157543923181 0 +43 33201 52.157543923181 0 +43 33231 52.243993151421 0 +43 33231 52.243993151421 0 +43 33238 52.244153151421 0 +43 33238 52.244153151421 0 +43 33277 52.414557420182 0 +43 33277 52.414557420182 0 +43 33283 52.414717420182 0 +43 33283 52.414717420182 0 +43 33301 52.424399113556 0 +43 33301 52.424399113556 0 +43 33311 52.424559113556 0 +43 33311 52.424559113556 0 +43 33361 52.457383940072 0 +43 33361 52.457383940072 0 +43 33367 52.457543940072 0 +43 33367 52.457543940072 0 +43 33397 52.543993151421 0 +43 33397 52.543993151421 0 +43 33404 52.544153151421 0 +43 33404 52.544153151421 0 +43 33443 52.714557415208 0 +43 33443 52.714557415208 0 +43 33449 52.714717415208 0 +43 33449 52.714717415208 0 +43 33467 52.724399114954 0 +43 33467 52.724399114954 0 +43 33477 52.724559114954 0 +43 33477 52.724559114954 0 +43 33527 52.757383957286 0 +43 33527 52.757383957286 0 +43 33533 52.757543957286 0 +43 33533 52.757543957286 0 +43 33563 52.843993151421 0 +43 33563 52.843993151421 0 +43 33570 52.844153151421 0 +43 33570 52.844153151421 0 +43 33609 53.014557410369 0 +43 33609 53.014557410369 0 +43 33615 53.014717410369 0 +43 33615 53.014717410369 0 +43 33633 53.024399116886 0 +43 33633 53.024399116886 0 +43 33643 53.024559116886 0 +43 33643 53.024559116886 0 +43 33693 53.057383974792 0 +43 33693 53.057383974792 0 +43 33699 53.057543974792 0 +43 33699 53.057543974792 0 +43 33729 53.143993151421 0 +43 33729 53.143993151421 0 +43 33736 53.144153151421 0 +43 33736 53.144153151421 0 +43 33775 53.32439911934 0 +43 33775 53.32439911934 0 +43 33784 53.32455911934 0 +43 33784 53.32455911934 0 +43 33830 53.357383991743 0 +43 33830 53.357383991743 0 +43 33835 53.357543991743 0 +43 33835 53.357543991743 0 +43 33863 53.443993151421 0 +43 33863 53.443993151421 0 +43 33869 53.444153151421 0 +43 33869 53.444153151421 0 +43 33902 53.624399122413 0 +43 33902 53.624399122413 0 +43 33911 53.624559122413 0 +43 33911 53.624559122413 0 +43 33957 53.657384007982 0 +43 33957 53.657384007982 0 +43 33962 53.657544007982 0 +43 33962 53.657544007982 0 +43 33990 53.743993151421 0 +43 33990 53.743993151421 0 +43 33996 53.744153151421 0 +43 33996 53.744153151421 0 +43 34029 53.924399125883 0 +43 34029 53.924399125883 0 +43 34038 53.924559125883 0 +43 34038 53.924559125883 0 +43 34084 53.957384023455 0 +43 34084 53.957384023455 0 +43 34089 53.957544023455 0 +43 34089 53.957544023455 0 +43 34117 54.043993151421 0 +43 34117 54.043993151421 0 +43 34123 54.044153151421 0 +43 34123 54.044153151421 0 +43 34156 54.224399129356 0 +43 34156 54.224399129356 0 +43 34165 54.224559129356 0 +43 34165 54.224559129356 0 +43 34211 54.257384037982 0 +43 34211 54.257384037982 0 +43 34216 54.257544037982 0 +43 34216 54.257544037982 0 +43 34244 54.343993151421 0 +43 34244 54.343993151421 0 +43 34250 54.344153151421 0 +43 34250 54.344153151421 0 +43 34283 54.524399132878 0 +43 34283 54.524399132878 0 +43 34292 54.524559132878 0 +43 34292 54.524559132878 0 +43 34338 54.557384051792 0 +43 34338 54.557384051792 0 +43 34343 54.557544051792 0 +43 34343 54.557544051792 0 +43 34371 54.643993151421 0 +43 34371 54.643993151421 0 +43 34377 54.644153151421 0 +43 34377 54.644153151421 0 +43 34410 54.824399136418 0 +43 34410 54.824399136418 0 +43 34419 54.824559136418 0 +43 34419 54.824559136418 0 +43 34465 54.857384066271 0 +43 34465 54.857384066271 0 +43 34470 54.857544066271 0 +43 34470 54.857544066271 0 +43 34498 54.943993151421 0 +43 34498 54.943993151421 0 +43 34504 54.944153151421 0 +43 34504 54.944153151421 0 +43 34537 55.124399139869 0 +43 34537 55.124399139869 0 +43 34546 55.124559139869 0 +43 34546 55.124559139869 0 +43 34592 55.157384081514 0 +43 34592 55.157384081514 0 +43 34597 55.157544081514 0 +43 34597 55.157544081514 0 +43 34625 55.243993151421 0 +43 34625 55.243993151421 0 +43 34631 55.244153151421 0 +43 34631 55.244153151421 0 +43 34664 55.424399143329 0 +43 34664 55.424399143329 0 +43 34673 55.424559143329 0 +43 34673 55.424559143329 0 +43 34719 55.457384097382 0 +43 34719 55.457384097382 0 +43 34724 55.457544097382 0 +43 34724 55.457544097382 0 +43 34752 55.543993151421 0 +43 34752 55.543993151421 0 +43 34758 55.544153151421 0 +43 34758 55.544153151421 0 +43 34791 55.724399146854 0 +43 34791 55.724399146854 0 +43 34800 55.724559146854 0 +43 34800 55.724559146854 0 +43 34846 55.757384113825 0 +43 34846 55.757384113825 0 +43 34851 55.757544113825 0 +43 34851 55.757544113825 0 +43 34879 55.843993151421 0 +43 34879 55.843993151421 0 +43 34885 55.844153151421 0 +43 34885 55.844153151421 0 +43 34918 56.024399150367 0 +43 34918 56.024399150367 0 +43 34927 56.024559150367 0 +43 34927 56.024559150367 0 +43 34973 56.057384130858 0 +43 34973 56.057384130858 0 +43 34978 56.057544130858 0 +43 34978 56.057544130858 0 +43 35006 56.143993151421 0 +43 35006 56.143993151421 0 +43 35012 56.144153151421 0 +43 35012 56.144153151421 0 +43 35045 56.324399153849 0 +43 35045 56.324399153849 0 +43 35054 56.324559153849 0 +43 35054 56.324559153849 0 +43 35101 56.357384148407 0 +43 35101 56.357384148407 0 +43 35110 56.357544148407 0 +43 35110 56.357544148407 0 +43 35133 56.443993151421 0 +43 35133 56.443993151421 0 +43 35139 56.444153151421 0 +43 35139 56.444153151421 0 +44 356 4.1 0 +44 356 4.1 0 +44 396 4.131276647939 0 +44 396 4.131276647939 0 +44 401 4.131436647939 0 +44 401 4.131436647939 0 +44 493 4.43127664842 0 +44 493 4.43127664842 0 +44 498 4.43143664842 0 +44 498 4.43143664842 0 +44 552 4.543993151421 0 +44 552 4.543993151421 0 +44 558 4.544153151421 0 +44 558 4.544153151421 0 +44 612 4.731276648452 0 +44 612 4.731276648452 0 +44 617 4.731436648452 0 +44 617 4.731436648452 0 +44 671 4.843993151421 0 +44 671 4.843993151421 0 +44 677 4.844153151421 0 +44 677 4.844153151421 0 +44 731 5.031276648071 0 +44 731 5.031276648071 0 +44 736 5.031436648071 0 +44 736 5.031436648071 0 +44 791 5.143993151421 0 +44 791 5.143993151421 0 +44 798 5.144153151421 0 +44 798 5.144153151421 0 +44 861 5.331276647275 0 +44 861 5.331276647275 0 +44 867 5.331436647275 0 +44 867 5.331436647275 0 +44 925 5.443993151421 0 +44 925 5.443993151421 0 +44 932 5.444153151421 0 +44 932 5.444153151421 0 +44 995 5.631276646135 0 +44 995 5.631276646135 0 +44 1001 5.631436646135 0 +44 1001 5.631436646135 0 +44 1055 5.693585836534 0 +44 1055 5.693585836534 0 +44 1061 5.693745836534 0 +44 1061 5.693745836534 0 +44 1083 5.743993151421 0 +44 1083 5.743993151421 0 +44 1090 5.744153151421 0 +44 1090 5.744153151421 0 +44 1153 5.931276644725 0 +44 1153 5.931276644725 0 +44 1159 5.931436644725 0 +44 1159 5.931436644725 0 +44 1213 5.993585836591 0 +44 1213 5.993585836591 0 +44 1219 5.993745836591 0 +44 1219 5.993745836591 0 +44 1241 6.043993151421 0 +44 1241 6.043993151421 0 +44 1248 6.044153151421 0 +44 1248 6.044153151421 0 +44 1320 6.231276643012 0 +44 1320 6.231276643012 0 +44 1331 6.231436643012 0 +44 1331 6.231436643012 0 +44 1391 6.293585836659 0 +44 1391 6.293585836659 0 +44 1398 6.293745836659 0 +44 1398 6.293745836659 0 +44 1422 6.343993151421 0 +44 1422 6.343993151421 0 +44 1430 6.344153151421 0 +44 1430 6.344153151421 0 +44 1536 6.531276640981 0 +44 1536 6.531276640981 0 +44 1547 6.531436640981 0 +44 1547 6.531436640981 0 +44 1608 6.593585836741 0 +44 1608 6.593585836741 0 +44 1615 6.593745836741 0 +44 1615 6.593745836741 0 +44 1639 6.643993151421 0 +44 1639 6.643993151421 0 +44 1647 6.644153151421 0 +44 1647 6.644153151421 0 +44 1753 6.83127663868 0 +44 1753 6.83127663868 0 +44 1764 6.83143663868 0 +44 1764 6.83143663868 0 +44 1825 6.893585836836 0 +44 1825 6.893585836836 0 +44 1832 6.893745836836 0 +44 1832 6.893745836836 0 +44 1856 6.943993151421 0 +44 1856 6.943993151421 0 +44 1864 6.944153151421 0 +44 1864 6.944153151421 0 +44 1970 7.131276636128 0 +44 1970 7.131276636128 0 +44 1981 7.131436636128 0 +44 1981 7.131436636128 0 +44 2042 7.193585836946 0 +44 2042 7.193585836946 0 +44 2049 7.193745836946 0 +44 2049 7.193745836946 0 +44 2073 7.243993151421 0 +44 2073 7.243993151421 0 +44 2081 7.244153151421 0 +44 2081 7.244153151421 0 +44 2187 7.431276633301 0 +44 2187 7.431276633301 0 +44 2198 7.431436633301 0 +44 2198 7.431436633301 0 +44 2259 7.493585837077 0 +44 2259 7.493585837077 0 +44 2266 7.493745837077 0 +44 2266 7.493745837077 0 +44 2290 7.543993151421 0 +44 2290 7.543993151421 0 +44 2298 7.544153151421 0 +44 2298 7.544153151421 0 +44 2404 7.73127663025 0 +44 2404 7.73127663025 0 +44 2415 7.73143663025 0 +44 2415 7.73143663025 0 +44 2476 7.79358583722 0 +44 2476 7.79358583722 0 +44 2483 7.79374583722 0 +44 2483 7.79374583722 0 +44 2507 7.843993151421 0 +44 2507 7.843993151421 0 +44 2515 7.844153151421 0 +44 2515 7.844153151421 0 +44 2589 8.024399341429 0 +44 2589 8.024399341429 0 +44 2608 8.024559341429 0 +44 2608 8.024559341429 0 +44 2622 8.031276627008 0 +44 2622 8.031276627008 0 +44 2637 8.031436627008 0 +44 2637 8.031436627008 0 +44 2693 8.093585837381 0 +44 2693 8.093585837381 0 +44 2700 8.093745837381 0 +44 2700 8.093745837381 0 +44 2724 8.143993151421 0 +44 2724 8.143993151421 0 +44 2732 8.144153151421 0 +44 2732 8.144153151421 0 +44 2806 8.324399339726 0 +44 2806 8.324399339726 0 +44 2825 8.324559339726 0 +44 2825 8.324559339726 0 +44 2843 8.331276623516 0 +44 2843 8.331276623516 0 +44 2858 8.331436623516 0 +44 2858 8.331436623516 0 +44 2914 8.393585837564 0 +44 2914 8.393585837564 0 +44 2921 8.393745837564 0 +44 2921 8.393745837564 0 +44 2945 8.443993151421 0 +44 2945 8.443993151421 0 +44 2953 8.444153151421 0 +44 2953 8.444153151421 0 +44 3031 8.624399337937 0 +44 3031 8.624399337937 0 +44 3050 8.624559337937 0 +44 3050 8.624559337937 0 +44 3068 8.631276619892 0 +44 3068 8.631276619892 0 +44 3083 8.631436619892 0 +44 3083 8.631436619892 0 +44 3139 8.693585837758 0 +44 3139 8.693585837758 0 +44 3146 8.693745837758 0 +44 3146 8.693745837758 0 +44 3170 8.743993151421 0 +44 3170 8.743993151421 0 +44 3178 8.744153151421 0 +44 3178 8.744153151421 0 +44 3256 8.924399336079 0 +44 3256 8.924399336079 0 +44 3275 8.924559336079 0 +44 3275 8.924559336079 0 +44 3293 8.931276616157 0 +44 3293 8.931276616157 0 +44 3308 8.931436616157 0 +44 3308 8.931436616157 0 +44 3364 8.993585837958 0 +44 3364 8.993585837958 0 +44 3371 8.993745837958 0 +44 3371 8.993745837958 0 +44 3395 9.043993151421 0 +44 3395 9.043993151421 0 +44 3403 9.044153151421 0 +44 3403 9.044153151421 0 +44 3481 9.2243993342 0 +44 3481 9.2243993342 0 +44 3500 9.2245593342 0 +44 3500 9.2245593342 0 +44 3518 9.231276612299 0 +44 3518 9.231276612299 0 +44 3533 9.231436612299 0 +44 3533 9.231436612299 0 +44 3589 9.293585838174 0 +44 3589 9.293585838174 0 +44 3596 9.293745838174 0 +44 3596 9.293745838174 0 +44 3620 9.343993151421 0 +44 3620 9.343993151421 0 +44 3628 9.344153151421 0 +44 3628 9.344153151421 0 +44 3706 9.524399332304 0 +44 3706 9.524399332304 0 +44 3725 9.524559332304 0 +44 3725 9.524559332304 0 +44 3743 9.531276608424 0 +44 3743 9.531276608424 0 +44 3758 9.531436608424 0 +44 3758 9.531436608424 0 +44 3814 9.593585838387 0 +44 3814 9.593585838387 0 +44 3821 9.593745838387 0 +44 3821 9.593745838387 0 +44 3845 9.643993151421 0 +44 3845 9.643993151421 0 +44 3853 9.644153151421 0 +44 3853 9.644153151421 0 +44 3931 9.824399330432 0 +44 3931 9.824399330432 0 +44 3950 9.824559330432 0 +44 3950 9.824559330432 0 +44 3968 9.831276604546 0 +44 3968 9.831276604546 0 +44 3983 9.831436604546 0 +44 3983 9.831436604546 0 +44 4039 9.89358583861 0 +44 4039 9.89358583861 0 +44 4046 9.89374583861 0 +44 4046 9.89374583861 0 +44 4070 9.943993151421 0 +44 4070 9.943993151421 0 +44 4078 9.944153151421 0 +44 4078 9.944153151421 0 +44 4156 10.124399328574 0 +44 4156 10.124399328574 0 +44 4175 10.124559328574 0 +44 4175 10.124559328574 0 +44 4193 10.13127660067 0 +44 4193 10.13127660067 0 +44 4208 10.13143660067 0 +44 4208 10.13143660067 0 +44 4264 10.193585838842 0 +44 4264 10.193585838842 0 +44 4271 10.193745838842 0 +44 4271 10.193745838842 0 +44 4295 10.243993151421 0 +44 4295 10.243993151421 0 +44 4303 10.244153151421 0 +44 4303 10.244153151421 0 +44 4381 10.424399326766 0 +44 4381 10.424399326766 0 +44 4400 10.424559326766 0 +44 4400 10.424559326766 0 +44 4418 10.43127659687 0 +44 4418 10.43127659687 0 +44 4433 10.43143659687 0 +44 4433 10.43143659687 0 +44 4489 10.493585839083 0 +44 4489 10.493585839083 0 +44 4496 10.493745839083 0 +44 4496 10.493745839083 0 +44 4520 10.543993151421 0 +44 4520 10.543993151421 0 +44 4528 10.544153151421 0 +44 4528 10.544153151421 0 +44 4577 10.714557554278 0 +44 4577 10.714557554278 0 +44 4596 10.714717554278 0 +44 4596 10.714717554278 0 +44 4614 10.724399325082 0 +44 4614 10.724399325082 0 +44 4633 10.724559325082 0 +44 4633 10.724559325082 0 +44 4651 10.731276593222 0 +44 4651 10.731276593222 0 +44 4666 10.731436593222 0 +44 4666 10.731436593222 0 +44 4722 10.793585839325 0 +44 4722 10.793585839325 0 +44 4729 10.793745839325 0 +44 4729 10.793745839325 0 +44 4753 10.843993151421 0 +44 4753 10.843993151421 0 +44 4761 10.844153151421 0 +44 4761 10.844153151421 0 +44 4810 11.014557537855 0 +44 4810 11.014557537855 0 +44 4829 11.014717537855 0 +44 4829 11.014717537855 0 +44 4847 11.0243993239 0 +44 4847 11.0243993239 0 +44 4866 11.0245593239 0 +44 4866 11.0245593239 0 +44 4884 11.031276590451 0 +44 4884 11.031276590451 0 +44 4899 11.031436590451 0 +44 4899 11.031436590451 0 +44 4955 11.093585839276 0 +44 4955 11.093585839276 0 +44 4962 11.093745839276 0 +44 4962 11.093745839276 0 +44 4986 11.143993151421 0 +44 4986 11.143993151421 0 +44 4994 11.144153151421 0 +44 4994 11.144153151421 0 +44 5043 11.314557521994 0 +44 5043 11.314557521994 0 +44 5062 11.314717521994 0 +44 5062 11.314717521994 0 +44 5080 11.324399323363 0 +44 5080 11.324399323363 0 +44 5099 11.324559323363 0 +44 5099 11.324559323363 0 +44 5117 11.331276588755 0 +44 5117 11.331276588755 0 +44 5132 11.331436588755 0 +44 5132 11.331436588755 0 +44 5188 11.39358583882 0 +44 5188 11.39358583882 0 +44 5195 11.39374583882 0 +44 5195 11.39374583882 0 +44 5219 11.443993151421 0 +44 5219 11.443993151421 0 +44 5227 11.444153151421 0 +44 5227 11.444153151421 0 +44 5276 11.614557506596 0 +44 5276 11.614557506596 0 +44 5295 11.614717506596 0 +44 5295 11.614717506596 0 +44 5313 11.624399323354 0 +44 5313 11.624399323354 0 +44 5332 11.624559323354 0 +44 5332 11.624559323354 0 +44 5350 11.631276587986 0 +44 5350 11.631276587986 0 +44 5365 11.631436587986 0 +44 5365 11.631436587986 0 +44 5425 11.69358583807 0 +44 5425 11.69358583807 0 +44 5432 11.69374583807 0 +44 5432 11.69374583807 0 +44 5460 11.743993151421 0 +44 5460 11.743993151421 0 +44 5468 11.744153151421 0 +44 5468 11.744153151421 0 +44 5517 11.914557491616 0 +44 5517 11.914557491616 0 +44 5536 11.914717491616 0 +44 5536 11.914717491616 0 +44 5554 11.924399323823 0 +44 5554 11.924399323823 0 +44 5573 11.924559323823 0 +44 5573 11.924559323823 0 +44 5591 11.93127658806 0 +44 5591 11.93127658806 0 +44 5606 11.93143658806 0 +44 5606 11.93143658806 0 +44 5666 11.993585837216 0 +44 5666 11.993585837216 0 +44 5673 11.993745837216 0 +44 5673 11.993745837216 0 +44 5701 12.043993151421 0 +44 5701 12.043993151421 0 +44 5709 12.044153151421 0 +44 5709 12.044153151421 0 +44 5758 12.21455747694 0 +44 5758 12.21455747694 0 +44 5777 12.21471747694 0 +44 5777 12.21471747694 0 +44 5795 12.224399324626 0 +44 5795 12.224399324626 0 +44 5814 12.224559324626 0 +44 5814 12.224559324626 0 +44 5832 12.231276588692 0 +44 5832 12.231276588692 0 +44 5847 12.231436588692 0 +44 5847 12.231436588692 0 +44 5907 12.293585836586 0 +44 5907 12.293585836586 0 +44 5914 12.293745836586 0 +44 5914 12.293745836586 0 +44 5942 12.343993151421 0 +44 5942 12.343993151421 0 +44 5950 12.344153151421 0 +44 5950 12.344153151421 0 +44 5999 12.514557462306 0 +44 5999 12.514557462306 0 +44 6018 12.514717462306 0 +44 6018 12.514717462306 0 +44 6036 12.524399325429 0 +44 6036 12.524399325429 0 +44 6055 12.524559325429 0 +44 6055 12.524559325429 0 +44 6073 12.531276589365 0 +44 6073 12.531276589365 0 +44 6088 12.531436589365 0 +44 6088 12.531436589365 0 +44 6148 12.593585836449 0 +44 6148 12.593585836449 0 +44 6155 12.593745836449 0 +44 6155 12.593745836449 0 +44 6183 12.643993151421 0 +44 6183 12.643993151421 0 +44 6191 12.644153151421 0 +44 6191 12.644153151421 0 +44 6240 12.814557447681 0 +44 6240 12.814557447681 0 +44 6259 12.814717447681 0 +44 6259 12.814717447681 0 +44 6277 12.824399326242 0 +44 6277 12.824399326242 0 +44 6296 12.824559326242 0 +44 6296 12.824559326242 0 +44 6314 12.831276590037 0 +44 6314 12.831276590037 0 +44 6329 12.831436590037 0 +44 6329 12.831436590037 0 +44 6389 12.893585836843 0 +44 6389 12.893585836843 0 +44 6396 12.893745836843 0 +44 6396 12.893745836843 0 +44 6424 12.943993151421 0 +44 6424 12.943993151421 0 +44 6432 12.944153151421 0 +44 6432 12.944153151421 0 +44 6481 13.114557433023 0 +44 6481 13.114557433023 0 +44 6500 13.114717433023 0 +44 6500 13.114717433023 0 +44 6518 13.12439932705 0 +44 6518 13.12439932705 0 +44 6537 13.12455932705 0 +44 6537 13.12455932705 0 +44 6555 13.131276590725 0 +44 6555 13.131276590725 0 +44 6570 13.131436590725 0 +44 6570 13.131436590725 0 +44 6630 13.193585837765 0 +44 6630 13.193585837765 0 +44 6637 13.193745837765 0 +44 6637 13.193745837765 0 +44 6665 13.243993151421 0 +44 6665 13.243993151421 0 +44 6673 13.244153151421 0 +44 6673 13.244153151421 0 +44 6722 13.414557418408 0 +44 6722 13.414557418408 0 +44 6741 13.414717418408 0 +44 6741 13.414717418408 0 +44 6759 13.424399327873 0 +44 6759 13.424399327873 0 +44 6778 13.424559327873 0 +44 6778 13.424559327873 0 +44 6796 13.431276591403 0 +44 6796 13.431276591403 0 +44 6811 13.431436591403 0 +44 6811 13.431436591403 0 +44 6871 13.493585839212 0 +44 6871 13.493585839212 0 +44 6878 13.493745839212 0 +44 6878 13.493745839212 0 +44 6906 13.543993151421 0 +44 6906 13.543993151421 0 +44 6914 13.544153151421 0 +44 6914 13.544153151421 0 +44 6963 13.71455740379 0 +44 6963 13.71455740379 0 +44 6982 13.71471740379 0 +44 6982 13.71471740379 0 +44 7000 13.724399328697 0 +44 7000 13.724399328697 0 +44 7019 13.724559328697 0 +44 7019 13.724559328697 0 +44 7037 13.731276592089 0 +44 7037 13.731276592089 0 +44 7052 13.731436592089 0 +44 7052 13.731436592089 0 +44 7112 13.793585841175 0 +44 7112 13.793585841175 0 +44 7119 13.793745841175 0 +44 7119 13.793745841175 0 +44 7147 13.843993151421 0 +44 7147 13.843993151421 0 +44 7155 13.844153151421 0 +44 7155 13.844153151421 0 +44 7203 14.014557389119 0 +44 7203 14.014557389119 0 +44 7218 14.014717389119 0 +44 7218 14.014717389119 0 +44 7241 14.024399329512 0 +44 7241 14.024399329512 0 +44 7260 14.024559329512 0 +44 7260 14.024559329512 0 +44 7278 14.031276592779 0 +44 7278 14.031276592779 0 +44 7293 14.031436592779 0 +44 7293 14.031436592779 0 +44 7353 14.093585843644 0 +44 7353 14.093585843644 0 +44 7360 14.093745843644 0 +44 7360 14.093745843644 0 +44 7388 14.143993151421 0 +44 7388 14.143993151421 0 +44 7396 14.144153151421 0 +44 7396 14.144153151421 0 +44 7444 14.314557374493 0 +44 7444 14.314557374493 0 +44 7459 14.314717374493 0 +44 7459 14.314717374493 0 +44 7482 14.324399330335 0 +44 7482 14.324399330335 0 +44 7501 14.324559330335 0 +44 7501 14.324559330335 0 +44 7519 14.33127659346 0 +44 7519 14.33127659346 0 +44 7534 14.33143659346 0 +44 7534 14.33143659346 0 +44 7594 14.393585846603 0 +44 7594 14.393585846603 0 +44 7601 14.393745846603 0 +44 7601 14.393745846603 0 +44 7629 14.443993151421 0 +44 7629 14.443993151421 0 +44 7637 14.444153151421 0 +44 7637 14.444153151421 0 +44 7685 14.614557359901 0 +44 7685 14.614557359901 0 +44 7700 14.614717359901 0 +44 7700 14.614717359901 0 +44 7723 14.624399331156 0 +44 7723 14.624399331156 0 +44 7742 14.624559331156 0 +44 7742 14.624559331156 0 +44 7760 14.63127659416 0 +44 7760 14.63127659416 0 +44 7775 14.63143659416 0 +44 7775 14.63143659416 0 +44 7835 14.693585849737 0 +44 7835 14.693585849737 0 +44 7842 14.693745849737 0 +44 7842 14.693745849737 0 +44 7870 14.743993151421 0 +44 7870 14.743993151421 0 +44 7878 14.744153151421 0 +44 7878 14.744153151421 0 +44 7926 14.914557345304 0 +44 7926 14.914557345304 0 +44 7941 14.914717345304 0 +44 7941 14.914717345304 0 +44 7964 14.924399331969 0 +44 7964 14.924399331969 0 +44 7983 14.924559331969 0 +44 7983 14.924559331969 0 +44 8001 14.931276594853 0 +44 8001 14.931276594853 0 +44 8016 14.931436594853 0 +44 8016 14.931436594853 0 +44 8076 14.993585846435 0 +44 8076 14.993585846435 0 +44 8083 14.993745846435 0 +44 8083 14.993745846435 0 +44 8111 15.043993151421 0 +44 8111 15.043993151421 0 +44 8119 15.044153151421 0 +44 8119 15.044153151421 0 +44 8167 15.214557330718 0 +44 8167 15.214557330718 0 +44 8182 15.214717330718 0 +44 8182 15.214717330718 0 +44 8205 15.224399332795 0 +44 8205 15.224399332795 0 +44 8224 15.224559332795 0 +44 8224 15.224559332795 0 +44 8242 15.231276595569 0 +44 8242 15.231276595569 0 +44 8257 15.231436595569 0 +44 8257 15.231436595569 0 +44 8317 15.293585833695 0 +44 8317 15.293585833695 0 +44 8324 15.293745833695 0 +44 8324 15.293745833695 0 +44 8352 15.343993151421 0 +44 8352 15.343993151421 0 +44 8360 15.344153151421 0 +44 8360 15.344153151421 0 +44 8408 15.514557316098 0 +44 8408 15.514557316098 0 +44 8423 15.514717316098 0 +44 8423 15.514717316098 0 +44 8446 15.524399333627 0 +44 8446 15.524399333627 0 +44 8465 15.524559333627 0 +44 8465 15.524559333627 0 +44 8483 15.531276596269 0 +44 8483 15.531276596269 0 +44 8498 15.531436596269 0 +44 8498 15.531436596269 0 +44 8558 15.593585819925 0 +44 8558 15.593585819925 0 +44 8565 15.593745819925 0 +44 8565 15.593745819925 0 +44 8593 15.643993151421 0 +44 8593 15.643993151421 0 +44 8601 15.644153151421 0 +44 8601 15.644153151421 0 +44 8649 15.814557301533 0 +44 8649 15.814557301533 0 +44 8664 15.814717301533 0 +44 8664 15.814717301533 0 +44 8687 15.824399334455 0 +44 8687 15.824399334455 0 +44 8706 15.824559334455 0 +44 8706 15.824559334455 0 +44 8724 15.831276596954 0 +44 8724 15.831276596954 0 +44 8739 15.831436596954 0 +44 8739 15.831436596954 0 +44 8799 15.893585806179 0 +44 8799 15.893585806179 0 +44 8806 15.893745806179 0 +44 8806 15.893745806179 0 +44 8834 15.943993151421 0 +44 8834 15.943993151421 0 +44 8842 15.944153151421 0 +44 8842 15.944153151421 0 +44 8890 16.114557286953 0 +44 8890 16.114557286953 0 +44 8905 16.114717286953 0 +44 8905 16.114717286953 0 +44 8932 16.124399335277 0 +44 8932 16.124399335277 0 +44 8951 16.124559335277 0 +44 8951 16.124559335277 0 +44 8969 16.131276597671 0 +44 8969 16.131276597671 0 +44 8984 16.131436597671 0 +44 8984 16.131436597671 0 +44 9044 16.193585792487 0 +44 9044 16.193585792487 0 +44 9051 16.193745792487 0 +44 9051 16.193745792487 0 +44 9083 16.243993151421 0 +44 9083 16.243993151421 0 +44 9091 16.244153151421 0 +44 9091 16.244153151421 0 +44 9139 16.414557272365 0 +44 9139 16.414557272365 0 +44 9154 16.414717272365 0 +44 9154 16.414717272365 0 +44 9181 16.424399336094 0 +44 9181 16.424399336094 0 +44 9200 16.424559336094 0 +44 9200 16.424559336094 0 +44 9218 16.431276598394 0 +44 9218 16.431276598394 0 +44 9233 16.431436598394 0 +44 9233 16.431436598394 0 +44 9293 16.493585780506 0 +44 9293 16.493585780506 0 +44 9300 16.493745780506 0 +44 9300 16.493745780506 0 +44 9332 16.543993151421 0 +44 9332 16.543993151421 0 +44 9340 16.544153151421 0 +44 9340 16.544153151421 0 +44 9388 16.714557257775 0 +44 9388 16.714557257775 0 +44 9403 16.714717257775 0 +44 9403 16.714717257775 0 +44 9430 16.724399336915 0 +44 9430 16.724399336915 0 +44 9449 16.724559336915 0 +44 9449 16.724559336915 0 +44 9467 16.731276599099 0 +44 9467 16.731276599099 0 +44 9482 16.731436599099 0 +44 9482 16.731436599099 0 +44 9542 16.793585771057 0 +44 9542 16.793585771057 0 +44 9549 16.793745771057 0 +44 9549 16.793745771057 0 +44 9581 16.843993151421 0 +44 9581 16.843993151421 0 +44 9589 16.844153151421 0 +44 9589 16.844153151421 0 +44 9637 17.014557243226 0 +44 9637 17.014557243226 0 +44 9652 17.014717243226 0 +44 9652 17.014717243226 0 +44 9679 17.024399337752 0 +44 9679 17.024399337752 0 +44 9698 17.024559337752 0 +44 9698 17.024559337752 0 +44 9716 17.031276599817 0 +44 9716 17.031276599817 0 +44 9731 17.031436599817 0 +44 9731 17.031436599817 0 +44 9791 17.093585764134 0 +44 9791 17.093585764134 0 +44 9798 17.093745764134 0 +44 9798 17.093745764134 0 +44 9830 17.143993151421 0 +44 9830 17.143993151421 0 +44 9838 17.144153151421 0 +44 9838 17.144153151421 0 +44 9886 17.314557228649 0 +44 9886 17.314557228649 0 +44 9901 17.314717228649 0 +44 9901 17.314717228649 0 +44 9928 17.324399338595 0 +44 9928 17.324399338595 0 +44 9947 17.324559338595 0 +44 9947 17.324559338595 0 +44 9965 17.331276600539 0 +44 9965 17.331276600539 0 +44 9980 17.331436600539 0 +44 9980 17.331436600539 0 +44 10040 17.393585759695 0 +44 10040 17.393585759695 0 +44 10047 17.393745759695 0 +44 10047 17.393745759695 0 +44 10079 17.443993151421 0 +44 10079 17.443993151421 0 +44 10087 17.444153151421 0 +44 10087 17.444153151421 0 +44 10135 17.614557214117 0 +44 10135 17.614557214117 0 +44 10150 17.614717214117 0 +44 10150 17.614717214117 0 +44 10177 17.624399339444 0 +44 10177 17.624399339444 0 +44 10196 17.624559339444 0 +44 10196 17.624559339444 0 +44 10214 17.631276601271 0 +44 10214 17.631276601271 0 +44 10229 17.631436601271 0 +44 10229 17.631436601271 0 +44 10289 17.69358575768 0 +44 10289 17.69358575768 0 +44 10296 17.69374575768 0 +44 10296 17.69374575768 0 +44 10328 17.743993151421 0 +44 10328 17.743993151421 0 +44 10336 17.744153151421 0 +44 10336 17.744153151421 0 +44 10384 17.914557199593 0 +44 10384 17.914557199593 0 +44 10399 17.914717199593 0 +44 10399 17.914717199593 0 +44 10422 17.92439934028 0 +44 10422 17.92439934028 0 +44 10441 17.92455934028 0 +44 10441 17.92455934028 0 +44 10459 17.931276601981 0 +44 10459 17.931276601981 0 +44 10474 17.931436601981 0 +44 10474 17.931436601981 0 +44 10530 17.993585756396 0 +44 10530 17.993585756396 0 +44 10537 17.993745756396 0 +44 10537 17.993745756396 0 +44 10569 18.043993151421 0 +44 10569 18.043993151421 0 +44 10577 18.044153151421 0 +44 10577 18.044153151421 0 +44 10624 18.214557185085 0 +44 10624 18.214557185085 0 +44 10635 18.214717185085 0 +44 10635 18.214717185085 0 +44 10663 18.22439934113 0 +44 10663 18.22439934113 0 +44 10682 18.22455934113 0 +44 10682 18.22455934113 0 +44 10696 18.231276602699 0 +44 10696 18.231276602699 0 +44 10711 18.231436602699 0 +44 10711 18.231436602699 0 +44 10767 18.293585755106 0 +44 10767 18.293585755106 0 +44 10774 18.293745755106 0 +44 10774 18.293745755106 0 +44 10806 18.343993151421 0 +44 10806 18.343993151421 0 +44 10814 18.344153151421 0 +44 10814 18.344153151421 0 +44 10857 18.514557170436 0 +44 10857 18.514557170436 0 +44 10868 18.514717170436 0 +44 10868 18.514717170436 0 +44 10896 18.524399341978 0 +44 10896 18.524399341978 0 +44 10915 18.524559341978 0 +44 10915 18.524559341978 0 +44 10929 18.531276603438 0 +44 10929 18.531276603438 0 +44 10944 18.531436603438 0 +44 10944 18.531436603438 0 +44 11000 18.593585753817 0 +44 11000 18.593585753817 0 +44 11007 18.593745753817 0 +44 11007 18.593745753817 0 +44 11039 18.643993151421 0 +44 11039 18.643993151421 0 +44 11047 18.644153151421 0 +44 11047 18.644153151421 0 +44 11090 18.814557161182 0 +44 11090 18.814557161182 0 +44 11101 18.814717161182 0 +44 11101 18.814717161182 0 +44 11162 18.831276604167 0 +44 11162 18.831276604167 0 +44 11177 18.831436604167 0 +44 11177 18.831436604167 0 +44 11233 18.893585752536 0 +44 11233 18.893585752536 0 +44 11240 18.893745752536 0 +44 11240 18.893745752536 0 +44 11272 18.943993151421 0 +44 11272 18.943993151421 0 +44 11280 18.944153151421 0 +44 11280 18.944153151421 0 +44 11323 19.114557157992 0 +44 11323 19.114557157992 0 +44 11334 19.114717157992 0 +44 11334 19.114717157992 0 +44 11395 19.131276604913 0 +44 11395 19.131276604913 0 +44 11410 19.131436604913 0 +44 11410 19.131436604913 0 +44 11466 19.193585751249 0 +44 11466 19.193585751249 0 +44 11473 19.193745751249 0 +44 11473 19.193745751249 0 +44 11505 19.243993151421 0 +44 11505 19.243993151421 0 +44 11513 19.244153151421 0 +44 11513 19.244153151421 0 +44 11556 19.414557155892 0 +44 11556 19.414557155892 0 +44 11567 19.414717155892 0 +44 11567 19.414717155892 0 +44 11628 19.431276605661 0 +44 11628 19.431276605661 0 +44 11643 19.431436605661 0 +44 11643 19.431436605661 0 +44 11699 19.493585749962 0 +44 11699 19.493585749962 0 +44 11706 19.493745749962 0 +44 11706 19.493745749962 0 +44 11738 19.543993151421 0 +44 11738 19.543993151421 0 +44 11746 19.544153151421 0 +44 11746 19.544153151421 0 +44 11789 19.714557154461 0 +44 11789 19.714557154461 0 +44 11800 19.714717154461 0 +44 11800 19.714717154461 0 +44 11861 19.731276606768 0 +44 11861 19.731276606768 0 +44 11876 19.731436606768 0 +44 11876 19.731436606768 0 +44 11932 19.793585748041 0 +44 11932 19.793585748041 0 +44 11939 19.793745748041 0 +44 11939 19.793745748041 0 +44 11971 19.843993151421 0 +44 11971 19.843993151421 0 +44 11979 19.844153151421 0 +44 11979 19.844153151421 0 +44 12022 20.014557153776 0 +44 12022 20.014557153776 0 +44 12033 20.014717153776 0 +44 12033 20.014717153776 0 +44 12098 20.031276608452 0 +44 12098 20.031276608452 0 +44 12113 20.031436608452 0 +44 12113 20.031436608452 0 +44 12173 20.093585745227 0 +44 12173 20.093585745227 0 +44 12180 20.093745745227 0 +44 12180 20.093745745227 0 +44 12212 20.143993151421 0 +44 12212 20.143993151421 0 +44 12220 20.144153151421 0 +44 12220 20.144153151421 0 +44 12263 20.31455715393 0 +44 12263 20.31455715393 0 +44 12274 20.31471715393 0 +44 12274 20.31471715393 0 +44 12339 20.331276610588 0 +44 12339 20.331276610588 0 +44 12354 20.331436610588 0 +44 12354 20.331436610588 0 +44 12414 20.393585741612 0 +44 12414 20.393585741612 0 +44 12421 20.393745741612 0 +44 12421 20.393745741612 0 +44 12453 20.443993151421 0 +44 12453 20.443993151421 0 +44 12461 20.444153151421 0 +44 12461 20.444153151421 0 +44 12504 20.614557155021 0 +44 12504 20.614557155021 0 +44 12515 20.614717155021 0 +44 12515 20.614717155021 0 +44 12580 20.631276613242 0 +44 12580 20.631276613242 0 +44 12595 20.631436613242 0 +44 12595 20.631436613242 0 +44 12655 20.693585737229 0 +44 12655 20.693585737229 0 +44 12662 20.693745737229 0 +44 12662 20.693745737229 0 +44 12694 20.743993151421 0 +44 12694 20.743993151421 0 +44 12702 20.744153151421 0 +44 12702 20.744153151421 0 +44 12745 20.914557157133 0 +44 12745 20.914557157133 0 +44 12756 20.914717157133 0 +44 12756 20.914717157133 0 +44 12821 20.931276616399 0 +44 12821 20.931276616399 0 +44 12836 20.931436616399 0 +44 12836 20.931436616399 0 +44 12896 20.993585732172 0 +44 12896 20.993585732172 0 +44 12903 20.993745732172 0 +44 12903 20.993745732172 0 +44 12935 21.043993151421 0 +44 12935 21.043993151421 0 +44 12943 21.044153151421 0 +44 12943 21.044153151421 0 +44 12986 21.214557160323 0 +44 12986 21.214557160323 0 +44 12997 21.214717160323 0 +44 12997 21.214717160323 0 +44 13062 21.231276620049 0 +44 13062 21.231276620049 0 +44 13077 21.231436620049 0 +44 13077 21.231436620049 0 +44 13137 21.293585726489 0 +44 13137 21.293585726489 0 +44 13144 21.293745726489 0 +44 13144 21.293745726489 0 +44 13176 21.343993151421 0 +44 13176 21.343993151421 0 +44 13184 21.344153151421 0 +44 13184 21.344153151421 0 +44 13227 21.514557164674 0 +44 13227 21.514557164674 0 +44 13238 21.514717164674 0 +44 13238 21.514717164674 0 +44 13303 21.531276624253 0 +44 13303 21.531276624253 0 +44 13318 21.531436624253 0 +44 13318 21.531436624253 0 +44 13378 21.593585720024 0 +44 13378 21.593585720024 0 +44 13385 21.593745720024 0 +44 13385 21.593745720024 0 +44 13417 21.643993151421 0 +44 13417 21.643993151421 0 +44 13425 21.644153151421 0 +44 13425 21.644153151421 0 +44 13468 21.814557170229 0 +44 13468 21.814557170229 0 +44 13479 21.814717170229 0 +44 13479 21.814717170229 0 +44 13544 21.831276629063 0 +44 13544 21.831276629063 0 +44 13559 21.831436629063 0 +44 13559 21.831436629063 0 +44 13619 21.893585712841 0 +44 13619 21.893585712841 0 +44 13626 21.893745712841 0 +44 13626 21.893745712841 0 +44 13658 21.943993151421 0 +44 13658 21.943993151421 0 +44 13666 21.944153151421 0 +44 13666 21.944153151421 0 +44 13709 22.114557176994 0 +44 13709 22.114557176994 0 +44 13720 22.114717176994 0 +44 13720 22.114717176994 0 +44 13785 22.131276634514 0 +44 13785 22.131276634514 0 +44 13800 22.131436634514 0 +44 13800 22.131436634514 0 +44 13860 22.193585704988 0 +44 13860 22.193585704988 0 +44 13867 22.193745704988 0 +44 13867 22.193745704988 0 +44 13899 22.243993151421 0 +44 13899 22.243993151421 0 +44 13907 22.244153151421 0 +44 13907 22.244153151421 0 +44 13950 22.414557185072 0 +44 13950 22.414557185072 0 +44 13961 22.414717185072 0 +44 13961 22.414717185072 0 +44 14026 22.431276640553 0 +44 14026 22.431276640553 0 +44 14041 22.431436640553 0 +44 14041 22.431436640553 0 +44 14101 22.49358569653 0 +44 14101 22.49358569653 0 +44 14108 22.49374569653 0 +44 14108 22.49374569653 0 +44 14140 22.543993151421 0 +44 14140 22.543993151421 0 +44 14148 22.544153151421 0 +44 14148 22.544153151421 0 +44 14191 22.714557194287 0 +44 14191 22.714557194287 0 +44 14202 22.714717194287 0 +44 14202 22.714717194287 0 +44 14267 22.73127664727 0 +44 14267 22.73127664727 0 +44 14282 22.73143664727 0 +44 14282 22.73143664727 0 +44 14342 22.793585687538 0 +44 14342 22.793585687538 0 +44 14349 22.793745687538 0 +44 14349 22.793745687538 0 +44 14381 22.843993151421 0 +44 14381 22.843993151421 0 +44 14389 22.844153151421 0 +44 14389 22.844153151421 0 +44 14432 23.014557204223 0 +44 14432 23.014557204223 0 +44 14443 23.014717204223 0 +44 14443 23.014717204223 0 +44 14508 23.031276654734 0 +44 14508 23.031276654734 0 +44 14523 23.031436654734 0 +44 14523 23.031436654734 0 +44 14583 23.093585678184 0 +44 14583 23.093585678184 0 +44 14590 23.093745678184 0 +44 14590 23.093745678184 0 +44 14622 23.143993151421 0 +44 14622 23.143993151421 0 +44 14630 23.144153151421 0 +44 14630 23.144153151421 0 +44 14673 23.314557215428 0 +44 14673 23.314557215428 0 +44 14684 23.314717215428 0 +44 14684 23.314717215428 0 +44 14749 23.331276662913 0 +44 14749 23.331276662913 0 +44 14764 23.331436662913 0 +44 14764 23.331436662913 0 +44 14824 23.393585668176 0 +44 14824 23.393585668176 0 +44 14831 23.393745668176 0 +44 14831 23.393745668176 0 +44 14863 23.443993151421 0 +44 14863 23.443993151421 0 +44 14871 23.444153151421 0 +44 14871 23.444153151421 0 +44 14914 23.614557224167 0 +44 14914 23.614557224167 0 +44 14925 23.614717224167 0 +44 14925 23.614717224167 0 +44 14990 23.631276668226 0 +44 14990 23.631276668226 0 +44 15005 23.631436668226 0 +44 15005 23.631436668226 0 +44 15065 23.693585661458 0 +44 15065 23.693585661458 0 +44 15072 23.693745661458 0 +44 15072 23.693745661458 0 +44 15104 23.743993151421 0 +44 15104 23.743993151421 0 +44 15112 23.744153151421 0 +44 15112 23.744153151421 0 +44 15155 23.914557225534 0 +44 15155 23.914557225534 0 +44 15166 23.914717225534 0 +44 15166 23.914717225534 0 +44 15231 23.931276671861 0 +44 15231 23.931276671861 0 +44 15246 23.931436671861 0 +44 15246 23.931436671861 0 +44 15306 23.993585658609 0 +44 15306 23.993585658609 0 +44 15313 23.993745658609 0 +44 15313 23.993745658609 0 +44 15345 24.043993151421 0 +44 15345 24.043993151421 0 +44 15353 24.044153151421 0 +44 15353 24.044153151421 0 +44 15396 24.214557228476 0 +44 15396 24.214557228476 0 +44 15407 24.214717228476 0 +44 15407 24.214717228476 0 +44 15472 24.231276682111 0 +44 15472 24.231276682111 0 +44 15487 24.231436682111 0 +44 15487 24.231436682111 0 +44 15547 24.293585650885 0 +44 15547 24.293585650885 0 +44 15554 24.293745650885 0 +44 15554 24.293745650885 0 +44 15586 24.343993151421 0 +44 15586 24.343993151421 0 +44 15594 24.344153151421 0 +44 15594 24.344153151421 0 +44 15637 24.514557231601 0 +44 15637 24.514557231601 0 +44 15648 24.514717231601 0 +44 15648 24.514717231601 0 +44 15713 24.531276693849 0 +44 15713 24.531276693849 0 +44 15728 24.531436693849 0 +44 15728 24.531436693849 0 +44 15788 24.593585643051 0 +44 15788 24.593585643051 0 +44 15795 24.593745643051 0 +44 15795 24.593745643051 0 +44 15827 24.643993151421 0 +44 15827 24.643993151421 0 +44 15835 24.644153151421 0 +44 15835 24.644153151421 0 +44 15878 24.814557234404 0 +44 15878 24.814557234404 0 +44 15889 24.814717234404 0 +44 15889 24.814717234404 0 +44 15954 24.831276706445 0 +44 15954 24.831276706445 0 +44 15969 24.831436706445 0 +44 15969 24.831436706445 0 +44 16029 24.893585636131 0 +44 16029 24.893585636131 0 +44 16036 24.893745636131 0 +44 16036 24.893745636131 0 +44 16068 24.943993151421 0 +44 16068 24.943993151421 0 +44 16076 24.944153151421 0 +44 16076 24.944153151421 0 +44 16119 25.114557236911 0 +44 16119 25.114557236911 0 +44 16130 25.114717236911 0 +44 16130 25.114717236911 0 +44 16195 25.131276719839 0 +44 16195 25.131276719839 0 +44 16210 25.131436719839 0 +44 16210 25.131436719839 0 +44 16270 25.193585630457 0 +44 16270 25.193585630457 0 +44 16277 25.193745630457 0 +44 16277 25.193745630457 0 +44 16309 25.243993151421 0 +44 16309 25.243993151421 0 +44 16317 25.244153151421 0 +44 16317 25.244153151421 0 +44 16360 25.414557239038 0 +44 16360 25.414557239038 0 +44 16371 25.414717239038 0 +44 16371 25.414717239038 0 +44 16436 25.431276734024 0 +44 16436 25.431276734024 0 +44 16451 25.431436734024 0 +44 16451 25.431436734024 0 +44 16511 25.493585626591 0 +44 16511 25.493585626591 0 +44 16518 25.493745626591 0 +44 16518 25.493745626591 0 +44 16550 25.543993151421 0 +44 16550 25.543993151421 0 +44 16558 25.544153151421 0 +44 16558 25.544153151421 0 +44 16600 25.714557240854 0 +44 16600 25.714557240854 0 +44 16607 25.714717240854 0 +44 16607 25.714717240854 0 +44 16677 25.731276749009 0 +44 16677 25.731276749009 0 +44 16692 25.731436749009 0 +44 16692 25.731436749009 0 +44 16752 25.793585625056 0 +44 16752 25.793585625056 0 +44 16759 25.793745625056 0 +44 16759 25.793745625056 0 +44 16791 25.843993151421 0 +44 16791 25.843993151421 0 +44 16799 25.844153151421 0 +44 16799 25.844153151421 0 +44 16841 26.014557242289 0 +44 16841 26.014557242289 0 +44 16848 26.014717242289 0 +44 16848 26.014717242289 0 +44 16918 26.031276763556 0 +44 16918 26.031276763556 0 +44 16933 26.031436763556 0 +44 16933 26.031436763556 0 +44 16993 26.093585626275 0 +44 16993 26.093585626275 0 +44 17000 26.093745626275 0 +44 17000 26.093745626275 0 +44 17032 26.143993151421 0 +44 17032 26.143993151421 0 +44 17040 26.144153151421 0 +44 17040 26.144153151421 0 +44 17082 26.314557243311 0 +44 17082 26.314557243311 0 +44 17089 26.314717243311 0 +44 17089 26.314717243311 0 +44 17159 26.331276777067 0 +44 17159 26.331276777067 0 +44 17174 26.331436777067 0 +44 17174 26.331436777067 0 +44 17234 26.393585630812 0 +44 17234 26.393585630812 0 +44 17241 26.393745630812 0 +44 17241 26.393745630812 0 +44 17273 26.443993151421 0 +44 17273 26.443993151421 0 +44 17281 26.444153151421 0 +44 17281 26.444153151421 0 +44 17323 26.614557243876 0 +44 17323 26.614557243876 0 +44 17330 26.614717243876 0 +44 17330 26.614717243876 0 +44 17400 26.631276789593 0 +44 17400 26.631276789593 0 +44 17415 26.631436789593 0 +44 17415 26.631436789593 0 +44 17475 26.693585638677 0 +44 17475 26.693585638677 0 +44 17482 26.693745638677 0 +44 17482 26.693745638677 0 +44 17514 26.743993151421 0 +44 17514 26.743993151421 0 +44 17522 26.744153151421 0 +44 17522 26.744153151421 0 +44 17564 26.914557244114 0 +44 17564 26.914557244114 0 +44 17571 26.914717244114 0 +44 17571 26.914717244114 0 +44 17641 26.931276801135 0 +44 17641 26.931276801135 0 +44 17656 26.931436801135 0 +44 17656 26.931436801135 0 +44 17716 26.993585649352 0 +44 17716 26.993585649352 0 +44 17723 26.993745649352 0 +44 17723 26.993745649352 0 +44 17755 27.043993151421 0 +44 17755 27.043993151421 0 +44 17763 27.044153151421 0 +44 17763 27.044153151421 0 +44 17805 27.214557243957 0 +44 17805 27.214557243957 0 +44 17812 27.214717243957 0 +44 17812 27.214717243957 0 +44 17875 27.231276811734 0 +44 17875 27.231276811734 0 +44 17894 27.231436811734 0 +44 17894 27.231436811734 0 +44 17949 27.293585662469 0 +44 17949 27.293585662469 0 +44 17956 27.293745662469 0 +44 17956 27.293745662469 0 +44 17988 27.343993151421 0 +44 17988 27.343993151421 0 +44 17996 27.344153151421 0 +44 17996 27.344153151421 0 +44 18038 27.514557243783 0 +44 18038 27.514557243783 0 +44 18045 27.514717243783 0 +44 18045 27.514717243783 0 +44 18108 27.53127682198 0 +44 18108 27.53127682198 0 +44 18127 27.53143682198 0 +44 18127 27.53143682198 0 +44 18182 27.593585677115 0 +44 18182 27.593585677115 0 +44 18189 27.593745677115 0 +44 18189 27.593745677115 0 +44 18221 27.643993151421 0 +44 18221 27.643993151421 0 +44 18229 27.644153151421 0 +44 18229 27.644153151421 0 +44 18271 27.814557243571 0 +44 18271 27.814557243571 0 +44 18278 27.814717243571 0 +44 18278 27.814717243571 0 +44 18341 27.831276831392 0 +44 18341 27.831276831392 0 +44 18360 27.831436831392 0 +44 18360 27.831436831392 0 +44 18415 27.893585692883 0 +44 18415 27.893585692883 0 +44 18422 27.893745692883 0 +44 18422 27.893745692883 0 +44 18454 27.943993151421 0 +44 18454 27.943993151421 0 +44 18462 27.944153151421 0 +44 18462 27.944153151421 0 +44 18504 28.114557243343 0 +44 18504 28.114557243343 0 +44 18511 28.114717243343 0 +44 18511 28.114717243343 0 +44 18574 28.13127683163 0 +44 18574 28.13127683163 0 +44 18593 28.13143683163 0 +44 18593 28.13143683163 0 +44 18648 28.193585709573 0 +44 18648 28.193585709573 0 +44 18655 28.193745709573 0 +44 18655 28.193745709573 0 +44 18687 28.243993151421 0 +44 18687 28.243993151421 0 +44 18695 28.244153151421 0 +44 18695 28.244153151421 0 +44 18737 28.414557243176 0 +44 18737 28.414557243176 0 +44 18744 28.414717243176 0 +44 18744 28.414717243176 0 +44 18807 28.4312768277 0 +44 18807 28.4312768277 0 +44 18826 28.4314368277 0 +44 18826 28.4314368277 0 +44 18881 28.493585726899 0 +44 18881 28.493585726899 0 +44 18888 28.493745726899 0 +44 18888 28.493745726899 0 +44 18920 28.543993151421 0 +44 18920 28.543993151421 0 +44 18928 28.544153151421 0 +44 18928 28.544153151421 0 +44 18970 28.71455724295 0 +44 18970 28.71455724295 0 +44 18977 28.71471724295 0 +44 18977 28.71471724295 0 +44 19040 28.731276823589 0 +44 19040 28.731276823589 0 +44 19059 28.731436823589 0 +44 19059 28.731436823589 0 +44 19114 28.793585744792 0 +44 19114 28.793585744792 0 +44 19121 28.793745744792 0 +44 19121 28.793745744792 0 +44 19153 28.843993151421 0 +44 19153 28.843993151421 0 +44 19161 28.844153151421 0 +44 19161 28.844153151421 0 +44 19203 29.014557242752 0 +44 19203 29.014557242752 0 +44 19210 29.014717242752 0 +44 19210 29.014717242752 0 +44 19273 29.031276819366 0 +44 19273 29.031276819366 0 +44 19292 29.031436819366 0 +44 19292 29.031436819366 0 +44 19339 29.093585763099 0 +44 19339 29.093585763099 0 +44 19346 29.093745763099 0 +44 19346 29.093745763099 0 +44 19378 29.143993151421 0 +44 19378 29.143993151421 0 +44 19386 29.144153151421 0 +44 19386 29.144153151421 0 +44 19428 29.31455724256 0 +44 19428 29.31455724256 0 +44 19435 29.31471724256 0 +44 19435 29.31471724256 0 +44 19498 29.331276815156 0 +44 19498 29.331276815156 0 +44 19517 29.331436815156 0 +44 19517 29.331436815156 0 +44 19564 29.393585781743 0 +44 19564 29.393585781743 0 +44 19571 29.393745781743 0 +44 19571 29.393745781743 0 +44 19603 29.443993151421 0 +44 19603 29.443993151421 0 +44 19611 29.444153151421 0 +44 19611 29.444153151421 0 +44 19653 29.614557242339 0 +44 19653 29.614557242339 0 +44 19660 29.614717242339 0 +44 19660 29.614717242339 0 +44 19723 29.631276811006 0 +44 19723 29.631276811006 0 +44 19742 29.631436811006 0 +44 19742 29.631436811006 0 +44 19789 29.693585800658 0 +44 19789 29.693585800658 0 +44 19796 29.693745800658 0 +44 19796 29.693745800658 0 +44 19828 29.743993151421 0 +44 19828 29.743993151421 0 +44 19836 29.744153151421 0 +44 19836 29.744153151421 0 +44 19878 29.914557242168 0 +44 19878 29.914557242168 0 +44 19885 29.914717242168 0 +44 19885 29.914717242168 0 +44 19948 29.931276806789 0 +44 19948 29.931276806789 0 +44 19967 29.931436806789 0 +44 19967 29.931436806789 0 +44 20014 29.99358581976 0 +44 20014 29.99358581976 0 +44 20021 29.99374581976 0 +44 20021 29.99374581976 0 +44 20053 30.043993151421 0 +44 20053 30.043993151421 0 +44 20061 30.044153151421 0 +44 20061 30.044153151421 0 +44 20103 30.214557241952 0 +44 20103 30.214557241952 0 +44 20110 30.214717241952 0 +44 20110 30.214717241952 0 +44 20173 30.231276802516 0 +44 20173 30.231276802516 0 +44 20192 30.231436802516 0 +44 20192 30.231436802516 0 +44 20239 30.29358583909 0 +44 20239 30.29358583909 0 +44 20246 30.29374583909 0 +44 20246 30.29374583909 0 +44 20278 30.343993151421 0 +44 20278 30.343993151421 0 +44 20286 30.344153151421 0 +44 20286 30.344153151421 0 +44 20328 30.514557241756 0 +44 20328 30.514557241756 0 +44 20335 30.514717241756 0 +44 20335 30.514717241756 0 +44 20398 30.531276798256 0 +44 20398 30.531276798256 0 +44 20417 30.531436798256 0 +44 20417 30.531436798256 0 +44 20464 30.593585858538 0 +44 20464 30.593585858538 0 +44 20471 30.593745858538 0 +44 20471 30.593745858538 0 +44 20503 30.643993151421 0 +44 20503 30.643993151421 0 +44 20511 30.644153151421 0 +44 20511 30.644153151421 0 +44 20553 30.814557241503 0 +44 20553 30.814557241503 0 +44 20560 30.814717241503 0 +44 20560 30.814717241503 0 +44 20622 30.831276794122 0 +44 20622 30.831276794122 0 +44 20637 30.831436794122 0 +44 20637 30.831436794122 0 +44 20689 30.893585878179 0 +44 20689 30.893585878179 0 +44 20696 30.893745878179 0 +44 20696 30.893745878179 0 +44 20728 30.943993151421 0 +44 20728 30.943993151421 0 +44 20736 30.944153151421 0 +44 20736 30.944153151421 0 +44 20778 31.114557241331 0 +44 20778 31.114557241331 0 +44 20785 31.114717241331 0 +44 20785 31.114717241331 0 +44 20851 31.131276790287 0 +44 20851 31.131276790287 0 +44 20866 31.131436790287 0 +44 20866 31.131436790287 0 +44 20919 31.193585897854 0 +44 20919 31.193585897854 0 +44 20930 31.193745897854 0 +44 20930 31.193745897854 0 +44 20961 31.243993151421 0 +44 20961 31.243993151421 0 +44 20969 31.244153151421 0 +44 20969 31.244153151421 0 +44 21011 31.414557241138 0 +44 21011 31.414557241138 0 +44 21018 31.414717241138 0 +44 21018 31.414717241138 0 +44 21084 31.431276787097 0 +44 21084 31.431276787097 0 +44 21099 31.431436787097 0 +44 21099 31.431436787097 0 +44 21152 31.49358591764 0 +44 21152 31.49358591764 0 +44 21163 31.49374591764 0 +44 21163 31.49374591764 0 +44 21194 31.543993151421 0 +44 21194 31.543993151421 0 +44 21202 31.544153151421 0 +44 21202 31.544153151421 0 +44 21244 31.714557240949 0 +44 21244 31.714557240949 0 +44 21251 31.714717240949 0 +44 21251 31.714717240949 0 +44 21317 31.731276784583 0 +44 21317 31.731276784583 0 +44 21332 31.731436784583 0 +44 21332 31.731436784583 0 +44 21385 31.793585937521 0 +44 21385 31.793585937521 0 +44 21396 31.793745937521 0 +44 21396 31.793745937521 0 +44 21427 31.843993151421 0 +44 21427 31.843993151421 0 +44 21435 31.844153151421 0 +44 21435 31.844153151421 0 +44 21477 32.014557240765 0 +44 21477 32.014557240765 0 +44 21484 32.014717240765 0 +44 21484 32.014717240765 0 +44 21550 32.031276782702 0 +44 21550 32.031276782702 0 +44 21565 32.031436782702 0 +44 21565 32.031436782702 0 +44 21618 32.093585957424 0 +44 21618 32.093585957424 0 +44 21629 32.093745957424 0 +44 21629 32.093745957424 0 +44 21660 32.143993151421 0 +44 21660 32.143993151421 0 +44 21668 32.144153151421 0 +44 21668 32.144153151421 0 +44 21710 32.31455724058 0 +44 21710 32.31455724058 0 +44 21717 32.31471724058 0 +44 21717 32.31471724058 0 +44 21783 32.331276781557 0 +44 21783 32.331276781557 0 +44 21798 32.331436781557 0 +44 21798 32.331436781557 0 +44 21851 32.393585977454 0 +44 21851 32.393585977454 0 +44 21862 32.393745977454 0 +44 21862 32.393745977454 0 +44 21893 32.443993151421 0 +44 21893 32.443993151421 0 +44 21901 32.444153151421 0 +44 21901 32.444153151421 0 +44 21943 32.614557240362 0 +44 21943 32.614557240362 0 +44 21950 32.614717240362 0 +44 21950 32.614717240362 0 +44 22016 32.631276781062 0 +44 22016 32.631276781062 0 +44 22031 32.631436781062 0 +44 22031 32.631436781062 0 +44 22084 32.693585997543 0 +44 22084 32.693585997543 0 +44 22095 32.693745997543 0 +44 22095 32.693745997543 0 +44 22126 32.743993151421 0 +44 22126 32.743993151421 0 +44 22134 32.744153151421 0 +44 22134 32.744153151421 0 +44 22176 32.914557240161 0 +44 22176 32.914557240161 0 +44 22183 32.914717240161 0 +44 22183 32.914717240161 0 +44 22249 32.93127678126 0 +44 22249 32.93127678126 0 +44 22264 32.93143678126 0 +44 22264 32.93143678126 0 +44 22317 32.993586017691 0 +44 22317 32.993586017691 0 +44 22328 32.993746017691 0 +44 22328 32.993746017691 0 +44 22359 33.043993151421 0 +44 22359 33.043993151421 0 +44 22367 33.044153151421 0 +44 22367 33.044153151421 0 +44 22409 33.214557239961 0 +44 22409 33.214557239961 0 +44 22416 33.214717239961 0 +44 22416 33.214717239961 0 +44 22482 33.23127678211 0 +44 22482 33.23127678211 0 +44 22497 33.23143678211 0 +44 22497 33.23143678211 0 +44 22550 33.293586037835 0 +44 22550 33.293586037835 0 +44 22561 33.293746037835 0 +44 22561 33.293746037835 0 +44 22592 33.343993151421 0 +44 22592 33.343993151421 0 +44 22600 33.344153151421 0 +44 22600 33.344153151421 0 +44 22642 33.514557239737 0 +44 22642 33.514557239737 0 +44 22649 33.514717239737 0 +44 22649 33.514717239737 0 +44 22715 33.531276783685 0 +44 22715 33.531276783685 0 +44 22730 33.531436783685 0 +44 22730 33.531436783685 0 +44 22784 33.593586058084 0 +44 22784 33.593586058084 0 +44 22799 33.593746058084 0 +44 22799 33.593746058084 0 +44 22825 33.643993151421 0 +44 22825 33.643993151421 0 +44 22833 33.644153151421 0 +44 22833 33.644153151421 0 +44 22875 33.814557239531 0 +44 22875 33.814557239531 0 +44 22882 33.814717239531 0 +44 22882 33.814717239531 0 +44 22944 33.831276785904 0 +44 22944 33.831276785904 0 +44 22959 33.831436785904 0 +44 22959 33.831436785904 0 +44 23013 33.893586078308 0 +44 23013 33.893586078308 0 +44 23028 33.893746078308 0 +44 23028 33.893746078308 0 +44 23049 33.943993151421 0 +44 23049 33.943993151421 0 +44 23056 33.944153151421 0 +44 23056 33.944153151421 0 +44 23091 34.11455723931 0 +44 23091 34.11455723931 0 +44 23097 34.11471723931 0 +44 23097 34.11471723931 0 +44 23147 34.131276788788 0 +44 23147 34.131276788788 0 +44 23157 34.131436788788 0 +44 23157 34.131436788788 0 +44 23207 34.243993151421 0 +44 23207 34.243993151421 0 +44 23214 34.244153151421 0 +44 23214 34.244153151421 0 +44 23249 34.414557239094 0 +44 23249 34.414557239094 0 +44 23255 34.414717239094 0 +44 23255 34.414717239094 0 +44 23305 34.431276792338 0 +44 23305 34.431276792338 0 +44 23315 34.431436792338 0 +44 23315 34.431436792338 0 +44 23365 34.543993151421 0 +44 23365 34.543993151421 0 +44 23372 34.544153151421 0 +44 23372 34.544153151421 0 +44 23407 34.71455723891 0 +44 23407 34.71455723891 0 +44 23413 34.71471723891 0 +44 23413 34.71471723891 0 +44 23463 34.731276796515 0 +44 23463 34.731276796515 0 +44 23473 34.731436796515 0 +44 23473 34.731436796515 0 +44 23523 34.843993151421 0 +44 23523 34.843993151421 0 +44 23530 34.844153151421 0 +44 23530 34.844153151421 0 +44 23565 35.014557238698 0 +44 23565 35.014557238698 0 +44 23571 35.014717238698 0 +44 23571 35.014717238698 0 +44 23621 35.031276801357 0 +44 23621 35.031276801357 0 +44 23631 35.031436801357 0 +44 23631 35.031436801357 0 +44 23681 35.143993151421 0 +44 23681 35.143993151421 0 +44 23688 35.144153151421 0 +44 23688 35.144153151421 0 +44 23727 35.31455723851 0 +44 23727 35.31455723851 0 +44 23733 35.31471723851 0 +44 23733 35.31471723851 0 +44 23783 35.331276806756 0 +44 23783 35.331276806756 0 +44 23793 35.331436806756 0 +44 23793 35.331436806756 0 +44 23813 35.357384434054 0 +44 23813 35.357384434054 0 +44 23827 35.357544434054 0 +44 23827 35.357544434054 0 +44 23847 35.443993151421 0 +44 23847 35.443993151421 0 +44 23854 35.444153151421 0 +44 23854 35.444153151421 0 +44 23893 35.614557238324 0 +44 23893 35.614557238324 0 +44 23899 35.614717238324 0 +44 23899 35.614717238324 0 +44 23949 35.631276812771 0 +44 23949 35.631276812771 0 +44 23959 35.631436812771 0 +44 23959 35.631436812771 0 +44 23979 35.657384420736 0 +44 23979 35.657384420736 0 +44 23993 35.657544420736 0 +44 23993 35.657544420736 0 +44 24013 35.743993151421 0 +44 24013 35.743993151421 0 +44 24020 35.744153151421 0 +44 24020 35.744153151421 0 +44 24060 35.914557238104 0 +44 24060 35.914557238104 0 +44 24070 35.914717238104 0 +44 24070 35.914717238104 0 +44 24115 35.931276819372 0 +44 24115 35.931276819372 0 +44 24125 35.931436819372 0 +44 24125 35.931436819372 0 +44 24145 35.957384409002 0 +44 24145 35.957384409002 0 +44 24159 35.957544409002 0 +44 24159 35.957544409002 0 +44 24179 36.043993151421 0 +44 24179 36.043993151421 0 +44 24186 36.044153151421 0 +44 24186 36.044153151421 0 +44 24226 36.214557237923 0 +44 24226 36.214557237923 0 +44 24236 36.214717237923 0 +44 24236 36.214717237923 0 +44 24281 36.231276826584 0 +44 24281 36.231276826584 0 +44 24291 36.231436826584 0 +44 24291 36.231436826584 0 +44 24311 36.257384398867 0 +44 24311 36.257384398867 0 +44 24325 36.257544398867 0 +44 24325 36.257544398867 0 +44 24345 36.343993151421 0 +44 24345 36.343993151421 0 +44 24352 36.344153151421 0 +44 24352 36.344153151421 0 +44 24392 36.514557237718 0 +44 24392 36.514557237718 0 +44 24402 36.514717237718 0 +44 24402 36.514717237718 0 +44 24447 36.531276834329 0 +44 24447 36.531276834329 0 +44 24457 36.531436834329 0 +44 24457 36.531436834329 0 +44 24477 36.557384390339 0 +44 24477 36.557384390339 0 +44 24491 36.557544390339 0 +44 24491 36.557544390339 0 +44 24511 36.643993151421 0 +44 24511 36.643993151421 0 +44 24518 36.644153151421 0 +44 24518 36.644153151421 0 +44 24557 36.814557237512 0 +44 24557 36.814557237512 0 +44 24563 36.814717237512 0 +44 24563 36.814717237512 0 +44 24613 36.831276842622 0 +44 24613 36.831276842622 0 +44 24623 36.831436842622 0 +44 24623 36.831436842622 0 +44 24643 36.857384382745 0 +44 24643 36.857384382745 0 +44 24657 36.857544382745 0 +44 24657 36.857544382745 0 +44 24677 36.943993151421 0 +44 24677 36.943993151421 0 +44 24684 36.944153151421 0 +44 24684 36.944153151421 0 +44 24723 37.114557236718 0 +44 24723 37.114557236718 0 +44 24729 37.114717236718 0 +44 24729 37.114717236718 0 +44 24779 37.131276851096 0 +44 24779 37.131276851096 0 +44 24789 37.131436851096 0 +44 24789 37.131436851096 0 +44 24809 37.157384373889 0 +44 24809 37.157384373889 0 +44 24823 37.157544373889 0 +44 24823 37.157544373889 0 +44 24843 37.243993151421 0 +44 24843 37.243993151421 0 +44 24850 37.244153151421 0 +44 24850 37.244153151421 0 +44 24889 37.41455723223 0 +44 24889 37.41455723223 0 +44 24895 37.41471723223 0 +44 24895 37.41471723223 0 +44 24945 37.431276854108 0 +44 24945 37.431276854108 0 +44 24955 37.431436854108 0 +44 24955 37.431436854108 0 +44 24975 37.457384356842 0 +44 24975 37.457384356842 0 +44 24989 37.457544356842 0 +44 24989 37.457544356842 0 +44 25009 37.543993151421 0 +44 25009 37.543993151421 0 +44 25016 37.544153151421 0 +44 25016 37.544153151421 0 +44 25055 37.714557229579 0 +44 25055 37.714557229579 0 +44 25061 37.714717229579 0 +44 25061 37.714717229579 0 +44 25111 37.731276847205 0 +44 25111 37.731276847205 0 +44 25121 37.731436847205 0 +44 25121 37.731436847205 0 +44 25140 37.757384333389 0 +44 25140 37.757384333389 0 +44 25150 37.757544333389 0 +44 25150 37.757544333389 0 +44 25175 37.843993151421 0 +44 25175 37.843993151421 0 +44 25182 37.844153151421 0 +44 25182 37.844153151421 0 +44 25221 38.014557228941 0 +44 25221 38.014557228941 0 +44 25227 38.014717228941 0 +44 25227 38.014717228941 0 +44 25277 38.031276839602 0 +44 25277 38.031276839602 0 +44 25287 38.031436839602 0 +44 25287 38.031436839602 0 +44 25306 38.0573843092 0 +44 25306 38.0573843092 0 +44 25316 38.0575443092 0 +44 25316 38.0575443092 0 +44 25341 38.143993151421 0 +44 25341 38.143993151421 0 +44 25348 38.144153151421 0 +44 25348 38.144153151421 0 +44 25387 38.314557229416 0 +44 25387 38.314557229416 0 +44 25393 38.314717229416 0 +44 25393 38.314717229416 0 +44 25443 38.331276833175 0 +44 25443 38.331276833175 0 +44 25453 38.331436833175 0 +44 25453 38.331436833175 0 +44 25472 38.357384284464 0 +44 25472 38.357384284464 0 +44 25482 38.357544284464 0 +44 25482 38.357544284464 0 +44 25507 38.443993151421 0 +44 25507 38.443993151421 0 +44 25514 38.444153151421 0 +44 25514 38.444153151421 0 +44 25553 38.614557230908 0 +44 25553 38.614557230908 0 +44 25559 38.614717230908 0 +44 25559 38.614717230908 0 +44 25609 38.631276827949 0 +44 25609 38.631276827949 0 +44 25619 38.631436827949 0 +44 25619 38.631436827949 0 +44 25638 38.657384259185 0 +44 25638 38.657384259185 0 +44 25648 38.657544259185 0 +44 25648 38.657544259185 0 +44 25673 38.743993151421 0 +44 25673 38.743993151421 0 +44 25680 38.744153151421 0 +44 25680 38.744153151421 0 +44 25719 38.914557233464 0 +44 25719 38.914557233464 0 +44 25725 38.914717233464 0 +44 25725 38.914717233464 0 +44 25775 38.93127682395 0 +44 25775 38.93127682395 0 +44 25785 38.93143682395 0 +44 25785 38.93143682395 0 +44 25804 38.957384233306 0 +44 25804 38.957384233306 0 +44 25814 38.957544233306 0 +44 25814 38.957544233306 0 +44 25839 39.043993151421 0 +44 25839 39.043993151421 0 +44 25846 39.044153151421 0 +44 25846 39.044153151421 0 +44 25885 39.214557237033 0 +44 25885 39.214557237033 0 +44 25891 39.214717237033 0 +44 25891 39.214717237033 0 +44 25941 39.231276821205 0 +44 25941 39.231276821205 0 +44 25951 39.231436821205 0 +44 25951 39.231436821205 0 +44 25970 39.257384206756 0 +44 25970 39.257384206756 0 +44 25980 39.257544206756 0 +44 25980 39.257544206756 0 +44 26005 39.343993151421 0 +44 26005 39.343993151421 0 +44 26012 39.344153151421 0 +44 26012 39.344153151421 0 +44 26051 39.514557241575 0 +44 26051 39.514557241575 0 +44 26057 39.514717241575 0 +44 26057 39.514717241575 0 +44 26107 39.531276819725 0 +44 26107 39.531276819725 0 +44 26117 39.531436819725 0 +44 26117 39.531436819725 0 +44 26136 39.557384179549 0 +44 26136 39.557384179549 0 +44 26146 39.557544179549 0 +44 26146 39.557544179549 0 +44 26171 39.643993151421 0 +44 26171 39.643993151421 0 +44 26178 39.644153151421 0 +44 26178 39.644153151421 0 +44 26217 39.814557247083 0 +44 26217 39.814557247083 0 +44 26223 39.814717247083 0 +44 26223 39.814717247083 0 +44 26273 39.831276819522 0 +44 26273 39.831276819522 0 +44 26283 39.831436819522 0 +44 26283 39.831436819522 0 +44 26302 39.857384151671 0 +44 26302 39.857384151671 0 +44 26312 39.857544151671 0 +44 26312 39.857544151671 0 +44 26337 39.943993151421 0 +44 26337 39.943993151421 0 +44 26344 39.944153151421 0 +44 26344 39.944153151421 0 +44 26383 40.114557253513 0 +44 26383 40.114557253513 0 +44 26389 40.114717253513 0 +44 26389 40.114717253513 0 +44 26439 40.1312768206 0 +44 26439 40.1312768206 0 +44 26449 40.1314368206 0 +44 26449 40.1314368206 0 +44 26467 40.157384123679 0 +44 26467 40.157384123679 0 +44 26473 40.157544123679 0 +44 26473 40.157544123679 0 +44 26503 40.243993151421 0 +44 26503 40.243993151421 0 +44 26510 40.244153151421 0 +44 26510 40.244153151421 0 +44 26549 40.414557260797 0 +44 26549 40.414557260797 0 +44 26555 40.414717260797 0 +44 26555 40.414717260797 0 +44 26605 40.431276822952 0 +44 26605 40.431276822952 0 +44 26615 40.431436822952 0 +44 26615 40.431436822952 0 +44 26633 40.457384095641 0 +44 26633 40.457384095641 0 +44 26639 40.457544095641 0 +44 26639 40.457544095641 0 +44 26669 40.543993151421 0 +44 26669 40.543993151421 0 +44 26676 40.544153151421 0 +44 26676 40.544153151421 0 +44 26715 40.714557269001 0 +44 26715 40.714557269001 0 +44 26721 40.714717269001 0 +44 26721 40.714717269001 0 +44 26744 40.72439933755 0 +44 26744 40.72439933755 0 +44 26758 40.72455933755 0 +44 26758 40.72455933755 0 +44 26775 40.731276826556 0 +44 26775 40.731276826556 0 +44 26785 40.731436826556 0 +44 26785 40.731436826556 0 +44 26803 40.757384067729 0 +44 26803 40.757384067729 0 +44 26809 40.757544067729 0 +44 26809 40.757544067729 0 +44 26839 40.843993151421 0 +44 26839 40.843993151421 0 +44 26846 40.844153151421 0 +44 26846 40.844153151421 0 +44 26889 41.014557277925 0 +44 26889 41.014557277925 0 +44 26895 41.014717277925 0 +44 26895 41.014717277925 0 +44 26918 41.024399324799 0 +44 26918 41.024399324799 0 +44 26932 41.024559324799 0 +44 26932 41.024559324799 0 +44 26949 41.031276831396 0 +44 26949 41.031276831396 0 +44 26959 41.031436831396 0 +44 26959 41.031436831396 0 +44 26977 41.057384039737 0 +44 26977 41.057384039737 0 +44 26983 41.057544039737 0 +44 26983 41.057544039737 0 +44 27013 41.143993151421 0 +44 27013 41.143993151421 0 +44 27020 41.144153151421 0 +44 27020 41.144153151421 0 +44 27063 41.314557287623 0 +44 27063 41.314557287623 0 +44 27069 41.314717287623 0 +44 27069 41.314717287623 0 +44 27092 41.324399312788 0 +44 27092 41.324399312788 0 +44 27106 41.324559312788 0 +44 27106 41.324559312788 0 +44 27123 41.331276837463 0 +44 27123 41.331276837463 0 +44 27133 41.331436837463 0 +44 27133 41.331436837463 0 +44 27151 41.357384011756 0 +44 27151 41.357384011756 0 +44 27157 41.357544011756 0 +44 27157 41.357544011756 0 +44 27187 41.443993151421 0 +44 27187 41.443993151421 0 +44 27194 41.444153151421 0 +44 27194 41.444153151421 0 +44 27237 41.614557298022 0 +44 27237 41.614557298022 0 +44 27243 41.614717298022 0 +44 27243 41.614717298022 0 +44 27266 41.624399301583 0 +44 27266 41.624399301583 0 +44 27280 41.624559301583 0 +44 27280 41.624559301583 0 +44 27297 41.631276844699 0 +44 27297 41.631276844699 0 +44 27307 41.631436844699 0 +44 27307 41.631436844699 0 +44 27325 41.657383983797 0 +44 27325 41.657383983797 0 +44 27331 41.657543983797 0 +44 27331 41.657543983797 0 +44 27361 41.743993151421 0 +44 27361 41.743993151421 0 +44 27368 41.744153151421 0 +44 27368 41.744153151421 0 +44 27411 41.914557309216 0 +44 27411 41.914557309216 0 +44 27417 41.914717309216 0 +44 27417 41.914717309216 0 +44 27440 41.924399291388 0 +44 27440 41.924399291388 0 +44 27454 41.924559291388 0 +44 27454 41.924559291388 0 +44 27471 41.931276852916 0 +44 27471 41.931276852916 0 +44 27481 41.931436852916 0 +44 27481 41.931436852916 0 +44 27499 41.957383956357 0 +44 27499 41.957383956357 0 +44 27505 41.957543956357 0 +44 27505 41.957543956357 0 +44 27535 42.043993151421 0 +44 27535 42.043993151421 0 +44 27542 42.044153151421 0 +44 27542 42.044153151421 0 +44 27585 42.214557321205 0 +44 27585 42.214557321205 0 +44 27591 42.214717321205 0 +44 27591 42.214717321205 0 +44 27614 42.224399282466 0 +44 27614 42.224399282466 0 +44 27628 42.224559282466 0 +44 27628 42.224559282466 0 +44 27645 42.231276861741 0 +44 27645 42.231276861741 0 +44 27655 42.231436861741 0 +44 27655 42.231436861741 0 +44 27673 42.257383930301 0 +44 27673 42.257383930301 0 +44 27679 42.257543930301 0 +44 27679 42.257543930301 0 +44 27709 42.343993151421 0 +44 27709 42.343993151421 0 +44 27716 42.344153151421 0 +44 27716 42.344153151421 0 +44 27759 42.514557333849 0 +44 27759 42.514557333849 0 +44 27765 42.514717333849 0 +44 27765 42.514717333849 0 +44 27788 42.52439927473 0 +44 27788 42.52439927473 0 +44 27802 42.52455927473 0 +44 27802 42.52455927473 0 +44 27819 42.531276870996 0 +44 27819 42.531276870996 0 +44 27829 42.531436870996 0 +44 27829 42.531436870996 0 +44 27847 42.557383905564 0 +44 27847 42.557383905564 0 +44 27853 42.557543905564 0 +44 27853 42.557543905564 0 +44 27883 42.643993151421 0 +44 27883 42.643993151421 0 +44 27890 42.644153151421 0 +44 27890 42.644153151421 0 +44 27933 42.814557347041 0 +44 27933 42.814557347041 0 +44 27939 42.814717347041 0 +44 27939 42.814717347041 0 +44 27962 42.824399268076 0 +44 27962 42.824399268076 0 +44 27976 42.824559268076 0 +44 27976 42.824559268076 0 +44 27993 42.831276880478 0 +44 27993 42.831276880478 0 +44 28003 42.831436880478 0 +44 28003 42.831436880478 0 +44 28021 42.857383882214 0 +44 28021 42.857383882214 0 +44 28027 42.857543882214 0 +44 28027 42.857543882214 0 +44 28057 42.943993151421 0 +44 28057 42.943993151421 0 +44 28064 42.944153151421 0 +44 28064 42.944153151421 0 +44 28108 43.114557360624 0 +44 28108 43.114557360624 0 +44 28118 43.114717360624 0 +44 28118 43.114717360624 0 +44 28136 43.124399262415 0 +44 28136 43.124399262415 0 +44 28150 43.124559262415 0 +44 28150 43.124559262415 0 +44 28167 43.131276890097 0 +44 28167 43.131276890097 0 +44 28177 43.131436890097 0 +44 28177 43.131436890097 0 +44 28195 43.157383860218 0 +44 28195 43.157383860218 0 +44 28201 43.157543860218 0 +44 28201 43.157543860218 0 +44 28231 43.243993151421 0 +44 28231 43.243993151421 0 +44 28238 43.244153151421 0 +44 28238 43.244153151421 0 +44 28282 43.414557374505 0 +44 28282 43.414557374505 0 +44 28292 43.414717374505 0 +44 28292 43.414717374505 0 +44 28310 43.424399257654 0 +44 28310 43.424399257654 0 +44 28324 43.424559257654 0 +44 28324 43.424559257654 0 +44 28341 43.431276899681 0 +44 28341 43.431276899681 0 +44 28351 43.431436899681 0 +44 28351 43.431436899681 0 +44 28369 43.45738383957 0 +44 28369 43.45738383957 0 +44 28375 43.45754383957 0 +44 28375 43.45754383957 0 +44 28405 43.543993151421 0 +44 28405 43.543993151421 0 +44 28412 43.544153151421 0 +44 28412 43.544153151421 0 +44 28456 43.714557388346 0 +44 28456 43.714557388346 0 +44 28466 43.714717388346 0 +44 28466 43.714717388346 0 +44 28484 43.724399253693 0 +44 28484 43.724399253693 0 +44 28498 43.724559253693 0 +44 28498 43.724559253693 0 +44 28515 43.73127690914 0 +44 28515 43.73127690914 0 +44 28525 43.73143690914 0 +44 28525 43.73143690914 0 +44 28543 43.757383820288 0 +44 28543 43.757383820288 0 +44 28549 43.757543820288 0 +44 28549 43.757543820288 0 +44 28579 43.843993151421 0 +44 28579 43.843993151421 0 +44 28586 43.844153151421 0 +44 28586 43.844153151421 0 +44 28630 44.014557401083 0 +44 28630 44.014557401083 0 +44 28640 44.014717401083 0 +44 28640 44.014717401083 0 +44 28658 44.024399250434 0 +44 28658 44.024399250434 0 +44 28672 44.024559250434 0 +44 28672 44.024559250434 0 +44 28689 44.031276918359 0 +44 28689 44.031276918359 0 +44 28699 44.031436918359 0 +44 28699 44.031436918359 0 +44 28717 44.057383802369 0 +44 28717 44.057383802369 0 +44 28723 44.057543802369 0 +44 28723 44.057543802369 0 +44 28753 44.143993151421 0 +44 28753 44.143993151421 0 +44 28760 44.144153151421 0 +44 28760 44.144153151421 0 +44 28804 44.31455741262 0 +44 28804 44.31455741262 0 +44 28814 44.31471741262 0 +44 28814 44.31471741262 0 +44 28831 44.324399247783 0 +44 28831 44.324399247783 0 +44 28841 44.324559247783 0 +44 28841 44.324559247783 0 +44 28887 44.357383786728 0 +44 28887 44.357383786728 0 +44 28893 44.357543786728 0 +44 28893 44.357543786728 0 +44 28923 44.443993151421 0 +44 28923 44.443993151421 0 +44 28930 44.444153151421 0 +44 28930 44.444153151421 0 +44 28970 44.614557422913 0 +44 28970 44.614557422913 0 +44 28980 44.614717422913 0 +44 28980 44.614717422913 0 +44 28997 44.624399245654 0 +44 28997 44.624399245654 0 +44 29007 44.624559245654 0 +44 29007 44.624559245654 0 +44 29053 44.657383773768 0 +44 29053 44.657383773768 0 +44 29059 44.657543773768 0 +44 29059 44.657543773768 0 +44 29089 44.743993151421 0 +44 29089 44.743993151421 0 +44 29096 44.744153151421 0 +44 29096 44.744153151421 0 +44 29136 44.914557431937 0 +44 29136 44.914557431937 0 +44 29146 44.914717431937 0 +44 29146 44.914717431937 0 +44 29163 44.924399243982 0 +44 29163 44.924399243982 0 +44 29173 44.924559243982 0 +44 29173 44.924559243982 0 +44 29219 44.957383763502 0 +44 29219 44.957383763502 0 +44 29225 44.957543763502 0 +44 29225 44.957543763502 0 +44 29255 45.043993151421 0 +44 29255 45.043993151421 0 +44 29262 45.044153151421 0 +44 29262 45.044153151421 0 +44 29302 45.21455743966 0 +44 29302 45.21455743966 0 +44 29312 45.21471743966 0 +44 29312 45.21471743966 0 +44 29329 45.224399242636 0 +44 29329 45.224399242636 0 +44 29339 45.224559242636 0 +44 29339 45.224559242636 0 +44 29385 45.257383755525 0 +44 29385 45.257383755525 0 +44 29391 45.257543755525 0 +44 29391 45.257543755525 0 +44 29421 45.343993151421 0 +44 29421 45.343993151421 0 +44 29428 45.344153151421 0 +44 29428 45.344153151421 0 +44 29468 45.514557446271 0 +44 29468 45.514557446271 0 +44 29478 45.514717446271 0 +44 29478 45.514717446271 0 +44 29495 45.524399241497 0 +44 29495 45.524399241497 0 +44 29505 45.524559241497 0 +44 29505 45.524559241497 0 +44 29551 45.557383748928 0 +44 29551 45.557383748928 0 +44 29557 45.557543748928 0 +44 29557 45.557543748928 0 +44 29587 45.643993151421 0 +44 29587 45.643993151421 0 +44 29594 45.644153151421 0 +44 29594 45.644153151421 0 +44 29634 45.814557453426 0 +44 29634 45.814557453426 0 +44 29644 45.814717453426 0 +44 29644 45.814717453426 0 +44 29661 45.824399240537 0 +44 29661 45.824399240537 0 +44 29671 45.824559240537 0 +44 29671 45.824559240537 0 +44 29717 45.857383742284 0 +44 29717 45.857383742284 0 +44 29723 45.857543742284 0 +44 29723 45.857543742284 0 +44 29753 45.943993151421 0 +44 29753 45.943993151421 0 +44 29760 45.944153151421 0 +44 29760 45.944153151421 0 +44 29800 46.11455746131 0 +44 29800 46.11455746131 0 +44 29810 46.11471746131 0 +44 29810 46.11471746131 0 +44 29827 46.124399236922 0 +44 29827 46.124399236922 0 +44 29837 46.124559236922 0 +44 29837 46.124559236922 0 +44 29883 46.157383734922 0 +44 29883 46.157383734922 0 +44 29889 46.157543734922 0 +44 29889 46.157543734922 0 +44 29919 46.243993151421 0 +44 29919 46.243993151421 0 +44 29926 46.244153151421 0 +44 29926 46.244153151421 0 +44 29966 46.414557469463 0 +44 29966 46.414557469463 0 +44 29976 46.414717469463 0 +44 29976 46.414717469463 0 +44 29993 46.424399227691 0 +44 29993 46.424399227691 0 +44 30003 46.424559227691 0 +44 30003 46.424559227691 0 +44 30049 46.457383726677 0 +44 30049 46.457383726677 0 +44 30055 46.457543726677 0 +44 30055 46.457543726677 0 +44 30085 46.543993151421 0 +44 30085 46.543993151421 0 +44 30092 46.544153151421 0 +44 30092 46.544153151421 0 +44 30132 46.7145574756 0 +44 30132 46.7145574756 0 +44 30142 46.7147174756 0 +44 30142 46.7147174756 0 +44 30159 46.724399216308 0 +44 30159 46.724399216308 0 +44 30169 46.724559216308 0 +44 30169 46.724559216308 0 +44 30215 46.757383717477 0 +44 30215 46.757383717477 0 +44 30221 46.757543717477 0 +44 30221 46.757543717477 0 +44 30251 46.843993151421 0 +44 30251 46.843993151421 0 +44 30258 46.844153151421 0 +44 30258 46.844153151421 0 +44 30298 47.014557477752 0 +44 30298 47.014557477752 0 +44 30308 47.014717477752 0 +44 30308 47.014717477752 0 +44 30325 47.024399204936 0 +44 30325 47.024399204936 0 +44 30335 47.024559204936 0 +44 30335 47.024559204936 0 +44 30381 47.057383707399 0 +44 30381 47.057383707399 0 +44 30387 47.057543707399 0 +44 30387 47.057543707399 0 +44 30417 47.143993151421 0 +44 30417 47.143993151421 0 +44 30424 47.144153151421 0 +44 30424 47.144153151421 0 +44 30464 47.31455747801 0 +44 30464 47.31455747801 0 +44 30474 47.31471747801 0 +44 30474 47.31471747801 0 +44 30491 47.324399193637 0 +44 30491 47.324399193637 0 +44 30501 47.324559193637 0 +44 30501 47.324559193637 0 +44 30547 47.357383698008 0 +44 30547 47.357383698008 0 +44 30553 47.357543698008 0 +44 30553 47.357543698008 0 +44 30583 47.443993151421 0 +44 30583 47.443993151421 0 +44 30590 47.444153151421 0 +44 30590 47.444153151421 0 +44 30630 47.614557478274 0 +44 30630 47.614557478274 0 +44 30640 47.614717478274 0 +44 30640 47.614717478274 0 +44 30657 47.62439918244 0 +44 30657 47.62439918244 0 +44 30667 47.62455918244 0 +44 30667 47.62455918244 0 +44 30713 47.657383697458 0 +44 30713 47.657383697458 0 +44 30719 47.657543697458 0 +44 30719 47.657543697458 0 +44 30749 47.743993151421 0 +44 30749 47.743993151421 0 +44 30756 47.744153151421 0 +44 30756 47.744153151421 0 +44 30796 47.914557478544 0 +44 30796 47.914557478544 0 +44 30806 47.914717478544 0 +44 30806 47.914717478544 0 +44 30822 47.92439917133 0 +44 30822 47.92439917133 0 +44 30828 47.92455917133 0 +44 30828 47.92455917133 0 +44 30879 47.957383708789 0 +44 30879 47.957383708789 0 +44 30885 47.957543708789 0 +44 30885 47.957543708789 0 +44 30915 48.043993151421 0 +44 30915 48.043993151421 0 +44 30922 48.044153151421 0 +44 30922 48.044153151421 0 +44 30962 48.214557477888 0 +44 30962 48.214557477888 0 +44 30972 48.214717477888 0 +44 30972 48.214717477888 0 +44 30988 48.224399161344 0 +44 30988 48.224399161344 0 +44 30994 48.224559161344 0 +44 30994 48.224559161344 0 +44 31045 48.257383722862 0 +44 31045 48.257383722862 0 +44 31051 48.257543722862 0 +44 31051 48.257543722862 0 +44 31081 48.343993151421 0 +44 31081 48.343993151421 0 +44 31088 48.344153151421 0 +44 31088 48.344153151421 0 +44 31127 48.514557476625 0 +44 31127 48.514557476625 0 +44 31133 48.514717476625 0 +44 31133 48.514717476625 0 +44 31154 48.524399152109 0 +44 31154 48.524399152109 0 +44 31160 48.524559152109 0 +44 31160 48.524559152109 0 +44 31211 48.557383738369 0 +44 31211 48.557383738369 0 +44 31217 48.557543738369 0 +44 31217 48.557543738369 0 +44 31247 48.643993151421 0 +44 31247 48.643993151421 0 +44 31254 48.644153151421 0 +44 31254 48.644153151421 0 +44 31293 48.814557474634 0 +44 31293 48.814557474634 0 +44 31299 48.814717474634 0 +44 31299 48.814717474634 0 +44 31320 48.824399143836 0 +44 31320 48.824399143836 0 +44 31326 48.824559143836 0 +44 31326 48.824559143836 0 +44 31377 48.857383754702 0 +44 31377 48.857383754702 0 +44 31383 48.857543754702 0 +44 31383 48.857543754702 0 +44 31413 48.943993151421 0 +44 31413 48.943993151421 0 +44 31420 48.944153151421 0 +44 31420 48.944153151421 0 +44 31459 49.11455747139 0 +44 31459 49.11455747139 0 +44 31465 49.11471747139 0 +44 31465 49.11471747139 0 +44 31486 49.124399137291 0 +44 31486 49.124399137291 0 +44 31492 49.124559137291 0 +44 31492 49.124559137291 0 +44 31543 49.157383770654 0 +44 31543 49.157383770654 0 +44 31549 49.157543770654 0 +44 31549 49.157543770654 0 +44 31579 49.243993151421 0 +44 31579 49.243993151421 0 +44 31586 49.244153151421 0 +44 31586 49.244153151421 0 +44 31625 49.414557467632 0 +44 31625 49.414557467632 0 +44 31631 49.414717467632 0 +44 31631 49.414717467632 0 +44 31652 49.424399131732 0 +44 31652 49.424399131732 0 +44 31658 49.424559131732 0 +44 31658 49.424559131732 0 +44 31709 49.457383786041 0 +44 31709 49.457383786041 0 +44 31715 49.457543786041 0 +44 31715 49.457543786041 0 +44 31745 49.543993151421 0 +44 31745 49.543993151421 0 +44 31752 49.544153151421 0 +44 31752 49.544153151421 0 +44 31791 49.71455746338 0 +44 31791 49.71455746338 0 +44 31797 49.71471746338 0 +44 31797 49.71471746338 0 +44 31819 49.724399127231 0 +44 31819 49.724399127231 0 +44 31829 49.724559127231 0 +44 31829 49.724559127231 0 +44 31875 49.757383800762 0 +44 31875 49.757383800762 0 +44 31881 49.757543800762 0 +44 31881 49.757543800762 0 +44 31911 49.843993151421 0 +44 31911 49.843993151421 0 +44 31918 49.844153151421 0 +44 31918 49.844153151421 0 +44 31957 50.014557459048 0 +44 31957 50.014557459048 0 +44 31963 50.014717459048 0 +44 31963 50.014717459048 0 +44 31985 50.024399123312 0 +44 31985 50.024399123312 0 +44 31995 50.024559123312 0 +44 31995 50.024559123312 0 +44 32041 50.057383815148 0 +44 32041 50.057383815148 0 +44 32047 50.057543815148 0 +44 32047 50.057543815148 0 +44 32077 50.143993151421 0 +44 32077 50.143993151421 0 +44 32084 50.144153151421 0 +44 32084 50.144153151421 0 +44 32123 50.314557454631 0 +44 32123 50.314557454631 0 +44 32129 50.314717454631 0 +44 32129 50.314717454631 0 +44 32151 50.324399119987 0 +44 32151 50.324399119987 0 +44 32161 50.324559119987 0 +44 32161 50.324559119987 0 +44 32207 50.357383829549 0 +44 32207 50.357383829549 0 +44 32213 50.357543829549 0 +44 32213 50.357543829549 0 +44 32243 50.443993151421 0 +44 32243 50.443993151421 0 +44 32250 50.444153151421 0 +44 32250 50.444153151421 0 +44 32289 50.614557450054 0 +44 32289 50.614557450054 0 +44 32295 50.614717450054 0 +44 32295 50.614717450054 0 +44 32317 50.624399117227 0 +44 32317 50.624399117227 0 +44 32327 50.624559117227 0 +44 32327 50.624559117227 0 +44 32373 50.657383844282 0 +44 32373 50.657383844282 0 +44 32379 50.657543844282 0 +44 32379 50.657543844282 0 +44 32409 50.743993151421 0 +44 32409 50.743993151421 0 +44 32416 50.744153151421 0 +44 32416 50.744153151421 0 +44 32455 50.914557445285 0 +44 32455 50.914557445285 0 +44 32461 50.914717445285 0 +44 32461 50.914717445285 0 +44 32483 50.924399115103 0 +44 32483 50.924399115103 0 +44 32493 50.924559115103 0 +44 32493 50.924559115103 0 +44 32539 50.957383859315 0 +44 32539 50.957383859315 0 +44 32545 50.957543859315 0 +44 32545 50.957543859315 0 +44 32575 51.043993151421 0 +44 32575 51.043993151421 0 +44 32582 51.044153151421 0 +44 32582 51.044153151421 0 +44 32621 51.21455744041 0 +44 32621 51.21455744041 0 +44 32627 51.21471744041 0 +44 32627 51.21471744041 0 +44 32645 51.224399113583 0 +44 32645 51.224399113583 0 +44 32655 51.224559113583 0 +44 32655 51.224559113583 0 +44 32701 51.257383874742 0 +44 32701 51.257383874742 0 +44 32707 51.257543874742 0 +44 32707 51.257543874742 0 +44 32733 51.343993151421 0 +44 32733 51.343993151421 0 +44 32740 51.344153151421 0 +44 32740 51.344153151421 0 +44 32779 51.514557435458 0 +44 32779 51.514557435458 0 +44 32785 51.514717435458 0 +44 32785 51.514717435458 0 +44 32803 51.524399112627 0 +44 32803 51.524399112627 0 +44 32813 51.524559112627 0 +44 32813 51.524559112627 0 +44 32863 51.557383890499 0 +44 32863 51.557383890499 0 +44 32869 51.557543890499 0 +44 32869 51.557543890499 0 +44 32899 51.643993151421 0 +44 32899 51.643993151421 0 +44 32906 51.644153151421 0 +44 32906 51.644153151421 0 +44 32945 51.814557430365 0 +44 32945 51.814557430365 0 +44 32951 51.814717430365 0 +44 32951 51.814717430365 0 +44 32969 51.824399112353 0 +44 32969 51.824399112353 0 +44 32979 51.824559112353 0 +44 32979 51.824559112353 0 +44 33029 51.857383906635 0 +44 33029 51.857383906635 0 +44 33035 51.857543906635 0 +44 33035 51.857543906635 0 +44 33065 51.943993151421 0 +44 33065 51.943993151421 0 +44 33072 51.944153151421 0 +44 33072 51.944153151421 0 +44 33111 52.114557425224 0 +44 33111 52.114557425224 0 +44 33117 52.114717425224 0 +44 33117 52.114717425224 0 +44 33135 52.124399112693 0 +44 33135 52.124399112693 0 +44 33145 52.124559112693 0 +44 33145 52.124559112693 0 +44 33195 52.157383923181 0 +44 33195 52.157383923181 0 +44 33201 52.157543923181 0 +44 33201 52.157543923181 0 +44 33231 52.243993151421 0 +44 33231 52.243993151421 0 +44 33238 52.244153151421 0 +44 33238 52.244153151421 0 +44 33277 52.414557420182 0 +44 33277 52.414557420182 0 +44 33283 52.414717420182 0 +44 33283 52.414717420182 0 +44 33301 52.424399113556 0 +44 33301 52.424399113556 0 +44 33311 52.424559113556 0 +44 33311 52.424559113556 0 +44 33361 52.457383940072 0 +44 33361 52.457383940072 0 +44 33367 52.457543940072 0 +44 33367 52.457543940072 0 +44 33397 52.543993151421 0 +44 33397 52.543993151421 0 +44 33404 52.544153151421 0 +44 33404 52.544153151421 0 +44 33443 52.714557415208 0 +44 33443 52.714557415208 0 +44 33449 52.714717415208 0 +44 33449 52.714717415208 0 +44 33467 52.724399114954 0 +44 33467 52.724399114954 0 +44 33477 52.724559114954 0 +44 33477 52.724559114954 0 +44 33527 52.757383957286 0 +44 33527 52.757383957286 0 +44 33533 52.757543957286 0 +44 33533 52.757543957286 0 +44 33563 52.843993151421 0 +44 33563 52.843993151421 0 +44 33570 52.844153151421 0 +44 33570 52.844153151421 0 +44 33609 53.014557410369 0 +44 33609 53.014557410369 0 +44 33615 53.014717410369 0 +44 33615 53.014717410369 0 +44 33633 53.024399116886 0 +44 33633 53.024399116886 0 +44 33643 53.024559116886 0 +44 33643 53.024559116886 0 +44 33693 53.057383974792 0 +44 33693 53.057383974792 0 +44 33699 53.057543974792 0 +44 33699 53.057543974792 0 +44 33729 53.143993151421 0 +44 33729 53.143993151421 0 +44 33736 53.144153151421 0 +44 33736 53.144153151421 0 +44 33775 53.32439911934 0 +44 33775 53.32439911934 0 +44 33784 53.32455911934 0 +44 33784 53.32455911934 0 +44 33830 53.357383991743 0 +44 33830 53.357383991743 0 +44 33835 53.357543991743 0 +44 33835 53.357543991743 0 +44 33863 53.443993151421 0 +44 33863 53.443993151421 0 +44 33869 53.444153151421 0 +44 33869 53.444153151421 0 +44 33902 53.624399122413 0 +44 33902 53.624399122413 0 +44 33911 53.624559122413 0 +44 33911 53.624559122413 0 +44 33957 53.657384007982 0 +44 33957 53.657384007982 0 +44 33962 53.657544007982 0 +44 33962 53.657544007982 0 +44 33990 53.743993151421 0 +44 33990 53.743993151421 0 +44 33996 53.744153151421 0 +44 33996 53.744153151421 0 +44 34029 53.924399125883 0 +44 34029 53.924399125883 0 +44 34038 53.924559125883 0 +44 34038 53.924559125883 0 +44 34084 53.957384023455 0 +44 34084 53.957384023455 0 +44 34089 53.957544023455 0 +44 34089 53.957544023455 0 +44 34117 54.043993151421 0 +44 34117 54.043993151421 0 +44 34123 54.044153151421 0 +44 34123 54.044153151421 0 +44 34156 54.224399129356 0 +44 34156 54.224399129356 0 +44 34165 54.224559129356 0 +44 34165 54.224559129356 0 +44 34211 54.257384037982 0 +44 34211 54.257384037982 0 +44 34216 54.257544037982 0 +44 34216 54.257544037982 0 +44 34244 54.343993151421 0 +44 34244 54.343993151421 0 +44 34250 54.344153151421 0 +44 34250 54.344153151421 0 +44 34283 54.524399132878 0 +44 34283 54.524399132878 0 +44 34292 54.524559132878 0 +44 34292 54.524559132878 0 +44 34338 54.557384051792 0 +44 34338 54.557384051792 0 +44 34343 54.557544051792 0 +44 34343 54.557544051792 0 +44 34371 54.643993151421 0 +44 34371 54.643993151421 0 +44 34377 54.644153151421 0 +44 34377 54.644153151421 0 +44 34410 54.824399136418 0 +44 34410 54.824399136418 0 +44 34419 54.824559136418 0 +44 34419 54.824559136418 0 +44 34465 54.857384066271 0 +44 34465 54.857384066271 0 +44 34470 54.857544066271 0 +44 34470 54.857544066271 0 +44 34498 54.943993151421 0 +44 34498 54.943993151421 0 +44 34504 54.944153151421 0 +44 34504 54.944153151421 0 +44 34537 55.124399139869 0 +44 34537 55.124399139869 0 +44 34546 55.124559139869 0 +44 34546 55.124559139869 0 +44 34592 55.157384081514 0 +44 34592 55.157384081514 0 +44 34597 55.157544081514 0 +44 34597 55.157544081514 0 +44 34625 55.243993151421 0 +44 34625 55.243993151421 0 +44 34631 55.244153151421 0 +44 34631 55.244153151421 0 +44 34664 55.424399143329 0 +44 34664 55.424399143329 0 +44 34673 55.424559143329 0 +44 34673 55.424559143329 0 +44 34719 55.457384097382 0 +44 34719 55.457384097382 0 +44 34724 55.457544097382 0 +44 34724 55.457544097382 0 +44 34752 55.543993151421 0 +44 34752 55.543993151421 0 +44 34758 55.544153151421 0 +44 34758 55.544153151421 0 +44 34791 55.724399146854 0 +44 34791 55.724399146854 0 +44 34800 55.724559146854 0 +44 34800 55.724559146854 0 +44 34846 55.757384113825 0 +44 34846 55.757384113825 0 +44 34851 55.757544113825 0 +44 34851 55.757544113825 0 +44 34879 55.843993151421 0 +44 34879 55.843993151421 0 +44 34885 55.844153151421 0 +44 34885 55.844153151421 0 +44 34918 56.024399150367 0 +44 34918 56.024399150367 0 +44 34927 56.024559150367 0 +44 34927 56.024559150367 0 +44 34973 56.057384130858 0 +44 34973 56.057384130858 0 +44 34978 56.057544130858 0 +44 34978 56.057544130858 0 +44 35006 56.143993151421 0 +44 35006 56.143993151421 0 +44 35012 56.144153151421 0 +44 35012 56.144153151421 0 +44 35045 56.324399153849 0 +44 35045 56.324399153849 0 +44 35054 56.324559153849 0 +44 35054 56.324559153849 0 +44 35101 56.357384148407 0 +44 35101 56.357384148407 0 +44 35110 56.357544148407 0 +44 35110 56.357544148407 0 +44 35133 56.443993151421 0 +44 35133 56.443993151421 0 +44 35139 56.444153151421 0 +44 35139 56.444153151421 0 +45 356 4.1 0 +45 356 4.1 0 +45 396 4.131276647939 0 +45 396 4.131276647939 0 +45 401 4.131436647939 0 +45 401 4.131436647939 0 +45 493 4.43127664842 0 +45 493 4.43127664842 0 +45 498 4.43143664842 0 +45 498 4.43143664842 0 +45 548 4.543993151421 0 +45 548 4.543993151421 2 +45 549 4.543993151421 2 +45 549 4.543993151421 0 +45 552 4.543993151421 0 +45 552 4.543993151421 0 +45 558 4.544153151421 0 +45 558 4.544153151421 0 +45 612 4.731276648452 0 +45 612 4.731276648452 0 +45 617 4.731436648452 0 +45 617 4.731436648452 0 +45 667 4.843993151421 0 +45 667 4.843993151421 2 +45 668 4.843993151421 2 +45 668 4.843993151421 0 +45 671 4.843993151421 0 +45 671 4.843993151421 0 +45 677 4.844153151421 0 +45 677 4.844153151421 0 +45 731 5.031276648071 0 +45 731 5.031276648071 0 +45 736 5.031436648071 0 +45 736 5.031436648071 0 +45 787 5.143993151421 0 +45 787 5.143993151421 2 +45 788 5.143993151421 2 +45 788 5.143993151421 0 +45 791 5.143993151421 0 +45 791 5.143993151421 0 +45 798 5.144153151421 0 +45 798 5.144153151421 0 +45 861 5.331276647275 0 +45 861 5.331276647275 0 +45 867 5.331436647275 0 +45 867 5.331436647275 0 +45 921 5.443993151421 0 +45 921 5.443993151421 2 +45 922 5.443993151421 2 +45 922 5.443993151421 0 +45 925 5.443993151421 0 +45 925 5.443993151421 0 +45 932 5.444153151421 0 +45 932 5.444153151421 0 +45 995 5.631276646135 0 +45 995 5.631276646135 0 +45 1001 5.631436646135 0 +45 1001 5.631436646135 0 +45 1055 5.693585836534 0 +45 1055 5.693585836534 0 +45 1061 5.693745836534 0 +45 1061 5.693745836534 0 +45 1079 5.743993151421 0 +45 1079 5.743993151421 2 +45 1080 5.743993151421 2 +45 1080 5.743993151421 0 +45 1083 5.743993151421 0 +45 1083 5.743993151421 0 +45 1090 5.744153151421 0 +45 1090 5.744153151421 0 +45 1153 5.931276644725 0 +45 1153 5.931276644725 0 +45 1159 5.931436644725 0 +45 1159 5.931436644725 0 +45 1213 5.993585836591 0 +45 1213 5.993585836591 0 +45 1219 5.993745836591 0 +45 1219 5.993745836591 0 +45 1237 6.043993151421 0 +45 1237 6.043993151421 2 +45 1238 6.043993151421 2 +45 1238 6.043993151421 0 +45 1241 6.043993151421 0 +45 1241 6.043993151421 0 +45 1248 6.044153151421 0 +45 1248 6.044153151421 0 +45 1320 6.231276643012 0 +45 1320 6.231276643012 0 +45 1331 6.231436643012 0 +45 1331 6.231436643012 0 +45 1391 6.293585836659 0 +45 1391 6.293585836659 0 +45 1398 6.293745836659 0 +45 1398 6.293745836659 0 +45 1418 6.343993151421 0 +45 1418 6.343993151421 2 +45 1419 6.343993151421 2 +45 1419 6.343993151421 0 +45 1422 6.343993151421 0 +45 1422 6.343993151421 0 +45 1430 6.344153151421 0 +45 1430 6.344153151421 0 +45 1536 6.531276640981 0 +45 1536 6.531276640981 0 +45 1547 6.531436640981 0 +45 1547 6.531436640981 0 +45 1608 6.593585836741 0 +45 1608 6.593585836741 0 +45 1615 6.593745836741 0 +45 1615 6.593745836741 0 +45 1635 6.643993151421 0 +45 1635 6.643993151421 2 +45 1636 6.643993151421 2 +45 1636 6.643993151421 0 +45 1639 6.643993151421 0 +45 1639 6.643993151421 0 +45 1647 6.644153151421 0 +45 1647 6.644153151421 0 +45 1753 6.83127663868 0 +45 1753 6.83127663868 0 +45 1764 6.83143663868 0 +45 1764 6.83143663868 0 +45 1825 6.893585836836 0 +45 1825 6.893585836836 0 +45 1832 6.893745836836 0 +45 1832 6.893745836836 0 +45 1852 6.943993151421 0 +45 1852 6.943993151421 2 +45 1853 6.943993151421 2 +45 1853 6.943993151421 0 +45 1856 6.943993151421 0 +45 1856 6.943993151421 0 +45 1864 6.944153151421 0 +45 1864 6.944153151421 0 +45 1970 7.131276636128 0 +45 1970 7.131276636128 0 +45 1981 7.131436636128 0 +45 1981 7.131436636128 0 +45 2042 7.193585836946 0 +45 2042 7.193585836946 0 +45 2049 7.193745836946 0 +45 2049 7.193745836946 0 +45 2069 7.243993151421 0 +45 2069 7.243993151421 2 +45 2070 7.243993151421 2 +45 2070 7.243993151421 0 +45 2073 7.243993151421 0 +45 2073 7.243993151421 0 +45 2081 7.244153151421 0 +45 2081 7.244153151421 0 +45 2187 7.431276633301 0 +45 2187 7.431276633301 0 +45 2198 7.431436633301 0 +45 2198 7.431436633301 0 +45 2259 7.493585837077 0 +45 2259 7.493585837077 0 +45 2266 7.493745837077 0 +45 2266 7.493745837077 0 +45 2286 7.543993151421 0 +45 2286 7.543993151421 2 +45 2287 7.543993151421 2 +45 2287 7.543993151421 0 +45 2290 7.543993151421 0 +45 2290 7.543993151421 0 +45 2298 7.544153151421 0 +45 2298 7.544153151421 0 +45 2404 7.73127663025 0 +45 2404 7.73127663025 0 +45 2415 7.73143663025 0 +45 2415 7.73143663025 0 +45 2476 7.79358583722 0 +45 2476 7.79358583722 0 +45 2483 7.79374583722 0 +45 2483 7.79374583722 0 +45 2503 7.843993151421 0 +45 2503 7.843993151421 2 +45 2504 7.843993151421 2 +45 2504 7.843993151421 0 +45 2507 7.843993151421 0 +45 2507 7.843993151421 0 +45 2515 7.844153151421 0 +45 2515 7.844153151421 0 +45 2589 8.024399341429 0 +45 2589 8.024399341429 0 +45 2608 8.024559341429 0 +45 2608 8.024559341429 0 +45 2622 8.031276627008 0 +45 2622 8.031276627008 0 +45 2637 8.031436627008 0 +45 2637 8.031436627008 0 +45 2693 8.093585837381 0 +45 2693 8.093585837381 0 +45 2700 8.093745837381 0 +45 2700 8.093745837381 0 +45 2720 8.143993151421 0 +45 2720 8.143993151421 2 +45 2721 8.143993151421 2 +45 2721 8.143993151421 0 +45 2724 8.143993151421 0 +45 2724 8.143993151421 0 +45 2732 8.144153151421 0 +45 2732 8.144153151421 0 +45 2806 8.324399339726 0 +45 2806 8.324399339726 0 +45 2825 8.324559339726 0 +45 2825 8.324559339726 0 +45 2843 8.331276623516 0 +45 2843 8.331276623516 0 +45 2858 8.331436623516 0 +45 2858 8.331436623516 0 +45 2914 8.393585837564 0 +45 2914 8.393585837564 0 +45 2921 8.393745837564 0 +45 2921 8.393745837564 0 +45 2941 8.443993151421 0 +45 2941 8.443993151421 2 +45 2942 8.443993151421 2 +45 2942 8.443993151421 0 +45 2945 8.443993151421 0 +45 2945 8.443993151421 0 +45 2953 8.444153151421 0 +45 2953 8.444153151421 0 +45 3031 8.624399337937 0 +45 3031 8.624399337937 0 +45 3050 8.624559337937 0 +45 3050 8.624559337937 0 +45 3068 8.631276619892 0 +45 3068 8.631276619892 0 +45 3083 8.631436619892 0 +45 3083 8.631436619892 0 +45 3139 8.693585837758 0 +45 3139 8.693585837758 0 +45 3146 8.693745837758 0 +45 3146 8.693745837758 0 +45 3166 8.743993151421 0 +45 3166 8.743993151421 2 +45 3167 8.743993151421 2 +45 3167 8.743993151421 0 +45 3170 8.743993151421 0 +45 3170 8.743993151421 0 +45 3178 8.744153151421 0 +45 3178 8.744153151421 0 +45 3256 8.924399336079 0 +45 3256 8.924399336079 0 +45 3275 8.924559336079 0 +45 3275 8.924559336079 0 +45 3293 8.931276616157 0 +45 3293 8.931276616157 0 +45 3308 8.931436616157 0 +45 3308 8.931436616157 0 +45 3364 8.993585837958 0 +45 3364 8.993585837958 0 +45 3371 8.993745837958 0 +45 3371 8.993745837958 0 +45 3391 9.043993151421 0 +45 3391 9.043993151421 2 +45 3392 9.043993151421 2 +45 3392 9.043993151421 0 +45 3395 9.043993151421 0 +45 3395 9.043993151421 0 +45 3403 9.044153151421 0 +45 3403 9.044153151421 0 +45 3481 9.2243993342 0 +45 3481 9.2243993342 0 +45 3500 9.2245593342 0 +45 3500 9.2245593342 0 +45 3518 9.231276612299 0 +45 3518 9.231276612299 0 +45 3533 9.231436612299 0 +45 3533 9.231436612299 0 +45 3589 9.293585838174 0 +45 3589 9.293585838174 0 +45 3596 9.293745838174 0 +45 3596 9.293745838174 0 +45 3616 9.343993151421 0 +45 3616 9.343993151421 2 +45 3617 9.343993151421 2 +45 3617 9.343993151421 0 +45 3620 9.343993151421 0 +45 3620 9.343993151421 0 +45 3628 9.344153151421 0 +45 3628 9.344153151421 0 +45 3706 9.524399332304 0 +45 3706 9.524399332304 0 +45 3725 9.524559332304 0 +45 3725 9.524559332304 0 +45 3743 9.531276608424 0 +45 3743 9.531276608424 0 +45 3758 9.531436608424 0 +45 3758 9.531436608424 0 +45 3814 9.593585838387 0 +45 3814 9.593585838387 0 +45 3821 9.593745838387 0 +45 3821 9.593745838387 0 +45 3841 9.643993151421 0 +45 3841 9.643993151421 2 +45 3842 9.643993151421 2 +45 3842 9.643993151421 0 +45 3845 9.643993151421 0 +45 3845 9.643993151421 0 +45 3853 9.644153151421 0 +45 3853 9.644153151421 0 +45 3931 9.824399330432 0 +45 3931 9.824399330432 0 +45 3950 9.824559330432 0 +45 3950 9.824559330432 0 +45 3968 9.831276604546 0 +45 3968 9.831276604546 0 +45 3983 9.831436604546 0 +45 3983 9.831436604546 0 +45 4039 9.89358583861 0 +45 4039 9.89358583861 0 +45 4046 9.89374583861 0 +45 4046 9.89374583861 0 +45 4066 9.943993151421 0 +45 4066 9.943993151421 2 +45 4067 9.943993151421 2 +45 4067 9.943993151421 0 +45 4070 9.943993151421 0 +45 4070 9.943993151421 0 +45 4078 9.944153151421 0 +45 4078 9.944153151421 0 +45 4156 10.124399328574 0 +45 4156 10.124399328574 0 +45 4175 10.124559328574 0 +45 4175 10.124559328574 0 +45 4193 10.13127660067 0 +45 4193 10.13127660067 0 +45 4208 10.13143660067 0 +45 4208 10.13143660067 0 +45 4264 10.193585838842 0 +45 4264 10.193585838842 0 +45 4271 10.193745838842 0 +45 4271 10.193745838842 0 +45 4291 10.243993151421 0 +45 4291 10.243993151421 2 +45 4292 10.243993151421 2 +45 4292 10.243993151421 0 +45 4295 10.243993151421 0 +45 4295 10.243993151421 0 +45 4303 10.244153151421 0 +45 4303 10.244153151421 0 +45 4381 10.424399326766 0 +45 4381 10.424399326766 0 +45 4400 10.424559326766 0 +45 4400 10.424559326766 0 +45 4418 10.43127659687 0 +45 4418 10.43127659687 0 +45 4433 10.43143659687 0 +45 4433 10.43143659687 0 +45 4489 10.493585839083 0 +45 4489 10.493585839083 0 +45 4496 10.493745839083 0 +45 4496 10.493745839083 0 +45 4516 10.543993151421 0 +45 4516 10.543993151421 2 +45 4517 10.543993151421 2 +45 4517 10.543993151421 0 +45 4520 10.543993151421 0 +45 4520 10.543993151421 0 +45 4528 10.544153151421 0 +45 4528 10.544153151421 0 +45 4577 10.714557554278 0 +45 4577 10.714557554278 0 +45 4596 10.714717554278 0 +45 4596 10.714717554278 0 +45 4614 10.724399325082 0 +45 4614 10.724399325082 0 +45 4633 10.724559325082 0 +45 4633 10.724559325082 0 +45 4651 10.731276593222 0 +45 4651 10.731276593222 0 +45 4666 10.731436593222 0 +45 4666 10.731436593222 0 +45 4722 10.793585839325 0 +45 4722 10.793585839325 0 +45 4729 10.793745839325 0 +45 4729 10.793745839325 0 +45 4749 10.843993151421 0 +45 4749 10.843993151421 2 +45 4750 10.843993151421 2 +45 4750 10.843993151421 0 +45 4753 10.843993151421 0 +45 4753 10.843993151421 0 +45 4761 10.844153151421 0 +45 4761 10.844153151421 0 +45 4810 11.014557537855 0 +45 4810 11.014557537855 0 +45 4829 11.014717537855 0 +45 4829 11.014717537855 0 +45 4847 11.0243993239 0 +45 4847 11.0243993239 0 +45 4866 11.0245593239 0 +45 4866 11.0245593239 0 +45 4884 11.031276590451 0 +45 4884 11.031276590451 0 +45 4899 11.031436590451 0 +45 4899 11.031436590451 0 +45 4955 11.093585839276 0 +45 4955 11.093585839276 0 +45 4962 11.093745839276 0 +45 4962 11.093745839276 0 +45 4982 11.143993151421 0 +45 4982 11.143993151421 2 +45 4983 11.143993151421 2 +45 4983 11.143993151421 0 +45 4986 11.143993151421 0 +45 4986 11.143993151421 0 +45 4994 11.144153151421 0 +45 4994 11.144153151421 0 +45 5043 11.314557521994 0 +45 5043 11.314557521994 0 +45 5062 11.314717521994 0 +45 5062 11.314717521994 0 +45 5080 11.324399323363 0 +45 5080 11.324399323363 0 +45 5099 11.324559323363 0 +45 5099 11.324559323363 0 +45 5117 11.331276588755 0 +45 5117 11.331276588755 0 +45 5132 11.331436588755 0 +45 5132 11.331436588755 0 +45 5188 11.39358583882 0 +45 5188 11.39358583882 0 +45 5195 11.39374583882 0 +45 5195 11.39374583882 0 +45 5215 11.443993151421 0 +45 5215 11.443993151421 2 +45 5216 11.443993151421 2 +45 5216 11.443993151421 0 +45 5219 11.443993151421 0 +45 5219 11.443993151421 0 +45 5227 11.444153151421 0 +45 5227 11.444153151421 0 +45 5276 11.614557506596 0 +45 5276 11.614557506596 0 +45 5295 11.614717506596 0 +45 5295 11.614717506596 0 +45 5313 11.624399323354 0 +45 5313 11.624399323354 0 +45 5332 11.624559323354 0 +45 5332 11.624559323354 0 +45 5350 11.631276587986 0 +45 5350 11.631276587986 0 +45 5365 11.631436587986 0 +45 5365 11.631436587986 0 +45 5425 11.69358583807 0 +45 5425 11.69358583807 0 +45 5432 11.69374583807 0 +45 5432 11.69374583807 0 +45 5456 11.743993151421 0 +45 5456 11.743993151421 2 +45 5457 11.743993151421 2 +45 5457 11.743993151421 0 +45 5460 11.743993151421 0 +45 5460 11.743993151421 0 +45 5468 11.744153151421 0 +45 5468 11.744153151421 0 +45 5517 11.914557491616 0 +45 5517 11.914557491616 0 +45 5536 11.914717491616 0 +45 5536 11.914717491616 0 +45 5554 11.924399323823 0 +45 5554 11.924399323823 0 +45 5573 11.924559323823 0 +45 5573 11.924559323823 0 +45 5591 11.93127658806 0 +45 5591 11.93127658806 0 +45 5606 11.93143658806 0 +45 5606 11.93143658806 0 +45 5666 11.993585837216 0 +45 5666 11.993585837216 0 +45 5673 11.993745837216 0 +45 5673 11.993745837216 0 +45 5697 12.043993151421 0 +45 5697 12.043993151421 2 +45 5698 12.043993151421 2 +45 5698 12.043993151421 0 +45 5701 12.043993151421 0 +45 5701 12.043993151421 0 +45 5709 12.044153151421 0 +45 5709 12.044153151421 0 +45 5758 12.21455747694 0 +45 5758 12.21455747694 0 +45 5777 12.21471747694 0 +45 5777 12.21471747694 0 +45 5795 12.224399324626 0 +45 5795 12.224399324626 0 +45 5814 12.224559324626 0 +45 5814 12.224559324626 0 +45 5832 12.231276588692 0 +45 5832 12.231276588692 0 +45 5847 12.231436588692 0 +45 5847 12.231436588692 0 +45 5907 12.293585836586 0 +45 5907 12.293585836586 0 +45 5914 12.293745836586 0 +45 5914 12.293745836586 0 +45 5938 12.343993151421 0 +45 5938 12.343993151421 2 +45 5939 12.343993151421 2 +45 5939 12.343993151421 0 +45 5942 12.343993151421 0 +45 5942 12.343993151421 0 +45 5950 12.344153151421 0 +45 5950 12.344153151421 0 +45 5999 12.514557462306 0 +45 5999 12.514557462306 0 +45 6018 12.514717462306 0 +45 6018 12.514717462306 0 +45 6036 12.524399325429 0 +45 6036 12.524399325429 0 +45 6055 12.524559325429 0 +45 6055 12.524559325429 0 +45 6073 12.531276589365 0 +45 6073 12.531276589365 0 +45 6088 12.531436589365 0 +45 6088 12.531436589365 0 +45 6148 12.593585836449 0 +45 6148 12.593585836449 0 +45 6155 12.593745836449 0 +45 6155 12.593745836449 0 +45 6179 12.643993151421 0 +45 6179 12.643993151421 2 +45 6180 12.643993151421 2 +45 6180 12.643993151421 0 +45 6183 12.643993151421 0 +45 6183 12.643993151421 0 +45 6191 12.644153151421 0 +45 6191 12.644153151421 0 +45 6240 12.814557447681 0 +45 6240 12.814557447681 0 +45 6259 12.814717447681 0 +45 6259 12.814717447681 0 +45 6277 12.824399326242 0 +45 6277 12.824399326242 0 +45 6296 12.824559326242 0 +45 6296 12.824559326242 0 +45 6314 12.831276590037 0 +45 6314 12.831276590037 0 +45 6329 12.831436590037 0 +45 6329 12.831436590037 0 +45 6389 12.893585836843 0 +45 6389 12.893585836843 0 +45 6396 12.893745836843 0 +45 6396 12.893745836843 0 +45 6420 12.943993151421 0 +45 6420 12.943993151421 2 +45 6421 12.943993151421 2 +45 6421 12.943993151421 0 +45 6424 12.943993151421 0 +45 6424 12.943993151421 0 +45 6432 12.944153151421 0 +45 6432 12.944153151421 0 +45 6481 13.114557433023 0 +45 6481 13.114557433023 0 +45 6500 13.114717433023 0 +45 6500 13.114717433023 0 +45 6518 13.12439932705 0 +45 6518 13.12439932705 0 +45 6537 13.12455932705 0 +45 6537 13.12455932705 0 +45 6555 13.131276590725 0 +45 6555 13.131276590725 0 +45 6570 13.131436590725 0 +45 6570 13.131436590725 0 +45 6630 13.193585837765 0 +45 6630 13.193585837765 0 +45 6637 13.193745837765 0 +45 6637 13.193745837765 0 +45 6661 13.243993151421 0 +45 6661 13.243993151421 2 +45 6662 13.243993151421 2 +45 6662 13.243993151421 0 +45 6665 13.243993151421 0 +45 6665 13.243993151421 0 +45 6673 13.244153151421 0 +45 6673 13.244153151421 0 +45 6722 13.414557418408 0 +45 6722 13.414557418408 0 +45 6741 13.414717418408 0 +45 6741 13.414717418408 0 +45 6759 13.424399327873 0 +45 6759 13.424399327873 0 +45 6778 13.424559327873 0 +45 6778 13.424559327873 0 +45 6796 13.431276591403 0 +45 6796 13.431276591403 0 +45 6811 13.431436591403 0 +45 6811 13.431436591403 0 +45 6871 13.493585839212 0 +45 6871 13.493585839212 0 +45 6878 13.493745839212 0 +45 6878 13.493745839212 0 +45 6902 13.543993151421 0 +45 6902 13.543993151421 2 +45 6903 13.543993151421 2 +45 6903 13.543993151421 0 +45 6906 13.543993151421 0 +45 6906 13.543993151421 0 +45 6914 13.544153151421 0 +45 6914 13.544153151421 0 +45 6963 13.71455740379 0 +45 6963 13.71455740379 0 +45 6982 13.71471740379 0 +45 6982 13.71471740379 0 +45 7000 13.724399328697 0 +45 7000 13.724399328697 0 +45 7019 13.724559328697 0 +45 7019 13.724559328697 0 +45 7037 13.731276592089 0 +45 7037 13.731276592089 0 +45 7052 13.731436592089 0 +45 7052 13.731436592089 0 +45 7112 13.793585841175 0 +45 7112 13.793585841175 0 +45 7119 13.793745841175 0 +45 7119 13.793745841175 0 +45 7143 13.843993151421 0 +45 7143 13.843993151421 2 +45 7144 13.843993151421 2 +45 7144 13.843993151421 0 +45 7147 13.843993151421 0 +45 7147 13.843993151421 0 +45 7155 13.844153151421 0 +45 7155 13.844153151421 0 +45 7203 14.014557389119 0 +45 7203 14.014557389119 0 +45 7218 14.014717389119 0 +45 7218 14.014717389119 0 +45 7241 14.024399329512 0 +45 7241 14.024399329512 0 +45 7260 14.024559329512 0 +45 7260 14.024559329512 0 +45 7278 14.031276592779 0 +45 7278 14.031276592779 0 +45 7293 14.031436592779 0 +45 7293 14.031436592779 0 +45 7353 14.093585843644 0 +45 7353 14.093585843644 0 +45 7360 14.093745843644 0 +45 7360 14.093745843644 0 +45 7384 14.143993151421 0 +45 7384 14.143993151421 2 +45 7385 14.143993151421 2 +45 7385 14.143993151421 0 +45 7388 14.143993151421 0 +45 7388 14.143993151421 0 +45 7396 14.144153151421 0 +45 7396 14.144153151421 0 +45 7444 14.314557374493 0 +45 7444 14.314557374493 0 +45 7459 14.314717374493 0 +45 7459 14.314717374493 0 +45 7482 14.324399330335 0 +45 7482 14.324399330335 0 +45 7501 14.324559330335 0 +45 7501 14.324559330335 0 +45 7519 14.33127659346 0 +45 7519 14.33127659346 0 +45 7534 14.33143659346 0 +45 7534 14.33143659346 0 +45 7594 14.393585846603 0 +45 7594 14.393585846603 0 +45 7601 14.393745846603 0 +45 7601 14.393745846603 0 +45 7625 14.443993151421 0 +45 7625 14.443993151421 2 +45 7626 14.443993151421 2 +45 7626 14.443993151421 0 +45 7629 14.443993151421 0 +45 7629 14.443993151421 0 +45 7637 14.444153151421 0 +45 7637 14.444153151421 0 +45 7685 14.614557359901 0 +45 7685 14.614557359901 0 +45 7700 14.614717359901 0 +45 7700 14.614717359901 0 +45 7723 14.624399331156 0 +45 7723 14.624399331156 0 +45 7742 14.624559331156 0 +45 7742 14.624559331156 0 +45 7760 14.63127659416 0 +45 7760 14.63127659416 0 +45 7775 14.63143659416 0 +45 7775 14.63143659416 0 +45 7835 14.693585849737 0 +45 7835 14.693585849737 0 +45 7842 14.693745849737 0 +45 7842 14.693745849737 0 +45 7866 14.743993151421 0 +45 7866 14.743993151421 2 +45 7867 14.743993151421 2 +45 7867 14.743993151421 0 +45 7870 14.743993151421 0 +45 7870 14.743993151421 0 +45 7878 14.744153151421 0 +45 7878 14.744153151421 0 +45 7926 14.914557345304 0 +45 7926 14.914557345304 0 +45 7941 14.914717345304 0 +45 7941 14.914717345304 0 +45 7964 14.924399331969 0 +45 7964 14.924399331969 0 +45 7983 14.924559331969 0 +45 7983 14.924559331969 0 +45 8001 14.931276594853 0 +45 8001 14.931276594853 0 +45 8016 14.931436594853 0 +45 8016 14.931436594853 0 +45 8076 14.993585846435 0 +45 8076 14.993585846435 0 +45 8083 14.993745846435 0 +45 8083 14.993745846435 0 +45 8107 15.043993151421 0 +45 8107 15.043993151421 2 +45 8108 15.043993151421 2 +45 8108 15.043993151421 0 +45 8111 15.043993151421 0 +45 8111 15.043993151421 0 +45 8119 15.044153151421 0 +45 8119 15.044153151421 0 +45 8167 15.214557330718 0 +45 8167 15.214557330718 0 +45 8182 15.214717330718 0 +45 8182 15.214717330718 0 +45 8205 15.224399332795 0 +45 8205 15.224399332795 0 +45 8224 15.224559332795 0 +45 8224 15.224559332795 0 +45 8242 15.231276595569 0 +45 8242 15.231276595569 0 +45 8257 15.231436595569 0 +45 8257 15.231436595569 0 +45 8317 15.293585833695 0 +45 8317 15.293585833695 0 +45 8324 15.293745833695 0 +45 8324 15.293745833695 0 +45 8348 15.343993151421 0 +45 8348 15.343993151421 2 +45 8349 15.343993151421 2 +45 8349 15.343993151421 0 +45 8352 15.343993151421 0 +45 8352 15.343993151421 0 +45 8360 15.344153151421 0 +45 8360 15.344153151421 0 +45 8408 15.514557316098 0 +45 8408 15.514557316098 0 +45 8423 15.514717316098 0 +45 8423 15.514717316098 0 +45 8446 15.524399333627 0 +45 8446 15.524399333627 0 +45 8465 15.524559333627 0 +45 8465 15.524559333627 0 +45 8483 15.531276596269 0 +45 8483 15.531276596269 0 +45 8498 15.531436596269 0 +45 8498 15.531436596269 0 +45 8558 15.593585819925 0 +45 8558 15.593585819925 0 +45 8565 15.593745819925 0 +45 8565 15.593745819925 0 +45 8589 15.643993151421 0 +45 8589 15.643993151421 2 +45 8590 15.643993151421 2 +45 8590 15.643993151421 0 +45 8593 15.643993151421 0 +45 8593 15.643993151421 0 +45 8601 15.644153151421 0 +45 8601 15.644153151421 0 +45 8649 15.814557301533 0 +45 8649 15.814557301533 0 +45 8664 15.814717301533 0 +45 8664 15.814717301533 0 +45 8687 15.824399334455 0 +45 8687 15.824399334455 0 +45 8706 15.824559334455 0 +45 8706 15.824559334455 0 +45 8724 15.831276596954 0 +45 8724 15.831276596954 0 +45 8739 15.831436596954 0 +45 8739 15.831436596954 0 +45 8799 15.893585806179 0 +45 8799 15.893585806179 0 +45 8806 15.893745806179 0 +45 8806 15.893745806179 0 +45 8830 15.943993151421 0 +45 8830 15.943993151421 2 +45 8831 15.943993151421 2 +45 8831 15.943993151421 0 +45 8834 15.943993151421 0 +45 8834 15.943993151421 0 +45 8842 15.944153151421 0 +45 8842 15.944153151421 0 +45 8890 16.114557286953 0 +45 8890 16.114557286953 0 +45 8905 16.114717286953 0 +45 8905 16.114717286953 0 +45 8932 16.124399335277 0 +45 8932 16.124399335277 0 +45 8951 16.124559335277 0 +45 8951 16.124559335277 0 +45 8969 16.131276597671 0 +45 8969 16.131276597671 0 +45 8984 16.131436597671 0 +45 8984 16.131436597671 0 +45 9044 16.193585792487 0 +45 9044 16.193585792487 0 +45 9051 16.193745792487 0 +45 9051 16.193745792487 0 +45 9079 16.243993151421 0 +45 9079 16.243993151421 2 +45 9080 16.243993151421 2 +45 9080 16.243993151421 0 +45 9083 16.243993151421 0 +45 9083 16.243993151421 0 +45 9091 16.244153151421 0 +45 9091 16.244153151421 0 +45 9139 16.414557272365 0 +45 9139 16.414557272365 0 +45 9154 16.414717272365 0 +45 9154 16.414717272365 0 +45 9181 16.424399336094 0 +45 9181 16.424399336094 0 +45 9200 16.424559336094 0 +45 9200 16.424559336094 0 +45 9218 16.431276598394 0 +45 9218 16.431276598394 0 +45 9233 16.431436598394 0 +45 9233 16.431436598394 0 +45 9293 16.493585780506 0 +45 9293 16.493585780506 0 +45 9300 16.493745780506 0 +45 9300 16.493745780506 0 +45 9328 16.543993151421 0 +45 9328 16.543993151421 2 +45 9329 16.543993151421 2 +45 9329 16.543993151421 0 +45 9332 16.543993151421 0 +45 9332 16.543993151421 0 +45 9340 16.544153151421 0 +45 9340 16.544153151421 0 +45 9388 16.714557257775 0 +45 9388 16.714557257775 0 +45 9403 16.714717257775 0 +45 9403 16.714717257775 0 +45 9430 16.724399336915 0 +45 9430 16.724399336915 0 +45 9449 16.724559336915 0 +45 9449 16.724559336915 0 +45 9467 16.731276599099 0 +45 9467 16.731276599099 0 +45 9482 16.731436599099 0 +45 9482 16.731436599099 0 +45 9542 16.793585771057 0 +45 9542 16.793585771057 0 +45 9549 16.793745771057 0 +45 9549 16.793745771057 0 +45 9577 16.843993151421 0 +45 9577 16.843993151421 2 +45 9578 16.843993151421 2 +45 9578 16.843993151421 0 +45 9581 16.843993151421 0 +45 9581 16.843993151421 0 +45 9589 16.844153151421 0 +45 9589 16.844153151421 0 +45 9637 17.014557243226 0 +45 9637 17.014557243226 0 +45 9652 17.014717243226 0 +45 9652 17.014717243226 0 +45 9679 17.024399337752 0 +45 9679 17.024399337752 0 +45 9698 17.024559337752 0 +45 9698 17.024559337752 0 +45 9716 17.031276599817 0 +45 9716 17.031276599817 0 +45 9731 17.031436599817 0 +45 9731 17.031436599817 0 +45 9791 17.093585764134 0 +45 9791 17.093585764134 0 +45 9798 17.093745764134 0 +45 9798 17.093745764134 0 +45 9826 17.143993151421 0 +45 9826 17.143993151421 2 +45 9827 17.143993151421 2 +45 9827 17.143993151421 0 +45 9830 17.143993151421 0 +45 9830 17.143993151421 0 +45 9838 17.144153151421 0 +45 9838 17.144153151421 0 +45 9886 17.314557228649 0 +45 9886 17.314557228649 0 +45 9901 17.314717228649 0 +45 9901 17.314717228649 0 +45 9928 17.324399338595 0 +45 9928 17.324399338595 0 +45 9947 17.324559338595 0 +45 9947 17.324559338595 0 +45 9965 17.331276600539 0 +45 9965 17.331276600539 0 +45 9980 17.331436600539 0 +45 9980 17.331436600539 0 +45 10040 17.393585759695 0 +45 10040 17.393585759695 0 +45 10047 17.393745759695 0 +45 10047 17.393745759695 0 +45 10075 17.443993151421 0 +45 10075 17.443993151421 2 +45 10076 17.443993151421 2 +45 10076 17.443993151421 0 +45 10079 17.443993151421 0 +45 10079 17.443993151421 0 +45 10087 17.444153151421 0 +45 10087 17.444153151421 0 +45 10135 17.614557214117 0 +45 10135 17.614557214117 0 +45 10150 17.614717214117 0 +45 10150 17.614717214117 0 +45 10177 17.624399339444 0 +45 10177 17.624399339444 0 +45 10196 17.624559339444 0 +45 10196 17.624559339444 0 +45 10214 17.631276601271 0 +45 10214 17.631276601271 0 +45 10229 17.631436601271 0 +45 10229 17.631436601271 0 +45 10289 17.69358575768 0 +45 10289 17.69358575768 0 +45 10296 17.69374575768 0 +45 10296 17.69374575768 0 +45 10324 17.743993151421 0 +45 10324 17.743993151421 2 +45 10325 17.743993151421 2 +45 10325 17.743993151421 0 +45 10328 17.743993151421 0 +45 10328 17.743993151421 0 +45 10336 17.744153151421 0 +45 10336 17.744153151421 0 +45 10384 17.914557199593 0 +45 10384 17.914557199593 0 +45 10399 17.914717199593 0 +45 10399 17.914717199593 0 +45 10422 17.92439934028 0 +45 10422 17.92439934028 0 +45 10441 17.92455934028 0 +45 10441 17.92455934028 0 +45 10459 17.931276601981 0 +45 10459 17.931276601981 0 +45 10474 17.931436601981 0 +45 10474 17.931436601981 0 +45 10530 17.993585756396 0 +45 10530 17.993585756396 0 +45 10537 17.993745756396 0 +45 10537 17.993745756396 0 +45 10565 18.043993151421 0 +45 10565 18.043993151421 2 +45 10566 18.043993151421 2 +45 10566 18.043993151421 0 +45 10569 18.043993151421 0 +45 10569 18.043993151421 0 +45 10577 18.044153151421 0 +45 10577 18.044153151421 0 +45 10624 18.214557185085 0 +45 10624 18.214557185085 0 +45 10635 18.214717185085 0 +45 10635 18.214717185085 0 +45 10663 18.22439934113 0 +45 10663 18.22439934113 0 +45 10682 18.22455934113 0 +45 10682 18.22455934113 0 +45 10696 18.231276602699 0 +45 10696 18.231276602699 0 +45 10711 18.231436602699 0 +45 10711 18.231436602699 0 +45 10767 18.293585755106 0 +45 10767 18.293585755106 0 +45 10774 18.293745755106 0 +45 10774 18.293745755106 0 +45 10802 18.343993151421 0 +45 10802 18.343993151421 2 +45 10803 18.343993151421 2 +45 10803 18.343993151421 0 +45 10806 18.343993151421 0 +45 10806 18.343993151421 0 +45 10814 18.344153151421 0 +45 10814 18.344153151421 0 +45 10857 18.514557170436 0 +45 10857 18.514557170436 0 +45 10868 18.514717170436 0 +45 10868 18.514717170436 0 +45 10896 18.524399341978 0 +45 10896 18.524399341978 0 +45 10915 18.524559341978 0 +45 10915 18.524559341978 0 +45 10929 18.531276603438 0 +45 10929 18.531276603438 0 +45 10944 18.531436603438 0 +45 10944 18.531436603438 0 +45 11000 18.593585753817 0 +45 11000 18.593585753817 0 +45 11007 18.593745753817 0 +45 11007 18.593745753817 0 +45 11035 18.643993151421 0 +45 11035 18.643993151421 2 +45 11036 18.643993151421 2 +45 11036 18.643993151421 0 +45 11039 18.643993151421 0 +45 11039 18.643993151421 0 +45 11047 18.644153151421 0 +45 11047 18.644153151421 0 +45 11090 18.814557161182 0 +45 11090 18.814557161182 0 +45 11101 18.814717161182 0 +45 11101 18.814717161182 0 +45 11162 18.831276604167 0 +45 11162 18.831276604167 0 +45 11177 18.831436604167 0 +45 11177 18.831436604167 0 +45 11233 18.893585752536 0 +45 11233 18.893585752536 0 +45 11240 18.893745752536 0 +45 11240 18.893745752536 0 +45 11268 18.943993151421 0 +45 11268 18.943993151421 2 +45 11269 18.943993151421 2 +45 11269 18.943993151421 0 +45 11272 18.943993151421 0 +45 11272 18.943993151421 0 +45 11280 18.944153151421 0 +45 11280 18.944153151421 0 +45 11323 19.114557157992 0 +45 11323 19.114557157992 0 +45 11334 19.114717157992 0 +45 11334 19.114717157992 0 +45 11395 19.131276604913 0 +45 11395 19.131276604913 0 +45 11410 19.131436604913 0 +45 11410 19.131436604913 0 +45 11466 19.193585751249 0 +45 11466 19.193585751249 0 +45 11473 19.193745751249 0 +45 11473 19.193745751249 0 +45 11501 19.243993151421 0 +45 11501 19.243993151421 2 +45 11502 19.243993151421 2 +45 11502 19.243993151421 0 +45 11505 19.243993151421 0 +45 11505 19.243993151421 0 +45 11513 19.244153151421 0 +45 11513 19.244153151421 0 +45 11556 19.414557155892 0 +45 11556 19.414557155892 0 +45 11567 19.414717155892 0 +45 11567 19.414717155892 0 +45 11628 19.431276605661 0 +45 11628 19.431276605661 0 +45 11643 19.431436605661 0 +45 11643 19.431436605661 0 +45 11699 19.493585749962 0 +45 11699 19.493585749962 0 +45 11706 19.493745749962 0 +45 11706 19.493745749962 0 +45 11734 19.543993151421 0 +45 11734 19.543993151421 2 +45 11735 19.543993151421 2 +45 11735 19.543993151421 0 +45 11738 19.543993151421 0 +45 11738 19.543993151421 0 +45 11746 19.544153151421 0 +45 11746 19.544153151421 0 +45 11789 19.714557154461 0 +45 11789 19.714557154461 0 +45 11800 19.714717154461 0 +45 11800 19.714717154461 0 +45 11861 19.731276606768 0 +45 11861 19.731276606768 0 +45 11876 19.731436606768 0 +45 11876 19.731436606768 0 +45 11932 19.793585748041 0 +45 11932 19.793585748041 0 +45 11939 19.793745748041 0 +45 11939 19.793745748041 0 +45 11967 19.843993151421 0 +45 11967 19.843993151421 2 +45 11968 19.843993151421 2 +45 11968 19.843993151421 0 +45 11971 19.843993151421 0 +45 11971 19.843993151421 0 +45 11979 19.844153151421 0 +45 11979 19.844153151421 0 +45 12022 20.014557153776 0 +45 12022 20.014557153776 0 +45 12033 20.014717153776 0 +45 12033 20.014717153776 0 +45 12098 20.031276608452 0 +45 12098 20.031276608452 0 +45 12113 20.031436608452 0 +45 12113 20.031436608452 0 +45 12173 20.093585745227 0 +45 12173 20.093585745227 0 +45 12180 20.093745745227 0 +45 12180 20.093745745227 0 +45 12208 20.143993151421 0 +45 12208 20.143993151421 2 +45 12209 20.143993151421 2 +45 12209 20.143993151421 0 +45 12212 20.143993151421 0 +45 12212 20.143993151421 0 +45 12220 20.144153151421 0 +45 12220 20.144153151421 0 +45 12263 20.31455715393 0 +45 12263 20.31455715393 0 +45 12274 20.31471715393 0 +45 12274 20.31471715393 0 +45 12339 20.331276610588 0 +45 12339 20.331276610588 0 +45 12354 20.331436610588 0 +45 12354 20.331436610588 0 +45 12414 20.393585741612 0 +45 12414 20.393585741612 0 +45 12421 20.393745741612 0 +45 12421 20.393745741612 0 +45 12449 20.443993151421 0 +45 12449 20.443993151421 2 +45 12450 20.443993151421 2 +45 12450 20.443993151421 0 +45 12453 20.443993151421 0 +45 12453 20.443993151421 0 +45 12461 20.444153151421 0 +45 12461 20.444153151421 0 +45 12504 20.614557155021 0 +45 12504 20.614557155021 0 +45 12515 20.614717155021 0 +45 12515 20.614717155021 0 +45 12580 20.631276613242 0 +45 12580 20.631276613242 0 +45 12595 20.631436613242 0 +45 12595 20.631436613242 0 +45 12655 20.693585737229 0 +45 12655 20.693585737229 0 +45 12662 20.693745737229 0 +45 12662 20.693745737229 0 +45 12690 20.743993151421 0 +45 12690 20.743993151421 2 +45 12691 20.743993151421 2 +45 12691 20.743993151421 0 +45 12694 20.743993151421 0 +45 12694 20.743993151421 0 +45 12702 20.744153151421 0 +45 12702 20.744153151421 0 +45 12745 20.914557157133 0 +45 12745 20.914557157133 0 +45 12756 20.914717157133 0 +45 12756 20.914717157133 0 +45 12821 20.931276616399 0 +45 12821 20.931276616399 0 +45 12836 20.931436616399 0 +45 12836 20.931436616399 0 +45 12896 20.993585732172 0 +45 12896 20.993585732172 0 +45 12903 20.993745732172 0 +45 12903 20.993745732172 0 +45 12931 21.043993151421 0 +45 12931 21.043993151421 2 +45 12932 21.043993151421 2 +45 12932 21.043993151421 0 +45 12935 21.043993151421 0 +45 12935 21.043993151421 0 +45 12943 21.044153151421 0 +45 12943 21.044153151421 0 +45 12986 21.214557160323 0 +45 12986 21.214557160323 0 +45 12997 21.214717160323 0 +45 12997 21.214717160323 0 +45 13062 21.231276620049 0 +45 13062 21.231276620049 0 +45 13077 21.231436620049 0 +45 13077 21.231436620049 0 +45 13137 21.293585726489 0 +45 13137 21.293585726489 0 +45 13144 21.293745726489 0 +45 13144 21.293745726489 0 +45 13172 21.343993151421 0 +45 13172 21.343993151421 2 +45 13173 21.343993151421 2 +45 13173 21.343993151421 0 +45 13176 21.343993151421 0 +45 13176 21.343993151421 0 +45 13184 21.344153151421 0 +45 13184 21.344153151421 0 +45 13227 21.514557164674 0 +45 13227 21.514557164674 0 +45 13238 21.514717164674 0 +45 13238 21.514717164674 0 +45 13303 21.531276624253 0 +45 13303 21.531276624253 0 +45 13318 21.531436624253 0 +45 13318 21.531436624253 0 +45 13378 21.593585720024 0 +45 13378 21.593585720024 0 +45 13385 21.593745720024 0 +45 13385 21.593745720024 0 +45 13413 21.643993151421 0 +45 13413 21.643993151421 2 +45 13414 21.643993151421 2 +45 13414 21.643993151421 0 +45 13417 21.643993151421 0 +45 13417 21.643993151421 0 +45 13425 21.644153151421 0 +45 13425 21.644153151421 0 +45 13468 21.814557170229 0 +45 13468 21.814557170229 0 +45 13479 21.814717170229 0 +45 13479 21.814717170229 0 +45 13544 21.831276629063 0 +45 13544 21.831276629063 0 +45 13559 21.831436629063 0 +45 13559 21.831436629063 0 +45 13619 21.893585712841 0 +45 13619 21.893585712841 0 +45 13626 21.893745712841 0 +45 13626 21.893745712841 0 +45 13654 21.943993151421 0 +45 13654 21.943993151421 2 +45 13655 21.943993151421 2 +45 13655 21.943993151421 0 +45 13658 21.943993151421 0 +45 13658 21.943993151421 0 +45 13666 21.944153151421 0 +45 13666 21.944153151421 0 +45 13709 22.114557176994 0 +45 13709 22.114557176994 0 +45 13720 22.114717176994 0 +45 13720 22.114717176994 0 +45 13785 22.131276634514 0 +45 13785 22.131276634514 0 +45 13800 22.131436634514 0 +45 13800 22.131436634514 0 +45 13860 22.193585704988 0 +45 13860 22.193585704988 0 +45 13867 22.193745704988 0 +45 13867 22.193745704988 0 +45 13895 22.243993151421 0 +45 13895 22.243993151421 2 +45 13896 22.243993151421 2 +45 13896 22.243993151421 0 +45 13899 22.243993151421 0 +45 13899 22.243993151421 0 +45 13907 22.244153151421 0 +45 13907 22.244153151421 0 +45 13950 22.414557185072 0 +45 13950 22.414557185072 0 +45 13961 22.414717185072 0 +45 13961 22.414717185072 0 +45 14026 22.431276640553 0 +45 14026 22.431276640553 0 +45 14041 22.431436640553 0 +45 14041 22.431436640553 0 +45 14101 22.49358569653 0 +45 14101 22.49358569653 0 +45 14108 22.49374569653 0 +45 14108 22.49374569653 0 +45 14136 22.543993151421 0 +45 14136 22.543993151421 2 +45 14137 22.543993151421 2 +45 14137 22.543993151421 0 +45 14140 22.543993151421 0 +45 14140 22.543993151421 0 +45 14148 22.544153151421 0 +45 14148 22.544153151421 0 +45 14191 22.714557194287 0 +45 14191 22.714557194287 0 +45 14202 22.714717194287 0 +45 14202 22.714717194287 0 +45 14267 22.73127664727 0 +45 14267 22.73127664727 0 +45 14282 22.73143664727 0 +45 14282 22.73143664727 0 +45 14342 22.793585687538 0 +45 14342 22.793585687538 0 +45 14349 22.793745687538 0 +45 14349 22.793745687538 0 +45 14377 22.843993151421 0 +45 14377 22.843993151421 2 +45 14378 22.843993151421 2 +45 14378 22.843993151421 0 +45 14381 22.843993151421 0 +45 14381 22.843993151421 0 +45 14389 22.844153151421 0 +45 14389 22.844153151421 0 +45 14432 23.014557204223 0 +45 14432 23.014557204223 0 +45 14443 23.014717204223 0 +45 14443 23.014717204223 0 +45 14508 23.031276654734 0 +45 14508 23.031276654734 0 +45 14523 23.031436654734 0 +45 14523 23.031436654734 0 +45 14583 23.093585678184 0 +45 14583 23.093585678184 0 +45 14590 23.093745678184 0 +45 14590 23.093745678184 0 +45 14618 23.143993151421 0 +45 14618 23.143993151421 2 +45 14619 23.143993151421 2 +45 14619 23.143993151421 0 +45 14622 23.143993151421 0 +45 14622 23.143993151421 0 +45 14630 23.144153151421 0 +45 14630 23.144153151421 0 +45 14673 23.314557215428 0 +45 14673 23.314557215428 0 +45 14684 23.314717215428 0 +45 14684 23.314717215428 0 +45 14749 23.331276662913 0 +45 14749 23.331276662913 0 +45 14764 23.331436662913 0 +45 14764 23.331436662913 0 +45 14824 23.393585668176 0 +45 14824 23.393585668176 0 +45 14831 23.393745668176 0 +45 14831 23.393745668176 0 +45 14859 23.443993151421 0 +45 14859 23.443993151421 2 +45 14860 23.443993151421 2 +45 14860 23.443993151421 0 +45 14863 23.443993151421 0 +45 14863 23.443993151421 0 +45 14871 23.444153151421 0 +45 14871 23.444153151421 0 +45 14914 23.614557224167 0 +45 14914 23.614557224167 0 +45 14925 23.614717224167 0 +45 14925 23.614717224167 0 +45 14990 23.631276668226 0 +45 14990 23.631276668226 0 +45 15005 23.631436668226 0 +45 15005 23.631436668226 0 +45 15065 23.693585661458 0 +45 15065 23.693585661458 0 +45 15072 23.693745661458 0 +45 15072 23.693745661458 0 +45 15100 23.743993151421 0 +45 15100 23.743993151421 2 +45 15101 23.743993151421 2 +45 15101 23.743993151421 0 +45 15104 23.743993151421 0 +45 15104 23.743993151421 0 +45 15112 23.744153151421 0 +45 15112 23.744153151421 0 +45 15155 23.914557225534 0 +45 15155 23.914557225534 0 +45 15166 23.914717225534 0 +45 15166 23.914717225534 0 +45 15231 23.931276671861 0 +45 15231 23.931276671861 0 +45 15246 23.931436671861 0 +45 15246 23.931436671861 0 +45 15306 23.993585658609 0 +45 15306 23.993585658609 0 +45 15313 23.993745658609 0 +45 15313 23.993745658609 0 +45 15341 24.043993151421 0 +45 15341 24.043993151421 2 +45 15342 24.043993151421 2 +45 15342 24.043993151421 0 +45 15345 24.043993151421 0 +45 15345 24.043993151421 0 +45 15353 24.044153151421 0 +45 15353 24.044153151421 0 +45 15396 24.214557228476 0 +45 15396 24.214557228476 0 +45 15407 24.214717228476 0 +45 15407 24.214717228476 0 +45 15472 24.231276682111 0 +45 15472 24.231276682111 0 +45 15487 24.231436682111 0 +45 15487 24.231436682111 0 +45 15547 24.293585650885 0 +45 15547 24.293585650885 0 +45 15554 24.293745650885 0 +45 15554 24.293745650885 0 +45 15582 24.343993151421 0 +45 15582 24.343993151421 2 +45 15583 24.343993151421 2 +45 15583 24.343993151421 0 +45 15586 24.343993151421 0 +45 15586 24.343993151421 0 +45 15594 24.344153151421 0 +45 15594 24.344153151421 0 +45 15637 24.514557231601 0 +45 15637 24.514557231601 0 +45 15648 24.514717231601 0 +45 15648 24.514717231601 0 +45 15713 24.531276693849 0 +45 15713 24.531276693849 0 +45 15728 24.531436693849 0 +45 15728 24.531436693849 0 +45 15788 24.593585643051 0 +45 15788 24.593585643051 0 +45 15795 24.593745643051 0 +45 15795 24.593745643051 0 +45 15823 24.643993151421 0 +45 15823 24.643993151421 2 +45 15824 24.643993151421 2 +45 15824 24.643993151421 0 +45 15827 24.643993151421 0 +45 15827 24.643993151421 0 +45 15835 24.644153151421 0 +45 15835 24.644153151421 0 +45 15878 24.814557234404 0 +45 15878 24.814557234404 0 +45 15889 24.814717234404 0 +45 15889 24.814717234404 0 +45 15954 24.831276706445 0 +45 15954 24.831276706445 0 +45 15969 24.831436706445 0 +45 15969 24.831436706445 0 +45 16029 24.893585636131 0 +45 16029 24.893585636131 0 +45 16036 24.893745636131 0 +45 16036 24.893745636131 0 +45 16064 24.943993151421 0 +45 16064 24.943993151421 2 +45 16065 24.943993151421 2 +45 16065 24.943993151421 0 +45 16068 24.943993151421 0 +45 16068 24.943993151421 0 +45 16076 24.944153151421 0 +45 16076 24.944153151421 0 +45 16119 25.114557236911 0 +45 16119 25.114557236911 0 +45 16130 25.114717236911 0 +45 16130 25.114717236911 0 +45 16195 25.131276719839 0 +45 16195 25.131276719839 0 +45 16210 25.131436719839 0 +45 16210 25.131436719839 0 +45 16270 25.193585630457 0 +45 16270 25.193585630457 0 +45 16277 25.193745630457 0 +45 16277 25.193745630457 0 +45 16305 25.243993151421 0 +45 16305 25.243993151421 2 +45 16306 25.243993151421 2 +45 16306 25.243993151421 0 +45 16309 25.243993151421 0 +45 16309 25.243993151421 0 +45 16317 25.244153151421 0 +45 16317 25.244153151421 0 +45 16360 25.414557239038 0 +45 16360 25.414557239038 0 +45 16371 25.414717239038 0 +45 16371 25.414717239038 0 +45 16436 25.431276734024 0 +45 16436 25.431276734024 0 +45 16451 25.431436734024 0 +45 16451 25.431436734024 0 +45 16511 25.493585626591 0 +45 16511 25.493585626591 0 +45 16518 25.493745626591 0 +45 16518 25.493745626591 0 +45 16546 25.543993151421 0 +45 16546 25.543993151421 2 +45 16547 25.543993151421 2 +45 16547 25.543993151421 0 +45 16550 25.543993151421 0 +45 16550 25.543993151421 0 +45 16558 25.544153151421 0 +45 16558 25.544153151421 0 +45 16600 25.714557240854 0 +45 16600 25.714557240854 0 +45 16607 25.714717240854 0 +45 16607 25.714717240854 0 +45 16677 25.731276749009 0 +45 16677 25.731276749009 0 +45 16692 25.731436749009 0 +45 16692 25.731436749009 0 +45 16752 25.793585625056 0 +45 16752 25.793585625056 0 +45 16759 25.793745625056 0 +45 16759 25.793745625056 0 +45 16787 25.843993151421 0 +45 16787 25.843993151421 2 +45 16788 25.843993151421 2 +45 16788 25.843993151421 0 +45 16791 25.843993151421 0 +45 16791 25.843993151421 0 +45 16799 25.844153151421 0 +45 16799 25.844153151421 0 +45 16841 26.014557242289 0 +45 16841 26.014557242289 0 +45 16848 26.014717242289 0 +45 16848 26.014717242289 0 +45 16918 26.031276763556 0 +45 16918 26.031276763556 0 +45 16933 26.031436763556 0 +45 16933 26.031436763556 0 +45 16993 26.093585626275 0 +45 16993 26.093585626275 0 +45 17000 26.093745626275 0 +45 17000 26.093745626275 0 +45 17028 26.143993151421 0 +45 17028 26.143993151421 2 +45 17029 26.143993151421 2 +45 17029 26.143993151421 0 +45 17032 26.143993151421 0 +45 17032 26.143993151421 0 +45 17040 26.144153151421 0 +45 17040 26.144153151421 0 +45 17082 26.314557243311 0 +45 17082 26.314557243311 0 +45 17089 26.314717243311 0 +45 17089 26.314717243311 0 +45 17159 26.331276777067 0 +45 17159 26.331276777067 0 +45 17174 26.331436777067 0 +45 17174 26.331436777067 0 +45 17234 26.393585630812 0 +45 17234 26.393585630812 0 +45 17241 26.393745630812 0 +45 17241 26.393745630812 0 +45 17269 26.443993151421 0 +45 17269 26.443993151421 2 +45 17270 26.443993151421 2 +45 17270 26.443993151421 0 +45 17273 26.443993151421 0 +45 17273 26.443993151421 0 +45 17281 26.444153151421 0 +45 17281 26.444153151421 0 +45 17323 26.614557243876 0 +45 17323 26.614557243876 0 +45 17330 26.614717243876 0 +45 17330 26.614717243876 0 +45 17400 26.631276789593 0 +45 17400 26.631276789593 0 +45 17415 26.631436789593 0 +45 17415 26.631436789593 0 +45 17475 26.693585638677 0 +45 17475 26.693585638677 0 +45 17482 26.693745638677 0 +45 17482 26.693745638677 0 +45 17510 26.743993151421 0 +45 17510 26.743993151421 2 +45 17511 26.743993151421 2 +45 17511 26.743993151421 0 +45 17514 26.743993151421 0 +45 17514 26.743993151421 0 +45 17522 26.744153151421 0 +45 17522 26.744153151421 0 +45 17564 26.914557244114 0 +45 17564 26.914557244114 0 +45 17571 26.914717244114 0 +45 17571 26.914717244114 0 +45 17641 26.931276801135 0 +45 17641 26.931276801135 0 +45 17656 26.931436801135 0 +45 17656 26.931436801135 0 +45 17716 26.993585649352 0 +45 17716 26.993585649352 0 +45 17723 26.993745649352 0 +45 17723 26.993745649352 0 +45 17751 27.043993151421 0 +45 17751 27.043993151421 2 +45 17752 27.043993151421 2 +45 17752 27.043993151421 0 +45 17755 27.043993151421 0 +45 17755 27.043993151421 0 +45 17763 27.044153151421 0 +45 17763 27.044153151421 0 +45 17805 27.214557243957 0 +45 17805 27.214557243957 0 +45 17812 27.214717243957 0 +45 17812 27.214717243957 0 +45 17875 27.231276811734 0 +45 17875 27.231276811734 0 +45 17894 27.231436811734 0 +45 17894 27.231436811734 0 +45 17949 27.293585662469 0 +45 17949 27.293585662469 0 +45 17956 27.293745662469 0 +45 17956 27.293745662469 0 +45 17984 27.343993151421 0 +45 17984 27.343993151421 2 +45 17985 27.343993151421 2 +45 17985 27.343993151421 0 +45 17988 27.343993151421 0 +45 17988 27.343993151421 0 +45 17996 27.344153151421 0 +45 17996 27.344153151421 0 +45 18038 27.514557243783 0 +45 18038 27.514557243783 0 +45 18045 27.514717243783 0 +45 18045 27.514717243783 0 +45 18108 27.53127682198 0 +45 18108 27.53127682198 0 +45 18127 27.53143682198 0 +45 18127 27.53143682198 0 +45 18182 27.593585677115 0 +45 18182 27.593585677115 0 +45 18189 27.593745677115 0 +45 18189 27.593745677115 0 +45 18217 27.643993151421 0 +45 18217 27.643993151421 2 +45 18218 27.643993151421 2 +45 18218 27.643993151421 0 +45 18221 27.643993151421 0 +45 18221 27.643993151421 0 +45 18229 27.644153151421 0 +45 18229 27.644153151421 0 +45 18271 27.814557243571 0 +45 18271 27.814557243571 0 +45 18278 27.814717243571 0 +45 18278 27.814717243571 0 +45 18341 27.831276831392 0 +45 18341 27.831276831392 0 +45 18360 27.831436831392 0 +45 18360 27.831436831392 0 +45 18415 27.893585692883 0 +45 18415 27.893585692883 0 +45 18422 27.893745692883 0 +45 18422 27.893745692883 0 +45 18450 27.943993151421 0 +45 18450 27.943993151421 2 +45 18451 27.943993151421 2 +45 18451 27.943993151421 0 +45 18454 27.943993151421 0 +45 18454 27.943993151421 0 +45 18462 27.944153151421 0 +45 18462 27.944153151421 0 +45 18504 28.114557243343 0 +45 18504 28.114557243343 0 +45 18511 28.114717243343 0 +45 18511 28.114717243343 0 +45 18574 28.13127683163 0 +45 18574 28.13127683163 0 +45 18593 28.13143683163 0 +45 18593 28.13143683163 0 +45 18648 28.193585709573 0 +45 18648 28.193585709573 0 +45 18655 28.193745709573 0 +45 18655 28.193745709573 0 +45 18683 28.243993151421 0 +45 18683 28.243993151421 2 +45 18684 28.243993151421 2 +45 18684 28.243993151421 0 +45 18687 28.243993151421 0 +45 18687 28.243993151421 0 +45 18695 28.244153151421 0 +45 18695 28.244153151421 0 +45 18737 28.414557243176 0 +45 18737 28.414557243176 0 +45 18744 28.414717243176 0 +45 18744 28.414717243176 0 +45 18807 28.4312768277 0 +45 18807 28.4312768277 0 +45 18826 28.4314368277 0 +45 18826 28.4314368277 0 +45 18881 28.493585726899 0 +45 18881 28.493585726899 0 +45 18888 28.493745726899 0 +45 18888 28.493745726899 0 +45 18916 28.543993151421 0 +45 18916 28.543993151421 2 +45 18917 28.543993151421 2 +45 18917 28.543993151421 0 +45 18920 28.543993151421 0 +45 18920 28.543993151421 0 +45 18928 28.544153151421 0 +45 18928 28.544153151421 0 +45 18970 28.71455724295 0 +45 18970 28.71455724295 0 +45 18977 28.71471724295 0 +45 18977 28.71471724295 0 +45 19040 28.731276823589 0 +45 19040 28.731276823589 0 +45 19059 28.731436823589 0 +45 19059 28.731436823589 0 +45 19114 28.793585744792 0 +45 19114 28.793585744792 0 +45 19121 28.793745744792 0 +45 19121 28.793745744792 0 +45 19149 28.843993151421 0 +45 19149 28.843993151421 2 +45 19150 28.843993151421 2 +45 19150 28.843993151421 0 +45 19153 28.843993151421 0 +45 19153 28.843993151421 0 +45 19161 28.844153151421 0 +45 19161 28.844153151421 0 +45 19203 29.014557242752 0 +45 19203 29.014557242752 0 +45 19210 29.014717242752 0 +45 19210 29.014717242752 0 +45 19273 29.031276819366 0 +45 19273 29.031276819366 0 +45 19292 29.031436819366 0 +45 19292 29.031436819366 0 +45 19339 29.093585763099 0 +45 19339 29.093585763099 0 +45 19346 29.093745763099 0 +45 19346 29.093745763099 0 +45 19374 29.143993151421 0 +45 19374 29.143993151421 2 +45 19375 29.143993151421 2 +45 19375 29.143993151421 0 +45 19378 29.143993151421 0 +45 19378 29.143993151421 0 +45 19386 29.144153151421 0 +45 19386 29.144153151421 0 +45 19428 29.31455724256 0 +45 19428 29.31455724256 0 +45 19435 29.31471724256 0 +45 19435 29.31471724256 0 +45 19498 29.331276815156 0 +45 19498 29.331276815156 0 +45 19517 29.331436815156 0 +45 19517 29.331436815156 0 +45 19564 29.393585781743 0 +45 19564 29.393585781743 0 +45 19571 29.393745781743 0 +45 19571 29.393745781743 0 +45 19599 29.443993151421 0 +45 19599 29.443993151421 2 +45 19600 29.443993151421 2 +45 19600 29.443993151421 0 +45 19603 29.443993151421 0 +45 19603 29.443993151421 0 +45 19611 29.444153151421 0 +45 19611 29.444153151421 0 +45 19653 29.614557242339 0 +45 19653 29.614557242339 0 +45 19660 29.614717242339 0 +45 19660 29.614717242339 0 +45 19723 29.631276811006 0 +45 19723 29.631276811006 0 +45 19742 29.631436811006 0 +45 19742 29.631436811006 0 +45 19789 29.693585800658 0 +45 19789 29.693585800658 0 +45 19796 29.693745800658 0 +45 19796 29.693745800658 0 +45 19824 29.743993151421 0 +45 19824 29.743993151421 2 +45 19825 29.743993151421 2 +45 19825 29.743993151421 0 +45 19828 29.743993151421 0 +45 19828 29.743993151421 0 +45 19836 29.744153151421 0 +45 19836 29.744153151421 0 +45 19878 29.914557242168 0 +45 19878 29.914557242168 0 +45 19885 29.914717242168 0 +45 19885 29.914717242168 0 +45 19948 29.931276806789 0 +45 19948 29.931276806789 0 +45 19967 29.931436806789 0 +45 19967 29.931436806789 0 +45 20014 29.99358581976 0 +45 20014 29.99358581976 0 +45 20021 29.99374581976 0 +45 20021 29.99374581976 0 +45 20049 30.043993151421 0 +45 20049 30.043993151421 2 +45 20050 30.043993151421 2 +45 20050 30.043993151421 0 +45 20053 30.043993151421 0 +45 20053 30.043993151421 0 +45 20061 30.044153151421 0 +45 20061 30.044153151421 0 +45 20103 30.214557241952 0 +45 20103 30.214557241952 0 +45 20110 30.214717241952 0 +45 20110 30.214717241952 0 +45 20173 30.231276802516 0 +45 20173 30.231276802516 0 +45 20192 30.231436802516 0 +45 20192 30.231436802516 0 +45 20239 30.29358583909 0 +45 20239 30.29358583909 0 +45 20246 30.29374583909 0 +45 20246 30.29374583909 0 +45 20274 30.343993151421 0 +45 20274 30.343993151421 2 +45 20275 30.343993151421 2 +45 20275 30.343993151421 0 +45 20278 30.343993151421 0 +45 20278 30.343993151421 0 +45 20286 30.344153151421 0 +45 20286 30.344153151421 0 +45 20328 30.514557241756 0 +45 20328 30.514557241756 0 +45 20335 30.514717241756 0 +45 20335 30.514717241756 0 +45 20398 30.531276798256 0 +45 20398 30.531276798256 0 +45 20417 30.531436798256 0 +45 20417 30.531436798256 0 +45 20464 30.593585858538 0 +45 20464 30.593585858538 0 +45 20471 30.593745858538 0 +45 20471 30.593745858538 0 +45 20499 30.643993151421 0 +45 20499 30.643993151421 2 +45 20500 30.643993151421 2 +45 20500 30.643993151421 0 +45 20503 30.643993151421 0 +45 20503 30.643993151421 0 +45 20511 30.644153151421 0 +45 20511 30.644153151421 0 +45 20553 30.814557241503 0 +45 20553 30.814557241503 0 +45 20560 30.814717241503 0 +45 20560 30.814717241503 0 +45 20622 30.831276794122 0 +45 20622 30.831276794122 0 +45 20637 30.831436794122 0 +45 20637 30.831436794122 0 +45 20689 30.893585878179 0 +45 20689 30.893585878179 0 +45 20696 30.893745878179 0 +45 20696 30.893745878179 0 +45 20724 30.943993151421 0 +45 20724 30.943993151421 2 +45 20725 30.943993151421 2 +45 20725 30.943993151421 0 +45 20728 30.943993151421 0 +45 20728 30.943993151421 0 +45 20736 30.944153151421 0 +45 20736 30.944153151421 0 +45 20778 31.114557241331 0 +45 20778 31.114557241331 0 +45 20785 31.114717241331 0 +45 20785 31.114717241331 0 +45 20851 31.131276790287 0 +45 20851 31.131276790287 0 +45 20866 31.131436790287 0 +45 20866 31.131436790287 0 +45 20919 31.193585897854 0 +45 20919 31.193585897854 0 +45 20930 31.193745897854 0 +45 20930 31.193745897854 0 +45 20957 31.243993151421 0 +45 20957 31.243993151421 2 +45 20958 31.243993151421 2 +45 20958 31.243993151421 0 +45 20961 31.243993151421 0 +45 20961 31.243993151421 0 +45 20969 31.244153151421 0 +45 20969 31.244153151421 0 +45 21011 31.414557241138 0 +45 21011 31.414557241138 0 +45 21018 31.414717241138 0 +45 21018 31.414717241138 0 +45 21084 31.431276787097 0 +45 21084 31.431276787097 0 +45 21099 31.431436787097 0 +45 21099 31.431436787097 0 +45 21152 31.49358591764 0 +45 21152 31.49358591764 0 +45 21163 31.49374591764 0 +45 21163 31.49374591764 0 +45 21190 31.543993151421 0 +45 21190 31.543993151421 2 +45 21191 31.543993151421 2 +45 21191 31.543993151421 0 +45 21194 31.543993151421 0 +45 21194 31.543993151421 0 +45 21202 31.544153151421 0 +45 21202 31.544153151421 0 +45 21244 31.714557240949 0 +45 21244 31.714557240949 0 +45 21251 31.714717240949 0 +45 21251 31.714717240949 0 +45 21317 31.731276784583 0 +45 21317 31.731276784583 0 +45 21332 31.731436784583 0 +45 21332 31.731436784583 0 +45 21385 31.793585937521 0 +45 21385 31.793585937521 0 +45 21396 31.793745937521 0 +45 21396 31.793745937521 0 +45 21423 31.843993151421 0 +45 21423 31.843993151421 2 +45 21424 31.843993151421 2 +45 21424 31.843993151421 0 +45 21427 31.843993151421 0 +45 21427 31.843993151421 0 +45 21435 31.844153151421 0 +45 21435 31.844153151421 0 +45 21477 32.014557240765 0 +45 21477 32.014557240765 0 +45 21484 32.014717240765 0 +45 21484 32.014717240765 0 +45 21550 32.031276782702 0 +45 21550 32.031276782702 0 +45 21565 32.031436782702 0 +45 21565 32.031436782702 0 +45 21618 32.093585957424 0 +45 21618 32.093585957424 0 +45 21629 32.093745957424 0 +45 21629 32.093745957424 0 +45 21656 32.143993151421 0 +45 21656 32.143993151421 2 +45 21657 32.143993151421 2 +45 21657 32.143993151421 0 +45 21660 32.143993151421 0 +45 21660 32.143993151421 0 +45 21668 32.144153151421 0 +45 21668 32.144153151421 0 +45 21710 32.31455724058 0 +45 21710 32.31455724058 0 +45 21717 32.31471724058 0 +45 21717 32.31471724058 0 +45 21783 32.331276781557 0 +45 21783 32.331276781557 0 +45 21798 32.331436781557 0 +45 21798 32.331436781557 0 +45 21851 32.393585977454 0 +45 21851 32.393585977454 0 +45 21862 32.393745977454 0 +45 21862 32.393745977454 0 +45 21889 32.443993151421 0 +45 21889 32.443993151421 2 +45 21890 32.443993151421 2 +45 21890 32.443993151421 0 +45 21893 32.443993151421 0 +45 21893 32.443993151421 0 +45 21901 32.444153151421 0 +45 21901 32.444153151421 0 +45 21943 32.614557240362 0 +45 21943 32.614557240362 0 +45 21950 32.614717240362 0 +45 21950 32.614717240362 0 +45 22016 32.631276781062 0 +45 22016 32.631276781062 0 +45 22031 32.631436781062 0 +45 22031 32.631436781062 0 +45 22084 32.693585997543 0 +45 22084 32.693585997543 0 +45 22095 32.693745997543 0 +45 22095 32.693745997543 0 +45 22122 32.743993151421 0 +45 22122 32.743993151421 2 +45 22123 32.743993151421 2 +45 22123 32.743993151421 0 +45 22126 32.743993151421 0 +45 22126 32.743993151421 0 +45 22134 32.744153151421 0 +45 22134 32.744153151421 0 +45 22176 32.914557240161 0 +45 22176 32.914557240161 0 +45 22183 32.914717240161 0 +45 22183 32.914717240161 0 +45 22249 32.93127678126 0 +45 22249 32.93127678126 0 +45 22264 32.93143678126 0 +45 22264 32.93143678126 0 +45 22317 32.993586017691 0 +45 22317 32.993586017691 0 +45 22328 32.993746017691 0 +45 22328 32.993746017691 0 +45 22355 33.043993151421 0 +45 22355 33.043993151421 2 +45 22356 33.043993151421 2 +45 22356 33.043993151421 0 +45 22359 33.043993151421 0 +45 22359 33.043993151421 0 +45 22367 33.044153151421 0 +45 22367 33.044153151421 0 +45 22409 33.214557239961 0 +45 22409 33.214557239961 0 +45 22416 33.214717239961 0 +45 22416 33.214717239961 0 +45 22482 33.23127678211 0 +45 22482 33.23127678211 0 +45 22497 33.23143678211 0 +45 22497 33.23143678211 0 +45 22550 33.293586037835 0 +45 22550 33.293586037835 0 +45 22561 33.293746037835 0 +45 22561 33.293746037835 0 +45 22588 33.343993151421 0 +45 22588 33.343993151421 2 +45 22589 33.343993151421 2 +45 22589 33.343993151421 0 +45 22592 33.343993151421 0 +45 22592 33.343993151421 0 +45 22600 33.344153151421 0 +45 22600 33.344153151421 0 +45 22642 33.514557239737 0 +45 22642 33.514557239737 0 +45 22649 33.514717239737 0 +45 22649 33.514717239737 0 +45 22715 33.531276783685 0 +45 22715 33.531276783685 0 +45 22730 33.531436783685 0 +45 22730 33.531436783685 0 +45 22784 33.593586058084 0 +45 22784 33.593586058084 0 +45 22799 33.593746058084 0 +45 22799 33.593746058084 0 +45 22821 33.643993151421 0 +45 22821 33.643993151421 2 +45 22822 33.643993151421 2 +45 22822 33.643993151421 0 +45 22825 33.643993151421 0 +45 22825 33.643993151421 0 +45 22833 33.644153151421 0 +45 22833 33.644153151421 0 +45 22875 33.814557239531 0 +45 22875 33.814557239531 0 +45 22882 33.814717239531 0 +45 22882 33.814717239531 0 +45 22944 33.831276785904 0 +45 22944 33.831276785904 0 +45 22959 33.831436785904 0 +45 22959 33.831436785904 0 +45 23013 33.893586078308 0 +45 23013 33.893586078308 0 +45 23028 33.893746078308 0 +45 23028 33.893746078308 0 +45 23045 33.943993151421 0 +45 23045 33.943993151421 2 +45 23046 33.943993151421 2 +45 23046 33.943993151421 0 +45 23049 33.943993151421 0 +45 23049 33.943993151421 0 +45 23056 33.944153151421 0 +45 23056 33.944153151421 0 +45 23091 34.11455723931 0 +45 23091 34.11455723931 0 +45 23097 34.11471723931 0 +45 23097 34.11471723931 0 +45 23147 34.131276788788 0 +45 23147 34.131276788788 0 +45 23157 34.131436788788 0 +45 23157 34.131436788788 0 +45 23203 34.243993151421 0 +45 23203 34.243993151421 2 +45 23204 34.243993151421 2 +45 23204 34.243993151421 0 +45 23207 34.243993151421 0 +45 23207 34.243993151421 0 +45 23214 34.244153151421 0 +45 23214 34.244153151421 0 +45 23249 34.414557239094 0 +45 23249 34.414557239094 0 +45 23255 34.414717239094 0 +45 23255 34.414717239094 0 +45 23305 34.431276792338 0 +45 23305 34.431276792338 0 +45 23315 34.431436792338 0 +45 23315 34.431436792338 0 +45 23361 34.543993151421 0 +45 23361 34.543993151421 2 +45 23362 34.543993151421 2 +45 23362 34.543993151421 0 +45 23365 34.543993151421 0 +45 23365 34.543993151421 0 +45 23372 34.544153151421 0 +45 23372 34.544153151421 0 +45 23407 34.71455723891 0 +45 23407 34.71455723891 0 +45 23413 34.71471723891 0 +45 23413 34.71471723891 0 +45 23463 34.731276796515 0 +45 23463 34.731276796515 0 +45 23473 34.731436796515 0 +45 23473 34.731436796515 0 +45 23519 34.843993151421 0 +45 23519 34.843993151421 2 +45 23520 34.843993151421 2 +45 23520 34.843993151421 0 +45 23523 34.843993151421 0 +45 23523 34.843993151421 0 +45 23530 34.844153151421 0 +45 23530 34.844153151421 0 +45 23565 35.014557238698 0 +45 23565 35.014557238698 0 +45 23571 35.014717238698 0 +45 23571 35.014717238698 0 +45 23621 35.031276801357 0 +45 23621 35.031276801357 0 +45 23631 35.031436801357 0 +45 23631 35.031436801357 0 +45 23677 35.143993151421 0 +45 23677 35.143993151421 2 +45 23678 35.143993151421 2 +45 23678 35.143993151421 0 +45 23681 35.143993151421 0 +45 23681 35.143993151421 0 +45 23688 35.144153151421 0 +45 23688 35.144153151421 0 +45 23727 35.31455723851 0 +45 23727 35.31455723851 0 +45 23733 35.31471723851 0 +45 23733 35.31471723851 0 +45 23783 35.331276806756 0 +45 23783 35.331276806756 0 +45 23793 35.331436806756 0 +45 23793 35.331436806756 0 +45 23813 35.357384434054 0 +45 23813 35.357384434054 0 +45 23827 35.357544434054 0 +45 23827 35.357544434054 0 +45 23843 35.443993151421 0 +45 23843 35.443993151421 2 +45 23844 35.443993151421 2 +45 23844 35.443993151421 0 +45 23847 35.443993151421 0 +45 23847 35.443993151421 0 +45 23854 35.444153151421 0 +45 23854 35.444153151421 0 +45 23893 35.614557238324 0 +45 23893 35.614557238324 0 +45 23899 35.614717238324 0 +45 23899 35.614717238324 0 +45 23949 35.631276812771 0 +45 23949 35.631276812771 0 +45 23959 35.631436812771 0 +45 23959 35.631436812771 0 +45 23979 35.657384420736 0 +45 23979 35.657384420736 0 +45 23993 35.657544420736 0 +45 23993 35.657544420736 0 +45 24009 35.743993151421 0 +45 24009 35.743993151421 2 +45 24010 35.743993151421 2 +45 24010 35.743993151421 0 +45 24013 35.743993151421 0 +45 24013 35.743993151421 0 +45 24020 35.744153151421 0 +45 24020 35.744153151421 0 +45 24060 35.914557238104 0 +45 24060 35.914557238104 0 +45 24070 35.914717238104 0 +45 24070 35.914717238104 0 +45 24115 35.931276819372 0 +45 24115 35.931276819372 0 +45 24125 35.931436819372 0 +45 24125 35.931436819372 0 +45 24145 35.957384409002 0 +45 24145 35.957384409002 0 +45 24159 35.957544409002 0 +45 24159 35.957544409002 0 +45 24175 36.043993151421 0 +45 24175 36.043993151421 2 +45 24176 36.043993151421 2 +45 24176 36.043993151421 0 +45 24179 36.043993151421 0 +45 24179 36.043993151421 0 +45 24186 36.044153151421 0 +45 24186 36.044153151421 0 +45 24226 36.214557237923 0 +45 24226 36.214557237923 0 +45 24236 36.214717237923 0 +45 24236 36.214717237923 0 +45 24281 36.231276826584 0 +45 24281 36.231276826584 0 +45 24291 36.231436826584 0 +45 24291 36.231436826584 0 +45 24311 36.257384398867 0 +45 24311 36.257384398867 0 +45 24325 36.257544398867 0 +45 24325 36.257544398867 0 +45 24341 36.343993151421 0 +45 24341 36.343993151421 2 +45 24342 36.343993151421 2 +45 24342 36.343993151421 0 +45 24345 36.343993151421 0 +45 24345 36.343993151421 0 +45 24352 36.344153151421 0 +45 24352 36.344153151421 0 +45 24392 36.514557237718 0 +45 24392 36.514557237718 0 +45 24402 36.514717237718 0 +45 24402 36.514717237718 0 +45 24447 36.531276834329 0 +45 24447 36.531276834329 0 +45 24457 36.531436834329 0 +45 24457 36.531436834329 0 +45 24477 36.557384390339 0 +45 24477 36.557384390339 0 +45 24491 36.557544390339 0 +45 24491 36.557544390339 0 +45 24507 36.643993151421 0 +45 24507 36.643993151421 2 +45 24508 36.643993151421 2 +45 24508 36.643993151421 0 +45 24511 36.643993151421 0 +45 24511 36.643993151421 0 +45 24518 36.644153151421 0 +45 24518 36.644153151421 0 +45 24557 36.814557237512 0 +45 24557 36.814557237512 0 +45 24563 36.814717237512 0 +45 24563 36.814717237512 0 +45 24613 36.831276842622 0 +45 24613 36.831276842622 0 +45 24623 36.831436842622 0 +45 24623 36.831436842622 0 +45 24643 36.857384382745 0 +45 24643 36.857384382745 0 +45 24657 36.857544382745 0 +45 24657 36.857544382745 0 +45 24673 36.943993151421 0 +45 24673 36.943993151421 2 +45 24674 36.943993151421 2 +45 24674 36.943993151421 0 +45 24677 36.943993151421 0 +45 24677 36.943993151421 0 +45 24684 36.944153151421 0 +45 24684 36.944153151421 0 +45 24723 37.114557236718 0 +45 24723 37.114557236718 0 +45 24729 37.114717236718 0 +45 24729 37.114717236718 0 +45 24779 37.131276851096 0 +45 24779 37.131276851096 0 +45 24789 37.131436851096 0 +45 24789 37.131436851096 0 +45 24809 37.157384373889 0 +45 24809 37.157384373889 0 +45 24823 37.157544373889 0 +45 24823 37.157544373889 0 +45 24839 37.243993151421 0 +45 24839 37.243993151421 2 +45 24840 37.243993151421 2 +45 24840 37.243993151421 0 +45 24843 37.243993151421 0 +45 24843 37.243993151421 0 +45 24850 37.244153151421 0 +45 24850 37.244153151421 0 +45 24889 37.41455723223 0 +45 24889 37.41455723223 0 +45 24895 37.41471723223 0 +45 24895 37.41471723223 0 +45 24945 37.431276854108 0 +45 24945 37.431276854108 0 +45 24955 37.431436854108 0 +45 24955 37.431436854108 0 +45 24975 37.457384356842 0 +45 24975 37.457384356842 0 +45 24989 37.457544356842 0 +45 24989 37.457544356842 0 +45 25005 37.543993151421 0 +45 25005 37.543993151421 2 +45 25006 37.543993151421 2 +45 25006 37.543993151421 0 +45 25009 37.543993151421 0 +45 25009 37.543993151421 0 +45 25016 37.544153151421 0 +45 25016 37.544153151421 0 +45 25055 37.714557229579 0 +45 25055 37.714557229579 0 +45 25061 37.714717229579 0 +45 25061 37.714717229579 0 +45 25111 37.731276847205 0 +45 25111 37.731276847205 0 +45 25121 37.731436847205 0 +45 25121 37.731436847205 0 +45 25140 37.757384333389 0 +45 25140 37.757384333389 0 +45 25150 37.757544333389 0 +45 25150 37.757544333389 0 +45 25171 37.843993151421 0 +45 25171 37.843993151421 2 +45 25172 37.843993151421 2 +45 25172 37.843993151421 0 +45 25175 37.843993151421 0 +45 25175 37.843993151421 0 +45 25182 37.844153151421 0 +45 25182 37.844153151421 0 +45 25221 38.014557228941 0 +45 25221 38.014557228941 0 +45 25227 38.014717228941 0 +45 25227 38.014717228941 0 +45 25277 38.031276839602 0 +45 25277 38.031276839602 0 +45 25287 38.031436839602 0 +45 25287 38.031436839602 0 +45 25306 38.0573843092 0 +45 25306 38.0573843092 0 +45 25316 38.0575443092 0 +45 25316 38.0575443092 0 +45 25337 38.143993151421 0 +45 25337 38.143993151421 2 +45 25338 38.143993151421 2 +45 25338 38.143993151421 0 +45 25341 38.143993151421 0 +45 25341 38.143993151421 0 +45 25348 38.144153151421 0 +45 25348 38.144153151421 0 +45 25387 38.314557229416 0 +45 25387 38.314557229416 0 +45 25393 38.314717229416 0 +45 25393 38.314717229416 0 +45 25443 38.331276833175 0 +45 25443 38.331276833175 0 +45 25453 38.331436833175 0 +45 25453 38.331436833175 0 +45 25472 38.357384284464 0 +45 25472 38.357384284464 0 +45 25482 38.357544284464 0 +45 25482 38.357544284464 0 +45 25503 38.443993151421 0 +45 25503 38.443993151421 2 +45 25504 38.443993151421 2 +45 25504 38.443993151421 0 +45 25507 38.443993151421 0 +45 25507 38.443993151421 0 +45 25514 38.444153151421 0 +45 25514 38.444153151421 0 +45 25553 38.614557230908 0 +45 25553 38.614557230908 0 +45 25559 38.614717230908 0 +45 25559 38.614717230908 0 +45 25609 38.631276827949 0 +45 25609 38.631276827949 0 +45 25619 38.631436827949 0 +45 25619 38.631436827949 0 +45 25638 38.657384259185 0 +45 25638 38.657384259185 0 +45 25648 38.657544259185 0 +45 25648 38.657544259185 0 +45 25669 38.743993151421 0 +45 25669 38.743993151421 2 +45 25670 38.743993151421 2 +45 25670 38.743993151421 0 +45 25673 38.743993151421 0 +45 25673 38.743993151421 0 +45 25680 38.744153151421 0 +45 25680 38.744153151421 0 +45 25719 38.914557233464 0 +45 25719 38.914557233464 0 +45 25725 38.914717233464 0 +45 25725 38.914717233464 0 +45 25775 38.93127682395 0 +45 25775 38.93127682395 0 +45 25785 38.93143682395 0 +45 25785 38.93143682395 0 +45 25804 38.957384233306 0 +45 25804 38.957384233306 0 +45 25814 38.957544233306 0 +45 25814 38.957544233306 0 +45 25835 39.043993151421 0 +45 25835 39.043993151421 2 +45 25836 39.043993151421 2 +45 25836 39.043993151421 0 +45 25839 39.043993151421 0 +45 25839 39.043993151421 0 +45 25846 39.044153151421 0 +45 25846 39.044153151421 0 +45 25885 39.214557237033 0 +45 25885 39.214557237033 0 +45 25891 39.214717237033 0 +45 25891 39.214717237033 0 +45 25941 39.231276821205 0 +45 25941 39.231276821205 0 +45 25951 39.231436821205 0 +45 25951 39.231436821205 0 +45 25970 39.257384206756 0 +45 25970 39.257384206756 0 +45 25980 39.257544206756 0 +45 25980 39.257544206756 0 +45 26001 39.343993151421 0 +45 26001 39.343993151421 2 +45 26002 39.343993151421 2 +45 26002 39.343993151421 0 +45 26005 39.343993151421 0 +45 26005 39.343993151421 0 +45 26012 39.344153151421 0 +45 26012 39.344153151421 0 +45 26051 39.514557241575 0 +45 26051 39.514557241575 0 +45 26057 39.514717241575 0 +45 26057 39.514717241575 0 +45 26107 39.531276819725 0 +45 26107 39.531276819725 0 +45 26117 39.531436819725 0 +45 26117 39.531436819725 0 +45 26136 39.557384179549 0 +45 26136 39.557384179549 0 +45 26146 39.557544179549 0 +45 26146 39.557544179549 0 +45 26167 39.643993151421 0 +45 26167 39.643993151421 2 +45 26168 39.643993151421 2 +45 26168 39.643993151421 0 +45 26171 39.643993151421 0 +45 26171 39.643993151421 0 +45 26178 39.644153151421 0 +45 26178 39.644153151421 0 +45 26217 39.814557247083 0 +45 26217 39.814557247083 0 +45 26223 39.814717247083 0 +45 26223 39.814717247083 0 +45 26273 39.831276819522 0 +45 26273 39.831276819522 0 +45 26283 39.831436819522 0 +45 26283 39.831436819522 0 +45 26302 39.857384151671 0 +45 26302 39.857384151671 0 +45 26312 39.857544151671 0 +45 26312 39.857544151671 0 +45 26333 39.943993151421 0 +45 26333 39.943993151421 2 +45 26334 39.943993151421 2 +45 26334 39.943993151421 0 +45 26337 39.943993151421 0 +45 26337 39.943993151421 0 +45 26344 39.944153151421 0 +45 26344 39.944153151421 0 +45 26383 40.114557253513 0 +45 26383 40.114557253513 0 +45 26389 40.114717253513 0 +45 26389 40.114717253513 0 +45 26439 40.1312768206 0 +45 26439 40.1312768206 0 +45 26449 40.1314368206 0 +45 26449 40.1314368206 0 +45 26467 40.157384123679 0 +45 26467 40.157384123679 0 +45 26473 40.157544123679 0 +45 26473 40.157544123679 0 +45 26499 40.243993151421 0 +45 26499 40.243993151421 2 +45 26500 40.243993151421 2 +45 26500 40.243993151421 0 +45 26503 40.243993151421 0 +45 26503 40.243993151421 0 +45 26510 40.244153151421 0 +45 26510 40.244153151421 0 +45 26549 40.414557260797 0 +45 26549 40.414557260797 0 +45 26555 40.414717260797 0 +45 26555 40.414717260797 0 +45 26605 40.431276822952 0 +45 26605 40.431276822952 0 +45 26615 40.431436822952 0 +45 26615 40.431436822952 0 +45 26633 40.457384095641 0 +45 26633 40.457384095641 0 +45 26639 40.457544095641 0 +45 26639 40.457544095641 0 +45 26665 40.543993151421 0 +45 26665 40.543993151421 2 +45 26666 40.543993151421 2 +45 26666 40.543993151421 0 +45 26669 40.543993151421 0 +45 26669 40.543993151421 0 +45 26676 40.544153151421 0 +45 26676 40.544153151421 0 +45 26715 40.714557269001 0 +45 26715 40.714557269001 0 +45 26721 40.714717269001 0 +45 26721 40.714717269001 0 +45 26744 40.72439933755 0 +45 26744 40.72439933755 0 +45 26758 40.72455933755 0 +45 26758 40.72455933755 0 +45 26775 40.731276826556 0 +45 26775 40.731276826556 0 +45 26785 40.731436826556 0 +45 26785 40.731436826556 0 +45 26803 40.757384067729 0 +45 26803 40.757384067729 0 +45 26809 40.757544067729 0 +45 26809 40.757544067729 0 +45 26835 40.843993151421 0 +45 26835 40.843993151421 2 +45 26836 40.843993151421 2 +45 26836 40.843993151421 0 +45 26839 40.843993151421 0 +45 26839 40.843993151421 0 +45 26846 40.844153151421 0 +45 26846 40.844153151421 0 +45 26889 41.014557277925 0 +45 26889 41.014557277925 0 +45 26895 41.014717277925 0 +45 26895 41.014717277925 0 +45 26918 41.024399324799 0 +45 26918 41.024399324799 0 +45 26932 41.024559324799 0 +45 26932 41.024559324799 0 +45 26949 41.031276831396 0 +45 26949 41.031276831396 0 +45 26959 41.031436831396 0 +45 26959 41.031436831396 0 +45 26977 41.057384039737 0 +45 26977 41.057384039737 0 +45 26983 41.057544039737 0 +45 26983 41.057544039737 0 +45 27009 41.143993151421 0 +45 27009 41.143993151421 2 +45 27010 41.143993151421 2 +45 27010 41.143993151421 0 +45 27013 41.143993151421 0 +45 27013 41.143993151421 0 +45 27020 41.144153151421 0 +45 27020 41.144153151421 0 +45 27063 41.314557287623 0 +45 27063 41.314557287623 0 +45 27069 41.314717287623 0 +45 27069 41.314717287623 0 +45 27092 41.324399312788 0 +45 27092 41.324399312788 0 +45 27106 41.324559312788 0 +45 27106 41.324559312788 0 +45 27123 41.331276837463 0 +45 27123 41.331276837463 0 +45 27133 41.331436837463 0 +45 27133 41.331436837463 0 +45 27151 41.357384011756 0 +45 27151 41.357384011756 0 +45 27157 41.357544011756 0 +45 27157 41.357544011756 0 +45 27183 41.443993151421 0 +45 27183 41.443993151421 2 +45 27184 41.443993151421 2 +45 27184 41.443993151421 0 +45 27187 41.443993151421 0 +45 27187 41.443993151421 0 +45 27194 41.444153151421 0 +45 27194 41.444153151421 0 +45 27237 41.614557298022 0 +45 27237 41.614557298022 0 +45 27243 41.614717298022 0 +45 27243 41.614717298022 0 +45 27266 41.624399301583 0 +45 27266 41.624399301583 0 +45 27280 41.624559301583 0 +45 27280 41.624559301583 0 +45 27297 41.631276844699 0 +45 27297 41.631276844699 0 +45 27307 41.631436844699 0 +45 27307 41.631436844699 0 +45 27325 41.657383983797 0 +45 27325 41.657383983797 0 +45 27331 41.657543983797 0 +45 27331 41.657543983797 0 +45 27357 41.743993151421 0 +45 27357 41.743993151421 2 +45 27358 41.743993151421 2 +45 27358 41.743993151421 0 +45 27361 41.743993151421 0 +45 27361 41.743993151421 0 +45 27368 41.744153151421 0 +45 27368 41.744153151421 0 +45 27411 41.914557309216 0 +45 27411 41.914557309216 0 +45 27417 41.914717309216 0 +45 27417 41.914717309216 0 +45 27440 41.924399291388 0 +45 27440 41.924399291388 0 +45 27454 41.924559291388 0 +45 27454 41.924559291388 0 +45 27471 41.931276852916 0 +45 27471 41.931276852916 0 +45 27481 41.931436852916 0 +45 27481 41.931436852916 0 +45 27499 41.957383956357 0 +45 27499 41.957383956357 0 +45 27505 41.957543956357 0 +45 27505 41.957543956357 0 +45 27531 42.043993151421 0 +45 27531 42.043993151421 2 +45 27532 42.043993151421 2 +45 27532 42.043993151421 0 +45 27535 42.043993151421 0 +45 27535 42.043993151421 0 +45 27542 42.044153151421 0 +45 27542 42.044153151421 0 +45 27585 42.214557321205 0 +45 27585 42.214557321205 0 +45 27591 42.214717321205 0 +45 27591 42.214717321205 0 +45 27614 42.224399282466 0 +45 27614 42.224399282466 0 +45 27628 42.224559282466 0 +45 27628 42.224559282466 0 +45 27645 42.231276861741 0 +45 27645 42.231276861741 0 +45 27655 42.231436861741 0 +45 27655 42.231436861741 0 +45 27673 42.257383930301 0 +45 27673 42.257383930301 0 +45 27679 42.257543930301 0 +45 27679 42.257543930301 0 +45 27705 42.343993151421 0 +45 27705 42.343993151421 2 +45 27706 42.343993151421 2 +45 27706 42.343993151421 0 +45 27709 42.343993151421 0 +45 27709 42.343993151421 0 +45 27716 42.344153151421 0 +45 27716 42.344153151421 0 +45 27759 42.514557333849 0 +45 27759 42.514557333849 0 +45 27765 42.514717333849 0 +45 27765 42.514717333849 0 +45 27788 42.52439927473 0 +45 27788 42.52439927473 0 +45 27802 42.52455927473 0 +45 27802 42.52455927473 0 +45 27819 42.531276870996 0 +45 27819 42.531276870996 0 +45 27829 42.531436870996 0 +45 27829 42.531436870996 0 +45 27847 42.557383905564 0 +45 27847 42.557383905564 0 +45 27853 42.557543905564 0 +45 27853 42.557543905564 0 +45 27879 42.643993151421 0 +45 27879 42.643993151421 2 +45 27880 42.643993151421 2 +45 27880 42.643993151421 0 +45 27883 42.643993151421 0 +45 27883 42.643993151421 0 +45 27890 42.644153151421 0 +45 27890 42.644153151421 0 +45 27933 42.814557347041 0 +45 27933 42.814557347041 0 +45 27939 42.814717347041 0 +45 27939 42.814717347041 0 +45 27962 42.824399268076 0 +45 27962 42.824399268076 0 +45 27976 42.824559268076 0 +45 27976 42.824559268076 0 +45 27993 42.831276880478 0 +45 27993 42.831276880478 0 +45 28003 42.831436880478 0 +45 28003 42.831436880478 0 +45 28021 42.857383882214 0 +45 28021 42.857383882214 0 +45 28027 42.857543882214 0 +45 28027 42.857543882214 0 +45 28053 42.943993151421 0 +45 28053 42.943993151421 2 +45 28054 42.943993151421 2 +45 28054 42.943993151421 0 +45 28057 42.943993151421 0 +45 28057 42.943993151421 0 +45 28064 42.944153151421 0 +45 28064 42.944153151421 0 +45 28108 43.114557360624 0 +45 28108 43.114557360624 0 +45 28118 43.114717360624 0 +45 28118 43.114717360624 0 +45 28136 43.124399262415 0 +45 28136 43.124399262415 0 +45 28150 43.124559262415 0 +45 28150 43.124559262415 0 +45 28167 43.131276890097 0 +45 28167 43.131276890097 0 +45 28177 43.131436890097 0 +45 28177 43.131436890097 0 +45 28195 43.157383860218 0 +45 28195 43.157383860218 0 +45 28201 43.157543860218 0 +45 28201 43.157543860218 0 +45 28227 43.243993151421 0 +45 28227 43.243993151421 2 +45 28228 43.243993151421 2 +45 28228 43.243993151421 0 +45 28231 43.243993151421 0 +45 28231 43.243993151421 0 +45 28238 43.244153151421 0 +45 28238 43.244153151421 0 +45 28282 43.414557374505 0 +45 28282 43.414557374505 0 +45 28292 43.414717374505 0 +45 28292 43.414717374505 0 +45 28310 43.424399257654 0 +45 28310 43.424399257654 0 +45 28324 43.424559257654 0 +45 28324 43.424559257654 0 +45 28341 43.431276899681 0 +45 28341 43.431276899681 0 +45 28351 43.431436899681 0 +45 28351 43.431436899681 0 +45 28369 43.45738383957 0 +45 28369 43.45738383957 0 +45 28375 43.45754383957 0 +45 28375 43.45754383957 0 +45 28401 43.543993151421 0 +45 28401 43.543993151421 2 +45 28402 43.543993151421 2 +45 28402 43.543993151421 0 +45 28405 43.543993151421 0 +45 28405 43.543993151421 0 +45 28412 43.544153151421 0 +45 28412 43.544153151421 0 +45 28456 43.714557388346 0 +45 28456 43.714557388346 0 +45 28466 43.714717388346 0 +45 28466 43.714717388346 0 +45 28484 43.724399253693 0 +45 28484 43.724399253693 0 +45 28498 43.724559253693 0 +45 28498 43.724559253693 0 +45 28515 43.73127690914 0 +45 28515 43.73127690914 0 +45 28525 43.73143690914 0 +45 28525 43.73143690914 0 +45 28543 43.757383820288 0 +45 28543 43.757383820288 0 +45 28549 43.757543820288 0 +45 28549 43.757543820288 0 +45 28575 43.843993151421 0 +45 28575 43.843993151421 2 +45 28576 43.843993151421 2 +45 28576 43.843993151421 0 +45 28579 43.843993151421 0 +45 28579 43.843993151421 0 +45 28586 43.844153151421 0 +45 28586 43.844153151421 0 +45 28630 44.014557401083 0 +45 28630 44.014557401083 0 +45 28640 44.014717401083 0 +45 28640 44.014717401083 0 +45 28658 44.024399250434 0 +45 28658 44.024399250434 0 +45 28672 44.024559250434 0 +45 28672 44.024559250434 0 +45 28689 44.031276918359 0 +45 28689 44.031276918359 0 +45 28699 44.031436918359 0 +45 28699 44.031436918359 0 +45 28717 44.057383802369 0 +45 28717 44.057383802369 0 +45 28723 44.057543802369 0 +45 28723 44.057543802369 0 +45 28749 44.143993151421 0 +45 28749 44.143993151421 2 +45 28750 44.143993151421 2 +45 28750 44.143993151421 0 +45 28753 44.143993151421 0 +45 28753 44.143993151421 0 +45 28760 44.144153151421 0 +45 28760 44.144153151421 0 +45 28804 44.31455741262 0 +45 28804 44.31455741262 0 +45 28814 44.31471741262 0 +45 28814 44.31471741262 0 +45 28831 44.324399247783 0 +45 28831 44.324399247783 0 +45 28841 44.324559247783 0 +45 28841 44.324559247783 0 +45 28887 44.357383786728 0 +45 28887 44.357383786728 0 +45 28893 44.357543786728 0 +45 28893 44.357543786728 0 +45 28919 44.443993151421 0 +45 28919 44.443993151421 2 +45 28920 44.443993151421 2 +45 28920 44.443993151421 0 +45 28923 44.443993151421 0 +45 28923 44.443993151421 0 +45 28930 44.444153151421 0 +45 28930 44.444153151421 0 +45 28970 44.614557422913 0 +45 28970 44.614557422913 0 +45 28980 44.614717422913 0 +45 28980 44.614717422913 0 +45 28997 44.624399245654 0 +45 28997 44.624399245654 0 +45 29007 44.624559245654 0 +45 29007 44.624559245654 0 +45 29053 44.657383773768 0 +45 29053 44.657383773768 0 +45 29059 44.657543773768 0 +45 29059 44.657543773768 0 +45 29085 44.743993151421 0 +45 29085 44.743993151421 2 +45 29086 44.743993151421 2 +45 29086 44.743993151421 0 +45 29089 44.743993151421 0 +45 29089 44.743993151421 0 +45 29096 44.744153151421 0 +45 29096 44.744153151421 0 +45 29136 44.914557431937 0 +45 29136 44.914557431937 0 +45 29146 44.914717431937 0 +45 29146 44.914717431937 0 +45 29163 44.924399243982 0 +45 29163 44.924399243982 0 +45 29173 44.924559243982 0 +45 29173 44.924559243982 0 +45 29219 44.957383763502 0 +45 29219 44.957383763502 0 +45 29225 44.957543763502 0 +45 29225 44.957543763502 0 +45 29251 45.043993151421 0 +45 29251 45.043993151421 2 +45 29252 45.043993151421 2 +45 29252 45.043993151421 0 +45 29255 45.043993151421 0 +45 29255 45.043993151421 0 +45 29262 45.044153151421 0 +45 29262 45.044153151421 0 +45 29302 45.21455743966 0 +45 29302 45.21455743966 0 +45 29312 45.21471743966 0 +45 29312 45.21471743966 0 +45 29329 45.224399242636 0 +45 29329 45.224399242636 0 +45 29339 45.224559242636 0 +45 29339 45.224559242636 0 +45 29385 45.257383755525 0 +45 29385 45.257383755525 0 +45 29391 45.257543755525 0 +45 29391 45.257543755525 0 +45 29417 45.343993151421 0 +45 29417 45.343993151421 2 +45 29418 45.343993151421 2 +45 29418 45.343993151421 0 +45 29421 45.343993151421 0 +45 29421 45.343993151421 0 +45 29428 45.344153151421 0 +45 29428 45.344153151421 0 +45 29468 45.514557446271 0 +45 29468 45.514557446271 0 +45 29478 45.514717446271 0 +45 29478 45.514717446271 0 +45 29495 45.524399241497 0 +45 29495 45.524399241497 0 +45 29505 45.524559241497 0 +45 29505 45.524559241497 0 +45 29551 45.557383748928 0 +45 29551 45.557383748928 0 +45 29557 45.557543748928 0 +45 29557 45.557543748928 0 +45 29583 45.643993151421 0 +45 29583 45.643993151421 2 +45 29584 45.643993151421 2 +45 29584 45.643993151421 0 +45 29587 45.643993151421 0 +45 29587 45.643993151421 0 +45 29594 45.644153151421 0 +45 29594 45.644153151421 0 +45 29634 45.814557453426 0 +45 29634 45.814557453426 0 +45 29644 45.814717453426 0 +45 29644 45.814717453426 0 +45 29661 45.824399240537 0 +45 29661 45.824399240537 0 +45 29671 45.824559240537 0 +45 29671 45.824559240537 0 +45 29717 45.857383742284 0 +45 29717 45.857383742284 0 +45 29723 45.857543742284 0 +45 29723 45.857543742284 0 +45 29749 45.943993151421 0 +45 29749 45.943993151421 2 +45 29750 45.943993151421 2 +45 29750 45.943993151421 0 +45 29753 45.943993151421 0 +45 29753 45.943993151421 0 +45 29760 45.944153151421 0 +45 29760 45.944153151421 0 +45 29800 46.11455746131 0 +45 29800 46.11455746131 0 +45 29810 46.11471746131 0 +45 29810 46.11471746131 0 +45 29827 46.124399236922 0 +45 29827 46.124399236922 0 +45 29837 46.124559236922 0 +45 29837 46.124559236922 0 +45 29883 46.157383734922 0 +45 29883 46.157383734922 0 +45 29889 46.157543734922 0 +45 29889 46.157543734922 0 +45 29915 46.243993151421 0 +45 29915 46.243993151421 2 +45 29916 46.243993151421 2 +45 29916 46.243993151421 0 +45 29919 46.243993151421 0 +45 29919 46.243993151421 0 +45 29926 46.244153151421 0 +45 29926 46.244153151421 0 +45 29966 46.414557469463 0 +45 29966 46.414557469463 0 +45 29976 46.414717469463 0 +45 29976 46.414717469463 0 +45 29993 46.424399227691 0 +45 29993 46.424399227691 0 +45 30003 46.424559227691 0 +45 30003 46.424559227691 0 +45 30049 46.457383726677 0 +45 30049 46.457383726677 0 +45 30055 46.457543726677 0 +45 30055 46.457543726677 0 +45 30081 46.543993151421 0 +45 30081 46.543993151421 2 +45 30082 46.543993151421 2 +45 30082 46.543993151421 0 +45 30085 46.543993151421 0 +45 30085 46.543993151421 0 +45 30092 46.544153151421 0 +45 30092 46.544153151421 0 +45 30132 46.7145574756 0 +45 30132 46.7145574756 0 +45 30142 46.7147174756 0 +45 30142 46.7147174756 0 +45 30159 46.724399216308 0 +45 30159 46.724399216308 0 +45 30169 46.724559216308 0 +45 30169 46.724559216308 0 +45 30215 46.757383717477 0 +45 30215 46.757383717477 0 +45 30221 46.757543717477 0 +45 30221 46.757543717477 0 +45 30247 46.843993151421 0 +45 30247 46.843993151421 2 +45 30248 46.843993151421 2 +45 30248 46.843993151421 0 +45 30251 46.843993151421 0 +45 30251 46.843993151421 0 +45 30258 46.844153151421 0 +45 30258 46.844153151421 0 +45 30298 47.014557477752 0 +45 30298 47.014557477752 0 +45 30308 47.014717477752 0 +45 30308 47.014717477752 0 +45 30325 47.024399204936 0 +45 30325 47.024399204936 0 +45 30335 47.024559204936 0 +45 30335 47.024559204936 0 +45 30381 47.057383707399 0 +45 30381 47.057383707399 0 +45 30387 47.057543707399 0 +45 30387 47.057543707399 0 +45 30413 47.143993151421 0 +45 30413 47.143993151421 2 +45 30414 47.143993151421 2 +45 30414 47.143993151421 0 +45 30417 47.143993151421 0 +45 30417 47.143993151421 0 +45 30424 47.144153151421 0 +45 30424 47.144153151421 0 +45 30464 47.31455747801 0 +45 30464 47.31455747801 0 +45 30474 47.31471747801 0 +45 30474 47.31471747801 0 +45 30491 47.324399193637 0 +45 30491 47.324399193637 0 +45 30501 47.324559193637 0 +45 30501 47.324559193637 0 +45 30547 47.357383698008 0 +45 30547 47.357383698008 0 +45 30553 47.357543698008 0 +45 30553 47.357543698008 0 +45 30579 47.443993151421 0 +45 30579 47.443993151421 2 +45 30580 47.443993151421 2 +45 30580 47.443993151421 0 +45 30583 47.443993151421 0 +45 30583 47.443993151421 0 +45 30590 47.444153151421 0 +45 30590 47.444153151421 0 +45 30630 47.614557478274 0 +45 30630 47.614557478274 0 +45 30640 47.614717478274 0 +45 30640 47.614717478274 0 +45 30657 47.62439918244 0 +45 30657 47.62439918244 0 +45 30667 47.62455918244 0 +45 30667 47.62455918244 0 +45 30713 47.657383697458 0 +45 30713 47.657383697458 0 +45 30719 47.657543697458 0 +45 30719 47.657543697458 0 +45 30745 47.743993151421 0 +45 30745 47.743993151421 2 +45 30746 47.743993151421 2 +45 30746 47.743993151421 0 +45 30749 47.743993151421 0 +45 30749 47.743993151421 0 +45 30756 47.744153151421 0 +45 30756 47.744153151421 0 +45 30796 47.914557478544 0 +45 30796 47.914557478544 0 +45 30806 47.914717478544 0 +45 30806 47.914717478544 0 +45 30822 47.92439917133 0 +45 30822 47.92439917133 0 +45 30828 47.92455917133 0 +45 30828 47.92455917133 0 +45 30879 47.957383708789 0 +45 30879 47.957383708789 0 +45 30885 47.957543708789 0 +45 30885 47.957543708789 0 +45 30911 48.043993151421 0 +45 30911 48.043993151421 2 +45 30912 48.043993151421 2 +45 30912 48.043993151421 0 +45 30915 48.043993151421 0 +45 30915 48.043993151421 0 +45 30922 48.044153151421 0 +45 30922 48.044153151421 0 +45 30962 48.214557477888 0 +45 30962 48.214557477888 0 +45 30972 48.214717477888 0 +45 30972 48.214717477888 0 +45 30988 48.224399161344 0 +45 30988 48.224399161344 0 +45 30994 48.224559161344 0 +45 30994 48.224559161344 0 +45 31045 48.257383722862 0 +45 31045 48.257383722862 0 +45 31051 48.257543722862 0 +45 31051 48.257543722862 0 +45 31077 48.343993151421 0 +45 31077 48.343993151421 2 +45 31078 48.343993151421 2 +45 31078 48.343993151421 0 +45 31081 48.343993151421 0 +45 31081 48.343993151421 0 +45 31088 48.344153151421 0 +45 31088 48.344153151421 0 +45 31127 48.514557476625 0 +45 31127 48.514557476625 0 +45 31133 48.514717476625 0 +45 31133 48.514717476625 0 +45 31154 48.524399152109 0 +45 31154 48.524399152109 0 +45 31160 48.524559152109 0 +45 31160 48.524559152109 0 +45 31211 48.557383738369 0 +45 31211 48.557383738369 0 +45 31217 48.557543738369 0 +45 31217 48.557543738369 0 +45 31243 48.643993151421 0 +45 31243 48.643993151421 2 +45 31244 48.643993151421 2 +45 31244 48.643993151421 0 +45 31247 48.643993151421 0 +45 31247 48.643993151421 0 +45 31254 48.644153151421 0 +45 31254 48.644153151421 0 +45 31293 48.814557474634 0 +45 31293 48.814557474634 0 +45 31299 48.814717474634 0 +45 31299 48.814717474634 0 +45 31320 48.824399143836 0 +45 31320 48.824399143836 0 +45 31326 48.824559143836 0 +45 31326 48.824559143836 0 +45 31377 48.857383754702 0 +45 31377 48.857383754702 0 +45 31383 48.857543754702 0 +45 31383 48.857543754702 0 +45 31409 48.943993151421 0 +45 31409 48.943993151421 2 +45 31410 48.943993151421 2 +45 31410 48.943993151421 0 +45 31413 48.943993151421 0 +45 31413 48.943993151421 0 +45 31420 48.944153151421 0 +45 31420 48.944153151421 0 +45 31459 49.11455747139 0 +45 31459 49.11455747139 0 +45 31465 49.11471747139 0 +45 31465 49.11471747139 0 +45 31486 49.124399137291 0 +45 31486 49.124399137291 0 +45 31492 49.124559137291 0 +45 31492 49.124559137291 0 +45 31543 49.157383770654 0 +45 31543 49.157383770654 0 +45 31549 49.157543770654 0 +45 31549 49.157543770654 0 +45 31575 49.243993151421 0 +45 31575 49.243993151421 2 +45 31576 49.243993151421 2 +45 31576 49.243993151421 0 +45 31579 49.243993151421 0 +45 31579 49.243993151421 0 +45 31586 49.244153151421 0 +45 31586 49.244153151421 0 +45 31625 49.414557467632 0 +45 31625 49.414557467632 0 +45 31631 49.414717467632 0 +45 31631 49.414717467632 0 +45 31652 49.424399131732 0 +45 31652 49.424399131732 0 +45 31658 49.424559131732 0 +45 31658 49.424559131732 0 +45 31709 49.457383786041 0 +45 31709 49.457383786041 0 +45 31715 49.457543786041 0 +45 31715 49.457543786041 0 +45 31741 49.543993151421 0 +45 31741 49.543993151421 2 +45 31742 49.543993151421 2 +45 31742 49.543993151421 0 +45 31745 49.543993151421 0 +45 31745 49.543993151421 0 +45 31752 49.544153151421 0 +45 31752 49.544153151421 0 +45 31791 49.71455746338 0 +45 31791 49.71455746338 0 +45 31797 49.71471746338 0 +45 31797 49.71471746338 0 +45 31819 49.724399127231 0 +45 31819 49.724399127231 0 +45 31829 49.724559127231 0 +45 31829 49.724559127231 0 +45 31875 49.757383800762 0 +45 31875 49.757383800762 0 +45 31881 49.757543800762 0 +45 31881 49.757543800762 0 +45 31907 49.843993151421 0 +45 31907 49.843993151421 2 +45 31908 49.843993151421 2 +45 31908 49.843993151421 0 +45 31911 49.843993151421 0 +45 31911 49.843993151421 0 +45 31918 49.844153151421 0 +45 31918 49.844153151421 0 +45 31957 50.014557459048 0 +45 31957 50.014557459048 0 +45 31963 50.014717459048 0 +45 31963 50.014717459048 0 +45 31985 50.024399123312 0 +45 31985 50.024399123312 0 +45 31995 50.024559123312 0 +45 31995 50.024559123312 0 +45 32041 50.057383815148 0 +45 32041 50.057383815148 0 +45 32047 50.057543815148 0 +45 32047 50.057543815148 0 +45 32073 50.143993151421 0 +45 32073 50.143993151421 2 +45 32074 50.143993151421 2 +45 32074 50.143993151421 0 +45 32077 50.143993151421 0 +45 32077 50.143993151421 0 +45 32084 50.144153151421 0 +45 32084 50.144153151421 0 +45 32123 50.314557454631 0 +45 32123 50.314557454631 0 +45 32129 50.314717454631 0 +45 32129 50.314717454631 0 +45 32151 50.324399119987 0 +45 32151 50.324399119987 0 +45 32161 50.324559119987 0 +45 32161 50.324559119987 0 +45 32207 50.357383829549 0 +45 32207 50.357383829549 0 +45 32213 50.357543829549 0 +45 32213 50.357543829549 0 +45 32239 50.443993151421 0 +45 32239 50.443993151421 2 +45 32240 50.443993151421 2 +45 32240 50.443993151421 0 +45 32243 50.443993151421 0 +45 32243 50.443993151421 0 +45 32250 50.444153151421 0 +45 32250 50.444153151421 0 +45 32289 50.614557450054 0 +45 32289 50.614557450054 0 +45 32295 50.614717450054 0 +45 32295 50.614717450054 0 +45 32317 50.624399117227 0 +45 32317 50.624399117227 0 +45 32327 50.624559117227 0 +45 32327 50.624559117227 0 +45 32373 50.657383844282 0 +45 32373 50.657383844282 0 +45 32379 50.657543844282 0 +45 32379 50.657543844282 0 +45 32405 50.743993151421 0 +45 32405 50.743993151421 2 +45 32406 50.743993151421 2 +45 32406 50.743993151421 0 +45 32409 50.743993151421 0 +45 32409 50.743993151421 0 +45 32416 50.744153151421 0 +45 32416 50.744153151421 0 +45 32455 50.914557445285 0 +45 32455 50.914557445285 0 +45 32461 50.914717445285 0 +45 32461 50.914717445285 0 +45 32483 50.924399115103 0 +45 32483 50.924399115103 0 +45 32493 50.924559115103 0 +45 32493 50.924559115103 0 +45 32539 50.957383859315 0 +45 32539 50.957383859315 0 +45 32545 50.957543859315 0 +45 32545 50.957543859315 0 +45 32571 51.043993151421 0 +45 32571 51.043993151421 2 +45 32572 51.043993151421 2 +45 32572 51.043993151421 0 +45 32575 51.043993151421 0 +45 32575 51.043993151421 0 +45 32582 51.044153151421 0 +45 32582 51.044153151421 0 +45 32621 51.21455744041 0 +45 32621 51.21455744041 0 +45 32627 51.21471744041 0 +45 32627 51.21471744041 0 +45 32645 51.224399113583 0 +45 32645 51.224399113583 0 +45 32655 51.224559113583 0 +45 32655 51.224559113583 0 +45 32701 51.257383874742 0 +45 32701 51.257383874742 0 +45 32707 51.257543874742 0 +45 32707 51.257543874742 0 +45 32729 51.343993151421 0 +45 32729 51.343993151421 2 +45 32730 51.343993151421 2 +45 32730 51.343993151421 0 +45 32733 51.343993151421 0 +45 32733 51.343993151421 0 +45 32740 51.344153151421 0 +45 32740 51.344153151421 0 +45 32779 51.514557435458 0 +45 32779 51.514557435458 0 +45 32785 51.514717435458 0 +45 32785 51.514717435458 0 +45 32803 51.524399112627 0 +45 32803 51.524399112627 0 +45 32813 51.524559112627 0 +45 32813 51.524559112627 0 +45 32863 51.557383890499 0 +45 32863 51.557383890499 0 +45 32869 51.557543890499 0 +45 32869 51.557543890499 0 +45 32895 51.643993151421 0 +45 32895 51.643993151421 2 +45 32896 51.643993151421 2 +45 32896 51.643993151421 0 +45 32899 51.643993151421 0 +45 32899 51.643993151421 0 +45 32906 51.644153151421 0 +45 32906 51.644153151421 0 +45 32945 51.814557430365 0 +45 32945 51.814557430365 0 +45 32951 51.814717430365 0 +45 32951 51.814717430365 0 +45 32969 51.824399112353 0 +45 32969 51.824399112353 0 +45 32979 51.824559112353 0 +45 32979 51.824559112353 0 +45 33029 51.857383906635 0 +45 33029 51.857383906635 0 +45 33035 51.857543906635 0 +45 33035 51.857543906635 0 +45 33061 51.943993151421 0 +45 33061 51.943993151421 2 +45 33062 51.943993151421 2 +45 33062 51.943993151421 0 +45 33065 51.943993151421 0 +45 33065 51.943993151421 0 +45 33072 51.944153151421 0 +45 33072 51.944153151421 0 +45 33111 52.114557425224 0 +45 33111 52.114557425224 0 +45 33117 52.114717425224 0 +45 33117 52.114717425224 0 +45 33135 52.124399112693 0 +45 33135 52.124399112693 0 +45 33145 52.124559112693 0 +45 33145 52.124559112693 0 +45 33195 52.157383923181 0 +45 33195 52.157383923181 0 +45 33201 52.157543923181 0 +45 33201 52.157543923181 0 +45 33227 52.243993151421 0 +45 33227 52.243993151421 2 +45 33228 52.243993151421 2 +45 33228 52.243993151421 0 +45 33231 52.243993151421 0 +45 33231 52.243993151421 0 +45 33238 52.244153151421 0 +45 33238 52.244153151421 0 +45 33277 52.414557420182 0 +45 33277 52.414557420182 0 +45 33283 52.414717420182 0 +45 33283 52.414717420182 0 +45 33301 52.424399113556 0 +45 33301 52.424399113556 0 +45 33311 52.424559113556 0 +45 33311 52.424559113556 0 +45 33361 52.457383940072 0 +45 33361 52.457383940072 0 +45 33367 52.457543940072 0 +45 33367 52.457543940072 0 +45 33393 52.543993151421 0 +45 33393 52.543993151421 2 +45 33394 52.543993151421 2 +45 33394 52.543993151421 0 +45 33397 52.543993151421 0 +45 33397 52.543993151421 0 +45 33404 52.544153151421 0 +45 33404 52.544153151421 0 +45 33443 52.714557415208 0 +45 33443 52.714557415208 0 +45 33449 52.714717415208 0 +45 33449 52.714717415208 0 +45 33467 52.724399114954 0 +45 33467 52.724399114954 0 +45 33477 52.724559114954 0 +45 33477 52.724559114954 0 +45 33527 52.757383957286 0 +45 33527 52.757383957286 0 +45 33533 52.757543957286 0 +45 33533 52.757543957286 0 +45 33559 52.843993151421 0 +45 33559 52.843993151421 2 +45 33560 52.843993151421 2 +45 33560 52.843993151421 0 +45 33563 52.843993151421 0 +45 33563 52.843993151421 0 +45 33570 52.844153151421 0 +45 33570 52.844153151421 0 +45 33609 53.014557410369 0 +45 33609 53.014557410369 0 +45 33615 53.014717410369 0 +45 33615 53.014717410369 0 +45 33633 53.024399116886 0 +45 33633 53.024399116886 0 +45 33643 53.024559116886 0 +45 33643 53.024559116886 0 +45 33693 53.057383974792 0 +45 33693 53.057383974792 0 +45 33699 53.057543974792 0 +45 33699 53.057543974792 0 +45 33725 53.143993151421 0 +45 33725 53.143993151421 2 +45 33726 53.143993151421 2 +45 33726 53.143993151421 0 +45 33729 53.143993151421 0 +45 33729 53.143993151421 0 +45 33736 53.144153151421 0 +45 33736 53.144153151421 0 +45 33775 53.32439911934 0 +45 33775 53.32439911934 0 +45 33784 53.32455911934 0 +45 33784 53.32455911934 0 +45 33830 53.357383991743 0 +45 33830 53.357383991743 0 +45 33835 53.357543991743 0 +45 33835 53.357543991743 0 +45 33859 53.443993151421 0 +45 33859 53.443993151421 2 +45 33860 53.443993151421 2 +45 33860 53.443993151421 0 +45 33863 53.443993151421 0 +45 33863 53.443993151421 0 +45 33869 53.444153151421 0 +45 33869 53.444153151421 0 +45 33902 53.624399122413 0 +45 33902 53.624399122413 0 +45 33911 53.624559122413 0 +45 33911 53.624559122413 0 +45 33957 53.657384007982 0 +45 33957 53.657384007982 0 +45 33962 53.657544007982 0 +45 33962 53.657544007982 0 +45 33986 53.743993151421 0 +45 33986 53.743993151421 2 +45 33987 53.743993151421 2 +45 33987 53.743993151421 0 +45 33990 53.743993151421 0 +45 33990 53.743993151421 0 +45 33996 53.744153151421 0 +45 33996 53.744153151421 0 +45 34029 53.924399125883 0 +45 34029 53.924399125883 0 +45 34038 53.924559125883 0 +45 34038 53.924559125883 0 +45 34084 53.957384023455 0 +45 34084 53.957384023455 0 +45 34089 53.957544023455 0 +45 34089 53.957544023455 0 +45 34113 54.043993151421 0 +45 34113 54.043993151421 2 +45 34114 54.043993151421 2 +45 34114 54.043993151421 0 +45 34117 54.043993151421 0 +45 34117 54.043993151421 0 +45 34123 54.044153151421 0 +45 34123 54.044153151421 0 +45 34156 54.224399129356 0 +45 34156 54.224399129356 0 +45 34165 54.224559129356 0 +45 34165 54.224559129356 0 +45 34211 54.257384037982 0 +45 34211 54.257384037982 0 +45 34216 54.257544037982 0 +45 34216 54.257544037982 0 +45 34240 54.343993151421 0 +45 34240 54.343993151421 2 +45 34241 54.343993151421 2 +45 34241 54.343993151421 0 +45 34244 54.343993151421 0 +45 34244 54.343993151421 0 +45 34250 54.344153151421 0 +45 34250 54.344153151421 0 +45 34283 54.524399132878 0 +45 34283 54.524399132878 0 +45 34292 54.524559132878 0 +45 34292 54.524559132878 0 +45 34338 54.557384051792 0 +45 34338 54.557384051792 0 +45 34343 54.557544051792 0 +45 34343 54.557544051792 0 +45 34367 54.643993151421 0 +45 34367 54.643993151421 2 +45 34368 54.643993151421 2 +45 34368 54.643993151421 0 +45 34371 54.643993151421 0 +45 34371 54.643993151421 0 +45 34377 54.644153151421 0 +45 34377 54.644153151421 0 +45 34410 54.824399136418 0 +45 34410 54.824399136418 0 +45 34419 54.824559136418 0 +45 34419 54.824559136418 0 +45 34465 54.857384066271 0 +45 34465 54.857384066271 0 +45 34470 54.857544066271 0 +45 34470 54.857544066271 0 +45 34494 54.943993151421 0 +45 34494 54.943993151421 2 +45 34495 54.943993151421 2 +45 34495 54.943993151421 0 +45 34498 54.943993151421 0 +45 34498 54.943993151421 0 +45 34504 54.944153151421 0 +45 34504 54.944153151421 0 +45 34537 55.124399139869 0 +45 34537 55.124399139869 0 +45 34546 55.124559139869 0 +45 34546 55.124559139869 0 +45 34592 55.157384081514 0 +45 34592 55.157384081514 0 +45 34597 55.157544081514 0 +45 34597 55.157544081514 0 +45 34621 55.243993151421 0 +45 34621 55.243993151421 2 +45 34622 55.243993151421 2 +45 34622 55.243993151421 0 +45 34625 55.243993151421 0 +45 34625 55.243993151421 0 +45 34631 55.244153151421 0 +45 34631 55.244153151421 0 +45 34664 55.424399143329 0 +45 34664 55.424399143329 0 +45 34673 55.424559143329 0 +45 34673 55.424559143329 0 +45 34719 55.457384097382 0 +45 34719 55.457384097382 0 +45 34724 55.457544097382 0 +45 34724 55.457544097382 0 +45 34748 55.543993151421 0 +45 34748 55.543993151421 2 +45 34749 55.543993151421 2 +45 34749 55.543993151421 0 +45 34752 55.543993151421 0 +45 34752 55.543993151421 0 +45 34758 55.544153151421 0 +45 34758 55.544153151421 0 +45 34791 55.724399146854 0 +45 34791 55.724399146854 0 +45 34800 55.724559146854 0 +45 34800 55.724559146854 0 +45 34846 55.757384113825 0 +45 34846 55.757384113825 0 +45 34851 55.757544113825 0 +45 34851 55.757544113825 0 +45 34875 55.843993151421 0 +45 34875 55.843993151421 2 +45 34876 55.843993151421 2 +45 34876 55.843993151421 0 +45 34879 55.843993151421 0 +45 34879 55.843993151421 0 +45 34885 55.844153151421 0 +45 34885 55.844153151421 0 +45 34918 56.024399150367 0 +45 34918 56.024399150367 0 +45 34927 56.024559150367 0 +45 34927 56.024559150367 0 +45 34973 56.057384130858 0 +45 34973 56.057384130858 0 +45 34978 56.057544130858 0 +45 34978 56.057544130858 0 +45 35002 56.143993151421 0 +45 35002 56.143993151421 2 +45 35003 56.143993151421 2 +45 35003 56.143993151421 0 +45 35006 56.143993151421 0 +45 35006 56.143993151421 0 +45 35012 56.144153151421 0 +45 35012 56.144153151421 0 +45 35045 56.324399153849 0 +45 35045 56.324399153849 0 +45 35054 56.324559153849 0 +45 35054 56.324559153849 0 +45 35101 56.357384148407 0 +45 35101 56.357384148407 0 +45 35110 56.357544148407 0 +45 35110 56.357544148407 0 +45 35129 56.443993151421 0 +45 35129 56.443993151421 2 +45 35130 56.443993151421 2 +45 35130 56.443993151421 0 +45 35133 56.443993151421 0 +45 35133 56.443993151421 0 +45 35139 56.444153151421 0 +45 35139 56.444153151421 0 +46 356 4.1 0 +46 356 4.1 0 +46 396 4.131276647939 0 +46 396 4.131276647939 0 +46 401 4.131436647939 0 +46 401 4.131436647939 0 +46 493 4.43127664842 0 +46 493 4.43127664842 0 +46 498 4.43143664842 0 +46 498 4.43143664842 0 +46 552 4.543993151421 0 +46 552 4.543993151421 0 +46 558 4.544153151421 0 +46 558 4.544153151421 0 +46 612 4.731276648452 0 +46 612 4.731276648452 0 +46 617 4.731436648452 0 +46 617 4.731436648452 0 +46 671 4.843993151421 0 +46 671 4.843993151421 0 +46 677 4.844153151421 0 +46 677 4.844153151421 0 +46 731 5.031276648071 0 +46 731 5.031276648071 0 +46 736 5.031436648071 0 +46 736 5.031436648071 0 +46 791 5.143993151421 0 +46 791 5.143993151421 0 +46 798 5.144153151421 0 +46 798 5.144153151421 0 +46 861 5.331276647275 0 +46 861 5.331276647275 0 +46 867 5.331436647275 0 +46 867 5.331436647275 0 +46 925 5.443993151421 0 +46 925 5.443993151421 0 +46 932 5.444153151421 0 +46 932 5.444153151421 0 +46 995 5.631276646135 0 +46 995 5.631276646135 0 +46 1001 5.631436646135 0 +46 1001 5.631436646135 0 +46 1055 5.693585836534 0 +46 1055 5.693585836534 0 +46 1061 5.693745836534 0 +46 1061 5.693745836534 0 +46 1083 5.743993151421 0 +46 1083 5.743993151421 0 +46 1090 5.744153151421 0 +46 1090 5.744153151421 0 +46 1153 5.931276644725 0 +46 1153 5.931276644725 0 +46 1159 5.931436644725 0 +46 1159 5.931436644725 0 +46 1213 5.993585836591 0 +46 1213 5.993585836591 0 +46 1219 5.993745836591 0 +46 1219 5.993745836591 0 +46 1241 6.043993151421 0 +46 1241 6.043993151421 0 +46 1248 6.044153151421 0 +46 1248 6.044153151421 0 +46 1320 6.231276643012 0 +46 1320 6.231276643012 0 +46 1331 6.231436643012 0 +46 1331 6.231436643012 0 +46 1391 6.293585836659 0 +46 1391 6.293585836659 0 +46 1398 6.293745836659 0 +46 1398 6.293745836659 0 +46 1422 6.343993151421 0 +46 1422 6.343993151421 0 +46 1430 6.344153151421 0 +46 1430 6.344153151421 0 +46 1536 6.531276640981 0 +46 1536 6.531276640981 0 +46 1547 6.531436640981 0 +46 1547 6.531436640981 0 +46 1608 6.593585836741 0 +46 1608 6.593585836741 0 +46 1615 6.593745836741 0 +46 1615 6.593745836741 0 +46 1639 6.643993151421 0 +46 1639 6.643993151421 0 +46 1647 6.644153151421 0 +46 1647 6.644153151421 0 +46 1753 6.83127663868 0 +46 1753 6.83127663868 0 +46 1764 6.83143663868 0 +46 1764 6.83143663868 0 +46 1825 6.893585836836 0 +46 1825 6.893585836836 0 +46 1832 6.893745836836 0 +46 1832 6.893745836836 0 +46 1856 6.943993151421 0 +46 1856 6.943993151421 0 +46 1864 6.944153151421 0 +46 1864 6.944153151421 0 +46 1970 7.131276636128 0 +46 1970 7.131276636128 0 +46 1981 7.131436636128 0 +46 1981 7.131436636128 0 +46 2042 7.193585836946 0 +46 2042 7.193585836946 0 +46 2049 7.193745836946 0 +46 2049 7.193745836946 0 +46 2073 7.243993151421 0 +46 2073 7.243993151421 0 +46 2081 7.244153151421 0 +46 2081 7.244153151421 0 +46 2187 7.431276633301 0 +46 2187 7.431276633301 0 +46 2198 7.431436633301 0 +46 2198 7.431436633301 0 +46 2259 7.493585837077 0 +46 2259 7.493585837077 0 +46 2266 7.493745837077 0 +46 2266 7.493745837077 0 +46 2290 7.543993151421 0 +46 2290 7.543993151421 0 +46 2298 7.544153151421 0 +46 2298 7.544153151421 0 +46 2404 7.73127663025 0 +46 2404 7.73127663025 0 +46 2415 7.73143663025 0 +46 2415 7.73143663025 0 +46 2476 7.79358583722 0 +46 2476 7.79358583722 0 +46 2483 7.79374583722 0 +46 2483 7.79374583722 0 +46 2507 7.843993151421 0 +46 2507 7.843993151421 0 +46 2515 7.844153151421 0 +46 2515 7.844153151421 0 +46 2589 8.024399341429 0 +46 2589 8.024399341429 0 +46 2608 8.024559341429 0 +46 2608 8.024559341429 0 +46 2622 8.031276627008 0 +46 2622 8.031276627008 0 +46 2637 8.031436627008 0 +46 2637 8.031436627008 0 +46 2693 8.093585837381 0 +46 2693 8.093585837381 0 +46 2700 8.093745837381 0 +46 2700 8.093745837381 0 +46 2724 8.143993151421 0 +46 2724 8.143993151421 0 +46 2732 8.144153151421 0 +46 2732 8.144153151421 0 +46 2806 8.324399339726 0 +46 2806 8.324399339726 0 +46 2825 8.324559339726 0 +46 2825 8.324559339726 0 +46 2843 8.331276623516 0 +46 2843 8.331276623516 0 +46 2858 8.331436623516 0 +46 2858 8.331436623516 0 +46 2914 8.393585837564 0 +46 2914 8.393585837564 0 +46 2921 8.393745837564 0 +46 2921 8.393745837564 0 +46 2945 8.443993151421 0 +46 2945 8.443993151421 0 +46 2953 8.444153151421 0 +46 2953 8.444153151421 0 +46 3031 8.624399337937 0 +46 3031 8.624399337937 0 +46 3050 8.624559337937 0 +46 3050 8.624559337937 0 +46 3068 8.631276619892 0 +46 3068 8.631276619892 0 +46 3083 8.631436619892 0 +46 3083 8.631436619892 0 +46 3139 8.693585837758 0 +46 3139 8.693585837758 0 +46 3146 8.693745837758 0 +46 3146 8.693745837758 0 +46 3170 8.743993151421 0 +46 3170 8.743993151421 0 +46 3178 8.744153151421 0 +46 3178 8.744153151421 0 +46 3256 8.924399336079 0 +46 3256 8.924399336079 0 +46 3275 8.924559336079 0 +46 3275 8.924559336079 0 +46 3293 8.931276616157 0 +46 3293 8.931276616157 0 +46 3308 8.931436616157 0 +46 3308 8.931436616157 0 +46 3364 8.993585837958 0 +46 3364 8.993585837958 0 +46 3371 8.993745837958 0 +46 3371 8.993745837958 0 +46 3395 9.043993151421 0 +46 3395 9.043993151421 0 +46 3403 9.044153151421 0 +46 3403 9.044153151421 0 +46 3481 9.2243993342 0 +46 3481 9.2243993342 0 +46 3500 9.2245593342 0 +46 3500 9.2245593342 0 +46 3518 9.231276612299 0 +46 3518 9.231276612299 0 +46 3533 9.231436612299 0 +46 3533 9.231436612299 0 +46 3589 9.293585838174 0 +46 3589 9.293585838174 0 +46 3596 9.293745838174 0 +46 3596 9.293745838174 0 +46 3620 9.343993151421 0 +46 3620 9.343993151421 0 +46 3628 9.344153151421 0 +46 3628 9.344153151421 0 +46 3706 9.524399332304 0 +46 3706 9.524399332304 0 +46 3725 9.524559332304 0 +46 3725 9.524559332304 0 +46 3743 9.531276608424 0 +46 3743 9.531276608424 0 +46 3758 9.531436608424 0 +46 3758 9.531436608424 0 +46 3814 9.593585838387 0 +46 3814 9.593585838387 0 +46 3821 9.593745838387 0 +46 3821 9.593745838387 0 +46 3845 9.643993151421 0 +46 3845 9.643993151421 0 +46 3853 9.644153151421 0 +46 3853 9.644153151421 0 +46 3931 9.824399330432 0 +46 3931 9.824399330432 0 +46 3950 9.824559330432 0 +46 3950 9.824559330432 0 +46 3968 9.831276604546 0 +46 3968 9.831276604546 0 +46 3983 9.831436604546 0 +46 3983 9.831436604546 0 +46 4039 9.89358583861 0 +46 4039 9.89358583861 0 +46 4046 9.89374583861 0 +46 4046 9.89374583861 0 +46 4070 9.943993151421 0 +46 4070 9.943993151421 0 +46 4078 9.944153151421 0 +46 4078 9.944153151421 0 +46 4156 10.124399328574 0 +46 4156 10.124399328574 0 +46 4175 10.124559328574 0 +46 4175 10.124559328574 0 +46 4193 10.13127660067 0 +46 4193 10.13127660067 0 +46 4208 10.13143660067 0 +46 4208 10.13143660067 0 +46 4264 10.193585838842 0 +46 4264 10.193585838842 0 +46 4271 10.193745838842 0 +46 4271 10.193745838842 0 +46 4295 10.243993151421 0 +46 4295 10.243993151421 0 +46 4303 10.244153151421 0 +46 4303 10.244153151421 0 +46 4381 10.424399326766 0 +46 4381 10.424399326766 0 +46 4400 10.424559326766 0 +46 4400 10.424559326766 0 +46 4418 10.43127659687 0 +46 4418 10.43127659687 0 +46 4433 10.43143659687 0 +46 4433 10.43143659687 0 +46 4489 10.493585839083 0 +46 4489 10.493585839083 0 +46 4496 10.493745839083 0 +46 4496 10.493745839083 0 +46 4520 10.543993151421 0 +46 4520 10.543993151421 0 +46 4528 10.544153151421 0 +46 4528 10.544153151421 0 +46 4577 10.714557554278 0 +46 4577 10.714557554278 0 +46 4596 10.714717554278 0 +46 4596 10.714717554278 0 +46 4614 10.724399325082 0 +46 4614 10.724399325082 0 +46 4633 10.724559325082 0 +46 4633 10.724559325082 0 +46 4651 10.731276593222 0 +46 4651 10.731276593222 0 +46 4666 10.731436593222 0 +46 4666 10.731436593222 0 +46 4722 10.793585839325 0 +46 4722 10.793585839325 0 +46 4729 10.793745839325 0 +46 4729 10.793745839325 0 +46 4753 10.843993151421 0 +46 4753 10.843993151421 0 +46 4761 10.844153151421 0 +46 4761 10.844153151421 0 +46 4810 11.014557537855 0 +46 4810 11.014557537855 0 +46 4829 11.014717537855 0 +46 4829 11.014717537855 0 +46 4847 11.0243993239 0 +46 4847 11.0243993239 0 +46 4866 11.0245593239 0 +46 4866 11.0245593239 0 +46 4884 11.031276590451 0 +46 4884 11.031276590451 0 +46 4899 11.031436590451 0 +46 4899 11.031436590451 0 +46 4955 11.093585839276 0 +46 4955 11.093585839276 0 +46 4962 11.093745839276 0 +46 4962 11.093745839276 0 +46 4986 11.143993151421 0 +46 4986 11.143993151421 0 +46 4994 11.144153151421 0 +46 4994 11.144153151421 0 +46 5043 11.314557521994 0 +46 5043 11.314557521994 0 +46 5062 11.314717521994 0 +46 5062 11.314717521994 0 +46 5080 11.324399323363 0 +46 5080 11.324399323363 0 +46 5099 11.324559323363 0 +46 5099 11.324559323363 0 +46 5117 11.331276588755 0 +46 5117 11.331276588755 0 +46 5132 11.331436588755 0 +46 5132 11.331436588755 0 +46 5188 11.39358583882 0 +46 5188 11.39358583882 0 +46 5195 11.39374583882 0 +46 5195 11.39374583882 0 +46 5219 11.443993151421 0 +46 5219 11.443993151421 0 +46 5227 11.444153151421 0 +46 5227 11.444153151421 0 +46 5276 11.614557506596 0 +46 5276 11.614557506596 0 +46 5295 11.614717506596 0 +46 5295 11.614717506596 0 +46 5313 11.624399323354 0 +46 5313 11.624399323354 0 +46 5332 11.624559323354 0 +46 5332 11.624559323354 0 +46 5350 11.631276587986 0 +46 5350 11.631276587986 0 +46 5365 11.631436587986 0 +46 5365 11.631436587986 0 +46 5425 11.69358583807 0 +46 5425 11.69358583807 0 +46 5432 11.69374583807 0 +46 5432 11.69374583807 0 +46 5460 11.743993151421 0 +46 5460 11.743993151421 0 +46 5468 11.744153151421 0 +46 5468 11.744153151421 0 +46 5517 11.914557491616 0 +46 5517 11.914557491616 0 +46 5536 11.914717491616 0 +46 5536 11.914717491616 0 +46 5554 11.924399323823 0 +46 5554 11.924399323823 0 +46 5573 11.924559323823 0 +46 5573 11.924559323823 0 +46 5591 11.93127658806 0 +46 5591 11.93127658806 0 +46 5606 11.93143658806 0 +46 5606 11.93143658806 0 +46 5666 11.993585837216 0 +46 5666 11.993585837216 0 +46 5673 11.993745837216 0 +46 5673 11.993745837216 0 +46 5701 12.043993151421 0 +46 5701 12.043993151421 0 +46 5709 12.044153151421 0 +46 5709 12.044153151421 0 +46 5758 12.21455747694 0 +46 5758 12.21455747694 0 +46 5777 12.21471747694 0 +46 5777 12.21471747694 0 +46 5795 12.224399324626 0 +46 5795 12.224399324626 0 +46 5814 12.224559324626 0 +46 5814 12.224559324626 0 +46 5832 12.231276588692 0 +46 5832 12.231276588692 0 +46 5847 12.231436588692 0 +46 5847 12.231436588692 0 +46 5907 12.293585836586 0 +46 5907 12.293585836586 0 +46 5914 12.293745836586 0 +46 5914 12.293745836586 0 +46 5942 12.343993151421 0 +46 5942 12.343993151421 0 +46 5950 12.344153151421 0 +46 5950 12.344153151421 0 +46 5999 12.514557462306 0 +46 5999 12.514557462306 0 +46 6018 12.514717462306 0 +46 6018 12.514717462306 0 +46 6036 12.524399325429 0 +46 6036 12.524399325429 0 +46 6055 12.524559325429 0 +46 6055 12.524559325429 0 +46 6073 12.531276589365 0 +46 6073 12.531276589365 0 +46 6088 12.531436589365 0 +46 6088 12.531436589365 0 +46 6148 12.593585836449 0 +46 6148 12.593585836449 0 +46 6155 12.593745836449 0 +46 6155 12.593745836449 0 +46 6183 12.643993151421 0 +46 6183 12.643993151421 0 +46 6191 12.644153151421 0 +46 6191 12.644153151421 0 +46 6240 12.814557447681 0 +46 6240 12.814557447681 0 +46 6259 12.814717447681 0 +46 6259 12.814717447681 0 +46 6277 12.824399326242 0 +46 6277 12.824399326242 0 +46 6296 12.824559326242 0 +46 6296 12.824559326242 0 +46 6314 12.831276590037 0 +46 6314 12.831276590037 0 +46 6329 12.831436590037 0 +46 6329 12.831436590037 0 +46 6389 12.893585836843 0 +46 6389 12.893585836843 0 +46 6396 12.893745836843 0 +46 6396 12.893745836843 0 +46 6424 12.943993151421 0 +46 6424 12.943993151421 0 +46 6432 12.944153151421 0 +46 6432 12.944153151421 0 +46 6481 13.114557433023 0 +46 6481 13.114557433023 0 +46 6500 13.114717433023 0 +46 6500 13.114717433023 0 +46 6518 13.12439932705 0 +46 6518 13.12439932705 0 +46 6537 13.12455932705 0 +46 6537 13.12455932705 0 +46 6555 13.131276590725 0 +46 6555 13.131276590725 0 +46 6570 13.131436590725 0 +46 6570 13.131436590725 0 +46 6630 13.193585837765 0 +46 6630 13.193585837765 0 +46 6637 13.193745837765 0 +46 6637 13.193745837765 0 +46 6665 13.243993151421 0 +46 6665 13.243993151421 0 +46 6673 13.244153151421 0 +46 6673 13.244153151421 0 +46 6722 13.414557418408 0 +46 6722 13.414557418408 0 +46 6741 13.414717418408 0 +46 6741 13.414717418408 0 +46 6759 13.424399327873 0 +46 6759 13.424399327873 0 +46 6778 13.424559327873 0 +46 6778 13.424559327873 0 +46 6796 13.431276591403 0 +46 6796 13.431276591403 0 +46 6811 13.431436591403 0 +46 6811 13.431436591403 0 +46 6871 13.493585839212 0 +46 6871 13.493585839212 0 +46 6878 13.493745839212 0 +46 6878 13.493745839212 0 +46 6906 13.543993151421 0 +46 6906 13.543993151421 0 +46 6914 13.544153151421 0 +46 6914 13.544153151421 0 +46 6963 13.71455740379 0 +46 6963 13.71455740379 0 +46 6982 13.71471740379 0 +46 6982 13.71471740379 0 +46 7000 13.724399328697 0 +46 7000 13.724399328697 0 +46 7019 13.724559328697 0 +46 7019 13.724559328697 0 +46 7037 13.731276592089 0 +46 7037 13.731276592089 0 +46 7052 13.731436592089 0 +46 7052 13.731436592089 0 +46 7112 13.793585841175 0 +46 7112 13.793585841175 0 +46 7119 13.793745841175 0 +46 7119 13.793745841175 0 +46 7147 13.843993151421 0 +46 7147 13.843993151421 0 +46 7155 13.844153151421 0 +46 7155 13.844153151421 0 +46 7203 14.014557389119 0 +46 7203 14.014557389119 0 +46 7218 14.014717389119 0 +46 7218 14.014717389119 0 +46 7241 14.024399329512 0 +46 7241 14.024399329512 0 +46 7260 14.024559329512 0 +46 7260 14.024559329512 0 +46 7278 14.031276592779 0 +46 7278 14.031276592779 0 +46 7293 14.031436592779 0 +46 7293 14.031436592779 0 +46 7353 14.093585843644 0 +46 7353 14.093585843644 0 +46 7360 14.093745843644 0 +46 7360 14.093745843644 0 +46 7388 14.143993151421 0 +46 7388 14.143993151421 0 +46 7396 14.144153151421 0 +46 7396 14.144153151421 0 +46 7444 14.314557374493 0 +46 7444 14.314557374493 0 +46 7459 14.314717374493 0 +46 7459 14.314717374493 0 +46 7482 14.324399330335 0 +46 7482 14.324399330335 0 +46 7501 14.324559330335 0 +46 7501 14.324559330335 0 +46 7519 14.33127659346 0 +46 7519 14.33127659346 0 +46 7534 14.33143659346 0 +46 7534 14.33143659346 0 +46 7594 14.393585846603 0 +46 7594 14.393585846603 0 +46 7601 14.393745846603 0 +46 7601 14.393745846603 0 +46 7629 14.443993151421 0 +46 7629 14.443993151421 0 +46 7637 14.444153151421 0 +46 7637 14.444153151421 0 +46 7685 14.614557359901 0 +46 7685 14.614557359901 0 +46 7700 14.614717359901 0 +46 7700 14.614717359901 0 +46 7723 14.624399331156 0 +46 7723 14.624399331156 0 +46 7742 14.624559331156 0 +46 7742 14.624559331156 0 +46 7760 14.63127659416 0 +46 7760 14.63127659416 0 +46 7775 14.63143659416 0 +46 7775 14.63143659416 0 +46 7835 14.693585849737 0 +46 7835 14.693585849737 0 +46 7842 14.693745849737 0 +46 7842 14.693745849737 0 +46 7870 14.743993151421 0 +46 7870 14.743993151421 0 +46 7878 14.744153151421 0 +46 7878 14.744153151421 0 +46 7926 14.914557345304 0 +46 7926 14.914557345304 0 +46 7941 14.914717345304 0 +46 7941 14.914717345304 0 +46 7964 14.924399331969 0 +46 7964 14.924399331969 0 +46 7983 14.924559331969 0 +46 7983 14.924559331969 0 +46 8001 14.931276594853 0 +46 8001 14.931276594853 0 +46 8016 14.931436594853 0 +46 8016 14.931436594853 0 +46 8076 14.993585846435 0 +46 8076 14.993585846435 0 +46 8083 14.993745846435 0 +46 8083 14.993745846435 0 +46 8111 15.043993151421 0 +46 8111 15.043993151421 0 +46 8119 15.044153151421 0 +46 8119 15.044153151421 0 +46 8167 15.214557330718 0 +46 8167 15.214557330718 0 +46 8182 15.214717330718 0 +46 8182 15.214717330718 0 +46 8205 15.224399332795 0 +46 8205 15.224399332795 0 +46 8224 15.224559332795 0 +46 8224 15.224559332795 0 +46 8242 15.231276595569 0 +46 8242 15.231276595569 0 +46 8257 15.231436595569 0 +46 8257 15.231436595569 0 +46 8317 15.293585833695 0 +46 8317 15.293585833695 0 +46 8324 15.293745833695 0 +46 8324 15.293745833695 0 +46 8352 15.343993151421 0 +46 8352 15.343993151421 0 +46 8360 15.344153151421 0 +46 8360 15.344153151421 0 +46 8408 15.514557316098 0 +46 8408 15.514557316098 0 +46 8423 15.514717316098 0 +46 8423 15.514717316098 0 +46 8446 15.524399333627 0 +46 8446 15.524399333627 0 +46 8465 15.524559333627 0 +46 8465 15.524559333627 0 +46 8483 15.531276596269 0 +46 8483 15.531276596269 0 +46 8498 15.531436596269 0 +46 8498 15.531436596269 0 +46 8558 15.593585819925 0 +46 8558 15.593585819925 0 +46 8565 15.593745819925 0 +46 8565 15.593745819925 0 +46 8593 15.643993151421 0 +46 8593 15.643993151421 0 +46 8601 15.644153151421 0 +46 8601 15.644153151421 0 +46 8649 15.814557301533 0 +46 8649 15.814557301533 0 +46 8664 15.814717301533 0 +46 8664 15.814717301533 0 +46 8687 15.824399334455 0 +46 8687 15.824399334455 0 +46 8706 15.824559334455 0 +46 8706 15.824559334455 0 +46 8724 15.831276596954 0 +46 8724 15.831276596954 0 +46 8739 15.831436596954 0 +46 8739 15.831436596954 0 +46 8799 15.893585806179 0 +46 8799 15.893585806179 0 +46 8806 15.893745806179 0 +46 8806 15.893745806179 0 +46 8834 15.943993151421 0 +46 8834 15.943993151421 0 +46 8842 15.944153151421 0 +46 8842 15.944153151421 0 +46 8890 16.114557286953 0 +46 8890 16.114557286953 0 +46 8905 16.114717286953 0 +46 8905 16.114717286953 0 +46 8932 16.124399335277 0 +46 8932 16.124399335277 0 +46 8951 16.124559335277 0 +46 8951 16.124559335277 0 +46 8969 16.131276597671 0 +46 8969 16.131276597671 0 +46 8984 16.131436597671 0 +46 8984 16.131436597671 0 +46 9044 16.193585792487 0 +46 9044 16.193585792487 0 +46 9051 16.193745792487 0 +46 9051 16.193745792487 0 +46 9083 16.243993151421 0 +46 9083 16.243993151421 0 +46 9091 16.244153151421 0 +46 9091 16.244153151421 0 +46 9139 16.414557272365 0 +46 9139 16.414557272365 0 +46 9154 16.414717272365 0 +46 9154 16.414717272365 0 +46 9181 16.424399336094 0 +46 9181 16.424399336094 0 +46 9200 16.424559336094 0 +46 9200 16.424559336094 0 +46 9218 16.431276598394 0 +46 9218 16.431276598394 0 +46 9233 16.431436598394 0 +46 9233 16.431436598394 0 +46 9293 16.493585780506 0 +46 9293 16.493585780506 0 +46 9300 16.493745780506 0 +46 9300 16.493745780506 0 +46 9332 16.543993151421 0 +46 9332 16.543993151421 0 +46 9340 16.544153151421 0 +46 9340 16.544153151421 0 +46 9388 16.714557257775 0 +46 9388 16.714557257775 0 +46 9403 16.714717257775 0 +46 9403 16.714717257775 0 +46 9430 16.724399336915 0 +46 9430 16.724399336915 0 +46 9449 16.724559336915 0 +46 9449 16.724559336915 0 +46 9467 16.731276599099 0 +46 9467 16.731276599099 0 +46 9482 16.731436599099 0 +46 9482 16.731436599099 0 +46 9542 16.793585771057 0 +46 9542 16.793585771057 0 +46 9549 16.793745771057 0 +46 9549 16.793745771057 0 +46 9581 16.843993151421 0 +46 9581 16.843993151421 0 +46 9589 16.844153151421 0 +46 9589 16.844153151421 0 +46 9637 17.014557243226 0 +46 9637 17.014557243226 0 +46 9652 17.014717243226 0 +46 9652 17.014717243226 0 +46 9679 17.024399337752 0 +46 9679 17.024399337752 0 +46 9698 17.024559337752 0 +46 9698 17.024559337752 0 +46 9716 17.031276599817 0 +46 9716 17.031276599817 0 +46 9731 17.031436599817 0 +46 9731 17.031436599817 0 +46 9791 17.093585764134 0 +46 9791 17.093585764134 0 +46 9798 17.093745764134 0 +46 9798 17.093745764134 0 +46 9830 17.143993151421 0 +46 9830 17.143993151421 0 +46 9838 17.144153151421 0 +46 9838 17.144153151421 0 +46 9886 17.314557228649 0 +46 9886 17.314557228649 0 +46 9901 17.314717228649 0 +46 9901 17.314717228649 0 +46 9928 17.324399338595 0 +46 9928 17.324399338595 0 +46 9947 17.324559338595 0 +46 9947 17.324559338595 0 +46 9965 17.331276600539 0 +46 9965 17.331276600539 0 +46 9980 17.331436600539 0 +46 9980 17.331436600539 0 +46 10040 17.393585759695 0 +46 10040 17.393585759695 0 +46 10047 17.393745759695 0 +46 10047 17.393745759695 0 +46 10079 17.443993151421 0 +46 10079 17.443993151421 0 +46 10087 17.444153151421 0 +46 10087 17.444153151421 0 +46 10135 17.614557214117 0 +46 10135 17.614557214117 0 +46 10150 17.614717214117 0 +46 10150 17.614717214117 0 +46 10177 17.624399339444 0 +46 10177 17.624399339444 0 +46 10196 17.624559339444 0 +46 10196 17.624559339444 0 +46 10214 17.631276601271 0 +46 10214 17.631276601271 0 +46 10229 17.631436601271 0 +46 10229 17.631436601271 0 +46 10289 17.69358575768 0 +46 10289 17.69358575768 0 +46 10296 17.69374575768 0 +46 10296 17.69374575768 0 +46 10328 17.743993151421 0 +46 10328 17.743993151421 0 +46 10336 17.744153151421 0 +46 10336 17.744153151421 0 +46 10384 17.914557199593 0 +46 10384 17.914557199593 0 +46 10399 17.914717199593 0 +46 10399 17.914717199593 0 +46 10422 17.92439934028 0 +46 10422 17.92439934028 0 +46 10441 17.92455934028 0 +46 10441 17.92455934028 0 +46 10459 17.931276601981 0 +46 10459 17.931276601981 0 +46 10474 17.931436601981 0 +46 10474 17.931436601981 0 +46 10530 17.993585756396 0 +46 10530 17.993585756396 0 +46 10537 17.993745756396 0 +46 10537 17.993745756396 0 +46 10569 18.043993151421 0 +46 10569 18.043993151421 0 +46 10577 18.044153151421 0 +46 10577 18.044153151421 0 +46 10624 18.214557185085 0 +46 10624 18.214557185085 0 +46 10635 18.214717185085 0 +46 10635 18.214717185085 0 +46 10663 18.22439934113 0 +46 10663 18.22439934113 0 +46 10682 18.22455934113 0 +46 10682 18.22455934113 0 +46 10696 18.231276602699 0 +46 10696 18.231276602699 0 +46 10711 18.231436602699 0 +46 10711 18.231436602699 0 +46 10767 18.293585755106 0 +46 10767 18.293585755106 0 +46 10774 18.293745755106 0 +46 10774 18.293745755106 0 +46 10806 18.343993151421 0 +46 10806 18.343993151421 0 +46 10814 18.344153151421 0 +46 10814 18.344153151421 0 +46 10857 18.514557170436 0 +46 10857 18.514557170436 0 +46 10868 18.514717170436 0 +46 10868 18.514717170436 0 +46 10896 18.524399341978 0 +46 10896 18.524399341978 0 +46 10915 18.524559341978 0 +46 10915 18.524559341978 0 +46 10929 18.531276603438 0 +46 10929 18.531276603438 0 +46 10944 18.531436603438 0 +46 10944 18.531436603438 0 +46 11000 18.593585753817 0 +46 11000 18.593585753817 0 +46 11007 18.593745753817 0 +46 11007 18.593745753817 0 +46 11039 18.643993151421 0 +46 11039 18.643993151421 0 +46 11047 18.644153151421 0 +46 11047 18.644153151421 0 +46 11090 18.814557161182 0 +46 11090 18.814557161182 0 +46 11101 18.814717161182 0 +46 11101 18.814717161182 0 +46 11162 18.831276604167 0 +46 11162 18.831276604167 0 +46 11177 18.831436604167 0 +46 11177 18.831436604167 0 +46 11233 18.893585752536 0 +46 11233 18.893585752536 0 +46 11240 18.893745752536 0 +46 11240 18.893745752536 0 +46 11272 18.943993151421 0 +46 11272 18.943993151421 0 +46 11280 18.944153151421 0 +46 11280 18.944153151421 0 +46 11323 19.114557157992 0 +46 11323 19.114557157992 0 +46 11334 19.114717157992 0 +46 11334 19.114717157992 0 +46 11395 19.131276604913 0 +46 11395 19.131276604913 0 +46 11410 19.131436604913 0 +46 11410 19.131436604913 0 +46 11466 19.193585751249 0 +46 11466 19.193585751249 0 +46 11473 19.193745751249 0 +46 11473 19.193745751249 0 +46 11505 19.243993151421 0 +46 11505 19.243993151421 0 +46 11513 19.244153151421 0 +46 11513 19.244153151421 0 +46 11556 19.414557155892 0 +46 11556 19.414557155892 0 +46 11567 19.414717155892 0 +46 11567 19.414717155892 0 +46 11628 19.431276605661 0 +46 11628 19.431276605661 0 +46 11643 19.431436605661 0 +46 11643 19.431436605661 0 +46 11699 19.493585749962 0 +46 11699 19.493585749962 0 +46 11706 19.493745749962 0 +46 11706 19.493745749962 0 +46 11738 19.543993151421 0 +46 11738 19.543993151421 0 +46 11746 19.544153151421 0 +46 11746 19.544153151421 0 +46 11789 19.714557154461 0 +46 11789 19.714557154461 0 +46 11800 19.714717154461 0 +46 11800 19.714717154461 0 +46 11861 19.731276606768 0 +46 11861 19.731276606768 0 +46 11876 19.731436606768 0 +46 11876 19.731436606768 0 +46 11932 19.793585748041 0 +46 11932 19.793585748041 0 +46 11939 19.793745748041 0 +46 11939 19.793745748041 0 +46 11971 19.843993151421 0 +46 11971 19.843993151421 0 +46 11979 19.844153151421 0 +46 11979 19.844153151421 0 +46 12022 20.014557153776 0 +46 12022 20.014557153776 0 +46 12033 20.014717153776 0 +46 12033 20.014717153776 0 +46 12098 20.031276608452 0 +46 12098 20.031276608452 0 +46 12113 20.031436608452 0 +46 12113 20.031436608452 0 +46 12173 20.093585745227 0 +46 12173 20.093585745227 0 +46 12180 20.093745745227 0 +46 12180 20.093745745227 0 +46 12212 20.143993151421 0 +46 12212 20.143993151421 0 +46 12220 20.144153151421 0 +46 12220 20.144153151421 0 +46 12263 20.31455715393 0 +46 12263 20.31455715393 0 +46 12274 20.31471715393 0 +46 12274 20.31471715393 0 +46 12339 20.331276610588 0 +46 12339 20.331276610588 0 +46 12354 20.331436610588 0 +46 12354 20.331436610588 0 +46 12414 20.393585741612 0 +46 12414 20.393585741612 0 +46 12421 20.393745741612 0 +46 12421 20.393745741612 0 +46 12453 20.443993151421 0 +46 12453 20.443993151421 0 +46 12461 20.444153151421 0 +46 12461 20.444153151421 0 +46 12504 20.614557155021 0 +46 12504 20.614557155021 0 +46 12515 20.614717155021 0 +46 12515 20.614717155021 0 +46 12580 20.631276613242 0 +46 12580 20.631276613242 0 +46 12595 20.631436613242 0 +46 12595 20.631436613242 0 +46 12655 20.693585737229 0 +46 12655 20.693585737229 0 +46 12662 20.693745737229 0 +46 12662 20.693745737229 0 +46 12694 20.743993151421 0 +46 12694 20.743993151421 0 +46 12702 20.744153151421 0 +46 12702 20.744153151421 0 +46 12745 20.914557157133 0 +46 12745 20.914557157133 0 +46 12756 20.914717157133 0 +46 12756 20.914717157133 0 +46 12821 20.931276616399 0 +46 12821 20.931276616399 0 +46 12836 20.931436616399 0 +46 12836 20.931436616399 0 +46 12896 20.993585732172 0 +46 12896 20.993585732172 0 +46 12903 20.993745732172 0 +46 12903 20.993745732172 0 +46 12935 21.043993151421 0 +46 12935 21.043993151421 0 +46 12943 21.044153151421 0 +46 12943 21.044153151421 0 +46 12986 21.214557160323 0 +46 12986 21.214557160323 0 +46 12997 21.214717160323 0 +46 12997 21.214717160323 0 +46 13062 21.231276620049 0 +46 13062 21.231276620049 0 +46 13077 21.231436620049 0 +46 13077 21.231436620049 0 +46 13137 21.293585726489 0 +46 13137 21.293585726489 0 +46 13144 21.293745726489 0 +46 13144 21.293745726489 0 +46 13176 21.343993151421 0 +46 13176 21.343993151421 0 +46 13184 21.344153151421 0 +46 13184 21.344153151421 0 +46 13227 21.514557164674 0 +46 13227 21.514557164674 0 +46 13238 21.514717164674 0 +46 13238 21.514717164674 0 +46 13303 21.531276624253 0 +46 13303 21.531276624253 0 +46 13318 21.531436624253 0 +46 13318 21.531436624253 0 +46 13378 21.593585720024 0 +46 13378 21.593585720024 0 +46 13385 21.593745720024 0 +46 13385 21.593745720024 0 +46 13417 21.643993151421 0 +46 13417 21.643993151421 0 +46 13425 21.644153151421 0 +46 13425 21.644153151421 0 +46 13468 21.814557170229 0 +46 13468 21.814557170229 0 +46 13479 21.814717170229 0 +46 13479 21.814717170229 0 +46 13544 21.831276629063 0 +46 13544 21.831276629063 0 +46 13559 21.831436629063 0 +46 13559 21.831436629063 0 +46 13619 21.893585712841 0 +46 13619 21.893585712841 0 +46 13626 21.893745712841 0 +46 13626 21.893745712841 0 +46 13658 21.943993151421 0 +46 13658 21.943993151421 0 +46 13666 21.944153151421 0 +46 13666 21.944153151421 0 +46 13709 22.114557176994 0 +46 13709 22.114557176994 0 +46 13720 22.114717176994 0 +46 13720 22.114717176994 0 +46 13785 22.131276634514 0 +46 13785 22.131276634514 0 +46 13800 22.131436634514 0 +46 13800 22.131436634514 0 +46 13860 22.193585704988 0 +46 13860 22.193585704988 0 +46 13867 22.193745704988 0 +46 13867 22.193745704988 0 +46 13899 22.243993151421 0 +46 13899 22.243993151421 0 +46 13907 22.244153151421 0 +46 13907 22.244153151421 0 +46 13950 22.414557185072 0 +46 13950 22.414557185072 0 +46 13961 22.414717185072 0 +46 13961 22.414717185072 0 +46 14026 22.431276640553 0 +46 14026 22.431276640553 0 +46 14041 22.431436640553 0 +46 14041 22.431436640553 0 +46 14101 22.49358569653 0 +46 14101 22.49358569653 0 +46 14108 22.49374569653 0 +46 14108 22.49374569653 0 +46 14140 22.543993151421 0 +46 14140 22.543993151421 0 +46 14148 22.544153151421 0 +46 14148 22.544153151421 0 +46 14191 22.714557194287 0 +46 14191 22.714557194287 0 +46 14202 22.714717194287 0 +46 14202 22.714717194287 0 +46 14267 22.73127664727 0 +46 14267 22.73127664727 0 +46 14282 22.73143664727 0 +46 14282 22.73143664727 0 +46 14342 22.793585687538 0 +46 14342 22.793585687538 0 +46 14349 22.793745687538 0 +46 14349 22.793745687538 0 +46 14381 22.843993151421 0 +46 14381 22.843993151421 0 +46 14389 22.844153151421 0 +46 14389 22.844153151421 0 +46 14432 23.014557204223 0 +46 14432 23.014557204223 0 +46 14443 23.014717204223 0 +46 14443 23.014717204223 0 +46 14508 23.031276654734 0 +46 14508 23.031276654734 0 +46 14523 23.031436654734 0 +46 14523 23.031436654734 0 +46 14583 23.093585678184 0 +46 14583 23.093585678184 0 +46 14590 23.093745678184 0 +46 14590 23.093745678184 0 +46 14622 23.143993151421 0 +46 14622 23.143993151421 0 +46 14630 23.144153151421 0 +46 14630 23.144153151421 0 +46 14673 23.314557215428 0 +46 14673 23.314557215428 0 +46 14684 23.314717215428 0 +46 14684 23.314717215428 0 +46 14749 23.331276662913 0 +46 14749 23.331276662913 0 +46 14764 23.331436662913 0 +46 14764 23.331436662913 0 +46 14824 23.393585668176 0 +46 14824 23.393585668176 0 +46 14831 23.393745668176 0 +46 14831 23.393745668176 0 +46 14863 23.443993151421 0 +46 14863 23.443993151421 0 +46 14871 23.444153151421 0 +46 14871 23.444153151421 0 +46 14914 23.614557224167 0 +46 14914 23.614557224167 0 +46 14925 23.614717224167 0 +46 14925 23.614717224167 0 +46 14990 23.631276668226 0 +46 14990 23.631276668226 0 +46 15005 23.631436668226 0 +46 15005 23.631436668226 0 +46 15065 23.693585661458 0 +46 15065 23.693585661458 0 +46 15072 23.693745661458 0 +46 15072 23.693745661458 0 +46 15104 23.743993151421 0 +46 15104 23.743993151421 0 +46 15112 23.744153151421 0 +46 15112 23.744153151421 0 +46 15155 23.914557225534 0 +46 15155 23.914557225534 0 +46 15166 23.914717225534 0 +46 15166 23.914717225534 0 +46 15231 23.931276671861 0 +46 15231 23.931276671861 0 +46 15246 23.931436671861 0 +46 15246 23.931436671861 0 +46 15306 23.993585658609 0 +46 15306 23.993585658609 0 +46 15313 23.993745658609 0 +46 15313 23.993745658609 0 +46 15345 24.043993151421 0 +46 15345 24.043993151421 0 +46 15353 24.044153151421 0 +46 15353 24.044153151421 0 +46 15396 24.214557228476 0 +46 15396 24.214557228476 0 +46 15407 24.214717228476 0 +46 15407 24.214717228476 0 +46 15472 24.231276682111 0 +46 15472 24.231276682111 0 +46 15487 24.231436682111 0 +46 15487 24.231436682111 0 +46 15547 24.293585650885 0 +46 15547 24.293585650885 0 +46 15554 24.293745650885 0 +46 15554 24.293745650885 0 +46 15586 24.343993151421 0 +46 15586 24.343993151421 0 +46 15594 24.344153151421 0 +46 15594 24.344153151421 0 +46 15637 24.514557231601 0 +46 15637 24.514557231601 0 +46 15648 24.514717231601 0 +46 15648 24.514717231601 0 +46 15713 24.531276693849 0 +46 15713 24.531276693849 0 +46 15728 24.531436693849 0 +46 15728 24.531436693849 0 +46 15788 24.593585643051 0 +46 15788 24.593585643051 0 +46 15795 24.593745643051 0 +46 15795 24.593745643051 0 +46 15827 24.643993151421 0 +46 15827 24.643993151421 0 +46 15835 24.644153151421 0 +46 15835 24.644153151421 0 +46 15878 24.814557234404 0 +46 15878 24.814557234404 0 +46 15889 24.814717234404 0 +46 15889 24.814717234404 0 +46 15954 24.831276706445 0 +46 15954 24.831276706445 0 +46 15969 24.831436706445 0 +46 15969 24.831436706445 0 +46 16029 24.893585636131 0 +46 16029 24.893585636131 0 +46 16036 24.893745636131 0 +46 16036 24.893745636131 0 +46 16068 24.943993151421 0 +46 16068 24.943993151421 0 +46 16076 24.944153151421 0 +46 16076 24.944153151421 0 +46 16119 25.114557236911 0 +46 16119 25.114557236911 0 +46 16130 25.114717236911 0 +46 16130 25.114717236911 0 +46 16195 25.131276719839 0 +46 16195 25.131276719839 0 +46 16210 25.131436719839 0 +46 16210 25.131436719839 0 +46 16270 25.193585630457 0 +46 16270 25.193585630457 0 +46 16277 25.193745630457 0 +46 16277 25.193745630457 0 +46 16309 25.243993151421 0 +46 16309 25.243993151421 0 +46 16317 25.244153151421 0 +46 16317 25.244153151421 0 +46 16360 25.414557239038 0 +46 16360 25.414557239038 0 +46 16371 25.414717239038 0 +46 16371 25.414717239038 0 +46 16436 25.431276734024 0 +46 16436 25.431276734024 0 +46 16451 25.431436734024 0 +46 16451 25.431436734024 0 +46 16511 25.493585626591 0 +46 16511 25.493585626591 0 +46 16518 25.493745626591 0 +46 16518 25.493745626591 0 +46 16550 25.543993151421 0 +46 16550 25.543993151421 0 +46 16558 25.544153151421 0 +46 16558 25.544153151421 0 +46 16600 25.714557240854 0 +46 16600 25.714557240854 0 +46 16607 25.714717240854 0 +46 16607 25.714717240854 0 +46 16677 25.731276749009 0 +46 16677 25.731276749009 0 +46 16692 25.731436749009 0 +46 16692 25.731436749009 0 +46 16752 25.793585625056 0 +46 16752 25.793585625056 0 +46 16759 25.793745625056 0 +46 16759 25.793745625056 0 +46 16791 25.843993151421 0 +46 16791 25.843993151421 0 +46 16799 25.844153151421 0 +46 16799 25.844153151421 0 +46 16841 26.014557242289 0 +46 16841 26.014557242289 0 +46 16848 26.014717242289 0 +46 16848 26.014717242289 0 +46 16918 26.031276763556 0 +46 16918 26.031276763556 0 +46 16933 26.031436763556 0 +46 16933 26.031436763556 0 +46 16993 26.093585626275 0 +46 16993 26.093585626275 0 +46 17000 26.093745626275 0 +46 17000 26.093745626275 0 +46 17032 26.143993151421 0 +46 17032 26.143993151421 0 +46 17040 26.144153151421 0 +46 17040 26.144153151421 0 +46 17082 26.314557243311 0 +46 17082 26.314557243311 0 +46 17089 26.314717243311 0 +46 17089 26.314717243311 0 +46 17159 26.331276777067 0 +46 17159 26.331276777067 0 +46 17174 26.331436777067 0 +46 17174 26.331436777067 0 +46 17234 26.393585630812 0 +46 17234 26.393585630812 0 +46 17241 26.393745630812 0 +46 17241 26.393745630812 0 +46 17273 26.443993151421 0 +46 17273 26.443993151421 0 +46 17281 26.444153151421 0 +46 17281 26.444153151421 0 +46 17323 26.614557243876 0 +46 17323 26.614557243876 0 +46 17330 26.614717243876 0 +46 17330 26.614717243876 0 +46 17400 26.631276789593 0 +46 17400 26.631276789593 0 +46 17415 26.631436789593 0 +46 17415 26.631436789593 0 +46 17475 26.693585638677 0 +46 17475 26.693585638677 0 +46 17482 26.693745638677 0 +46 17482 26.693745638677 0 +46 17514 26.743993151421 0 +46 17514 26.743993151421 0 +46 17522 26.744153151421 0 +46 17522 26.744153151421 0 +46 17564 26.914557244114 0 +46 17564 26.914557244114 0 +46 17571 26.914717244114 0 +46 17571 26.914717244114 0 +46 17641 26.931276801135 0 +46 17641 26.931276801135 0 +46 17656 26.931436801135 0 +46 17656 26.931436801135 0 +46 17716 26.993585649352 0 +46 17716 26.993585649352 0 +46 17723 26.993745649352 0 +46 17723 26.993745649352 0 +46 17755 27.043993151421 0 +46 17755 27.043993151421 0 +46 17763 27.044153151421 0 +46 17763 27.044153151421 0 +46 17805 27.214557243957 0 +46 17805 27.214557243957 0 +46 17812 27.214717243957 0 +46 17812 27.214717243957 0 +46 17875 27.231276811734 0 +46 17875 27.231276811734 0 +46 17894 27.231436811734 0 +46 17894 27.231436811734 0 +46 17949 27.293585662469 0 +46 17949 27.293585662469 0 +46 17956 27.293745662469 0 +46 17956 27.293745662469 0 +46 17988 27.343993151421 0 +46 17988 27.343993151421 0 +46 17996 27.344153151421 0 +46 17996 27.344153151421 0 +46 18038 27.514557243783 0 +46 18038 27.514557243783 0 +46 18045 27.514717243783 0 +46 18045 27.514717243783 0 +46 18108 27.53127682198 0 +46 18108 27.53127682198 0 +46 18127 27.53143682198 0 +46 18127 27.53143682198 0 +46 18182 27.593585677115 0 +46 18182 27.593585677115 0 +46 18189 27.593745677115 0 +46 18189 27.593745677115 0 +46 18221 27.643993151421 0 +46 18221 27.643993151421 0 +46 18229 27.644153151421 0 +46 18229 27.644153151421 0 +46 18271 27.814557243571 0 +46 18271 27.814557243571 0 +46 18278 27.814717243571 0 +46 18278 27.814717243571 0 +46 18341 27.831276831392 0 +46 18341 27.831276831392 0 +46 18360 27.831436831392 0 +46 18360 27.831436831392 0 +46 18415 27.893585692883 0 +46 18415 27.893585692883 0 +46 18422 27.893745692883 0 +46 18422 27.893745692883 0 +46 18454 27.943993151421 0 +46 18454 27.943993151421 0 +46 18462 27.944153151421 0 +46 18462 27.944153151421 0 +46 18504 28.114557243343 0 +46 18504 28.114557243343 0 +46 18511 28.114717243343 0 +46 18511 28.114717243343 0 +46 18574 28.13127683163 0 +46 18574 28.13127683163 0 +46 18593 28.13143683163 0 +46 18593 28.13143683163 0 +46 18648 28.193585709573 0 +46 18648 28.193585709573 0 +46 18655 28.193745709573 0 +46 18655 28.193745709573 0 +46 18687 28.243993151421 0 +46 18687 28.243993151421 0 +46 18695 28.244153151421 0 +46 18695 28.244153151421 0 +46 18737 28.414557243176 0 +46 18737 28.414557243176 0 +46 18744 28.414717243176 0 +46 18744 28.414717243176 0 +46 18807 28.4312768277 0 +46 18807 28.4312768277 0 +46 18826 28.4314368277 0 +46 18826 28.4314368277 0 +46 18881 28.493585726899 0 +46 18881 28.493585726899 0 +46 18888 28.493745726899 0 +46 18888 28.493745726899 0 +46 18920 28.543993151421 0 +46 18920 28.543993151421 0 +46 18928 28.544153151421 0 +46 18928 28.544153151421 0 +46 18970 28.71455724295 0 +46 18970 28.71455724295 0 +46 18977 28.71471724295 0 +46 18977 28.71471724295 0 +46 19040 28.731276823589 0 +46 19040 28.731276823589 0 +46 19059 28.731436823589 0 +46 19059 28.731436823589 0 +46 19114 28.793585744792 0 +46 19114 28.793585744792 0 +46 19121 28.793745744792 0 +46 19121 28.793745744792 0 +46 19153 28.843993151421 0 +46 19153 28.843993151421 0 +46 19161 28.844153151421 0 +46 19161 28.844153151421 0 +46 19203 29.014557242752 0 +46 19203 29.014557242752 0 +46 19210 29.014717242752 0 +46 19210 29.014717242752 0 +46 19273 29.031276819366 0 +46 19273 29.031276819366 0 +46 19292 29.031436819366 0 +46 19292 29.031436819366 0 +46 19339 29.093585763099 0 +46 19339 29.093585763099 0 +46 19346 29.093745763099 0 +46 19346 29.093745763099 0 +46 19378 29.143993151421 0 +46 19378 29.143993151421 0 +46 19386 29.144153151421 0 +46 19386 29.144153151421 0 +46 19428 29.31455724256 0 +46 19428 29.31455724256 0 +46 19435 29.31471724256 0 +46 19435 29.31471724256 0 +46 19498 29.331276815156 0 +46 19498 29.331276815156 0 +46 19517 29.331436815156 0 +46 19517 29.331436815156 0 +46 19564 29.393585781743 0 +46 19564 29.393585781743 0 +46 19571 29.393745781743 0 +46 19571 29.393745781743 0 +46 19603 29.443993151421 0 +46 19603 29.443993151421 0 +46 19611 29.444153151421 0 +46 19611 29.444153151421 0 +46 19653 29.614557242339 0 +46 19653 29.614557242339 0 +46 19660 29.614717242339 0 +46 19660 29.614717242339 0 +46 19723 29.631276811006 0 +46 19723 29.631276811006 0 +46 19742 29.631436811006 0 +46 19742 29.631436811006 0 +46 19789 29.693585800658 0 +46 19789 29.693585800658 0 +46 19796 29.693745800658 0 +46 19796 29.693745800658 0 +46 19828 29.743993151421 0 +46 19828 29.743993151421 0 +46 19836 29.744153151421 0 +46 19836 29.744153151421 0 +46 19878 29.914557242168 0 +46 19878 29.914557242168 0 +46 19885 29.914717242168 0 +46 19885 29.914717242168 0 +46 19948 29.931276806789 0 +46 19948 29.931276806789 0 +46 19967 29.931436806789 0 +46 19967 29.931436806789 0 +46 20014 29.99358581976 0 +46 20014 29.99358581976 0 +46 20021 29.99374581976 0 +46 20021 29.99374581976 0 +46 20053 30.043993151421 0 +46 20053 30.043993151421 0 +46 20061 30.044153151421 0 +46 20061 30.044153151421 0 +46 20103 30.214557241952 0 +46 20103 30.214557241952 0 +46 20110 30.214717241952 0 +46 20110 30.214717241952 0 +46 20173 30.231276802516 0 +46 20173 30.231276802516 0 +46 20192 30.231436802516 0 +46 20192 30.231436802516 0 +46 20239 30.29358583909 0 +46 20239 30.29358583909 0 +46 20246 30.29374583909 0 +46 20246 30.29374583909 0 +46 20278 30.343993151421 0 +46 20278 30.343993151421 0 +46 20286 30.344153151421 0 +46 20286 30.344153151421 0 +46 20328 30.514557241756 0 +46 20328 30.514557241756 0 +46 20335 30.514717241756 0 +46 20335 30.514717241756 0 +46 20398 30.531276798256 0 +46 20398 30.531276798256 0 +46 20417 30.531436798256 0 +46 20417 30.531436798256 0 +46 20464 30.593585858538 0 +46 20464 30.593585858538 0 +46 20471 30.593745858538 0 +46 20471 30.593745858538 0 +46 20503 30.643993151421 0 +46 20503 30.643993151421 0 +46 20511 30.644153151421 0 +46 20511 30.644153151421 0 +46 20553 30.814557241503 0 +46 20553 30.814557241503 0 +46 20560 30.814717241503 0 +46 20560 30.814717241503 0 +46 20622 30.831276794122 0 +46 20622 30.831276794122 0 +46 20637 30.831436794122 0 +46 20637 30.831436794122 0 +46 20689 30.893585878179 0 +46 20689 30.893585878179 0 +46 20696 30.893745878179 0 +46 20696 30.893745878179 0 +46 20728 30.943993151421 0 +46 20728 30.943993151421 0 +46 20736 30.944153151421 0 +46 20736 30.944153151421 0 +46 20778 31.114557241331 0 +46 20778 31.114557241331 0 +46 20785 31.114717241331 0 +46 20785 31.114717241331 0 +46 20851 31.131276790287 0 +46 20851 31.131276790287 0 +46 20866 31.131436790287 0 +46 20866 31.131436790287 0 +46 20919 31.193585897854 0 +46 20919 31.193585897854 0 +46 20930 31.193745897854 0 +46 20930 31.193745897854 0 +46 20961 31.243993151421 0 +46 20961 31.243993151421 0 +46 20969 31.244153151421 0 +46 20969 31.244153151421 0 +46 21011 31.414557241138 0 +46 21011 31.414557241138 0 +46 21018 31.414717241138 0 +46 21018 31.414717241138 0 +46 21084 31.431276787097 0 +46 21084 31.431276787097 0 +46 21099 31.431436787097 0 +46 21099 31.431436787097 0 +46 21152 31.49358591764 0 +46 21152 31.49358591764 0 +46 21163 31.49374591764 0 +46 21163 31.49374591764 0 +46 21194 31.543993151421 0 +46 21194 31.543993151421 0 +46 21202 31.544153151421 0 +46 21202 31.544153151421 0 +46 21244 31.714557240949 0 +46 21244 31.714557240949 0 +46 21251 31.714717240949 0 +46 21251 31.714717240949 0 +46 21317 31.731276784583 0 +46 21317 31.731276784583 0 +46 21332 31.731436784583 0 +46 21332 31.731436784583 0 +46 21385 31.793585937521 0 +46 21385 31.793585937521 0 +46 21396 31.793745937521 0 +46 21396 31.793745937521 0 +46 21427 31.843993151421 0 +46 21427 31.843993151421 0 +46 21435 31.844153151421 0 +46 21435 31.844153151421 0 +46 21477 32.014557240765 0 +46 21477 32.014557240765 0 +46 21484 32.014717240765 0 +46 21484 32.014717240765 0 +46 21550 32.031276782702 0 +46 21550 32.031276782702 0 +46 21565 32.031436782702 0 +46 21565 32.031436782702 0 +46 21618 32.093585957424 0 +46 21618 32.093585957424 0 +46 21629 32.093745957424 0 +46 21629 32.093745957424 0 +46 21660 32.143993151421 0 +46 21660 32.143993151421 0 +46 21668 32.144153151421 0 +46 21668 32.144153151421 0 +46 21710 32.31455724058 0 +46 21710 32.31455724058 0 +46 21717 32.31471724058 0 +46 21717 32.31471724058 0 +46 21783 32.331276781557 0 +46 21783 32.331276781557 0 +46 21798 32.331436781557 0 +46 21798 32.331436781557 0 +46 21851 32.393585977454 0 +46 21851 32.393585977454 0 +46 21862 32.393745977454 0 +46 21862 32.393745977454 0 +46 21893 32.443993151421 0 +46 21893 32.443993151421 0 +46 21901 32.444153151421 0 +46 21901 32.444153151421 0 +46 21943 32.614557240362 0 +46 21943 32.614557240362 0 +46 21950 32.614717240362 0 +46 21950 32.614717240362 0 +46 22016 32.631276781062 0 +46 22016 32.631276781062 0 +46 22031 32.631436781062 0 +46 22031 32.631436781062 0 +46 22084 32.693585997543 0 +46 22084 32.693585997543 0 +46 22095 32.693745997543 0 +46 22095 32.693745997543 0 +46 22126 32.743993151421 0 +46 22126 32.743993151421 0 +46 22134 32.744153151421 0 +46 22134 32.744153151421 0 +46 22176 32.914557240161 0 +46 22176 32.914557240161 0 +46 22183 32.914717240161 0 +46 22183 32.914717240161 0 +46 22249 32.93127678126 0 +46 22249 32.93127678126 0 +46 22264 32.93143678126 0 +46 22264 32.93143678126 0 +46 22317 32.993586017691 0 +46 22317 32.993586017691 0 +46 22328 32.993746017691 0 +46 22328 32.993746017691 0 +46 22359 33.043993151421 0 +46 22359 33.043993151421 0 +46 22367 33.044153151421 0 +46 22367 33.044153151421 0 +46 22409 33.214557239961 0 +46 22409 33.214557239961 0 +46 22416 33.214717239961 0 +46 22416 33.214717239961 0 +46 22482 33.23127678211 0 +46 22482 33.23127678211 0 +46 22497 33.23143678211 0 +46 22497 33.23143678211 0 +46 22550 33.293586037835 0 +46 22550 33.293586037835 0 +46 22561 33.293746037835 0 +46 22561 33.293746037835 0 +46 22592 33.343993151421 0 +46 22592 33.343993151421 0 +46 22600 33.344153151421 0 +46 22600 33.344153151421 0 +46 22642 33.514557239737 0 +46 22642 33.514557239737 0 +46 22649 33.514717239737 0 +46 22649 33.514717239737 0 +46 22715 33.531276783685 0 +46 22715 33.531276783685 0 +46 22730 33.531436783685 0 +46 22730 33.531436783685 0 +46 22784 33.593586058084 0 +46 22784 33.593586058084 0 +46 22799 33.593746058084 0 +46 22799 33.593746058084 0 +46 22825 33.643993151421 0 +46 22825 33.643993151421 0 +46 22833 33.644153151421 0 +46 22833 33.644153151421 0 +46 22875 33.814557239531 0 +46 22875 33.814557239531 0 +46 22882 33.814717239531 0 +46 22882 33.814717239531 0 +46 22944 33.831276785904 0 +46 22944 33.831276785904 0 +46 22959 33.831436785904 0 +46 22959 33.831436785904 0 +46 23013 33.893586078308 0 +46 23013 33.893586078308 0 +46 23028 33.893746078308 0 +46 23028 33.893746078308 0 +46 23049 33.943993151421 0 +46 23049 33.943993151421 0 +46 23056 33.944153151421 0 +46 23056 33.944153151421 0 +46 23091 34.11455723931 0 +46 23091 34.11455723931 0 +46 23097 34.11471723931 0 +46 23097 34.11471723931 0 +46 23147 34.131276788788 0 +46 23147 34.131276788788 0 +46 23157 34.131436788788 0 +46 23157 34.131436788788 0 +46 23207 34.243993151421 0 +46 23207 34.243993151421 0 +46 23214 34.244153151421 0 +46 23214 34.244153151421 0 +46 23249 34.414557239094 0 +46 23249 34.414557239094 0 +46 23255 34.414717239094 0 +46 23255 34.414717239094 0 +46 23305 34.431276792338 0 +46 23305 34.431276792338 0 +46 23315 34.431436792338 0 +46 23315 34.431436792338 0 +46 23365 34.543993151421 0 +46 23365 34.543993151421 0 +46 23372 34.544153151421 0 +46 23372 34.544153151421 0 +46 23407 34.71455723891 0 +46 23407 34.71455723891 0 +46 23413 34.71471723891 0 +46 23413 34.71471723891 0 +46 23463 34.731276796515 0 +46 23463 34.731276796515 0 +46 23473 34.731436796515 0 +46 23473 34.731436796515 0 +46 23523 34.843993151421 0 +46 23523 34.843993151421 0 +46 23530 34.844153151421 0 +46 23530 34.844153151421 0 +46 23565 35.014557238698 0 +46 23565 35.014557238698 0 +46 23571 35.014717238698 0 +46 23571 35.014717238698 0 +46 23621 35.031276801357 0 +46 23621 35.031276801357 0 +46 23631 35.031436801357 0 +46 23631 35.031436801357 0 +46 23681 35.143993151421 0 +46 23681 35.143993151421 0 +46 23688 35.144153151421 0 +46 23688 35.144153151421 0 +46 23727 35.31455723851 0 +46 23727 35.31455723851 0 +46 23733 35.31471723851 0 +46 23733 35.31471723851 0 +46 23783 35.331276806756 0 +46 23783 35.331276806756 0 +46 23793 35.331436806756 0 +46 23793 35.331436806756 0 +46 23813 35.357384434054 0 +46 23813 35.357384434054 0 +46 23827 35.357544434054 0 +46 23827 35.357544434054 0 +46 23847 35.443993151421 0 +46 23847 35.443993151421 0 +46 23854 35.444153151421 0 +46 23854 35.444153151421 0 +46 23893 35.614557238324 0 +46 23893 35.614557238324 0 +46 23899 35.614717238324 0 +46 23899 35.614717238324 0 +46 23949 35.631276812771 0 +46 23949 35.631276812771 0 +46 23959 35.631436812771 0 +46 23959 35.631436812771 0 +46 23979 35.657384420736 0 +46 23979 35.657384420736 0 +46 23993 35.657544420736 0 +46 23993 35.657544420736 0 +46 24013 35.743993151421 0 +46 24013 35.743993151421 0 +46 24020 35.744153151421 0 +46 24020 35.744153151421 0 +46 24060 35.914557238104 0 +46 24060 35.914557238104 0 +46 24070 35.914717238104 0 +46 24070 35.914717238104 0 +46 24115 35.931276819372 0 +46 24115 35.931276819372 0 +46 24125 35.931436819372 0 +46 24125 35.931436819372 0 +46 24145 35.957384409002 0 +46 24145 35.957384409002 0 +46 24159 35.957544409002 0 +46 24159 35.957544409002 0 +46 24179 36.043993151421 0 +46 24179 36.043993151421 0 +46 24186 36.044153151421 0 +46 24186 36.044153151421 0 +46 24226 36.214557237923 0 +46 24226 36.214557237923 0 +46 24236 36.214717237923 0 +46 24236 36.214717237923 0 +46 24281 36.231276826584 0 +46 24281 36.231276826584 0 +46 24291 36.231436826584 0 +46 24291 36.231436826584 0 +46 24311 36.257384398867 0 +46 24311 36.257384398867 0 +46 24325 36.257544398867 0 +46 24325 36.257544398867 0 +46 24345 36.343993151421 0 +46 24345 36.343993151421 0 +46 24352 36.344153151421 0 +46 24352 36.344153151421 0 +46 24392 36.514557237718 0 +46 24392 36.514557237718 0 +46 24402 36.514717237718 0 +46 24402 36.514717237718 0 +46 24447 36.531276834329 0 +46 24447 36.531276834329 0 +46 24457 36.531436834329 0 +46 24457 36.531436834329 0 +46 24477 36.557384390339 0 +46 24477 36.557384390339 0 +46 24491 36.557544390339 0 +46 24491 36.557544390339 0 +46 24511 36.643993151421 0 +46 24511 36.643993151421 0 +46 24518 36.644153151421 0 +46 24518 36.644153151421 0 +46 24557 36.814557237512 0 +46 24557 36.814557237512 0 +46 24563 36.814717237512 0 +46 24563 36.814717237512 0 +46 24613 36.831276842622 0 +46 24613 36.831276842622 0 +46 24623 36.831436842622 0 +46 24623 36.831436842622 0 +46 24643 36.857384382745 0 +46 24643 36.857384382745 0 +46 24657 36.857544382745 0 +46 24657 36.857544382745 0 +46 24677 36.943993151421 0 +46 24677 36.943993151421 0 +46 24684 36.944153151421 0 +46 24684 36.944153151421 0 +46 24723 37.114557236718 0 +46 24723 37.114557236718 0 +46 24729 37.114717236718 0 +46 24729 37.114717236718 0 +46 24779 37.131276851096 0 +46 24779 37.131276851096 0 +46 24789 37.131436851096 0 +46 24789 37.131436851096 0 +46 24809 37.157384373889 0 +46 24809 37.157384373889 0 +46 24823 37.157544373889 0 +46 24823 37.157544373889 0 +46 24843 37.243993151421 0 +46 24843 37.243993151421 0 +46 24850 37.244153151421 0 +46 24850 37.244153151421 0 +46 24889 37.41455723223 0 +46 24889 37.41455723223 0 +46 24895 37.41471723223 0 +46 24895 37.41471723223 0 +46 24945 37.431276854108 0 +46 24945 37.431276854108 0 +46 24955 37.431436854108 0 +46 24955 37.431436854108 0 +46 24975 37.457384356842 0 +46 24975 37.457384356842 0 +46 24989 37.457544356842 0 +46 24989 37.457544356842 0 +46 25009 37.543993151421 0 +46 25009 37.543993151421 0 +46 25016 37.544153151421 0 +46 25016 37.544153151421 0 +46 25055 37.714557229579 0 +46 25055 37.714557229579 0 +46 25061 37.714717229579 0 +46 25061 37.714717229579 0 +46 25111 37.731276847205 0 +46 25111 37.731276847205 0 +46 25121 37.731436847205 0 +46 25121 37.731436847205 0 +46 25140 37.757384333389 0 +46 25140 37.757384333389 0 +46 25150 37.757544333389 0 +46 25150 37.757544333389 0 +46 25175 37.843993151421 0 +46 25175 37.843993151421 0 +46 25182 37.844153151421 0 +46 25182 37.844153151421 0 +46 25221 38.014557228941 0 +46 25221 38.014557228941 0 +46 25227 38.014717228941 0 +46 25227 38.014717228941 0 +46 25277 38.031276839602 0 +46 25277 38.031276839602 0 +46 25287 38.031436839602 0 +46 25287 38.031436839602 0 +46 25306 38.0573843092 0 +46 25306 38.0573843092 0 +46 25316 38.0575443092 0 +46 25316 38.0575443092 0 +46 25341 38.143993151421 0 +46 25341 38.143993151421 0 +46 25348 38.144153151421 0 +46 25348 38.144153151421 0 +46 25387 38.314557229416 0 +46 25387 38.314557229416 0 +46 25393 38.314717229416 0 +46 25393 38.314717229416 0 +46 25443 38.331276833175 0 +46 25443 38.331276833175 0 +46 25453 38.331436833175 0 +46 25453 38.331436833175 0 +46 25472 38.357384284464 0 +46 25472 38.357384284464 0 +46 25482 38.357544284464 0 +46 25482 38.357544284464 0 +46 25507 38.443993151421 0 +46 25507 38.443993151421 0 +46 25514 38.444153151421 0 +46 25514 38.444153151421 0 +46 25553 38.614557230908 0 +46 25553 38.614557230908 0 +46 25559 38.614717230908 0 +46 25559 38.614717230908 0 +46 25609 38.631276827949 0 +46 25609 38.631276827949 0 +46 25619 38.631436827949 0 +46 25619 38.631436827949 0 +46 25638 38.657384259185 0 +46 25638 38.657384259185 0 +46 25648 38.657544259185 0 +46 25648 38.657544259185 0 +46 25673 38.743993151421 0 +46 25673 38.743993151421 0 +46 25680 38.744153151421 0 +46 25680 38.744153151421 0 +46 25719 38.914557233464 0 +46 25719 38.914557233464 0 +46 25725 38.914717233464 0 +46 25725 38.914717233464 0 +46 25775 38.93127682395 0 +46 25775 38.93127682395 0 +46 25785 38.93143682395 0 +46 25785 38.93143682395 0 +46 25804 38.957384233306 0 +46 25804 38.957384233306 0 +46 25814 38.957544233306 0 +46 25814 38.957544233306 0 +46 25839 39.043993151421 0 +46 25839 39.043993151421 0 +46 25846 39.044153151421 0 +46 25846 39.044153151421 0 +46 25885 39.214557237033 0 +46 25885 39.214557237033 0 +46 25891 39.214717237033 0 +46 25891 39.214717237033 0 +46 25941 39.231276821205 0 +46 25941 39.231276821205 0 +46 25951 39.231436821205 0 +46 25951 39.231436821205 0 +46 25970 39.257384206756 0 +46 25970 39.257384206756 0 +46 25980 39.257544206756 0 +46 25980 39.257544206756 0 +46 26005 39.343993151421 0 +46 26005 39.343993151421 0 +46 26012 39.344153151421 0 +46 26012 39.344153151421 0 +46 26051 39.514557241575 0 +46 26051 39.514557241575 0 +46 26057 39.514717241575 0 +46 26057 39.514717241575 0 +46 26107 39.531276819725 0 +46 26107 39.531276819725 0 +46 26117 39.531436819725 0 +46 26117 39.531436819725 0 +46 26136 39.557384179549 0 +46 26136 39.557384179549 0 +46 26146 39.557544179549 0 +46 26146 39.557544179549 0 +46 26171 39.643993151421 0 +46 26171 39.643993151421 0 +46 26178 39.644153151421 0 +46 26178 39.644153151421 0 +46 26217 39.814557247083 0 +46 26217 39.814557247083 0 +46 26223 39.814717247083 0 +46 26223 39.814717247083 0 +46 26273 39.831276819522 0 +46 26273 39.831276819522 0 +46 26283 39.831436819522 0 +46 26283 39.831436819522 0 +46 26302 39.857384151671 0 +46 26302 39.857384151671 0 +46 26312 39.857544151671 0 +46 26312 39.857544151671 0 +46 26337 39.943993151421 0 +46 26337 39.943993151421 0 +46 26344 39.944153151421 0 +46 26344 39.944153151421 0 +46 26383 40.114557253513 0 +46 26383 40.114557253513 0 +46 26389 40.114717253513 0 +46 26389 40.114717253513 0 +46 26439 40.1312768206 0 +46 26439 40.1312768206 0 +46 26449 40.1314368206 0 +46 26449 40.1314368206 0 +46 26467 40.157384123679 0 +46 26467 40.157384123679 0 +46 26473 40.157544123679 0 +46 26473 40.157544123679 0 +46 26503 40.243993151421 0 +46 26503 40.243993151421 0 +46 26510 40.244153151421 0 +46 26510 40.244153151421 0 +46 26549 40.414557260797 0 +46 26549 40.414557260797 0 +46 26555 40.414717260797 0 +46 26555 40.414717260797 0 +46 26605 40.431276822952 0 +46 26605 40.431276822952 0 +46 26615 40.431436822952 0 +46 26615 40.431436822952 0 +46 26633 40.457384095641 0 +46 26633 40.457384095641 0 +46 26639 40.457544095641 0 +46 26639 40.457544095641 0 +46 26669 40.543993151421 0 +46 26669 40.543993151421 0 +46 26676 40.544153151421 0 +46 26676 40.544153151421 0 +46 26715 40.714557269001 0 +46 26715 40.714557269001 0 +46 26721 40.714717269001 0 +46 26721 40.714717269001 0 +46 26744 40.72439933755 0 +46 26744 40.72439933755 0 +46 26758 40.72455933755 0 +46 26758 40.72455933755 0 +46 26775 40.731276826556 0 +46 26775 40.731276826556 0 +46 26785 40.731436826556 0 +46 26785 40.731436826556 0 +46 26803 40.757384067729 0 +46 26803 40.757384067729 0 +46 26809 40.757544067729 0 +46 26809 40.757544067729 0 +46 26839 40.843993151421 0 +46 26839 40.843993151421 0 +46 26846 40.844153151421 0 +46 26846 40.844153151421 0 +46 26889 41.014557277925 0 +46 26889 41.014557277925 0 +46 26895 41.014717277925 0 +46 26895 41.014717277925 0 +46 26918 41.024399324799 0 +46 26918 41.024399324799 0 +46 26932 41.024559324799 0 +46 26932 41.024559324799 0 +46 26949 41.031276831396 0 +46 26949 41.031276831396 0 +46 26959 41.031436831396 0 +46 26959 41.031436831396 0 +46 26977 41.057384039737 0 +46 26977 41.057384039737 0 +46 26983 41.057544039737 0 +46 26983 41.057544039737 0 +46 27013 41.143993151421 0 +46 27013 41.143993151421 0 +46 27020 41.144153151421 0 +46 27020 41.144153151421 0 +46 27063 41.314557287623 0 +46 27063 41.314557287623 0 +46 27069 41.314717287623 0 +46 27069 41.314717287623 0 +46 27092 41.324399312788 0 +46 27092 41.324399312788 0 +46 27106 41.324559312788 0 +46 27106 41.324559312788 0 +46 27123 41.331276837463 0 +46 27123 41.331276837463 0 +46 27133 41.331436837463 0 +46 27133 41.331436837463 0 +46 27151 41.357384011756 0 +46 27151 41.357384011756 0 +46 27157 41.357544011756 0 +46 27157 41.357544011756 0 +46 27187 41.443993151421 0 +46 27187 41.443993151421 0 +46 27194 41.444153151421 0 +46 27194 41.444153151421 0 +46 27237 41.614557298022 0 +46 27237 41.614557298022 0 +46 27243 41.614717298022 0 +46 27243 41.614717298022 0 +46 27266 41.624399301583 0 +46 27266 41.624399301583 0 +46 27280 41.624559301583 0 +46 27280 41.624559301583 0 +46 27297 41.631276844699 0 +46 27297 41.631276844699 0 +46 27307 41.631436844699 0 +46 27307 41.631436844699 0 +46 27325 41.657383983797 0 +46 27325 41.657383983797 0 +46 27331 41.657543983797 0 +46 27331 41.657543983797 0 +46 27361 41.743993151421 0 +46 27361 41.743993151421 0 +46 27368 41.744153151421 0 +46 27368 41.744153151421 0 +46 27411 41.914557309216 0 +46 27411 41.914557309216 0 +46 27417 41.914717309216 0 +46 27417 41.914717309216 0 +46 27440 41.924399291388 0 +46 27440 41.924399291388 0 +46 27454 41.924559291388 0 +46 27454 41.924559291388 0 +46 27471 41.931276852916 0 +46 27471 41.931276852916 0 +46 27481 41.931436852916 0 +46 27481 41.931436852916 0 +46 27499 41.957383956357 0 +46 27499 41.957383956357 0 +46 27505 41.957543956357 0 +46 27505 41.957543956357 0 +46 27535 42.043993151421 0 +46 27535 42.043993151421 0 +46 27542 42.044153151421 0 +46 27542 42.044153151421 0 +46 27585 42.214557321205 0 +46 27585 42.214557321205 0 +46 27591 42.214717321205 0 +46 27591 42.214717321205 0 +46 27614 42.224399282466 0 +46 27614 42.224399282466 0 +46 27628 42.224559282466 0 +46 27628 42.224559282466 0 +46 27645 42.231276861741 0 +46 27645 42.231276861741 0 +46 27655 42.231436861741 0 +46 27655 42.231436861741 0 +46 27673 42.257383930301 0 +46 27673 42.257383930301 0 +46 27679 42.257543930301 0 +46 27679 42.257543930301 0 +46 27709 42.343993151421 0 +46 27709 42.343993151421 0 +46 27716 42.344153151421 0 +46 27716 42.344153151421 0 +46 27759 42.514557333849 0 +46 27759 42.514557333849 0 +46 27765 42.514717333849 0 +46 27765 42.514717333849 0 +46 27788 42.52439927473 0 +46 27788 42.52439927473 0 +46 27802 42.52455927473 0 +46 27802 42.52455927473 0 +46 27819 42.531276870996 0 +46 27819 42.531276870996 0 +46 27829 42.531436870996 0 +46 27829 42.531436870996 0 +46 27847 42.557383905564 0 +46 27847 42.557383905564 0 +46 27853 42.557543905564 0 +46 27853 42.557543905564 0 +46 27883 42.643993151421 0 +46 27883 42.643993151421 0 +46 27890 42.644153151421 0 +46 27890 42.644153151421 0 +46 27933 42.814557347041 0 +46 27933 42.814557347041 0 +46 27939 42.814717347041 0 +46 27939 42.814717347041 0 +46 27962 42.824399268076 0 +46 27962 42.824399268076 0 +46 27976 42.824559268076 0 +46 27976 42.824559268076 0 +46 27993 42.831276880478 0 +46 27993 42.831276880478 0 +46 28003 42.831436880478 0 +46 28003 42.831436880478 0 +46 28021 42.857383882214 0 +46 28021 42.857383882214 0 +46 28027 42.857543882214 0 +46 28027 42.857543882214 0 +46 28057 42.943993151421 0 +46 28057 42.943993151421 0 +46 28064 42.944153151421 0 +46 28064 42.944153151421 0 +46 28108 43.114557360624 0 +46 28108 43.114557360624 0 +46 28118 43.114717360624 0 +46 28118 43.114717360624 0 +46 28136 43.124399262415 0 +46 28136 43.124399262415 0 +46 28150 43.124559262415 0 +46 28150 43.124559262415 0 +46 28167 43.131276890097 0 +46 28167 43.131276890097 0 +46 28177 43.131436890097 0 +46 28177 43.131436890097 0 +46 28195 43.157383860218 0 +46 28195 43.157383860218 0 +46 28201 43.157543860218 0 +46 28201 43.157543860218 0 +46 28231 43.243993151421 0 +46 28231 43.243993151421 0 +46 28238 43.244153151421 0 +46 28238 43.244153151421 0 +46 28282 43.414557374505 0 +46 28282 43.414557374505 0 +46 28292 43.414717374505 0 +46 28292 43.414717374505 0 +46 28310 43.424399257654 0 +46 28310 43.424399257654 0 +46 28324 43.424559257654 0 +46 28324 43.424559257654 0 +46 28341 43.431276899681 0 +46 28341 43.431276899681 0 +46 28351 43.431436899681 0 +46 28351 43.431436899681 0 +46 28369 43.45738383957 0 +46 28369 43.45738383957 0 +46 28375 43.45754383957 0 +46 28375 43.45754383957 0 +46 28405 43.543993151421 0 +46 28405 43.543993151421 0 +46 28412 43.544153151421 0 +46 28412 43.544153151421 0 +46 28456 43.714557388346 0 +46 28456 43.714557388346 0 +46 28466 43.714717388346 0 +46 28466 43.714717388346 0 +46 28484 43.724399253693 0 +46 28484 43.724399253693 0 +46 28498 43.724559253693 0 +46 28498 43.724559253693 0 +46 28515 43.73127690914 0 +46 28515 43.73127690914 0 +46 28525 43.73143690914 0 +46 28525 43.73143690914 0 +46 28543 43.757383820288 0 +46 28543 43.757383820288 0 +46 28549 43.757543820288 0 +46 28549 43.757543820288 0 +46 28579 43.843993151421 0 +46 28579 43.843993151421 0 +46 28586 43.844153151421 0 +46 28586 43.844153151421 0 +46 28630 44.014557401083 0 +46 28630 44.014557401083 0 +46 28640 44.014717401083 0 +46 28640 44.014717401083 0 +46 28658 44.024399250434 0 +46 28658 44.024399250434 0 +46 28672 44.024559250434 0 +46 28672 44.024559250434 0 +46 28689 44.031276918359 0 +46 28689 44.031276918359 0 +46 28699 44.031436918359 0 +46 28699 44.031436918359 0 +46 28717 44.057383802369 0 +46 28717 44.057383802369 0 +46 28723 44.057543802369 0 +46 28723 44.057543802369 0 +46 28753 44.143993151421 0 +46 28753 44.143993151421 0 +46 28760 44.144153151421 0 +46 28760 44.144153151421 0 +46 28804 44.31455741262 0 +46 28804 44.31455741262 0 +46 28814 44.31471741262 0 +46 28814 44.31471741262 0 +46 28831 44.324399247783 0 +46 28831 44.324399247783 0 +46 28841 44.324559247783 0 +46 28841 44.324559247783 0 +46 28887 44.357383786728 0 +46 28887 44.357383786728 0 +46 28893 44.357543786728 0 +46 28893 44.357543786728 0 +46 28923 44.443993151421 0 +46 28923 44.443993151421 0 +46 28930 44.444153151421 0 +46 28930 44.444153151421 0 +46 28970 44.614557422913 0 +46 28970 44.614557422913 0 +46 28980 44.614717422913 0 +46 28980 44.614717422913 0 +46 28997 44.624399245654 0 +46 28997 44.624399245654 0 +46 29007 44.624559245654 0 +46 29007 44.624559245654 0 +46 29053 44.657383773768 0 +46 29053 44.657383773768 0 +46 29059 44.657543773768 0 +46 29059 44.657543773768 0 +46 29089 44.743993151421 0 +46 29089 44.743993151421 0 +46 29096 44.744153151421 0 +46 29096 44.744153151421 0 +46 29136 44.914557431937 0 +46 29136 44.914557431937 0 +46 29146 44.914717431937 0 +46 29146 44.914717431937 0 +46 29163 44.924399243982 0 +46 29163 44.924399243982 0 +46 29173 44.924559243982 0 +46 29173 44.924559243982 0 +46 29219 44.957383763502 0 +46 29219 44.957383763502 0 +46 29225 44.957543763502 0 +46 29225 44.957543763502 0 +46 29255 45.043993151421 0 +46 29255 45.043993151421 0 +46 29262 45.044153151421 0 +46 29262 45.044153151421 0 +46 29302 45.21455743966 0 +46 29302 45.21455743966 0 +46 29312 45.21471743966 0 +46 29312 45.21471743966 0 +46 29329 45.224399242636 0 +46 29329 45.224399242636 0 +46 29339 45.224559242636 0 +46 29339 45.224559242636 0 +46 29385 45.257383755525 0 +46 29385 45.257383755525 0 +46 29391 45.257543755525 0 +46 29391 45.257543755525 0 +46 29421 45.343993151421 0 +46 29421 45.343993151421 0 +46 29428 45.344153151421 0 +46 29428 45.344153151421 0 +46 29468 45.514557446271 0 +46 29468 45.514557446271 0 +46 29478 45.514717446271 0 +46 29478 45.514717446271 0 +46 29495 45.524399241497 0 +46 29495 45.524399241497 0 +46 29505 45.524559241497 0 +46 29505 45.524559241497 0 +46 29551 45.557383748928 0 +46 29551 45.557383748928 0 +46 29557 45.557543748928 0 +46 29557 45.557543748928 0 +46 29587 45.643993151421 0 +46 29587 45.643993151421 0 +46 29594 45.644153151421 0 +46 29594 45.644153151421 0 +46 29634 45.814557453426 0 +46 29634 45.814557453426 0 +46 29644 45.814717453426 0 +46 29644 45.814717453426 0 +46 29661 45.824399240537 0 +46 29661 45.824399240537 0 +46 29671 45.824559240537 0 +46 29671 45.824559240537 0 +46 29717 45.857383742284 0 +46 29717 45.857383742284 0 +46 29723 45.857543742284 0 +46 29723 45.857543742284 0 +46 29753 45.943993151421 0 +46 29753 45.943993151421 0 +46 29760 45.944153151421 0 +46 29760 45.944153151421 0 +46 29800 46.11455746131 0 +46 29800 46.11455746131 0 +46 29810 46.11471746131 0 +46 29810 46.11471746131 0 +46 29827 46.124399236922 0 +46 29827 46.124399236922 0 +46 29837 46.124559236922 0 +46 29837 46.124559236922 0 +46 29883 46.157383734922 0 +46 29883 46.157383734922 0 +46 29889 46.157543734922 0 +46 29889 46.157543734922 0 +46 29919 46.243993151421 0 +46 29919 46.243993151421 0 +46 29926 46.244153151421 0 +46 29926 46.244153151421 0 +46 29966 46.414557469463 0 +46 29966 46.414557469463 0 +46 29976 46.414717469463 0 +46 29976 46.414717469463 0 +46 29993 46.424399227691 0 +46 29993 46.424399227691 0 +46 30003 46.424559227691 0 +46 30003 46.424559227691 0 +46 30049 46.457383726677 0 +46 30049 46.457383726677 0 +46 30055 46.457543726677 0 +46 30055 46.457543726677 0 +46 30085 46.543993151421 0 +46 30085 46.543993151421 0 +46 30092 46.544153151421 0 +46 30092 46.544153151421 0 +46 30132 46.7145574756 0 +46 30132 46.7145574756 0 +46 30142 46.7147174756 0 +46 30142 46.7147174756 0 +46 30159 46.724399216308 0 +46 30159 46.724399216308 0 +46 30169 46.724559216308 0 +46 30169 46.724559216308 0 +46 30215 46.757383717477 0 +46 30215 46.757383717477 0 +46 30221 46.757543717477 0 +46 30221 46.757543717477 0 +46 30251 46.843993151421 0 +46 30251 46.843993151421 0 +46 30258 46.844153151421 0 +46 30258 46.844153151421 0 +46 30298 47.014557477752 0 +46 30298 47.014557477752 0 +46 30308 47.014717477752 0 +46 30308 47.014717477752 0 +46 30325 47.024399204936 0 +46 30325 47.024399204936 0 +46 30335 47.024559204936 0 +46 30335 47.024559204936 0 +46 30381 47.057383707399 0 +46 30381 47.057383707399 0 +46 30387 47.057543707399 0 +46 30387 47.057543707399 0 +46 30417 47.143993151421 0 +46 30417 47.143993151421 0 +46 30424 47.144153151421 0 +46 30424 47.144153151421 0 +46 30464 47.31455747801 0 +46 30464 47.31455747801 0 +46 30474 47.31471747801 0 +46 30474 47.31471747801 0 +46 30491 47.324399193637 0 +46 30491 47.324399193637 0 +46 30501 47.324559193637 0 +46 30501 47.324559193637 0 +46 30547 47.357383698008 0 +46 30547 47.357383698008 0 +46 30553 47.357543698008 0 +46 30553 47.357543698008 0 +46 30583 47.443993151421 0 +46 30583 47.443993151421 0 +46 30590 47.444153151421 0 +46 30590 47.444153151421 0 +46 30630 47.614557478274 0 +46 30630 47.614557478274 0 +46 30640 47.614717478274 0 +46 30640 47.614717478274 0 +46 30657 47.62439918244 0 +46 30657 47.62439918244 0 +46 30667 47.62455918244 0 +46 30667 47.62455918244 0 +46 30713 47.657383697458 0 +46 30713 47.657383697458 0 +46 30719 47.657543697458 0 +46 30719 47.657543697458 0 +46 30749 47.743993151421 0 +46 30749 47.743993151421 0 +46 30756 47.744153151421 0 +46 30756 47.744153151421 0 +46 30796 47.914557478544 0 +46 30796 47.914557478544 0 +46 30806 47.914717478544 0 +46 30806 47.914717478544 0 +46 30822 47.92439917133 0 +46 30822 47.92439917133 0 +46 30828 47.92455917133 0 +46 30828 47.92455917133 0 +46 30879 47.957383708789 0 +46 30879 47.957383708789 0 +46 30885 47.957543708789 0 +46 30885 47.957543708789 0 +46 30915 48.043993151421 0 +46 30915 48.043993151421 0 +46 30922 48.044153151421 0 +46 30922 48.044153151421 0 +46 30962 48.214557477888 0 +46 30962 48.214557477888 0 +46 30972 48.214717477888 0 +46 30972 48.214717477888 0 +46 30988 48.224399161344 0 +46 30988 48.224399161344 0 +46 30994 48.224559161344 0 +46 30994 48.224559161344 0 +46 31045 48.257383722862 0 +46 31045 48.257383722862 0 +46 31051 48.257543722862 0 +46 31051 48.257543722862 0 +46 31081 48.343993151421 0 +46 31081 48.343993151421 0 +46 31088 48.344153151421 0 +46 31088 48.344153151421 0 +46 31127 48.514557476625 0 +46 31127 48.514557476625 0 +46 31133 48.514717476625 0 +46 31133 48.514717476625 0 +46 31154 48.524399152109 0 +46 31154 48.524399152109 0 +46 31160 48.524559152109 0 +46 31160 48.524559152109 0 +46 31211 48.557383738369 0 +46 31211 48.557383738369 0 +46 31217 48.557543738369 0 +46 31217 48.557543738369 0 +46 31247 48.643993151421 0 +46 31247 48.643993151421 0 +46 31254 48.644153151421 0 +46 31254 48.644153151421 0 +46 31293 48.814557474634 0 +46 31293 48.814557474634 0 +46 31299 48.814717474634 0 +46 31299 48.814717474634 0 +46 31320 48.824399143836 0 +46 31320 48.824399143836 0 +46 31326 48.824559143836 0 +46 31326 48.824559143836 0 +46 31377 48.857383754702 0 +46 31377 48.857383754702 0 +46 31383 48.857543754702 0 +46 31383 48.857543754702 0 +46 31413 48.943993151421 0 +46 31413 48.943993151421 0 +46 31420 48.944153151421 0 +46 31420 48.944153151421 0 +46 31459 49.11455747139 0 +46 31459 49.11455747139 0 +46 31465 49.11471747139 0 +46 31465 49.11471747139 0 +46 31486 49.124399137291 0 +46 31486 49.124399137291 0 +46 31492 49.124559137291 0 +46 31492 49.124559137291 0 +46 31543 49.157383770654 0 +46 31543 49.157383770654 0 +46 31549 49.157543770654 0 +46 31549 49.157543770654 0 +46 31579 49.243993151421 0 +46 31579 49.243993151421 0 +46 31586 49.244153151421 0 +46 31586 49.244153151421 0 +46 31625 49.414557467632 0 +46 31625 49.414557467632 0 +46 31631 49.414717467632 0 +46 31631 49.414717467632 0 +46 31652 49.424399131732 0 +46 31652 49.424399131732 0 +46 31658 49.424559131732 0 +46 31658 49.424559131732 0 +46 31709 49.457383786041 0 +46 31709 49.457383786041 0 +46 31715 49.457543786041 0 +46 31715 49.457543786041 0 +46 31745 49.543993151421 0 +46 31745 49.543993151421 0 +46 31752 49.544153151421 0 +46 31752 49.544153151421 0 +46 31791 49.71455746338 0 +46 31791 49.71455746338 0 +46 31797 49.71471746338 0 +46 31797 49.71471746338 0 +46 31819 49.724399127231 0 +46 31819 49.724399127231 0 +46 31829 49.724559127231 0 +46 31829 49.724559127231 0 +46 31875 49.757383800762 0 +46 31875 49.757383800762 0 +46 31881 49.757543800762 0 +46 31881 49.757543800762 0 +46 31911 49.843993151421 0 +46 31911 49.843993151421 0 +46 31918 49.844153151421 0 +46 31918 49.844153151421 0 +46 31957 50.014557459048 0 +46 31957 50.014557459048 0 +46 31963 50.014717459048 0 +46 31963 50.014717459048 0 +46 31985 50.024399123312 0 +46 31985 50.024399123312 0 +46 31995 50.024559123312 0 +46 31995 50.024559123312 0 +46 32041 50.057383815148 0 +46 32041 50.057383815148 0 +46 32047 50.057543815148 0 +46 32047 50.057543815148 0 +46 32077 50.143993151421 0 +46 32077 50.143993151421 0 +46 32084 50.144153151421 0 +46 32084 50.144153151421 0 +46 32123 50.314557454631 0 +46 32123 50.314557454631 0 +46 32129 50.314717454631 0 +46 32129 50.314717454631 0 +46 32151 50.324399119987 0 +46 32151 50.324399119987 0 +46 32161 50.324559119987 0 +46 32161 50.324559119987 0 +46 32207 50.357383829549 0 +46 32207 50.357383829549 0 +46 32213 50.357543829549 0 +46 32213 50.357543829549 0 +46 32243 50.443993151421 0 +46 32243 50.443993151421 0 +46 32250 50.444153151421 0 +46 32250 50.444153151421 0 +46 32289 50.614557450054 0 +46 32289 50.614557450054 0 +46 32295 50.614717450054 0 +46 32295 50.614717450054 0 +46 32317 50.624399117227 0 +46 32317 50.624399117227 0 +46 32327 50.624559117227 0 +46 32327 50.624559117227 0 +46 32373 50.657383844282 0 +46 32373 50.657383844282 0 +46 32379 50.657543844282 0 +46 32379 50.657543844282 0 +46 32409 50.743993151421 0 +46 32409 50.743993151421 0 +46 32416 50.744153151421 0 +46 32416 50.744153151421 0 +46 32455 50.914557445285 0 +46 32455 50.914557445285 0 +46 32461 50.914717445285 0 +46 32461 50.914717445285 0 +46 32483 50.924399115103 0 +46 32483 50.924399115103 0 +46 32493 50.924559115103 0 +46 32493 50.924559115103 0 +46 32539 50.957383859315 0 +46 32539 50.957383859315 0 +46 32545 50.957543859315 0 +46 32545 50.957543859315 0 +46 32575 51.043993151421 0 +46 32575 51.043993151421 0 +46 32582 51.044153151421 0 +46 32582 51.044153151421 0 +46 32621 51.21455744041 0 +46 32621 51.21455744041 0 +46 32627 51.21471744041 0 +46 32627 51.21471744041 0 +46 32645 51.224399113583 0 +46 32645 51.224399113583 0 +46 32655 51.224559113583 0 +46 32655 51.224559113583 0 +46 32701 51.257383874742 0 +46 32701 51.257383874742 0 +46 32707 51.257543874742 0 +46 32707 51.257543874742 0 +46 32733 51.343993151421 0 +46 32733 51.343993151421 0 +46 32740 51.344153151421 0 +46 32740 51.344153151421 0 +46 32779 51.514557435458 0 +46 32779 51.514557435458 0 +46 32785 51.514717435458 0 +46 32785 51.514717435458 0 +46 32803 51.524399112627 0 +46 32803 51.524399112627 0 +46 32813 51.524559112627 0 +46 32813 51.524559112627 0 +46 32863 51.557383890499 0 +46 32863 51.557383890499 0 +46 32869 51.557543890499 0 +46 32869 51.557543890499 0 +46 32899 51.643993151421 0 +46 32899 51.643993151421 0 +46 32906 51.644153151421 0 +46 32906 51.644153151421 0 +46 32945 51.814557430365 0 +46 32945 51.814557430365 0 +46 32951 51.814717430365 0 +46 32951 51.814717430365 0 +46 32969 51.824399112353 0 +46 32969 51.824399112353 0 +46 32979 51.824559112353 0 +46 32979 51.824559112353 0 +46 33029 51.857383906635 0 +46 33029 51.857383906635 0 +46 33035 51.857543906635 0 +46 33035 51.857543906635 0 +46 33065 51.943993151421 0 +46 33065 51.943993151421 0 +46 33072 51.944153151421 0 +46 33072 51.944153151421 0 +46 33111 52.114557425224 0 +46 33111 52.114557425224 0 +46 33117 52.114717425224 0 +46 33117 52.114717425224 0 +46 33135 52.124399112693 0 +46 33135 52.124399112693 0 +46 33145 52.124559112693 0 +46 33145 52.124559112693 0 +46 33195 52.157383923181 0 +46 33195 52.157383923181 0 +46 33201 52.157543923181 0 +46 33201 52.157543923181 0 +46 33231 52.243993151421 0 +46 33231 52.243993151421 0 +46 33238 52.244153151421 0 +46 33238 52.244153151421 0 +46 33277 52.414557420182 0 +46 33277 52.414557420182 0 +46 33283 52.414717420182 0 +46 33283 52.414717420182 0 +46 33301 52.424399113556 0 +46 33301 52.424399113556 0 +46 33311 52.424559113556 0 +46 33311 52.424559113556 0 +46 33361 52.457383940072 0 +46 33361 52.457383940072 0 +46 33367 52.457543940072 0 +46 33367 52.457543940072 0 +46 33397 52.543993151421 0 +46 33397 52.543993151421 0 +46 33404 52.544153151421 0 +46 33404 52.544153151421 0 +46 33443 52.714557415208 0 +46 33443 52.714557415208 0 +46 33449 52.714717415208 0 +46 33449 52.714717415208 0 +46 33467 52.724399114954 0 +46 33467 52.724399114954 0 +46 33477 52.724559114954 0 +46 33477 52.724559114954 0 +46 33527 52.757383957286 0 +46 33527 52.757383957286 0 +46 33533 52.757543957286 0 +46 33533 52.757543957286 0 +46 33563 52.843993151421 0 +46 33563 52.843993151421 0 +46 33570 52.844153151421 0 +46 33570 52.844153151421 0 +46 33609 53.014557410369 0 +46 33609 53.014557410369 0 +46 33615 53.014717410369 0 +46 33615 53.014717410369 0 +46 33633 53.024399116886 0 +46 33633 53.024399116886 0 +46 33643 53.024559116886 0 +46 33643 53.024559116886 0 +46 33693 53.057383974792 0 +46 33693 53.057383974792 0 +46 33699 53.057543974792 0 +46 33699 53.057543974792 0 +46 33729 53.143993151421 0 +46 33729 53.143993151421 0 +46 33736 53.144153151421 0 +46 33736 53.144153151421 0 +46 33775 53.32439911934 0 +46 33775 53.32439911934 0 +46 33784 53.32455911934 0 +46 33784 53.32455911934 0 +46 33830 53.357383991743 0 +46 33830 53.357383991743 0 +46 33835 53.357543991743 0 +46 33835 53.357543991743 0 +46 33863 53.443993151421 0 +46 33863 53.443993151421 0 +46 33869 53.444153151421 0 +46 33869 53.444153151421 0 +46 33902 53.624399122413 0 +46 33902 53.624399122413 0 +46 33911 53.624559122413 0 +46 33911 53.624559122413 0 +46 33957 53.657384007982 0 +46 33957 53.657384007982 0 +46 33962 53.657544007982 0 +46 33962 53.657544007982 0 +46 33990 53.743993151421 0 +46 33990 53.743993151421 0 +46 33996 53.744153151421 0 +46 33996 53.744153151421 0 +46 34029 53.924399125883 0 +46 34029 53.924399125883 0 +46 34038 53.924559125883 0 +46 34038 53.924559125883 0 +46 34084 53.957384023455 0 +46 34084 53.957384023455 0 +46 34089 53.957544023455 0 +46 34089 53.957544023455 0 +46 34117 54.043993151421 0 +46 34117 54.043993151421 0 +46 34123 54.044153151421 0 +46 34123 54.044153151421 0 +46 34156 54.224399129356 0 +46 34156 54.224399129356 0 +46 34165 54.224559129356 0 +46 34165 54.224559129356 0 +46 34211 54.257384037982 0 +46 34211 54.257384037982 0 +46 34216 54.257544037982 0 +46 34216 54.257544037982 0 +46 34244 54.343993151421 0 +46 34244 54.343993151421 0 +46 34250 54.344153151421 0 +46 34250 54.344153151421 0 +46 34283 54.524399132878 0 +46 34283 54.524399132878 0 +46 34292 54.524559132878 0 +46 34292 54.524559132878 0 +46 34338 54.557384051792 0 +46 34338 54.557384051792 0 +46 34343 54.557544051792 0 +46 34343 54.557544051792 0 +46 34371 54.643993151421 0 +46 34371 54.643993151421 0 +46 34377 54.644153151421 0 +46 34377 54.644153151421 0 +46 34410 54.824399136418 0 +46 34410 54.824399136418 0 +46 34419 54.824559136418 0 +46 34419 54.824559136418 0 +46 34465 54.857384066271 0 +46 34465 54.857384066271 0 +46 34470 54.857544066271 0 +46 34470 54.857544066271 0 +46 34498 54.943993151421 0 +46 34498 54.943993151421 0 +46 34504 54.944153151421 0 +46 34504 54.944153151421 0 +46 34537 55.124399139869 0 +46 34537 55.124399139869 0 +46 34546 55.124559139869 0 +46 34546 55.124559139869 0 +46 34592 55.157384081514 0 +46 34592 55.157384081514 0 +46 34597 55.157544081514 0 +46 34597 55.157544081514 0 +46 34625 55.243993151421 0 +46 34625 55.243993151421 0 +46 34631 55.244153151421 0 +46 34631 55.244153151421 0 +46 34664 55.424399143329 0 +46 34664 55.424399143329 0 +46 34673 55.424559143329 0 +46 34673 55.424559143329 0 +46 34719 55.457384097382 0 +46 34719 55.457384097382 0 +46 34724 55.457544097382 0 +46 34724 55.457544097382 0 +46 34752 55.543993151421 0 +46 34752 55.543993151421 0 +46 34758 55.544153151421 0 +46 34758 55.544153151421 0 +46 34791 55.724399146854 0 +46 34791 55.724399146854 0 +46 34800 55.724559146854 0 +46 34800 55.724559146854 0 +46 34846 55.757384113825 0 +46 34846 55.757384113825 0 +46 34851 55.757544113825 0 +46 34851 55.757544113825 0 +46 34879 55.843993151421 0 +46 34879 55.843993151421 0 +46 34885 55.844153151421 0 +46 34885 55.844153151421 0 +46 34918 56.024399150367 0 +46 34918 56.024399150367 0 +46 34927 56.024559150367 0 +46 34927 56.024559150367 0 +46 34973 56.057384130858 0 +46 34973 56.057384130858 0 +46 34978 56.057544130858 0 +46 34978 56.057544130858 0 +46 35006 56.143993151421 0 +46 35006 56.143993151421 0 +46 35012 56.144153151421 0 +46 35012 56.144153151421 0 +46 35045 56.324399153849 0 +46 35045 56.324399153849 0 +46 35054 56.324559153849 0 +46 35054 56.324559153849 0 +46 35101 56.357384148407 0 +46 35101 56.357384148407 0 +46 35110 56.357544148407 0 +46 35110 56.357544148407 0 +46 35133 56.443993151421 0 +46 35133 56.443993151421 0 +46 35139 56.444153151421 0 +46 35139 56.444153151421 0 +40 356 4.1 180 +51 552 4.543993151421 1 +51 553 4.543993151421 2 +51 557 4.544153151421 1 +51 558 4.544153151421 0 +51 671 4.843993151421 1 +51 672 4.843993151421 2 +51 676 4.844153151421 1 +51 677 4.844153151421 0 +51 791 5.143993151421 1 +51 792 5.143993151421 2 +51 797 5.144153151421 1 +51 798 5.144153151421 0 +51 925 5.443993151421 1 +51 926 5.443993151421 2 +51 931 5.444153151421 1 +51 932 5.444153151421 0 +51 1083 5.743993151421 1 +51 1084 5.743993151421 2 +51 1089 5.744153151421 1 +51 1090 5.744153151421 0 +51 1241 6.043993151421 1 +51 1242 6.043993151421 2 +51 1247 6.044153151421 1 +51 1248 6.044153151421 0 +51 1422 6.343993151421 1 +51 1423 6.343993151421 2 +51 1429 6.344153151421 1 +51 1430 6.344153151421 0 +51 1639 6.643993151421 1 +51 1640 6.643993151421 2 +51 1646 6.644153151421 1 +51 1647 6.644153151421 0 +51 1856 6.943993151421 1 +51 1857 6.943993151421 2 +51 1863 6.944153151421 1 +51 1864 6.944153151421 0 +51 2073 7.243993151421 1 +51 2074 7.243993151421 2 +51 2080 7.244153151421 1 +51 2081 7.244153151421 0 +51 2290 7.543993151421 1 +51 2291 7.543993151421 2 +51 2297 7.544153151421 1 +51 2298 7.544153151421 0 +51 2507 7.843993151421 1 +51 2508 7.843993151421 2 +51 2514 7.844153151421 1 +51 2515 7.844153151421 0 +51 2724 8.143993151421 1 +51 2725 8.143993151421 2 +51 2731 8.144153151421 1 +51 2732 8.144153151421 0 +51 2945 8.443993151421 1 +51 2946 8.443993151421 2 +51 2952 8.444153151421 1 +51 2953 8.444153151421 0 +51 3170 8.743993151421 1 +51 3171 8.743993151421 2 +51 3177 8.744153151421 1 +51 3178 8.744153151421 0 +51 3395 9.043993151421 1 +51 3396 9.043993151421 2 +51 3402 9.044153151421 1 +51 3403 9.044153151421 0 +51 3620 9.343993151421 1 +51 3621 9.343993151421 2 +51 3627 9.344153151421 1 +51 3628 9.344153151421 0 +51 3845 9.643993151421 1 +51 3846 9.643993151421 2 +51 3852 9.644153151421 1 +51 3853 9.644153151421 0 +51 4070 9.943993151421 1 +51 4071 9.943993151421 2 +51 4077 9.944153151421 1 +51 4078 9.944153151421 0 +51 4295 10.243993151421 1 +51 4296 10.243993151421 2 +51 4302 10.244153151421 1 +51 4303 10.244153151421 0 +51 4520 10.543993151421 1 +51 4521 10.543993151421 2 +51 4527 10.544153151421 1 +51 4528 10.544153151421 0 +51 4753 10.843993151421 1 +51 4754 10.843993151421 2 +51 4760 10.844153151421 1 +51 4761 10.844153151421 0 +51 4986 11.143993151421 1 +51 4987 11.143993151421 2 +51 4993 11.144153151421 1 +51 4994 11.144153151421 0 +51 5219 11.443993151421 1 +51 5220 11.443993151421 2 +51 5226 11.444153151421 1 +51 5227 11.444153151421 0 +51 5460 11.743993151421 1 +51 5461 11.743993151421 2 +51 5467 11.744153151421 1 +51 5468 11.744153151421 0 +51 5701 12.043993151421 1 +51 5702 12.043993151421 2 +51 5708 12.044153151421 1 +51 5709 12.044153151421 0 +51 5942 12.343993151421 1 +51 5943 12.343993151421 2 +51 5949 12.344153151421 1 +51 5950 12.344153151421 0 +51 6183 12.643993151421 1 +51 6184 12.643993151421 2 +51 6190 12.644153151421 1 +51 6191 12.644153151421 0 +51 6424 12.943993151421 1 +51 6425 12.943993151421 2 +51 6431 12.944153151421 1 +51 6432 12.944153151421 0 +51 6665 13.243993151421 1 +51 6666 13.243993151421 2 +51 6672 13.244153151421 1 +51 6673 13.244153151421 0 +51 6906 13.543993151421 1 +51 6907 13.543993151421 2 +51 6913 13.544153151421 1 +51 6914 13.544153151421 0 +51 7147 13.843993151421 1 +51 7148 13.843993151421 2 +51 7154 13.844153151421 1 +51 7155 13.844153151421 0 +51 7388 14.143993151421 1 +51 7389 14.143993151421 2 +51 7395 14.144153151421 1 +51 7396 14.144153151421 0 +51 7629 14.443993151421 1 +51 7630 14.443993151421 2 +51 7636 14.444153151421 1 +51 7637 14.444153151421 0 +51 7870 14.743993151421 1 +51 7871 14.743993151421 2 +51 7877 14.744153151421 1 +51 7878 14.744153151421 0 +51 8111 15.043993151421 1 +51 8112 15.043993151421 2 +51 8118 15.044153151421 1 +51 8119 15.044153151421 0 +51 8352 15.343993151421 1 +51 8353 15.343993151421 2 +51 8359 15.344153151421 1 +51 8360 15.344153151421 0 +51 8593 15.643993151421 1 +51 8594 15.643993151421 2 +51 8600 15.644153151421 1 +51 8601 15.644153151421 0 +51 8834 15.943993151421 1 +51 8835 15.943993151421 2 +51 8841 15.944153151421 1 +51 8842 15.944153151421 0 +51 9083 16.243993151421 1 +51 9084 16.243993151421 2 +51 9090 16.244153151421 1 +51 9091 16.244153151421 0 +51 9332 16.543993151421 1 +51 9333 16.543993151421 2 +51 9339 16.544153151421 1 +51 9340 16.544153151421 0 +51 9581 16.843993151421 1 +51 9582 16.843993151421 2 +51 9588 16.844153151421 1 +51 9589 16.844153151421 0 +51 9830 17.143993151421 1 +51 9831 17.143993151421 2 +51 9837 17.144153151421 1 +51 9838 17.144153151421 0 +51 10079 17.443993151421 1 +51 10080 17.443993151421 2 +51 10086 17.444153151421 1 +51 10087 17.444153151421 0 +51 10328 17.743993151421 1 +51 10329 17.743993151421 2 +51 10335 17.744153151421 1 +51 10336 17.744153151421 0 +51 10569 18.043993151421 1 +51 10570 18.043993151421 2 +51 10576 18.044153151421 1 +51 10577 18.044153151421 0 +51 10806 18.343993151421 1 +51 10807 18.343993151421 2 +51 10813 18.344153151421 1 +51 10814 18.344153151421 0 +51 11039 18.643993151421 1 +51 11040 18.643993151421 2 +51 11046 18.644153151421 1 +51 11047 18.644153151421 0 +51 11272 18.943993151421 1 +51 11273 18.943993151421 2 +51 11279 18.944153151421 1 +51 11280 18.944153151421 0 +51 11505 19.243993151421 1 +51 11506 19.243993151421 2 +51 11512 19.244153151421 1 +51 11513 19.244153151421 0 +51 11738 19.543993151421 1 +51 11739 19.543993151421 2 +51 11745 19.544153151421 1 +51 11746 19.544153151421 0 +51 11971 19.843993151421 1 +51 11972 19.843993151421 2 +51 11978 19.844153151421 1 +51 11979 19.844153151421 0 +51 12212 20.143993151421 1 +51 12213 20.143993151421 2 +51 12219 20.144153151421 1 +51 12220 20.144153151421 0 +51 12453 20.443993151421 1 +51 12454 20.443993151421 2 +51 12460 20.444153151421 1 +51 12461 20.444153151421 0 +51 12694 20.743993151421 1 +51 12695 20.743993151421 2 +51 12701 20.744153151421 1 +51 12702 20.744153151421 0 +51 12935 21.043993151421 1 +51 12936 21.043993151421 2 +51 12942 21.044153151421 1 +51 12943 21.044153151421 0 +51 13176 21.343993151421 1 +51 13177 21.343993151421 2 +51 13183 21.344153151421 1 +51 13184 21.344153151421 0 +51 13417 21.643993151421 1 +51 13418 21.643993151421 2 +51 13424 21.644153151421 1 +51 13425 21.644153151421 0 +51 13658 21.943993151421 1 +51 13659 21.943993151421 2 +51 13665 21.944153151421 1 +51 13666 21.944153151421 0 +51 13899 22.243993151421 1 +51 13900 22.243993151421 2 +51 13906 22.244153151421 1 +51 13907 22.244153151421 0 +51 14140 22.543993151421 1 +51 14141 22.543993151421 2 +51 14147 22.544153151421 1 +51 14148 22.544153151421 0 +51 14381 22.843993151421 1 +51 14382 22.843993151421 2 +51 14388 22.844153151421 1 +51 14389 22.844153151421 0 +51 14622 23.143993151421 1 +51 14623 23.143993151421 2 +51 14629 23.144153151421 1 +51 14630 23.144153151421 0 +51 14863 23.443993151421 1 +51 14864 23.443993151421 2 +51 14870 23.444153151421 1 +51 14871 23.444153151421 0 +51 15104 23.743993151421 1 +51 15105 23.743993151421 2 +51 15111 23.744153151421 1 +51 15112 23.744153151421 0 +51 15345 24.043993151421 1 +51 15346 24.043993151421 2 +51 15352 24.044153151421 1 +51 15353 24.044153151421 0 +51 15586 24.343993151421 1 +51 15587 24.343993151421 2 +51 15593 24.344153151421 1 +51 15594 24.344153151421 0 +51 15827 24.643993151421 1 +51 15828 24.643993151421 2 +51 15834 24.644153151421 1 +51 15835 24.644153151421 0 +51 16068 24.943993151421 1 +51 16069 24.943993151421 2 +51 16075 24.944153151421 1 +51 16076 24.944153151421 0 +51 16309 25.243993151421 1 +51 16310 25.243993151421 2 +51 16316 25.244153151421 1 +51 16317 25.244153151421 0 +51 16550 25.543993151421 1 +51 16551 25.543993151421 2 +51 16557 25.544153151421 1 +51 16558 25.544153151421 0 +51 16791 25.843993151421 1 +51 16792 25.843993151421 2 +51 16798 25.844153151421 1 +51 16799 25.844153151421 0 +51 17032 26.143993151421 1 +51 17033 26.143993151421 2 +51 17039 26.144153151421 1 +51 17040 26.144153151421 0 +51 17273 26.443993151421 1 +51 17274 26.443993151421 2 +51 17280 26.444153151421 1 +51 17281 26.444153151421 0 +51 17514 26.743993151421 1 +51 17515 26.743993151421 2 +51 17521 26.744153151421 1 +51 17522 26.744153151421 0 +51 17755 27.043993151421 1 +51 17756 27.043993151421 2 +51 17762 27.044153151421 1 +51 17763 27.044153151421 0 +51 17988 27.343993151421 1 +51 17989 27.343993151421 2 +51 17995 27.344153151421 1 +51 17996 27.344153151421 0 +51 18221 27.643993151421 1 +51 18222 27.643993151421 2 +51 18228 27.644153151421 1 +51 18229 27.644153151421 0 +51 18454 27.943993151421 1 +51 18455 27.943993151421 2 +51 18461 27.944153151421 1 +51 18462 27.944153151421 0 +51 18687 28.243993151421 1 +51 18688 28.243993151421 2 +51 18694 28.244153151421 1 +51 18695 28.244153151421 0 +51 18920 28.543993151421 1 +51 18921 28.543993151421 2 +51 18927 28.544153151421 1 +51 18928 28.544153151421 0 +51 19153 28.843993151421 1 +51 19154 28.843993151421 2 +51 19160 28.844153151421 1 +51 19161 28.844153151421 0 +51 19378 29.143993151421 1 +51 19379 29.143993151421 2 +51 19385 29.144153151421 1 +51 19386 29.144153151421 0 +51 19603 29.443993151421 1 +51 19604 29.443993151421 2 +51 19610 29.444153151421 1 +51 19611 29.444153151421 0 +51 19828 29.743993151421 1 +51 19829 29.743993151421 2 +51 19835 29.744153151421 1 +51 19836 29.744153151421 0 +51 20053 30.043993151421 1 +51 20054 30.043993151421 2 +51 20060 30.044153151421 1 +51 20061 30.044153151421 0 +51 20278 30.343993151421 1 +51 20279 30.343993151421 2 +51 20285 30.344153151421 1 +51 20286 30.344153151421 0 +51 20503 30.643993151421 1 +51 20504 30.643993151421 2 +51 20510 30.644153151421 1 +51 20511 30.644153151421 0 +51 20728 30.943993151421 1 +51 20729 30.943993151421 2 +51 20735 30.944153151421 1 +51 20736 30.944153151421 0 +51 20961 31.243993151421 1 +51 20962 31.243993151421 2 +51 20968 31.244153151421 1 +51 20969 31.244153151421 0 +51 21194 31.543993151421 1 +51 21195 31.543993151421 2 +51 21201 31.544153151421 1 +51 21202 31.544153151421 0 +51 21427 31.843993151421 1 +51 21428 31.843993151421 2 +51 21434 31.844153151421 1 +51 21435 31.844153151421 0 +51 21660 32.143993151421 1 +51 21661 32.143993151421 2 +51 21667 32.144153151421 1 +51 21668 32.144153151421 0 +51 21893 32.443993151421 1 +51 21894 32.443993151421 2 +51 21900 32.444153151421 1 +51 21901 32.444153151421 0 +51 22126 32.743993151421 1 +51 22127 32.743993151421 2 +51 22133 32.744153151421 1 +51 22134 32.744153151421 0 +51 22359 33.043993151421 1 +51 22360 33.043993151421 2 +51 22366 33.044153151421 1 +51 22367 33.044153151421 0 +51 22592 33.343993151421 1 +51 22593 33.343993151421 2 +51 22599 33.344153151421 1 +51 22600 33.344153151421 0 +51 22825 33.643993151421 1 +51 22826 33.643993151421 2 +51 22832 33.644153151421 1 +51 22833 33.644153151421 0 +51 23049 33.943993151421 1 +51 23050 33.943993151421 2 +51 23055 33.944153151421 1 +51 23056 33.944153151421 0 +51 23207 34.243993151421 1 +51 23208 34.243993151421 2 +51 23213 34.244153151421 1 +51 23214 34.244153151421 0 +51 23365 34.543993151421 1 +51 23366 34.543993151421 2 +51 23371 34.544153151421 1 +51 23372 34.544153151421 0 +51 23523 34.843993151421 1 +51 23524 34.843993151421 2 +51 23529 34.844153151421 1 +51 23530 34.844153151421 0 +51 23681 35.143993151421 1 +51 23682 35.143993151421 2 +51 23687 35.144153151421 1 +51 23688 35.144153151421 0 +51 23847 35.443993151421 1 +51 23848 35.443993151421 2 +51 23853 35.444153151421 1 +51 23854 35.444153151421 0 +51 24013 35.743993151421 1 +51 24014 35.743993151421 2 +51 24019 35.744153151421 1 +51 24020 35.744153151421 0 +51 24179 36.043993151421 1 +51 24180 36.043993151421 2 +51 24185 36.044153151421 1 +51 24186 36.044153151421 0 +51 24345 36.343993151421 1 +51 24346 36.343993151421 2 +51 24351 36.344153151421 1 +51 24352 36.344153151421 0 +51 24511 36.643993151421 1 +51 24512 36.643993151421 2 +51 24517 36.644153151421 1 +51 24518 36.644153151421 0 +51 24677 36.943993151421 1 +51 24678 36.943993151421 2 +51 24683 36.944153151421 1 +51 24684 36.944153151421 0 +51 24843 37.243993151421 1 +51 24844 37.243993151421 2 +51 24849 37.244153151421 1 +51 24850 37.244153151421 0 +51 25009 37.543993151421 1 +51 25010 37.543993151421 2 +51 25015 37.544153151421 1 +51 25016 37.544153151421 0 +51 25175 37.843993151421 1 +51 25176 37.843993151421 2 +51 25181 37.844153151421 1 +51 25182 37.844153151421 0 +51 25341 38.143993151421 1 +51 25342 38.143993151421 2 +51 25347 38.144153151421 1 +51 25348 38.144153151421 0 +51 25507 38.443993151421 1 +51 25508 38.443993151421 2 +51 25513 38.444153151421 1 +51 25514 38.444153151421 0 +51 25673 38.743993151421 1 +51 25674 38.743993151421 2 +51 25679 38.744153151421 1 +51 25680 38.744153151421 0 +51 25839 39.043993151421 1 +51 25840 39.043993151421 2 +51 25845 39.044153151421 1 +51 25846 39.044153151421 0 +51 26005 39.343993151421 1 +51 26006 39.343993151421 2 +51 26011 39.344153151421 1 +51 26012 39.344153151421 0 +51 26171 39.643993151421 1 +51 26172 39.643993151421 2 +51 26177 39.644153151421 1 +51 26178 39.644153151421 0 +51 26337 39.943993151421 1 +51 26338 39.943993151421 2 +51 26343 39.944153151421 1 +51 26344 39.944153151421 0 +51 26503 40.243993151421 1 +51 26504 40.243993151421 2 +51 26509 40.244153151421 1 +51 26510 40.244153151421 0 +51 26669 40.543993151421 1 +51 26670 40.543993151421 2 +51 26675 40.544153151421 1 +51 26676 40.544153151421 0 +51 26839 40.843993151421 1 +51 26840 40.843993151421 2 +51 26845 40.844153151421 1 +51 26846 40.844153151421 0 +51 27013 41.143993151421 1 +51 27014 41.143993151421 2 +51 27019 41.144153151421 1 +51 27020 41.144153151421 0 +51 27187 41.443993151421 1 +51 27188 41.443993151421 2 +51 27193 41.444153151421 1 +51 27194 41.444153151421 0 +51 27361 41.743993151421 1 +51 27362 41.743993151421 2 +51 27367 41.744153151421 1 +51 27368 41.744153151421 0 +51 27535 42.043993151421 1 +51 27536 42.043993151421 2 +51 27541 42.044153151421 1 +51 27542 42.044153151421 0 +51 27709 42.343993151421 1 +51 27710 42.343993151421 2 +51 27715 42.344153151421 1 +51 27716 42.344153151421 0 +51 27883 42.643993151421 1 +51 27884 42.643993151421 2 +51 27889 42.644153151421 1 +51 27890 42.644153151421 0 +51 28057 42.943993151421 1 +51 28058 42.943993151421 2 +51 28063 42.944153151421 1 +51 28064 42.944153151421 0 +51 28231 43.243993151421 1 +51 28232 43.243993151421 2 +51 28237 43.244153151421 1 +51 28238 43.244153151421 0 +51 28405 43.543993151421 1 +51 28406 43.543993151421 2 +51 28411 43.544153151421 1 +51 28412 43.544153151421 0 +51 28579 43.843993151421 1 +51 28580 43.843993151421 2 +51 28585 43.844153151421 1 +51 28586 43.844153151421 0 +51 28753 44.143993151421 1 +51 28754 44.143993151421 2 +51 28759 44.144153151421 1 +51 28760 44.144153151421 0 +51 28923 44.443993151421 1 +51 28924 44.443993151421 2 +51 28929 44.444153151421 1 +51 28930 44.444153151421 0 +51 29089 44.743993151421 1 +51 29090 44.743993151421 2 +51 29095 44.744153151421 1 +51 29096 44.744153151421 0 +51 29255 45.043993151421 1 +51 29256 45.043993151421 2 +51 29261 45.044153151421 1 +51 29262 45.044153151421 0 +51 29421 45.343993151421 1 +51 29422 45.343993151421 2 +51 29427 45.344153151421 1 +51 29428 45.344153151421 0 +51 29587 45.643993151421 1 +51 29588 45.643993151421 2 +51 29593 45.644153151421 1 +51 29594 45.644153151421 0 +51 29753 45.943993151421 1 +51 29754 45.943993151421 2 +51 29759 45.944153151421 1 +51 29760 45.944153151421 0 +51 29919 46.243993151421 1 +51 29920 46.243993151421 2 +51 29925 46.244153151421 1 +51 29926 46.244153151421 0 +51 30085 46.543993151421 1 +51 30086 46.543993151421 2 +51 30091 46.544153151421 1 +51 30092 46.544153151421 0 +51 30251 46.843993151421 1 +51 30252 46.843993151421 2 +51 30257 46.844153151421 1 +51 30258 46.844153151421 0 +51 30417 47.143993151421 1 +51 30418 47.143993151421 2 +51 30423 47.144153151421 1 +51 30424 47.144153151421 0 +51 30583 47.443993151421 1 +51 30584 47.443993151421 2 +51 30589 47.444153151421 1 +51 30590 47.444153151421 0 +51 30749 47.743993151421 1 +51 30750 47.743993151421 2 +51 30755 47.744153151421 1 +51 30756 47.744153151421 0 +51 30915 48.043993151421 1 +51 30916 48.043993151421 2 +51 30921 48.044153151421 1 +51 30922 48.044153151421 0 +51 31081 48.343993151421 1 +51 31082 48.343993151421 2 +51 31087 48.344153151421 1 +51 31088 48.344153151421 0 +51 31247 48.643993151421 1 +51 31248 48.643993151421 2 +51 31253 48.644153151421 1 +51 31254 48.644153151421 0 +51 31413 48.943993151421 1 +51 31414 48.943993151421 2 +51 31419 48.944153151421 1 +51 31420 48.944153151421 0 +51 31579 49.243993151421 1 +51 31580 49.243993151421 2 +51 31585 49.244153151421 1 +51 31586 49.244153151421 0 +51 31745 49.543993151421 1 +51 31746 49.543993151421 2 +51 31751 49.544153151421 1 +51 31752 49.544153151421 0 +51 31911 49.843993151421 1 +51 31912 49.843993151421 2 +51 31917 49.844153151421 1 +51 31918 49.844153151421 0 +51 32077 50.143993151421 1 +51 32078 50.143993151421 2 +51 32083 50.144153151421 1 +51 32084 50.144153151421 0 +51 32243 50.443993151421 1 +51 32244 50.443993151421 2 +51 32249 50.444153151421 1 +51 32250 50.444153151421 0 +51 32409 50.743993151421 1 +51 32410 50.743993151421 2 +51 32415 50.744153151421 1 +51 32416 50.744153151421 0 +51 32575 51.043993151421 1 +51 32576 51.043993151421 2 +51 32581 51.044153151421 1 +51 32582 51.044153151421 0 +51 32733 51.343993151421 1 +51 32734 51.343993151421 2 +51 32739 51.344153151421 1 +51 32740 51.344153151421 0 +51 32899 51.643993151421 1 +51 32900 51.643993151421 2 +51 32905 51.644153151421 1 +51 32906 51.644153151421 0 +51 33065 51.943993151421 1 +51 33066 51.943993151421 2 +51 33071 51.944153151421 1 +51 33072 51.944153151421 0 +51 33231 52.243993151421 1 +51 33232 52.243993151421 2 +51 33237 52.244153151421 1 +51 33238 52.244153151421 0 +51 33397 52.543993151421 1 +51 33398 52.543993151421 2 +51 33403 52.544153151421 1 +51 33404 52.544153151421 0 +51 33563 52.843993151421 1 +51 33564 52.843993151421 2 +51 33569 52.844153151421 1 +51 33570 52.844153151421 0 +51 33729 53.143993151421 1 +51 33730 53.143993151421 2 +51 33735 53.144153151421 1 +51 33736 53.144153151421 0 +51 33863 53.443993151421 1 +51 33864 53.443993151421 2 +51 33868 53.444153151421 1 +51 33869 53.444153151421 0 +51 33990 53.743993151421 1 +51 33991 53.743993151421 2 +51 33995 53.744153151421 1 +51 33996 53.744153151421 0 +51 34117 54.043993151421 1 +51 34118 54.043993151421 2 +51 34122 54.044153151421 1 +51 34123 54.044153151421 0 +51 34244 54.343993151421 1 +51 34245 54.343993151421 2 +51 34249 54.344153151421 1 +51 34250 54.344153151421 0 +51 34371 54.643993151421 1 +51 34372 54.643993151421 2 +51 34376 54.644153151421 1 +51 34377 54.644153151421 0 +51 34498 54.943993151421 1 +51 34499 54.943993151421 2 +51 34503 54.944153151421 1 +51 34504 54.944153151421 0 +51 34625 55.243993151421 1 +51 34626 55.243993151421 2 +51 34630 55.244153151421 1 +51 34631 55.244153151421 0 +51 34752 55.543993151421 1 +51 34753 55.543993151421 2 +51 34757 55.544153151421 1 +51 34758 55.544153151421 0 +51 34879 55.843993151421 1 +51 34880 55.843993151421 2 +51 34884 55.844153151421 1 +51 34885 55.844153151421 0 +51 35006 56.143993151421 1 +51 35007 56.143993151421 2 +51 35011 56.144153151421 1 +51 35012 56.144153151421 0 +51 35133 56.443993151421 1 +51 35134 56.443993151421 2 +51 35138 56.444153151421 1 +51 35139 56.444153151421 0 +41 356 4.1 1 +41 396 4.131276647939 3 +41 401 4.131436647939 1 +41 493 4.43127664842 3 +41 498 4.43143664842 1 +41 552 4.543993151421 0 +41 558 4.544153151421 1 +41 612 4.731276648452 3 +41 617 4.731436648452 1 +41 671 4.843993151421 0 +41 677 4.844153151421 1 +41 731 5.031276648071 3 +41 736 5.031436648071 1 +41 791 5.143993151421 0 +41 798 5.144153151421 1 +41 861 5.331276647275 3 +41 867 5.331436647275 1 +41 925 5.443993151421 0 +41 932 5.444153151421 1 +41 995 5.631276646135 3 +41 1001 5.631436646135 1 +41 1055 5.693585836534 3 +41 1061 5.693745836534 1 +41 1083 5.743993151421 0 +41 1090 5.744153151421 1 +41 1153 5.931276644725 3 +41 1159 5.931436644725 1 +41 1213 5.993585836591 3 +41 1219 5.993745836591 1 +41 1241 6.043993151421 0 +41 1248 6.044153151421 1 +41 1320 6.231276643012 3 +41 1331 6.231436643012 1 +41 1391 6.293585836659 3 +41 1398 6.293745836659 1 +41 1422 6.343993151421 0 +41 1430 6.344153151421 1 +41 1536 6.531276640981 3 +41 1547 6.531436640981 1 +41 1608 6.593585836741 3 +41 1615 6.593745836741 1 +41 1639 6.643993151421 0 +41 1647 6.644153151421 1 +41 1753 6.83127663868 3 +41 1764 6.83143663868 1 +41 1825 6.893585836836 3 +41 1832 6.893745836836 1 +41 1856 6.943993151421 0 +41 1864 6.944153151421 1 +41 1970 7.131276636128 3 +41 1981 7.131436636128 1 +41 2042 7.193585836946 3 +41 2049 7.193745836946 1 +41 2073 7.243993151421 0 +41 2081 7.244153151421 1 +41 2187 7.431276633301 3 +41 2198 7.431436633301 1 +41 2259 7.493585837077 3 +41 2266 7.493745837077 1 +41 2290 7.543993151421 0 +41 2298 7.544153151421 1 +41 2404 7.73127663025 3 +41 2415 7.73143663025 1 +41 2476 7.79358583722 3 +41 2483 7.79374583722 1 +41 2507 7.843993151421 0 +41 2515 7.844153151421 1 +41 2589 8.024399341429 2 +41 2608 8.024559341429 1 +41 2622 8.031276627008 3 +41 2637 8.031436627008 1 +41 2693 8.093585837381 3 +41 2700 8.093745837381 1 +41 2724 8.143993151421 0 +41 2732 8.144153151421 1 +41 2806 8.324399339726 3 +41 2825 8.324559339726 1 +41 2843 8.331276623516 3 +41 2858 8.331436623516 1 +41 2914 8.393585837564 3 +41 2921 8.393745837564 1 +41 2945 8.443993151421 0 +41 2953 8.444153151421 1 +41 3031 8.624399337937 3 +41 3050 8.624559337937 1 +41 3068 8.631276619892 3 +41 3083 8.631436619892 1 +41 3139 8.693585837758 3 +41 3146 8.693745837758 1 +41 3170 8.743993151421 0 +41 3178 8.744153151421 1 +41 3256 8.924399336079 3 +41 3275 8.924559336079 1 +41 3293 8.931276616157 3 +41 3308 8.931436616157 1 +41 3364 8.993585837958 3 +41 3371 8.993745837958 1 +41 3395 9.043993151421 0 +41 3403 9.044153151421 1 +41 3481 9.2243993342 3 +41 3500 9.2245593342 1 +41 3518 9.231276612299 3 +41 3533 9.231436612299 1 +41 3589 9.293585838174 3 +41 3596 9.293745838174 1 +41 3620 9.343993151421 0 +41 3628 9.344153151421 1 +41 3706 9.524399332304 3 +41 3725 9.524559332304 1 +41 3743 9.531276608424 3 +41 3758 9.531436608424 1 +41 3814 9.593585838387 3 +41 3821 9.593745838387 1 +41 3845 9.643993151421 0 +41 3853 9.644153151421 1 +41 3931 9.824399330432 3 +41 3950 9.824559330432 1 +41 3968 9.831276604546 3 +41 3983 9.831436604546 1 +41 4039 9.89358583861 3 +41 4046 9.89374583861 1 +41 4070 9.943993151421 0 +41 4078 9.944153151421 1 +41 4156 10.124399328574 3 +41 4175 10.124559328574 1 +41 4193 10.13127660067 3 +41 4208 10.13143660067 1 +41 4264 10.193585838842 3 +41 4271 10.193745838842 1 +41 4295 10.243993151421 0 +41 4303 10.244153151421 1 +41 4381 10.424399326766 3 +41 4400 10.424559326766 1 +41 4418 10.43127659687 3 +41 4433 10.43143659687 1 +41 4489 10.493585839083 3 +41 4496 10.493745839083 1 +41 4520 10.543993151421 0 +41 4528 10.544153151421 1 +41 4577 10.714557554278 3 +41 4596 10.714717554278 1 +41 4614 10.724399325082 3 +41 4633 10.724559325082 1 +41 4651 10.731276593222 3 +41 4666 10.731436593222 1 +41 4722 10.793585839325 3 +41 4729 10.793745839325 1 +41 4753 10.843993151421 0 +41 4761 10.844153151421 1 +41 4810 11.014557537855 3 +41 4829 11.014717537855 1 +41 4847 11.0243993239 3 +41 4866 11.0245593239 1 +41 4884 11.031276590451 3 +41 4899 11.031436590451 1 +41 4955 11.093585839276 3 +41 4962 11.093745839276 1 +41 4986 11.143993151421 0 +41 4994 11.144153151421 1 +41 5043 11.314557521994 3 +41 5062 11.314717521994 1 +41 5080 11.324399323363 3 +41 5099 11.324559323363 1 +41 5117 11.331276588755 3 +41 5132 11.331436588755 1 +41 5188 11.39358583882 3 +41 5195 11.39374583882 1 +41 5219 11.443993151421 0 +41 5227 11.444153151421 1 +41 5276 11.614557506596 3 +41 5295 11.614717506596 1 +41 5313 11.624399323354 3 +41 5332 11.624559323354 1 +41 5350 11.631276587986 3 +41 5365 11.631436587986 1 +41 5425 11.69358583807 3 +41 5432 11.69374583807 1 +41 5460 11.743993151421 0 +41 5468 11.744153151421 1 +41 5517 11.914557491616 3 +41 5536 11.914717491616 1 +41 5554 11.924399323823 3 +41 5573 11.924559323823 1 +41 5591 11.93127658806 3 +41 5606 11.93143658806 1 +41 5666 11.993585837216 3 +41 5673 11.993745837216 1 +41 5701 12.043993151421 0 +41 5709 12.044153151421 1 +41 5758 12.21455747694 3 +41 5777 12.21471747694 1 +41 5795 12.224399324626 3 +41 5814 12.224559324626 1 +41 5832 12.231276588692 3 +41 5847 12.231436588692 1 +41 5907 12.293585836586 3 +41 5914 12.293745836586 1 +41 5942 12.343993151421 0 +41 5950 12.344153151421 1 +41 5999 12.514557462306 3 +41 6018 12.514717462306 1 +41 6036 12.524399325429 3 +41 6055 12.524559325429 1 +41 6073 12.531276589365 3 +41 6088 12.531436589365 1 +41 6148 12.593585836449 3 +41 6155 12.593745836449 1 +41 6183 12.643993151421 0 +41 6191 12.644153151421 1 +41 6240 12.814557447681 3 +41 6259 12.814717447681 1 +41 6277 12.824399326242 3 +41 6296 12.824559326242 1 +41 6314 12.831276590037 3 +41 6329 12.831436590037 1 +41 6389 12.893585836843 3 +41 6396 12.893745836843 1 +41 6424 12.943993151421 0 +41 6432 12.944153151421 1 +41 6481 13.114557433023 3 +41 6500 13.114717433023 1 +41 6518 13.12439932705 3 +41 6537 13.12455932705 1 +41 6555 13.131276590725 3 +41 6570 13.131436590725 1 +41 6630 13.193585837765 3 +41 6637 13.193745837765 1 +41 6665 13.243993151421 0 +41 6673 13.244153151421 1 +41 6722 13.414557418408 3 +41 6741 13.414717418408 1 +41 6759 13.424399327873 3 +41 6778 13.424559327873 1 +41 6796 13.431276591403 3 +41 6811 13.431436591403 1 +41 6871 13.493585839212 3 +41 6878 13.493745839212 1 +41 6906 13.543993151421 0 +41 6914 13.544153151421 1 +41 6963 13.71455740379 3 +41 6982 13.71471740379 1 +41 7000 13.724399328697 3 +41 7019 13.724559328697 1 +41 7037 13.731276592089 3 +41 7052 13.731436592089 1 +41 7112 13.793585841175 3 +41 7119 13.793745841175 1 +41 7147 13.843993151421 0 +41 7155 13.844153151421 1 +41 7203 14.014557389119 3 +41 7218 14.014717389119 1 +41 7241 14.024399329512 3 +41 7260 14.024559329512 1 +41 7278 14.031276592779 3 +41 7293 14.031436592779 1 +41 7353 14.093585843644 3 +41 7360 14.093745843644 1 +41 7388 14.143993151421 0 +41 7396 14.144153151421 1 +41 7444 14.314557374493 3 +41 7459 14.314717374493 1 +41 7482 14.324399330335 3 +41 7501 14.324559330335 1 +41 7519 14.33127659346 3 +41 7534 14.33143659346 1 +41 7594 14.393585846603 3 +41 7601 14.393745846603 1 +41 7629 14.443993151421 0 +41 7637 14.444153151421 1 +41 7685 14.614557359901 3 +41 7700 14.614717359901 1 +41 7723 14.624399331156 3 +41 7742 14.624559331156 1 +41 7760 14.63127659416 3 +41 7775 14.63143659416 1 +41 7835 14.693585849737 3 +41 7842 14.693745849737 1 +41 7870 14.743993151421 0 +41 7878 14.744153151421 1 +41 7926 14.914557345304 3 +41 7941 14.914717345304 1 +41 7964 14.924399331969 3 +41 7983 14.924559331969 1 +41 8001 14.931276594853 3 +41 8016 14.931436594853 1 +41 8076 14.993585846435 3 +41 8083 14.993745846435 1 +41 8111 15.043993151421 0 +41 8119 15.044153151421 1 +41 8167 15.214557330718 3 +41 8182 15.214717330718 1 +41 8205 15.224399332795 3 +41 8224 15.224559332795 1 +41 8242 15.231276595569 3 +41 8257 15.231436595569 1 +41 8317 15.293585833695 3 +41 8324 15.293745833695 1 +41 8352 15.343993151421 0 +41 8360 15.344153151421 1 +41 8408 15.514557316098 3 +41 8423 15.514717316098 1 +41 8446 15.524399333627 3 +41 8465 15.524559333627 1 +41 8483 15.531276596269 3 +41 8498 15.531436596269 1 +41 8558 15.593585819925 3 +41 8565 15.593745819925 1 +41 8593 15.643993151421 0 +41 8601 15.644153151421 1 +41 8649 15.814557301533 3 +41 8664 15.814717301533 1 +41 8687 15.824399334455 3 +41 8706 15.824559334455 1 +41 8724 15.831276596954 3 +41 8739 15.831436596954 1 +41 8799 15.893585806179 3 +41 8806 15.893745806179 1 +41 8834 15.943993151421 0 +41 8842 15.944153151421 1 +41 8890 16.114557286953 3 +41 8905 16.114717286953 1 +41 8932 16.124399335277 3 +41 8951 16.124559335277 1 +41 8969 16.131276597671 3 +41 8984 16.131436597671 1 +41 9044 16.193585792487 3 +41 9051 16.193745792487 1 +41 9083 16.243993151421 0 +41 9091 16.244153151421 1 +41 9139 16.414557272365 3 +41 9154 16.414717272365 1 +41 9181 16.424399336094 3 +41 9200 16.424559336094 1 +41 9218 16.431276598394 3 +41 9233 16.431436598394 1 +41 9293 16.493585780506 3 +41 9300 16.493745780506 1 +41 9332 16.543993151421 0 +41 9340 16.544153151421 1 +41 9388 16.714557257775 3 +41 9403 16.714717257775 1 +41 9430 16.724399336915 3 +41 9449 16.724559336915 1 +41 9467 16.731276599099 3 +41 9482 16.731436599099 1 +41 9542 16.793585771057 3 +41 9549 16.793745771057 1 +41 9581 16.843993151421 0 +41 9589 16.844153151421 1 +41 9637 17.014557243226 3 +41 9652 17.014717243226 1 +41 9679 17.024399337752 3 +41 9698 17.024559337752 1 +41 9716 17.031276599817 3 +41 9731 17.031436599817 1 +41 9791 17.093585764134 3 +41 9798 17.093745764134 1 +41 9830 17.143993151421 0 +41 9838 17.144153151421 1 +41 9886 17.314557228649 3 +41 9901 17.314717228649 1 +41 9928 17.324399338595 3 +41 9947 17.324559338595 1 +41 9965 17.331276600539 3 +41 9980 17.331436600539 1 +41 10040 17.393585759695 3 +41 10047 17.393745759695 1 +41 10079 17.443993151421 0 +41 10087 17.444153151421 1 +41 10135 17.614557214117 3 +41 10150 17.614717214117 1 +41 10177 17.624399339444 3 +41 10196 17.624559339444 1 +41 10214 17.631276601271 3 +41 10229 17.631436601271 1 +41 10289 17.69358575768 3 +41 10296 17.69374575768 1 +41 10328 17.743993151421 0 +41 10336 17.744153151421 1 +41 10384 17.914557199593 3 +41 10399 17.914717199593 1 +41 10422 17.92439934028 3 +41 10441 17.92455934028 1 +41 10459 17.931276601981 3 +41 10474 17.931436601981 1 +41 10530 17.993585756396 3 +41 10537 17.993745756396 1 +41 10569 18.043993151421 0 +41 10577 18.044153151421 1 +41 10624 18.214557185085 3 +41 10635 18.214717185085 1 +41 10663 18.22439934113 2 +41 10682 18.22455934113 1 +41 10696 18.231276602699 3 +41 10711 18.231436602699 1 +41 10767 18.293585755106 3 +41 10774 18.293745755106 1 +41 10806 18.343993151421 0 +41 10814 18.344153151421 1 +41 10857 18.514557170436 3 +41 10868 18.514717170436 1 +41 10896 18.524399341978 2 +41 10915 18.524559341978 1 +41 10929 18.531276603438 3 +41 10944 18.531436603438 1 +41 11000 18.593585753817 3 +41 11007 18.593745753817 1 +41 11039 18.643993151421 0 +41 11047 18.644153151421 1 +41 11090 18.814557161182 3 +41 11101 18.814717161182 1 +41 11162 18.831276604167 3 +41 11177 18.831436604167 1 +41 11233 18.893585752536 3 +41 11240 18.893745752536 1 +41 11272 18.943993151421 0 +41 11280 18.944153151421 1 +41 11323 19.114557157992 3 +41 11334 19.114717157992 1 +41 11395 19.131276604913 3 +41 11410 19.131436604913 1 +41 11466 19.193585751249 3 +41 11473 19.193745751249 1 +41 11505 19.243993151421 0 +41 11513 19.244153151421 1 +41 11556 19.414557155892 3 +41 11567 19.414717155892 1 +41 11628 19.431276605661 3 +41 11643 19.431436605661 1 +41 11699 19.493585749962 3 +41 11706 19.493745749962 1 +41 11738 19.543993151421 0 +41 11746 19.544153151421 1 +41 11789 19.714557154461 3 +41 11800 19.714717154461 1 +41 11861 19.731276606768 3 +41 11876 19.731436606768 1 +41 11932 19.793585748041 3 +41 11939 19.793745748041 1 +41 11971 19.843993151421 0 +41 11979 19.844153151421 1 +41 12022 20.014557153776 3 +41 12033 20.014717153776 1 +41 12098 20.031276608452 3 +41 12113 20.031436608452 1 +41 12173 20.093585745227 3 +41 12180 20.093745745227 1 +41 12212 20.143993151421 0 +41 12220 20.144153151421 1 +41 12263 20.31455715393 3 +41 12274 20.31471715393 1 +41 12339 20.331276610588 3 +41 12354 20.331436610588 1 +41 12414 20.393585741612 3 +41 12421 20.393745741612 1 +41 12453 20.443993151421 0 +41 12461 20.444153151421 1 +41 12504 20.614557155021 3 +41 12515 20.614717155021 1 +41 12580 20.631276613242 3 +41 12595 20.631436613242 1 +41 12655 20.693585737229 3 +41 12662 20.693745737229 1 +41 12694 20.743993151421 0 +41 12702 20.744153151421 1 +41 12745 20.914557157133 3 +41 12756 20.914717157133 1 +41 12821 20.931276616399 3 +41 12836 20.931436616399 1 +41 12896 20.993585732172 3 +41 12903 20.993745732172 1 +41 12935 21.043993151421 0 +41 12943 21.044153151421 1 +41 12986 21.214557160323 3 +41 12997 21.214717160323 1 +41 13062 21.231276620049 3 +41 13077 21.231436620049 1 +41 13137 21.293585726489 3 +41 13144 21.293745726489 1 +41 13176 21.343993151421 0 +41 13184 21.344153151421 1 +41 13227 21.514557164674 3 +41 13238 21.514717164674 1 +41 13303 21.531276624253 3 +41 13318 21.531436624253 1 +41 13378 21.593585720024 3 +41 13385 21.593745720024 1 +41 13417 21.643993151421 0 +41 13425 21.644153151421 1 +41 13468 21.814557170229 3 +41 13479 21.814717170229 1 +41 13544 21.831276629063 3 +41 13559 21.831436629063 1 +41 13619 21.893585712841 3 +41 13626 21.893745712841 1 +41 13658 21.943993151421 0 +41 13666 21.944153151421 1 +41 13709 22.114557176994 3 +41 13720 22.114717176994 1 +41 13785 22.131276634514 3 +41 13800 22.131436634514 1 +41 13860 22.193585704988 3 +41 13867 22.193745704988 1 +41 13899 22.243993151421 0 +41 13907 22.244153151421 1 +41 13950 22.414557185072 3 +41 13961 22.414717185072 1 +41 14026 22.431276640553 3 +41 14041 22.431436640553 1 +41 14101 22.49358569653 3 +41 14108 22.49374569653 1 +41 14140 22.543993151421 0 +41 14148 22.544153151421 1 +41 14191 22.714557194287 3 +41 14202 22.714717194287 1 +41 14267 22.73127664727 3 +41 14282 22.73143664727 1 +41 14342 22.793585687538 3 +41 14349 22.793745687538 1 +41 14381 22.843993151421 0 +41 14389 22.844153151421 1 +41 14432 23.014557204223 3 +41 14443 23.014717204223 1 +41 14508 23.031276654734 3 +41 14523 23.031436654734 1 +41 14583 23.093585678184 3 +41 14590 23.093745678184 1 +41 14622 23.143993151421 0 +41 14630 23.144153151421 1 +41 14673 23.314557215428 3 +41 14684 23.314717215428 1 +41 14749 23.331276662913 3 +41 14764 23.331436662913 1 +41 14824 23.393585668176 3 +41 14831 23.393745668176 1 +41 14863 23.443993151421 0 +41 14871 23.444153151421 1 +41 14914 23.614557224167 3 +41 14925 23.614717224167 1 +41 14990 23.631276668226 3 +41 15005 23.631436668226 1 +41 15065 23.693585661458 3 +41 15072 23.693745661458 1 +41 15104 23.743993151421 0 +41 15112 23.744153151421 1 +41 15155 23.914557225534 3 +41 15166 23.914717225534 1 +41 15231 23.931276671861 3 +41 15246 23.931436671861 1 +41 15306 23.993585658609 3 +41 15313 23.993745658609 1 +41 15345 24.043993151421 0 +41 15353 24.044153151421 1 +41 15396 24.214557228476 3 +41 15407 24.214717228476 1 +41 15472 24.231276682111 3 +41 15487 24.231436682111 1 +41 15547 24.293585650885 3 +41 15554 24.293745650885 1 +41 15586 24.343993151421 0 +41 15594 24.344153151421 1 +41 15637 24.514557231601 3 +41 15648 24.514717231601 1 +41 15713 24.531276693849 3 +41 15728 24.531436693849 1 +41 15788 24.593585643051 3 +41 15795 24.593745643051 1 +41 15827 24.643993151421 0 +41 15835 24.644153151421 1 +41 15878 24.814557234404 3 +41 15889 24.814717234404 1 +41 15954 24.831276706445 3 +41 15969 24.831436706445 1 +41 16029 24.893585636131 3 +41 16036 24.893745636131 1 +41 16068 24.943993151421 0 +41 16076 24.944153151421 1 +41 16119 25.114557236911 3 +41 16130 25.114717236911 1 +41 16195 25.131276719839 3 +41 16210 25.131436719839 1 +41 16270 25.193585630457 3 +41 16277 25.193745630457 1 +41 16309 25.243993151421 0 +41 16317 25.244153151421 1 +41 16360 25.414557239038 3 +41 16371 25.414717239038 1 +41 16436 25.431276734024 3 +41 16451 25.431436734024 1 +41 16511 25.493585626591 3 +41 16518 25.493745626591 1 +41 16550 25.543993151421 0 +41 16558 25.544153151421 1 +41 16600 25.714557240854 3 +41 16607 25.714717240854 1 +41 16677 25.731276749009 3 +41 16692 25.731436749009 1 +41 16752 25.793585625056 3 +41 16759 25.793745625056 1 +41 16791 25.843993151421 0 +41 16799 25.844153151421 1 +41 16841 26.014557242289 3 +41 16848 26.014717242289 1 +41 16918 26.031276763556 3 +41 16933 26.031436763556 1 +41 16993 26.093585626275 3 +41 17000 26.093745626275 1 +41 17032 26.143993151421 0 +41 17040 26.144153151421 1 +41 17082 26.314557243311 3 +41 17089 26.314717243311 1 +41 17159 26.331276777067 3 +41 17174 26.331436777067 1 +41 17234 26.393585630812 3 +41 17241 26.393745630812 1 +41 17273 26.443993151421 0 +41 17281 26.444153151421 1 +41 17323 26.614557243876 3 +41 17330 26.614717243876 1 +41 17400 26.631276789593 3 +41 17415 26.631436789593 1 +41 17475 26.693585638677 3 +41 17482 26.693745638677 1 +41 17514 26.743993151421 0 +41 17522 26.744153151421 1 +41 17564 26.914557244114 3 +41 17571 26.914717244114 1 +41 17641 26.931276801135 3 +41 17656 26.931436801135 1 +41 17716 26.993585649352 3 +41 17723 26.993745649352 1 +41 17755 27.043993151421 0 +41 17763 27.044153151421 1 +41 17805 27.214557243957 3 +41 17812 27.214717243957 1 +41 17875 27.231276811734 3 +41 17894 27.231436811734 1 +41 17949 27.293585662469 3 +41 17956 27.293745662469 1 +41 17988 27.343993151421 0 +41 17996 27.344153151421 1 +41 18038 27.514557243783 3 +41 18045 27.514717243783 1 +41 18108 27.53127682198 3 +41 18127 27.53143682198 1 +41 18182 27.593585677115 3 +41 18189 27.593745677115 1 +41 18221 27.643993151421 0 +41 18229 27.644153151421 1 +41 18271 27.814557243571 3 +41 18278 27.814717243571 1 +41 18341 27.831276831392 3 +41 18360 27.831436831392 1 +41 18415 27.893585692883 3 +41 18422 27.893745692883 1 +41 18454 27.943993151421 0 +41 18462 27.944153151421 1 +41 18504 28.114557243343 3 +41 18511 28.114717243343 1 +41 18574 28.13127683163 3 +41 18593 28.13143683163 1 +41 18648 28.193585709573 3 +41 18655 28.193745709573 1 +41 18687 28.243993151421 0 +41 18695 28.244153151421 1 +41 18737 28.414557243176 3 +41 18744 28.414717243176 1 +41 18807 28.4312768277 3 +41 18826 28.4314368277 1 +41 18881 28.493585726899 3 +41 18888 28.493745726899 1 +41 18920 28.543993151421 0 +41 18928 28.544153151421 1 +41 18970 28.71455724295 3 +41 18977 28.71471724295 1 +41 19040 28.731276823589 3 +41 19059 28.731436823589 1 +41 19114 28.793585744792 3 +41 19121 28.793745744792 1 +41 19153 28.843993151421 0 +41 19161 28.844153151421 1 +41 19203 29.014557242752 3 +41 19210 29.014717242752 1 +41 19273 29.031276819366 3 +41 19292 29.031436819366 1 +41 19339 29.093585763099 3 +41 19346 29.093745763099 1 +41 19378 29.143993151421 0 +41 19386 29.144153151421 1 +41 19428 29.31455724256 3 +41 19435 29.31471724256 1 +41 19498 29.331276815156 3 +41 19517 29.331436815156 1 +41 19564 29.393585781743 3 +41 19571 29.393745781743 1 +41 19603 29.443993151421 0 +41 19611 29.444153151421 1 +41 19653 29.614557242339 3 +41 19660 29.614717242339 1 +41 19723 29.631276811006 3 +41 19742 29.631436811006 1 +41 19789 29.693585800658 3 +41 19796 29.693745800658 1 +41 19828 29.743993151421 0 +41 19836 29.744153151421 1 +41 19878 29.914557242168 3 +41 19885 29.914717242168 1 +41 19948 29.931276806789 3 +41 19967 29.931436806789 1 +41 20014 29.99358581976 3 +41 20021 29.99374581976 1 +41 20053 30.043993151421 0 +41 20061 30.044153151421 1 +41 20103 30.214557241952 3 +41 20110 30.214717241952 1 +41 20173 30.231276802516 3 +41 20192 30.231436802516 1 +41 20239 30.29358583909 3 +41 20246 30.29374583909 1 +41 20278 30.343993151421 0 +41 20286 30.344153151421 1 +41 20328 30.514557241756 3 +41 20335 30.514717241756 1 +41 20398 30.531276798256 3 +41 20417 30.531436798256 1 +41 20464 30.593585858538 3 +41 20471 30.593745858538 1 +41 20503 30.643993151421 0 +41 20511 30.644153151421 1 +41 20553 30.814557241503 3 +41 20560 30.814717241503 1 +41 20622 30.831276794122 3 +41 20637 30.831436794122 1 +41 20689 30.893585878179 3 +41 20696 30.893745878179 1 +41 20728 30.943993151421 0 +41 20736 30.944153151421 1 +41 20778 31.114557241331 3 +41 20785 31.114717241331 1 +41 20851 31.131276790287 3 +41 20866 31.131436790287 1 +41 20919 31.193585897854 3 +41 20930 31.193745897854 1 +41 20961 31.243993151421 0 +41 20969 31.244153151421 1 +41 21011 31.414557241138 3 +41 21018 31.414717241138 1 +41 21084 31.431276787097 3 +41 21099 31.431436787097 1 +41 21152 31.49358591764 3 +41 21163 31.49374591764 1 +41 21194 31.543993151421 0 +41 21202 31.544153151421 1 +41 21244 31.714557240949 3 +41 21251 31.714717240949 1 +41 21317 31.731276784583 3 +41 21332 31.731436784583 1 +41 21385 31.793585937521 3 +41 21396 31.793745937521 1 +41 21427 31.843993151421 0 +41 21435 31.844153151421 1 +41 21477 32.014557240765 3 +41 21484 32.014717240765 1 +41 21550 32.031276782702 3 +41 21565 32.031436782702 1 +41 21618 32.093585957424 3 +41 21629 32.093745957424 1 +41 21660 32.143993151421 0 +41 21668 32.144153151421 1 +41 21710 32.31455724058 3 +41 21717 32.31471724058 1 +41 21783 32.331276781557 3 +41 21798 32.331436781557 1 +41 21851 32.393585977454 3 +41 21862 32.393745977454 1 +41 21893 32.443993151421 0 +41 21901 32.444153151421 1 +41 21943 32.614557240362 3 +41 21950 32.614717240362 1 +41 22016 32.631276781062 3 +41 22031 32.631436781062 1 +41 22084 32.693585997543 3 +41 22095 32.693745997543 1 +41 22126 32.743993151421 0 +41 22134 32.744153151421 1 +41 22176 32.914557240161 3 +41 22183 32.914717240161 1 +41 22249 32.93127678126 3 +41 22264 32.93143678126 1 +41 22317 32.993586017691 3 +41 22328 32.993746017691 1 +41 22359 33.043993151421 0 +41 22367 33.044153151421 1 +41 22409 33.214557239961 3 +41 22416 33.214717239961 1 +41 22482 33.23127678211 3 +41 22497 33.23143678211 1 +41 22550 33.293586037835 3 +41 22561 33.293746037835 1 +41 22592 33.343993151421 0 +41 22600 33.344153151421 1 +41 22642 33.514557239737 3 +41 22649 33.514717239737 1 +41 22715 33.531276783685 3 +41 22730 33.531436783685 1 +41 22784 33.593586058084 3 +41 22799 33.593746058084 1 +41 22825 33.643993151421 0 +41 22833 33.644153151421 1 +41 22875 33.814557239531 3 +41 22882 33.814717239531 1 +41 22944 33.831276785904 3 +41 22959 33.831436785904 1 +41 23013 33.893586078308 3 +41 23028 33.893746078308 1 +41 23049 33.943993151421 0 +41 23056 33.944153151421 1 +41 23091 34.11455723931 3 +41 23097 34.11471723931 1 +41 23147 34.131276788788 3 +41 23157 34.131436788788 1 +41 23207 34.243993151421 0 +41 23214 34.244153151421 1 +41 23249 34.414557239094 3 +41 23255 34.414717239094 1 +41 23305 34.431276792338 3 +41 23315 34.431436792338 1 +41 23365 34.543993151421 0 +41 23372 34.544153151421 1 +41 23407 34.71455723891 3 +41 23413 34.71471723891 1 +41 23463 34.731276796515 3 +41 23473 34.731436796515 1 +41 23523 34.843993151421 0 +41 23530 34.844153151421 1 +41 23565 35.014557238698 3 +41 23571 35.014717238698 1 +41 23621 35.031276801357 3 +41 23631 35.031436801357 1 +41 23681 35.143993151421 0 +41 23688 35.144153151421 1 +41 23727 35.31455723851 3 +41 23733 35.31471723851 1 +41 23783 35.331276806756 3 +41 23793 35.331436806756 1 +41 23813 35.357384434054 3 +41 23827 35.357544434054 1 +41 23847 35.443993151421 0 +41 23854 35.444153151421 1 +41 23893 35.614557238324 3 +41 23899 35.614717238324 1 +41 23949 35.631276812771 3 +41 23959 35.631436812771 1 +41 23979 35.657384420736 3 +41 23993 35.657544420736 1 +41 24013 35.743993151421 0 +41 24020 35.744153151421 1 +41 24060 35.914557238104 3 +41 24070 35.914717238104 1 +41 24115 35.931276819372 3 +41 24125 35.931436819372 1 +41 24145 35.957384409002 3 +41 24159 35.957544409002 1 +41 24179 36.043993151421 0 +41 24186 36.044153151421 1 +41 24226 36.214557237923 3 +41 24236 36.214717237923 1 +41 24281 36.231276826584 3 +41 24291 36.231436826584 1 +41 24311 36.257384398867 3 +41 24325 36.257544398867 1 +41 24345 36.343993151421 0 +41 24352 36.344153151421 1 +41 24392 36.514557237718 3 +41 24402 36.514717237718 1 +41 24447 36.531276834329 3 +41 24457 36.531436834329 1 +41 24477 36.557384390339 3 +41 24491 36.557544390339 1 +41 24511 36.643993151421 0 +41 24518 36.644153151421 1 +41 24557 36.814557237512 3 +41 24563 36.814717237512 1 +41 24613 36.831276842622 3 +41 24623 36.831436842622 1 +41 24643 36.857384382745 3 +41 24657 36.857544382745 1 +41 24677 36.943993151421 0 +41 24684 36.944153151421 1 +41 24723 37.114557236718 3 +41 24729 37.114717236718 1 +41 24779 37.131276851096 3 +41 24789 37.131436851096 1 +41 24809 37.157384373889 3 +41 24823 37.157544373889 1 +41 24843 37.243993151421 0 +41 24850 37.244153151421 1 +41 24889 37.41455723223 3 +41 24895 37.41471723223 1 +41 24945 37.431276854108 3 +41 24955 37.431436854108 1 +41 24975 37.457384356842 3 +41 24989 37.457544356842 1 +41 25009 37.543993151421 0 +41 25016 37.544153151421 1 +41 25055 37.714557229579 3 +41 25061 37.714717229579 1 +41 25111 37.731276847205 3 +41 25121 37.731436847205 1 +41 25140 37.757384333389 3 +41 25150 37.757544333389 1 +41 25175 37.843993151421 0 +41 25182 37.844153151421 1 +41 25221 38.014557228941 3 +41 25227 38.014717228941 1 +41 25277 38.031276839602 3 +41 25287 38.031436839602 1 +41 25306 38.0573843092 3 +41 25316 38.0575443092 1 +41 25341 38.143993151421 0 +41 25348 38.144153151421 1 +41 25387 38.314557229416 3 +41 25393 38.314717229416 1 +41 25443 38.331276833175 3 +41 25453 38.331436833175 1 +41 25472 38.357384284464 3 +41 25482 38.357544284464 1 +41 25507 38.443993151421 0 +41 25514 38.444153151421 1 +41 25553 38.614557230908 3 +41 25559 38.614717230908 1 +41 25609 38.631276827949 3 +41 25619 38.631436827949 1 +41 25638 38.657384259185 3 +41 25648 38.657544259185 1 +41 25673 38.743993151421 0 +41 25680 38.744153151421 1 +41 25719 38.914557233464 3 +41 25725 38.914717233464 1 +41 25775 38.93127682395 3 +41 25785 38.93143682395 1 +41 25804 38.957384233306 3 +41 25814 38.957544233306 1 +41 25839 39.043993151421 0 +41 25846 39.044153151421 1 +41 25885 39.214557237033 3 +41 25891 39.214717237033 1 +41 25941 39.231276821205 3 +41 25951 39.231436821205 1 +41 25970 39.257384206756 3 +41 25980 39.257544206756 1 +41 26005 39.343993151421 0 +41 26012 39.344153151421 1 +41 26051 39.514557241575 3 +41 26057 39.514717241575 1 +41 26107 39.531276819725 3 +41 26117 39.531436819725 1 +41 26136 39.557384179549 3 +41 26146 39.557544179549 1 +41 26171 39.643993151421 0 +41 26178 39.644153151421 1 +41 26217 39.814557247083 3 +41 26223 39.814717247083 1 +41 26273 39.831276819522 3 +41 26283 39.831436819522 1 +41 26302 39.857384151671 3 +41 26312 39.857544151671 1 +41 26337 39.943993151421 0 +41 26344 39.944153151421 1 +41 26383 40.114557253513 3 +41 26389 40.114717253513 1 +41 26439 40.1312768206 3 +41 26449 40.1314368206 1 +41 26467 40.157384123679 3 +41 26473 40.157544123679 1 +41 26503 40.243993151421 0 +41 26510 40.244153151421 1 +41 26549 40.414557260797 3 +41 26555 40.414717260797 1 +41 26605 40.431276822952 3 +41 26615 40.431436822952 1 +41 26633 40.457384095641 3 +41 26639 40.457544095641 1 +41 26669 40.543993151421 0 +41 26676 40.544153151421 1 +41 26715 40.714557269001 3 +41 26721 40.714717269001 1 +41 26744 40.72439933755 3 +41 26758 40.72455933755 1 +41 26775 40.731276826556 3 +41 26785 40.731436826556 1 +41 26803 40.757384067729 3 +41 26809 40.757544067729 1 +41 26839 40.843993151421 0 +41 26846 40.844153151421 1 +41 26889 41.014557277925 3 +41 26895 41.014717277925 1 +41 26918 41.024399324799 3 +41 26932 41.024559324799 1 +41 26949 41.031276831396 3 +41 26959 41.031436831396 1 +41 26977 41.057384039737 3 +41 26983 41.057544039737 1 +41 27013 41.143993151421 0 +41 27020 41.144153151421 1 +41 27063 41.314557287623 3 +41 27069 41.314717287623 1 +41 27092 41.324399312788 3 +41 27106 41.324559312788 1 +41 27123 41.331276837463 3 +41 27133 41.331436837463 1 +41 27151 41.357384011756 3 +41 27157 41.357544011756 1 +41 27187 41.443993151421 0 +41 27194 41.444153151421 1 +41 27237 41.614557298022 3 +41 27243 41.614717298022 1 +41 27266 41.624399301583 3 +41 27280 41.624559301583 1 +41 27297 41.631276844699 3 +41 27307 41.631436844699 1 +41 27325 41.657383983797 3 +41 27331 41.657543983797 1 +41 27361 41.743993151421 0 +41 27368 41.744153151421 1 +41 27411 41.914557309216 3 +41 27417 41.914717309216 1 +41 27440 41.924399291388 3 +41 27454 41.924559291388 1 +41 27471 41.931276852916 3 +41 27481 41.931436852916 1 +41 27499 41.957383956357 3 +41 27505 41.957543956357 1 +41 27535 42.043993151421 0 +41 27542 42.044153151421 1 +41 27585 42.214557321205 3 +41 27591 42.214717321205 1 +41 27614 42.224399282466 3 +41 27628 42.224559282466 1 +41 27645 42.231276861741 3 +41 27655 42.231436861741 1 +41 27673 42.257383930301 3 +41 27679 42.257543930301 1 +41 27709 42.343993151421 0 +41 27716 42.344153151421 1 +41 27759 42.514557333849 3 +41 27765 42.514717333849 1 +41 27788 42.52439927473 3 +41 27802 42.52455927473 1 +41 27819 42.531276870996 3 +41 27829 42.531436870996 1 +41 27847 42.557383905564 3 +41 27853 42.557543905564 1 +41 27883 42.643993151421 0 +41 27890 42.644153151421 1 +41 27933 42.814557347041 3 +41 27939 42.814717347041 1 +41 27962 42.824399268076 3 +41 27976 42.824559268076 1 +41 27993 42.831276880478 3 +41 28003 42.831436880478 1 +41 28021 42.857383882214 3 +41 28027 42.857543882214 1 +41 28057 42.943993151421 0 +41 28064 42.944153151421 1 +41 28108 43.114557360624 3 +41 28118 43.114717360624 1 +41 28136 43.124399262415 3 +41 28150 43.124559262415 1 +41 28167 43.131276890097 3 +41 28177 43.131436890097 1 +41 28195 43.157383860218 3 +41 28201 43.157543860218 1 +41 28231 43.243993151421 0 +41 28238 43.244153151421 1 +41 28282 43.414557374505 3 +41 28292 43.414717374505 1 +41 28310 43.424399257654 3 +41 28324 43.424559257654 1 +41 28341 43.431276899681 3 +41 28351 43.431436899681 1 +41 28369 43.45738383957 3 +41 28375 43.45754383957 1 +41 28405 43.543993151421 0 +41 28412 43.544153151421 1 +41 28456 43.714557388346 3 +41 28466 43.714717388346 1 +41 28484 43.724399253693 3 +41 28498 43.724559253693 1 +41 28515 43.73127690914 3 +41 28525 43.73143690914 1 +41 28543 43.757383820288 3 +41 28549 43.757543820288 1 +41 28579 43.843993151421 0 +41 28586 43.844153151421 1 +41 28630 44.014557401083 3 +41 28640 44.014717401083 1 +41 28658 44.024399250434 3 +41 28672 44.024559250434 1 +41 28689 44.031276918359 3 +41 28699 44.031436918359 1 +41 28717 44.057383802369 3 +41 28723 44.057543802369 1 +41 28753 44.143993151421 0 +41 28760 44.144153151421 1 +41 28804 44.31455741262 3 +41 28814 44.31471741262 1 +41 28831 44.324399247783 3 +41 28841 44.324559247783 1 +41 28887 44.357383786728 3 +41 28893 44.357543786728 1 +41 28923 44.443993151421 0 +41 28930 44.444153151421 1 +41 28970 44.614557422913 3 +41 28980 44.614717422913 1 +41 28997 44.624399245654 3 +41 29007 44.624559245654 1 +41 29053 44.657383773768 3 +41 29059 44.657543773768 1 +41 29089 44.743993151421 0 +41 29096 44.744153151421 1 +41 29136 44.914557431937 3 +41 29146 44.914717431937 1 +41 29163 44.924399243982 3 +41 29173 44.924559243982 1 +41 29219 44.957383763502 3 +41 29225 44.957543763502 1 +41 29255 45.043993151421 0 +41 29262 45.044153151421 1 +41 29302 45.21455743966 3 +41 29312 45.21471743966 1 +41 29329 45.224399242636 3 +41 29339 45.224559242636 1 +41 29385 45.257383755525 3 +41 29391 45.257543755525 1 +41 29421 45.343993151421 0 +41 29428 45.344153151421 1 +41 29468 45.514557446271 3 +41 29478 45.514717446271 1 +41 29495 45.524399241497 3 +41 29505 45.524559241497 1 +41 29551 45.557383748928 3 +41 29557 45.557543748928 1 +41 29587 45.643993151421 0 +41 29594 45.644153151421 1 +41 29634 45.814557453426 3 +41 29644 45.814717453426 1 +41 29661 45.824399240537 3 +41 29671 45.824559240537 1 +41 29717 45.857383742284 3 +41 29723 45.857543742284 1 +41 29753 45.943993151421 0 +41 29760 45.944153151421 1 +41 29800 46.11455746131 3 +41 29810 46.11471746131 1 +41 29827 46.124399236922 3 +41 29837 46.124559236922 1 +41 29883 46.157383734922 3 +41 29889 46.157543734922 1 +41 29919 46.243993151421 0 +41 29926 46.244153151421 1 +41 29966 46.414557469463 3 +41 29976 46.414717469463 1 +41 29993 46.424399227691 3 +41 30003 46.424559227691 1 +41 30049 46.457383726677 3 +41 30055 46.457543726677 1 +41 30085 46.543993151421 0 +41 30092 46.544153151421 1 +41 30132 46.7145574756 3 +41 30142 46.7147174756 1 +41 30159 46.724399216308 3 +41 30169 46.724559216308 1 +41 30215 46.757383717477 3 +41 30221 46.757543717477 1 +41 30251 46.843993151421 0 +41 30258 46.844153151421 1 +41 30298 47.014557477752 3 +41 30308 47.014717477752 1 +41 30325 47.024399204936 3 +41 30335 47.024559204936 1 +41 30381 47.057383707399 3 +41 30387 47.057543707399 1 +41 30417 47.143993151421 0 +41 30424 47.144153151421 1 +41 30464 47.31455747801 3 +41 30474 47.31471747801 1 +41 30491 47.324399193637 3 +41 30501 47.324559193637 1 +41 30547 47.357383698008 3 +41 30553 47.357543698008 1 +41 30583 47.443993151421 0 +41 30590 47.444153151421 1 +41 30630 47.614557478274 3 +41 30640 47.614717478274 1 +41 30657 47.62439918244 3 +41 30667 47.62455918244 1 +41 30713 47.657383697458 3 +41 30719 47.657543697458 1 +41 30749 47.743993151421 0 +41 30756 47.744153151421 1 +41 30796 47.914557478544 3 +41 30806 47.914717478544 1 +41 30822 47.92439917133 3 +41 30828 47.92455917133 1 +41 30879 47.957383708789 3 +41 30885 47.957543708789 1 +41 30915 48.043993151421 0 +41 30922 48.044153151421 1 +41 30962 48.214557477888 3 +41 30972 48.214717477888 1 +41 30988 48.224399161344 3 +41 30994 48.224559161344 1 +41 31045 48.257383722862 3 +41 31051 48.257543722862 1 +41 31081 48.343993151421 0 +41 31088 48.344153151421 1 +41 31127 48.514557476625 3 +41 31133 48.514717476625 1 +41 31154 48.524399152109 3 +41 31160 48.524559152109 1 +41 31211 48.557383738369 3 +41 31217 48.557543738369 1 +41 31247 48.643993151421 0 +41 31254 48.644153151421 1 +41 31293 48.814557474634 3 +41 31299 48.814717474634 1 +41 31320 48.824399143836 3 +41 31326 48.824559143836 1 +41 31377 48.857383754702 3 +41 31383 48.857543754702 1 +41 31413 48.943993151421 0 +41 31420 48.944153151421 1 +41 31459 49.11455747139 3 +41 31465 49.11471747139 1 +41 31486 49.124399137291 3 +41 31492 49.124559137291 1 +41 31543 49.157383770654 3 +41 31549 49.157543770654 1 +41 31579 49.243993151421 0 +41 31586 49.244153151421 1 +41 31625 49.414557467632 3 +41 31631 49.414717467632 1 +41 31652 49.424399131732 3 +41 31658 49.424559131732 1 +41 31709 49.457383786041 3 +41 31715 49.457543786041 1 +41 31745 49.543993151421 0 +41 31752 49.544153151421 1 +41 31791 49.71455746338 3 +41 31797 49.71471746338 1 +41 31819 49.724399127231 3 +41 31829 49.724559127231 1 +41 31875 49.757383800762 3 +41 31881 49.757543800762 1 +41 31911 49.843993151421 0 +41 31918 49.844153151421 1 +41 31957 50.014557459048 3 +41 31963 50.014717459048 1 +41 31985 50.024399123312 3 +41 31995 50.024559123312 1 +41 32041 50.057383815148 3 +41 32047 50.057543815148 1 +41 32077 50.143993151421 0 +41 32084 50.144153151421 1 +41 32123 50.314557454631 3 +41 32129 50.314717454631 1 +41 32151 50.324399119987 3 +41 32161 50.324559119987 1 +41 32207 50.357383829549 3 +41 32213 50.357543829549 1 +41 32243 50.443993151421 0 +41 32250 50.444153151421 1 +41 32289 50.614557450054 3 +41 32295 50.614717450054 1 +41 32317 50.624399117227 3 +41 32327 50.624559117227 1 +41 32373 50.657383844282 3 +41 32379 50.657543844282 1 +41 32409 50.743993151421 0 +41 32416 50.744153151421 1 +41 32455 50.914557445285 3 +41 32461 50.914717445285 1 +41 32483 50.924399115103 3 +41 32493 50.924559115103 1 +41 32539 50.957383859315 3 +41 32545 50.957543859315 1 +41 32575 51.043993151421 0 +41 32582 51.044153151421 1 +41 32621 51.21455744041 3 +41 32627 51.21471744041 1 +41 32645 51.224399113583 3 +41 32655 51.224559113583 1 +41 32701 51.257383874742 3 +41 32707 51.257543874742 1 +41 32733 51.343993151421 0 +41 32740 51.344153151421 1 +41 32779 51.514557435458 3 +41 32785 51.514717435458 1 +41 32803 51.524399112627 3 +41 32813 51.524559112627 1 +41 32863 51.557383890499 3 +41 32869 51.557543890499 1 +41 32899 51.643993151421 0 +41 32906 51.644153151421 1 +41 32945 51.814557430365 3 +41 32951 51.814717430365 1 +41 32969 51.824399112353 3 +41 32979 51.824559112353 1 +41 33029 51.857383906635 3 +41 33035 51.857543906635 1 +41 33065 51.943993151421 0 +41 33072 51.944153151421 1 +41 33111 52.114557425224 3 +41 33117 52.114717425224 1 +41 33135 52.124399112693 3 +41 33145 52.124559112693 1 +41 33195 52.157383923181 3 +41 33201 52.157543923181 1 +41 33231 52.243993151421 0 +41 33238 52.244153151421 1 +41 33277 52.414557420182 3 +41 33283 52.414717420182 1 +41 33301 52.424399113556 3 +41 33311 52.424559113556 1 +41 33361 52.457383940072 3 +41 33367 52.457543940072 1 +41 33397 52.543993151421 0 +41 33404 52.544153151421 1 +41 33443 52.714557415208 3 +41 33449 52.714717415208 1 +41 33467 52.724399114954 3 +41 33477 52.724559114954 1 +41 33527 52.757383957286 3 +41 33533 52.757543957286 1 +41 33563 52.843993151421 0 +41 33570 52.844153151421 1 +41 33609 53.014557410369 3 +41 33615 53.014717410369 1 +41 33633 53.024399116886 3 +41 33643 53.024559116886 1 +41 33693 53.057383974792 3 +41 33699 53.057543974792 1 +41 33729 53.143993151421 0 +41 33736 53.144153151421 1 +41 33775 53.32439911934 3 +41 33784 53.32455911934 1 +41 33830 53.357383991743 3 +41 33835 53.357543991743 1 +41 33863 53.443993151421 0 +41 33869 53.444153151421 1 +41 33902 53.624399122413 3 +41 33911 53.624559122413 1 +41 33957 53.657384007982 3 +41 33962 53.657544007982 1 +41 33990 53.743993151421 0 +41 33996 53.744153151421 1 +41 34029 53.924399125883 3 +41 34038 53.924559125883 1 +41 34084 53.957384023455 3 +41 34089 53.957544023455 1 +41 34117 54.043993151421 0 +41 34123 54.044153151421 1 +41 34156 54.224399129356 3 +41 34165 54.224559129356 1 +41 34211 54.257384037982 3 +41 34216 54.257544037982 1 +41 34244 54.343993151421 0 +41 34250 54.344153151421 1 +41 34283 54.524399132878 3 +41 34292 54.524559132878 1 +41 34338 54.557384051792 3 +41 34343 54.557544051792 1 +41 34371 54.643993151421 0 +41 34377 54.644153151421 1 +41 34410 54.824399136418 3 +41 34419 54.824559136418 1 +41 34465 54.857384066271 3 +41 34470 54.857544066271 1 +41 34498 54.943993151421 0 +41 34504 54.944153151421 1 +41 34537 55.124399139869 3 +41 34546 55.124559139869 1 +41 34592 55.157384081514 3 +41 34597 55.157544081514 1 +41 34625 55.243993151421 0 +41 34631 55.244153151421 1 +41 34664 55.424399143329 3 +41 34673 55.424559143329 1 +41 34719 55.457384097382 3 +41 34724 55.457544097382 1 +41 34752 55.543993151421 0 +41 34758 55.544153151421 1 +41 34791 55.724399146854 3 +41 34800 55.724559146854 1 +41 34846 55.757384113825 3 +41 34851 55.757544113825 1 +41 34879 55.843993151421 0 +41 34885 55.844153151421 1 +41 34918 56.024399150367 3 +41 34927 56.024559150367 1 +41 34973 56.057384130858 3 +41 34978 56.057544130858 1 +41 35006 56.143993151421 0 +41 35012 56.144153151421 1 +41 35045 56.324399153849 3 +41 35054 56.324559153849 1 +41 35101 56.357384148407 3 +41 35110 56.357544148407 1 +41 35133 56.443993151421 0 +41 35139 56.444153151421 1 +39 356 4.1 0 +39 356 4.1 2 +39 552 4.543993151421 3 +39 558 4.544153151421 2 +39 671 4.843993151421 3 +39 677 4.844153151421 2 +39 791 5.143993151421 3 +39 798 5.144153151421 2 +39 925 5.443993151421 3 +39 932 5.444153151421 2 +39 1083 5.743993151421 3 +39 1090 5.744153151421 2 +39 1241 6.043993151421 3 +39 1248 6.044153151421 2 +39 1422 6.343993151421 3 +39 1430 6.344153151421 2 +39 1639 6.643993151421 3 +39 1647 6.644153151421 2 +39 1856 6.943993151421 3 +39 1864 6.944153151421 2 +39 2073 7.243993151421 3 +39 2081 7.244153151421 2 +39 2290 7.543993151421 3 +39 2298 7.544153151421 2 +39 2507 7.843993151421 3 +39 2515 7.844153151421 2 +39 2724 8.143993151421 3 +39 2732 8.144153151421 2 +39 2945 8.443993151421 3 +39 2953 8.444153151421 2 +39 3170 8.743993151421 3 +39 3178 8.744153151421 2 +39 3395 9.043993151421 3 +39 3403 9.044153151421 2 +39 3620 9.343993151421 3 +39 3628 9.344153151421 2 +39 3845 9.643993151421 3 +39 3853 9.644153151421 2 +39 4070 9.943993151421 3 +39 4078 9.944153151421 2 +39 4295 10.243993151421 3 +39 4303 10.244153151421 2 +39 4520 10.543993151421 3 +39 4528 10.544153151421 2 +39 4753 10.843993151421 3 +39 4761 10.844153151421 2 +39 4986 11.143993151421 3 +39 4994 11.144153151421 2 +39 5219 11.443993151421 3 +39 5227 11.444153151421 2 +39 5460 11.743993151421 3 +39 5468 11.744153151421 2 +39 5701 12.043993151421 3 +39 5709 12.044153151421 2 +39 5942 12.343993151421 3 +39 5950 12.344153151421 2 +39 6183 12.643993151421 3 +39 6191 12.644153151421 2 +39 6424 12.943993151421 3 +39 6432 12.944153151421 2 +39 6665 13.243993151421 3 +39 6673 13.244153151421 2 +39 6906 13.543993151421 3 +39 6914 13.544153151421 2 +39 7147 13.843993151421 3 +39 7155 13.844153151421 2 +39 7388 14.143993151421 3 +39 7396 14.144153151421 2 +39 7629 14.443993151421 3 +39 7637 14.444153151421 2 +39 7870 14.743993151421 3 +39 7878 14.744153151421 2 +39 8111 15.043993151421 3 +39 8119 15.044153151421 2 +39 8352 15.343993151421 3 +39 8360 15.344153151421 2 +39 8593 15.643993151421 3 +39 8601 15.644153151421 2 +39 8834 15.943993151421 3 +39 8842 15.944153151421 2 +39 9083 16.243993151421 3 +39 9091 16.244153151421 2 +39 9332 16.543993151421 3 +39 9340 16.544153151421 2 +39 9581 16.843993151421 3 +39 9589 16.844153151421 2 +39 9830 17.143993151421 3 +39 9838 17.144153151421 2 +39 10079 17.443993151421 3 +39 10087 17.444153151421 2 +39 10328 17.743993151421 3 +39 10336 17.744153151421 2 +39 10569 18.043993151421 3 +39 10577 18.044153151421 2 +39 10806 18.343993151421 3 +39 10814 18.344153151421 2 +39 11039 18.643993151421 3 +39 11047 18.644153151421 2 +39 11272 18.943993151421 3 +39 11280 18.944153151421 2 +39 11505 19.243993151421 3 +39 11513 19.244153151421 2 +39 11738 19.543993151421 3 +39 11746 19.544153151421 2 +39 11971 19.843993151421 3 +39 11979 19.844153151421 2 +39 12212 20.143993151421 3 +39 12220 20.144153151421 2 +39 12453 20.443993151421 3 +39 12461 20.444153151421 2 +39 12694 20.743993151421 3 +39 12702 20.744153151421 2 +39 12935 21.043993151421 3 +39 12943 21.044153151421 2 +39 13176 21.343993151421 3 +39 13184 21.344153151421 2 +39 13417 21.643993151421 3 +39 13425 21.644153151421 2 +39 13658 21.943993151421 3 +39 13666 21.944153151421 2 +39 13899 22.243993151421 3 +39 13907 22.244153151421 2 +39 14140 22.543993151421 3 +39 14148 22.544153151421 2 +39 14381 22.843993151421 3 +39 14389 22.844153151421 2 +39 14622 23.143993151421 3 +39 14630 23.144153151421 2 +39 14863 23.443993151421 3 +39 14871 23.444153151421 2 +39 15104 23.743993151421 3 +39 15112 23.744153151421 2 +39 15345 24.043993151421 3 +39 15353 24.044153151421 2 +39 15586 24.343993151421 3 +39 15594 24.344153151421 2 +39 15827 24.643993151421 3 +39 15835 24.644153151421 2 +39 16068 24.943993151421 3 +39 16076 24.944153151421 2 +39 16309 25.243993151421 3 +39 16317 25.244153151421 2 +39 16550 25.543993151421 3 +39 16558 25.544153151421 2 +39 16791 25.843993151421 3 +39 16799 25.844153151421 2 +39 17032 26.143993151421 3 +39 17040 26.144153151421 2 +39 17273 26.443993151421 3 +39 17281 26.444153151421 2 +39 17514 26.743993151421 3 +39 17522 26.744153151421 2 +39 17755 27.043993151421 3 +39 17763 27.044153151421 2 +39 17988 27.343993151421 3 +39 17996 27.344153151421 2 +39 18221 27.643993151421 3 +39 18229 27.644153151421 2 +39 18454 27.943993151421 3 +39 18462 27.944153151421 2 +39 18687 28.243993151421 3 +39 18695 28.244153151421 2 +39 18920 28.543993151421 3 +39 18928 28.544153151421 2 +39 19153 28.843993151421 3 +39 19161 28.844153151421 2 +39 19378 29.143993151421 3 +39 19386 29.144153151421 2 +39 19603 29.443993151421 3 +39 19611 29.444153151421 2 +39 19828 29.743993151421 3 +39 19836 29.744153151421 2 +39 20053 30.043993151421 3 +39 20061 30.044153151421 2 +39 20278 30.343993151421 3 +39 20286 30.344153151421 2 +39 20503 30.643993151421 3 +39 20511 30.644153151421 2 +39 20728 30.943993151421 3 +39 20736 30.944153151421 2 +39 20961 31.243993151421 3 +39 20969 31.244153151421 2 +39 21194 31.543993151421 3 +39 21202 31.544153151421 2 +39 21427 31.843993151421 3 +39 21435 31.844153151421 2 +39 21660 32.143993151421 3 +39 21668 32.144153151421 2 +39 21893 32.443993151421 3 +39 21901 32.444153151421 2 +39 22126 32.743993151421 3 +39 22134 32.744153151421 2 +39 22359 33.043993151421 3 +39 22367 33.044153151421 2 +39 22592 33.343993151421 3 +39 22600 33.344153151421 2 +39 22825 33.643993151421 3 +39 22833 33.644153151421 2 +39 23049 33.943993151421 3 +39 23056 33.944153151421 2 +39 23207 34.243993151421 3 +39 23214 34.244153151421 2 +39 23365 34.543993151421 3 +39 23372 34.544153151421 2 +39 23523 34.843993151421 3 +39 23530 34.844153151421 2 +39 23681 35.143993151421 3 +39 23688 35.144153151421 2 +39 23847 35.443993151421 3 +39 23854 35.444153151421 2 +39 24013 35.743993151421 3 +39 24020 35.744153151421 2 +39 24179 36.043993151421 3 +39 24186 36.044153151421 2 +39 24345 36.343993151421 3 +39 24352 36.344153151421 2 +39 24511 36.643993151421 3 +39 24518 36.644153151421 2 +39 24677 36.943993151421 3 +39 24684 36.944153151421 2 +39 24843 37.243993151421 3 +39 24850 37.244153151421 2 +39 25009 37.543993151421 3 +39 25016 37.544153151421 2 +39 25175 37.843993151421 3 +39 25182 37.844153151421 2 +39 25341 38.143993151421 3 +39 25348 38.144153151421 2 +39 25507 38.443993151421 3 +39 25514 38.444153151421 2 +39 25673 38.743993151421 3 +39 25680 38.744153151421 2 +39 25839 39.043993151421 3 +39 25846 39.044153151421 2 +39 26005 39.343993151421 3 +39 26012 39.344153151421 2 +39 26171 39.643993151421 3 +39 26178 39.644153151421 2 +39 26337 39.943993151421 3 +39 26344 39.944153151421 2 +39 26503 40.243993151421 3 +39 26510 40.244153151421 2 +39 26669 40.543993151421 3 +39 26676 40.544153151421 2 +39 26839 40.843993151421 3 +39 26846 40.844153151421 2 +39 27013 41.143993151421 3 +39 27020 41.144153151421 2 +39 27187 41.443993151421 3 +39 27194 41.444153151421 2 +39 27361 41.743993151421 3 +39 27368 41.744153151421 2 +39 27535 42.043993151421 3 +39 27542 42.044153151421 2 +39 27709 42.343993151421 3 +39 27716 42.344153151421 2 +39 27883 42.643993151421 3 +39 27890 42.644153151421 2 +39 28057 42.943993151421 3 +39 28064 42.944153151421 2 +39 28231 43.243993151421 3 +39 28238 43.244153151421 2 +39 28405 43.543993151421 3 +39 28412 43.544153151421 2 +39 28579 43.843993151421 3 +39 28586 43.844153151421 2 +39 28753 44.143993151421 3 +39 28760 44.144153151421 2 +39 28923 44.443993151421 3 +39 28930 44.444153151421 2 +39 29089 44.743993151421 3 +39 29096 44.744153151421 2 +39 29255 45.043993151421 3 +39 29262 45.044153151421 2 +39 29421 45.343993151421 3 +39 29428 45.344153151421 2 +39 29587 45.643993151421 3 +39 29594 45.644153151421 2 +39 29753 45.943993151421 3 +39 29760 45.944153151421 2 +39 29919 46.243993151421 3 +39 29926 46.244153151421 2 +39 30085 46.543993151421 3 +39 30092 46.544153151421 2 +39 30251 46.843993151421 3 +39 30258 46.844153151421 2 +39 30417 47.143993151421 3 +39 30424 47.144153151421 2 +39 30583 47.443993151421 3 +39 30590 47.444153151421 2 +39 30749 47.743993151421 3 +39 30756 47.744153151421 2 +39 30915 48.043993151421 3 +39 30922 48.044153151421 2 +39 31081 48.343993151421 3 +39 31088 48.344153151421 2 +39 31247 48.643993151421 3 +39 31254 48.644153151421 2 +39 31413 48.943993151421 3 +39 31420 48.944153151421 2 +39 31579 49.243993151421 3 +39 31586 49.244153151421 2 +39 31745 49.543993151421 3 +39 31752 49.544153151421 2 +39 31911 49.843993151421 3 +39 31918 49.844153151421 2 +39 32077 50.143993151421 3 +39 32084 50.144153151421 2 +39 32243 50.443993151421 3 +39 32250 50.444153151421 2 +39 32409 50.743993151421 3 +39 32416 50.744153151421 2 +39 32575 51.043993151421 3 +39 32582 51.044153151421 2 +39 32733 51.343993151421 3 +39 32740 51.344153151421 2 +39 32899 51.643993151421 3 +39 32906 51.644153151421 2 +39 33065 51.943993151421 3 +39 33072 51.944153151421 2 +39 33231 52.243993151421 3 +39 33238 52.244153151421 2 +39 33397 52.543993151421 3 +39 33404 52.544153151421 2 +39 33563 52.843993151421 3 +39 33570 52.844153151421 2 +39 33729 53.143993151421 3 +39 33736 53.144153151421 2 +39 33863 53.443993151421 3 +39 33869 53.444153151421 2 +39 33990 53.743993151421 3 +39 33996 53.744153151421 2 +39 34117 54.043993151421 3 +39 34123 54.044153151421 2 +39 34244 54.343993151421 3 +39 34250 54.344153151421 2 +39 34371 54.643993151421 3 +39 34377 54.644153151421 2 +39 34498 54.943993151421 3 +39 34504 54.944153151421 2 +39 34625 55.243993151421 3 +39 34631 55.244153151421 2 +39 34752 55.543993151421 3 +39 34758 55.544153151421 2 +39 34879 55.843993151421 3 +39 34885 55.844153151421 2 +39 35006 56.143993151421 3 +39 35012 56.144153151421 2 +39 35133 56.443993151421 3 +39 35139 56.444153151421 2 +8 22 2.1 0 +8 22 2.1 2 +8 65 2.657383685955 3 +8 69 2.657543685955 2 +8 110 2.957383685955 3 +8 114 2.957543685955 2 +8 163 3.257383685955 3 +8 168 3.257543685955 2 +8 247 3.557383685955 3 +8 252 3.557543685955 2 +8 331 3.857383685955 3 +8 336 3.857543685955 2 +8 424 4.157383685955 3 +8 430 4.157543685955 2 +8 521 4.457383685955 3 +8 527 4.457543685955 2 +8 640 4.757383685955 3 +8 646 4.757543685955 2 +8 759 5.057383685955 3 +8 765 5.057543685955 2 +8 891 5.357383685955 3 +8 898 5.357543685955 2 +8 1025 5.657383685955 3 +8 1032 5.657543685955 2 +8 1183 5.957383685955 3 +8 1190 5.957543685955 2 +8 1355 6.257383685955 3 +8 1363 6.257543685955 2 +8 1572 6.557383685955 3 +8 1580 6.557543685955 2 +8 1789 6.857383685955 3 +8 1797 6.857543685955 2 +8 2006 7.157383685955 3 +8 2014 7.157543685955 2 +8 2223 7.457383685955 3 +8 2231 7.457543685955 2 +8 2440 7.757383685955 3 +8 2448 7.757543685955 2 +8 2657 8.057383685955 3 +8 2665 8.057543685955 2 +8 2878 8.357383685955 3 +8 2886 8.357543685955 2 +8 3103 8.657383685955 3 +8 3111 8.657543685955 2 +8 3328 8.957383685955 3 +8 3336 8.957543685955 2 +8 3553 9.257383685955 3 +8 3561 9.257543685955 2 +8 3778 9.557383685955 3 +8 3786 9.557543685955 2 +8 4003 9.857383685955 3 +8 4011 9.857543685955 2 +8 4228 10.157383685955 3 +8 4236 10.157543685955 2 +8 4453 10.457383685955 3 +8 4461 10.457543685955 2 +8 4686 10.757383685955 3 +8 4694 10.757543685955 2 +8 4919 11.057383685955 3 +8 4927 11.057543685955 2 +8 5152 11.357383685955 3 +8 5160 11.357543685955 2 +8 5389 11.657383685955 3 +8 5397 11.657543685955 2 +8 5630 11.957383685955 3 +8 5638 11.957543685955 2 +8 5871 12.257383685955 3 +8 5879 12.257543685955 2 +8 6112 12.557383685955 3 +8 6120 12.557543685955 2 +8 6353 12.857383685955 3 +8 6361 12.857543685955 2 +8 6594 13.157383685955 3 +8 6602 13.157543685955 2 +8 6835 13.457383685955 3 +8 6843 13.457543685955 2 +8 7076 13.757383685955 3 +8 7084 13.757543685955 2 +8 7317 14.057383685955 3 +8 7325 14.057543685955 2 +8 7558 14.357383685955 3 +8 7566 14.357543685955 2 +8 7799 14.657383685955 3 +8 7807 14.657543685955 2 +8 8040 14.957383685955 3 +8 8048 14.957543685955 2 +8 8281 15.257383685955 3 +8 8289 15.257543685955 2 +8 8522 15.557383685955 3 +8 8530 15.557543685955 2 +8 8763 15.857383685955 3 +8 8771 15.857543685955 2 +8 9008 16.157383685955 3 +8 9016 16.157543685955 2 +8 9257 16.457383685955 3 +8 9265 16.457543685955 2 +8 9506 16.757383685955 3 +8 9514 16.757543685955 2 +8 9755 17.057383685955 3 +8 9763 17.057543685955 2 +8 10004 17.357383685955 3 +8 10012 17.357543685955 2 +8 10253 17.657383685955 3 +8 10261 17.657543685955 2 +8 10498 17.957383685955 3 +8 10506 17.957543685955 2 +8 10735 18.257383685955 3 +8 10743 18.257543685955 2 +8 10968 18.557383685955 3 +8 10976 18.557543685955 2 +8 11201 18.857383685955 3 +8 11209 18.857543685955 2 +8 11434 19.157383685955 3 +8 11442 19.157543685955 2 +8 11667 19.457383685955 3 +8 11675 19.457543685955 2 +8 11900 19.757383685955 3 +8 11908 19.757543685955 2 +8 12137 20.057383685955 3 +8 12145 20.057543685955 2 +8 12378 20.357383685955 3 +8 12386 20.357543685955 2 +8 12619 20.657383685955 3 +8 12627 20.657543685955 2 +8 12860 20.957383685955 3 +8 12868 20.957543685955 2 +8 13101 21.257383685955 3 +8 13109 21.257543685955 2 +8 13342 21.557383685955 3 +8 13350 21.557543685955 2 +8 13583 21.857383685955 3 +8 13591 21.857543685955 2 +8 13824 22.157383685955 3 +8 13832 22.157543685955 2 +8 14065 22.457383685955 3 +8 14073 22.457543685955 2 +8 14306 22.757383685955 3 +8 14314 22.757543685955 2 +8 14547 23.057383685955 3 +8 14555 23.057543685955 2 +8 14788 23.357383685955 3 +8 14796 23.357543685955 2 +8 15029 23.657383685955 3 +8 15037 23.657543685955 2 +8 15270 23.957383685955 3 +8 15278 23.957543685955 2 +8 15511 24.257383685955 3 +8 15519 24.257543685955 2 +8 15752 24.557383685955 3 +8 15760 24.557543685955 2 +8 15993 24.857383685955 3 +8 16001 24.857543685955 2 +8 16234 25.157383685955 3 +8 16242 25.157543685955 2 +8 16475 25.457383685955 3 +8 16483 25.457543685955 2 +8 16716 25.757383685955 3 +8 16724 25.757543685955 2 +8 16957 26.057383685955 3 +8 16965 26.057543685955 2 +8 17198 26.357383685955 3 +8 17206 26.357543685955 2 +8 17439 26.657383685955 3 +8 17447 26.657543685955 2 +8 17680 26.957383685955 3 +8 17688 26.957543685955 2 +8 17913 27.257383685955 3 +8 17921 27.257543685955 2 +8 18146 27.557383685955 3 +8 18154 27.557543685955 2 +8 18379 27.857383685955 3 +8 18387 27.857543685955 2 +8 18612 28.157383685955 3 +8 18620 28.157543685955 2 +8 18845 28.457383685955 3 +8 18853 28.457543685955 2 +8 19078 28.757383685955 3 +8 19086 28.757543685955 2 +8 19307 29.057383685955 3 +8 19315 29.057543685955 2 +8 19532 29.357383685955 3 +8 19540 29.357543685955 2 +8 19757 29.657383685955 3 +8 19765 29.657543685955 2 +8 19982 29.957383685955 3 +8 19990 29.957543685955 2 +8 20207 30.257383685955 3 +8 20215 30.257543685955 2 +8 20432 30.557383685955 3 +8 20440 30.557543685955 2 +8 20657 30.857383685955 3 +8 20665 30.857543685955 2 +8 20886 31.157383685955 3 +8 20894 31.157543685955 2 +8 21119 31.457383685955 3 +8 21127 31.457543685955 2 +8 21352 31.757383685955 3 +8 21360 31.757543685955 2 +8 21585 32.057383685955 3 +8 21593 32.057543685955 2 +8 21818 32.357383685955 3 +8 21826 32.357543685955 2 +8 22051 32.657383685955 3 +8 22059 32.657543685955 2 +8 22284 32.957383685955 3 +8 22292 32.957543685955 2 +8 22517 33.257383685955 3 +8 22525 33.257543685955 2 +8 22750 33.557383685955 3 +8 22758 33.557543685955 2 +8 22979 33.857383685955 3 +8 22987 33.857543685955 2 +8 23173 34.157383685955 3 +8 23180 34.157543685955 2 +8 23331 34.457383685955 3 +8 23338 34.457543685955 2 +8 23489 34.757383685955 3 +8 23496 34.757543685955 2 +8 23647 35.057383685955 3 +8 23654 35.057543685955 2 +8 23809 35.357383685955 3 +8 23816 35.357543685955 2 +8 23975 35.657383685955 3 +8 23982 35.657543685955 2 +8 24141 35.957383685955 3 +8 24148 35.957543685955 2 +8 24307 36.257383685955 3 +8 24314 36.257543685955 2 +8 24473 36.557383685955 3 +8 24480 36.557543685955 2 +8 24639 36.857383685955 3 +8 24646 36.857543685955 2 +8 24805 37.157383685955 3 +8 24812 37.157543685955 2 +8 24971 37.457383685955 3 +8 24978 37.457543685955 2 +8 25137 37.757383685955 3 +8 25144 37.757543685955 2 +8 25303 38.057383685955 3 +8 25310 38.057543685955 2 +8 25469 38.357383685955 3 +8 25476 38.357543685955 2 +8 25635 38.657383685955 3 +8 25642 38.657543685955 2 +8 25801 38.957383685955 3 +8 25808 38.957543685955 2 +8 25967 39.257383685955 3 +8 25974 39.257543685955 2 +8 26133 39.557383685955 3 +8 26140 39.557543685955 2 +8 26299 39.857383685955 3 +8 26306 39.857543685955 2 +8 26465 40.157383685955 3 +8 26472 40.157543685955 2 +8 26631 40.457383685955 3 +8 26638 40.457543685955 2 +8 26801 40.757383685955 3 +8 26808 40.757543685955 2 +8 26975 41.057383685955 3 +8 26982 41.057543685955 2 +8 27149 41.357383685955 3 +8 27156 41.357543685955 2 +8 27323 41.657383685955 3 +8 27330 41.657543685955 2 +8 27497 41.957383685955 3 +8 27504 41.957543685955 2 +8 27671 42.257383685955 3 +8 27678 42.257543685955 2 +8 27845 42.557383685955 3 +8 27852 42.557543685955 2 +8 28019 42.857383685955 3 +8 28026 42.857543685955 2 +8 28193 43.157383685955 3 +8 28200 43.157543685955 2 +8 28367 43.457383685955 3 +8 28374 43.457543685955 2 +8 28541 43.757383685955 3 +8 28548 43.757543685955 2 +8 28715 44.057383685955 3 +8 28722 44.057543685955 2 +8 28885 44.357383685955 3 +8 28892 44.357543685955 2 +8 29051 44.657383685955 3 +8 29058 44.657543685955 2 +8 29217 44.957383685955 3 +8 29224 44.957543685955 2 +8 29383 45.257383685955 3 +8 29390 45.257543685955 2 +8 29549 45.557383685955 3 +8 29556 45.557543685955 2 +8 29715 45.857383685955 3 +8 29722 45.857543685955 2 +8 29881 46.157383685955 3 +8 29888 46.157543685955 2 +8 30047 46.457383685955 3 +8 30054 46.457543685955 2 +8 30213 46.757383685955 3 +8 30220 46.757543685955 2 +8 30379 47.057383685955 3 +8 30386 47.057543685955 2 +8 30545 47.357383685955 3 +8 30552 47.357543685955 2 +8 30711 47.657383685955 3 +8 30718 47.657543685955 2 +8 30877 47.957383685955 3 +8 30884 47.957543685955 2 +8 31043 48.257383685955 3 +8 31050 48.257543685955 2 +8 31209 48.557383685955 3 +8 31216 48.557543685955 2 +8 31375 48.857383685955 3 +8 31382 48.857543685955 2 +8 31541 49.157383685955 3 +8 31548 49.157543685955 2 +8 31707 49.457383685955 3 +8 31714 49.457543685955 2 +8 31873 49.757383685955 3 +8 31880 49.757543685955 2 +8 32039 50.057383685955 3 +8 32046 50.057543685955 2 +8 32205 50.357383685955 3 +8 32212 50.357543685955 2 +8 32371 50.657383685955 3 +8 32378 50.657543685955 2 +8 32537 50.957383685955 3 +8 32544 50.957543685955 2 +8 32699 51.257383685955 3 +8 32706 51.257543685955 2 +8 32861 51.557383685955 3 +8 32868 51.557543685955 2 +8 33027 51.857383685955 3 +8 33034 51.857543685955 2 +8 33193 52.157383685955 3 +8 33200 52.157543685955 2 +8 33359 52.457383685955 3 +8 33366 52.457543685955 2 +8 33525 52.757383685955 3 +8 33532 52.757543685955 2 +8 33691 53.057383685955 3 +8 33698 53.057543685955 2 +8 33828 53.357383685955 3 +8 33834 53.357543685955 2 +8 33955 53.657383685955 3 +8 33961 53.657543685955 2 +8 34082 53.957383685955 3 +8 34088 53.957543685955 2 +8 34209 54.257383685955 3 +8 34215 54.257543685955 2 +8 34336 54.557383685955 3 +8 34342 54.557543685955 2 +8 34463 54.857383685955 3 +8 34469 54.857543685955 2 +8 34590 55.157383685955 3 +8 34596 55.157543685955 2 +8 34717 55.457383685955 3 +8 34723 55.457543685955 2 +8 34844 55.757383685955 3 +8 34850 55.757543685955 2 +8 34971 56.057383685955 3 +8 34977 56.057543685955 2 +8 35098 56.357383685955 3 +8 35104 56.357543685955 2 +8 35215 56.657383685955 3 +8 35220 56.657543685955 2 +8 35299 56.957383685955 3 +8 35304 56.957543685955 2 +8 35383 57.257383685955 3 +8 35388 57.257543685955 2 +8 35467 57.557383685955 3 +8 35472 57.557543685955 2 +8 35551 57.857383685955 3 +8 35556 57.857543685955 2 +8 35635 58.157383685955 3 +8 35640 58.157543685955 2 +8 35719 58.457383685955 3 +8 35724 58.457543685955 2 +8 35803 58.757383685955 3 +8 35808 58.757543685955 2 +8 35887 59.057383685955 3 +8 35892 59.057543685955 2 +8 35971 59.357383685955 3 +8 35976 59.357543685955 2 +8 36055 59.657383685955 3 +8 36060 59.657543685955 2 +8 36139 59.957383685955 3 +8 36144 59.957543685955 2 +8 36215 60.257383685955 3 +8 36220 60.257543685955 2 +8 36291 60.557383685955 3 +8 36296 60.557543685955 2 +8 36367 60.857383685955 3 +8 36372 60.857543685955 2 +8 36443 61.157383685955 3 +8 36448 61.157543685955 2 +8 36519 61.457383685955 3 +8 36524 61.457543685955 2 +8 36595 61.757383685955 3 +8 36600 61.757543685955 2 +8 36671 62.057383685955 3 +8 36676 62.057543685955 2 +8 36747 62.357383685955 3 +8 36752 62.357543685955 2 +8 36823 62.657383685955 3 +8 36828 62.657543685955 2 +8 36899 62.957383685955 3 +8 36904 62.957543685955 2 +9 22 2.1 180 +10 22 2.1 1 +10 49 2.614557181566 3 +10 52 2.614717181566 1 +10 65 2.657383685955 0 +10 69 2.657543685955 1 +10 94 2.914557182681 3 +10 97 2.914717182681 1 +10 110 2.957383685955 0 +10 114 2.957543685955 1 +10 141 3.214557183861 3 +10 145 3.214717183861 1 +10 163 3.257383685955 0 +10 168 3.257543685955 1 +10 201 3.514557185136 3 +10 205 3.514717185136 1 +10 226 3.53127690138 3 +10 234 3.53143690138 1 +10 247 3.557383685955 0 +10 252 3.557543685955 1 +10 285 3.814557186493 3 +10 289 3.814717186493 1 +10 310 3.831276901063 3 +10 318 3.831436901063 1 +10 331 3.857383685955 0 +10 336 3.857543685955 1 +10 370 4.114557187941 3 +10 375 4.114717187941 1 +10 398 4.131276900741 3 +10 411 4.131436900741 1 +10 424 4.157383685955 0 +10 430 4.157543685955 1 +10 467 4.414557189528 3 +10 472 4.414717189528 1 +10 495 4.431276900411 3 +10 508 4.431436900411 1 +10 521 4.457383685955 0 +10 527 4.457543685955 1 +10 586 4.714557191249 3 +10 591 4.714717191249 1 +10 614 4.731276900107 3 +10 627 4.731436900107 1 +10 640 4.757383685955 0 +10 646 4.757543685955 1 +10 705 5.014557193103 3 +10 710 5.014717193103 1 +10 733 5.031276899786 3 +10 746 5.031436899786 1 +10 759 5.057383685955 0 +10 765 5.057543685955 1 +10 833 5.314557195171 3 +10 839 5.314717195171 1 +10 863 5.331276899476 3 +10 877 5.331436899476 1 +10 891 5.357383685955 0 +10 898 5.357543685955 1 +10 967 5.614557197442 3 +10 973 5.614717197442 1 +10 997 5.631276899171 3 +10 1011 5.631436899171 1 +10 1025 5.657383685955 0 +10 1032 5.657543685955 1 +10 1125 5.914557199962 3 +10 1131 5.914717199962 1 +10 1155 5.931276898866 3 +10 1169 5.931436898866 1 +10 1183 5.957383685955 0 +10 1190 5.957543685955 1 +10 1286 6.214557202762 3 +10 1297 6.214717202762 1 +10 1322 6.231276898564 3 +10 1341 6.231436898564 1 +10 1355 6.257383685955 0 +10 1363 6.257543685955 1 +10 1469 6.514557205852 3 +10 1480 6.514717205852 1 +10 1503 6.524399075657 3 +10 1518 6.524559075657 1 +10 1538 6.531276898265 3 +10 1557 6.531436898265 1 +10 1572 6.557383685955 0 +10 1580 6.557543685955 1 +10 1686 6.814557209291 3 +10 1697 6.814717209291 1 +10 1720 6.82439907586 3 +10 1735 6.82455907586 1 +10 1755 6.831276897959 3 +10 1774 6.831436897959 1 +10 1789 6.857383685955 0 +10 1797 6.857543685955 1 +10 1903 7.1145572131 3 +10 1914 7.1147172131 1 +10 1937 7.124399076049 3 +10 1952 7.124559076049 1 +10 1972 7.131276897653 3 +10 1991 7.131436897653 1 +10 2006 7.157383685955 0 +10 2014 7.157543685955 1 +10 2120 7.414557217271 3 +10 2131 7.414717217271 1 +10 2154 7.424399076251 3 +10 2169 7.424559076251 1 +10 2189 7.431276897348 3 +10 2208 7.431436897348 1 +10 2223 7.457383685955 0 +10 2231 7.457543685955 1 +10 2337 7.714557221838 3 +10 2348 7.714717221838 1 +10 2371 7.724399076456 3 +10 2386 7.724559076456 1 +10 2406 7.73127689705 3 +10 2425 7.73143689705 1 +10 2440 7.757383685955 0 +10 2448 7.757543685955 1 +10 2554 8.014557226859 3 +10 2565 8.014717226859 1 +10 2588 8.024399076668 3 +10 2603 8.024559076668 1 +10 2623 8.031276896762 3 +10 2642 8.031436896762 1 +10 2657 8.057383685955 0 +10 2665 8.057543685955 1 +10 2771 8.314557232422 3 +10 2782 8.314717232422 1 +10 2805 8.324399076881 3 +10 2820 8.324559076881 1 +10 2844 8.331276896481 3 +10 2863 8.331436896481 1 +10 2878 8.357383685955 0 +10 2886 8.357543685955 1 +10 2996 8.614557238496 3 +10 3007 8.614717238496 1 +10 3030 8.6243990771 3 +10 3045 8.6245590771 1 +10 3069 8.63127689619 3 +10 3088 8.63143689619 1 +10 3103 8.657383685955 0 +10 3111 8.657543685955 1 +10 3222 8.914557245124 3 +10 3237 8.914717245124 1 +10 3255 8.924399077324 3 +10 3270 8.924559077324 1 +10 3294 8.931276895893 3 +10 3313 8.931436895893 1 +10 3328 8.957383685955 0 +10 3336 8.957543685955 1 +10 3447 9.214557252325 3 +10 3462 9.214717252325 1 +10 3480 9.224399077547 3 +10 3495 9.224559077547 1 +10 3519 9.231276895621 3 +10 3538 9.231436895621 1 +10 3553 9.257383685955 0 +10 3561 9.257543685955 1 +10 3672 9.514557260085 3 +10 3687 9.514717260085 1 +10 3705 9.52439907778 3 +10 3720 9.52455907778 1 +10 3744 9.531276895347 3 +10 3763 9.531436895347 1 +10 3778 9.557383685955 0 +10 3786 9.557543685955 1 +10 3897 9.814557268307 3 +10 3912 9.814717268307 1 +10 3930 9.824399078019 3 +10 3945 9.824559078019 1 +10 3969 9.831276895075 3 +10 3988 9.831436895075 1 +10 4003 9.857383685955 0 +10 4011 9.857543685955 1 +10 4122 10.114557276848 3 +10 4137 10.114717276848 1 +10 4155 10.124399078264 3 +10 4170 10.124559078264 1 +10 4194 10.131276894808 3 +10 4213 10.131436894808 1 +10 4228 10.157383685955 0 +10 4236 10.157543685955 1 +10 4347 10.414557285658 3 +10 4362 10.414717285658 1 +10 4380 10.4243990785 3 +10 4395 10.4245590785 1 +10 4419 10.431276894532 3 +10 4438 10.431436894532 1 +10 4453 10.457383685955 0 +10 4461 10.457543685955 1 +10 4576 10.714557294754 3 +10 4591 10.714717294754 1 +10 4613 10.724399078727 3 +10 4628 10.724559078727 1 +10 4652 10.731276894259 3 +10 4671 10.731436894259 1 +10 4686 10.757383685955 0 +10 4694 10.757543685955 1 +10 4809 11.014557304135 3 +10 4824 11.014717304135 1 +10 4846 11.024399078987 3 +10 4861 11.024559078987 1 +10 4885 11.031276893999 3 +10 4904 11.031436893999 1 +10 4919 11.057383685955 0 +10 4927 11.057543685955 1 +10 5042 11.314557313736 3 +10 5057 11.314717313736 1 +10 5079 11.324399079221 3 +10 5094 11.324559079221 1 +10 5118 11.331276893733 3 +10 5137 11.331436893733 1 +10 5152 11.357383685955 0 +10 5160 11.357543685955 1 +10 5275 11.614557323591 3 +10 5290 11.614717323591 1 +10 5312 11.624399079471 3 +10 5327 11.624559079471 1 +10 5351 11.631276893479 3 +10 5370 11.631436893479 1 +10 5389 11.657383685955 0 +10 5397 11.657543685955 1 +10 5516 11.914557333695 3 +10 5531 11.914717333695 1 +10 5553 11.92439907973 3 +10 5568 11.92455907973 1 +10 5592 11.931276893219 3 +10 5611 11.931436893219 1 +10 5630 11.957383685955 0 +10 5638 11.957543685955 1 +10 5757 12.214557344013 3 +10 5772 12.214717344013 1 +10 5794 12.22439907998 3 +10 5809 12.22455907998 1 +10 5833 12.231276892968 3 +10 5852 12.231436892968 1 +10 5871 12.257383685955 0 +10 5879 12.257543685955 1 +10 5998 12.514557354529 3 +10 6013 12.514717354529 1 +10 6035 12.524399080256 3 +10 6050 12.524559080256 1 +10 6074 12.531276892721 3 +10 6093 12.531436892721 1 +10 6112 12.557383685955 0 +10 6120 12.557543685955 1 +10 6239 12.814557365221 3 +10 6254 12.814717365221 1 +10 6276 12.82439908052 3 +10 6291 12.82455908052 1 +10 6315 12.831276892469 3 +10 6334 12.831436892469 1 +10 6353 12.857383685955 0 +10 6361 12.857543685955 1 +10 6480 13.114557376122 3 +10 6495 13.114717376122 1 +10 6517 13.124399080797 3 +10 6532 13.124559080797 1 +10 6556 13.131276892214 3 +10 6575 13.131436892214 1 +10 6594 13.157383685955 0 +10 6602 13.157543685955 1 +10 6721 13.414557387173 3 +10 6736 13.414717387173 1 +10 6758 13.424399081079 3 +10 6773 13.424559081079 1 +10 6797 13.431276891978 3 +10 6816 13.431436891978 1 +10 6835 13.457383685955 0 +10 6843 13.457543685955 1 +10 6962 13.714557398373 3 +10 6977 13.714717398373 1 +10 6999 13.724399081347 3 +10 7014 13.724559081347 1 +10 7038 13.731276891728 3 +10 7057 13.731436891728 1 +10 7076 13.757383685955 0 +10 7084 13.757543685955 1 +10 7204 14.014557409766 3 +10 7223 14.014717409766 1 +10 7240 14.024399081623 3 +10 7255 14.024559081623 1 +10 7279 14.03127689148 3 +10 7298 14.03143689148 1 +10 7317 14.057383685955 0 +10 7325 14.057543685955 1 +10 7445 14.314557421278 3 +10 7464 14.314717421278 1 +10 7481 14.324399081908 3 +10 7496 14.324559081908 1 +10 7520 14.33127689125 3 +10 7539 14.33143689125 1 +10 7558 14.357383685955 0 +10 7566 14.357543685955 1 +10 7686 14.614557432907 3 +10 7705 14.614717432907 1 +10 7722 14.624399082205 3 +10 7737 14.624559082205 1 +10 7761 14.631276891011 3 +10 7780 14.631436891011 1 +10 7799 14.657383685955 0 +10 7807 14.657543685955 1 +10 7927 14.914557444663 3 +10 7946 14.914717444663 1 +10 7963 14.924399082499 3 +10 7978 14.924559082499 1 +10 8002 14.93127689078 3 +10 8021 14.93143689078 1 +10 8040 14.957383685955 0 +10 8048 14.957543685955 1 +10 8168 15.214557456539 3 +10 8187 15.214717456539 1 +10 8204 15.224399082794 3 +10 8219 15.224559082794 1 +10 8243 15.231276890537 3 +10 8262 15.231436890537 1 +10 8281 15.257383685955 0 +10 8289 15.257543685955 1 +10 8409 15.514557468564 3 +10 8428 15.514717468564 1 +10 8445 15.524399083099 3 +10 8460 15.524559083099 1 +10 8485 15.531276890317 3 +10 8508 15.531436890317 1 +10 8522 15.557383685955 0 +10 8530 15.557543685955 1 +10 8650 15.814557480657 3 +10 8669 15.814717480657 1 +10 8686 15.824399083408 3 +10 8701 15.824559083408 1 +10 8726 15.831276890112 3 +10 8749 15.831436890112 1 +10 8763 15.857383685955 0 +10 8771 15.857543685955 1 +10 8891 16.114557492863 3 +10 8910 16.114717492863 1 +10 8931 16.124399083716 3 +10 8946 16.124559083716 1 +10 8971 16.131276889879 3 +10 8994 16.131436889879 1 +10 9008 16.157383685955 0 +10 9016 16.157543685955 1 +10 9140 16.414557505188 3 +10 9159 16.414717505188 1 +10 9180 16.424399084041 3 +10 9195 16.424559084041 1 +10 9220 16.431276889657 3 +10 9243 16.431436889657 1 +10 9257 16.457383685955 0 +10 9265 16.457543685955 1 +10 9390 16.714557517603 3 +10 9413 16.714717517603 1 +10 9429 16.724399084357 3 +10 9444 16.724559084357 1 +10 9469 16.731276889444 3 +10 9492 16.731436889444 1 +10 9506 16.757383685955 0 +10 9514 16.757543685955 1 +10 9639 17.014557530081 3 +10 9662 17.014717530081 1 +10 9678 17.024399084668 3 +10 9693 17.024559084668 1 +10 9718 17.031276889227 3 +10 9741 17.031436889227 1 +10 9755 17.057383685955 0 +10 9763 17.057543685955 1 +10 9888 17.314557542674 3 +10 9911 17.314717542674 1 +10 9927 17.324399084984 3 +10 9942 17.324559084984 1 +10 9967 17.331276889013 3 +10 9990 17.331436889013 1 +10 10004 17.357383685955 0 +10 10012 17.357543685955 1 +10 10137 17.614557555309 3 +10 10160 17.614717555309 1 +10 10176 17.624399085289 3 +10 10191 17.624559085289 1 +10 10216 17.631276888786 3 +10 10239 17.631436888786 1 +10 10253 17.657383685955 0 +10 10261 17.657543685955 1 +10 10386 17.914557568022 2 +10 10409 17.914717568022 1 +10 10421 17.924399085606 3 +10 10436 17.924559085606 1 +10 10461 17.931276888582 3 +10 10484 17.931436888582 1 +10 10498 17.957383685955 0 +10 10506 17.957543685955 1 +10 10662 18.224399085935 3 +10 10677 18.224559085935 1 +10 10698 18.231276888386 3 +10 10721 18.231436888386 1 +10 10735 18.257383685955 0 +10 10743 18.257543685955 1 +10 10895 18.524399086265 3 +10 10910 18.524559086265 1 +10 10931 18.531276888177 3 +10 10954 18.531436888177 1 +10 10968 18.557383685955 0 +10 10976 18.557543685955 1 +10 11128 18.824399086608 3 +10 11143 18.824559086608 1 +10 11164 18.831276887981 3 +10 11187 18.831436887981 1 +10 11201 18.857383685955 0 +10 11209 18.857543685955 1 +10 11361 19.124399086967 3 +10 11376 19.124559086967 1 +10 11397 19.131276887793 3 +10 11420 19.131436887793 1 +10 11434 19.157383685955 0 +10 11442 19.157543685955 1 +10 11594 19.424399087317 3 +10 11609 19.424559087317 1 +10 11630 19.43127688759 3 +10 11653 19.43143688759 1 +10 11667 19.457383685955 0 +10 11675 19.457543685955 1 +10 11827 19.724399087464 3 +10 11842 19.724559087464 1 +10 11863 19.731276887029 3 +10 11886 19.731436887029 1 +10 11900 19.757383685955 0 +10 11908 19.757543685955 1 +10 12025 20.014557564104 3 +10 12048 20.014717564104 1 +10 12064 20.0243990873 3 +10 12079 20.0245590873 1 +10 12100 20.03127688588 3 +10 12123 20.03143688588 1 +10 12137 20.057383685955 0 +10 12145 20.057543685955 1 +10 12266 20.314557557995 3 +10 12289 20.314717557995 1 +10 12305 20.324399087241 3 +10 12320 20.324559087241 1 +10 12341 20.33127688455 3 +10 12364 20.33143688455 1 +10 12378 20.357383685955 0 +10 12386 20.357543685955 1 +10 12507 20.614557552362 3 +10 12530 20.614717552362 1 +10 12546 20.624399087446 3 +10 12561 20.624559087446 1 +10 12582 20.631276883138 3 +10 12605 20.631436883138 1 +10 12619 20.657383685955 0 +10 12627 20.657543685955 1 +10 12748 20.914557547102 3 +10 12771 20.914717547102 1 +10 12787 20.924399087797 3 +10 12802 20.924559087797 1 +10 12823 20.931276881619 3 +10 12846 20.931436881619 1 +10 12860 20.957383685955 0 +10 12868 20.957543685955 1 +10 12989 21.214557542284 3 +10 13012 21.214717542284 1 +10 13028 21.224399088467 3 +10 13043 21.224559088467 1 +10 13064 21.231276880094 3 +10 13087 21.231436880094 1 +10 13101 21.257383685955 0 +10 13109 21.257543685955 1 +10 13230 21.514557537844 3 +10 13253 21.514717537844 1 +10 13269 21.524399089457 3 +10 13284 21.524559089457 1 +10 13305 21.531276878505 3 +10 13328 21.531436878505 1 +10 13342 21.557383685955 0 +10 13350 21.557543685955 1 +10 13471 21.814557533746 3 +10 13494 21.814717533746 1 +10 13510 21.824399090731 3 +10 13525 21.824559090731 1 +10 13546 21.831276876822 3 +10 13569 21.831436876822 1 +10 13583 21.857383685955 0 +10 13591 21.857543685955 1 +10 13712 22.114557529963 3 +10 13735 22.114717529963 1 +10 13751 22.124399092291 3 +10 13766 22.124559092291 1 +10 13787 22.131276875046 3 +10 13810 22.131436875046 1 +10 13824 22.157383685955 0 +10 13832 22.157543685955 1 +10 13953 22.414557526479 3 +10 13976 22.414717526479 1 +10 13992 22.424399094215 3 +10 14007 22.424559094215 1 +10 14028 22.431276873268 3 +10 14051 22.431436873268 1 +10 14065 22.457383685955 0 +10 14073 22.457543685955 1 +10 14194 22.714557523315 3 +10 14217 22.714717523315 1 +10 14233 22.724399096641 3 +10 14248 22.724559096641 1 +10 14269 22.731276871582 3 +10 14292 22.731436871582 1 +10 14306 22.757383685955 0 +10 14314 22.757543685955 1 +10 14435 23.014557520464 3 +10 14458 23.014717520464 1 +10 14473 23.024399099585 3 +10 14484 23.024559099585 1 +10 14510 23.031276870013 3 +10 14533 23.031436870013 1 +10 14547 23.057383685955 0 +10 14555 23.057543685955 1 +10 14676 23.314557517914 3 +10 14699 23.314717517914 1 +10 14714 23.324399103103 3 +10 14725 23.324559103103 1 +10 14751 23.331276868542 3 +10 14774 23.331436868542 1 +10 14788 23.357383685955 0 +10 14796 23.357543685955 1 +10 14917 23.614557515636 3 +10 14940 23.614717515636 1 +10 14955 23.624399107238 3 +10 14966 23.624559107238 1 +10 14992 23.631276867299 3 +10 15015 23.631436867299 1 +10 15029 23.657383685955 0 +10 15037 23.657543685955 1 +10 15158 23.914557513622 3 +10 15181 23.914717513622 1 +10 15196 23.924399112031 3 +10 15207 23.924559112031 1 +10 15233 23.931276866321 3 +10 15256 23.931436866321 1 +10 15270 23.957383685955 0 +10 15278 23.957543685955 1 +10 15399 24.214557511852 3 +10 15422 24.214717511852 1 +10 15437 24.224399117426 3 +10 15448 24.224559117426 1 +10 15474 24.231276865622 3 +10 15497 24.231436865622 1 +10 15511 24.257383685955 0 +10 15519 24.257543685955 1 +10 15640 24.514557510265 3 +10 15663 24.514717510265 1 +10 15678 24.524399123441 3 +10 15689 24.524559123441 1 +10 15715 24.531276865164 3 +10 15738 24.531436865164 1 +10 15752 24.557383685955 0 +10 15760 24.557543685955 1 +10 15881 24.814557508895 3 +10 15904 24.814717508895 1 +10 15919 24.824399130236 3 +10 15930 24.824559130236 1 +10 15956 24.831276865034 3 +10 15979 24.831436865034 1 +10 15993 24.857383685955 0 +10 16001 24.857543685955 1 +10 16122 25.114557507733 3 +10 16145 25.114717507733 1 +10 16160 25.124399137961 3 +10 16171 25.124559137961 1 +10 16197 25.131276865348 3 +10 16220 25.131436865348 1 +10 16234 25.157383685955 0 +10 16242 25.157543685955 1 +10 16363 25.414557506754 3 +10 16386 25.414717506754 1 +10 16401 25.424399146492 3 +10 16412 25.424559146492 1 +10 16438 25.431276866065 3 +10 16461 25.431436866065 1 +10 16475 25.457383685955 0 +10 16483 25.457543685955 1 +10 16604 25.714557505914 3 +10 16627 25.714717505914 1 +10 16642 25.724399155863 3 +10 16653 25.724559155863 1 +10 16679 25.731276867271 3 +10 16702 25.731436867271 1 +10 16716 25.757383685955 0 +10 16724 25.757543685955 1 +10 16845 26.014557505277 3 +10 16868 26.014717505277 1 +10 16883 26.024399166196 3 +10 16894 26.024559166196 1 +10 16920 26.031276869882 3 +10 16943 26.031436869882 1 +10 16957 26.057383685955 0 +10 16965 26.057543685955 1 +10 17085 26.314557504782 3 +10 17104 26.314717504782 1 +10 17124 26.324399177308 3 +10 17135 26.324559177308 1 +10 17161 26.331276874069 3 +10 17184 26.331436874069 1 +10 17198 26.357383685955 0 +10 17206 26.357543685955 1 +10 17326 26.614557504308 3 +10 17345 26.614717504308 1 +10 17365 26.624399188753 3 +10 17376 26.624559188753 1 +10 17402 26.631276879416 3 +10 17425 26.631436879416 1 +10 17439 26.657383685955 0 +10 17447 26.657543685955 1 +10 17567 26.914557503709 3 +10 17586 26.914717503709 1 +10 17606 26.924399200042 3 +10 17617 26.924559200042 1 +10 17643 26.931276885432 3 +10 17666 26.931436885432 1 +10 17680 26.957383685955 0 +10 17688 26.957543685955 1 +10 17808 27.214557502764 3 +10 17827 27.214717502764 1 +10 17843 27.224399210302 3 +10 17854 27.224559210302 1 +10 17876 27.231276891257 3 +10 17899 27.231436891257 1 +10 17913 27.257383685955 0 +10 17921 27.257543685955 1 +10 18041 27.514557501474 3 +10 18060 27.514717501474 1 +10 18076 27.524399219548 3 +10 18087 27.524559219548 1 +10 18109 27.531276896461 3 +10 18132 27.531436896461 1 +10 18146 27.557383685955 0 +10 18154 27.557543685955 1 +10 18274 27.814557499885 3 +10 18293 27.814717499885 1 +10 18309 27.824399227674 3 +10 18320 27.824559227674 1 +10 18342 27.831276898141 3 +10 18365 27.831436898141 1 +10 18379 27.857383685955 0 +10 18387 27.857543685955 1 +10 18507 28.114557497525 3 +10 18526 28.114717497525 1 +10 18542 28.124399234561 3 +10 18553 28.124559234561 1 +10 18575 28.131276899693 3 +10 18598 28.131436899693 1 +10 18612 28.157383685955 0 +10 18620 28.157543685955 1 +10 18740 28.414557494637 3 +10 18759 28.414717494637 1 +10 18775 28.424399240801 3 +10 18786 28.424559240801 1 +10 18808 28.431276907999 3 +10 18831 28.431436907999 1 +10 18845 28.457383685955 0 +10 18853 28.457543685955 1 +10 18973 28.714557490176 3 +10 18992 28.714717490176 1 +10 19008 28.724399242627 3 +10 19019 28.724559242627 1 +10 19041 28.731276917209 3 +10 19064 28.731436917209 1 +10 19078 28.757383685955 0 +10 19086 28.757543685955 1 +10 19206 29.01455748367 3 +10 19225 29.01471748367 1 +10 19241 29.02439924345 3 +10 19252 29.02455924345 1 +10 19307 29.057383685955 0 +10 19315 29.057543685955 1 +10 19431 29.314557474199 3 +10 19450 29.314717474199 1 +10 19466 29.324399247583 3 +10 19477 29.324559247583 1 +10 19532 29.357383685955 0 +10 19540 29.357543685955 1 +10 19656 29.614557462553 3 +10 19675 29.614717462553 1 +10 19691 29.624399248962 3 +10 19702 29.624559248962 1 +10 19757 29.657383685955 0 +10 19765 29.657543685955 1 +10 19881 29.914557450409 3 +10 19900 29.914717450409 1 +10 19916 29.924399249496 3 +10 19927 29.924559249496 1 +10 19982 29.957383685955 0 +10 19990 29.957543685955 1 +10 20106 30.214557437824 3 +10 20125 30.214717437824 1 +10 20141 30.224399249493 3 +10 20152 30.224559249493 1 +10 20207 30.257383685955 0 +10 20215 30.257543685955 1 +10 20329 30.514557424894 3 +10 20340 30.514717424894 1 +10 20366 30.524399249491 3 +10 20377 30.524559249491 1 +10 20432 30.557383685955 0 +10 20440 30.557543685955 1 +10 20554 30.814557411739 3 +10 20565 30.814717411739 1 +10 20591 30.824399249488 3 +10 20602 30.824559249488 1 +10 20657 30.857383685955 0 +10 20665 30.857543685955 1 +10 20779 31.114557398299 3 +10 20790 31.114717398299 1 +10 20816 31.124399249483 3 +10 20827 31.124559249483 1 +10 20886 31.157383685955 0 +10 20894 31.157543685955 1 +10 21012 31.414557384666 3 +10 21023 31.414717384666 1 +10 21049 31.424399249476 3 +10 21060 31.424559249476 1 +10 21119 31.457383685955 0 +10 21127 31.457543685955 1 +10 21245 31.714557370995 3 +10 21256 31.714717370995 1 +10 21282 31.724399249469 3 +10 21293 31.724559249469 1 +10 21352 31.757383685955 0 +10 21360 31.757543685955 1 +10 21478 32.014557357699 3 +10 21489 32.014717357699 1 +10 21516 32.024399249465 3 +10 21531 32.024559249465 1 +10 21585 32.057383685955 0 +10 21593 32.057543685955 1 +10 21711 32.314557344745 3 +10 21722 32.314717344745 1 +10 21749 32.324399249464 3 +10 21764 32.324559249464 1 +10 21818 32.357383685955 0 +10 21826 32.357543685955 1 +10 21944 32.614557332223 3 +10 21955 32.614717332223 1 +10 21982 32.624399249467 3 +10 21997 32.624559249467 1 +10 22051 32.657383685955 0 +10 22059 32.657543685955 1 +10 22177 32.914557320155 3 +10 22188 32.914717320155 1 +10 22215 32.924399249474 3 +10 22230 32.924559249474 1 +10 22284 32.957383685955 0 +10 22292 32.957543685955 1 +10 22410 33.214557308546 3 +10 22421 33.214717308546 1 +10 22448 33.224399249483 3 +10 22463 33.224559249483 1 +10 22517 33.257383685955 0 +10 22525 33.257543685955 1 +10 22643 33.51455729748 3 +10 22654 33.51471729748 1 +10 22681 33.524399249496 3 +10 22696 33.524559249496 1 +10 22750 33.557383685955 0 +10 22758 33.557543685955 1 +10 22876 33.814557286954 3 +10 22887 33.814717286954 1 +10 22910 33.824399249513 3 +10 22925 33.824559249513 1 +10 22979 33.857383685955 0 +10 22987 33.857543685955 1 +10 23092 34.114557277044 3 +10 23102 34.114717277044 1 +10 23119 34.124399249532 3 +10 23129 34.124559249532 1 +10 23173 34.157383685955 0 +10 23180 34.157543685955 1 +10 23250 34.41455726774 3 +10 23260 34.41471726774 1 +10 23277 34.424399249554 3 +10 23287 34.424559249554 1 +10 23331 34.457383685955 0 +10 23338 34.457543685955 1 +10 23408 34.714557259086 3 +10 23418 34.714717259086 1 +10 23435 34.72439924958 3 +10 23445 34.72455924958 1 +10 23489 34.757383685955 0 +10 23496 34.757543685955 1 +10 23566 35.01455725114 3 +10 23576 35.01471725114 1 +10 23593 35.024399249609 3 +10 23603 35.024559249609 1 +10 23647 35.057383685955 0 +10 23654 35.057543685955 1 +10 23685 35.14399390924 3 +10 23699 35.14415390924 1 +10 23728 35.314557244297 3 +10 23738 35.314717244297 1 +10 23755 35.324399249632 3 +10 23765 35.324559249632 1 +10 23809 35.357383685955 0 +10 23816 35.357543685955 1 +10 23851 35.443993894903 3 +10 23865 35.444153894903 1 +10 23894 35.614557239399 3 +10 23904 35.614717239399 1 +10 23921 35.624399249628 3 +10 23931 35.624559249628 1 +10 23975 35.657383685955 0 +10 23982 35.657543685955 1 +10 24017 35.743993882114 3 +10 24031 35.744153882114 1 +10 24059 35.914557236445 3 +10 24065 35.914717236445 1 +10 24087 35.924399249595 3 +10 24097 35.924559249595 1 +10 24141 35.957383685955 0 +10 24148 35.957543685955 1 +10 24183 36.043993870912 3 +10 24197 36.044153870912 1 +10 24225 36.214557235432 3 +10 24231 36.214717235432 1 +10 24253 36.224399249544 3 +10 24263 36.224559249544 1 +10 24307 36.257383685955 0 +10 24314 36.257543685955 1 +10 24349 36.343993861309 3 +10 24363 36.344153861309 1 +10 24391 36.514557236231 3 +10 24397 36.514717236231 1 +10 24419 36.524399249492 3 +10 24429 36.524559249492 1 +10 24473 36.557383685955 0 +10 24480 36.557543685955 1 +10 24515 36.643993853328 3 +10 24529 36.644153853328 1 +10 24558 36.814557238201 3 +10 24568 36.814717238201 1 +10 24585 36.824399249465 3 +10 24595 36.824559249465 1 +10 24639 36.857383685955 0 +10 24646 36.857543685955 1 +10 24681 36.943993845573 3 +10 24695 36.944153845573 1 +10 24724 37.114557240113 3 +10 24734 37.114717240113 1 +10 24751 37.124399249471 3 +10 24761 37.124559249471 1 +10 24805 37.157383685955 0 +10 24812 37.157543685955 1 +10 24846 37.243993835004 3 +10 24856 37.244153835004 1 +10 24890 37.414557242061 3 +10 24900 37.414717242061 1 +10 24917 37.424399249494 3 +10 24927 37.424559249494 1 +10 24971 37.457383685955 0 +10 24978 37.457543685955 1 +10 25012 37.543993814684 3 +10 25022 37.544153814684 1 +10 25056 37.714557244204 3 +10 25066 37.714717244204 1 +10 25083 37.724399249526 3 +10 25093 37.724559249526 1 +10 25137 37.757383685955 0 +10 25144 37.757543685955 1 +10 25178 37.843993790864 3 +10 25188 37.844153790864 1 +10 25222 38.014557246626 3 +10 25232 38.014717246626 1 +10 25249 38.024399249562 3 +10 25259 38.024559249562 1 +10 25303 38.057383685955 0 +10 25310 38.057543685955 1 +10 25344 38.143993766481 3 +10 25354 38.144153766481 1 +10 25388 38.314557249321 3 +10 25398 38.314717249321 1 +10 25415 38.324399249594 3 +10 25425 38.324559249594 1 +10 25469 38.357383685955 0 +10 25476 38.357543685955 1 +10 25510 38.443993741575 3 +10 25520 38.444153741575 1 +10 25554 38.614557252296 3 +10 25564 38.614717252296 1 +10 25581 38.624399249618 3 +10 25591 38.624559249618 1 +10 25635 38.657383685955 0 +10 25642 38.657543685955 1 +10 25676 38.743993716074 3 +10 25686 38.744153716074 1 +10 25720 38.914557255584 3 +10 25730 38.914717255584 1 +10 25747 38.924399249631 3 +10 25757 38.924559249631 1 +10 25801 38.957383685955 0 +10 25808 38.957543685955 1 +10 25842 39.043993690005 3 +10 25852 39.044153690005 1 +10 25886 39.214557259182 3 +10 25896 39.214717259182 1 +10 25913 39.224399249629 3 +10 25923 39.224559249629 1 +10 25967 39.257383685955 0 +10 25974 39.257543685955 1 +10 26008 39.343993663209 3 +10 26018 39.344153663209 1 +10 26052 39.514557263099 3 +10 26062 39.514717263099 1 +10 26079 39.524399249613 3 +10 26089 39.524559249613 1 +10 26133 39.557383685955 0 +10 26140 39.557543685955 1 +10 26174 39.643993635768 3 +10 26184 39.644153635768 1 +10 26218 39.81455726744 3 +10 26228 39.81471726744 1 +10 26245 39.824399249586 3 +10 26255 39.824559249586 1 +10 26299 39.857383685955 0 +10 26306 39.857543685955 1 +10 26340 39.943993607814 3 +10 26350 39.944153607814 1 +10 26384 40.114557272479 3 +10 26394 40.114717272479 1 +10 26411 40.124399249559 3 +10 26421 40.124559249559 1 +10 26465 40.157383685955 0 +10 26472 40.157543685955 1 +10 26505 40.243993579799 3 +10 26511 40.244153579799 1 +10 26550 40.414557278253 3 +10 26560 40.414717278253 1 +10 26577 40.424399249535 3 +10 26587 40.424559249535 1 +10 26631 40.457383685955 0 +10 26638 40.457543685955 1 +10 26671 40.543993551811 3 +10 26677 40.544153551811 1 +10 26716 40.714557284831 3 +10 26726 40.714717284831 1 +10 26743 40.724399249515 3 +10 26753 40.724559249515 1 +10 26801 40.757383685955 0 +10 26808 40.757543685955 1 +10 26841 40.843993523891 3 +10 26847 40.844153523891 1 +10 26890 41.014557292056 3 +10 26900 41.014717292056 1 +10 26917 41.024399249498 3 +10 26927 41.024559249498 1 +10 26975 41.057383685955 0 +10 26982 41.057543685955 1 +10 27015 41.143993495882 3 +10 27021 41.144153495882 1 +10 27064 41.314557299998 3 +10 27074 41.314717299998 1 +10 27091 41.324399249485 3 +10 27101 41.324559249485 1 +10 27149 41.357383685955 0 +10 27156 41.357543685955 1 +10 27189 41.44399346791 3 +10 27195 41.44415346791 1 +10 27238 41.614557308543 3 +10 27248 41.614717308543 1 +10 27265 41.624399249475 3 +10 27275 41.624559249475 1 +10 27323 41.657383685955 0 +10 27330 41.657543685955 1 +10 27363 41.743993439965 3 +10 27369 41.744153439965 1 +10 27412 41.914557317732 3 +10 27422 41.914717317732 1 +10 27439 41.924399249468 3 +10 27449 41.924559249468 1 +10 27497 41.957383685955 0 +10 27504 41.957543685955 1 +10 27537 42.043993412971 3 +10 27543 42.044153412971 1 +10 27586 42.214557327498 3 +10 27596 42.214717327498 1 +10 27613 42.224399249465 3 +10 27623 42.224559249465 1 +10 27671 42.257383685955 0 +10 27678 42.257543685955 1 +10 27711 42.34399338739 3 +10 27717 42.34415338739 1 +10 27760 42.514557337799 3 +10 27770 42.514717337799 1 +10 27787 42.524399249465 3 +10 27797 42.524559249465 1 +10 27845 42.557383685955 0 +10 27852 42.557543685955 1 +10 27885 42.643993363107 3 +10 27891 42.644153363107 1 +10 27934 42.814557348649 3 +10 27944 42.814717348649 1 +10 27961 42.824399249468 3 +10 27971 42.824559249468 1 +10 28019 42.857383685955 0 +10 28026 42.857543685955 1 +10 28059 42.943993340208 3 +10 28065 42.944153340208 1 +10 28107 43.114557359966 3 +10 28113 43.114717359966 1 +10 28135 43.124399249475 3 +10 28145 43.124559249475 1 +10 28193 43.157383685955 0 +10 28200 43.157543685955 1 +10 28233 43.243993318662 3 +10 28239 43.244153318662 1 +10 28281 43.414557371721 3 +10 28287 43.414717371721 1 +10 28309 43.424399249485 3 +10 28319 43.424559249485 1 +10 28367 43.457383685955 0 +10 28374 43.457543685955 1 +10 28407 43.543993298467 3 +10 28413 43.544153298467 1 +10 28455 43.71455738363 3 +10 28461 43.71471738363 1 +10 28483 43.724399249498 3 +10 28493 43.724559249498 1 +10 28541 43.757383685955 0 +10 28548 43.757543685955 1 +10 28581 43.843993279612 3 +10 28587 43.844153279612 1 +10 28629 44.014557394666 3 +10 28635 44.014717394666 1 +10 28657 44.024399249515 3 +10 28667 44.024559249515 1 +10 28715 44.057383685955 0 +10 28722 44.057543685955 1 +10 28755 44.143993262339 3 +10 28761 44.144153262339 1 +10 28803 44.314557404849 3 +10 28809 44.314717404849 1 +10 28832 44.324399249523 3 +10 28846 44.324559249523 1 +10 28885 44.357383685955 0 +10 28892 44.357543685955 1 +10 28925 44.443993247573 3 +10 28931 44.444153247573 1 +10 28969 44.614557414115 3 +10 28975 44.614717414115 1 +10 28998 44.624399249512 3 +10 29012 44.624559249512 1 +10 29051 44.657383685955 0 +10 29058 44.657543685955 1 +10 29091 44.743993235516 3 +10 29097 44.744153235516 1 +10 29135 44.914557422365 3 +10 29141 44.914717422365 1 +10 29164 44.92439924949 3 +10 29178 44.92455924949 1 +10 29217 44.957383685955 0 +10 29224 44.957543685955 1 +10 29257 45.04399322614 3 +10 29263 45.04415322614 1 +10 29301 45.214557429517 3 +10 29307 45.214717429517 1 +10 29330 45.224399249469 3 +10 29344 45.224559249469 1 +10 29383 45.257383685955 0 +10 29390 45.257543685955 1 +10 29423 45.343993218642 3 +10 29429 45.344153218642 1 +10 29467 45.514557435742 3 +10 29473 45.514717435742 1 +10 29496 45.524399249468 3 +10 29510 45.524559249468 1 +10 29549 45.557383685955 0 +10 29556 45.557543685955 1 +10 29589 45.643993212262 3 +10 29595 45.644153212262 1 +10 29633 45.814557442585 3 +10 29639 45.814717442585 1 +10 29662 45.82439924948 3 +10 29676 45.82455924948 1 +10 29715 45.857383685955 0 +10 29722 45.857543685955 1 +10 29755 45.943993205371 3 +10 29761 45.944153205371 1 +10 29799 46.114557450187 3 +10 29805 46.114717450187 1 +10 29828 46.124399246618 3 +10 29842 46.124559246618 1 +10 29881 46.157383685955 0 +10 29888 46.157543685955 1 +10 29921 46.24399319776 3 +10 29927 46.24415319776 1 +10 29965 46.414557458063 3 +10 29971 46.414717458063 1 +10 29994 46.424399237708 3 +10 30008 46.424559237708 1 +10 30047 46.457383685955 0 +10 30054 46.457543685955 1 +10 30087 46.54399318918 3 +10 30093 46.54415318918 1 +10 30131 46.714557464072 3 +10 30137 46.714717464072 1 +10 30160 46.724399226197 3 +10 30174 46.724559226197 1 +10 30213 46.757383685955 0 +10 30220 46.757543685955 1 +10 30253 46.843993179661 3 +10 30259 46.844153179661 1 +10 30297 47.014557466477 3 +10 30303 47.014717466477 1 +10 30326 47.02439921469 3 +10 30340 47.02455921469 1 +10 30379 47.057383685955 0 +10 30386 47.057543685955 1 +10 30419 47.143993169499 3 +10 30425 47.144153169499 1 +10 30463 47.314557467583 3 +10 30469 47.314717467583 1 +10 30492 47.324399203344 3 +10 30506 47.324559203344 1 +10 30545 47.357383685955 0 +10 30552 47.357543685955 1 +10 30585 47.443993161554 3 +10 30591 47.444153161554 1 +10 30629 47.614557469418 3 +10 30635 47.614717469418 1 +10 30658 47.62439919222 3 +10 30672 47.62455919222 1 +10 30711 47.657383685955 0 +10 30718 47.657543685955 1 +10 30751 47.743993166005 3 +10 30757 47.744153166005 1 +10 30795 47.914557472096 3 +10 30801 47.914717472096 1 +10 30824 47.924399181338 3 +10 30838 47.924559181338 1 +10 30877 47.957383685955 0 +10 30884 47.957543685955 1 +10 30917 48.043993178928 3 +10 30923 48.044153178928 1 +10 30961 48.214557475721 3 +10 30967 48.214717475721 1 +10 30989 48.224399170754 3 +10 30999 48.224559170754 1 +10 31043 48.257383685955 0 +10 31050 48.257543685955 1 +10 31083 48.343993193323 3 +10 31089 48.344153193323 1 +10 31128 48.514557480378 3 +10 31138 48.514717480378 1 +10 31155 48.524399160478 3 +10 31165 48.524559160478 1 +10 31209 48.557383685955 0 +10 31216 48.557543685955 1 +10 31249 48.643993209351 3 +10 31255 48.644153209351 1 +10 31294 48.8145574862 3 +10 31304 48.8147174862 1 +10 31321 48.824399150571 3 +10 31331 48.824559150571 1 +10 31375 48.857383685955 0 +10 31382 48.857543685955 1 +10 31415 48.943993225428 3 +10 31421 48.944153225428 1 +10 31460 49.11455749318 3 +10 31470 49.11471749318 1 +10 31487 49.124399141102 3 +10 31497 49.124559141102 1 +10 31541 49.157383685955 0 +10 31548 49.157543685955 1 +10 31581 49.243993241593 3 +10 31587 49.244153241593 1 +10 31626 49.4145575013 3 +10 31636 49.4147175013 1 +10 31653 49.424399131999 3 +10 31663 49.424559131999 1 +10 31707 49.457383685955 0 +10 31714 49.457543685955 1 +10 31747 49.543993256365 3 +10 31753 49.544153256365 1 +10 31792 49.714557510532 3 +10 31802 49.714717510532 1 +10 31818 49.72439912329 3 +10 31824 49.72455912329 1 +10 31873 49.757383685955 0 +10 31880 49.757543685955 1 +10 31913 49.843993271223 3 +10 31919 49.844153271223 1 +10 31958 50.014557520716 3 +10 31968 50.014717520716 1 +10 31984 50.024399114997 3 +10 31990 50.024559114997 1 +10 32039 50.057383685955 0 +10 32046 50.057543685955 1 +10 32079 50.143993285388 3 +10 32085 50.144153285388 1 +10 32124 50.314557531836 3 +10 32134 50.314717531836 1 +10 32150 50.324399107181 3 +10 32156 50.324559107181 1 +10 32205 50.357383685955 0 +10 32212 50.357543685955 1 +10 32245 50.443993299881 3 +10 32251 50.444153299881 1 +10 32290 50.614557543841 3 +10 32300 50.614717543841 1 +10 32316 50.6243990998 3 +10 32322 50.6245590998 1 +10 32371 50.657383685955 0 +10 32378 50.657543685955 1 +10 32411 50.743993314719 3 +10 32417 50.744153314719 1 +10 32456 50.914557556641 3 +10 32466 50.914717556641 1 +10 32482 50.924399092883 3 +10 32488 50.924559092883 1 +10 32537 50.957383685955 0 +10 32544 50.957543685955 1 +10 32577 51.043993329888 3 +10 32583 51.044153329888 1 +10 32644 51.224399086505 3 +10 32650 51.224559086505 1 +10 32699 51.257383685955 0 +10 32706 51.257543685955 1 +10 32735 51.343993345414 3 +10 32741 51.344153345414 1 +10 32802 51.524399080627 3 +10 32808 51.524559080627 1 +10 32835 51.531276906599 3 +10 32845 51.531436906599 1 +10 32861 51.557383685955 0 +10 32868 51.557543685955 1 +10 32901 51.643993361304 3 +10 32907 51.644153361304 1 +10 32968 51.824399075287 3 +10 32974 51.824559075287 1 +10 33001 51.831276887561 3 +10 33011 51.831436887561 1 +10 33027 51.857383685955 0 +10 33034 51.857543685955 1 +10 33067 51.943993377578 3 +10 33073 51.944153377578 1 +10 33134 52.124399070526 3 +10 33140 52.124559070526 1 +10 33167 52.131276868507 3 +10 33177 52.131436868507 1 +10 33193 52.157383685955 0 +10 33200 52.157543685955 1 +10 33233 52.243993394241 3 +10 33239 52.244153394241 1 +10 33300 52.424399066364 3 +10 33306 52.424559066364 1 +10 33333 52.431276849398 3 +10 33343 52.431436849398 1 +10 33359 52.457383685955 0 +10 33366 52.457543685955 1 +10 33399 52.543993411231 3 +10 33405 52.544153411231 1 +10 33466 52.724399062755 3 +10 33472 52.724559062755 1 +10 33498 52.731276830378 3 +10 33504 52.731436830378 1 +10 33525 52.757383685955 0 +10 33532 52.757543685955 1 +10 33565 52.843993428579 3 +10 33571 52.844153428579 1 +10 33632 53.024399059705 3 +10 33638 53.024559059705 1 +10 33664 53.031276811401 3 +10 33670 53.031436811401 1 +10 33691 53.057383685955 0 +10 33698 53.057543685955 1 +10 33731 53.143993445991 3 +10 33737 53.144153445991 1 +10 33774 53.324399056666 3 +10 33779 53.324559056666 1 +10 33803 53.331276793082 3 +10 33808 53.331436793082 1 +10 33828 53.357383685955 0 +10 33834 53.357543685955 1 +10 33865 53.443993462692 3 +10 33870 53.444153462692 1 +10 33901 53.624399053363 3 +10 33906 53.624559053363 1 +10 33930 53.631276775636 3 +10 33935 53.631436775636 1 +10 33955 53.657383685955 0 +10 33961 53.657543685955 1 +10 33992 53.74399347871 3 +10 33997 53.74415347871 1 +10 34028 53.924399049701 3 +10 34033 53.924559049701 1 +10 34057 53.931276759068 3 +10 34062 53.931436759068 1 +10 34082 53.957383685955 0 +10 34088 53.957543685955 1 +10 34119 54.04399349386 3 +10 34124 54.04415349386 1 +10 34155 54.224399045616 3 +10 34160 54.224559045616 1 +10 34184 54.231276743362 3 +10 34189 54.231436743362 1 +10 34209 54.257383685955 0 +10 34215 54.257543685955 1 +10 34246 54.343993508088 3 +10 34251 54.344153508088 1 +10 34282 54.524399041209 3 +10 34287 54.524559041209 1 +10 34311 54.531276728362 3 +10 34316 54.531436728362 1 +10 34336 54.557383685955 0 +10 34342 54.557543685955 1 +10 34373 54.643993521993 3 +10 34378 54.644153521993 1 +10 34409 54.824399037501 3 +10 34414 54.824559037501 1 +10 34438 54.831276713317 3 +10 34443 54.831436713317 1 +10 34463 54.857383685955 0 +10 34469 54.857543685955 1 +10 34500 54.943993536727 3 +10 34505 54.944153536727 1 +10 34536 55.124399034691 3 +10 34541 55.124559034691 1 +10 34565 55.131276698742 3 +10 34570 55.131436698742 1 +10 34590 55.157383685955 0 +10 34596 55.157543685955 1 +10 34627 55.243993552196 3 +10 34632 55.244153552196 1 +10 34663 55.424399032731 3 +10 34668 55.424559032731 1 +10 34692 55.431276684798 3 +10 34697 55.431436684798 1 +10 34717 55.457383685955 0 +10 34723 55.457543685955 1 +10 34754 55.543993568263 3 +10 34759 55.544153568263 1 +10 34790 55.72439903167 3 +10 34795 55.72455903167 1 +10 34819 55.731276671503 3 +10 34824 55.731436671503 1 +10 34844 55.757383685955 0 +10 34850 55.757543685955 1 +10 34881 55.843993584895 3 +10 34886 55.844153584895 1 +10 34917 56.02439903159 3 +10 34922 56.02455903159 1 +10 34946 56.031276658808 3 +10 34951 56.031436658808 1 +10 34971 56.057383685955 0 +10 34977 56.057543685955 1 +10 35008 56.143993602134 3 +10 35013 56.144153602134 1 +10 35044 56.324399032473 3 +10 35049 56.324559032473 1 +10 35073 56.331276646771 3 +10 35078 56.331436646771 1 +10 35098 56.357383685955 0 +10 35104 56.357543685955 1 +10 35135 56.443993619822 3 +10 35140 56.444153619822 1 +10 35169 56.624399034306 3 +10 35173 56.624559034306 1 +10 35192 56.631276634911 3 +10 35196 56.631436634911 1 +10 35215 56.657383685955 0 +10 35220 56.657543685955 1 +10 35253 56.924399037177 3 +10 35257 56.924559037177 1 +10 35276 56.931276625815 3 +10 35280 56.931436625815 1 +10 35299 56.957383685955 0 +10 35304 56.957543685955 1 +10 35337 57.224399041135 3 +10 35341 57.224559041135 1 +10 35360 57.231276624504 3 +10 35364 57.231436624504 1 +10 35383 57.257383685955 0 +10 35388 57.257543685955 1 +10 35421 57.524399046156 3 +10 35425 57.524559046156 1 +10 35444 57.531276623773 3 +10 35448 57.531436623773 1 +10 35467 57.557383685955 0 +10 35472 57.557543685955 1 +10 35505 57.824399052067 3 +10 35509 57.824559052067 1 +10 35528 57.83127662344 3 +10 35532 57.83143662344 1 +10 35551 57.857383685955 0 +10 35556 57.857543685955 1 +10 35589 58.12439905849 3 +10 35593 58.12455905849 1 +10 35612 58.131276624201 3 +10 35616 58.131436624201 1 +10 35635 58.157383685955 0 +10 35640 58.157543685955 1 +10 35673 58.424399065464 3 +10 35677 58.424559065464 1 +10 35696 58.431276626037 3 +10 35700 58.431436626037 1 +10 35719 58.457383685955 0 +10 35724 58.457543685955 1 +10 35757 58.72439907295 3 +10 35761 58.72455907295 1 +10 35780 58.731276628991 3 +10 35784 58.731436628991 1 +10 35803 58.757383685955 0 +10 35808 58.757543685955 1 +10 35841 59.024399080905 3 +10 35845 59.024559080905 1 +10 35864 59.031276633114 3 +10 35868 59.031436633114 1 +10 35887 59.057383685955 0 +10 35892 59.057543685955 1 +10 35925 59.324399089353 3 +10 35929 59.324559089353 1 +10 35948 59.331276638423 3 +10 35952 59.331436638423 1 +10 35971 59.357383685955 0 +10 35976 59.357543685955 1 +10 36009 59.624399098247 3 +10 36013 59.624559098247 1 +10 36032 59.631276644886 3 +10 36036 59.631436644886 1 +10 36055 59.657383685955 0 +10 36060 59.657543685955 1 +10 36093 59.924399107553 3 +10 36097 59.924559107553 1 +10 36116 59.931276652523 3 +10 36120 59.931436652523 1 +10 36139 59.957383685955 0 +10 36144 59.957543685955 1 +10 36177 60.224399117246 3 +10 36181 60.224559117246 1 +10 36196 60.231276661221 3 +10 36200 60.231436661221 1 +10 36215 60.257383685955 0 +10 36220 60.257543685955 1 +10 36253 60.524399127334 3 +10 36257 60.524559127334 1 +10 36272 60.53127667062 3 +10 36276 60.53143667062 1 +10 36291 60.557383685955 0 +10 36296 60.557543685955 1 +10 36329 60.824399137773 3 +10 36333 60.824559137773 1 +10 36348 60.831276680584 3 +10 36352 60.831436680584 1 +10 36367 60.857383685955 0 +10 36372 60.857543685955 1 +10 36405 61.124399148508 3 +10 36409 61.124559148508 1 +10 36424 61.131276691084 3 +10 36428 61.131436691084 1 +10 36443 61.157383685955 0 +10 36448 61.157543685955 1 +10 36481 61.424399159611 3 +10 36485 61.424559159611 1 +10 36500 61.431276701991 3 +10 36504 61.431436701991 1 +10 36519 61.457383685955 0 +10 36524 61.457543685955 1 +10 36557 61.724399171016 3 +10 36561 61.724559171016 1 +10 36576 61.731276713345 3 +10 36580 61.731436713345 1 +10 36595 61.757383685955 0 +10 36600 61.757543685955 1 +10 36633 62.024399182109 3 +10 36637 62.024559182109 1 +10 36652 62.031276725245 3 +10 36656 62.031436725245 1 +10 36671 62.057383685955 0 +10 36676 62.057543685955 1 +10 36709 62.324399192148 3 +10 36713 62.324559192148 1 +10 36728 62.3312767377 3 +10 36732 62.3314367377 1 +10 36747 62.357383685955 0 +10 36752 62.357543685955 1 +10 36785 62.624399201089 3 +10 36789 62.624559201089 1 +10 36804 62.631276750535 3 +10 36808 62.631436750535 1 +10 36823 62.657383685955 0 +10 36828 62.657543685955 1 +10 36861 62.924399208912 3 +10 36865 62.924559208912 1 +10 36880 62.931276763684 3 +10 36884 62.931436763684 1 +10 36899 62.957383685955 0 +10 36904 62.957543685955 1 +11 22 2.1 0 +11 22 2.1 0 +11 49 2.614557181566 0 +11 49 2.614557181566 0 +11 52 2.614717181566 0 +11 52 2.614717181566 0 +11 65 2.657383685955 0 +11 65 2.657383685955 0 +11 69 2.657543685955 0 +11 69 2.657543685955 0 +11 94 2.914557182681 0 +11 94 2.914557182681 0 +11 97 2.914717182681 0 +11 97 2.914717182681 0 +11 110 2.957383685955 0 +11 110 2.957383685955 0 +11 114 2.957543685955 0 +11 114 2.957543685955 0 +11 141 3.214557183861 0 +11 141 3.214557183861 0 +11 145 3.214717183861 0 +11 145 3.214717183861 0 +11 163 3.257383685955 0 +11 163 3.257383685955 0 +11 168 3.257543685955 0 +11 168 3.257543685955 0 +11 201 3.514557185136 0 +11 201 3.514557185136 0 +11 205 3.514717185136 0 +11 205 3.514717185136 0 +11 226 3.53127690138 0 +11 226 3.53127690138 0 +11 234 3.53143690138 0 +11 234 3.53143690138 0 +11 247 3.557383685955 0 +11 247 3.557383685955 0 +11 252 3.557543685955 0 +11 252 3.557543685955 0 +11 285 3.814557186493 0 +11 285 3.814557186493 0 +11 289 3.814717186493 0 +11 289 3.814717186493 0 +11 310 3.831276901063 0 +11 310 3.831276901063 0 +11 318 3.831436901063 0 +11 318 3.831436901063 0 +11 331 3.857383685955 0 +11 331 3.857383685955 0 +11 336 3.857543685955 0 +11 336 3.857543685955 0 +11 370 4.114557187941 0 +11 370 4.114557187941 0 +11 375 4.114717187941 0 +11 375 4.114717187941 0 +11 398 4.131276900741 0 +11 398 4.131276900741 0 +11 411 4.131436900741 0 +11 411 4.131436900741 0 +11 424 4.157383685955 0 +11 424 4.157383685955 0 +11 430 4.157543685955 0 +11 430 4.157543685955 0 +11 467 4.414557189528 0 +11 467 4.414557189528 0 +11 472 4.414717189528 0 +11 472 4.414717189528 0 +11 495 4.431276900411 0 +11 495 4.431276900411 0 +11 508 4.431436900411 0 +11 508 4.431436900411 0 +11 521 4.457383685955 0 +11 521 4.457383685955 0 +11 527 4.457543685955 0 +11 527 4.457543685955 0 +11 586 4.714557191249 0 +11 586 4.714557191249 0 +11 591 4.714717191249 0 +11 591 4.714717191249 0 +11 614 4.731276900107 0 +11 614 4.731276900107 0 +11 627 4.731436900107 0 +11 627 4.731436900107 0 +11 640 4.757383685955 0 +11 640 4.757383685955 0 +11 646 4.757543685955 0 +11 646 4.757543685955 0 +11 705 5.014557193103 0 +11 705 5.014557193103 0 +11 710 5.014717193103 0 +11 710 5.014717193103 0 +11 733 5.031276899786 0 +11 733 5.031276899786 0 +11 746 5.031436899786 0 +11 746 5.031436899786 0 +11 759 5.057383685955 0 +11 759 5.057383685955 0 +11 765 5.057543685955 0 +11 765 5.057543685955 0 +11 833 5.314557195171 0 +11 833 5.314557195171 0 +11 839 5.314717195171 0 +11 839 5.314717195171 0 +11 863 5.331276899476 0 +11 863 5.331276899476 0 +11 877 5.331436899476 0 +11 877 5.331436899476 0 +11 891 5.357383685955 0 +11 891 5.357383685955 0 +11 898 5.357543685955 0 +11 898 5.357543685955 0 +11 967 5.614557197442 0 +11 967 5.614557197442 0 +11 973 5.614717197442 0 +11 973 5.614717197442 0 +11 997 5.631276899171 0 +11 997 5.631276899171 0 +11 1011 5.631436899171 0 +11 1011 5.631436899171 0 +11 1025 5.657383685955 0 +11 1025 5.657383685955 0 +11 1032 5.657543685955 0 +11 1032 5.657543685955 0 +11 1125 5.914557199962 0 +11 1125 5.914557199962 0 +11 1131 5.914717199962 0 +11 1131 5.914717199962 0 +11 1155 5.931276898866 0 +11 1155 5.931276898866 0 +11 1169 5.931436898866 0 +11 1169 5.931436898866 0 +11 1183 5.957383685955 0 +11 1183 5.957383685955 0 +11 1190 5.957543685955 0 +11 1190 5.957543685955 0 +11 1286 6.214557202762 0 +11 1286 6.214557202762 0 +11 1297 6.214717202762 0 +11 1297 6.214717202762 0 +11 1322 6.231276898564 0 +11 1322 6.231276898564 0 +11 1341 6.231436898564 0 +11 1341 6.231436898564 0 +11 1355 6.257383685955 0 +11 1355 6.257383685955 0 +11 1363 6.257543685955 0 +11 1363 6.257543685955 0 +11 1469 6.514557205852 0 +11 1469 6.514557205852 0 +11 1480 6.514717205852 0 +11 1480 6.514717205852 0 +11 1503 6.524399075657 0 +11 1503 6.524399075657 0 +11 1518 6.524559075657 0 +11 1518 6.524559075657 0 +11 1538 6.531276898265 0 +11 1538 6.531276898265 0 +11 1557 6.531436898265 0 +11 1557 6.531436898265 0 +11 1572 6.557383685955 0 +11 1572 6.557383685955 0 +11 1580 6.557543685955 0 +11 1580 6.557543685955 0 +11 1686 6.814557209291 0 +11 1686 6.814557209291 0 +11 1697 6.814717209291 0 +11 1697 6.814717209291 0 +11 1720 6.82439907586 0 +11 1720 6.82439907586 0 +11 1735 6.82455907586 0 +11 1735 6.82455907586 0 +11 1755 6.831276897959 0 +11 1755 6.831276897959 0 +11 1774 6.831436897959 0 +11 1774 6.831436897959 0 +11 1789 6.857383685955 0 +11 1789 6.857383685955 0 +11 1797 6.857543685955 0 +11 1797 6.857543685955 0 +11 1903 7.1145572131 0 +11 1903 7.1145572131 0 +11 1914 7.1147172131 0 +11 1914 7.1147172131 0 +11 1937 7.124399076049 0 +11 1937 7.124399076049 0 +11 1952 7.124559076049 0 +11 1952 7.124559076049 0 +11 1972 7.131276897653 0 +11 1972 7.131276897653 0 +11 1991 7.131436897653 0 +11 1991 7.131436897653 0 +11 2006 7.157383685955 0 +11 2006 7.157383685955 0 +11 2014 7.157543685955 0 +11 2014 7.157543685955 0 +11 2120 7.414557217271 0 +11 2120 7.414557217271 0 +11 2131 7.414717217271 0 +11 2131 7.414717217271 0 +11 2154 7.424399076251 0 +11 2154 7.424399076251 0 +11 2169 7.424559076251 0 +11 2169 7.424559076251 0 +11 2189 7.431276897348 0 +11 2189 7.431276897348 0 +11 2208 7.431436897348 0 +11 2208 7.431436897348 0 +11 2223 7.457383685955 0 +11 2223 7.457383685955 0 +11 2231 7.457543685955 0 +11 2231 7.457543685955 0 +11 2337 7.714557221838 0 +11 2337 7.714557221838 0 +11 2348 7.714717221838 0 +11 2348 7.714717221838 0 +11 2371 7.724399076456 0 +11 2371 7.724399076456 0 +11 2386 7.724559076456 0 +11 2386 7.724559076456 0 +11 2406 7.73127689705 0 +11 2406 7.73127689705 0 +11 2425 7.73143689705 0 +11 2425 7.73143689705 0 +11 2440 7.757383685955 0 +11 2440 7.757383685955 0 +11 2448 7.757543685955 0 +11 2448 7.757543685955 0 +11 2554 8.014557226859 0 +11 2554 8.014557226859 0 +11 2565 8.014717226859 0 +11 2565 8.014717226859 0 +11 2588 8.024399076668 0 +11 2588 8.024399076668 0 +11 2603 8.024559076668 0 +11 2603 8.024559076668 0 +11 2623 8.031276896762 0 +11 2623 8.031276896762 0 +11 2642 8.031436896762 0 +11 2642 8.031436896762 0 +11 2657 8.057383685955 0 +11 2657 8.057383685955 0 +11 2665 8.057543685955 0 +11 2665 8.057543685955 0 +11 2771 8.314557232422 0 +11 2771 8.314557232422 0 +11 2782 8.314717232422 0 +11 2782 8.314717232422 0 +11 2805 8.324399076881 0 +11 2805 8.324399076881 0 +11 2820 8.324559076881 0 +11 2820 8.324559076881 0 +11 2844 8.331276896481 0 +11 2844 8.331276896481 0 +11 2863 8.331436896481 0 +11 2863 8.331436896481 0 +11 2878 8.357383685955 0 +11 2878 8.357383685955 0 +11 2886 8.357543685955 0 +11 2886 8.357543685955 0 +11 2996 8.614557238496 0 +11 2996 8.614557238496 0 +11 3007 8.614717238496 0 +11 3007 8.614717238496 0 +11 3030 8.6243990771 0 +11 3030 8.6243990771 0 +11 3045 8.6245590771 0 +11 3045 8.6245590771 0 +11 3069 8.63127689619 0 +11 3069 8.63127689619 0 +11 3088 8.63143689619 0 +11 3088 8.63143689619 0 +11 3103 8.657383685955 0 +11 3103 8.657383685955 0 +11 3111 8.657543685955 0 +11 3111 8.657543685955 0 +11 3222 8.914557245124 0 +11 3222 8.914557245124 0 +11 3237 8.914717245124 0 +11 3237 8.914717245124 0 +11 3255 8.924399077324 0 +11 3255 8.924399077324 0 +11 3270 8.924559077324 0 +11 3270 8.924559077324 0 +11 3294 8.931276895893 0 +11 3294 8.931276895893 0 +11 3313 8.931436895893 0 +11 3313 8.931436895893 0 +11 3328 8.957383685955 0 +11 3328 8.957383685955 0 +11 3336 8.957543685955 0 +11 3336 8.957543685955 0 +11 3447 9.214557252325 0 +11 3447 9.214557252325 0 +11 3462 9.214717252325 0 +11 3462 9.214717252325 0 +11 3480 9.224399077547 0 +11 3480 9.224399077547 0 +11 3495 9.224559077547 0 +11 3495 9.224559077547 0 +11 3519 9.231276895621 0 +11 3519 9.231276895621 0 +11 3538 9.231436895621 0 +11 3538 9.231436895621 0 +11 3553 9.257383685955 0 +11 3553 9.257383685955 0 +11 3561 9.257543685955 0 +11 3561 9.257543685955 0 +11 3672 9.514557260085 0 +11 3672 9.514557260085 0 +11 3687 9.514717260085 0 +11 3687 9.514717260085 0 +11 3705 9.52439907778 0 +11 3705 9.52439907778 0 +11 3720 9.52455907778 0 +11 3720 9.52455907778 0 +11 3744 9.531276895347 0 +11 3744 9.531276895347 0 +11 3763 9.531436895347 0 +11 3763 9.531436895347 0 +11 3778 9.557383685955 0 +11 3778 9.557383685955 0 +11 3786 9.557543685955 0 +11 3786 9.557543685955 0 +11 3897 9.814557268307 0 +11 3897 9.814557268307 0 +11 3912 9.814717268307 0 +11 3912 9.814717268307 0 +11 3930 9.824399078019 0 +11 3930 9.824399078019 0 +11 3945 9.824559078019 0 +11 3945 9.824559078019 0 +11 3969 9.831276895075 0 +11 3969 9.831276895075 0 +11 3988 9.831436895075 0 +11 3988 9.831436895075 0 +11 4003 9.857383685955 0 +11 4003 9.857383685955 0 +11 4011 9.857543685955 0 +11 4011 9.857543685955 0 +11 4122 10.114557276848 0 +11 4122 10.114557276848 0 +11 4137 10.114717276848 0 +11 4137 10.114717276848 0 +11 4155 10.124399078264 0 +11 4155 10.124399078264 0 +11 4170 10.124559078264 0 +11 4170 10.124559078264 0 +11 4194 10.131276894808 0 +11 4194 10.131276894808 0 +11 4213 10.131436894808 0 +11 4213 10.131436894808 0 +11 4228 10.157383685955 0 +11 4228 10.157383685955 0 +11 4236 10.157543685955 0 +11 4236 10.157543685955 0 +11 4347 10.414557285658 0 +11 4347 10.414557285658 0 +11 4362 10.414717285658 0 +11 4362 10.414717285658 0 +11 4380 10.4243990785 0 +11 4380 10.4243990785 0 +11 4395 10.4245590785 0 +11 4395 10.4245590785 0 +11 4419 10.431276894532 0 +11 4419 10.431276894532 0 +11 4438 10.431436894532 0 +11 4438 10.431436894532 0 +11 4453 10.457383685955 0 +11 4453 10.457383685955 0 +11 4461 10.457543685955 0 +11 4461 10.457543685955 0 +11 4576 10.714557294754 0 +11 4576 10.714557294754 0 +11 4591 10.714717294754 0 +11 4591 10.714717294754 0 +11 4613 10.724399078727 0 +11 4613 10.724399078727 0 +11 4628 10.724559078727 0 +11 4628 10.724559078727 0 +11 4652 10.731276894259 0 +11 4652 10.731276894259 0 +11 4671 10.731436894259 0 +11 4671 10.731436894259 0 +11 4686 10.757383685955 0 +11 4686 10.757383685955 0 +11 4694 10.757543685955 0 +11 4694 10.757543685955 0 +11 4809 11.014557304135 0 +11 4809 11.014557304135 0 +11 4824 11.014717304135 0 +11 4824 11.014717304135 0 +11 4846 11.024399078987 0 +11 4846 11.024399078987 0 +11 4861 11.024559078987 0 +11 4861 11.024559078987 0 +11 4885 11.031276893999 0 +11 4885 11.031276893999 0 +11 4904 11.031436893999 0 +11 4904 11.031436893999 0 +11 4919 11.057383685955 0 +11 4919 11.057383685955 0 +11 4927 11.057543685955 0 +11 4927 11.057543685955 0 +11 5042 11.314557313736 0 +11 5042 11.314557313736 0 +11 5057 11.314717313736 0 +11 5057 11.314717313736 0 +11 5079 11.324399079221 0 +11 5079 11.324399079221 0 +11 5094 11.324559079221 0 +11 5094 11.324559079221 0 +11 5118 11.331276893733 0 +11 5118 11.331276893733 0 +11 5137 11.331436893733 0 +11 5137 11.331436893733 0 +11 5152 11.357383685955 0 +11 5152 11.357383685955 0 +11 5160 11.357543685955 0 +11 5160 11.357543685955 0 +11 5275 11.614557323591 0 +11 5275 11.614557323591 0 +11 5290 11.614717323591 0 +11 5290 11.614717323591 0 +11 5312 11.624399079471 0 +11 5312 11.624399079471 0 +11 5327 11.624559079471 0 +11 5327 11.624559079471 0 +11 5351 11.631276893479 0 +11 5351 11.631276893479 0 +11 5370 11.631436893479 0 +11 5370 11.631436893479 0 +11 5389 11.657383685955 0 +11 5389 11.657383685955 0 +11 5397 11.657543685955 0 +11 5397 11.657543685955 0 +11 5516 11.914557333695 0 +11 5516 11.914557333695 0 +11 5531 11.914717333695 0 +11 5531 11.914717333695 0 +11 5553 11.92439907973 0 +11 5553 11.92439907973 0 +11 5568 11.92455907973 0 +11 5568 11.92455907973 0 +11 5592 11.931276893219 0 +11 5592 11.931276893219 0 +11 5611 11.931436893219 0 +11 5611 11.931436893219 0 +11 5630 11.957383685955 0 +11 5630 11.957383685955 0 +11 5638 11.957543685955 0 +11 5638 11.957543685955 0 +11 5757 12.214557344013 0 +11 5757 12.214557344013 0 +11 5772 12.214717344013 0 +11 5772 12.214717344013 0 +11 5794 12.22439907998 0 +11 5794 12.22439907998 0 +11 5809 12.22455907998 0 +11 5809 12.22455907998 0 +11 5833 12.231276892968 0 +11 5833 12.231276892968 0 +11 5852 12.231436892968 0 +11 5852 12.231436892968 0 +11 5871 12.257383685955 0 +11 5871 12.257383685955 0 +11 5879 12.257543685955 0 +11 5879 12.257543685955 0 +11 5998 12.514557354529 0 +11 5998 12.514557354529 0 +11 6013 12.514717354529 0 +11 6013 12.514717354529 0 +11 6035 12.524399080256 0 +11 6035 12.524399080256 0 +11 6050 12.524559080256 0 +11 6050 12.524559080256 0 +11 6074 12.531276892721 0 +11 6074 12.531276892721 0 +11 6093 12.531436892721 0 +11 6093 12.531436892721 0 +11 6112 12.557383685955 0 +11 6112 12.557383685955 0 +11 6120 12.557543685955 0 +11 6120 12.557543685955 0 +11 6239 12.814557365221 0 +11 6239 12.814557365221 0 +11 6254 12.814717365221 0 +11 6254 12.814717365221 0 +11 6276 12.82439908052 0 +11 6276 12.82439908052 0 +11 6291 12.82455908052 0 +11 6291 12.82455908052 0 +11 6315 12.831276892469 0 +11 6315 12.831276892469 0 +11 6334 12.831436892469 0 +11 6334 12.831436892469 0 +11 6353 12.857383685955 0 +11 6353 12.857383685955 0 +11 6361 12.857543685955 0 +11 6361 12.857543685955 0 +11 6480 13.114557376122 0 +11 6480 13.114557376122 0 +11 6495 13.114717376122 0 +11 6495 13.114717376122 0 +11 6517 13.124399080797 0 +11 6517 13.124399080797 0 +11 6532 13.124559080797 0 +11 6532 13.124559080797 0 +11 6556 13.131276892214 0 +11 6556 13.131276892214 0 +11 6575 13.131436892214 0 +11 6575 13.131436892214 0 +11 6594 13.157383685955 0 +11 6594 13.157383685955 0 +11 6602 13.157543685955 0 +11 6602 13.157543685955 0 +11 6721 13.414557387173 0 +11 6721 13.414557387173 0 +11 6736 13.414717387173 0 +11 6736 13.414717387173 0 +11 6758 13.424399081079 0 +11 6758 13.424399081079 0 +11 6773 13.424559081079 0 +11 6773 13.424559081079 0 +11 6797 13.431276891978 0 +11 6797 13.431276891978 0 +11 6816 13.431436891978 0 +11 6816 13.431436891978 0 +11 6835 13.457383685955 0 +11 6835 13.457383685955 0 +11 6843 13.457543685955 0 +11 6843 13.457543685955 0 +11 6962 13.714557398373 0 +11 6962 13.714557398373 0 +11 6977 13.714717398373 0 +11 6977 13.714717398373 0 +11 6999 13.724399081347 0 +11 6999 13.724399081347 0 +11 7014 13.724559081347 0 +11 7014 13.724559081347 0 +11 7038 13.731276891728 0 +11 7038 13.731276891728 0 +11 7057 13.731436891728 0 +11 7057 13.731436891728 0 +11 7076 13.757383685955 0 +11 7076 13.757383685955 0 +11 7084 13.757543685955 0 +11 7084 13.757543685955 0 +11 7204 14.014557409766 0 +11 7204 14.014557409766 0 +11 7223 14.014717409766 0 +11 7223 14.014717409766 0 +11 7240 14.024399081623 0 +11 7240 14.024399081623 0 +11 7255 14.024559081623 0 +11 7255 14.024559081623 0 +11 7279 14.03127689148 0 +11 7279 14.03127689148 0 +11 7298 14.03143689148 0 +11 7298 14.03143689148 0 +11 7317 14.057383685955 0 +11 7317 14.057383685955 0 +11 7325 14.057543685955 0 +11 7325 14.057543685955 0 +11 7445 14.314557421278 0 +11 7445 14.314557421278 0 +11 7464 14.314717421278 0 +11 7464 14.314717421278 0 +11 7481 14.324399081908 0 +11 7481 14.324399081908 0 +11 7496 14.324559081908 0 +11 7496 14.324559081908 0 +11 7520 14.33127689125 0 +11 7520 14.33127689125 0 +11 7539 14.33143689125 0 +11 7539 14.33143689125 0 +11 7558 14.357383685955 0 +11 7558 14.357383685955 0 +11 7566 14.357543685955 0 +11 7566 14.357543685955 0 +11 7686 14.614557432907 0 +11 7686 14.614557432907 0 +11 7705 14.614717432907 0 +11 7705 14.614717432907 0 +11 7722 14.624399082205 0 +11 7722 14.624399082205 0 +11 7737 14.624559082205 0 +11 7737 14.624559082205 0 +11 7761 14.631276891011 0 +11 7761 14.631276891011 0 +11 7780 14.631436891011 0 +11 7780 14.631436891011 0 +11 7799 14.657383685955 0 +11 7799 14.657383685955 0 +11 7807 14.657543685955 0 +11 7807 14.657543685955 0 +11 7927 14.914557444663 0 +11 7927 14.914557444663 0 +11 7946 14.914717444663 0 +11 7946 14.914717444663 0 +11 7963 14.924399082499 0 +11 7963 14.924399082499 0 +11 7978 14.924559082499 0 +11 7978 14.924559082499 0 +11 8002 14.93127689078 0 +11 8002 14.93127689078 0 +11 8021 14.93143689078 0 +11 8021 14.93143689078 0 +11 8040 14.957383685955 0 +11 8040 14.957383685955 0 +11 8048 14.957543685955 0 +11 8048 14.957543685955 0 +11 8168 15.214557456539 0 +11 8168 15.214557456539 0 +11 8187 15.214717456539 0 +11 8187 15.214717456539 0 +11 8204 15.224399082794 0 +11 8204 15.224399082794 0 +11 8219 15.224559082794 0 +11 8219 15.224559082794 0 +11 8243 15.231276890537 0 +11 8243 15.231276890537 0 +11 8262 15.231436890537 0 +11 8262 15.231436890537 0 +11 8281 15.257383685955 0 +11 8281 15.257383685955 0 +11 8289 15.257543685955 0 +11 8289 15.257543685955 0 +11 8409 15.514557468564 0 +11 8409 15.514557468564 0 +11 8428 15.514717468564 0 +11 8428 15.514717468564 0 +11 8445 15.524399083099 0 +11 8445 15.524399083099 0 +11 8460 15.524559083099 0 +11 8460 15.524559083099 0 +11 8485 15.531276890317 0 +11 8485 15.531276890317 0 +11 8508 15.531436890317 0 +11 8508 15.531436890317 0 +11 8522 15.557383685955 0 +11 8522 15.557383685955 0 +11 8530 15.557543685955 0 +11 8530 15.557543685955 0 +11 8650 15.814557480657 0 +11 8650 15.814557480657 0 +11 8669 15.814717480657 0 +11 8669 15.814717480657 0 +11 8686 15.824399083408 0 +11 8686 15.824399083408 0 +11 8701 15.824559083408 0 +11 8701 15.824559083408 0 +11 8726 15.831276890112 0 +11 8726 15.831276890112 0 +11 8749 15.831436890112 0 +11 8749 15.831436890112 0 +11 8763 15.857383685955 0 +11 8763 15.857383685955 0 +11 8771 15.857543685955 0 +11 8771 15.857543685955 0 +11 8891 16.114557492863 0 +11 8891 16.114557492863 0 +11 8910 16.114717492863 0 +11 8910 16.114717492863 0 +11 8931 16.124399083716 0 +11 8931 16.124399083716 0 +11 8946 16.124559083716 0 +11 8946 16.124559083716 0 +11 8971 16.131276889879 0 +11 8971 16.131276889879 0 +11 8994 16.131436889879 0 +11 8994 16.131436889879 0 +11 9008 16.157383685955 0 +11 9008 16.157383685955 0 +11 9016 16.157543685955 0 +11 9016 16.157543685955 0 +11 9140 16.414557505188 0 +11 9140 16.414557505188 0 +11 9159 16.414717505188 0 +11 9159 16.414717505188 0 +11 9180 16.424399084041 0 +11 9180 16.424399084041 0 +11 9195 16.424559084041 0 +11 9195 16.424559084041 0 +11 9220 16.431276889657 0 +11 9220 16.431276889657 0 +11 9243 16.431436889657 0 +11 9243 16.431436889657 0 +11 9257 16.457383685955 0 +11 9257 16.457383685955 0 +11 9265 16.457543685955 0 +11 9265 16.457543685955 0 +11 9390 16.714557517603 0 +11 9390 16.714557517603 0 +11 9413 16.714717517603 0 +11 9413 16.714717517603 0 +11 9429 16.724399084357 0 +11 9429 16.724399084357 0 +11 9444 16.724559084357 0 +11 9444 16.724559084357 0 +11 9469 16.731276889444 0 +11 9469 16.731276889444 0 +11 9492 16.731436889444 0 +11 9492 16.731436889444 0 +11 9506 16.757383685955 0 +11 9506 16.757383685955 0 +11 9514 16.757543685955 0 +11 9514 16.757543685955 0 +11 9639 17.014557530081 0 +11 9639 17.014557530081 0 +11 9662 17.014717530081 0 +11 9662 17.014717530081 0 +11 9678 17.024399084668 0 +11 9678 17.024399084668 0 +11 9693 17.024559084668 0 +11 9693 17.024559084668 0 +11 9718 17.031276889227 0 +11 9718 17.031276889227 0 +11 9741 17.031436889227 0 +11 9741 17.031436889227 0 +11 9755 17.057383685955 0 +11 9755 17.057383685955 0 +11 9763 17.057543685955 0 +11 9763 17.057543685955 0 +11 9888 17.314557542674 0 +11 9888 17.314557542674 0 +11 9911 17.314717542674 0 +11 9911 17.314717542674 0 +11 9927 17.324399084984 0 +11 9927 17.324399084984 0 +11 9942 17.324559084984 0 +11 9942 17.324559084984 0 +11 9967 17.331276889013 0 +11 9967 17.331276889013 0 +11 9990 17.331436889013 0 +11 9990 17.331436889013 0 +11 10004 17.357383685955 0 +11 10004 17.357383685955 0 +11 10012 17.357543685955 0 +11 10012 17.357543685955 0 +11 10137 17.614557555309 0 +11 10137 17.614557555309 0 +11 10160 17.614717555309 0 +11 10160 17.614717555309 0 +11 10176 17.624399085289 0 +11 10176 17.624399085289 0 +11 10191 17.624559085289 0 +11 10191 17.624559085289 0 +11 10216 17.631276888786 0 +11 10216 17.631276888786 0 +11 10239 17.631436888786 0 +11 10239 17.631436888786 0 +11 10253 17.657383685955 0 +11 10253 17.657383685955 0 +11 10261 17.657543685955 0 +11 10261 17.657543685955 0 +11 10386 17.914557568022 0 +11 10386 17.914557568022 0 +11 10409 17.914717568022 0 +11 10409 17.914717568022 0 +11 10421 17.924399085606 0 +11 10421 17.924399085606 0 +11 10436 17.924559085606 0 +11 10436 17.924559085606 0 +11 10461 17.931276888582 0 +11 10461 17.931276888582 0 +11 10484 17.931436888582 0 +11 10484 17.931436888582 0 +11 10498 17.957383685955 0 +11 10498 17.957383685955 0 +11 10506 17.957543685955 0 +11 10506 17.957543685955 0 +11 10662 18.224399085935 0 +11 10662 18.224399085935 0 +11 10677 18.224559085935 0 +11 10677 18.224559085935 0 +11 10698 18.231276888386 0 +11 10698 18.231276888386 0 +11 10721 18.231436888386 0 +11 10721 18.231436888386 0 +11 10735 18.257383685955 0 +11 10735 18.257383685955 0 +11 10743 18.257543685955 0 +11 10743 18.257543685955 0 +11 10895 18.524399086265 0 +11 10895 18.524399086265 0 +11 10910 18.524559086265 0 +11 10910 18.524559086265 0 +11 10931 18.531276888177 0 +11 10931 18.531276888177 0 +11 10954 18.531436888177 0 +11 10954 18.531436888177 0 +11 10968 18.557383685955 0 +11 10968 18.557383685955 0 +11 10976 18.557543685955 0 +11 10976 18.557543685955 0 +11 11128 18.824399086608 0 +11 11128 18.824399086608 0 +11 11143 18.824559086608 0 +11 11143 18.824559086608 0 +11 11164 18.831276887981 0 +11 11164 18.831276887981 0 +11 11187 18.831436887981 0 +11 11187 18.831436887981 0 +11 11201 18.857383685955 0 +11 11201 18.857383685955 0 +11 11209 18.857543685955 0 +11 11209 18.857543685955 0 +11 11361 19.124399086967 0 +11 11361 19.124399086967 0 +11 11376 19.124559086967 0 +11 11376 19.124559086967 0 +11 11397 19.131276887793 0 +11 11397 19.131276887793 0 +11 11420 19.131436887793 0 +11 11420 19.131436887793 0 +11 11434 19.157383685955 0 +11 11434 19.157383685955 0 +11 11442 19.157543685955 0 +11 11442 19.157543685955 0 +11 11594 19.424399087317 0 +11 11594 19.424399087317 0 +11 11609 19.424559087317 0 +11 11609 19.424559087317 0 +11 11630 19.43127688759 0 +11 11630 19.43127688759 0 +11 11653 19.43143688759 0 +11 11653 19.43143688759 0 +11 11667 19.457383685955 0 +11 11667 19.457383685955 0 +11 11675 19.457543685955 0 +11 11675 19.457543685955 0 +11 11827 19.724399087464 0 +11 11827 19.724399087464 0 +11 11842 19.724559087464 0 +11 11842 19.724559087464 0 +11 11863 19.731276887029 0 +11 11863 19.731276887029 0 +11 11886 19.731436887029 0 +11 11886 19.731436887029 0 +11 11900 19.757383685955 0 +11 11900 19.757383685955 0 +11 11908 19.757543685955 0 +11 11908 19.757543685955 0 +11 12025 20.014557564104 0 +11 12025 20.014557564104 0 +11 12048 20.014717564104 0 +11 12048 20.014717564104 0 +11 12064 20.0243990873 0 +11 12064 20.0243990873 0 +11 12079 20.0245590873 0 +11 12079 20.0245590873 0 +11 12100 20.03127688588 0 +11 12100 20.03127688588 0 +11 12123 20.03143688588 0 +11 12123 20.03143688588 0 +11 12137 20.057383685955 0 +11 12137 20.057383685955 0 +11 12145 20.057543685955 0 +11 12145 20.057543685955 0 +11 12266 20.314557557995 0 +11 12266 20.314557557995 0 +11 12289 20.314717557995 0 +11 12289 20.314717557995 0 +11 12305 20.324399087241 0 +11 12305 20.324399087241 0 +11 12320 20.324559087241 0 +11 12320 20.324559087241 0 +11 12341 20.33127688455 0 +11 12341 20.33127688455 0 +11 12364 20.33143688455 0 +11 12364 20.33143688455 0 +11 12378 20.357383685955 0 +11 12378 20.357383685955 0 +11 12386 20.357543685955 0 +11 12386 20.357543685955 0 +11 12507 20.614557552362 0 +11 12507 20.614557552362 0 +11 12530 20.614717552362 0 +11 12530 20.614717552362 0 +11 12546 20.624399087446 0 +11 12546 20.624399087446 0 +11 12561 20.624559087446 0 +11 12561 20.624559087446 0 +11 12582 20.631276883138 0 +11 12582 20.631276883138 0 +11 12605 20.631436883138 0 +11 12605 20.631436883138 0 +11 12619 20.657383685955 0 +11 12619 20.657383685955 0 +11 12627 20.657543685955 0 +11 12627 20.657543685955 0 +11 12748 20.914557547102 0 +11 12748 20.914557547102 0 +11 12771 20.914717547102 0 +11 12771 20.914717547102 0 +11 12787 20.924399087797 0 +11 12787 20.924399087797 0 +11 12802 20.924559087797 0 +11 12802 20.924559087797 0 +11 12823 20.931276881619 0 +11 12823 20.931276881619 0 +11 12846 20.931436881619 0 +11 12846 20.931436881619 0 +11 12860 20.957383685955 0 +11 12860 20.957383685955 0 +11 12868 20.957543685955 0 +11 12868 20.957543685955 0 +11 12989 21.214557542284 0 +11 12989 21.214557542284 0 +11 13012 21.214717542284 0 +11 13012 21.214717542284 0 +11 13028 21.224399088467 0 +11 13028 21.224399088467 0 +11 13043 21.224559088467 0 +11 13043 21.224559088467 0 +11 13064 21.231276880094 0 +11 13064 21.231276880094 0 +11 13087 21.231436880094 0 +11 13087 21.231436880094 0 +11 13101 21.257383685955 0 +11 13101 21.257383685955 0 +11 13109 21.257543685955 0 +11 13109 21.257543685955 0 +11 13230 21.514557537844 0 +11 13230 21.514557537844 0 +11 13253 21.514717537844 0 +11 13253 21.514717537844 0 +11 13269 21.524399089457 0 +11 13269 21.524399089457 0 +11 13284 21.524559089457 0 +11 13284 21.524559089457 0 +11 13305 21.531276878505 0 +11 13305 21.531276878505 0 +11 13328 21.531436878505 0 +11 13328 21.531436878505 0 +11 13342 21.557383685955 0 +11 13342 21.557383685955 0 +11 13350 21.557543685955 0 +11 13350 21.557543685955 0 +11 13471 21.814557533746 0 +11 13471 21.814557533746 0 +11 13494 21.814717533746 0 +11 13494 21.814717533746 0 +11 13510 21.824399090731 0 +11 13510 21.824399090731 0 +11 13525 21.824559090731 0 +11 13525 21.824559090731 0 +11 13546 21.831276876822 0 +11 13546 21.831276876822 0 +11 13569 21.831436876822 0 +11 13569 21.831436876822 0 +11 13583 21.857383685955 0 +11 13583 21.857383685955 0 +11 13591 21.857543685955 0 +11 13591 21.857543685955 0 +11 13712 22.114557529963 0 +11 13712 22.114557529963 0 +11 13735 22.114717529963 0 +11 13735 22.114717529963 0 +11 13751 22.124399092291 0 +11 13751 22.124399092291 0 +11 13766 22.124559092291 0 +11 13766 22.124559092291 0 +11 13787 22.131276875046 0 +11 13787 22.131276875046 0 +11 13810 22.131436875046 0 +11 13810 22.131436875046 0 +11 13824 22.157383685955 0 +11 13824 22.157383685955 0 +11 13832 22.157543685955 0 +11 13832 22.157543685955 0 +11 13953 22.414557526479 0 +11 13953 22.414557526479 0 +11 13976 22.414717526479 0 +11 13976 22.414717526479 0 +11 13992 22.424399094215 0 +11 13992 22.424399094215 0 +11 14007 22.424559094215 0 +11 14007 22.424559094215 0 +11 14028 22.431276873268 0 +11 14028 22.431276873268 0 +11 14051 22.431436873268 0 +11 14051 22.431436873268 0 +11 14065 22.457383685955 0 +11 14065 22.457383685955 0 +11 14073 22.457543685955 0 +11 14073 22.457543685955 0 +11 14194 22.714557523315 0 +11 14194 22.714557523315 0 +11 14217 22.714717523315 0 +11 14217 22.714717523315 0 +11 14233 22.724399096641 0 +11 14233 22.724399096641 0 +11 14248 22.724559096641 0 +11 14248 22.724559096641 0 +11 14269 22.731276871582 0 +11 14269 22.731276871582 0 +11 14292 22.731436871582 0 +11 14292 22.731436871582 0 +11 14306 22.757383685955 0 +11 14306 22.757383685955 0 +11 14314 22.757543685955 0 +11 14314 22.757543685955 0 +11 14435 23.014557520464 0 +11 14435 23.014557520464 0 +11 14458 23.014717520464 0 +11 14458 23.014717520464 0 +11 14473 23.024399099585 0 +11 14473 23.024399099585 0 +11 14484 23.024559099585 0 +11 14484 23.024559099585 0 +11 14510 23.031276870013 0 +11 14510 23.031276870013 0 +11 14533 23.031436870013 0 +11 14533 23.031436870013 0 +11 14547 23.057383685955 0 +11 14547 23.057383685955 0 +11 14555 23.057543685955 0 +11 14555 23.057543685955 0 +11 14676 23.314557517914 0 +11 14676 23.314557517914 0 +11 14699 23.314717517914 0 +11 14699 23.314717517914 0 +11 14714 23.324399103103 0 +11 14714 23.324399103103 0 +11 14725 23.324559103103 0 +11 14725 23.324559103103 0 +11 14751 23.331276868542 0 +11 14751 23.331276868542 0 +11 14774 23.331436868542 0 +11 14774 23.331436868542 0 +11 14788 23.357383685955 0 +11 14788 23.357383685955 0 +11 14796 23.357543685955 0 +11 14796 23.357543685955 0 +11 14917 23.614557515636 0 +11 14917 23.614557515636 0 +11 14940 23.614717515636 0 +11 14940 23.614717515636 0 +11 14955 23.624399107238 0 +11 14955 23.624399107238 0 +11 14966 23.624559107238 0 +11 14966 23.624559107238 0 +11 14992 23.631276867299 0 +11 14992 23.631276867299 0 +11 15015 23.631436867299 0 +11 15015 23.631436867299 0 +11 15029 23.657383685955 0 +11 15029 23.657383685955 0 +11 15037 23.657543685955 0 +11 15037 23.657543685955 0 +11 15158 23.914557513622 0 +11 15158 23.914557513622 0 +11 15181 23.914717513622 0 +11 15181 23.914717513622 0 +11 15196 23.924399112031 0 +11 15196 23.924399112031 0 +11 15207 23.924559112031 0 +11 15207 23.924559112031 0 +11 15233 23.931276866321 0 +11 15233 23.931276866321 0 +11 15256 23.931436866321 0 +11 15256 23.931436866321 0 +11 15270 23.957383685955 0 +11 15270 23.957383685955 0 +11 15278 23.957543685955 0 +11 15278 23.957543685955 0 +11 15399 24.214557511852 0 +11 15399 24.214557511852 0 +11 15422 24.214717511852 0 +11 15422 24.214717511852 0 +11 15437 24.224399117426 0 +11 15437 24.224399117426 0 +11 15448 24.224559117426 0 +11 15448 24.224559117426 0 +11 15474 24.231276865622 0 +11 15474 24.231276865622 0 +11 15497 24.231436865622 0 +11 15497 24.231436865622 0 +11 15511 24.257383685955 0 +11 15511 24.257383685955 0 +11 15519 24.257543685955 0 +11 15519 24.257543685955 0 +11 15640 24.514557510265 0 +11 15640 24.514557510265 0 +11 15663 24.514717510265 0 +11 15663 24.514717510265 0 +11 15678 24.524399123441 0 +11 15678 24.524399123441 0 +11 15689 24.524559123441 0 +11 15689 24.524559123441 0 +11 15715 24.531276865164 0 +11 15715 24.531276865164 0 +11 15738 24.531436865164 0 +11 15738 24.531436865164 0 +11 15752 24.557383685955 0 +11 15752 24.557383685955 0 +11 15760 24.557543685955 0 +11 15760 24.557543685955 0 +11 15881 24.814557508895 0 +11 15881 24.814557508895 0 +11 15904 24.814717508895 0 +11 15904 24.814717508895 0 +11 15919 24.824399130236 0 +11 15919 24.824399130236 0 +11 15930 24.824559130236 0 +11 15930 24.824559130236 0 +11 15956 24.831276865034 0 +11 15956 24.831276865034 0 +11 15979 24.831436865034 0 +11 15979 24.831436865034 0 +11 15993 24.857383685955 0 +11 15993 24.857383685955 0 +11 16001 24.857543685955 0 +11 16001 24.857543685955 0 +11 16122 25.114557507733 0 +11 16122 25.114557507733 0 +11 16145 25.114717507733 0 +11 16145 25.114717507733 0 +11 16160 25.124399137961 0 +11 16160 25.124399137961 0 +11 16171 25.124559137961 0 +11 16171 25.124559137961 0 +11 16197 25.131276865348 0 +11 16197 25.131276865348 0 +11 16220 25.131436865348 0 +11 16220 25.131436865348 0 +11 16234 25.157383685955 0 +11 16234 25.157383685955 0 +11 16242 25.157543685955 0 +11 16242 25.157543685955 0 +11 16363 25.414557506754 0 +11 16363 25.414557506754 0 +11 16386 25.414717506754 0 +11 16386 25.414717506754 0 +11 16401 25.424399146492 0 +11 16401 25.424399146492 0 +11 16412 25.424559146492 0 +11 16412 25.424559146492 0 +11 16438 25.431276866065 0 +11 16438 25.431276866065 0 +11 16461 25.431436866065 0 +11 16461 25.431436866065 0 +11 16475 25.457383685955 0 +11 16475 25.457383685955 0 +11 16483 25.457543685955 0 +11 16483 25.457543685955 0 +11 16604 25.714557505914 0 +11 16604 25.714557505914 0 +11 16627 25.714717505914 0 +11 16627 25.714717505914 0 +11 16642 25.724399155863 0 +11 16642 25.724399155863 0 +11 16653 25.724559155863 0 +11 16653 25.724559155863 0 +11 16679 25.731276867271 0 +11 16679 25.731276867271 0 +11 16702 25.731436867271 0 +11 16702 25.731436867271 0 +11 16716 25.757383685955 0 +11 16716 25.757383685955 0 +11 16724 25.757543685955 0 +11 16724 25.757543685955 0 +11 16845 26.014557505277 0 +11 16845 26.014557505277 0 +11 16868 26.014717505277 0 +11 16868 26.014717505277 0 +11 16883 26.024399166196 0 +11 16883 26.024399166196 0 +11 16894 26.024559166196 0 +11 16894 26.024559166196 0 +11 16920 26.031276869882 0 +11 16920 26.031276869882 0 +11 16943 26.031436869882 0 +11 16943 26.031436869882 0 +11 16957 26.057383685955 0 +11 16957 26.057383685955 0 +11 16965 26.057543685955 0 +11 16965 26.057543685955 0 +11 17085 26.314557504782 0 +11 17085 26.314557504782 0 +11 17104 26.314717504782 0 +11 17104 26.314717504782 0 +11 17124 26.324399177308 0 +11 17124 26.324399177308 0 +11 17135 26.324559177308 0 +11 17135 26.324559177308 0 +11 17161 26.331276874069 0 +11 17161 26.331276874069 0 +11 17184 26.331436874069 0 +11 17184 26.331436874069 0 +11 17198 26.357383685955 0 +11 17198 26.357383685955 0 +11 17206 26.357543685955 0 +11 17206 26.357543685955 0 +11 17326 26.614557504308 0 +11 17326 26.614557504308 0 +11 17345 26.614717504308 0 +11 17345 26.614717504308 0 +11 17365 26.624399188753 0 +11 17365 26.624399188753 0 +11 17376 26.624559188753 0 +11 17376 26.624559188753 0 +11 17402 26.631276879416 0 +11 17402 26.631276879416 0 +11 17425 26.631436879416 0 +11 17425 26.631436879416 0 +11 17439 26.657383685955 0 +11 17439 26.657383685955 0 +11 17447 26.657543685955 0 +11 17447 26.657543685955 0 +11 17567 26.914557503709 0 +11 17567 26.914557503709 0 +11 17586 26.914717503709 0 +11 17586 26.914717503709 0 +11 17606 26.924399200042 0 +11 17606 26.924399200042 0 +11 17617 26.924559200042 0 +11 17617 26.924559200042 0 +11 17643 26.931276885432 0 +11 17643 26.931276885432 0 +11 17666 26.931436885432 0 +11 17666 26.931436885432 0 +11 17680 26.957383685955 0 +11 17680 26.957383685955 0 +11 17688 26.957543685955 0 +11 17688 26.957543685955 0 +11 17808 27.214557502764 0 +11 17808 27.214557502764 0 +11 17827 27.214717502764 0 +11 17827 27.214717502764 0 +11 17843 27.224399210302 0 +11 17843 27.224399210302 0 +11 17854 27.224559210302 0 +11 17854 27.224559210302 0 +11 17876 27.231276891257 0 +11 17876 27.231276891257 0 +11 17899 27.231436891257 0 +11 17899 27.231436891257 0 +11 17913 27.257383685955 0 +11 17913 27.257383685955 0 +11 17921 27.257543685955 0 +11 17921 27.257543685955 0 +11 18041 27.514557501474 0 +11 18041 27.514557501474 0 +11 18060 27.514717501474 0 +11 18060 27.514717501474 0 +11 18076 27.524399219548 0 +11 18076 27.524399219548 0 +11 18087 27.524559219548 0 +11 18087 27.524559219548 0 +11 18109 27.531276896461 0 +11 18109 27.531276896461 0 +11 18132 27.531436896461 0 +11 18132 27.531436896461 0 +11 18146 27.557383685955 0 +11 18146 27.557383685955 0 +11 18154 27.557543685955 0 +11 18154 27.557543685955 0 +11 18274 27.814557499885 0 +11 18274 27.814557499885 0 +11 18293 27.814717499885 0 +11 18293 27.814717499885 0 +11 18309 27.824399227674 0 +11 18309 27.824399227674 0 +11 18320 27.824559227674 0 +11 18320 27.824559227674 0 +11 18342 27.831276898141 0 +11 18342 27.831276898141 0 +11 18365 27.831436898141 0 +11 18365 27.831436898141 0 +11 18379 27.857383685955 0 +11 18379 27.857383685955 0 +11 18387 27.857543685955 0 +11 18387 27.857543685955 0 +11 18507 28.114557497525 0 +11 18507 28.114557497525 0 +11 18526 28.114717497525 0 +11 18526 28.114717497525 0 +11 18542 28.124399234561 0 +11 18542 28.124399234561 0 +11 18553 28.124559234561 0 +11 18553 28.124559234561 0 +11 18575 28.131276899693 0 +11 18575 28.131276899693 0 +11 18598 28.131436899693 0 +11 18598 28.131436899693 0 +11 18612 28.157383685955 0 +11 18612 28.157383685955 0 +11 18620 28.157543685955 0 +11 18620 28.157543685955 0 +11 18740 28.414557494637 0 +11 18740 28.414557494637 0 +11 18759 28.414717494637 0 +11 18759 28.414717494637 0 +11 18775 28.424399240801 0 +11 18775 28.424399240801 0 +11 18786 28.424559240801 0 +11 18786 28.424559240801 0 +11 18808 28.431276907999 0 +11 18808 28.431276907999 0 +11 18831 28.431436907999 0 +11 18831 28.431436907999 0 +11 18845 28.457383685955 0 +11 18845 28.457383685955 0 +11 18853 28.457543685955 0 +11 18853 28.457543685955 0 +11 18973 28.714557490176 0 +11 18973 28.714557490176 0 +11 18992 28.714717490176 0 +11 18992 28.714717490176 0 +11 19008 28.724399242627 0 +11 19008 28.724399242627 0 +11 19019 28.724559242627 0 +11 19019 28.724559242627 0 +11 19041 28.731276917209 0 +11 19041 28.731276917209 0 +11 19064 28.731436917209 0 +11 19064 28.731436917209 0 +11 19078 28.757383685955 0 +11 19078 28.757383685955 0 +11 19086 28.757543685955 0 +11 19086 28.757543685955 0 +11 19206 29.01455748367 0 +11 19206 29.01455748367 0 +11 19225 29.01471748367 0 +11 19225 29.01471748367 0 +11 19241 29.02439924345 0 +11 19241 29.02439924345 0 +11 19252 29.02455924345 0 +11 19252 29.02455924345 0 +11 19307 29.057383685955 0 +11 19307 29.057383685955 0 +11 19315 29.057543685955 0 +11 19315 29.057543685955 0 +11 19431 29.314557474199 0 +11 19431 29.314557474199 0 +11 19450 29.314717474199 0 +11 19450 29.314717474199 0 +11 19466 29.324399247583 0 +11 19466 29.324399247583 0 +11 19477 29.324559247583 0 +11 19477 29.324559247583 0 +11 19532 29.357383685955 0 +11 19532 29.357383685955 0 +11 19540 29.357543685955 0 +11 19540 29.357543685955 0 +11 19656 29.614557462553 0 +11 19656 29.614557462553 0 +11 19675 29.614717462553 0 +11 19675 29.614717462553 0 +11 19691 29.624399248962 0 +11 19691 29.624399248962 0 +11 19702 29.624559248962 0 +11 19702 29.624559248962 0 +11 19757 29.657383685955 0 +11 19757 29.657383685955 0 +11 19765 29.657543685955 0 +11 19765 29.657543685955 0 +11 19881 29.914557450409 0 +11 19881 29.914557450409 0 +11 19900 29.914717450409 0 +11 19900 29.914717450409 0 +11 19916 29.924399249496 0 +11 19916 29.924399249496 0 +11 19927 29.924559249496 0 +11 19927 29.924559249496 0 +11 19982 29.957383685955 0 +11 19982 29.957383685955 0 +11 19990 29.957543685955 0 +11 19990 29.957543685955 0 +11 20106 30.214557437824 0 +11 20106 30.214557437824 0 +11 20125 30.214717437824 0 +11 20125 30.214717437824 0 +11 20141 30.224399249493 0 +11 20141 30.224399249493 0 +11 20152 30.224559249493 0 +11 20152 30.224559249493 0 +11 20207 30.257383685955 0 +11 20207 30.257383685955 0 +11 20215 30.257543685955 0 +11 20215 30.257543685955 0 +11 20329 30.514557424894 0 +11 20329 30.514557424894 0 +11 20340 30.514717424894 0 +11 20340 30.514717424894 0 +11 20366 30.524399249491 0 +11 20366 30.524399249491 0 +11 20377 30.524559249491 0 +11 20377 30.524559249491 0 +11 20432 30.557383685955 0 +11 20432 30.557383685955 0 +11 20440 30.557543685955 0 +11 20440 30.557543685955 0 +11 20554 30.814557411739 0 +11 20554 30.814557411739 0 +11 20565 30.814717411739 0 +11 20565 30.814717411739 0 +11 20591 30.824399249488 0 +11 20591 30.824399249488 0 +11 20602 30.824559249488 0 +11 20602 30.824559249488 0 +11 20657 30.857383685955 0 +11 20657 30.857383685955 0 +11 20665 30.857543685955 0 +11 20665 30.857543685955 0 +11 20779 31.114557398299 0 +11 20779 31.114557398299 0 +11 20790 31.114717398299 0 +11 20790 31.114717398299 0 +11 20816 31.124399249483 0 +11 20816 31.124399249483 0 +11 20827 31.124559249483 0 +11 20827 31.124559249483 0 +11 20886 31.157383685955 0 +11 20886 31.157383685955 0 +11 20894 31.157543685955 0 +11 20894 31.157543685955 0 +11 21012 31.414557384666 0 +11 21012 31.414557384666 0 +11 21023 31.414717384666 0 +11 21023 31.414717384666 0 +11 21049 31.424399249476 0 +11 21049 31.424399249476 0 +11 21060 31.424559249476 0 +11 21060 31.424559249476 0 +11 21119 31.457383685955 0 +11 21119 31.457383685955 0 +11 21127 31.457543685955 0 +11 21127 31.457543685955 0 +11 21245 31.714557370995 0 +11 21245 31.714557370995 0 +11 21256 31.714717370995 0 +11 21256 31.714717370995 0 +11 21282 31.724399249469 0 +11 21282 31.724399249469 0 +11 21293 31.724559249469 0 +11 21293 31.724559249469 0 +11 21352 31.757383685955 0 +11 21352 31.757383685955 0 +11 21360 31.757543685955 0 +11 21360 31.757543685955 0 +11 21478 32.014557357699 0 +11 21478 32.014557357699 0 +11 21489 32.014717357699 0 +11 21489 32.014717357699 0 +11 21516 32.024399249465 0 +11 21516 32.024399249465 0 +11 21531 32.024559249465 0 +11 21531 32.024559249465 0 +11 21585 32.057383685955 0 +11 21585 32.057383685955 0 +11 21593 32.057543685955 0 +11 21593 32.057543685955 0 +11 21711 32.314557344745 0 +11 21711 32.314557344745 0 +11 21722 32.314717344745 0 +11 21722 32.314717344745 0 +11 21749 32.324399249464 0 +11 21749 32.324399249464 0 +11 21764 32.324559249464 0 +11 21764 32.324559249464 0 +11 21818 32.357383685955 0 +11 21818 32.357383685955 0 +11 21826 32.357543685955 0 +11 21826 32.357543685955 0 +11 21944 32.614557332223 0 +11 21944 32.614557332223 0 +11 21955 32.614717332223 0 +11 21955 32.614717332223 0 +11 21982 32.624399249467 0 +11 21982 32.624399249467 0 +11 21997 32.624559249467 0 +11 21997 32.624559249467 0 +11 22051 32.657383685955 0 +11 22051 32.657383685955 0 +11 22059 32.657543685955 0 +11 22059 32.657543685955 0 +11 22177 32.914557320155 0 +11 22177 32.914557320155 0 +11 22188 32.914717320155 0 +11 22188 32.914717320155 0 +11 22215 32.924399249474 0 +11 22215 32.924399249474 0 +11 22230 32.924559249474 0 +11 22230 32.924559249474 0 +11 22284 32.957383685955 0 +11 22284 32.957383685955 0 +11 22292 32.957543685955 0 +11 22292 32.957543685955 0 +11 22410 33.214557308546 0 +11 22410 33.214557308546 0 +11 22421 33.214717308546 0 +11 22421 33.214717308546 0 +11 22448 33.224399249483 0 +11 22448 33.224399249483 0 +11 22463 33.224559249483 0 +11 22463 33.224559249483 0 +11 22517 33.257383685955 0 +11 22517 33.257383685955 0 +11 22525 33.257543685955 0 +11 22525 33.257543685955 0 +11 22643 33.51455729748 0 +11 22643 33.51455729748 0 +11 22654 33.51471729748 0 +11 22654 33.51471729748 0 +11 22681 33.524399249496 0 +11 22681 33.524399249496 0 +11 22696 33.524559249496 0 +11 22696 33.524559249496 0 +11 22750 33.557383685955 0 +11 22750 33.557383685955 0 +11 22758 33.557543685955 0 +11 22758 33.557543685955 0 +11 22876 33.814557286954 0 +11 22876 33.814557286954 0 +11 22887 33.814717286954 0 +11 22887 33.814717286954 0 +11 22910 33.824399249513 0 +11 22910 33.824399249513 0 +11 22925 33.824559249513 0 +11 22925 33.824559249513 0 +11 22979 33.857383685955 0 +11 22979 33.857383685955 0 +11 22987 33.857543685955 0 +11 22987 33.857543685955 0 +11 23092 34.114557277044 0 +11 23092 34.114557277044 0 +11 23102 34.114717277044 0 +11 23102 34.114717277044 0 +11 23119 34.124399249532 0 +11 23119 34.124399249532 0 +11 23129 34.124559249532 0 +11 23129 34.124559249532 0 +11 23173 34.157383685955 0 +11 23173 34.157383685955 0 +11 23180 34.157543685955 0 +11 23180 34.157543685955 0 +11 23250 34.41455726774 0 +11 23250 34.41455726774 0 +11 23260 34.41471726774 0 +11 23260 34.41471726774 0 +11 23277 34.424399249554 0 +11 23277 34.424399249554 0 +11 23287 34.424559249554 0 +11 23287 34.424559249554 0 +11 23331 34.457383685955 0 +11 23331 34.457383685955 0 +11 23338 34.457543685955 0 +11 23338 34.457543685955 0 +11 23408 34.714557259086 0 +11 23408 34.714557259086 0 +11 23418 34.714717259086 0 +11 23418 34.714717259086 0 +11 23435 34.72439924958 0 +11 23435 34.72439924958 0 +11 23445 34.72455924958 0 +11 23445 34.72455924958 0 +11 23489 34.757383685955 0 +11 23489 34.757383685955 0 +11 23496 34.757543685955 0 +11 23496 34.757543685955 0 +11 23566 35.01455725114 0 +11 23566 35.01455725114 0 +11 23576 35.01471725114 0 +11 23576 35.01471725114 0 +11 23593 35.024399249609 0 +11 23593 35.024399249609 0 +11 23603 35.024559249609 0 +11 23603 35.024559249609 0 +11 23647 35.057383685955 0 +11 23647 35.057383685955 0 +11 23654 35.057543685955 0 +11 23654 35.057543685955 0 +11 23685 35.14399390924 0 +11 23685 35.14399390924 0 +11 23699 35.14415390924 0 +11 23699 35.14415390924 0 +11 23728 35.314557244297 0 +11 23728 35.314557244297 0 +11 23738 35.314717244297 0 +11 23738 35.314717244297 0 +11 23755 35.324399249632 0 +11 23755 35.324399249632 0 +11 23765 35.324559249632 0 +11 23765 35.324559249632 0 +11 23809 35.357383685955 0 +11 23809 35.357383685955 0 +11 23816 35.357543685955 0 +11 23816 35.357543685955 0 +11 23851 35.443993894903 0 +11 23851 35.443993894903 0 +11 23865 35.444153894903 0 +11 23865 35.444153894903 0 +11 23894 35.614557239399 0 +11 23894 35.614557239399 0 +11 23904 35.614717239399 0 +11 23904 35.614717239399 0 +11 23921 35.624399249628 0 +11 23921 35.624399249628 0 +11 23931 35.624559249628 0 +11 23931 35.624559249628 0 +11 23975 35.657383685955 0 +11 23975 35.657383685955 0 +11 23982 35.657543685955 0 +11 23982 35.657543685955 0 +11 24017 35.743993882114 0 +11 24017 35.743993882114 0 +11 24031 35.744153882114 0 +11 24031 35.744153882114 0 +11 24059 35.914557236445 0 +11 24059 35.914557236445 0 +11 24065 35.914717236445 0 +11 24065 35.914717236445 0 +11 24087 35.924399249595 0 +11 24087 35.924399249595 0 +11 24097 35.924559249595 0 +11 24097 35.924559249595 0 +11 24141 35.957383685955 0 +11 24141 35.957383685955 0 +11 24148 35.957543685955 0 +11 24148 35.957543685955 0 +11 24183 36.043993870912 0 +11 24183 36.043993870912 0 +11 24197 36.044153870912 0 +11 24197 36.044153870912 0 +11 24225 36.214557235432 0 +11 24225 36.214557235432 0 +11 24231 36.214717235432 0 +11 24231 36.214717235432 0 +11 24253 36.224399249544 0 +11 24253 36.224399249544 0 +11 24263 36.224559249544 0 +11 24263 36.224559249544 0 +11 24307 36.257383685955 0 +11 24307 36.257383685955 0 +11 24314 36.257543685955 0 +11 24314 36.257543685955 0 +11 24349 36.343993861309 0 +11 24349 36.343993861309 0 +11 24363 36.344153861309 0 +11 24363 36.344153861309 0 +11 24391 36.514557236231 0 +11 24391 36.514557236231 0 +11 24397 36.514717236231 0 +11 24397 36.514717236231 0 +11 24419 36.524399249492 0 +11 24419 36.524399249492 0 +11 24429 36.524559249492 0 +11 24429 36.524559249492 0 +11 24473 36.557383685955 0 +11 24473 36.557383685955 0 +11 24480 36.557543685955 0 +11 24480 36.557543685955 0 +11 24515 36.643993853328 0 +11 24515 36.643993853328 0 +11 24529 36.644153853328 0 +11 24529 36.644153853328 0 +11 24558 36.814557238201 0 +11 24558 36.814557238201 0 +11 24568 36.814717238201 0 +11 24568 36.814717238201 0 +11 24585 36.824399249465 0 +11 24585 36.824399249465 0 +11 24595 36.824559249465 0 +11 24595 36.824559249465 0 +11 24639 36.857383685955 0 +11 24639 36.857383685955 0 +11 24646 36.857543685955 0 +11 24646 36.857543685955 0 +11 24681 36.943993845573 0 +11 24681 36.943993845573 0 +11 24695 36.944153845573 0 +11 24695 36.944153845573 0 +11 24724 37.114557240113 0 +11 24724 37.114557240113 0 +11 24734 37.114717240113 0 +11 24734 37.114717240113 0 +11 24751 37.124399249471 0 +11 24751 37.124399249471 0 +11 24761 37.124559249471 0 +11 24761 37.124559249471 0 +11 24805 37.157383685955 0 +11 24805 37.157383685955 0 +11 24812 37.157543685955 0 +11 24812 37.157543685955 0 +11 24846 37.243993835004 0 +11 24846 37.243993835004 0 +11 24856 37.244153835004 0 +11 24856 37.244153835004 0 +11 24890 37.414557242061 0 +11 24890 37.414557242061 0 +11 24900 37.414717242061 0 +11 24900 37.414717242061 0 +11 24917 37.424399249494 0 +11 24917 37.424399249494 0 +11 24927 37.424559249494 0 +11 24927 37.424559249494 0 +11 24971 37.457383685955 0 +11 24971 37.457383685955 0 +11 24978 37.457543685955 0 +11 24978 37.457543685955 0 +11 25012 37.543993814684 0 +11 25012 37.543993814684 0 +11 25022 37.544153814684 0 +11 25022 37.544153814684 0 +11 25056 37.714557244204 0 +11 25056 37.714557244204 0 +11 25066 37.714717244204 0 +11 25066 37.714717244204 0 +11 25083 37.724399249526 0 +11 25083 37.724399249526 0 +11 25093 37.724559249526 0 +11 25093 37.724559249526 0 +11 25137 37.757383685955 0 +11 25137 37.757383685955 0 +11 25144 37.757543685955 0 +11 25144 37.757543685955 0 +11 25178 37.843993790864 0 +11 25178 37.843993790864 0 +11 25188 37.844153790864 0 +11 25188 37.844153790864 0 +11 25222 38.014557246626 0 +11 25222 38.014557246626 0 +11 25232 38.014717246626 0 +11 25232 38.014717246626 0 +11 25249 38.024399249562 0 +11 25249 38.024399249562 0 +11 25259 38.024559249562 0 +11 25259 38.024559249562 0 +11 25303 38.057383685955 0 +11 25303 38.057383685955 0 +11 25310 38.057543685955 0 +11 25310 38.057543685955 0 +11 25344 38.143993766481 0 +11 25344 38.143993766481 0 +11 25354 38.144153766481 0 +11 25354 38.144153766481 0 +11 25388 38.314557249321 0 +11 25388 38.314557249321 0 +11 25398 38.314717249321 0 +11 25398 38.314717249321 0 +11 25415 38.324399249594 0 +11 25415 38.324399249594 0 +11 25425 38.324559249594 0 +11 25425 38.324559249594 0 +11 25469 38.357383685955 0 +11 25469 38.357383685955 0 +11 25476 38.357543685955 0 +11 25476 38.357543685955 0 +11 25510 38.443993741575 0 +11 25510 38.443993741575 0 +11 25520 38.444153741575 0 +11 25520 38.444153741575 0 +11 25554 38.614557252296 0 +11 25554 38.614557252296 0 +11 25564 38.614717252296 0 +11 25564 38.614717252296 0 +11 25581 38.624399249618 0 +11 25581 38.624399249618 0 +11 25591 38.624559249618 0 +11 25591 38.624559249618 0 +11 25635 38.657383685955 0 +11 25635 38.657383685955 0 +11 25642 38.657543685955 0 +11 25642 38.657543685955 0 +11 25676 38.743993716074 0 +11 25676 38.743993716074 0 +11 25686 38.744153716074 0 +11 25686 38.744153716074 0 +11 25720 38.914557255584 0 +11 25720 38.914557255584 0 +11 25730 38.914717255584 0 +11 25730 38.914717255584 0 +11 25747 38.924399249631 0 +11 25747 38.924399249631 0 +11 25757 38.924559249631 0 +11 25757 38.924559249631 0 +11 25801 38.957383685955 0 +11 25801 38.957383685955 0 +11 25808 38.957543685955 0 +11 25808 38.957543685955 0 +11 25842 39.043993690005 0 +11 25842 39.043993690005 0 +11 25852 39.044153690005 0 +11 25852 39.044153690005 0 +11 25886 39.214557259182 0 +11 25886 39.214557259182 0 +11 25896 39.214717259182 0 +11 25896 39.214717259182 0 +11 25913 39.224399249629 0 +11 25913 39.224399249629 0 +11 25923 39.224559249629 0 +11 25923 39.224559249629 0 +11 25967 39.257383685955 0 +11 25967 39.257383685955 0 +11 25974 39.257543685955 0 +11 25974 39.257543685955 0 +11 26008 39.343993663209 0 +11 26008 39.343993663209 0 +11 26018 39.344153663209 0 +11 26018 39.344153663209 0 +11 26052 39.514557263099 0 +11 26052 39.514557263099 0 +11 26062 39.514717263099 0 +11 26062 39.514717263099 0 +11 26079 39.524399249613 0 +11 26079 39.524399249613 0 +11 26089 39.524559249613 0 +11 26089 39.524559249613 0 +11 26133 39.557383685955 0 +11 26133 39.557383685955 0 +11 26140 39.557543685955 0 +11 26140 39.557543685955 0 +11 26174 39.643993635768 0 +11 26174 39.643993635768 0 +11 26184 39.644153635768 0 +11 26184 39.644153635768 0 +11 26218 39.81455726744 0 +11 26218 39.81455726744 0 +11 26228 39.81471726744 0 +11 26228 39.81471726744 0 +11 26245 39.824399249586 0 +11 26245 39.824399249586 0 +11 26255 39.824559249586 0 +11 26255 39.824559249586 0 +11 26299 39.857383685955 0 +11 26299 39.857383685955 0 +11 26306 39.857543685955 0 +11 26306 39.857543685955 0 +11 26340 39.943993607814 0 +11 26340 39.943993607814 0 +11 26350 39.944153607814 0 +11 26350 39.944153607814 0 +11 26384 40.114557272479 0 +11 26384 40.114557272479 0 +11 26394 40.114717272479 0 +11 26394 40.114717272479 0 +11 26411 40.124399249559 0 +11 26411 40.124399249559 0 +11 26421 40.124559249559 0 +11 26421 40.124559249559 0 +11 26465 40.157383685955 0 +11 26465 40.157383685955 0 +11 26472 40.157543685955 0 +11 26472 40.157543685955 0 +11 26505 40.243993579799 0 +11 26505 40.243993579799 0 +11 26511 40.244153579799 0 +11 26511 40.244153579799 0 +11 26550 40.414557278253 0 +11 26550 40.414557278253 0 +11 26560 40.414717278253 0 +11 26560 40.414717278253 0 +11 26577 40.424399249535 0 +11 26577 40.424399249535 0 +11 26587 40.424559249535 0 +11 26587 40.424559249535 0 +11 26631 40.457383685955 0 +11 26631 40.457383685955 0 +11 26638 40.457543685955 0 +11 26638 40.457543685955 0 +11 26671 40.543993551811 0 +11 26671 40.543993551811 0 +11 26677 40.544153551811 0 +11 26677 40.544153551811 0 +11 26716 40.714557284831 0 +11 26716 40.714557284831 0 +11 26726 40.714717284831 0 +11 26726 40.714717284831 0 +11 26743 40.724399249515 0 +11 26743 40.724399249515 0 +11 26753 40.724559249515 0 +11 26753 40.724559249515 0 +11 26801 40.757383685955 0 +11 26801 40.757383685955 0 +11 26808 40.757543685955 0 +11 26808 40.757543685955 0 +11 26841 40.843993523891 0 +11 26841 40.843993523891 0 +11 26847 40.844153523891 0 +11 26847 40.844153523891 0 +11 26890 41.014557292056 0 +11 26890 41.014557292056 0 +11 26900 41.014717292056 0 +11 26900 41.014717292056 0 +11 26917 41.024399249498 0 +11 26917 41.024399249498 0 +11 26927 41.024559249498 0 +11 26927 41.024559249498 0 +11 26975 41.057383685955 0 +11 26975 41.057383685955 0 +11 26982 41.057543685955 0 +11 26982 41.057543685955 0 +11 27015 41.143993495882 0 +11 27015 41.143993495882 0 +11 27021 41.144153495882 0 +11 27021 41.144153495882 0 +11 27064 41.314557299998 0 +11 27064 41.314557299998 0 +11 27074 41.314717299998 0 +11 27074 41.314717299998 0 +11 27091 41.324399249485 0 +11 27091 41.324399249485 0 +11 27101 41.324559249485 0 +11 27101 41.324559249485 0 +11 27149 41.357383685955 0 +11 27149 41.357383685955 0 +11 27156 41.357543685955 0 +11 27156 41.357543685955 0 +11 27189 41.44399346791 0 +11 27189 41.44399346791 0 +11 27195 41.44415346791 0 +11 27195 41.44415346791 0 +11 27238 41.614557308543 0 +11 27238 41.614557308543 0 +11 27248 41.614717308543 0 +11 27248 41.614717308543 0 +11 27265 41.624399249475 0 +11 27265 41.624399249475 0 +11 27275 41.624559249475 0 +11 27275 41.624559249475 0 +11 27323 41.657383685955 0 +11 27323 41.657383685955 0 +11 27330 41.657543685955 0 +11 27330 41.657543685955 0 +11 27363 41.743993439965 0 +11 27363 41.743993439965 0 +11 27369 41.744153439965 0 +11 27369 41.744153439965 0 +11 27412 41.914557317732 0 +11 27412 41.914557317732 0 +11 27422 41.914717317732 0 +11 27422 41.914717317732 0 +11 27439 41.924399249468 0 +11 27439 41.924399249468 0 +11 27449 41.924559249468 0 +11 27449 41.924559249468 0 +11 27497 41.957383685955 0 +11 27497 41.957383685955 0 +11 27504 41.957543685955 0 +11 27504 41.957543685955 0 +11 27537 42.043993412971 0 +11 27537 42.043993412971 0 +11 27543 42.044153412971 0 +11 27543 42.044153412971 0 +11 27586 42.214557327498 0 +11 27586 42.214557327498 0 +11 27596 42.214717327498 0 +11 27596 42.214717327498 0 +11 27613 42.224399249465 0 +11 27613 42.224399249465 0 +11 27623 42.224559249465 0 +11 27623 42.224559249465 0 +11 27671 42.257383685955 0 +11 27671 42.257383685955 0 +11 27678 42.257543685955 0 +11 27678 42.257543685955 0 +11 27711 42.34399338739 0 +11 27711 42.34399338739 0 +11 27717 42.34415338739 0 +11 27717 42.34415338739 0 +11 27760 42.514557337799 0 +11 27760 42.514557337799 0 +11 27770 42.514717337799 0 +11 27770 42.514717337799 0 +11 27787 42.524399249465 0 +11 27787 42.524399249465 0 +11 27797 42.524559249465 0 +11 27797 42.524559249465 0 +11 27845 42.557383685955 0 +11 27845 42.557383685955 0 +11 27852 42.557543685955 0 +11 27852 42.557543685955 0 +11 27885 42.643993363107 0 +11 27885 42.643993363107 0 +11 27891 42.644153363107 0 +11 27891 42.644153363107 0 +11 27934 42.814557348649 0 +11 27934 42.814557348649 0 +11 27944 42.814717348649 0 +11 27944 42.814717348649 0 +11 27961 42.824399249468 0 +11 27961 42.824399249468 0 +11 27971 42.824559249468 0 +11 27971 42.824559249468 0 +11 28019 42.857383685955 0 +11 28019 42.857383685955 0 +11 28026 42.857543685955 0 +11 28026 42.857543685955 0 +11 28059 42.943993340208 0 +11 28059 42.943993340208 0 +11 28065 42.944153340208 0 +11 28065 42.944153340208 0 +11 28107 43.114557359966 0 +11 28107 43.114557359966 0 +11 28113 43.114717359966 0 +11 28113 43.114717359966 0 +11 28135 43.124399249475 0 +11 28135 43.124399249475 0 +11 28145 43.124559249475 0 +11 28145 43.124559249475 0 +11 28193 43.157383685955 0 +11 28193 43.157383685955 0 +11 28200 43.157543685955 0 +11 28200 43.157543685955 0 +11 28233 43.243993318662 0 +11 28233 43.243993318662 0 +11 28239 43.244153318662 0 +11 28239 43.244153318662 0 +11 28281 43.414557371721 0 +11 28281 43.414557371721 0 +11 28287 43.414717371721 0 +11 28287 43.414717371721 0 +11 28309 43.424399249485 0 +11 28309 43.424399249485 0 +11 28319 43.424559249485 0 +11 28319 43.424559249485 0 +11 28367 43.457383685955 0 +11 28367 43.457383685955 0 +11 28374 43.457543685955 0 +11 28374 43.457543685955 0 +11 28407 43.543993298467 0 +11 28407 43.543993298467 0 +11 28413 43.544153298467 0 +11 28413 43.544153298467 0 +11 28455 43.71455738363 0 +11 28455 43.71455738363 0 +11 28461 43.71471738363 0 +11 28461 43.71471738363 0 +11 28483 43.724399249498 0 +11 28483 43.724399249498 0 +11 28493 43.724559249498 0 +11 28493 43.724559249498 0 +11 28541 43.757383685955 0 +11 28541 43.757383685955 0 +11 28548 43.757543685955 0 +11 28548 43.757543685955 0 +11 28581 43.843993279612 0 +11 28581 43.843993279612 0 +11 28587 43.844153279612 0 +11 28587 43.844153279612 0 +11 28629 44.014557394666 0 +11 28629 44.014557394666 0 +11 28635 44.014717394666 0 +11 28635 44.014717394666 0 +11 28657 44.024399249515 0 +11 28657 44.024399249515 0 +11 28667 44.024559249515 0 +11 28667 44.024559249515 0 +11 28715 44.057383685955 0 +11 28715 44.057383685955 0 +11 28722 44.057543685955 0 +11 28722 44.057543685955 0 +11 28755 44.143993262339 0 +11 28755 44.143993262339 0 +11 28761 44.144153262339 0 +11 28761 44.144153262339 0 +11 28803 44.314557404849 0 +11 28803 44.314557404849 0 +11 28809 44.314717404849 0 +11 28809 44.314717404849 0 +11 28832 44.324399249523 0 +11 28832 44.324399249523 0 +11 28846 44.324559249523 0 +11 28846 44.324559249523 0 +11 28885 44.357383685955 0 +11 28885 44.357383685955 0 +11 28892 44.357543685955 0 +11 28892 44.357543685955 0 +11 28925 44.443993247573 0 +11 28925 44.443993247573 0 +11 28931 44.444153247573 0 +11 28931 44.444153247573 0 +11 28969 44.614557414115 0 +11 28969 44.614557414115 0 +11 28975 44.614717414115 0 +11 28975 44.614717414115 0 +11 28998 44.624399249512 0 +11 28998 44.624399249512 0 +11 29012 44.624559249512 0 +11 29012 44.624559249512 0 +11 29051 44.657383685955 0 +11 29051 44.657383685955 0 +11 29058 44.657543685955 0 +11 29058 44.657543685955 0 +11 29091 44.743993235516 0 +11 29091 44.743993235516 0 +11 29097 44.744153235516 0 +11 29097 44.744153235516 0 +11 29135 44.914557422365 0 +11 29135 44.914557422365 0 +11 29141 44.914717422365 0 +11 29141 44.914717422365 0 +11 29164 44.92439924949 0 +11 29164 44.92439924949 0 +11 29178 44.92455924949 0 +11 29178 44.92455924949 0 +11 29217 44.957383685955 0 +11 29217 44.957383685955 0 +11 29224 44.957543685955 0 +11 29224 44.957543685955 0 +11 29257 45.04399322614 0 +11 29257 45.04399322614 0 +11 29263 45.04415322614 0 +11 29263 45.04415322614 0 +11 29301 45.214557429517 0 +11 29301 45.214557429517 0 +11 29307 45.214717429517 0 +11 29307 45.214717429517 0 +11 29330 45.224399249469 0 +11 29330 45.224399249469 0 +11 29344 45.224559249469 0 +11 29344 45.224559249469 0 +11 29383 45.257383685955 0 +11 29383 45.257383685955 0 +11 29390 45.257543685955 0 +11 29390 45.257543685955 0 +11 29423 45.343993218642 0 +11 29423 45.343993218642 0 +11 29429 45.344153218642 0 +11 29429 45.344153218642 0 +11 29467 45.514557435742 0 +11 29467 45.514557435742 0 +11 29473 45.514717435742 0 +11 29473 45.514717435742 0 +11 29496 45.524399249468 0 +11 29496 45.524399249468 0 +11 29510 45.524559249468 0 +11 29510 45.524559249468 0 +11 29549 45.557383685955 0 +11 29549 45.557383685955 0 +11 29556 45.557543685955 0 +11 29556 45.557543685955 0 +11 29589 45.643993212262 0 +11 29589 45.643993212262 0 +11 29595 45.644153212262 0 +11 29595 45.644153212262 0 +11 29633 45.814557442585 0 +11 29633 45.814557442585 0 +11 29639 45.814717442585 0 +11 29639 45.814717442585 0 +11 29662 45.82439924948 0 +11 29662 45.82439924948 0 +11 29676 45.82455924948 0 +11 29676 45.82455924948 0 +11 29715 45.857383685955 0 +11 29715 45.857383685955 0 +11 29722 45.857543685955 0 +11 29722 45.857543685955 0 +11 29755 45.943993205371 0 +11 29755 45.943993205371 0 +11 29761 45.944153205371 0 +11 29761 45.944153205371 0 +11 29799 46.114557450187 0 +11 29799 46.114557450187 0 +11 29805 46.114717450187 0 +11 29805 46.114717450187 0 +11 29828 46.124399246618 0 +11 29828 46.124399246618 0 +11 29842 46.124559246618 0 +11 29842 46.124559246618 0 +11 29881 46.157383685955 0 +11 29881 46.157383685955 0 +11 29888 46.157543685955 0 +11 29888 46.157543685955 0 +11 29921 46.24399319776 0 +11 29921 46.24399319776 0 +11 29927 46.24415319776 0 +11 29927 46.24415319776 0 +11 29965 46.414557458063 0 +11 29965 46.414557458063 0 +11 29971 46.414717458063 0 +11 29971 46.414717458063 0 +11 29994 46.424399237708 0 +11 29994 46.424399237708 0 +11 30008 46.424559237708 0 +11 30008 46.424559237708 0 +11 30047 46.457383685955 0 +11 30047 46.457383685955 0 +11 30054 46.457543685955 0 +11 30054 46.457543685955 0 +11 30087 46.54399318918 0 +11 30087 46.54399318918 0 +11 30093 46.54415318918 0 +11 30093 46.54415318918 0 +11 30131 46.714557464072 0 +11 30131 46.714557464072 0 +11 30137 46.714717464072 0 +11 30137 46.714717464072 0 +11 30160 46.724399226197 0 +11 30160 46.724399226197 0 +11 30174 46.724559226197 0 +11 30174 46.724559226197 0 +11 30213 46.757383685955 0 +11 30213 46.757383685955 0 +11 30220 46.757543685955 0 +11 30220 46.757543685955 0 +11 30253 46.843993179661 0 +11 30253 46.843993179661 0 +11 30259 46.844153179661 0 +11 30259 46.844153179661 0 +11 30297 47.014557466477 0 +11 30297 47.014557466477 0 +11 30303 47.014717466477 0 +11 30303 47.014717466477 0 +11 30326 47.02439921469 0 +11 30326 47.02439921469 0 +11 30340 47.02455921469 0 +11 30340 47.02455921469 0 +11 30379 47.057383685955 0 +11 30379 47.057383685955 0 +11 30386 47.057543685955 0 +11 30386 47.057543685955 0 +11 30419 47.143993169499 0 +11 30419 47.143993169499 0 +11 30425 47.144153169499 0 +11 30425 47.144153169499 0 +11 30463 47.314557467583 0 +11 30463 47.314557467583 0 +11 30469 47.314717467583 0 +11 30469 47.314717467583 0 +11 30492 47.324399203344 0 +11 30492 47.324399203344 0 +11 30506 47.324559203344 0 +11 30506 47.324559203344 0 +11 30545 47.357383685955 0 +11 30545 47.357383685955 0 +11 30552 47.357543685955 0 +11 30552 47.357543685955 0 +11 30585 47.443993161554 0 +11 30585 47.443993161554 0 +11 30591 47.444153161554 0 +11 30591 47.444153161554 0 +11 30629 47.614557469418 0 +11 30629 47.614557469418 0 +11 30635 47.614717469418 0 +11 30635 47.614717469418 0 +11 30658 47.62439919222 0 +11 30658 47.62439919222 0 +11 30672 47.62455919222 0 +11 30672 47.62455919222 0 +11 30711 47.657383685955 0 +11 30711 47.657383685955 0 +11 30718 47.657543685955 0 +11 30718 47.657543685955 0 +11 30751 47.743993166005 0 +11 30751 47.743993166005 0 +11 30757 47.744153166005 0 +11 30757 47.744153166005 0 +11 30795 47.914557472096 0 +11 30795 47.914557472096 0 +11 30801 47.914717472096 0 +11 30801 47.914717472096 0 +11 30824 47.924399181338 0 +11 30824 47.924399181338 0 +11 30838 47.924559181338 0 +11 30838 47.924559181338 0 +11 30877 47.957383685955 0 +11 30877 47.957383685955 0 +11 30884 47.957543685955 0 +11 30884 47.957543685955 0 +11 30917 48.043993178928 0 +11 30917 48.043993178928 0 +11 30923 48.044153178928 0 +11 30923 48.044153178928 0 +11 30961 48.214557475721 0 +11 30961 48.214557475721 0 +11 30967 48.214717475721 0 +11 30967 48.214717475721 0 +11 30989 48.224399170754 0 +11 30989 48.224399170754 0 +11 30999 48.224559170754 0 +11 30999 48.224559170754 0 +11 31043 48.257383685955 0 +11 31043 48.257383685955 0 +11 31050 48.257543685955 0 +11 31050 48.257543685955 0 +11 31083 48.343993193323 0 +11 31083 48.343993193323 0 +11 31089 48.344153193323 0 +11 31089 48.344153193323 0 +11 31128 48.514557480378 0 +11 31128 48.514557480378 0 +11 31138 48.514717480378 0 +11 31138 48.514717480378 0 +11 31155 48.524399160478 0 +11 31155 48.524399160478 0 +11 31165 48.524559160478 0 +11 31165 48.524559160478 0 +11 31209 48.557383685955 0 +11 31209 48.557383685955 0 +11 31216 48.557543685955 0 +11 31216 48.557543685955 0 +11 31249 48.643993209351 0 +11 31249 48.643993209351 0 +11 31255 48.644153209351 0 +11 31255 48.644153209351 0 +11 31294 48.8145574862 0 +11 31294 48.8145574862 0 +11 31304 48.8147174862 0 +11 31304 48.8147174862 0 +11 31321 48.824399150571 0 +11 31321 48.824399150571 0 +11 31331 48.824559150571 0 +11 31331 48.824559150571 0 +11 31375 48.857383685955 0 +11 31375 48.857383685955 0 +11 31382 48.857543685955 0 +11 31382 48.857543685955 0 +11 31415 48.943993225428 0 +11 31415 48.943993225428 0 +11 31421 48.944153225428 0 +11 31421 48.944153225428 0 +11 31460 49.11455749318 0 +11 31460 49.11455749318 0 +11 31470 49.11471749318 0 +11 31470 49.11471749318 0 +11 31487 49.124399141102 0 +11 31487 49.124399141102 0 +11 31497 49.124559141102 0 +11 31497 49.124559141102 0 +11 31541 49.157383685955 0 +11 31541 49.157383685955 0 +11 31548 49.157543685955 0 +11 31548 49.157543685955 0 +11 31581 49.243993241593 0 +11 31581 49.243993241593 0 +11 31587 49.244153241593 0 +11 31587 49.244153241593 0 +11 31626 49.4145575013 0 +11 31626 49.4145575013 0 +11 31636 49.4147175013 0 +11 31636 49.4147175013 0 +11 31653 49.424399131999 0 +11 31653 49.424399131999 0 +11 31663 49.424559131999 0 +11 31663 49.424559131999 0 +11 31707 49.457383685955 0 +11 31707 49.457383685955 0 +11 31714 49.457543685955 0 +11 31714 49.457543685955 0 +11 31747 49.543993256365 0 +11 31747 49.543993256365 0 +11 31753 49.544153256365 0 +11 31753 49.544153256365 0 +11 31792 49.714557510532 0 +11 31792 49.714557510532 0 +11 31802 49.714717510532 0 +11 31802 49.714717510532 0 +11 31818 49.72439912329 0 +11 31818 49.72439912329 0 +11 31824 49.72455912329 0 +11 31824 49.72455912329 0 +11 31873 49.757383685955 0 +11 31873 49.757383685955 0 +11 31880 49.757543685955 0 +11 31880 49.757543685955 0 +11 31913 49.843993271223 0 +11 31913 49.843993271223 0 +11 31919 49.844153271223 0 +11 31919 49.844153271223 0 +11 31958 50.014557520716 0 +11 31958 50.014557520716 0 +11 31968 50.014717520716 0 +11 31968 50.014717520716 0 +11 31984 50.024399114997 0 +11 31984 50.024399114997 0 +11 31990 50.024559114997 0 +11 31990 50.024559114997 0 +11 32039 50.057383685955 0 +11 32039 50.057383685955 0 +11 32046 50.057543685955 0 +11 32046 50.057543685955 0 +11 32079 50.143993285388 0 +11 32079 50.143993285388 0 +11 32085 50.144153285388 0 +11 32085 50.144153285388 0 +11 32124 50.314557531836 0 +11 32124 50.314557531836 0 +11 32134 50.314717531836 0 +11 32134 50.314717531836 0 +11 32150 50.324399107181 0 +11 32150 50.324399107181 0 +11 32156 50.324559107181 0 +11 32156 50.324559107181 0 +11 32205 50.357383685955 0 +11 32205 50.357383685955 0 +11 32212 50.357543685955 0 +11 32212 50.357543685955 0 +11 32245 50.443993299881 0 +11 32245 50.443993299881 0 +11 32251 50.444153299881 0 +11 32251 50.444153299881 0 +11 32290 50.614557543841 0 +11 32290 50.614557543841 0 +11 32300 50.614717543841 0 +11 32300 50.614717543841 0 +11 32316 50.6243990998 0 +11 32316 50.6243990998 0 +11 32322 50.6245590998 0 +11 32322 50.6245590998 0 +11 32371 50.657383685955 0 +11 32371 50.657383685955 0 +11 32378 50.657543685955 0 +11 32378 50.657543685955 0 +11 32411 50.743993314719 0 +11 32411 50.743993314719 0 +11 32417 50.744153314719 0 +11 32417 50.744153314719 0 +11 32456 50.914557556641 0 +11 32456 50.914557556641 0 +11 32466 50.914717556641 0 +11 32466 50.914717556641 0 +11 32482 50.924399092883 0 +11 32482 50.924399092883 0 +11 32488 50.924559092883 0 +11 32488 50.924559092883 0 +11 32537 50.957383685955 0 +11 32537 50.957383685955 0 +11 32544 50.957543685955 0 +11 32544 50.957543685955 0 +11 32577 51.043993329888 0 +11 32577 51.043993329888 0 +11 32583 51.044153329888 0 +11 32583 51.044153329888 0 +11 32644 51.224399086505 0 +11 32644 51.224399086505 0 +11 32650 51.224559086505 0 +11 32650 51.224559086505 0 +11 32699 51.257383685955 0 +11 32699 51.257383685955 0 +11 32706 51.257543685955 0 +11 32706 51.257543685955 0 +11 32735 51.343993345414 0 +11 32735 51.343993345414 0 +11 32741 51.344153345414 0 +11 32741 51.344153345414 0 +11 32802 51.524399080627 0 +11 32802 51.524399080627 0 +11 32808 51.524559080627 0 +11 32808 51.524559080627 0 +11 32835 51.531276906599 0 +11 32835 51.531276906599 0 +11 32845 51.531436906599 0 +11 32845 51.531436906599 0 +11 32861 51.557383685955 0 +11 32861 51.557383685955 0 +11 32868 51.557543685955 0 +11 32868 51.557543685955 0 +11 32901 51.643993361304 0 +11 32901 51.643993361304 0 +11 32907 51.644153361304 0 +11 32907 51.644153361304 0 +11 32968 51.824399075287 0 +11 32968 51.824399075287 0 +11 32974 51.824559075287 0 +11 32974 51.824559075287 0 +11 33001 51.831276887561 0 +11 33001 51.831276887561 0 +11 33011 51.831436887561 0 +11 33011 51.831436887561 0 +11 33027 51.857383685955 0 +11 33027 51.857383685955 0 +11 33034 51.857543685955 0 +11 33034 51.857543685955 0 +11 33067 51.943993377578 0 +11 33067 51.943993377578 0 +11 33073 51.944153377578 0 +11 33073 51.944153377578 0 +11 33134 52.124399070526 0 +11 33134 52.124399070526 0 +11 33140 52.124559070526 0 +11 33140 52.124559070526 0 +11 33167 52.131276868507 0 +11 33167 52.131276868507 0 +11 33177 52.131436868507 0 +11 33177 52.131436868507 0 +11 33193 52.157383685955 0 +11 33193 52.157383685955 0 +11 33200 52.157543685955 0 +11 33200 52.157543685955 0 +11 33233 52.243993394241 0 +11 33233 52.243993394241 0 +11 33239 52.244153394241 0 +11 33239 52.244153394241 0 +11 33300 52.424399066364 0 +11 33300 52.424399066364 0 +11 33306 52.424559066364 0 +11 33306 52.424559066364 0 +11 33333 52.431276849398 0 +11 33333 52.431276849398 0 +11 33343 52.431436849398 0 +11 33343 52.431436849398 0 +11 33359 52.457383685955 0 +11 33359 52.457383685955 0 +11 33366 52.457543685955 0 +11 33366 52.457543685955 0 +11 33399 52.543993411231 0 +11 33399 52.543993411231 0 +11 33405 52.544153411231 0 +11 33405 52.544153411231 0 +11 33466 52.724399062755 0 +11 33466 52.724399062755 0 +11 33472 52.724559062755 0 +11 33472 52.724559062755 0 +11 33498 52.731276830378 0 +11 33498 52.731276830378 0 +11 33504 52.731436830378 0 +11 33504 52.731436830378 0 +11 33525 52.757383685955 0 +11 33525 52.757383685955 0 +11 33532 52.757543685955 0 +11 33532 52.757543685955 0 +11 33565 52.843993428579 0 +11 33565 52.843993428579 0 +11 33571 52.844153428579 0 +11 33571 52.844153428579 0 +11 33632 53.024399059705 0 +11 33632 53.024399059705 0 +11 33638 53.024559059705 0 +11 33638 53.024559059705 0 +11 33664 53.031276811401 0 +11 33664 53.031276811401 0 +11 33670 53.031436811401 0 +11 33670 53.031436811401 0 +11 33691 53.057383685955 0 +11 33691 53.057383685955 0 +11 33698 53.057543685955 0 +11 33698 53.057543685955 0 +11 33731 53.143993445991 0 +11 33731 53.143993445991 0 +11 33737 53.144153445991 0 +11 33737 53.144153445991 0 +11 33774 53.324399056666 0 +11 33774 53.324399056666 0 +11 33779 53.324559056666 0 +11 33779 53.324559056666 0 +11 33803 53.331276793082 0 +11 33803 53.331276793082 0 +11 33808 53.331436793082 0 +11 33808 53.331436793082 0 +11 33828 53.357383685955 0 +11 33828 53.357383685955 0 +11 33834 53.357543685955 0 +11 33834 53.357543685955 0 +11 33865 53.443993462692 0 +11 33865 53.443993462692 0 +11 33870 53.444153462692 0 +11 33870 53.444153462692 0 +11 33901 53.624399053363 0 +11 33901 53.624399053363 0 +11 33906 53.624559053363 0 +11 33906 53.624559053363 0 +11 33930 53.631276775636 0 +11 33930 53.631276775636 0 +11 33935 53.631436775636 0 +11 33935 53.631436775636 0 +11 33955 53.657383685955 0 +11 33955 53.657383685955 0 +11 33961 53.657543685955 0 +11 33961 53.657543685955 0 +11 33992 53.74399347871 0 +11 33992 53.74399347871 0 +11 33997 53.74415347871 0 +11 33997 53.74415347871 0 +11 34028 53.924399049701 0 +11 34028 53.924399049701 0 +11 34033 53.924559049701 0 +11 34033 53.924559049701 0 +11 34057 53.931276759068 0 +11 34057 53.931276759068 0 +11 34062 53.931436759068 0 +11 34062 53.931436759068 0 +11 34082 53.957383685955 0 +11 34082 53.957383685955 0 +11 34088 53.957543685955 0 +11 34088 53.957543685955 0 +11 34119 54.04399349386 0 +11 34119 54.04399349386 0 +11 34124 54.04415349386 0 +11 34124 54.04415349386 0 +11 34155 54.224399045616 0 +11 34155 54.224399045616 0 +11 34160 54.224559045616 0 +11 34160 54.224559045616 0 +11 34184 54.231276743362 0 +11 34184 54.231276743362 0 +11 34189 54.231436743362 0 +11 34189 54.231436743362 0 +11 34209 54.257383685955 0 +11 34209 54.257383685955 0 +11 34215 54.257543685955 0 +11 34215 54.257543685955 0 +11 34246 54.343993508088 0 +11 34246 54.343993508088 0 +11 34251 54.344153508088 0 +11 34251 54.344153508088 0 +11 34282 54.524399041209 0 +11 34282 54.524399041209 0 +11 34287 54.524559041209 0 +11 34287 54.524559041209 0 +11 34311 54.531276728362 0 +11 34311 54.531276728362 0 +11 34316 54.531436728362 0 +11 34316 54.531436728362 0 +11 34336 54.557383685955 0 +11 34336 54.557383685955 0 +11 34342 54.557543685955 0 +11 34342 54.557543685955 0 +11 34373 54.643993521993 0 +11 34373 54.643993521993 0 +11 34378 54.644153521993 0 +11 34378 54.644153521993 0 +11 34409 54.824399037501 0 +11 34409 54.824399037501 0 +11 34414 54.824559037501 0 +11 34414 54.824559037501 0 +11 34438 54.831276713317 0 +11 34438 54.831276713317 0 +11 34443 54.831436713317 0 +11 34443 54.831436713317 0 +11 34463 54.857383685955 0 +11 34463 54.857383685955 0 +11 34469 54.857543685955 0 +11 34469 54.857543685955 0 +11 34500 54.943993536727 0 +11 34500 54.943993536727 0 +11 34505 54.944153536727 0 +11 34505 54.944153536727 0 +11 34536 55.124399034691 0 +11 34536 55.124399034691 0 +11 34541 55.124559034691 0 +11 34541 55.124559034691 0 +11 34565 55.131276698742 0 +11 34565 55.131276698742 0 +11 34570 55.131436698742 0 +11 34570 55.131436698742 0 +11 34590 55.157383685955 0 +11 34590 55.157383685955 0 +11 34596 55.157543685955 0 +11 34596 55.157543685955 0 +11 34627 55.243993552196 0 +11 34627 55.243993552196 0 +11 34632 55.244153552196 0 +11 34632 55.244153552196 0 +11 34663 55.424399032731 0 +11 34663 55.424399032731 0 +11 34668 55.424559032731 0 +11 34668 55.424559032731 0 +11 34692 55.431276684798 0 +11 34692 55.431276684798 0 +11 34697 55.431436684798 0 +11 34697 55.431436684798 0 +11 34717 55.457383685955 0 +11 34717 55.457383685955 0 +11 34723 55.457543685955 0 +11 34723 55.457543685955 0 +11 34754 55.543993568263 0 +11 34754 55.543993568263 0 +11 34759 55.544153568263 0 +11 34759 55.544153568263 0 +11 34790 55.72439903167 0 +11 34790 55.72439903167 0 +11 34795 55.72455903167 0 +11 34795 55.72455903167 0 +11 34819 55.731276671503 0 +11 34819 55.731276671503 0 +11 34824 55.731436671503 0 +11 34824 55.731436671503 0 +11 34844 55.757383685955 0 +11 34844 55.757383685955 0 +11 34850 55.757543685955 0 +11 34850 55.757543685955 0 +11 34881 55.843993584895 0 +11 34881 55.843993584895 0 +11 34886 55.844153584895 0 +11 34886 55.844153584895 0 +11 34917 56.02439903159 0 +11 34917 56.02439903159 0 +11 34922 56.02455903159 0 +11 34922 56.02455903159 0 +11 34946 56.031276658808 0 +11 34946 56.031276658808 0 +11 34951 56.031436658808 0 +11 34951 56.031436658808 0 +11 34971 56.057383685955 0 +11 34971 56.057383685955 0 +11 34977 56.057543685955 0 +11 34977 56.057543685955 0 +11 35008 56.143993602134 0 +11 35008 56.143993602134 0 +11 35013 56.144153602134 0 +11 35013 56.144153602134 0 +11 35044 56.324399032473 0 +11 35044 56.324399032473 0 +11 35049 56.324559032473 0 +11 35049 56.324559032473 0 +11 35073 56.331276646771 0 +11 35073 56.331276646771 0 +11 35078 56.331436646771 0 +11 35078 56.331436646771 0 +11 35098 56.357383685955 0 +11 35098 56.357383685955 0 +11 35104 56.357543685955 0 +11 35104 56.357543685955 0 +11 35135 56.443993619822 0 +11 35135 56.443993619822 0 +11 35140 56.444153619822 0 +11 35140 56.444153619822 0 +11 35169 56.624399034306 0 +11 35169 56.624399034306 0 +11 35173 56.624559034306 0 +11 35173 56.624559034306 0 +11 35192 56.631276634911 0 +11 35192 56.631276634911 0 +11 35196 56.631436634911 0 +11 35196 56.631436634911 0 +11 35215 56.657383685955 0 +11 35215 56.657383685955 0 +11 35220 56.657543685955 0 +11 35220 56.657543685955 0 +11 35253 56.924399037177 0 +11 35253 56.924399037177 0 +11 35257 56.924559037177 0 +11 35257 56.924559037177 0 +11 35276 56.931276625815 0 +11 35276 56.931276625815 0 +11 35280 56.931436625815 0 +11 35280 56.931436625815 0 +11 35299 56.957383685955 0 +11 35299 56.957383685955 0 +11 35304 56.957543685955 0 +11 35304 56.957543685955 0 +11 35337 57.224399041135 0 +11 35337 57.224399041135 0 +11 35341 57.224559041135 0 +11 35341 57.224559041135 0 +11 35360 57.231276624504 0 +11 35360 57.231276624504 0 +11 35364 57.231436624504 0 +11 35364 57.231436624504 0 +11 35383 57.257383685955 0 +11 35383 57.257383685955 0 +11 35388 57.257543685955 0 +11 35388 57.257543685955 0 +11 35421 57.524399046156 0 +11 35421 57.524399046156 0 +11 35425 57.524559046156 0 +11 35425 57.524559046156 0 +11 35444 57.531276623773 0 +11 35444 57.531276623773 0 +11 35448 57.531436623773 0 +11 35448 57.531436623773 0 +11 35467 57.557383685955 0 +11 35467 57.557383685955 0 +11 35472 57.557543685955 0 +11 35472 57.557543685955 0 +11 35505 57.824399052067 0 +11 35505 57.824399052067 0 +11 35509 57.824559052067 0 +11 35509 57.824559052067 0 +11 35528 57.83127662344 0 +11 35528 57.83127662344 0 +11 35532 57.83143662344 0 +11 35532 57.83143662344 0 +11 35551 57.857383685955 0 +11 35551 57.857383685955 0 +11 35556 57.857543685955 0 +11 35556 57.857543685955 0 +11 35589 58.12439905849 0 +11 35589 58.12439905849 0 +11 35593 58.12455905849 0 +11 35593 58.12455905849 0 +11 35612 58.131276624201 0 +11 35612 58.131276624201 0 +11 35616 58.131436624201 0 +11 35616 58.131436624201 0 +11 35635 58.157383685955 0 +11 35635 58.157383685955 0 +11 35640 58.157543685955 0 +11 35640 58.157543685955 0 +11 35673 58.424399065464 0 +11 35673 58.424399065464 0 +11 35677 58.424559065464 0 +11 35677 58.424559065464 0 +11 35696 58.431276626037 0 +11 35696 58.431276626037 0 +11 35700 58.431436626037 0 +11 35700 58.431436626037 0 +11 35719 58.457383685955 0 +11 35719 58.457383685955 0 +11 35724 58.457543685955 0 +11 35724 58.457543685955 0 +11 35757 58.72439907295 0 +11 35757 58.72439907295 0 +11 35761 58.72455907295 0 +11 35761 58.72455907295 0 +11 35780 58.731276628991 0 +11 35780 58.731276628991 0 +11 35784 58.731436628991 0 +11 35784 58.731436628991 0 +11 35803 58.757383685955 0 +11 35803 58.757383685955 0 +11 35808 58.757543685955 0 +11 35808 58.757543685955 0 +11 35841 59.024399080905 0 +11 35841 59.024399080905 0 +11 35845 59.024559080905 0 +11 35845 59.024559080905 0 +11 35864 59.031276633114 0 +11 35864 59.031276633114 0 +11 35868 59.031436633114 0 +11 35868 59.031436633114 0 +11 35887 59.057383685955 0 +11 35887 59.057383685955 0 +11 35892 59.057543685955 0 +11 35892 59.057543685955 0 +11 35925 59.324399089353 0 +11 35925 59.324399089353 0 +11 35929 59.324559089353 0 +11 35929 59.324559089353 0 +11 35948 59.331276638423 0 +11 35948 59.331276638423 0 +11 35952 59.331436638423 0 +11 35952 59.331436638423 0 +11 35971 59.357383685955 0 +11 35971 59.357383685955 0 +11 35976 59.357543685955 0 +11 35976 59.357543685955 0 +11 36009 59.624399098247 0 +11 36009 59.624399098247 0 +11 36013 59.624559098247 0 +11 36013 59.624559098247 0 +11 36032 59.631276644886 0 +11 36032 59.631276644886 0 +11 36036 59.631436644886 0 +11 36036 59.631436644886 0 +11 36055 59.657383685955 0 +11 36055 59.657383685955 0 +11 36060 59.657543685955 0 +11 36060 59.657543685955 0 +11 36093 59.924399107553 0 +11 36093 59.924399107553 0 +11 36097 59.924559107553 0 +11 36097 59.924559107553 0 +11 36116 59.931276652523 0 +11 36116 59.931276652523 0 +11 36120 59.931436652523 0 +11 36120 59.931436652523 0 +11 36139 59.957383685955 0 +11 36139 59.957383685955 0 +11 36144 59.957543685955 0 +11 36144 59.957543685955 0 +11 36177 60.224399117246 0 +11 36177 60.224399117246 0 +11 36181 60.224559117246 0 +11 36181 60.224559117246 0 +11 36196 60.231276661221 0 +11 36196 60.231276661221 0 +11 36200 60.231436661221 0 +11 36200 60.231436661221 0 +11 36215 60.257383685955 0 +11 36215 60.257383685955 0 +11 36220 60.257543685955 0 +11 36220 60.257543685955 0 +11 36253 60.524399127334 0 +11 36253 60.524399127334 0 +11 36257 60.524559127334 0 +11 36257 60.524559127334 0 +11 36272 60.53127667062 0 +11 36272 60.53127667062 0 +11 36276 60.53143667062 0 +11 36276 60.53143667062 0 +11 36291 60.557383685955 0 +11 36291 60.557383685955 0 +11 36296 60.557543685955 0 +11 36296 60.557543685955 0 +11 36329 60.824399137773 0 +11 36329 60.824399137773 0 +11 36333 60.824559137773 0 +11 36333 60.824559137773 0 +11 36348 60.831276680584 0 +11 36348 60.831276680584 0 +11 36352 60.831436680584 0 +11 36352 60.831436680584 0 +11 36367 60.857383685955 0 +11 36367 60.857383685955 0 +11 36372 60.857543685955 0 +11 36372 60.857543685955 0 +11 36405 61.124399148508 0 +11 36405 61.124399148508 0 +11 36409 61.124559148508 0 +11 36409 61.124559148508 0 +11 36424 61.131276691084 0 +11 36424 61.131276691084 0 +11 36428 61.131436691084 0 +11 36428 61.131436691084 0 +11 36443 61.157383685955 0 +11 36443 61.157383685955 0 +11 36448 61.157543685955 0 +11 36448 61.157543685955 0 +11 36481 61.424399159611 0 +11 36481 61.424399159611 0 +11 36485 61.424559159611 0 +11 36485 61.424559159611 0 +11 36500 61.431276701991 0 +11 36500 61.431276701991 0 +11 36504 61.431436701991 0 +11 36504 61.431436701991 0 +11 36519 61.457383685955 0 +11 36519 61.457383685955 0 +11 36524 61.457543685955 0 +11 36524 61.457543685955 0 +11 36557 61.724399171016 0 +11 36557 61.724399171016 0 +11 36561 61.724559171016 0 +11 36561 61.724559171016 0 +11 36576 61.731276713345 0 +11 36576 61.731276713345 0 +11 36580 61.731436713345 0 +11 36580 61.731436713345 0 +11 36595 61.757383685955 0 +11 36595 61.757383685955 0 +11 36600 61.757543685955 0 +11 36600 61.757543685955 0 +11 36633 62.024399182109 0 +11 36633 62.024399182109 0 +11 36637 62.024559182109 0 +11 36637 62.024559182109 0 +11 36652 62.031276725245 0 +11 36652 62.031276725245 0 +11 36656 62.031436725245 0 +11 36656 62.031436725245 0 +11 36671 62.057383685955 0 +11 36671 62.057383685955 0 +11 36676 62.057543685955 0 +11 36676 62.057543685955 0 +11 36709 62.324399192148 0 +11 36709 62.324399192148 0 +11 36713 62.324559192148 0 +11 36713 62.324559192148 0 +11 36728 62.3312767377 0 +11 36728 62.3312767377 0 +11 36732 62.3314367377 0 +11 36732 62.3314367377 0 +11 36747 62.357383685955 0 +11 36747 62.357383685955 0 +11 36752 62.357543685955 0 +11 36752 62.357543685955 0 +11 36785 62.624399201089 0 +11 36785 62.624399201089 0 +11 36789 62.624559201089 0 +11 36789 62.624559201089 0 +11 36804 62.631276750535 0 +11 36804 62.631276750535 0 +11 36808 62.631436750535 0 +11 36808 62.631436750535 0 +11 36823 62.657383685955 0 +11 36823 62.657383685955 0 +11 36828 62.657543685955 0 +11 36828 62.657543685955 0 +11 36861 62.924399208912 0 +11 36861 62.924399208912 0 +11 36865 62.924559208912 0 +11 36865 62.924559208912 0 +11 36880 62.931276763684 0 +11 36880 62.931276763684 0 +11 36884 62.931436763684 0 +11 36884 62.931436763684 0 +11 36899 62.957383685955 0 +11 36899 62.957383685955 0 +11 36904 62.957543685955 0 +11 36904 62.957543685955 0 +12 22 2.1 0 +12 22 2.1 0 +12 49 2.614557181566 0 +12 49 2.614557181566 0 +12 52 2.614717181566 0 +12 52 2.614717181566 0 +12 65 2.657383685955 0 +12 65 2.657383685955 0 +12 69 2.657543685955 0 +12 69 2.657543685955 0 +12 94 2.914557182681 0 +12 94 2.914557182681 0 +12 97 2.914717182681 0 +12 97 2.914717182681 0 +12 110 2.957383685955 0 +12 110 2.957383685955 0 +12 114 2.957543685955 0 +12 114 2.957543685955 0 +12 141 3.214557183861 0 +12 141 3.214557183861 0 +12 145 3.214717183861 0 +12 145 3.214717183861 0 +12 163 3.257383685955 0 +12 163 3.257383685955 0 +12 168 3.257543685955 0 +12 168 3.257543685955 0 +12 201 3.514557185136 0 +12 201 3.514557185136 0 +12 205 3.514717185136 0 +12 205 3.514717185136 0 +12 226 3.53127690138 0 +12 226 3.53127690138 0 +12 234 3.53143690138 0 +12 234 3.53143690138 0 +12 247 3.557383685955 0 +12 247 3.557383685955 0 +12 252 3.557543685955 0 +12 252 3.557543685955 0 +12 285 3.814557186493 0 +12 285 3.814557186493 0 +12 289 3.814717186493 0 +12 289 3.814717186493 0 +12 310 3.831276901063 0 +12 310 3.831276901063 0 +12 318 3.831436901063 0 +12 318 3.831436901063 0 +12 331 3.857383685955 0 +12 331 3.857383685955 0 +12 336 3.857543685955 0 +12 336 3.857543685955 0 +12 370 4.114557187941 0 +12 370 4.114557187941 0 +12 375 4.114717187941 0 +12 375 4.114717187941 0 +12 398 4.131276900741 0 +12 398 4.131276900741 0 +12 411 4.131436900741 0 +12 411 4.131436900741 0 +12 424 4.157383685955 0 +12 424 4.157383685955 0 +12 430 4.157543685955 0 +12 430 4.157543685955 0 +12 467 4.414557189528 0 +12 467 4.414557189528 0 +12 472 4.414717189528 0 +12 472 4.414717189528 0 +12 495 4.431276900411 0 +12 495 4.431276900411 0 +12 508 4.431436900411 0 +12 508 4.431436900411 0 +12 521 4.457383685955 0 +12 521 4.457383685955 0 +12 527 4.457543685955 0 +12 527 4.457543685955 0 +12 586 4.714557191249 0 +12 586 4.714557191249 0 +12 591 4.714717191249 0 +12 591 4.714717191249 0 +12 614 4.731276900107 0 +12 614 4.731276900107 0 +12 627 4.731436900107 0 +12 627 4.731436900107 0 +12 640 4.757383685955 0 +12 640 4.757383685955 0 +12 646 4.757543685955 0 +12 646 4.757543685955 0 +12 705 5.014557193103 0 +12 705 5.014557193103 0 +12 710 5.014717193103 0 +12 710 5.014717193103 0 +12 733 5.031276899786 0 +12 733 5.031276899786 0 +12 746 5.031436899786 0 +12 746 5.031436899786 0 +12 759 5.057383685955 0 +12 759 5.057383685955 0 +12 765 5.057543685955 0 +12 765 5.057543685955 0 +12 833 5.314557195171 0 +12 833 5.314557195171 0 +12 839 5.314717195171 0 +12 839 5.314717195171 0 +12 863 5.331276899476 0 +12 863 5.331276899476 0 +12 877 5.331436899476 0 +12 877 5.331436899476 0 +12 891 5.357383685955 0 +12 891 5.357383685955 0 +12 898 5.357543685955 0 +12 898 5.357543685955 0 +12 967 5.614557197442 0 +12 967 5.614557197442 0 +12 973 5.614717197442 0 +12 973 5.614717197442 0 +12 997 5.631276899171 0 +12 997 5.631276899171 0 +12 1011 5.631436899171 0 +12 1011 5.631436899171 0 +12 1025 5.657383685955 0 +12 1025 5.657383685955 0 +12 1032 5.657543685955 0 +12 1032 5.657543685955 0 +12 1125 5.914557199962 0 +12 1125 5.914557199962 0 +12 1131 5.914717199962 0 +12 1131 5.914717199962 0 +12 1155 5.931276898866 0 +12 1155 5.931276898866 0 +12 1169 5.931436898866 0 +12 1169 5.931436898866 0 +12 1183 5.957383685955 0 +12 1183 5.957383685955 0 +12 1190 5.957543685955 0 +12 1190 5.957543685955 0 +12 1286 6.214557202762 0 +12 1286 6.214557202762 0 +12 1297 6.214717202762 0 +12 1297 6.214717202762 0 +12 1322 6.231276898564 0 +12 1322 6.231276898564 0 +12 1341 6.231436898564 0 +12 1341 6.231436898564 0 +12 1355 6.257383685955 0 +12 1355 6.257383685955 0 +12 1363 6.257543685955 0 +12 1363 6.257543685955 0 +12 1469 6.514557205852 0 +12 1469 6.514557205852 0 +12 1480 6.514717205852 0 +12 1480 6.514717205852 0 +12 1503 6.524399075657 0 +12 1503 6.524399075657 0 +12 1518 6.524559075657 0 +12 1518 6.524559075657 0 +12 1538 6.531276898265 0 +12 1538 6.531276898265 0 +12 1557 6.531436898265 0 +12 1557 6.531436898265 0 +12 1572 6.557383685955 0 +12 1572 6.557383685955 0 +12 1580 6.557543685955 0 +12 1580 6.557543685955 0 +12 1686 6.814557209291 0 +12 1686 6.814557209291 0 +12 1697 6.814717209291 0 +12 1697 6.814717209291 0 +12 1720 6.82439907586 0 +12 1720 6.82439907586 0 +12 1735 6.82455907586 0 +12 1735 6.82455907586 0 +12 1755 6.831276897959 0 +12 1755 6.831276897959 0 +12 1774 6.831436897959 0 +12 1774 6.831436897959 0 +12 1789 6.857383685955 0 +12 1789 6.857383685955 0 +12 1797 6.857543685955 0 +12 1797 6.857543685955 0 +12 1903 7.1145572131 0 +12 1903 7.1145572131 0 +12 1914 7.1147172131 0 +12 1914 7.1147172131 0 +12 1937 7.124399076049 0 +12 1937 7.124399076049 0 +12 1952 7.124559076049 0 +12 1952 7.124559076049 0 +12 1972 7.131276897653 0 +12 1972 7.131276897653 0 +12 1991 7.131436897653 0 +12 1991 7.131436897653 0 +12 2006 7.157383685955 0 +12 2006 7.157383685955 0 +12 2014 7.157543685955 0 +12 2014 7.157543685955 0 +12 2120 7.414557217271 0 +12 2120 7.414557217271 0 +12 2131 7.414717217271 0 +12 2131 7.414717217271 0 +12 2154 7.424399076251 0 +12 2154 7.424399076251 0 +12 2169 7.424559076251 0 +12 2169 7.424559076251 0 +12 2189 7.431276897348 0 +12 2189 7.431276897348 0 +12 2208 7.431436897348 0 +12 2208 7.431436897348 0 +12 2223 7.457383685955 0 +12 2223 7.457383685955 0 +12 2231 7.457543685955 0 +12 2231 7.457543685955 0 +12 2337 7.714557221838 0 +12 2337 7.714557221838 0 +12 2348 7.714717221838 0 +12 2348 7.714717221838 0 +12 2371 7.724399076456 0 +12 2371 7.724399076456 0 +12 2386 7.724559076456 0 +12 2386 7.724559076456 0 +12 2406 7.73127689705 0 +12 2406 7.73127689705 0 +12 2425 7.73143689705 0 +12 2425 7.73143689705 0 +12 2440 7.757383685955 0 +12 2440 7.757383685955 0 +12 2448 7.757543685955 0 +12 2448 7.757543685955 0 +12 2554 8.014557226859 0 +12 2554 8.014557226859 0 +12 2565 8.014717226859 0 +12 2565 8.014717226859 0 +12 2588 8.024399076668 0 +12 2588 8.024399076668 0 +12 2603 8.024559076668 0 +12 2603 8.024559076668 0 +12 2623 8.031276896762 0 +12 2623 8.031276896762 0 +12 2642 8.031436896762 0 +12 2642 8.031436896762 0 +12 2657 8.057383685955 0 +12 2657 8.057383685955 0 +12 2665 8.057543685955 0 +12 2665 8.057543685955 0 +12 2771 8.314557232422 0 +12 2771 8.314557232422 0 +12 2782 8.314717232422 0 +12 2782 8.314717232422 0 +12 2805 8.324399076881 0 +12 2805 8.324399076881 0 +12 2820 8.324559076881 0 +12 2820 8.324559076881 0 +12 2844 8.331276896481 0 +12 2844 8.331276896481 0 +12 2863 8.331436896481 0 +12 2863 8.331436896481 0 +12 2878 8.357383685955 0 +12 2878 8.357383685955 0 +12 2886 8.357543685955 0 +12 2886 8.357543685955 0 +12 2996 8.614557238496 0 +12 2996 8.614557238496 0 +12 3007 8.614717238496 0 +12 3007 8.614717238496 0 +12 3030 8.6243990771 0 +12 3030 8.6243990771 0 +12 3045 8.6245590771 0 +12 3045 8.6245590771 0 +12 3069 8.63127689619 0 +12 3069 8.63127689619 0 +12 3088 8.63143689619 0 +12 3088 8.63143689619 0 +12 3103 8.657383685955 0 +12 3103 8.657383685955 0 +12 3111 8.657543685955 0 +12 3111 8.657543685955 0 +12 3222 8.914557245124 0 +12 3222 8.914557245124 0 +12 3237 8.914717245124 0 +12 3237 8.914717245124 0 +12 3255 8.924399077324 0 +12 3255 8.924399077324 0 +12 3270 8.924559077324 0 +12 3270 8.924559077324 0 +12 3294 8.931276895893 0 +12 3294 8.931276895893 0 +12 3313 8.931436895893 0 +12 3313 8.931436895893 0 +12 3328 8.957383685955 0 +12 3328 8.957383685955 0 +12 3336 8.957543685955 0 +12 3336 8.957543685955 0 +12 3447 9.214557252325 0 +12 3447 9.214557252325 0 +12 3462 9.214717252325 0 +12 3462 9.214717252325 0 +12 3480 9.224399077547 0 +12 3480 9.224399077547 0 +12 3495 9.224559077547 0 +12 3495 9.224559077547 0 +12 3519 9.231276895621 0 +12 3519 9.231276895621 0 +12 3538 9.231436895621 0 +12 3538 9.231436895621 0 +12 3553 9.257383685955 0 +12 3553 9.257383685955 0 +12 3561 9.257543685955 0 +12 3561 9.257543685955 0 +12 3672 9.514557260085 0 +12 3672 9.514557260085 0 +12 3687 9.514717260085 0 +12 3687 9.514717260085 0 +12 3705 9.52439907778 0 +12 3705 9.52439907778 0 +12 3720 9.52455907778 0 +12 3720 9.52455907778 0 +12 3744 9.531276895347 0 +12 3744 9.531276895347 0 +12 3763 9.531436895347 0 +12 3763 9.531436895347 0 +12 3778 9.557383685955 0 +12 3778 9.557383685955 0 +12 3786 9.557543685955 0 +12 3786 9.557543685955 0 +12 3897 9.814557268307 0 +12 3897 9.814557268307 0 +12 3912 9.814717268307 0 +12 3912 9.814717268307 0 +12 3930 9.824399078019 0 +12 3930 9.824399078019 0 +12 3945 9.824559078019 0 +12 3945 9.824559078019 0 +12 3969 9.831276895075 0 +12 3969 9.831276895075 0 +12 3988 9.831436895075 0 +12 3988 9.831436895075 0 +12 4003 9.857383685955 0 +12 4003 9.857383685955 0 +12 4011 9.857543685955 0 +12 4011 9.857543685955 0 +12 4122 10.114557276848 0 +12 4122 10.114557276848 0 +12 4137 10.114717276848 0 +12 4137 10.114717276848 0 +12 4155 10.124399078264 0 +12 4155 10.124399078264 0 +12 4170 10.124559078264 0 +12 4170 10.124559078264 0 +12 4194 10.131276894808 0 +12 4194 10.131276894808 0 +12 4213 10.131436894808 0 +12 4213 10.131436894808 0 +12 4228 10.157383685955 0 +12 4228 10.157383685955 0 +12 4236 10.157543685955 0 +12 4236 10.157543685955 0 +12 4347 10.414557285658 0 +12 4347 10.414557285658 0 +12 4362 10.414717285658 0 +12 4362 10.414717285658 0 +12 4380 10.4243990785 0 +12 4380 10.4243990785 0 +12 4395 10.4245590785 0 +12 4395 10.4245590785 0 +12 4419 10.431276894532 0 +12 4419 10.431276894532 0 +12 4438 10.431436894532 0 +12 4438 10.431436894532 0 +12 4453 10.457383685955 0 +12 4453 10.457383685955 0 +12 4461 10.457543685955 0 +12 4461 10.457543685955 0 +12 4576 10.714557294754 0 +12 4576 10.714557294754 0 +12 4591 10.714717294754 0 +12 4591 10.714717294754 0 +12 4613 10.724399078727 0 +12 4613 10.724399078727 0 +12 4628 10.724559078727 0 +12 4628 10.724559078727 0 +12 4652 10.731276894259 0 +12 4652 10.731276894259 0 +12 4671 10.731436894259 0 +12 4671 10.731436894259 0 +12 4686 10.757383685955 0 +12 4686 10.757383685955 0 +12 4694 10.757543685955 0 +12 4694 10.757543685955 0 +12 4809 11.014557304135 0 +12 4809 11.014557304135 0 +12 4824 11.014717304135 0 +12 4824 11.014717304135 0 +12 4846 11.024399078987 0 +12 4846 11.024399078987 0 +12 4861 11.024559078987 0 +12 4861 11.024559078987 0 +12 4885 11.031276893999 0 +12 4885 11.031276893999 0 +12 4904 11.031436893999 0 +12 4904 11.031436893999 0 +12 4919 11.057383685955 0 +12 4919 11.057383685955 0 +12 4927 11.057543685955 0 +12 4927 11.057543685955 0 +12 5042 11.314557313736 0 +12 5042 11.314557313736 0 +12 5057 11.314717313736 0 +12 5057 11.314717313736 0 +12 5079 11.324399079221 0 +12 5079 11.324399079221 0 +12 5094 11.324559079221 0 +12 5094 11.324559079221 0 +12 5118 11.331276893733 0 +12 5118 11.331276893733 0 +12 5137 11.331436893733 0 +12 5137 11.331436893733 0 +12 5152 11.357383685955 0 +12 5152 11.357383685955 0 +12 5160 11.357543685955 0 +12 5160 11.357543685955 0 +12 5275 11.614557323591 0 +12 5275 11.614557323591 0 +12 5290 11.614717323591 0 +12 5290 11.614717323591 0 +12 5312 11.624399079471 0 +12 5312 11.624399079471 0 +12 5327 11.624559079471 0 +12 5327 11.624559079471 0 +12 5351 11.631276893479 0 +12 5351 11.631276893479 0 +12 5370 11.631436893479 0 +12 5370 11.631436893479 0 +12 5389 11.657383685955 0 +12 5389 11.657383685955 0 +12 5397 11.657543685955 0 +12 5397 11.657543685955 0 +12 5516 11.914557333695 0 +12 5516 11.914557333695 0 +12 5531 11.914717333695 0 +12 5531 11.914717333695 0 +12 5553 11.92439907973 0 +12 5553 11.92439907973 0 +12 5568 11.92455907973 0 +12 5568 11.92455907973 0 +12 5592 11.931276893219 0 +12 5592 11.931276893219 0 +12 5611 11.931436893219 0 +12 5611 11.931436893219 0 +12 5630 11.957383685955 0 +12 5630 11.957383685955 0 +12 5638 11.957543685955 0 +12 5638 11.957543685955 0 +12 5757 12.214557344013 0 +12 5757 12.214557344013 0 +12 5772 12.214717344013 0 +12 5772 12.214717344013 0 +12 5794 12.22439907998 0 +12 5794 12.22439907998 0 +12 5809 12.22455907998 0 +12 5809 12.22455907998 0 +12 5833 12.231276892968 0 +12 5833 12.231276892968 0 +12 5852 12.231436892968 0 +12 5852 12.231436892968 0 +12 5871 12.257383685955 0 +12 5871 12.257383685955 0 +12 5879 12.257543685955 0 +12 5879 12.257543685955 0 +12 5998 12.514557354529 0 +12 5998 12.514557354529 0 +12 6013 12.514717354529 0 +12 6013 12.514717354529 0 +12 6035 12.524399080256 0 +12 6035 12.524399080256 0 +12 6050 12.524559080256 0 +12 6050 12.524559080256 0 +12 6074 12.531276892721 0 +12 6074 12.531276892721 0 +12 6093 12.531436892721 0 +12 6093 12.531436892721 0 +12 6112 12.557383685955 0 +12 6112 12.557383685955 0 +12 6120 12.557543685955 0 +12 6120 12.557543685955 0 +12 6239 12.814557365221 0 +12 6239 12.814557365221 0 +12 6254 12.814717365221 0 +12 6254 12.814717365221 0 +12 6276 12.82439908052 0 +12 6276 12.82439908052 0 +12 6291 12.82455908052 0 +12 6291 12.82455908052 0 +12 6315 12.831276892469 0 +12 6315 12.831276892469 0 +12 6334 12.831436892469 0 +12 6334 12.831436892469 0 +12 6353 12.857383685955 0 +12 6353 12.857383685955 0 +12 6361 12.857543685955 0 +12 6361 12.857543685955 0 +12 6480 13.114557376122 0 +12 6480 13.114557376122 0 +12 6495 13.114717376122 0 +12 6495 13.114717376122 0 +12 6517 13.124399080797 0 +12 6517 13.124399080797 0 +12 6532 13.124559080797 0 +12 6532 13.124559080797 0 +12 6556 13.131276892214 0 +12 6556 13.131276892214 0 +12 6575 13.131436892214 0 +12 6575 13.131436892214 0 +12 6594 13.157383685955 0 +12 6594 13.157383685955 0 +12 6602 13.157543685955 0 +12 6602 13.157543685955 0 +12 6721 13.414557387173 0 +12 6721 13.414557387173 0 +12 6736 13.414717387173 0 +12 6736 13.414717387173 0 +12 6758 13.424399081079 0 +12 6758 13.424399081079 0 +12 6773 13.424559081079 0 +12 6773 13.424559081079 0 +12 6797 13.431276891978 0 +12 6797 13.431276891978 0 +12 6816 13.431436891978 0 +12 6816 13.431436891978 0 +12 6835 13.457383685955 0 +12 6835 13.457383685955 0 +12 6843 13.457543685955 0 +12 6843 13.457543685955 0 +12 6962 13.714557398373 0 +12 6962 13.714557398373 0 +12 6977 13.714717398373 0 +12 6977 13.714717398373 0 +12 6999 13.724399081347 0 +12 6999 13.724399081347 0 +12 7014 13.724559081347 0 +12 7014 13.724559081347 0 +12 7038 13.731276891728 0 +12 7038 13.731276891728 0 +12 7057 13.731436891728 0 +12 7057 13.731436891728 0 +12 7076 13.757383685955 0 +12 7076 13.757383685955 0 +12 7084 13.757543685955 0 +12 7084 13.757543685955 0 +12 7204 14.014557409766 0 +12 7204 14.014557409766 0 +12 7223 14.014717409766 0 +12 7223 14.014717409766 0 +12 7240 14.024399081623 0 +12 7240 14.024399081623 0 +12 7255 14.024559081623 0 +12 7255 14.024559081623 0 +12 7279 14.03127689148 0 +12 7279 14.03127689148 0 +12 7298 14.03143689148 0 +12 7298 14.03143689148 0 +12 7317 14.057383685955 0 +12 7317 14.057383685955 0 +12 7325 14.057543685955 0 +12 7325 14.057543685955 0 +12 7445 14.314557421278 0 +12 7445 14.314557421278 0 +12 7464 14.314717421278 0 +12 7464 14.314717421278 0 +12 7481 14.324399081908 0 +12 7481 14.324399081908 0 +12 7496 14.324559081908 0 +12 7496 14.324559081908 0 +12 7520 14.33127689125 0 +12 7520 14.33127689125 0 +12 7539 14.33143689125 0 +12 7539 14.33143689125 0 +12 7558 14.357383685955 0 +12 7558 14.357383685955 0 +12 7566 14.357543685955 0 +12 7566 14.357543685955 0 +12 7686 14.614557432907 0 +12 7686 14.614557432907 0 +12 7705 14.614717432907 0 +12 7705 14.614717432907 0 +12 7722 14.624399082205 0 +12 7722 14.624399082205 0 +12 7737 14.624559082205 0 +12 7737 14.624559082205 0 +12 7761 14.631276891011 0 +12 7761 14.631276891011 0 +12 7780 14.631436891011 0 +12 7780 14.631436891011 0 +12 7799 14.657383685955 0 +12 7799 14.657383685955 0 +12 7807 14.657543685955 0 +12 7807 14.657543685955 0 +12 7927 14.914557444663 0 +12 7927 14.914557444663 0 +12 7946 14.914717444663 0 +12 7946 14.914717444663 0 +12 7963 14.924399082499 0 +12 7963 14.924399082499 0 +12 7978 14.924559082499 0 +12 7978 14.924559082499 0 +12 8002 14.93127689078 0 +12 8002 14.93127689078 0 +12 8021 14.93143689078 0 +12 8021 14.93143689078 0 +12 8040 14.957383685955 0 +12 8040 14.957383685955 0 +12 8048 14.957543685955 0 +12 8048 14.957543685955 0 +12 8168 15.214557456539 0 +12 8168 15.214557456539 0 +12 8187 15.214717456539 0 +12 8187 15.214717456539 0 +12 8204 15.224399082794 0 +12 8204 15.224399082794 0 +12 8219 15.224559082794 0 +12 8219 15.224559082794 0 +12 8243 15.231276890537 0 +12 8243 15.231276890537 0 +12 8262 15.231436890537 0 +12 8262 15.231436890537 0 +12 8281 15.257383685955 0 +12 8281 15.257383685955 0 +12 8289 15.257543685955 0 +12 8289 15.257543685955 0 +12 8409 15.514557468564 0 +12 8409 15.514557468564 0 +12 8428 15.514717468564 0 +12 8428 15.514717468564 0 +12 8445 15.524399083099 0 +12 8445 15.524399083099 0 +12 8460 15.524559083099 0 +12 8460 15.524559083099 0 +12 8485 15.531276890317 0 +12 8485 15.531276890317 0 +12 8508 15.531436890317 0 +12 8508 15.531436890317 0 +12 8522 15.557383685955 0 +12 8522 15.557383685955 0 +12 8530 15.557543685955 0 +12 8530 15.557543685955 0 +12 8650 15.814557480657 0 +12 8650 15.814557480657 0 +12 8669 15.814717480657 0 +12 8669 15.814717480657 0 +12 8686 15.824399083408 0 +12 8686 15.824399083408 0 +12 8701 15.824559083408 0 +12 8701 15.824559083408 0 +12 8726 15.831276890112 0 +12 8726 15.831276890112 0 +12 8749 15.831436890112 0 +12 8749 15.831436890112 0 +12 8763 15.857383685955 0 +12 8763 15.857383685955 0 +12 8771 15.857543685955 0 +12 8771 15.857543685955 0 +12 8891 16.114557492863 0 +12 8891 16.114557492863 0 +12 8910 16.114717492863 0 +12 8910 16.114717492863 0 +12 8931 16.124399083716 0 +12 8931 16.124399083716 0 +12 8946 16.124559083716 0 +12 8946 16.124559083716 0 +12 8971 16.131276889879 0 +12 8971 16.131276889879 0 +12 8994 16.131436889879 0 +12 8994 16.131436889879 0 +12 9008 16.157383685955 0 +12 9008 16.157383685955 0 +12 9016 16.157543685955 0 +12 9016 16.157543685955 0 +12 9140 16.414557505188 0 +12 9140 16.414557505188 0 +12 9159 16.414717505188 0 +12 9159 16.414717505188 0 +12 9180 16.424399084041 0 +12 9180 16.424399084041 0 +12 9195 16.424559084041 0 +12 9195 16.424559084041 0 +12 9220 16.431276889657 0 +12 9220 16.431276889657 0 +12 9243 16.431436889657 0 +12 9243 16.431436889657 0 +12 9257 16.457383685955 0 +12 9257 16.457383685955 0 +12 9265 16.457543685955 0 +12 9265 16.457543685955 0 +12 9390 16.714557517603 0 +12 9390 16.714557517603 0 +12 9413 16.714717517603 0 +12 9413 16.714717517603 0 +12 9429 16.724399084357 0 +12 9429 16.724399084357 0 +12 9444 16.724559084357 0 +12 9444 16.724559084357 0 +12 9469 16.731276889444 0 +12 9469 16.731276889444 0 +12 9492 16.731436889444 0 +12 9492 16.731436889444 0 +12 9506 16.757383685955 0 +12 9506 16.757383685955 0 +12 9514 16.757543685955 0 +12 9514 16.757543685955 0 +12 9639 17.014557530081 0 +12 9639 17.014557530081 0 +12 9662 17.014717530081 0 +12 9662 17.014717530081 0 +12 9678 17.024399084668 0 +12 9678 17.024399084668 0 +12 9693 17.024559084668 0 +12 9693 17.024559084668 0 +12 9718 17.031276889227 0 +12 9718 17.031276889227 0 +12 9741 17.031436889227 0 +12 9741 17.031436889227 0 +12 9755 17.057383685955 0 +12 9755 17.057383685955 0 +12 9763 17.057543685955 0 +12 9763 17.057543685955 0 +12 9888 17.314557542674 0 +12 9888 17.314557542674 0 +12 9911 17.314717542674 0 +12 9911 17.314717542674 0 +12 9927 17.324399084984 0 +12 9927 17.324399084984 0 +12 9942 17.324559084984 0 +12 9942 17.324559084984 0 +12 9967 17.331276889013 0 +12 9967 17.331276889013 0 +12 9990 17.331436889013 0 +12 9990 17.331436889013 0 +12 10004 17.357383685955 0 +12 10004 17.357383685955 0 +12 10012 17.357543685955 0 +12 10012 17.357543685955 0 +12 10137 17.614557555309 0 +12 10137 17.614557555309 0 +12 10160 17.614717555309 0 +12 10160 17.614717555309 0 +12 10176 17.624399085289 0 +12 10176 17.624399085289 0 +12 10191 17.624559085289 0 +12 10191 17.624559085289 0 +12 10216 17.631276888786 0 +12 10216 17.631276888786 0 +12 10239 17.631436888786 0 +12 10239 17.631436888786 0 +12 10253 17.657383685955 0 +12 10253 17.657383685955 0 +12 10261 17.657543685955 0 +12 10261 17.657543685955 0 +12 10386 17.914557568022 0 +12 10386 17.914557568022 0 +12 10409 17.914717568022 0 +12 10409 17.914717568022 0 +12 10421 17.924399085606 0 +12 10421 17.924399085606 0 +12 10436 17.924559085606 0 +12 10436 17.924559085606 0 +12 10461 17.931276888582 0 +12 10461 17.931276888582 0 +12 10484 17.931436888582 0 +12 10484 17.931436888582 0 +12 10498 17.957383685955 0 +12 10498 17.957383685955 0 +12 10506 17.957543685955 0 +12 10506 17.957543685955 0 +12 10662 18.224399085935 0 +12 10662 18.224399085935 0 +12 10677 18.224559085935 0 +12 10677 18.224559085935 0 +12 10698 18.231276888386 0 +12 10698 18.231276888386 0 +12 10721 18.231436888386 0 +12 10721 18.231436888386 0 +12 10735 18.257383685955 0 +12 10735 18.257383685955 0 +12 10743 18.257543685955 0 +12 10743 18.257543685955 0 +12 10895 18.524399086265 0 +12 10895 18.524399086265 0 +12 10910 18.524559086265 0 +12 10910 18.524559086265 0 +12 10931 18.531276888177 0 +12 10931 18.531276888177 0 +12 10954 18.531436888177 0 +12 10954 18.531436888177 0 +12 10968 18.557383685955 0 +12 10968 18.557383685955 0 +12 10976 18.557543685955 0 +12 10976 18.557543685955 0 +12 11128 18.824399086608 0 +12 11128 18.824399086608 0 +12 11143 18.824559086608 0 +12 11143 18.824559086608 0 +12 11164 18.831276887981 0 +12 11164 18.831276887981 0 +12 11187 18.831436887981 0 +12 11187 18.831436887981 0 +12 11201 18.857383685955 0 +12 11201 18.857383685955 0 +12 11209 18.857543685955 0 +12 11209 18.857543685955 0 +12 11361 19.124399086967 0 +12 11361 19.124399086967 0 +12 11376 19.124559086967 0 +12 11376 19.124559086967 0 +12 11397 19.131276887793 0 +12 11397 19.131276887793 0 +12 11420 19.131436887793 0 +12 11420 19.131436887793 0 +12 11434 19.157383685955 0 +12 11434 19.157383685955 0 +12 11442 19.157543685955 0 +12 11442 19.157543685955 0 +12 11594 19.424399087317 0 +12 11594 19.424399087317 0 +12 11609 19.424559087317 0 +12 11609 19.424559087317 0 +12 11630 19.43127688759 0 +12 11630 19.43127688759 0 +12 11653 19.43143688759 0 +12 11653 19.43143688759 0 +12 11667 19.457383685955 0 +12 11667 19.457383685955 0 +12 11675 19.457543685955 0 +12 11675 19.457543685955 0 +12 11827 19.724399087464 0 +12 11827 19.724399087464 0 +12 11842 19.724559087464 0 +12 11842 19.724559087464 0 +12 11863 19.731276887029 0 +12 11863 19.731276887029 0 +12 11886 19.731436887029 0 +12 11886 19.731436887029 0 +12 11900 19.757383685955 0 +12 11900 19.757383685955 0 +12 11908 19.757543685955 0 +12 11908 19.757543685955 0 +12 12025 20.014557564104 0 +12 12025 20.014557564104 0 +12 12048 20.014717564104 0 +12 12048 20.014717564104 0 +12 12064 20.0243990873 0 +12 12064 20.0243990873 0 +12 12079 20.0245590873 0 +12 12079 20.0245590873 0 +12 12100 20.03127688588 0 +12 12100 20.03127688588 0 +12 12123 20.03143688588 0 +12 12123 20.03143688588 0 +12 12137 20.057383685955 0 +12 12137 20.057383685955 0 +12 12145 20.057543685955 0 +12 12145 20.057543685955 0 +12 12266 20.314557557995 0 +12 12266 20.314557557995 0 +12 12289 20.314717557995 0 +12 12289 20.314717557995 0 +12 12305 20.324399087241 0 +12 12305 20.324399087241 0 +12 12320 20.324559087241 0 +12 12320 20.324559087241 0 +12 12341 20.33127688455 0 +12 12341 20.33127688455 0 +12 12364 20.33143688455 0 +12 12364 20.33143688455 0 +12 12378 20.357383685955 0 +12 12378 20.357383685955 0 +12 12386 20.357543685955 0 +12 12386 20.357543685955 0 +12 12507 20.614557552362 0 +12 12507 20.614557552362 0 +12 12530 20.614717552362 0 +12 12530 20.614717552362 0 +12 12546 20.624399087446 0 +12 12546 20.624399087446 0 +12 12561 20.624559087446 0 +12 12561 20.624559087446 0 +12 12582 20.631276883138 0 +12 12582 20.631276883138 0 +12 12605 20.631436883138 0 +12 12605 20.631436883138 0 +12 12619 20.657383685955 0 +12 12619 20.657383685955 0 +12 12627 20.657543685955 0 +12 12627 20.657543685955 0 +12 12748 20.914557547102 0 +12 12748 20.914557547102 0 +12 12771 20.914717547102 0 +12 12771 20.914717547102 0 +12 12787 20.924399087797 0 +12 12787 20.924399087797 0 +12 12802 20.924559087797 0 +12 12802 20.924559087797 0 +12 12823 20.931276881619 0 +12 12823 20.931276881619 0 +12 12846 20.931436881619 0 +12 12846 20.931436881619 0 +12 12860 20.957383685955 0 +12 12860 20.957383685955 0 +12 12868 20.957543685955 0 +12 12868 20.957543685955 0 +12 12989 21.214557542284 0 +12 12989 21.214557542284 0 +12 13012 21.214717542284 0 +12 13012 21.214717542284 0 +12 13028 21.224399088467 0 +12 13028 21.224399088467 0 +12 13043 21.224559088467 0 +12 13043 21.224559088467 0 +12 13064 21.231276880094 0 +12 13064 21.231276880094 0 +12 13087 21.231436880094 0 +12 13087 21.231436880094 0 +12 13101 21.257383685955 0 +12 13101 21.257383685955 0 +12 13109 21.257543685955 0 +12 13109 21.257543685955 0 +12 13230 21.514557537844 0 +12 13230 21.514557537844 0 +12 13253 21.514717537844 0 +12 13253 21.514717537844 0 +12 13269 21.524399089457 0 +12 13269 21.524399089457 0 +12 13284 21.524559089457 0 +12 13284 21.524559089457 0 +12 13305 21.531276878505 0 +12 13305 21.531276878505 0 +12 13328 21.531436878505 0 +12 13328 21.531436878505 0 +12 13342 21.557383685955 0 +12 13342 21.557383685955 0 +12 13350 21.557543685955 0 +12 13350 21.557543685955 0 +12 13471 21.814557533746 0 +12 13471 21.814557533746 0 +12 13494 21.814717533746 0 +12 13494 21.814717533746 0 +12 13510 21.824399090731 0 +12 13510 21.824399090731 0 +12 13525 21.824559090731 0 +12 13525 21.824559090731 0 +12 13546 21.831276876822 0 +12 13546 21.831276876822 0 +12 13569 21.831436876822 0 +12 13569 21.831436876822 0 +12 13583 21.857383685955 0 +12 13583 21.857383685955 0 +12 13591 21.857543685955 0 +12 13591 21.857543685955 0 +12 13712 22.114557529963 0 +12 13712 22.114557529963 0 +12 13735 22.114717529963 0 +12 13735 22.114717529963 0 +12 13751 22.124399092291 0 +12 13751 22.124399092291 0 +12 13766 22.124559092291 0 +12 13766 22.124559092291 0 +12 13787 22.131276875046 0 +12 13787 22.131276875046 0 +12 13810 22.131436875046 0 +12 13810 22.131436875046 0 +12 13824 22.157383685955 0 +12 13824 22.157383685955 0 +12 13832 22.157543685955 0 +12 13832 22.157543685955 0 +12 13953 22.414557526479 0 +12 13953 22.414557526479 0 +12 13976 22.414717526479 0 +12 13976 22.414717526479 0 +12 13992 22.424399094215 0 +12 13992 22.424399094215 0 +12 14007 22.424559094215 0 +12 14007 22.424559094215 0 +12 14028 22.431276873268 0 +12 14028 22.431276873268 0 +12 14051 22.431436873268 0 +12 14051 22.431436873268 0 +12 14065 22.457383685955 0 +12 14065 22.457383685955 0 +12 14073 22.457543685955 0 +12 14073 22.457543685955 0 +12 14194 22.714557523315 0 +12 14194 22.714557523315 0 +12 14217 22.714717523315 0 +12 14217 22.714717523315 0 +12 14233 22.724399096641 0 +12 14233 22.724399096641 0 +12 14248 22.724559096641 0 +12 14248 22.724559096641 0 +12 14269 22.731276871582 0 +12 14269 22.731276871582 0 +12 14292 22.731436871582 0 +12 14292 22.731436871582 0 +12 14306 22.757383685955 0 +12 14306 22.757383685955 0 +12 14314 22.757543685955 0 +12 14314 22.757543685955 0 +12 14435 23.014557520464 0 +12 14435 23.014557520464 0 +12 14458 23.014717520464 0 +12 14458 23.014717520464 0 +12 14473 23.024399099585 0 +12 14473 23.024399099585 0 +12 14484 23.024559099585 0 +12 14484 23.024559099585 0 +12 14510 23.031276870013 0 +12 14510 23.031276870013 0 +12 14533 23.031436870013 0 +12 14533 23.031436870013 0 +12 14547 23.057383685955 0 +12 14547 23.057383685955 0 +12 14555 23.057543685955 0 +12 14555 23.057543685955 0 +12 14676 23.314557517914 0 +12 14676 23.314557517914 0 +12 14699 23.314717517914 0 +12 14699 23.314717517914 0 +12 14714 23.324399103103 0 +12 14714 23.324399103103 0 +12 14725 23.324559103103 0 +12 14725 23.324559103103 0 +12 14751 23.331276868542 0 +12 14751 23.331276868542 0 +12 14774 23.331436868542 0 +12 14774 23.331436868542 0 +12 14788 23.357383685955 0 +12 14788 23.357383685955 0 +12 14796 23.357543685955 0 +12 14796 23.357543685955 0 +12 14917 23.614557515636 0 +12 14917 23.614557515636 0 +12 14940 23.614717515636 0 +12 14940 23.614717515636 0 +12 14955 23.624399107238 0 +12 14955 23.624399107238 0 +12 14966 23.624559107238 0 +12 14966 23.624559107238 0 +12 14992 23.631276867299 0 +12 14992 23.631276867299 0 +12 15015 23.631436867299 0 +12 15015 23.631436867299 0 +12 15029 23.657383685955 0 +12 15029 23.657383685955 0 +12 15037 23.657543685955 0 +12 15037 23.657543685955 0 +12 15158 23.914557513622 0 +12 15158 23.914557513622 0 +12 15181 23.914717513622 0 +12 15181 23.914717513622 0 +12 15196 23.924399112031 0 +12 15196 23.924399112031 0 +12 15207 23.924559112031 0 +12 15207 23.924559112031 0 +12 15233 23.931276866321 0 +12 15233 23.931276866321 0 +12 15256 23.931436866321 0 +12 15256 23.931436866321 0 +12 15270 23.957383685955 0 +12 15270 23.957383685955 0 +12 15278 23.957543685955 0 +12 15278 23.957543685955 0 +12 15399 24.214557511852 0 +12 15399 24.214557511852 0 +12 15422 24.214717511852 0 +12 15422 24.214717511852 0 +12 15437 24.224399117426 0 +12 15437 24.224399117426 0 +12 15448 24.224559117426 0 +12 15448 24.224559117426 0 +12 15474 24.231276865622 0 +12 15474 24.231276865622 0 +12 15497 24.231436865622 0 +12 15497 24.231436865622 0 +12 15511 24.257383685955 0 +12 15511 24.257383685955 0 +12 15519 24.257543685955 0 +12 15519 24.257543685955 0 +12 15640 24.514557510265 0 +12 15640 24.514557510265 0 +12 15663 24.514717510265 0 +12 15663 24.514717510265 0 +12 15678 24.524399123441 0 +12 15678 24.524399123441 0 +12 15689 24.524559123441 0 +12 15689 24.524559123441 0 +12 15715 24.531276865164 0 +12 15715 24.531276865164 0 +12 15738 24.531436865164 0 +12 15738 24.531436865164 0 +12 15752 24.557383685955 0 +12 15752 24.557383685955 0 +12 15760 24.557543685955 0 +12 15760 24.557543685955 0 +12 15881 24.814557508895 0 +12 15881 24.814557508895 0 +12 15904 24.814717508895 0 +12 15904 24.814717508895 0 +12 15919 24.824399130236 0 +12 15919 24.824399130236 0 +12 15930 24.824559130236 0 +12 15930 24.824559130236 0 +12 15956 24.831276865034 0 +12 15956 24.831276865034 0 +12 15979 24.831436865034 0 +12 15979 24.831436865034 0 +12 15993 24.857383685955 0 +12 15993 24.857383685955 0 +12 16001 24.857543685955 0 +12 16001 24.857543685955 0 +12 16122 25.114557507733 0 +12 16122 25.114557507733 0 +12 16145 25.114717507733 0 +12 16145 25.114717507733 0 +12 16160 25.124399137961 0 +12 16160 25.124399137961 0 +12 16171 25.124559137961 0 +12 16171 25.124559137961 0 +12 16197 25.131276865348 0 +12 16197 25.131276865348 0 +12 16220 25.131436865348 0 +12 16220 25.131436865348 0 +12 16234 25.157383685955 0 +12 16234 25.157383685955 0 +12 16242 25.157543685955 0 +12 16242 25.157543685955 0 +12 16363 25.414557506754 0 +12 16363 25.414557506754 0 +12 16386 25.414717506754 0 +12 16386 25.414717506754 0 +12 16401 25.424399146492 0 +12 16401 25.424399146492 0 +12 16412 25.424559146492 0 +12 16412 25.424559146492 0 +12 16438 25.431276866065 0 +12 16438 25.431276866065 0 +12 16461 25.431436866065 0 +12 16461 25.431436866065 0 +12 16475 25.457383685955 0 +12 16475 25.457383685955 0 +12 16483 25.457543685955 0 +12 16483 25.457543685955 0 +12 16604 25.714557505914 0 +12 16604 25.714557505914 0 +12 16627 25.714717505914 0 +12 16627 25.714717505914 0 +12 16642 25.724399155863 0 +12 16642 25.724399155863 0 +12 16653 25.724559155863 0 +12 16653 25.724559155863 0 +12 16679 25.731276867271 0 +12 16679 25.731276867271 0 +12 16702 25.731436867271 0 +12 16702 25.731436867271 0 +12 16716 25.757383685955 0 +12 16716 25.757383685955 0 +12 16724 25.757543685955 0 +12 16724 25.757543685955 0 +12 16845 26.014557505277 0 +12 16845 26.014557505277 0 +12 16868 26.014717505277 0 +12 16868 26.014717505277 0 +12 16883 26.024399166196 0 +12 16883 26.024399166196 0 +12 16894 26.024559166196 0 +12 16894 26.024559166196 0 +12 16920 26.031276869882 0 +12 16920 26.031276869882 0 +12 16943 26.031436869882 0 +12 16943 26.031436869882 0 +12 16957 26.057383685955 0 +12 16957 26.057383685955 0 +12 16965 26.057543685955 0 +12 16965 26.057543685955 0 +12 17085 26.314557504782 0 +12 17085 26.314557504782 0 +12 17104 26.314717504782 0 +12 17104 26.314717504782 0 +12 17124 26.324399177308 0 +12 17124 26.324399177308 0 +12 17135 26.324559177308 0 +12 17135 26.324559177308 0 +12 17161 26.331276874069 0 +12 17161 26.331276874069 0 +12 17184 26.331436874069 0 +12 17184 26.331436874069 0 +12 17198 26.357383685955 0 +12 17198 26.357383685955 0 +12 17206 26.357543685955 0 +12 17206 26.357543685955 0 +12 17326 26.614557504308 0 +12 17326 26.614557504308 0 +12 17345 26.614717504308 0 +12 17345 26.614717504308 0 +12 17365 26.624399188753 0 +12 17365 26.624399188753 0 +12 17376 26.624559188753 0 +12 17376 26.624559188753 0 +12 17402 26.631276879416 0 +12 17402 26.631276879416 0 +12 17425 26.631436879416 0 +12 17425 26.631436879416 0 +12 17439 26.657383685955 0 +12 17439 26.657383685955 0 +12 17447 26.657543685955 0 +12 17447 26.657543685955 0 +12 17567 26.914557503709 0 +12 17567 26.914557503709 0 +12 17586 26.914717503709 0 +12 17586 26.914717503709 0 +12 17606 26.924399200042 0 +12 17606 26.924399200042 0 +12 17617 26.924559200042 0 +12 17617 26.924559200042 0 +12 17643 26.931276885432 0 +12 17643 26.931276885432 0 +12 17666 26.931436885432 0 +12 17666 26.931436885432 0 +12 17680 26.957383685955 0 +12 17680 26.957383685955 0 +12 17688 26.957543685955 0 +12 17688 26.957543685955 0 +12 17808 27.214557502764 0 +12 17808 27.214557502764 0 +12 17827 27.214717502764 0 +12 17827 27.214717502764 0 +12 17843 27.224399210302 0 +12 17843 27.224399210302 0 +12 17854 27.224559210302 0 +12 17854 27.224559210302 0 +12 17876 27.231276891257 0 +12 17876 27.231276891257 0 +12 17899 27.231436891257 0 +12 17899 27.231436891257 0 +12 17913 27.257383685955 0 +12 17913 27.257383685955 0 +12 17921 27.257543685955 0 +12 17921 27.257543685955 0 +12 18041 27.514557501474 0 +12 18041 27.514557501474 0 +12 18060 27.514717501474 0 +12 18060 27.514717501474 0 +12 18076 27.524399219548 0 +12 18076 27.524399219548 0 +12 18087 27.524559219548 0 +12 18087 27.524559219548 0 +12 18109 27.531276896461 0 +12 18109 27.531276896461 0 +12 18132 27.531436896461 0 +12 18132 27.531436896461 0 +12 18146 27.557383685955 0 +12 18146 27.557383685955 0 +12 18154 27.557543685955 0 +12 18154 27.557543685955 0 +12 18274 27.814557499885 0 +12 18274 27.814557499885 0 +12 18293 27.814717499885 0 +12 18293 27.814717499885 0 +12 18309 27.824399227674 0 +12 18309 27.824399227674 0 +12 18320 27.824559227674 0 +12 18320 27.824559227674 0 +12 18342 27.831276898141 0 +12 18342 27.831276898141 0 +12 18365 27.831436898141 0 +12 18365 27.831436898141 0 +12 18379 27.857383685955 0 +12 18379 27.857383685955 0 +12 18387 27.857543685955 0 +12 18387 27.857543685955 0 +12 18507 28.114557497525 0 +12 18507 28.114557497525 0 +12 18526 28.114717497525 0 +12 18526 28.114717497525 0 +12 18542 28.124399234561 0 +12 18542 28.124399234561 0 +12 18553 28.124559234561 0 +12 18553 28.124559234561 0 +12 18575 28.131276899693 0 +12 18575 28.131276899693 0 +12 18598 28.131436899693 0 +12 18598 28.131436899693 0 +12 18612 28.157383685955 0 +12 18612 28.157383685955 0 +12 18620 28.157543685955 0 +12 18620 28.157543685955 0 +12 18740 28.414557494637 0 +12 18740 28.414557494637 0 +12 18759 28.414717494637 0 +12 18759 28.414717494637 0 +12 18775 28.424399240801 0 +12 18775 28.424399240801 0 +12 18786 28.424559240801 0 +12 18786 28.424559240801 0 +12 18808 28.431276907999 0 +12 18808 28.431276907999 0 +12 18831 28.431436907999 0 +12 18831 28.431436907999 0 +12 18845 28.457383685955 0 +12 18845 28.457383685955 0 +12 18853 28.457543685955 0 +12 18853 28.457543685955 0 +12 18973 28.714557490176 0 +12 18973 28.714557490176 0 +12 18992 28.714717490176 0 +12 18992 28.714717490176 0 +12 19008 28.724399242627 0 +12 19008 28.724399242627 0 +12 19019 28.724559242627 0 +12 19019 28.724559242627 0 +12 19041 28.731276917209 0 +12 19041 28.731276917209 0 +12 19064 28.731436917209 0 +12 19064 28.731436917209 0 +12 19078 28.757383685955 0 +12 19078 28.757383685955 0 +12 19086 28.757543685955 0 +12 19086 28.757543685955 0 +12 19206 29.01455748367 0 +12 19206 29.01455748367 0 +12 19225 29.01471748367 0 +12 19225 29.01471748367 0 +12 19241 29.02439924345 0 +12 19241 29.02439924345 0 +12 19252 29.02455924345 0 +12 19252 29.02455924345 0 +12 19307 29.057383685955 0 +12 19307 29.057383685955 0 +12 19315 29.057543685955 0 +12 19315 29.057543685955 0 +12 19431 29.314557474199 0 +12 19431 29.314557474199 0 +12 19450 29.314717474199 0 +12 19450 29.314717474199 0 +12 19466 29.324399247583 0 +12 19466 29.324399247583 0 +12 19477 29.324559247583 0 +12 19477 29.324559247583 0 +12 19532 29.357383685955 0 +12 19532 29.357383685955 0 +12 19540 29.357543685955 0 +12 19540 29.357543685955 0 +12 19656 29.614557462553 0 +12 19656 29.614557462553 0 +12 19675 29.614717462553 0 +12 19675 29.614717462553 0 +12 19691 29.624399248962 0 +12 19691 29.624399248962 0 +12 19702 29.624559248962 0 +12 19702 29.624559248962 0 +12 19757 29.657383685955 0 +12 19757 29.657383685955 0 +12 19765 29.657543685955 0 +12 19765 29.657543685955 0 +12 19881 29.914557450409 0 +12 19881 29.914557450409 0 +12 19900 29.914717450409 0 +12 19900 29.914717450409 0 +12 19916 29.924399249496 0 +12 19916 29.924399249496 0 +12 19927 29.924559249496 0 +12 19927 29.924559249496 0 +12 19982 29.957383685955 0 +12 19982 29.957383685955 0 +12 19990 29.957543685955 0 +12 19990 29.957543685955 0 +12 20106 30.214557437824 0 +12 20106 30.214557437824 0 +12 20125 30.214717437824 0 +12 20125 30.214717437824 0 +12 20141 30.224399249493 0 +12 20141 30.224399249493 0 +12 20152 30.224559249493 0 +12 20152 30.224559249493 0 +12 20207 30.257383685955 0 +12 20207 30.257383685955 0 +12 20215 30.257543685955 0 +12 20215 30.257543685955 0 +12 20329 30.514557424894 0 +12 20329 30.514557424894 0 +12 20340 30.514717424894 0 +12 20340 30.514717424894 0 +12 20366 30.524399249491 0 +12 20366 30.524399249491 0 +12 20377 30.524559249491 0 +12 20377 30.524559249491 0 +12 20432 30.557383685955 0 +12 20432 30.557383685955 0 +12 20440 30.557543685955 0 +12 20440 30.557543685955 0 +12 20554 30.814557411739 0 +12 20554 30.814557411739 0 +12 20565 30.814717411739 0 +12 20565 30.814717411739 0 +12 20591 30.824399249488 0 +12 20591 30.824399249488 0 +12 20602 30.824559249488 0 +12 20602 30.824559249488 0 +12 20657 30.857383685955 0 +12 20657 30.857383685955 0 +12 20665 30.857543685955 0 +12 20665 30.857543685955 0 +12 20779 31.114557398299 0 +12 20779 31.114557398299 0 +12 20790 31.114717398299 0 +12 20790 31.114717398299 0 +12 20816 31.124399249483 0 +12 20816 31.124399249483 0 +12 20827 31.124559249483 0 +12 20827 31.124559249483 0 +12 20886 31.157383685955 0 +12 20886 31.157383685955 0 +12 20894 31.157543685955 0 +12 20894 31.157543685955 0 +12 21012 31.414557384666 0 +12 21012 31.414557384666 0 +12 21023 31.414717384666 0 +12 21023 31.414717384666 0 +12 21049 31.424399249476 0 +12 21049 31.424399249476 0 +12 21060 31.424559249476 0 +12 21060 31.424559249476 0 +12 21119 31.457383685955 0 +12 21119 31.457383685955 0 +12 21127 31.457543685955 0 +12 21127 31.457543685955 0 +12 21245 31.714557370995 0 +12 21245 31.714557370995 0 +12 21256 31.714717370995 0 +12 21256 31.714717370995 0 +12 21282 31.724399249469 0 +12 21282 31.724399249469 0 +12 21293 31.724559249469 0 +12 21293 31.724559249469 0 +12 21352 31.757383685955 0 +12 21352 31.757383685955 0 +12 21360 31.757543685955 0 +12 21360 31.757543685955 0 +12 21478 32.014557357699 0 +12 21478 32.014557357699 0 +12 21489 32.014717357699 0 +12 21489 32.014717357699 0 +12 21516 32.024399249465 0 +12 21516 32.024399249465 0 +12 21531 32.024559249465 0 +12 21531 32.024559249465 0 +12 21585 32.057383685955 0 +12 21585 32.057383685955 0 +12 21593 32.057543685955 0 +12 21593 32.057543685955 0 +12 21711 32.314557344745 0 +12 21711 32.314557344745 0 +12 21722 32.314717344745 0 +12 21722 32.314717344745 0 +12 21749 32.324399249464 0 +12 21749 32.324399249464 0 +12 21764 32.324559249464 0 +12 21764 32.324559249464 0 +12 21818 32.357383685955 0 +12 21818 32.357383685955 0 +12 21826 32.357543685955 0 +12 21826 32.357543685955 0 +12 21944 32.614557332223 0 +12 21944 32.614557332223 0 +12 21955 32.614717332223 0 +12 21955 32.614717332223 0 +12 21982 32.624399249467 0 +12 21982 32.624399249467 0 +12 21997 32.624559249467 0 +12 21997 32.624559249467 0 +12 22051 32.657383685955 0 +12 22051 32.657383685955 0 +12 22059 32.657543685955 0 +12 22059 32.657543685955 0 +12 22177 32.914557320155 0 +12 22177 32.914557320155 0 +12 22188 32.914717320155 0 +12 22188 32.914717320155 0 +12 22215 32.924399249474 0 +12 22215 32.924399249474 0 +12 22230 32.924559249474 0 +12 22230 32.924559249474 0 +12 22284 32.957383685955 0 +12 22284 32.957383685955 0 +12 22292 32.957543685955 0 +12 22292 32.957543685955 0 +12 22410 33.214557308546 0 +12 22410 33.214557308546 0 +12 22421 33.214717308546 0 +12 22421 33.214717308546 0 +12 22448 33.224399249483 0 +12 22448 33.224399249483 0 +12 22463 33.224559249483 0 +12 22463 33.224559249483 0 +12 22517 33.257383685955 0 +12 22517 33.257383685955 0 +12 22525 33.257543685955 0 +12 22525 33.257543685955 0 +12 22643 33.51455729748 0 +12 22643 33.51455729748 0 +12 22654 33.51471729748 0 +12 22654 33.51471729748 0 +12 22681 33.524399249496 0 +12 22681 33.524399249496 0 +12 22696 33.524559249496 0 +12 22696 33.524559249496 0 +12 22750 33.557383685955 0 +12 22750 33.557383685955 0 +12 22758 33.557543685955 0 +12 22758 33.557543685955 0 +12 22876 33.814557286954 0 +12 22876 33.814557286954 0 +12 22887 33.814717286954 0 +12 22887 33.814717286954 0 +12 22910 33.824399249513 0 +12 22910 33.824399249513 0 +12 22925 33.824559249513 0 +12 22925 33.824559249513 0 +12 22979 33.857383685955 0 +12 22979 33.857383685955 0 +12 22987 33.857543685955 0 +12 22987 33.857543685955 0 +12 23092 34.114557277044 0 +12 23092 34.114557277044 0 +12 23102 34.114717277044 0 +12 23102 34.114717277044 0 +12 23119 34.124399249532 0 +12 23119 34.124399249532 0 +12 23129 34.124559249532 0 +12 23129 34.124559249532 0 +12 23173 34.157383685955 0 +12 23173 34.157383685955 0 +12 23180 34.157543685955 0 +12 23180 34.157543685955 0 +12 23250 34.41455726774 0 +12 23250 34.41455726774 0 +12 23260 34.41471726774 0 +12 23260 34.41471726774 0 +12 23277 34.424399249554 0 +12 23277 34.424399249554 0 +12 23287 34.424559249554 0 +12 23287 34.424559249554 0 +12 23331 34.457383685955 0 +12 23331 34.457383685955 0 +12 23338 34.457543685955 0 +12 23338 34.457543685955 0 +12 23408 34.714557259086 0 +12 23408 34.714557259086 0 +12 23418 34.714717259086 0 +12 23418 34.714717259086 0 +12 23435 34.72439924958 0 +12 23435 34.72439924958 0 +12 23445 34.72455924958 0 +12 23445 34.72455924958 0 +12 23489 34.757383685955 0 +12 23489 34.757383685955 0 +12 23496 34.757543685955 0 +12 23496 34.757543685955 0 +12 23566 35.01455725114 0 +12 23566 35.01455725114 0 +12 23576 35.01471725114 0 +12 23576 35.01471725114 0 +12 23593 35.024399249609 0 +12 23593 35.024399249609 0 +12 23603 35.024559249609 0 +12 23603 35.024559249609 0 +12 23647 35.057383685955 0 +12 23647 35.057383685955 0 +12 23654 35.057543685955 0 +12 23654 35.057543685955 0 +12 23685 35.14399390924 0 +12 23685 35.14399390924 0 +12 23699 35.14415390924 0 +12 23699 35.14415390924 0 +12 23728 35.314557244297 0 +12 23728 35.314557244297 0 +12 23738 35.314717244297 0 +12 23738 35.314717244297 0 +12 23755 35.324399249632 0 +12 23755 35.324399249632 0 +12 23765 35.324559249632 0 +12 23765 35.324559249632 0 +12 23809 35.357383685955 0 +12 23809 35.357383685955 0 +12 23816 35.357543685955 0 +12 23816 35.357543685955 0 +12 23851 35.443993894903 0 +12 23851 35.443993894903 0 +12 23865 35.444153894903 0 +12 23865 35.444153894903 0 +12 23894 35.614557239399 0 +12 23894 35.614557239399 0 +12 23904 35.614717239399 0 +12 23904 35.614717239399 0 +12 23921 35.624399249628 0 +12 23921 35.624399249628 0 +12 23931 35.624559249628 0 +12 23931 35.624559249628 0 +12 23975 35.657383685955 0 +12 23975 35.657383685955 0 +12 23982 35.657543685955 0 +12 23982 35.657543685955 0 +12 24017 35.743993882114 0 +12 24017 35.743993882114 0 +12 24031 35.744153882114 0 +12 24031 35.744153882114 0 +12 24059 35.914557236445 0 +12 24059 35.914557236445 0 +12 24065 35.914717236445 0 +12 24065 35.914717236445 0 +12 24087 35.924399249595 0 +12 24087 35.924399249595 0 +12 24097 35.924559249595 0 +12 24097 35.924559249595 0 +12 24141 35.957383685955 0 +12 24141 35.957383685955 0 +12 24148 35.957543685955 0 +12 24148 35.957543685955 0 +12 24183 36.043993870912 0 +12 24183 36.043993870912 0 +12 24197 36.044153870912 0 +12 24197 36.044153870912 0 +12 24225 36.214557235432 0 +12 24225 36.214557235432 0 +12 24231 36.214717235432 0 +12 24231 36.214717235432 0 +12 24253 36.224399249544 0 +12 24253 36.224399249544 0 +12 24263 36.224559249544 0 +12 24263 36.224559249544 0 +12 24307 36.257383685955 0 +12 24307 36.257383685955 0 +12 24314 36.257543685955 0 +12 24314 36.257543685955 0 +12 24349 36.343993861309 0 +12 24349 36.343993861309 0 +12 24363 36.344153861309 0 +12 24363 36.344153861309 0 +12 24391 36.514557236231 0 +12 24391 36.514557236231 0 +12 24397 36.514717236231 0 +12 24397 36.514717236231 0 +12 24419 36.524399249492 0 +12 24419 36.524399249492 0 +12 24429 36.524559249492 0 +12 24429 36.524559249492 0 +12 24473 36.557383685955 0 +12 24473 36.557383685955 0 +12 24480 36.557543685955 0 +12 24480 36.557543685955 0 +12 24515 36.643993853328 0 +12 24515 36.643993853328 0 +12 24529 36.644153853328 0 +12 24529 36.644153853328 0 +12 24558 36.814557238201 0 +12 24558 36.814557238201 0 +12 24568 36.814717238201 0 +12 24568 36.814717238201 0 +12 24585 36.824399249465 0 +12 24585 36.824399249465 0 +12 24595 36.824559249465 0 +12 24595 36.824559249465 0 +12 24639 36.857383685955 0 +12 24639 36.857383685955 0 +12 24646 36.857543685955 0 +12 24646 36.857543685955 0 +12 24681 36.943993845573 0 +12 24681 36.943993845573 0 +12 24695 36.944153845573 0 +12 24695 36.944153845573 0 +12 24724 37.114557240113 0 +12 24724 37.114557240113 0 +12 24734 37.114717240113 0 +12 24734 37.114717240113 0 +12 24751 37.124399249471 0 +12 24751 37.124399249471 0 +12 24761 37.124559249471 0 +12 24761 37.124559249471 0 +12 24805 37.157383685955 0 +12 24805 37.157383685955 0 +12 24812 37.157543685955 0 +12 24812 37.157543685955 0 +12 24846 37.243993835004 0 +12 24846 37.243993835004 0 +12 24856 37.244153835004 0 +12 24856 37.244153835004 0 +12 24890 37.414557242061 0 +12 24890 37.414557242061 0 +12 24900 37.414717242061 0 +12 24900 37.414717242061 0 +12 24917 37.424399249494 0 +12 24917 37.424399249494 0 +12 24927 37.424559249494 0 +12 24927 37.424559249494 0 +12 24971 37.457383685955 0 +12 24971 37.457383685955 0 +12 24978 37.457543685955 0 +12 24978 37.457543685955 0 +12 25012 37.543993814684 0 +12 25012 37.543993814684 0 +12 25022 37.544153814684 0 +12 25022 37.544153814684 0 +12 25056 37.714557244204 0 +12 25056 37.714557244204 0 +12 25066 37.714717244204 0 +12 25066 37.714717244204 0 +12 25083 37.724399249526 0 +12 25083 37.724399249526 0 +12 25093 37.724559249526 0 +12 25093 37.724559249526 0 +12 25137 37.757383685955 0 +12 25137 37.757383685955 0 +12 25144 37.757543685955 0 +12 25144 37.757543685955 0 +12 25178 37.843993790864 0 +12 25178 37.843993790864 0 +12 25188 37.844153790864 0 +12 25188 37.844153790864 0 +12 25222 38.014557246626 0 +12 25222 38.014557246626 0 +12 25232 38.014717246626 0 +12 25232 38.014717246626 0 +12 25249 38.024399249562 0 +12 25249 38.024399249562 0 +12 25259 38.024559249562 0 +12 25259 38.024559249562 0 +12 25303 38.057383685955 0 +12 25303 38.057383685955 0 +12 25310 38.057543685955 0 +12 25310 38.057543685955 0 +12 25344 38.143993766481 0 +12 25344 38.143993766481 0 +12 25354 38.144153766481 0 +12 25354 38.144153766481 0 +12 25388 38.314557249321 0 +12 25388 38.314557249321 0 +12 25398 38.314717249321 0 +12 25398 38.314717249321 0 +12 25415 38.324399249594 0 +12 25415 38.324399249594 0 +12 25425 38.324559249594 0 +12 25425 38.324559249594 0 +12 25469 38.357383685955 0 +12 25469 38.357383685955 0 +12 25476 38.357543685955 0 +12 25476 38.357543685955 0 +12 25510 38.443993741575 0 +12 25510 38.443993741575 0 +12 25520 38.444153741575 0 +12 25520 38.444153741575 0 +12 25554 38.614557252296 0 +12 25554 38.614557252296 0 +12 25564 38.614717252296 0 +12 25564 38.614717252296 0 +12 25581 38.624399249618 0 +12 25581 38.624399249618 0 +12 25591 38.624559249618 0 +12 25591 38.624559249618 0 +12 25635 38.657383685955 0 +12 25635 38.657383685955 0 +12 25642 38.657543685955 0 +12 25642 38.657543685955 0 +12 25676 38.743993716074 0 +12 25676 38.743993716074 0 +12 25686 38.744153716074 0 +12 25686 38.744153716074 0 +12 25720 38.914557255584 0 +12 25720 38.914557255584 0 +12 25730 38.914717255584 0 +12 25730 38.914717255584 0 +12 25747 38.924399249631 0 +12 25747 38.924399249631 0 +12 25757 38.924559249631 0 +12 25757 38.924559249631 0 +12 25801 38.957383685955 0 +12 25801 38.957383685955 0 +12 25808 38.957543685955 0 +12 25808 38.957543685955 0 +12 25842 39.043993690005 0 +12 25842 39.043993690005 0 +12 25852 39.044153690005 0 +12 25852 39.044153690005 0 +12 25886 39.214557259182 0 +12 25886 39.214557259182 0 +12 25896 39.214717259182 0 +12 25896 39.214717259182 0 +12 25913 39.224399249629 0 +12 25913 39.224399249629 0 +12 25923 39.224559249629 0 +12 25923 39.224559249629 0 +12 25967 39.257383685955 0 +12 25967 39.257383685955 0 +12 25974 39.257543685955 0 +12 25974 39.257543685955 0 +12 26008 39.343993663209 0 +12 26008 39.343993663209 0 +12 26018 39.344153663209 0 +12 26018 39.344153663209 0 +12 26052 39.514557263099 0 +12 26052 39.514557263099 0 +12 26062 39.514717263099 0 +12 26062 39.514717263099 0 +12 26079 39.524399249613 0 +12 26079 39.524399249613 0 +12 26089 39.524559249613 0 +12 26089 39.524559249613 0 +12 26133 39.557383685955 0 +12 26133 39.557383685955 0 +12 26140 39.557543685955 0 +12 26140 39.557543685955 0 +12 26174 39.643993635768 0 +12 26174 39.643993635768 0 +12 26184 39.644153635768 0 +12 26184 39.644153635768 0 +12 26218 39.81455726744 0 +12 26218 39.81455726744 0 +12 26228 39.81471726744 0 +12 26228 39.81471726744 0 +12 26245 39.824399249586 0 +12 26245 39.824399249586 0 +12 26255 39.824559249586 0 +12 26255 39.824559249586 0 +12 26299 39.857383685955 0 +12 26299 39.857383685955 0 +12 26306 39.857543685955 0 +12 26306 39.857543685955 0 +12 26340 39.943993607814 0 +12 26340 39.943993607814 0 +12 26350 39.944153607814 0 +12 26350 39.944153607814 0 +12 26384 40.114557272479 0 +12 26384 40.114557272479 0 +12 26394 40.114717272479 0 +12 26394 40.114717272479 0 +12 26411 40.124399249559 0 +12 26411 40.124399249559 0 +12 26421 40.124559249559 0 +12 26421 40.124559249559 0 +12 26465 40.157383685955 0 +12 26465 40.157383685955 0 +12 26472 40.157543685955 0 +12 26472 40.157543685955 0 +12 26505 40.243993579799 0 +12 26505 40.243993579799 0 +12 26511 40.244153579799 0 +12 26511 40.244153579799 0 +12 26550 40.414557278253 0 +12 26550 40.414557278253 0 +12 26560 40.414717278253 0 +12 26560 40.414717278253 0 +12 26577 40.424399249535 0 +12 26577 40.424399249535 0 +12 26587 40.424559249535 0 +12 26587 40.424559249535 0 +12 26631 40.457383685955 0 +12 26631 40.457383685955 0 +12 26638 40.457543685955 0 +12 26638 40.457543685955 0 +12 26671 40.543993551811 0 +12 26671 40.543993551811 0 +12 26677 40.544153551811 0 +12 26677 40.544153551811 0 +12 26716 40.714557284831 0 +12 26716 40.714557284831 0 +12 26726 40.714717284831 0 +12 26726 40.714717284831 0 +12 26743 40.724399249515 0 +12 26743 40.724399249515 0 +12 26753 40.724559249515 0 +12 26753 40.724559249515 0 +12 26801 40.757383685955 0 +12 26801 40.757383685955 0 +12 26808 40.757543685955 0 +12 26808 40.757543685955 0 +12 26841 40.843993523891 0 +12 26841 40.843993523891 0 +12 26847 40.844153523891 0 +12 26847 40.844153523891 0 +12 26890 41.014557292056 0 +12 26890 41.014557292056 0 +12 26900 41.014717292056 0 +12 26900 41.014717292056 0 +12 26917 41.024399249498 0 +12 26917 41.024399249498 0 +12 26927 41.024559249498 0 +12 26927 41.024559249498 0 +12 26975 41.057383685955 0 +12 26975 41.057383685955 0 +12 26982 41.057543685955 0 +12 26982 41.057543685955 0 +12 27015 41.143993495882 0 +12 27015 41.143993495882 0 +12 27021 41.144153495882 0 +12 27021 41.144153495882 0 +12 27064 41.314557299998 0 +12 27064 41.314557299998 0 +12 27074 41.314717299998 0 +12 27074 41.314717299998 0 +12 27091 41.324399249485 0 +12 27091 41.324399249485 0 +12 27101 41.324559249485 0 +12 27101 41.324559249485 0 +12 27149 41.357383685955 0 +12 27149 41.357383685955 0 +12 27156 41.357543685955 0 +12 27156 41.357543685955 0 +12 27189 41.44399346791 0 +12 27189 41.44399346791 0 +12 27195 41.44415346791 0 +12 27195 41.44415346791 0 +12 27238 41.614557308543 0 +12 27238 41.614557308543 0 +12 27248 41.614717308543 0 +12 27248 41.614717308543 0 +12 27265 41.624399249475 0 +12 27265 41.624399249475 0 +12 27275 41.624559249475 0 +12 27275 41.624559249475 0 +12 27323 41.657383685955 0 +12 27323 41.657383685955 0 +12 27330 41.657543685955 0 +12 27330 41.657543685955 0 +12 27363 41.743993439965 0 +12 27363 41.743993439965 0 +12 27369 41.744153439965 0 +12 27369 41.744153439965 0 +12 27412 41.914557317732 0 +12 27412 41.914557317732 0 +12 27422 41.914717317732 0 +12 27422 41.914717317732 0 +12 27439 41.924399249468 0 +12 27439 41.924399249468 0 +12 27449 41.924559249468 0 +12 27449 41.924559249468 0 +12 27497 41.957383685955 0 +12 27497 41.957383685955 0 +12 27504 41.957543685955 0 +12 27504 41.957543685955 0 +12 27537 42.043993412971 0 +12 27537 42.043993412971 0 +12 27543 42.044153412971 0 +12 27543 42.044153412971 0 +12 27586 42.214557327498 0 +12 27586 42.214557327498 0 +12 27596 42.214717327498 0 +12 27596 42.214717327498 0 +12 27613 42.224399249465 0 +12 27613 42.224399249465 0 +12 27623 42.224559249465 0 +12 27623 42.224559249465 0 +12 27671 42.257383685955 0 +12 27671 42.257383685955 0 +12 27678 42.257543685955 0 +12 27678 42.257543685955 0 +12 27711 42.34399338739 0 +12 27711 42.34399338739 0 +12 27717 42.34415338739 0 +12 27717 42.34415338739 0 +12 27760 42.514557337799 0 +12 27760 42.514557337799 0 +12 27770 42.514717337799 0 +12 27770 42.514717337799 0 +12 27787 42.524399249465 0 +12 27787 42.524399249465 0 +12 27797 42.524559249465 0 +12 27797 42.524559249465 0 +12 27845 42.557383685955 0 +12 27845 42.557383685955 0 +12 27852 42.557543685955 0 +12 27852 42.557543685955 0 +12 27885 42.643993363107 0 +12 27885 42.643993363107 0 +12 27891 42.644153363107 0 +12 27891 42.644153363107 0 +12 27934 42.814557348649 0 +12 27934 42.814557348649 0 +12 27944 42.814717348649 0 +12 27944 42.814717348649 0 +12 27961 42.824399249468 0 +12 27961 42.824399249468 0 +12 27971 42.824559249468 0 +12 27971 42.824559249468 0 +12 28019 42.857383685955 0 +12 28019 42.857383685955 0 +12 28026 42.857543685955 0 +12 28026 42.857543685955 0 +12 28059 42.943993340208 0 +12 28059 42.943993340208 0 +12 28065 42.944153340208 0 +12 28065 42.944153340208 0 +12 28107 43.114557359966 0 +12 28107 43.114557359966 0 +12 28113 43.114717359966 0 +12 28113 43.114717359966 0 +12 28135 43.124399249475 0 +12 28135 43.124399249475 0 +12 28145 43.124559249475 0 +12 28145 43.124559249475 0 +12 28193 43.157383685955 0 +12 28193 43.157383685955 0 +12 28200 43.157543685955 0 +12 28200 43.157543685955 0 +12 28233 43.243993318662 0 +12 28233 43.243993318662 0 +12 28239 43.244153318662 0 +12 28239 43.244153318662 0 +12 28281 43.414557371721 0 +12 28281 43.414557371721 0 +12 28287 43.414717371721 0 +12 28287 43.414717371721 0 +12 28309 43.424399249485 0 +12 28309 43.424399249485 0 +12 28319 43.424559249485 0 +12 28319 43.424559249485 0 +12 28367 43.457383685955 0 +12 28367 43.457383685955 0 +12 28374 43.457543685955 0 +12 28374 43.457543685955 0 +12 28407 43.543993298467 0 +12 28407 43.543993298467 0 +12 28413 43.544153298467 0 +12 28413 43.544153298467 0 +12 28455 43.71455738363 0 +12 28455 43.71455738363 0 +12 28461 43.71471738363 0 +12 28461 43.71471738363 0 +12 28483 43.724399249498 0 +12 28483 43.724399249498 0 +12 28493 43.724559249498 0 +12 28493 43.724559249498 0 +12 28541 43.757383685955 0 +12 28541 43.757383685955 0 +12 28548 43.757543685955 0 +12 28548 43.757543685955 0 +12 28581 43.843993279612 0 +12 28581 43.843993279612 0 +12 28587 43.844153279612 0 +12 28587 43.844153279612 0 +12 28629 44.014557394666 0 +12 28629 44.014557394666 0 +12 28635 44.014717394666 0 +12 28635 44.014717394666 0 +12 28657 44.024399249515 0 +12 28657 44.024399249515 0 +12 28667 44.024559249515 0 +12 28667 44.024559249515 0 +12 28715 44.057383685955 0 +12 28715 44.057383685955 0 +12 28722 44.057543685955 0 +12 28722 44.057543685955 0 +12 28755 44.143993262339 0 +12 28755 44.143993262339 0 +12 28761 44.144153262339 0 +12 28761 44.144153262339 0 +12 28803 44.314557404849 0 +12 28803 44.314557404849 0 +12 28809 44.314717404849 0 +12 28809 44.314717404849 0 +12 28832 44.324399249523 0 +12 28832 44.324399249523 0 +12 28846 44.324559249523 0 +12 28846 44.324559249523 0 +12 28885 44.357383685955 0 +12 28885 44.357383685955 0 +12 28892 44.357543685955 0 +12 28892 44.357543685955 0 +12 28925 44.443993247573 0 +12 28925 44.443993247573 0 +12 28931 44.444153247573 0 +12 28931 44.444153247573 0 +12 28969 44.614557414115 0 +12 28969 44.614557414115 0 +12 28975 44.614717414115 0 +12 28975 44.614717414115 0 +12 28998 44.624399249512 0 +12 28998 44.624399249512 0 +12 29012 44.624559249512 0 +12 29012 44.624559249512 0 +12 29051 44.657383685955 0 +12 29051 44.657383685955 0 +12 29058 44.657543685955 0 +12 29058 44.657543685955 0 +12 29091 44.743993235516 0 +12 29091 44.743993235516 0 +12 29097 44.744153235516 0 +12 29097 44.744153235516 0 +12 29135 44.914557422365 0 +12 29135 44.914557422365 0 +12 29141 44.914717422365 0 +12 29141 44.914717422365 0 +12 29164 44.92439924949 0 +12 29164 44.92439924949 0 +12 29178 44.92455924949 0 +12 29178 44.92455924949 0 +12 29217 44.957383685955 0 +12 29217 44.957383685955 0 +12 29224 44.957543685955 0 +12 29224 44.957543685955 0 +12 29257 45.04399322614 0 +12 29257 45.04399322614 0 +12 29263 45.04415322614 0 +12 29263 45.04415322614 0 +12 29301 45.214557429517 0 +12 29301 45.214557429517 0 +12 29307 45.214717429517 0 +12 29307 45.214717429517 0 +12 29330 45.224399249469 0 +12 29330 45.224399249469 0 +12 29344 45.224559249469 0 +12 29344 45.224559249469 0 +12 29383 45.257383685955 0 +12 29383 45.257383685955 0 +12 29390 45.257543685955 0 +12 29390 45.257543685955 0 +12 29423 45.343993218642 0 +12 29423 45.343993218642 0 +12 29429 45.344153218642 0 +12 29429 45.344153218642 0 +12 29467 45.514557435742 0 +12 29467 45.514557435742 0 +12 29473 45.514717435742 0 +12 29473 45.514717435742 0 +12 29496 45.524399249468 0 +12 29496 45.524399249468 0 +12 29510 45.524559249468 0 +12 29510 45.524559249468 0 +12 29549 45.557383685955 0 +12 29549 45.557383685955 0 +12 29556 45.557543685955 0 +12 29556 45.557543685955 0 +12 29589 45.643993212262 0 +12 29589 45.643993212262 0 +12 29595 45.644153212262 0 +12 29595 45.644153212262 0 +12 29633 45.814557442585 0 +12 29633 45.814557442585 0 +12 29639 45.814717442585 0 +12 29639 45.814717442585 0 +12 29662 45.82439924948 0 +12 29662 45.82439924948 0 +12 29676 45.82455924948 0 +12 29676 45.82455924948 0 +12 29715 45.857383685955 0 +12 29715 45.857383685955 0 +12 29722 45.857543685955 0 +12 29722 45.857543685955 0 +12 29755 45.943993205371 0 +12 29755 45.943993205371 0 +12 29761 45.944153205371 0 +12 29761 45.944153205371 0 +12 29799 46.114557450187 0 +12 29799 46.114557450187 0 +12 29805 46.114717450187 0 +12 29805 46.114717450187 0 +12 29828 46.124399246618 0 +12 29828 46.124399246618 0 +12 29842 46.124559246618 0 +12 29842 46.124559246618 0 +12 29881 46.157383685955 0 +12 29881 46.157383685955 0 +12 29888 46.157543685955 0 +12 29888 46.157543685955 0 +12 29921 46.24399319776 0 +12 29921 46.24399319776 0 +12 29927 46.24415319776 0 +12 29927 46.24415319776 0 +12 29965 46.414557458063 0 +12 29965 46.414557458063 0 +12 29971 46.414717458063 0 +12 29971 46.414717458063 0 +12 29994 46.424399237708 0 +12 29994 46.424399237708 0 +12 30008 46.424559237708 0 +12 30008 46.424559237708 0 +12 30047 46.457383685955 0 +12 30047 46.457383685955 0 +12 30054 46.457543685955 0 +12 30054 46.457543685955 0 +12 30087 46.54399318918 0 +12 30087 46.54399318918 0 +12 30093 46.54415318918 0 +12 30093 46.54415318918 0 +12 30131 46.714557464072 0 +12 30131 46.714557464072 0 +12 30137 46.714717464072 0 +12 30137 46.714717464072 0 +12 30160 46.724399226197 0 +12 30160 46.724399226197 0 +12 30174 46.724559226197 0 +12 30174 46.724559226197 0 +12 30213 46.757383685955 0 +12 30213 46.757383685955 0 +12 30220 46.757543685955 0 +12 30220 46.757543685955 0 +12 30253 46.843993179661 0 +12 30253 46.843993179661 0 +12 30259 46.844153179661 0 +12 30259 46.844153179661 0 +12 30297 47.014557466477 0 +12 30297 47.014557466477 0 +12 30303 47.014717466477 0 +12 30303 47.014717466477 0 +12 30326 47.02439921469 0 +12 30326 47.02439921469 0 +12 30340 47.02455921469 0 +12 30340 47.02455921469 0 +12 30379 47.057383685955 0 +12 30379 47.057383685955 0 +12 30386 47.057543685955 0 +12 30386 47.057543685955 0 +12 30419 47.143993169499 0 +12 30419 47.143993169499 0 +12 30425 47.144153169499 0 +12 30425 47.144153169499 0 +12 30463 47.314557467583 0 +12 30463 47.314557467583 0 +12 30469 47.314717467583 0 +12 30469 47.314717467583 0 +12 30492 47.324399203344 0 +12 30492 47.324399203344 0 +12 30506 47.324559203344 0 +12 30506 47.324559203344 0 +12 30545 47.357383685955 0 +12 30545 47.357383685955 0 +12 30552 47.357543685955 0 +12 30552 47.357543685955 0 +12 30585 47.443993161554 0 +12 30585 47.443993161554 0 +12 30591 47.444153161554 0 +12 30591 47.444153161554 0 +12 30629 47.614557469418 0 +12 30629 47.614557469418 0 +12 30635 47.614717469418 0 +12 30635 47.614717469418 0 +12 30658 47.62439919222 0 +12 30658 47.62439919222 0 +12 30672 47.62455919222 0 +12 30672 47.62455919222 0 +12 30711 47.657383685955 0 +12 30711 47.657383685955 0 +12 30718 47.657543685955 0 +12 30718 47.657543685955 0 +12 30751 47.743993166005 0 +12 30751 47.743993166005 0 +12 30757 47.744153166005 0 +12 30757 47.744153166005 0 +12 30795 47.914557472096 0 +12 30795 47.914557472096 0 +12 30801 47.914717472096 0 +12 30801 47.914717472096 0 +12 30824 47.924399181338 0 +12 30824 47.924399181338 0 +12 30838 47.924559181338 0 +12 30838 47.924559181338 0 +12 30877 47.957383685955 0 +12 30877 47.957383685955 0 +12 30884 47.957543685955 0 +12 30884 47.957543685955 0 +12 30917 48.043993178928 0 +12 30917 48.043993178928 0 +12 30923 48.044153178928 0 +12 30923 48.044153178928 0 +12 30961 48.214557475721 0 +12 30961 48.214557475721 0 +12 30967 48.214717475721 0 +12 30967 48.214717475721 0 +12 30989 48.224399170754 0 +12 30989 48.224399170754 0 +12 30999 48.224559170754 0 +12 30999 48.224559170754 0 +12 31043 48.257383685955 0 +12 31043 48.257383685955 0 +12 31050 48.257543685955 0 +12 31050 48.257543685955 0 +12 31083 48.343993193323 0 +12 31083 48.343993193323 0 +12 31089 48.344153193323 0 +12 31089 48.344153193323 0 +12 31128 48.514557480378 0 +12 31128 48.514557480378 0 +12 31138 48.514717480378 0 +12 31138 48.514717480378 0 +12 31155 48.524399160478 0 +12 31155 48.524399160478 0 +12 31165 48.524559160478 0 +12 31165 48.524559160478 0 +12 31209 48.557383685955 0 +12 31209 48.557383685955 0 +12 31216 48.557543685955 0 +12 31216 48.557543685955 0 +12 31249 48.643993209351 0 +12 31249 48.643993209351 0 +12 31255 48.644153209351 0 +12 31255 48.644153209351 0 +12 31294 48.8145574862 0 +12 31294 48.8145574862 0 +12 31304 48.8147174862 0 +12 31304 48.8147174862 0 +12 31321 48.824399150571 0 +12 31321 48.824399150571 0 +12 31331 48.824559150571 0 +12 31331 48.824559150571 0 +12 31375 48.857383685955 0 +12 31375 48.857383685955 0 +12 31382 48.857543685955 0 +12 31382 48.857543685955 0 +12 31415 48.943993225428 0 +12 31415 48.943993225428 0 +12 31421 48.944153225428 0 +12 31421 48.944153225428 0 +12 31460 49.11455749318 0 +12 31460 49.11455749318 0 +12 31470 49.11471749318 0 +12 31470 49.11471749318 0 +12 31487 49.124399141102 0 +12 31487 49.124399141102 0 +12 31497 49.124559141102 0 +12 31497 49.124559141102 0 +12 31541 49.157383685955 0 +12 31541 49.157383685955 0 +12 31548 49.157543685955 0 +12 31548 49.157543685955 0 +12 31581 49.243993241593 0 +12 31581 49.243993241593 0 +12 31587 49.244153241593 0 +12 31587 49.244153241593 0 +12 31626 49.4145575013 0 +12 31626 49.4145575013 0 +12 31636 49.4147175013 0 +12 31636 49.4147175013 0 +12 31653 49.424399131999 0 +12 31653 49.424399131999 0 +12 31663 49.424559131999 0 +12 31663 49.424559131999 0 +12 31707 49.457383685955 0 +12 31707 49.457383685955 0 +12 31714 49.457543685955 0 +12 31714 49.457543685955 0 +12 31747 49.543993256365 0 +12 31747 49.543993256365 0 +12 31753 49.544153256365 0 +12 31753 49.544153256365 0 +12 31792 49.714557510532 0 +12 31792 49.714557510532 0 +12 31802 49.714717510532 0 +12 31802 49.714717510532 0 +12 31818 49.72439912329 0 +12 31818 49.72439912329 0 +12 31824 49.72455912329 0 +12 31824 49.72455912329 0 +12 31873 49.757383685955 0 +12 31873 49.757383685955 0 +12 31880 49.757543685955 0 +12 31880 49.757543685955 0 +12 31913 49.843993271223 0 +12 31913 49.843993271223 0 +12 31919 49.844153271223 0 +12 31919 49.844153271223 0 +12 31958 50.014557520716 0 +12 31958 50.014557520716 0 +12 31968 50.014717520716 0 +12 31968 50.014717520716 0 +12 31984 50.024399114997 0 +12 31984 50.024399114997 0 +12 31990 50.024559114997 0 +12 31990 50.024559114997 0 +12 32039 50.057383685955 0 +12 32039 50.057383685955 0 +12 32046 50.057543685955 0 +12 32046 50.057543685955 0 +12 32079 50.143993285388 0 +12 32079 50.143993285388 0 +12 32085 50.144153285388 0 +12 32085 50.144153285388 0 +12 32124 50.314557531836 0 +12 32124 50.314557531836 0 +12 32134 50.314717531836 0 +12 32134 50.314717531836 0 +12 32150 50.324399107181 0 +12 32150 50.324399107181 0 +12 32156 50.324559107181 0 +12 32156 50.324559107181 0 +12 32205 50.357383685955 0 +12 32205 50.357383685955 0 +12 32212 50.357543685955 0 +12 32212 50.357543685955 0 +12 32245 50.443993299881 0 +12 32245 50.443993299881 0 +12 32251 50.444153299881 0 +12 32251 50.444153299881 0 +12 32290 50.614557543841 0 +12 32290 50.614557543841 0 +12 32300 50.614717543841 0 +12 32300 50.614717543841 0 +12 32316 50.6243990998 0 +12 32316 50.6243990998 0 +12 32322 50.6245590998 0 +12 32322 50.6245590998 0 +12 32371 50.657383685955 0 +12 32371 50.657383685955 0 +12 32378 50.657543685955 0 +12 32378 50.657543685955 0 +12 32411 50.743993314719 0 +12 32411 50.743993314719 0 +12 32417 50.744153314719 0 +12 32417 50.744153314719 0 +12 32456 50.914557556641 0 +12 32456 50.914557556641 0 +12 32466 50.914717556641 0 +12 32466 50.914717556641 0 +12 32482 50.924399092883 0 +12 32482 50.924399092883 0 +12 32488 50.924559092883 0 +12 32488 50.924559092883 0 +12 32537 50.957383685955 0 +12 32537 50.957383685955 0 +12 32544 50.957543685955 0 +12 32544 50.957543685955 0 +12 32577 51.043993329888 0 +12 32577 51.043993329888 0 +12 32583 51.044153329888 0 +12 32583 51.044153329888 0 +12 32644 51.224399086505 0 +12 32644 51.224399086505 0 +12 32650 51.224559086505 0 +12 32650 51.224559086505 0 +12 32699 51.257383685955 0 +12 32699 51.257383685955 0 +12 32706 51.257543685955 0 +12 32706 51.257543685955 0 +12 32735 51.343993345414 0 +12 32735 51.343993345414 0 +12 32741 51.344153345414 0 +12 32741 51.344153345414 0 +12 32802 51.524399080627 0 +12 32802 51.524399080627 0 +12 32808 51.524559080627 0 +12 32808 51.524559080627 0 +12 32835 51.531276906599 0 +12 32835 51.531276906599 0 +12 32845 51.531436906599 0 +12 32845 51.531436906599 0 +12 32861 51.557383685955 0 +12 32861 51.557383685955 0 +12 32868 51.557543685955 0 +12 32868 51.557543685955 0 +12 32901 51.643993361304 0 +12 32901 51.643993361304 0 +12 32907 51.644153361304 0 +12 32907 51.644153361304 0 +12 32968 51.824399075287 0 +12 32968 51.824399075287 0 +12 32974 51.824559075287 0 +12 32974 51.824559075287 0 +12 33001 51.831276887561 0 +12 33001 51.831276887561 0 +12 33011 51.831436887561 0 +12 33011 51.831436887561 0 +12 33027 51.857383685955 0 +12 33027 51.857383685955 0 +12 33034 51.857543685955 0 +12 33034 51.857543685955 0 +12 33067 51.943993377578 0 +12 33067 51.943993377578 0 +12 33073 51.944153377578 0 +12 33073 51.944153377578 0 +12 33134 52.124399070526 0 +12 33134 52.124399070526 0 +12 33140 52.124559070526 0 +12 33140 52.124559070526 0 +12 33167 52.131276868507 0 +12 33167 52.131276868507 0 +12 33177 52.131436868507 0 +12 33177 52.131436868507 0 +12 33193 52.157383685955 0 +12 33193 52.157383685955 0 +12 33200 52.157543685955 0 +12 33200 52.157543685955 0 +12 33233 52.243993394241 0 +12 33233 52.243993394241 0 +12 33239 52.244153394241 0 +12 33239 52.244153394241 0 +12 33300 52.424399066364 0 +12 33300 52.424399066364 0 +12 33306 52.424559066364 0 +12 33306 52.424559066364 0 +12 33333 52.431276849398 0 +12 33333 52.431276849398 0 +12 33343 52.431436849398 0 +12 33343 52.431436849398 0 +12 33359 52.457383685955 0 +12 33359 52.457383685955 0 +12 33366 52.457543685955 0 +12 33366 52.457543685955 0 +12 33399 52.543993411231 0 +12 33399 52.543993411231 0 +12 33405 52.544153411231 0 +12 33405 52.544153411231 0 +12 33466 52.724399062755 0 +12 33466 52.724399062755 0 +12 33472 52.724559062755 0 +12 33472 52.724559062755 0 +12 33498 52.731276830378 0 +12 33498 52.731276830378 0 +12 33504 52.731436830378 0 +12 33504 52.731436830378 0 +12 33525 52.757383685955 0 +12 33525 52.757383685955 0 +12 33532 52.757543685955 0 +12 33532 52.757543685955 0 +12 33565 52.843993428579 0 +12 33565 52.843993428579 0 +12 33571 52.844153428579 0 +12 33571 52.844153428579 0 +12 33632 53.024399059705 0 +12 33632 53.024399059705 0 +12 33638 53.024559059705 0 +12 33638 53.024559059705 0 +12 33664 53.031276811401 0 +12 33664 53.031276811401 0 +12 33670 53.031436811401 0 +12 33670 53.031436811401 0 +12 33691 53.057383685955 0 +12 33691 53.057383685955 0 +12 33698 53.057543685955 0 +12 33698 53.057543685955 0 +12 33731 53.143993445991 0 +12 33731 53.143993445991 0 +12 33737 53.144153445991 0 +12 33737 53.144153445991 0 +12 33774 53.324399056666 0 +12 33774 53.324399056666 0 +12 33779 53.324559056666 0 +12 33779 53.324559056666 0 +12 33803 53.331276793082 0 +12 33803 53.331276793082 0 +12 33808 53.331436793082 0 +12 33808 53.331436793082 0 +12 33828 53.357383685955 0 +12 33828 53.357383685955 0 +12 33834 53.357543685955 0 +12 33834 53.357543685955 0 +12 33865 53.443993462692 0 +12 33865 53.443993462692 0 +12 33870 53.444153462692 0 +12 33870 53.444153462692 0 +12 33901 53.624399053363 0 +12 33901 53.624399053363 0 +12 33906 53.624559053363 0 +12 33906 53.624559053363 0 +12 33930 53.631276775636 0 +12 33930 53.631276775636 0 +12 33935 53.631436775636 0 +12 33935 53.631436775636 0 +12 33955 53.657383685955 0 +12 33955 53.657383685955 0 +12 33961 53.657543685955 0 +12 33961 53.657543685955 0 +12 33992 53.74399347871 0 +12 33992 53.74399347871 0 +12 33997 53.74415347871 0 +12 33997 53.74415347871 0 +12 34028 53.924399049701 0 +12 34028 53.924399049701 0 +12 34033 53.924559049701 0 +12 34033 53.924559049701 0 +12 34057 53.931276759068 0 +12 34057 53.931276759068 0 +12 34062 53.931436759068 0 +12 34062 53.931436759068 0 +12 34082 53.957383685955 0 +12 34082 53.957383685955 0 +12 34088 53.957543685955 0 +12 34088 53.957543685955 0 +12 34119 54.04399349386 0 +12 34119 54.04399349386 0 +12 34124 54.04415349386 0 +12 34124 54.04415349386 0 +12 34155 54.224399045616 0 +12 34155 54.224399045616 0 +12 34160 54.224559045616 0 +12 34160 54.224559045616 0 +12 34184 54.231276743362 0 +12 34184 54.231276743362 0 +12 34189 54.231436743362 0 +12 34189 54.231436743362 0 +12 34209 54.257383685955 0 +12 34209 54.257383685955 0 +12 34215 54.257543685955 0 +12 34215 54.257543685955 0 +12 34246 54.343993508088 0 +12 34246 54.343993508088 0 +12 34251 54.344153508088 0 +12 34251 54.344153508088 0 +12 34282 54.524399041209 0 +12 34282 54.524399041209 0 +12 34287 54.524559041209 0 +12 34287 54.524559041209 0 +12 34311 54.531276728362 0 +12 34311 54.531276728362 0 +12 34316 54.531436728362 0 +12 34316 54.531436728362 0 +12 34336 54.557383685955 0 +12 34336 54.557383685955 0 +12 34342 54.557543685955 0 +12 34342 54.557543685955 0 +12 34373 54.643993521993 0 +12 34373 54.643993521993 0 +12 34378 54.644153521993 0 +12 34378 54.644153521993 0 +12 34409 54.824399037501 0 +12 34409 54.824399037501 0 +12 34414 54.824559037501 0 +12 34414 54.824559037501 0 +12 34438 54.831276713317 0 +12 34438 54.831276713317 0 +12 34443 54.831436713317 0 +12 34443 54.831436713317 0 +12 34463 54.857383685955 0 +12 34463 54.857383685955 0 +12 34469 54.857543685955 0 +12 34469 54.857543685955 0 +12 34500 54.943993536727 0 +12 34500 54.943993536727 0 +12 34505 54.944153536727 0 +12 34505 54.944153536727 0 +12 34536 55.124399034691 0 +12 34536 55.124399034691 0 +12 34541 55.124559034691 0 +12 34541 55.124559034691 0 +12 34565 55.131276698742 0 +12 34565 55.131276698742 0 +12 34570 55.131436698742 0 +12 34570 55.131436698742 0 +12 34590 55.157383685955 0 +12 34590 55.157383685955 0 +12 34596 55.157543685955 0 +12 34596 55.157543685955 0 +12 34627 55.243993552196 0 +12 34627 55.243993552196 0 +12 34632 55.244153552196 0 +12 34632 55.244153552196 0 +12 34663 55.424399032731 0 +12 34663 55.424399032731 0 +12 34668 55.424559032731 0 +12 34668 55.424559032731 0 +12 34692 55.431276684798 0 +12 34692 55.431276684798 0 +12 34697 55.431436684798 0 +12 34697 55.431436684798 0 +12 34717 55.457383685955 0 +12 34717 55.457383685955 0 +12 34723 55.457543685955 0 +12 34723 55.457543685955 0 +12 34754 55.543993568263 0 +12 34754 55.543993568263 0 +12 34759 55.544153568263 0 +12 34759 55.544153568263 0 +12 34790 55.72439903167 0 +12 34790 55.72439903167 0 +12 34795 55.72455903167 0 +12 34795 55.72455903167 0 +12 34819 55.731276671503 0 +12 34819 55.731276671503 0 +12 34824 55.731436671503 0 +12 34824 55.731436671503 0 +12 34844 55.757383685955 0 +12 34844 55.757383685955 0 +12 34850 55.757543685955 0 +12 34850 55.757543685955 0 +12 34881 55.843993584895 0 +12 34881 55.843993584895 0 +12 34886 55.844153584895 0 +12 34886 55.844153584895 0 +12 34917 56.02439903159 0 +12 34917 56.02439903159 0 +12 34922 56.02455903159 0 +12 34922 56.02455903159 0 +12 34946 56.031276658808 0 +12 34946 56.031276658808 0 +12 34951 56.031436658808 0 +12 34951 56.031436658808 0 +12 34971 56.057383685955 0 +12 34971 56.057383685955 0 +12 34977 56.057543685955 0 +12 34977 56.057543685955 0 +12 35008 56.143993602134 0 +12 35008 56.143993602134 0 +12 35013 56.144153602134 0 +12 35013 56.144153602134 0 +12 35044 56.324399032473 0 +12 35044 56.324399032473 0 +12 35049 56.324559032473 0 +12 35049 56.324559032473 0 +12 35073 56.331276646771 0 +12 35073 56.331276646771 0 +12 35078 56.331436646771 0 +12 35078 56.331436646771 0 +12 35098 56.357383685955 0 +12 35098 56.357383685955 0 +12 35104 56.357543685955 0 +12 35104 56.357543685955 0 +12 35135 56.443993619822 0 +12 35135 56.443993619822 0 +12 35140 56.444153619822 0 +12 35140 56.444153619822 0 +12 35169 56.624399034306 0 +12 35169 56.624399034306 0 +12 35173 56.624559034306 0 +12 35173 56.624559034306 0 +12 35192 56.631276634911 0 +12 35192 56.631276634911 0 +12 35196 56.631436634911 0 +12 35196 56.631436634911 0 +12 35215 56.657383685955 0 +12 35215 56.657383685955 0 +12 35220 56.657543685955 0 +12 35220 56.657543685955 0 +12 35253 56.924399037177 0 +12 35253 56.924399037177 0 +12 35257 56.924559037177 0 +12 35257 56.924559037177 0 +12 35276 56.931276625815 0 +12 35276 56.931276625815 0 +12 35280 56.931436625815 0 +12 35280 56.931436625815 0 +12 35299 56.957383685955 0 +12 35299 56.957383685955 0 +12 35304 56.957543685955 0 +12 35304 56.957543685955 0 +12 35337 57.224399041135 0 +12 35337 57.224399041135 0 +12 35341 57.224559041135 0 +12 35341 57.224559041135 0 +12 35360 57.231276624504 0 +12 35360 57.231276624504 0 +12 35364 57.231436624504 0 +12 35364 57.231436624504 0 +12 35383 57.257383685955 0 +12 35383 57.257383685955 0 +12 35388 57.257543685955 0 +12 35388 57.257543685955 0 +12 35421 57.524399046156 0 +12 35421 57.524399046156 0 +12 35425 57.524559046156 0 +12 35425 57.524559046156 0 +12 35444 57.531276623773 0 +12 35444 57.531276623773 0 +12 35448 57.531436623773 0 +12 35448 57.531436623773 0 +12 35467 57.557383685955 0 +12 35467 57.557383685955 0 +12 35472 57.557543685955 0 +12 35472 57.557543685955 0 +12 35505 57.824399052067 0 +12 35505 57.824399052067 0 +12 35509 57.824559052067 0 +12 35509 57.824559052067 0 +12 35528 57.83127662344 0 +12 35528 57.83127662344 0 +12 35532 57.83143662344 0 +12 35532 57.83143662344 0 +12 35551 57.857383685955 0 +12 35551 57.857383685955 0 +12 35556 57.857543685955 0 +12 35556 57.857543685955 0 +12 35589 58.12439905849 0 +12 35589 58.12439905849 0 +12 35593 58.12455905849 0 +12 35593 58.12455905849 0 +12 35612 58.131276624201 0 +12 35612 58.131276624201 0 +12 35616 58.131436624201 0 +12 35616 58.131436624201 0 +12 35635 58.157383685955 0 +12 35635 58.157383685955 0 +12 35640 58.157543685955 0 +12 35640 58.157543685955 0 +12 35673 58.424399065464 0 +12 35673 58.424399065464 0 +12 35677 58.424559065464 0 +12 35677 58.424559065464 0 +12 35696 58.431276626037 0 +12 35696 58.431276626037 0 +12 35700 58.431436626037 0 +12 35700 58.431436626037 0 +12 35719 58.457383685955 0 +12 35719 58.457383685955 0 +12 35724 58.457543685955 0 +12 35724 58.457543685955 0 +12 35757 58.72439907295 0 +12 35757 58.72439907295 0 +12 35761 58.72455907295 0 +12 35761 58.72455907295 0 +12 35780 58.731276628991 0 +12 35780 58.731276628991 0 +12 35784 58.731436628991 0 +12 35784 58.731436628991 0 +12 35803 58.757383685955 0 +12 35803 58.757383685955 0 +12 35808 58.757543685955 0 +12 35808 58.757543685955 0 +12 35841 59.024399080905 0 +12 35841 59.024399080905 0 +12 35845 59.024559080905 0 +12 35845 59.024559080905 0 +12 35864 59.031276633114 0 +12 35864 59.031276633114 0 +12 35868 59.031436633114 0 +12 35868 59.031436633114 0 +12 35887 59.057383685955 0 +12 35887 59.057383685955 0 +12 35892 59.057543685955 0 +12 35892 59.057543685955 0 +12 35925 59.324399089353 0 +12 35925 59.324399089353 0 +12 35929 59.324559089353 0 +12 35929 59.324559089353 0 +12 35948 59.331276638423 0 +12 35948 59.331276638423 0 +12 35952 59.331436638423 0 +12 35952 59.331436638423 0 +12 35971 59.357383685955 0 +12 35971 59.357383685955 0 +12 35976 59.357543685955 0 +12 35976 59.357543685955 0 +12 36009 59.624399098247 0 +12 36009 59.624399098247 0 +12 36013 59.624559098247 0 +12 36013 59.624559098247 0 +12 36032 59.631276644886 0 +12 36032 59.631276644886 0 +12 36036 59.631436644886 0 +12 36036 59.631436644886 0 +12 36055 59.657383685955 0 +12 36055 59.657383685955 0 +12 36060 59.657543685955 0 +12 36060 59.657543685955 0 +12 36093 59.924399107553 0 +12 36093 59.924399107553 0 +12 36097 59.924559107553 0 +12 36097 59.924559107553 0 +12 36116 59.931276652523 0 +12 36116 59.931276652523 0 +12 36120 59.931436652523 0 +12 36120 59.931436652523 0 +12 36139 59.957383685955 0 +12 36139 59.957383685955 0 +12 36144 59.957543685955 0 +12 36144 59.957543685955 0 +12 36177 60.224399117246 0 +12 36177 60.224399117246 0 +12 36181 60.224559117246 0 +12 36181 60.224559117246 0 +12 36196 60.231276661221 0 +12 36196 60.231276661221 0 +12 36200 60.231436661221 0 +12 36200 60.231436661221 0 +12 36215 60.257383685955 0 +12 36215 60.257383685955 0 +12 36220 60.257543685955 0 +12 36220 60.257543685955 0 +12 36253 60.524399127334 0 +12 36253 60.524399127334 0 +12 36257 60.524559127334 0 +12 36257 60.524559127334 0 +12 36272 60.53127667062 0 +12 36272 60.53127667062 0 +12 36276 60.53143667062 0 +12 36276 60.53143667062 0 +12 36291 60.557383685955 0 +12 36291 60.557383685955 0 +12 36296 60.557543685955 0 +12 36296 60.557543685955 0 +12 36329 60.824399137773 0 +12 36329 60.824399137773 0 +12 36333 60.824559137773 0 +12 36333 60.824559137773 0 +12 36348 60.831276680584 0 +12 36348 60.831276680584 0 +12 36352 60.831436680584 0 +12 36352 60.831436680584 0 +12 36367 60.857383685955 0 +12 36367 60.857383685955 0 +12 36372 60.857543685955 0 +12 36372 60.857543685955 0 +12 36405 61.124399148508 0 +12 36405 61.124399148508 0 +12 36409 61.124559148508 0 +12 36409 61.124559148508 0 +12 36424 61.131276691084 0 +12 36424 61.131276691084 0 +12 36428 61.131436691084 0 +12 36428 61.131436691084 0 +12 36443 61.157383685955 0 +12 36443 61.157383685955 0 +12 36448 61.157543685955 0 +12 36448 61.157543685955 0 +12 36481 61.424399159611 0 +12 36481 61.424399159611 0 +12 36485 61.424559159611 0 +12 36485 61.424559159611 0 +12 36500 61.431276701991 0 +12 36500 61.431276701991 0 +12 36504 61.431436701991 0 +12 36504 61.431436701991 0 +12 36519 61.457383685955 0 +12 36519 61.457383685955 0 +12 36524 61.457543685955 0 +12 36524 61.457543685955 0 +12 36557 61.724399171016 0 +12 36557 61.724399171016 0 +12 36561 61.724559171016 0 +12 36561 61.724559171016 0 +12 36576 61.731276713345 0 +12 36576 61.731276713345 0 +12 36580 61.731436713345 0 +12 36580 61.731436713345 0 +12 36595 61.757383685955 0 +12 36595 61.757383685955 0 +12 36600 61.757543685955 0 +12 36600 61.757543685955 0 +12 36633 62.024399182109 0 +12 36633 62.024399182109 0 +12 36637 62.024559182109 0 +12 36637 62.024559182109 0 +12 36652 62.031276725245 0 +12 36652 62.031276725245 0 +12 36656 62.031436725245 0 +12 36656 62.031436725245 0 +12 36671 62.057383685955 0 +12 36671 62.057383685955 0 +12 36676 62.057543685955 0 +12 36676 62.057543685955 0 +12 36709 62.324399192148 0 +12 36709 62.324399192148 0 +12 36713 62.324559192148 0 +12 36713 62.324559192148 0 +12 36728 62.3312767377 0 +12 36728 62.3312767377 0 +12 36732 62.3314367377 0 +12 36732 62.3314367377 0 +12 36747 62.357383685955 0 +12 36747 62.357383685955 0 +12 36752 62.357543685955 0 +12 36752 62.357543685955 0 +12 36785 62.624399201089 0 +12 36785 62.624399201089 0 +12 36789 62.624559201089 0 +12 36789 62.624559201089 0 +12 36804 62.631276750535 0 +12 36804 62.631276750535 0 +12 36808 62.631436750535 0 +12 36808 62.631436750535 0 +12 36823 62.657383685955 0 +12 36823 62.657383685955 0 +12 36828 62.657543685955 0 +12 36828 62.657543685955 0 +12 36861 62.924399208912 0 +12 36861 62.924399208912 0 +12 36865 62.924559208912 0 +12 36865 62.924559208912 0 +12 36880 62.931276763684 0 +12 36880 62.931276763684 0 +12 36884 62.931436763684 0 +12 36884 62.931436763684 0 +12 36899 62.957383685955 0 +12 36899 62.957383685955 0 +12 36904 62.957543685955 0 +12 36904 62.957543685955 0 +13 22 2.1 0 +13 22 2.1 0 +13 49 2.614557181566 0 +13 49 2.614557181566 0 +13 52 2.614717181566 0 +13 52 2.614717181566 0 +13 65 2.657383685955 0 +13 65 2.657383685955 0 +13 69 2.657543685955 0 +13 69 2.657543685955 0 +13 94 2.914557182681 0 +13 94 2.914557182681 0 +13 97 2.914717182681 0 +13 97 2.914717182681 0 +13 110 2.957383685955 0 +13 110 2.957383685955 0 +13 114 2.957543685955 0 +13 114 2.957543685955 0 +13 141 3.214557183861 0 +13 141 3.214557183861 0 +13 145 3.214717183861 0 +13 145 3.214717183861 0 +13 163 3.257383685955 0 +13 163 3.257383685955 0 +13 168 3.257543685955 0 +13 168 3.257543685955 0 +13 201 3.514557185136 0 +13 201 3.514557185136 0 +13 205 3.514717185136 0 +13 205 3.514717185136 0 +13 226 3.53127690138 0 +13 226 3.53127690138 0 +13 234 3.53143690138 0 +13 234 3.53143690138 0 +13 247 3.557383685955 0 +13 247 3.557383685955 0 +13 252 3.557543685955 0 +13 252 3.557543685955 0 +13 285 3.814557186493 0 +13 285 3.814557186493 0 +13 289 3.814717186493 0 +13 289 3.814717186493 0 +13 310 3.831276901063 0 +13 310 3.831276901063 0 +13 318 3.831436901063 0 +13 318 3.831436901063 0 +13 331 3.857383685955 0 +13 331 3.857383685955 0 +13 336 3.857543685955 0 +13 336 3.857543685955 0 +13 370 4.114557187941 0 +13 370 4.114557187941 0 +13 375 4.114717187941 0 +13 375 4.114717187941 0 +13 398 4.131276900741 0 +13 398 4.131276900741 0 +13 411 4.131436900741 0 +13 411 4.131436900741 0 +13 424 4.157383685955 0 +13 424 4.157383685955 0 +13 430 4.157543685955 0 +13 430 4.157543685955 0 +13 467 4.414557189528 0 +13 467 4.414557189528 0 +13 472 4.414717189528 0 +13 472 4.414717189528 0 +13 495 4.431276900411 0 +13 495 4.431276900411 0 +13 508 4.431436900411 0 +13 508 4.431436900411 0 +13 521 4.457383685955 0 +13 521 4.457383685955 0 +13 527 4.457543685955 0 +13 527 4.457543685955 0 +13 586 4.714557191249 0 +13 586 4.714557191249 0 +13 591 4.714717191249 0 +13 591 4.714717191249 0 +13 614 4.731276900107 0 +13 614 4.731276900107 0 +13 627 4.731436900107 0 +13 627 4.731436900107 0 +13 640 4.757383685955 0 +13 640 4.757383685955 0 +13 646 4.757543685955 0 +13 646 4.757543685955 0 +13 705 5.014557193103 0 +13 705 5.014557193103 0 +13 710 5.014717193103 0 +13 710 5.014717193103 0 +13 733 5.031276899786 0 +13 733 5.031276899786 0 +13 746 5.031436899786 0 +13 746 5.031436899786 0 +13 759 5.057383685955 0 +13 759 5.057383685955 0 +13 765 5.057543685955 0 +13 765 5.057543685955 0 +13 833 5.314557195171 0 +13 833 5.314557195171 0 +13 839 5.314717195171 0 +13 839 5.314717195171 0 +13 863 5.331276899476 0 +13 863 5.331276899476 0 +13 877 5.331436899476 0 +13 877 5.331436899476 0 +13 891 5.357383685955 0 +13 891 5.357383685955 0 +13 898 5.357543685955 0 +13 898 5.357543685955 0 +13 967 5.614557197442 0 +13 967 5.614557197442 0 +13 973 5.614717197442 0 +13 973 5.614717197442 0 +13 997 5.631276899171 0 +13 997 5.631276899171 0 +13 1011 5.631436899171 0 +13 1011 5.631436899171 0 +13 1025 5.657383685955 0 +13 1025 5.657383685955 0 +13 1032 5.657543685955 0 +13 1032 5.657543685955 0 +13 1125 5.914557199962 0 +13 1125 5.914557199962 0 +13 1131 5.914717199962 0 +13 1131 5.914717199962 0 +13 1155 5.931276898866 0 +13 1155 5.931276898866 0 +13 1169 5.931436898866 0 +13 1169 5.931436898866 0 +13 1183 5.957383685955 0 +13 1183 5.957383685955 0 +13 1190 5.957543685955 0 +13 1190 5.957543685955 0 +13 1286 6.214557202762 0 +13 1286 6.214557202762 0 +13 1297 6.214717202762 0 +13 1297 6.214717202762 0 +13 1322 6.231276898564 0 +13 1322 6.231276898564 0 +13 1341 6.231436898564 0 +13 1341 6.231436898564 0 +13 1355 6.257383685955 0 +13 1355 6.257383685955 0 +13 1363 6.257543685955 0 +13 1363 6.257543685955 0 +13 1469 6.514557205852 0 +13 1469 6.514557205852 0 +13 1480 6.514717205852 0 +13 1480 6.514717205852 0 +13 1503 6.524399075657 0 +13 1503 6.524399075657 0 +13 1518 6.524559075657 0 +13 1518 6.524559075657 0 +13 1538 6.531276898265 0 +13 1538 6.531276898265 0 +13 1557 6.531436898265 0 +13 1557 6.531436898265 0 +13 1572 6.557383685955 0 +13 1572 6.557383685955 0 +13 1580 6.557543685955 0 +13 1580 6.557543685955 0 +13 1686 6.814557209291 0 +13 1686 6.814557209291 0 +13 1697 6.814717209291 0 +13 1697 6.814717209291 0 +13 1720 6.82439907586 0 +13 1720 6.82439907586 0 +13 1735 6.82455907586 0 +13 1735 6.82455907586 0 +13 1755 6.831276897959 0 +13 1755 6.831276897959 0 +13 1774 6.831436897959 0 +13 1774 6.831436897959 0 +13 1789 6.857383685955 0 +13 1789 6.857383685955 0 +13 1797 6.857543685955 0 +13 1797 6.857543685955 0 +13 1903 7.1145572131 0 +13 1903 7.1145572131 0 +13 1914 7.1147172131 0 +13 1914 7.1147172131 0 +13 1937 7.124399076049 0 +13 1937 7.124399076049 0 +13 1952 7.124559076049 0 +13 1952 7.124559076049 0 +13 1972 7.131276897653 0 +13 1972 7.131276897653 0 +13 1991 7.131436897653 0 +13 1991 7.131436897653 0 +13 2006 7.157383685955 0 +13 2006 7.157383685955 0 +13 2014 7.157543685955 0 +13 2014 7.157543685955 0 +13 2120 7.414557217271 0 +13 2120 7.414557217271 0 +13 2131 7.414717217271 0 +13 2131 7.414717217271 0 +13 2154 7.424399076251 0 +13 2154 7.424399076251 0 +13 2169 7.424559076251 0 +13 2169 7.424559076251 0 +13 2189 7.431276897348 0 +13 2189 7.431276897348 0 +13 2208 7.431436897348 0 +13 2208 7.431436897348 0 +13 2223 7.457383685955 0 +13 2223 7.457383685955 0 +13 2231 7.457543685955 0 +13 2231 7.457543685955 0 +13 2337 7.714557221838 0 +13 2337 7.714557221838 0 +13 2348 7.714717221838 0 +13 2348 7.714717221838 0 +13 2371 7.724399076456 0 +13 2371 7.724399076456 0 +13 2386 7.724559076456 0 +13 2386 7.724559076456 0 +13 2406 7.73127689705 0 +13 2406 7.73127689705 0 +13 2425 7.73143689705 0 +13 2425 7.73143689705 0 +13 2440 7.757383685955 0 +13 2440 7.757383685955 0 +13 2448 7.757543685955 0 +13 2448 7.757543685955 0 +13 2554 8.014557226859 0 +13 2554 8.014557226859 0 +13 2565 8.014717226859 0 +13 2565 8.014717226859 0 +13 2588 8.024399076668 0 +13 2588 8.024399076668 0 +13 2603 8.024559076668 0 +13 2603 8.024559076668 0 +13 2623 8.031276896762 0 +13 2623 8.031276896762 0 +13 2642 8.031436896762 0 +13 2642 8.031436896762 0 +13 2657 8.057383685955 0 +13 2657 8.057383685955 0 +13 2665 8.057543685955 0 +13 2665 8.057543685955 0 +13 2771 8.314557232422 0 +13 2771 8.314557232422 0 +13 2782 8.314717232422 0 +13 2782 8.314717232422 0 +13 2805 8.324399076881 0 +13 2805 8.324399076881 0 +13 2820 8.324559076881 0 +13 2820 8.324559076881 0 +13 2844 8.331276896481 0 +13 2844 8.331276896481 0 +13 2863 8.331436896481 0 +13 2863 8.331436896481 0 +13 2878 8.357383685955 0 +13 2878 8.357383685955 0 +13 2886 8.357543685955 0 +13 2886 8.357543685955 0 +13 2996 8.614557238496 0 +13 2996 8.614557238496 0 +13 3007 8.614717238496 0 +13 3007 8.614717238496 0 +13 3030 8.6243990771 0 +13 3030 8.6243990771 0 +13 3045 8.6245590771 0 +13 3045 8.6245590771 0 +13 3069 8.63127689619 0 +13 3069 8.63127689619 0 +13 3088 8.63143689619 0 +13 3088 8.63143689619 0 +13 3103 8.657383685955 0 +13 3103 8.657383685955 0 +13 3111 8.657543685955 0 +13 3111 8.657543685955 0 +13 3222 8.914557245124 0 +13 3222 8.914557245124 0 +13 3237 8.914717245124 0 +13 3237 8.914717245124 0 +13 3255 8.924399077324 0 +13 3255 8.924399077324 0 +13 3270 8.924559077324 0 +13 3270 8.924559077324 0 +13 3294 8.931276895893 0 +13 3294 8.931276895893 0 +13 3313 8.931436895893 0 +13 3313 8.931436895893 0 +13 3328 8.957383685955 0 +13 3328 8.957383685955 0 +13 3336 8.957543685955 0 +13 3336 8.957543685955 0 +13 3447 9.214557252325 0 +13 3447 9.214557252325 0 +13 3462 9.214717252325 0 +13 3462 9.214717252325 0 +13 3480 9.224399077547 0 +13 3480 9.224399077547 0 +13 3495 9.224559077547 0 +13 3495 9.224559077547 0 +13 3519 9.231276895621 0 +13 3519 9.231276895621 0 +13 3538 9.231436895621 0 +13 3538 9.231436895621 0 +13 3553 9.257383685955 0 +13 3553 9.257383685955 0 +13 3561 9.257543685955 0 +13 3561 9.257543685955 0 +13 3672 9.514557260085 0 +13 3672 9.514557260085 0 +13 3687 9.514717260085 0 +13 3687 9.514717260085 0 +13 3705 9.52439907778 0 +13 3705 9.52439907778 0 +13 3720 9.52455907778 0 +13 3720 9.52455907778 0 +13 3744 9.531276895347 0 +13 3744 9.531276895347 0 +13 3763 9.531436895347 0 +13 3763 9.531436895347 0 +13 3778 9.557383685955 0 +13 3778 9.557383685955 0 +13 3786 9.557543685955 0 +13 3786 9.557543685955 0 +13 3897 9.814557268307 0 +13 3897 9.814557268307 0 +13 3912 9.814717268307 0 +13 3912 9.814717268307 0 +13 3930 9.824399078019 0 +13 3930 9.824399078019 0 +13 3945 9.824559078019 0 +13 3945 9.824559078019 0 +13 3969 9.831276895075 0 +13 3969 9.831276895075 0 +13 3988 9.831436895075 0 +13 3988 9.831436895075 0 +13 4003 9.857383685955 0 +13 4003 9.857383685955 0 +13 4011 9.857543685955 0 +13 4011 9.857543685955 0 +13 4122 10.114557276848 0 +13 4122 10.114557276848 0 +13 4137 10.114717276848 0 +13 4137 10.114717276848 0 +13 4155 10.124399078264 0 +13 4155 10.124399078264 0 +13 4170 10.124559078264 0 +13 4170 10.124559078264 0 +13 4194 10.131276894808 0 +13 4194 10.131276894808 0 +13 4213 10.131436894808 0 +13 4213 10.131436894808 0 +13 4228 10.157383685955 0 +13 4228 10.157383685955 0 +13 4236 10.157543685955 0 +13 4236 10.157543685955 0 +13 4347 10.414557285658 0 +13 4347 10.414557285658 0 +13 4362 10.414717285658 0 +13 4362 10.414717285658 0 +13 4380 10.4243990785 0 +13 4380 10.4243990785 0 +13 4395 10.4245590785 0 +13 4395 10.4245590785 0 +13 4419 10.431276894532 0 +13 4419 10.431276894532 0 +13 4438 10.431436894532 0 +13 4438 10.431436894532 0 +13 4453 10.457383685955 0 +13 4453 10.457383685955 0 +13 4461 10.457543685955 0 +13 4461 10.457543685955 0 +13 4576 10.714557294754 0 +13 4576 10.714557294754 0 +13 4591 10.714717294754 0 +13 4591 10.714717294754 0 +13 4613 10.724399078727 0 +13 4613 10.724399078727 0 +13 4628 10.724559078727 0 +13 4628 10.724559078727 0 +13 4652 10.731276894259 0 +13 4652 10.731276894259 0 +13 4671 10.731436894259 0 +13 4671 10.731436894259 0 +13 4686 10.757383685955 0 +13 4686 10.757383685955 0 +13 4694 10.757543685955 0 +13 4694 10.757543685955 0 +13 4809 11.014557304135 0 +13 4809 11.014557304135 0 +13 4824 11.014717304135 0 +13 4824 11.014717304135 0 +13 4846 11.024399078987 0 +13 4846 11.024399078987 0 +13 4861 11.024559078987 0 +13 4861 11.024559078987 0 +13 4885 11.031276893999 0 +13 4885 11.031276893999 0 +13 4904 11.031436893999 0 +13 4904 11.031436893999 0 +13 4919 11.057383685955 0 +13 4919 11.057383685955 0 +13 4927 11.057543685955 0 +13 4927 11.057543685955 0 +13 5042 11.314557313736 0 +13 5042 11.314557313736 0 +13 5057 11.314717313736 0 +13 5057 11.314717313736 0 +13 5079 11.324399079221 0 +13 5079 11.324399079221 0 +13 5094 11.324559079221 0 +13 5094 11.324559079221 0 +13 5118 11.331276893733 0 +13 5118 11.331276893733 0 +13 5137 11.331436893733 0 +13 5137 11.331436893733 0 +13 5152 11.357383685955 0 +13 5152 11.357383685955 0 +13 5160 11.357543685955 0 +13 5160 11.357543685955 0 +13 5275 11.614557323591 0 +13 5275 11.614557323591 0 +13 5290 11.614717323591 0 +13 5290 11.614717323591 0 +13 5312 11.624399079471 0 +13 5312 11.624399079471 0 +13 5327 11.624559079471 0 +13 5327 11.624559079471 0 +13 5351 11.631276893479 0 +13 5351 11.631276893479 0 +13 5370 11.631436893479 0 +13 5370 11.631436893479 0 +13 5389 11.657383685955 0 +13 5389 11.657383685955 0 +13 5397 11.657543685955 0 +13 5397 11.657543685955 0 +13 5516 11.914557333695 0 +13 5516 11.914557333695 0 +13 5531 11.914717333695 0 +13 5531 11.914717333695 0 +13 5553 11.92439907973 0 +13 5553 11.92439907973 0 +13 5568 11.92455907973 0 +13 5568 11.92455907973 0 +13 5592 11.931276893219 0 +13 5592 11.931276893219 0 +13 5611 11.931436893219 0 +13 5611 11.931436893219 0 +13 5630 11.957383685955 0 +13 5630 11.957383685955 0 +13 5638 11.957543685955 0 +13 5638 11.957543685955 0 +13 5757 12.214557344013 0 +13 5757 12.214557344013 0 +13 5772 12.214717344013 0 +13 5772 12.214717344013 0 +13 5794 12.22439907998 0 +13 5794 12.22439907998 0 +13 5809 12.22455907998 0 +13 5809 12.22455907998 0 +13 5833 12.231276892968 0 +13 5833 12.231276892968 0 +13 5852 12.231436892968 0 +13 5852 12.231436892968 0 +13 5871 12.257383685955 0 +13 5871 12.257383685955 0 +13 5879 12.257543685955 0 +13 5879 12.257543685955 0 +13 5998 12.514557354529 0 +13 5998 12.514557354529 0 +13 6013 12.514717354529 0 +13 6013 12.514717354529 0 +13 6035 12.524399080256 0 +13 6035 12.524399080256 0 +13 6050 12.524559080256 0 +13 6050 12.524559080256 0 +13 6074 12.531276892721 0 +13 6074 12.531276892721 0 +13 6093 12.531436892721 0 +13 6093 12.531436892721 0 +13 6112 12.557383685955 0 +13 6112 12.557383685955 0 +13 6120 12.557543685955 0 +13 6120 12.557543685955 0 +13 6239 12.814557365221 0 +13 6239 12.814557365221 0 +13 6254 12.814717365221 0 +13 6254 12.814717365221 0 +13 6276 12.82439908052 0 +13 6276 12.82439908052 0 +13 6291 12.82455908052 0 +13 6291 12.82455908052 0 +13 6315 12.831276892469 0 +13 6315 12.831276892469 0 +13 6334 12.831436892469 0 +13 6334 12.831436892469 0 +13 6353 12.857383685955 0 +13 6353 12.857383685955 0 +13 6361 12.857543685955 0 +13 6361 12.857543685955 0 +13 6480 13.114557376122 0 +13 6480 13.114557376122 0 +13 6495 13.114717376122 0 +13 6495 13.114717376122 0 +13 6517 13.124399080797 0 +13 6517 13.124399080797 0 +13 6532 13.124559080797 0 +13 6532 13.124559080797 0 +13 6556 13.131276892214 0 +13 6556 13.131276892214 0 +13 6575 13.131436892214 0 +13 6575 13.131436892214 0 +13 6594 13.157383685955 0 +13 6594 13.157383685955 0 +13 6602 13.157543685955 0 +13 6602 13.157543685955 0 +13 6721 13.414557387173 0 +13 6721 13.414557387173 0 +13 6736 13.414717387173 0 +13 6736 13.414717387173 0 +13 6758 13.424399081079 0 +13 6758 13.424399081079 0 +13 6773 13.424559081079 0 +13 6773 13.424559081079 0 +13 6797 13.431276891978 0 +13 6797 13.431276891978 0 +13 6816 13.431436891978 0 +13 6816 13.431436891978 0 +13 6835 13.457383685955 0 +13 6835 13.457383685955 0 +13 6843 13.457543685955 0 +13 6843 13.457543685955 0 +13 6962 13.714557398373 0 +13 6962 13.714557398373 0 +13 6977 13.714717398373 0 +13 6977 13.714717398373 0 +13 6999 13.724399081347 0 +13 6999 13.724399081347 0 +13 7014 13.724559081347 0 +13 7014 13.724559081347 0 +13 7038 13.731276891728 0 +13 7038 13.731276891728 0 +13 7057 13.731436891728 0 +13 7057 13.731436891728 0 +13 7076 13.757383685955 0 +13 7076 13.757383685955 0 +13 7084 13.757543685955 0 +13 7084 13.757543685955 0 +13 7204 14.014557409766 0 +13 7204 14.014557409766 0 +13 7223 14.014717409766 0 +13 7223 14.014717409766 0 +13 7240 14.024399081623 0 +13 7240 14.024399081623 0 +13 7255 14.024559081623 0 +13 7255 14.024559081623 0 +13 7279 14.03127689148 0 +13 7279 14.03127689148 0 +13 7298 14.03143689148 0 +13 7298 14.03143689148 0 +13 7317 14.057383685955 0 +13 7317 14.057383685955 0 +13 7325 14.057543685955 0 +13 7325 14.057543685955 0 +13 7445 14.314557421278 0 +13 7445 14.314557421278 0 +13 7464 14.314717421278 0 +13 7464 14.314717421278 0 +13 7481 14.324399081908 0 +13 7481 14.324399081908 0 +13 7496 14.324559081908 0 +13 7496 14.324559081908 0 +13 7520 14.33127689125 0 +13 7520 14.33127689125 0 +13 7539 14.33143689125 0 +13 7539 14.33143689125 0 +13 7558 14.357383685955 0 +13 7558 14.357383685955 0 +13 7566 14.357543685955 0 +13 7566 14.357543685955 0 +13 7686 14.614557432907 0 +13 7686 14.614557432907 0 +13 7705 14.614717432907 0 +13 7705 14.614717432907 0 +13 7722 14.624399082205 0 +13 7722 14.624399082205 0 +13 7737 14.624559082205 0 +13 7737 14.624559082205 0 +13 7761 14.631276891011 0 +13 7761 14.631276891011 0 +13 7780 14.631436891011 0 +13 7780 14.631436891011 0 +13 7799 14.657383685955 0 +13 7799 14.657383685955 0 +13 7807 14.657543685955 0 +13 7807 14.657543685955 0 +13 7927 14.914557444663 0 +13 7927 14.914557444663 0 +13 7946 14.914717444663 0 +13 7946 14.914717444663 0 +13 7963 14.924399082499 0 +13 7963 14.924399082499 0 +13 7978 14.924559082499 0 +13 7978 14.924559082499 0 +13 8002 14.93127689078 0 +13 8002 14.93127689078 0 +13 8021 14.93143689078 0 +13 8021 14.93143689078 0 +13 8040 14.957383685955 0 +13 8040 14.957383685955 0 +13 8048 14.957543685955 0 +13 8048 14.957543685955 0 +13 8168 15.214557456539 0 +13 8168 15.214557456539 0 +13 8187 15.214717456539 0 +13 8187 15.214717456539 0 +13 8204 15.224399082794 0 +13 8204 15.224399082794 0 +13 8219 15.224559082794 0 +13 8219 15.224559082794 0 +13 8243 15.231276890537 0 +13 8243 15.231276890537 0 +13 8262 15.231436890537 0 +13 8262 15.231436890537 0 +13 8281 15.257383685955 0 +13 8281 15.257383685955 0 +13 8289 15.257543685955 0 +13 8289 15.257543685955 0 +13 8409 15.514557468564 0 +13 8409 15.514557468564 0 +13 8428 15.514717468564 0 +13 8428 15.514717468564 0 +13 8445 15.524399083099 0 +13 8445 15.524399083099 0 +13 8460 15.524559083099 0 +13 8460 15.524559083099 0 +13 8485 15.531276890317 0 +13 8485 15.531276890317 0 +13 8508 15.531436890317 0 +13 8508 15.531436890317 0 +13 8522 15.557383685955 0 +13 8522 15.557383685955 0 +13 8530 15.557543685955 0 +13 8530 15.557543685955 0 +13 8650 15.814557480657 0 +13 8650 15.814557480657 0 +13 8669 15.814717480657 0 +13 8669 15.814717480657 0 +13 8686 15.824399083408 0 +13 8686 15.824399083408 0 +13 8701 15.824559083408 0 +13 8701 15.824559083408 0 +13 8726 15.831276890112 0 +13 8726 15.831276890112 0 +13 8749 15.831436890112 0 +13 8749 15.831436890112 0 +13 8763 15.857383685955 0 +13 8763 15.857383685955 0 +13 8771 15.857543685955 0 +13 8771 15.857543685955 0 +13 8891 16.114557492863 0 +13 8891 16.114557492863 0 +13 8910 16.114717492863 0 +13 8910 16.114717492863 0 +13 8931 16.124399083716 0 +13 8931 16.124399083716 0 +13 8946 16.124559083716 0 +13 8946 16.124559083716 0 +13 8971 16.131276889879 0 +13 8971 16.131276889879 0 +13 8994 16.131436889879 0 +13 8994 16.131436889879 0 +13 9008 16.157383685955 0 +13 9008 16.157383685955 0 +13 9016 16.157543685955 0 +13 9016 16.157543685955 0 +13 9140 16.414557505188 0 +13 9140 16.414557505188 0 +13 9159 16.414717505188 0 +13 9159 16.414717505188 0 +13 9180 16.424399084041 0 +13 9180 16.424399084041 0 +13 9195 16.424559084041 0 +13 9195 16.424559084041 0 +13 9220 16.431276889657 0 +13 9220 16.431276889657 0 +13 9243 16.431436889657 0 +13 9243 16.431436889657 0 +13 9257 16.457383685955 0 +13 9257 16.457383685955 0 +13 9265 16.457543685955 0 +13 9265 16.457543685955 0 +13 9390 16.714557517603 0 +13 9390 16.714557517603 0 +13 9413 16.714717517603 0 +13 9413 16.714717517603 0 +13 9429 16.724399084357 0 +13 9429 16.724399084357 0 +13 9444 16.724559084357 0 +13 9444 16.724559084357 0 +13 9469 16.731276889444 0 +13 9469 16.731276889444 0 +13 9492 16.731436889444 0 +13 9492 16.731436889444 0 +13 9506 16.757383685955 0 +13 9506 16.757383685955 0 +13 9514 16.757543685955 0 +13 9514 16.757543685955 0 +13 9639 17.014557530081 0 +13 9639 17.014557530081 0 +13 9662 17.014717530081 0 +13 9662 17.014717530081 0 +13 9678 17.024399084668 0 +13 9678 17.024399084668 0 +13 9693 17.024559084668 0 +13 9693 17.024559084668 0 +13 9718 17.031276889227 0 +13 9718 17.031276889227 0 +13 9741 17.031436889227 0 +13 9741 17.031436889227 0 +13 9755 17.057383685955 0 +13 9755 17.057383685955 0 +13 9763 17.057543685955 0 +13 9763 17.057543685955 0 +13 9888 17.314557542674 0 +13 9888 17.314557542674 0 +13 9911 17.314717542674 0 +13 9911 17.314717542674 0 +13 9927 17.324399084984 0 +13 9927 17.324399084984 0 +13 9942 17.324559084984 0 +13 9942 17.324559084984 0 +13 9967 17.331276889013 0 +13 9967 17.331276889013 0 +13 9990 17.331436889013 0 +13 9990 17.331436889013 0 +13 10004 17.357383685955 0 +13 10004 17.357383685955 0 +13 10012 17.357543685955 0 +13 10012 17.357543685955 0 +13 10137 17.614557555309 0 +13 10137 17.614557555309 0 +13 10160 17.614717555309 0 +13 10160 17.614717555309 0 +13 10176 17.624399085289 0 +13 10176 17.624399085289 0 +13 10191 17.624559085289 0 +13 10191 17.624559085289 0 +13 10216 17.631276888786 0 +13 10216 17.631276888786 0 +13 10239 17.631436888786 0 +13 10239 17.631436888786 0 +13 10253 17.657383685955 0 +13 10253 17.657383685955 0 +13 10261 17.657543685955 0 +13 10261 17.657543685955 0 +13 10386 17.914557568022 0 +13 10386 17.914557568022 0 +13 10409 17.914717568022 0 +13 10409 17.914717568022 0 +13 10421 17.924399085606 0 +13 10421 17.924399085606 0 +13 10436 17.924559085606 0 +13 10436 17.924559085606 0 +13 10461 17.931276888582 0 +13 10461 17.931276888582 0 +13 10484 17.931436888582 0 +13 10484 17.931436888582 0 +13 10498 17.957383685955 0 +13 10498 17.957383685955 0 +13 10506 17.957543685955 0 +13 10506 17.957543685955 0 +13 10662 18.224399085935 0 +13 10662 18.224399085935 0 +13 10677 18.224559085935 0 +13 10677 18.224559085935 0 +13 10698 18.231276888386 0 +13 10698 18.231276888386 0 +13 10721 18.231436888386 0 +13 10721 18.231436888386 0 +13 10735 18.257383685955 0 +13 10735 18.257383685955 0 +13 10743 18.257543685955 0 +13 10743 18.257543685955 0 +13 10895 18.524399086265 0 +13 10895 18.524399086265 0 +13 10910 18.524559086265 0 +13 10910 18.524559086265 0 +13 10931 18.531276888177 0 +13 10931 18.531276888177 0 +13 10954 18.531436888177 0 +13 10954 18.531436888177 0 +13 10968 18.557383685955 0 +13 10968 18.557383685955 0 +13 10976 18.557543685955 0 +13 10976 18.557543685955 0 +13 11128 18.824399086608 0 +13 11128 18.824399086608 0 +13 11143 18.824559086608 0 +13 11143 18.824559086608 0 +13 11164 18.831276887981 0 +13 11164 18.831276887981 0 +13 11187 18.831436887981 0 +13 11187 18.831436887981 0 +13 11201 18.857383685955 0 +13 11201 18.857383685955 0 +13 11209 18.857543685955 0 +13 11209 18.857543685955 0 +13 11361 19.124399086967 0 +13 11361 19.124399086967 0 +13 11376 19.124559086967 0 +13 11376 19.124559086967 0 +13 11397 19.131276887793 0 +13 11397 19.131276887793 0 +13 11420 19.131436887793 0 +13 11420 19.131436887793 0 +13 11434 19.157383685955 0 +13 11434 19.157383685955 0 +13 11442 19.157543685955 0 +13 11442 19.157543685955 0 +13 11594 19.424399087317 0 +13 11594 19.424399087317 0 +13 11609 19.424559087317 0 +13 11609 19.424559087317 0 +13 11630 19.43127688759 0 +13 11630 19.43127688759 0 +13 11653 19.43143688759 0 +13 11653 19.43143688759 0 +13 11667 19.457383685955 0 +13 11667 19.457383685955 0 +13 11675 19.457543685955 0 +13 11675 19.457543685955 0 +13 11827 19.724399087464 0 +13 11827 19.724399087464 0 +13 11842 19.724559087464 0 +13 11842 19.724559087464 0 +13 11863 19.731276887029 0 +13 11863 19.731276887029 0 +13 11886 19.731436887029 0 +13 11886 19.731436887029 0 +13 11900 19.757383685955 0 +13 11900 19.757383685955 0 +13 11908 19.757543685955 0 +13 11908 19.757543685955 0 +13 12025 20.014557564104 0 +13 12025 20.014557564104 0 +13 12048 20.014717564104 0 +13 12048 20.014717564104 0 +13 12064 20.0243990873 0 +13 12064 20.0243990873 0 +13 12079 20.0245590873 0 +13 12079 20.0245590873 0 +13 12100 20.03127688588 0 +13 12100 20.03127688588 0 +13 12123 20.03143688588 0 +13 12123 20.03143688588 0 +13 12137 20.057383685955 0 +13 12137 20.057383685955 0 +13 12145 20.057543685955 0 +13 12145 20.057543685955 0 +13 12266 20.314557557995 0 +13 12266 20.314557557995 0 +13 12289 20.314717557995 0 +13 12289 20.314717557995 0 +13 12305 20.324399087241 0 +13 12305 20.324399087241 0 +13 12320 20.324559087241 0 +13 12320 20.324559087241 0 +13 12341 20.33127688455 0 +13 12341 20.33127688455 0 +13 12364 20.33143688455 0 +13 12364 20.33143688455 0 +13 12378 20.357383685955 0 +13 12378 20.357383685955 0 +13 12386 20.357543685955 0 +13 12386 20.357543685955 0 +13 12507 20.614557552362 0 +13 12507 20.614557552362 0 +13 12530 20.614717552362 0 +13 12530 20.614717552362 0 +13 12546 20.624399087446 0 +13 12546 20.624399087446 0 +13 12561 20.624559087446 0 +13 12561 20.624559087446 0 +13 12582 20.631276883138 0 +13 12582 20.631276883138 0 +13 12605 20.631436883138 0 +13 12605 20.631436883138 0 +13 12619 20.657383685955 0 +13 12619 20.657383685955 0 +13 12627 20.657543685955 0 +13 12627 20.657543685955 0 +13 12748 20.914557547102 0 +13 12748 20.914557547102 0 +13 12771 20.914717547102 0 +13 12771 20.914717547102 0 +13 12787 20.924399087797 0 +13 12787 20.924399087797 0 +13 12802 20.924559087797 0 +13 12802 20.924559087797 0 +13 12823 20.931276881619 0 +13 12823 20.931276881619 0 +13 12846 20.931436881619 0 +13 12846 20.931436881619 0 +13 12860 20.957383685955 0 +13 12860 20.957383685955 0 +13 12868 20.957543685955 0 +13 12868 20.957543685955 0 +13 12989 21.214557542284 0 +13 12989 21.214557542284 0 +13 13012 21.214717542284 0 +13 13012 21.214717542284 0 +13 13028 21.224399088467 0 +13 13028 21.224399088467 0 +13 13043 21.224559088467 0 +13 13043 21.224559088467 0 +13 13064 21.231276880094 0 +13 13064 21.231276880094 0 +13 13087 21.231436880094 0 +13 13087 21.231436880094 0 +13 13101 21.257383685955 0 +13 13101 21.257383685955 0 +13 13109 21.257543685955 0 +13 13109 21.257543685955 0 +13 13230 21.514557537844 0 +13 13230 21.514557537844 0 +13 13253 21.514717537844 0 +13 13253 21.514717537844 0 +13 13269 21.524399089457 0 +13 13269 21.524399089457 0 +13 13284 21.524559089457 0 +13 13284 21.524559089457 0 +13 13305 21.531276878505 0 +13 13305 21.531276878505 0 +13 13328 21.531436878505 0 +13 13328 21.531436878505 0 +13 13342 21.557383685955 0 +13 13342 21.557383685955 0 +13 13350 21.557543685955 0 +13 13350 21.557543685955 0 +13 13471 21.814557533746 0 +13 13471 21.814557533746 0 +13 13494 21.814717533746 0 +13 13494 21.814717533746 0 +13 13510 21.824399090731 0 +13 13510 21.824399090731 0 +13 13525 21.824559090731 0 +13 13525 21.824559090731 0 +13 13546 21.831276876822 0 +13 13546 21.831276876822 0 +13 13569 21.831436876822 0 +13 13569 21.831436876822 0 +13 13583 21.857383685955 0 +13 13583 21.857383685955 0 +13 13591 21.857543685955 0 +13 13591 21.857543685955 0 +13 13712 22.114557529963 0 +13 13712 22.114557529963 0 +13 13735 22.114717529963 0 +13 13735 22.114717529963 0 +13 13751 22.124399092291 0 +13 13751 22.124399092291 0 +13 13766 22.124559092291 0 +13 13766 22.124559092291 0 +13 13787 22.131276875046 0 +13 13787 22.131276875046 0 +13 13810 22.131436875046 0 +13 13810 22.131436875046 0 +13 13824 22.157383685955 0 +13 13824 22.157383685955 0 +13 13832 22.157543685955 0 +13 13832 22.157543685955 0 +13 13953 22.414557526479 0 +13 13953 22.414557526479 0 +13 13976 22.414717526479 0 +13 13976 22.414717526479 0 +13 13992 22.424399094215 0 +13 13992 22.424399094215 0 +13 14007 22.424559094215 0 +13 14007 22.424559094215 0 +13 14028 22.431276873268 0 +13 14028 22.431276873268 0 +13 14051 22.431436873268 0 +13 14051 22.431436873268 0 +13 14065 22.457383685955 0 +13 14065 22.457383685955 0 +13 14073 22.457543685955 0 +13 14073 22.457543685955 0 +13 14194 22.714557523315 0 +13 14194 22.714557523315 0 +13 14217 22.714717523315 0 +13 14217 22.714717523315 0 +13 14233 22.724399096641 0 +13 14233 22.724399096641 0 +13 14248 22.724559096641 0 +13 14248 22.724559096641 0 +13 14269 22.731276871582 0 +13 14269 22.731276871582 0 +13 14292 22.731436871582 0 +13 14292 22.731436871582 0 +13 14306 22.757383685955 0 +13 14306 22.757383685955 0 +13 14314 22.757543685955 0 +13 14314 22.757543685955 0 +13 14435 23.014557520464 0 +13 14435 23.014557520464 0 +13 14458 23.014717520464 0 +13 14458 23.014717520464 0 +13 14473 23.024399099585 0 +13 14473 23.024399099585 0 +13 14484 23.024559099585 0 +13 14484 23.024559099585 0 +13 14510 23.031276870013 0 +13 14510 23.031276870013 0 +13 14533 23.031436870013 0 +13 14533 23.031436870013 0 +13 14547 23.057383685955 0 +13 14547 23.057383685955 0 +13 14555 23.057543685955 0 +13 14555 23.057543685955 0 +13 14676 23.314557517914 0 +13 14676 23.314557517914 0 +13 14699 23.314717517914 0 +13 14699 23.314717517914 0 +13 14714 23.324399103103 0 +13 14714 23.324399103103 0 +13 14725 23.324559103103 0 +13 14725 23.324559103103 0 +13 14751 23.331276868542 0 +13 14751 23.331276868542 0 +13 14774 23.331436868542 0 +13 14774 23.331436868542 0 +13 14788 23.357383685955 0 +13 14788 23.357383685955 0 +13 14796 23.357543685955 0 +13 14796 23.357543685955 0 +13 14917 23.614557515636 0 +13 14917 23.614557515636 0 +13 14940 23.614717515636 0 +13 14940 23.614717515636 0 +13 14955 23.624399107238 0 +13 14955 23.624399107238 0 +13 14966 23.624559107238 0 +13 14966 23.624559107238 0 +13 14992 23.631276867299 0 +13 14992 23.631276867299 0 +13 15015 23.631436867299 0 +13 15015 23.631436867299 0 +13 15029 23.657383685955 0 +13 15029 23.657383685955 0 +13 15037 23.657543685955 0 +13 15037 23.657543685955 0 +13 15158 23.914557513622 0 +13 15158 23.914557513622 0 +13 15181 23.914717513622 0 +13 15181 23.914717513622 0 +13 15196 23.924399112031 0 +13 15196 23.924399112031 0 +13 15207 23.924559112031 0 +13 15207 23.924559112031 0 +13 15233 23.931276866321 0 +13 15233 23.931276866321 0 +13 15256 23.931436866321 0 +13 15256 23.931436866321 0 +13 15270 23.957383685955 0 +13 15270 23.957383685955 0 +13 15278 23.957543685955 0 +13 15278 23.957543685955 0 +13 15399 24.214557511852 0 +13 15399 24.214557511852 0 +13 15422 24.214717511852 0 +13 15422 24.214717511852 0 +13 15437 24.224399117426 0 +13 15437 24.224399117426 0 +13 15448 24.224559117426 0 +13 15448 24.224559117426 0 +13 15474 24.231276865622 0 +13 15474 24.231276865622 0 +13 15497 24.231436865622 0 +13 15497 24.231436865622 0 +13 15511 24.257383685955 0 +13 15511 24.257383685955 0 +13 15519 24.257543685955 0 +13 15519 24.257543685955 0 +13 15640 24.514557510265 0 +13 15640 24.514557510265 0 +13 15663 24.514717510265 0 +13 15663 24.514717510265 0 +13 15678 24.524399123441 0 +13 15678 24.524399123441 0 +13 15689 24.524559123441 0 +13 15689 24.524559123441 0 +13 15715 24.531276865164 0 +13 15715 24.531276865164 0 +13 15738 24.531436865164 0 +13 15738 24.531436865164 0 +13 15752 24.557383685955 0 +13 15752 24.557383685955 0 +13 15760 24.557543685955 0 +13 15760 24.557543685955 0 +13 15881 24.814557508895 0 +13 15881 24.814557508895 0 +13 15904 24.814717508895 0 +13 15904 24.814717508895 0 +13 15919 24.824399130236 0 +13 15919 24.824399130236 0 +13 15930 24.824559130236 0 +13 15930 24.824559130236 0 +13 15956 24.831276865034 0 +13 15956 24.831276865034 0 +13 15979 24.831436865034 0 +13 15979 24.831436865034 0 +13 15993 24.857383685955 0 +13 15993 24.857383685955 0 +13 16001 24.857543685955 0 +13 16001 24.857543685955 0 +13 16122 25.114557507733 0 +13 16122 25.114557507733 0 +13 16145 25.114717507733 0 +13 16145 25.114717507733 0 +13 16160 25.124399137961 0 +13 16160 25.124399137961 0 +13 16171 25.124559137961 0 +13 16171 25.124559137961 0 +13 16197 25.131276865348 0 +13 16197 25.131276865348 0 +13 16220 25.131436865348 0 +13 16220 25.131436865348 0 +13 16234 25.157383685955 0 +13 16234 25.157383685955 0 +13 16242 25.157543685955 0 +13 16242 25.157543685955 0 +13 16363 25.414557506754 0 +13 16363 25.414557506754 0 +13 16386 25.414717506754 0 +13 16386 25.414717506754 0 +13 16401 25.424399146492 0 +13 16401 25.424399146492 0 +13 16412 25.424559146492 0 +13 16412 25.424559146492 0 +13 16438 25.431276866065 0 +13 16438 25.431276866065 0 +13 16461 25.431436866065 0 +13 16461 25.431436866065 0 +13 16475 25.457383685955 0 +13 16475 25.457383685955 0 +13 16483 25.457543685955 0 +13 16483 25.457543685955 0 +13 16604 25.714557505914 0 +13 16604 25.714557505914 0 +13 16627 25.714717505914 0 +13 16627 25.714717505914 0 +13 16642 25.724399155863 0 +13 16642 25.724399155863 0 +13 16653 25.724559155863 0 +13 16653 25.724559155863 0 +13 16679 25.731276867271 0 +13 16679 25.731276867271 0 +13 16702 25.731436867271 0 +13 16702 25.731436867271 0 +13 16716 25.757383685955 0 +13 16716 25.757383685955 0 +13 16724 25.757543685955 0 +13 16724 25.757543685955 0 +13 16845 26.014557505277 0 +13 16845 26.014557505277 0 +13 16868 26.014717505277 0 +13 16868 26.014717505277 0 +13 16883 26.024399166196 0 +13 16883 26.024399166196 0 +13 16894 26.024559166196 0 +13 16894 26.024559166196 0 +13 16920 26.031276869882 0 +13 16920 26.031276869882 0 +13 16943 26.031436869882 0 +13 16943 26.031436869882 0 +13 16957 26.057383685955 0 +13 16957 26.057383685955 0 +13 16965 26.057543685955 0 +13 16965 26.057543685955 0 +13 17085 26.314557504782 0 +13 17085 26.314557504782 0 +13 17104 26.314717504782 0 +13 17104 26.314717504782 0 +13 17124 26.324399177308 0 +13 17124 26.324399177308 0 +13 17135 26.324559177308 0 +13 17135 26.324559177308 0 +13 17161 26.331276874069 0 +13 17161 26.331276874069 0 +13 17184 26.331436874069 0 +13 17184 26.331436874069 0 +13 17198 26.357383685955 0 +13 17198 26.357383685955 0 +13 17206 26.357543685955 0 +13 17206 26.357543685955 0 +13 17326 26.614557504308 0 +13 17326 26.614557504308 0 +13 17345 26.614717504308 0 +13 17345 26.614717504308 0 +13 17365 26.624399188753 0 +13 17365 26.624399188753 0 +13 17376 26.624559188753 0 +13 17376 26.624559188753 0 +13 17402 26.631276879416 0 +13 17402 26.631276879416 0 +13 17425 26.631436879416 0 +13 17425 26.631436879416 0 +13 17439 26.657383685955 0 +13 17439 26.657383685955 0 +13 17447 26.657543685955 0 +13 17447 26.657543685955 0 +13 17567 26.914557503709 0 +13 17567 26.914557503709 0 +13 17586 26.914717503709 0 +13 17586 26.914717503709 0 +13 17606 26.924399200042 0 +13 17606 26.924399200042 0 +13 17617 26.924559200042 0 +13 17617 26.924559200042 0 +13 17643 26.931276885432 0 +13 17643 26.931276885432 0 +13 17666 26.931436885432 0 +13 17666 26.931436885432 0 +13 17680 26.957383685955 0 +13 17680 26.957383685955 0 +13 17688 26.957543685955 0 +13 17688 26.957543685955 0 +13 17808 27.214557502764 0 +13 17808 27.214557502764 0 +13 17827 27.214717502764 0 +13 17827 27.214717502764 0 +13 17843 27.224399210302 0 +13 17843 27.224399210302 0 +13 17854 27.224559210302 0 +13 17854 27.224559210302 0 +13 17876 27.231276891257 0 +13 17876 27.231276891257 0 +13 17899 27.231436891257 0 +13 17899 27.231436891257 0 +13 17913 27.257383685955 0 +13 17913 27.257383685955 0 +13 17921 27.257543685955 0 +13 17921 27.257543685955 0 +13 18041 27.514557501474 0 +13 18041 27.514557501474 0 +13 18060 27.514717501474 0 +13 18060 27.514717501474 0 +13 18076 27.524399219548 0 +13 18076 27.524399219548 0 +13 18087 27.524559219548 0 +13 18087 27.524559219548 0 +13 18109 27.531276896461 0 +13 18109 27.531276896461 0 +13 18132 27.531436896461 0 +13 18132 27.531436896461 0 +13 18146 27.557383685955 0 +13 18146 27.557383685955 0 +13 18154 27.557543685955 0 +13 18154 27.557543685955 0 +13 18274 27.814557499885 0 +13 18274 27.814557499885 0 +13 18293 27.814717499885 0 +13 18293 27.814717499885 0 +13 18309 27.824399227674 0 +13 18309 27.824399227674 0 +13 18320 27.824559227674 0 +13 18320 27.824559227674 0 +13 18342 27.831276898141 0 +13 18342 27.831276898141 0 +13 18365 27.831436898141 0 +13 18365 27.831436898141 0 +13 18379 27.857383685955 0 +13 18379 27.857383685955 0 +13 18387 27.857543685955 0 +13 18387 27.857543685955 0 +13 18507 28.114557497525 0 +13 18507 28.114557497525 0 +13 18526 28.114717497525 0 +13 18526 28.114717497525 0 +13 18542 28.124399234561 0 +13 18542 28.124399234561 0 +13 18553 28.124559234561 0 +13 18553 28.124559234561 0 +13 18575 28.131276899693 0 +13 18575 28.131276899693 0 +13 18598 28.131436899693 0 +13 18598 28.131436899693 0 +13 18612 28.157383685955 0 +13 18612 28.157383685955 0 +13 18620 28.157543685955 0 +13 18620 28.157543685955 0 +13 18740 28.414557494637 0 +13 18740 28.414557494637 0 +13 18759 28.414717494637 0 +13 18759 28.414717494637 0 +13 18775 28.424399240801 0 +13 18775 28.424399240801 0 +13 18786 28.424559240801 0 +13 18786 28.424559240801 0 +13 18808 28.431276907999 0 +13 18808 28.431276907999 0 +13 18831 28.431436907999 0 +13 18831 28.431436907999 0 +13 18845 28.457383685955 0 +13 18845 28.457383685955 0 +13 18853 28.457543685955 0 +13 18853 28.457543685955 0 +13 18973 28.714557490176 0 +13 18973 28.714557490176 0 +13 18992 28.714717490176 0 +13 18992 28.714717490176 0 +13 19008 28.724399242627 0 +13 19008 28.724399242627 0 +13 19019 28.724559242627 0 +13 19019 28.724559242627 0 +13 19041 28.731276917209 0 +13 19041 28.731276917209 0 +13 19064 28.731436917209 0 +13 19064 28.731436917209 0 +13 19078 28.757383685955 0 +13 19078 28.757383685955 0 +13 19086 28.757543685955 0 +13 19086 28.757543685955 0 +13 19206 29.01455748367 0 +13 19206 29.01455748367 0 +13 19225 29.01471748367 0 +13 19225 29.01471748367 0 +13 19241 29.02439924345 0 +13 19241 29.02439924345 0 +13 19252 29.02455924345 0 +13 19252 29.02455924345 0 +13 19307 29.057383685955 0 +13 19307 29.057383685955 0 +13 19315 29.057543685955 0 +13 19315 29.057543685955 0 +13 19431 29.314557474199 0 +13 19431 29.314557474199 0 +13 19450 29.314717474199 0 +13 19450 29.314717474199 0 +13 19466 29.324399247583 0 +13 19466 29.324399247583 0 +13 19477 29.324559247583 0 +13 19477 29.324559247583 0 +13 19532 29.357383685955 0 +13 19532 29.357383685955 0 +13 19540 29.357543685955 0 +13 19540 29.357543685955 0 +13 19656 29.614557462553 0 +13 19656 29.614557462553 0 +13 19675 29.614717462553 0 +13 19675 29.614717462553 0 +13 19691 29.624399248962 0 +13 19691 29.624399248962 0 +13 19702 29.624559248962 0 +13 19702 29.624559248962 0 +13 19757 29.657383685955 0 +13 19757 29.657383685955 0 +13 19765 29.657543685955 0 +13 19765 29.657543685955 0 +13 19881 29.914557450409 0 +13 19881 29.914557450409 0 +13 19900 29.914717450409 0 +13 19900 29.914717450409 0 +13 19916 29.924399249496 0 +13 19916 29.924399249496 0 +13 19927 29.924559249496 0 +13 19927 29.924559249496 0 +13 19982 29.957383685955 0 +13 19982 29.957383685955 0 +13 19990 29.957543685955 0 +13 19990 29.957543685955 0 +13 20106 30.214557437824 0 +13 20106 30.214557437824 0 +13 20125 30.214717437824 0 +13 20125 30.214717437824 0 +13 20141 30.224399249493 0 +13 20141 30.224399249493 0 +13 20152 30.224559249493 0 +13 20152 30.224559249493 0 +13 20207 30.257383685955 0 +13 20207 30.257383685955 0 +13 20215 30.257543685955 0 +13 20215 30.257543685955 0 +13 20329 30.514557424894 0 +13 20329 30.514557424894 0 +13 20340 30.514717424894 0 +13 20340 30.514717424894 0 +13 20366 30.524399249491 0 +13 20366 30.524399249491 0 +13 20377 30.524559249491 0 +13 20377 30.524559249491 0 +13 20432 30.557383685955 0 +13 20432 30.557383685955 0 +13 20440 30.557543685955 0 +13 20440 30.557543685955 0 +13 20554 30.814557411739 0 +13 20554 30.814557411739 0 +13 20565 30.814717411739 0 +13 20565 30.814717411739 0 +13 20591 30.824399249488 0 +13 20591 30.824399249488 0 +13 20602 30.824559249488 0 +13 20602 30.824559249488 0 +13 20657 30.857383685955 0 +13 20657 30.857383685955 0 +13 20665 30.857543685955 0 +13 20665 30.857543685955 0 +13 20779 31.114557398299 0 +13 20779 31.114557398299 0 +13 20790 31.114717398299 0 +13 20790 31.114717398299 0 +13 20816 31.124399249483 0 +13 20816 31.124399249483 0 +13 20827 31.124559249483 0 +13 20827 31.124559249483 0 +13 20886 31.157383685955 0 +13 20886 31.157383685955 0 +13 20894 31.157543685955 0 +13 20894 31.157543685955 0 +13 21012 31.414557384666 0 +13 21012 31.414557384666 0 +13 21023 31.414717384666 0 +13 21023 31.414717384666 0 +13 21049 31.424399249476 0 +13 21049 31.424399249476 0 +13 21060 31.424559249476 0 +13 21060 31.424559249476 0 +13 21119 31.457383685955 0 +13 21119 31.457383685955 0 +13 21127 31.457543685955 0 +13 21127 31.457543685955 0 +13 21245 31.714557370995 0 +13 21245 31.714557370995 0 +13 21256 31.714717370995 0 +13 21256 31.714717370995 0 +13 21282 31.724399249469 0 +13 21282 31.724399249469 0 +13 21293 31.724559249469 0 +13 21293 31.724559249469 0 +13 21352 31.757383685955 0 +13 21352 31.757383685955 0 +13 21360 31.757543685955 0 +13 21360 31.757543685955 0 +13 21478 32.014557357699 0 +13 21478 32.014557357699 0 +13 21489 32.014717357699 0 +13 21489 32.014717357699 0 +13 21516 32.024399249465 0 +13 21516 32.024399249465 0 +13 21531 32.024559249465 0 +13 21531 32.024559249465 0 +13 21585 32.057383685955 0 +13 21585 32.057383685955 0 +13 21593 32.057543685955 0 +13 21593 32.057543685955 0 +13 21711 32.314557344745 0 +13 21711 32.314557344745 0 +13 21722 32.314717344745 0 +13 21722 32.314717344745 0 +13 21749 32.324399249464 0 +13 21749 32.324399249464 0 +13 21764 32.324559249464 0 +13 21764 32.324559249464 0 +13 21818 32.357383685955 0 +13 21818 32.357383685955 0 +13 21826 32.357543685955 0 +13 21826 32.357543685955 0 +13 21944 32.614557332223 0 +13 21944 32.614557332223 0 +13 21955 32.614717332223 0 +13 21955 32.614717332223 0 +13 21982 32.624399249467 0 +13 21982 32.624399249467 0 +13 21997 32.624559249467 0 +13 21997 32.624559249467 0 +13 22051 32.657383685955 0 +13 22051 32.657383685955 0 +13 22059 32.657543685955 0 +13 22059 32.657543685955 0 +13 22177 32.914557320155 0 +13 22177 32.914557320155 0 +13 22188 32.914717320155 0 +13 22188 32.914717320155 0 +13 22215 32.924399249474 0 +13 22215 32.924399249474 0 +13 22230 32.924559249474 0 +13 22230 32.924559249474 0 +13 22284 32.957383685955 0 +13 22284 32.957383685955 0 +13 22292 32.957543685955 0 +13 22292 32.957543685955 0 +13 22410 33.214557308546 0 +13 22410 33.214557308546 0 +13 22421 33.214717308546 0 +13 22421 33.214717308546 0 +13 22448 33.224399249483 0 +13 22448 33.224399249483 0 +13 22463 33.224559249483 0 +13 22463 33.224559249483 0 +13 22517 33.257383685955 0 +13 22517 33.257383685955 0 +13 22525 33.257543685955 0 +13 22525 33.257543685955 0 +13 22643 33.51455729748 0 +13 22643 33.51455729748 0 +13 22654 33.51471729748 0 +13 22654 33.51471729748 0 +13 22681 33.524399249496 0 +13 22681 33.524399249496 0 +13 22696 33.524559249496 0 +13 22696 33.524559249496 0 +13 22750 33.557383685955 0 +13 22750 33.557383685955 0 +13 22758 33.557543685955 0 +13 22758 33.557543685955 0 +13 22876 33.814557286954 0 +13 22876 33.814557286954 0 +13 22887 33.814717286954 0 +13 22887 33.814717286954 0 +13 22910 33.824399249513 0 +13 22910 33.824399249513 0 +13 22925 33.824559249513 0 +13 22925 33.824559249513 0 +13 22979 33.857383685955 0 +13 22979 33.857383685955 0 +13 22987 33.857543685955 0 +13 22987 33.857543685955 0 +13 23092 34.114557277044 0 +13 23092 34.114557277044 0 +13 23102 34.114717277044 0 +13 23102 34.114717277044 0 +13 23119 34.124399249532 0 +13 23119 34.124399249532 0 +13 23129 34.124559249532 0 +13 23129 34.124559249532 0 +13 23173 34.157383685955 0 +13 23173 34.157383685955 0 +13 23180 34.157543685955 0 +13 23180 34.157543685955 0 +13 23250 34.41455726774 0 +13 23250 34.41455726774 0 +13 23260 34.41471726774 0 +13 23260 34.41471726774 0 +13 23277 34.424399249554 0 +13 23277 34.424399249554 0 +13 23287 34.424559249554 0 +13 23287 34.424559249554 0 +13 23331 34.457383685955 0 +13 23331 34.457383685955 0 +13 23338 34.457543685955 0 +13 23338 34.457543685955 0 +13 23408 34.714557259086 0 +13 23408 34.714557259086 0 +13 23418 34.714717259086 0 +13 23418 34.714717259086 0 +13 23435 34.72439924958 0 +13 23435 34.72439924958 0 +13 23445 34.72455924958 0 +13 23445 34.72455924958 0 +13 23489 34.757383685955 0 +13 23489 34.757383685955 0 +13 23496 34.757543685955 0 +13 23496 34.757543685955 0 +13 23566 35.01455725114 0 +13 23566 35.01455725114 0 +13 23576 35.01471725114 0 +13 23576 35.01471725114 0 +13 23593 35.024399249609 0 +13 23593 35.024399249609 0 +13 23603 35.024559249609 0 +13 23603 35.024559249609 0 +13 23647 35.057383685955 0 +13 23647 35.057383685955 0 +13 23654 35.057543685955 0 +13 23654 35.057543685955 0 +13 23685 35.14399390924 0 +13 23685 35.14399390924 0 +13 23699 35.14415390924 0 +13 23699 35.14415390924 0 +13 23728 35.314557244297 0 +13 23728 35.314557244297 0 +13 23738 35.314717244297 0 +13 23738 35.314717244297 0 +13 23755 35.324399249632 0 +13 23755 35.324399249632 0 +13 23765 35.324559249632 0 +13 23765 35.324559249632 0 +13 23809 35.357383685955 0 +13 23809 35.357383685955 0 +13 23816 35.357543685955 0 +13 23816 35.357543685955 0 +13 23851 35.443993894903 0 +13 23851 35.443993894903 0 +13 23865 35.444153894903 0 +13 23865 35.444153894903 0 +13 23894 35.614557239399 0 +13 23894 35.614557239399 0 +13 23904 35.614717239399 0 +13 23904 35.614717239399 0 +13 23921 35.624399249628 0 +13 23921 35.624399249628 0 +13 23931 35.624559249628 0 +13 23931 35.624559249628 0 +13 23975 35.657383685955 0 +13 23975 35.657383685955 0 +13 23982 35.657543685955 0 +13 23982 35.657543685955 0 +13 24017 35.743993882114 0 +13 24017 35.743993882114 0 +13 24031 35.744153882114 0 +13 24031 35.744153882114 0 +13 24059 35.914557236445 0 +13 24059 35.914557236445 0 +13 24065 35.914717236445 0 +13 24065 35.914717236445 0 +13 24087 35.924399249595 0 +13 24087 35.924399249595 0 +13 24097 35.924559249595 0 +13 24097 35.924559249595 0 +13 24141 35.957383685955 0 +13 24141 35.957383685955 0 +13 24148 35.957543685955 0 +13 24148 35.957543685955 0 +13 24183 36.043993870912 0 +13 24183 36.043993870912 0 +13 24197 36.044153870912 0 +13 24197 36.044153870912 0 +13 24225 36.214557235432 0 +13 24225 36.214557235432 0 +13 24231 36.214717235432 0 +13 24231 36.214717235432 0 +13 24253 36.224399249544 0 +13 24253 36.224399249544 0 +13 24263 36.224559249544 0 +13 24263 36.224559249544 0 +13 24307 36.257383685955 0 +13 24307 36.257383685955 0 +13 24314 36.257543685955 0 +13 24314 36.257543685955 0 +13 24349 36.343993861309 0 +13 24349 36.343993861309 0 +13 24363 36.344153861309 0 +13 24363 36.344153861309 0 +13 24391 36.514557236231 0 +13 24391 36.514557236231 0 +13 24397 36.514717236231 0 +13 24397 36.514717236231 0 +13 24419 36.524399249492 0 +13 24419 36.524399249492 0 +13 24429 36.524559249492 0 +13 24429 36.524559249492 0 +13 24473 36.557383685955 0 +13 24473 36.557383685955 0 +13 24480 36.557543685955 0 +13 24480 36.557543685955 0 +13 24515 36.643993853328 0 +13 24515 36.643993853328 0 +13 24529 36.644153853328 0 +13 24529 36.644153853328 0 +13 24558 36.814557238201 0 +13 24558 36.814557238201 0 +13 24568 36.814717238201 0 +13 24568 36.814717238201 0 +13 24585 36.824399249465 0 +13 24585 36.824399249465 0 +13 24595 36.824559249465 0 +13 24595 36.824559249465 0 +13 24639 36.857383685955 0 +13 24639 36.857383685955 0 +13 24646 36.857543685955 0 +13 24646 36.857543685955 0 +13 24681 36.943993845573 0 +13 24681 36.943993845573 0 +13 24695 36.944153845573 0 +13 24695 36.944153845573 0 +13 24724 37.114557240113 0 +13 24724 37.114557240113 0 +13 24734 37.114717240113 0 +13 24734 37.114717240113 0 +13 24751 37.124399249471 0 +13 24751 37.124399249471 0 +13 24761 37.124559249471 0 +13 24761 37.124559249471 0 +13 24805 37.157383685955 0 +13 24805 37.157383685955 0 +13 24812 37.157543685955 0 +13 24812 37.157543685955 0 +13 24846 37.243993835004 0 +13 24846 37.243993835004 0 +13 24856 37.244153835004 0 +13 24856 37.244153835004 0 +13 24890 37.414557242061 0 +13 24890 37.414557242061 0 +13 24900 37.414717242061 0 +13 24900 37.414717242061 0 +13 24917 37.424399249494 0 +13 24917 37.424399249494 0 +13 24927 37.424559249494 0 +13 24927 37.424559249494 0 +13 24971 37.457383685955 0 +13 24971 37.457383685955 0 +13 24978 37.457543685955 0 +13 24978 37.457543685955 0 +13 25012 37.543993814684 0 +13 25012 37.543993814684 0 +13 25022 37.544153814684 0 +13 25022 37.544153814684 0 +13 25056 37.714557244204 0 +13 25056 37.714557244204 0 +13 25066 37.714717244204 0 +13 25066 37.714717244204 0 +13 25083 37.724399249526 0 +13 25083 37.724399249526 0 +13 25093 37.724559249526 0 +13 25093 37.724559249526 0 +13 25137 37.757383685955 0 +13 25137 37.757383685955 0 +13 25144 37.757543685955 0 +13 25144 37.757543685955 0 +13 25178 37.843993790864 0 +13 25178 37.843993790864 0 +13 25188 37.844153790864 0 +13 25188 37.844153790864 0 +13 25222 38.014557246626 0 +13 25222 38.014557246626 0 +13 25232 38.014717246626 0 +13 25232 38.014717246626 0 +13 25249 38.024399249562 0 +13 25249 38.024399249562 0 +13 25259 38.024559249562 0 +13 25259 38.024559249562 0 +13 25303 38.057383685955 0 +13 25303 38.057383685955 0 +13 25310 38.057543685955 0 +13 25310 38.057543685955 0 +13 25344 38.143993766481 0 +13 25344 38.143993766481 0 +13 25354 38.144153766481 0 +13 25354 38.144153766481 0 +13 25388 38.314557249321 0 +13 25388 38.314557249321 0 +13 25398 38.314717249321 0 +13 25398 38.314717249321 0 +13 25415 38.324399249594 0 +13 25415 38.324399249594 0 +13 25425 38.324559249594 0 +13 25425 38.324559249594 0 +13 25469 38.357383685955 0 +13 25469 38.357383685955 0 +13 25476 38.357543685955 0 +13 25476 38.357543685955 0 +13 25510 38.443993741575 0 +13 25510 38.443993741575 0 +13 25520 38.444153741575 0 +13 25520 38.444153741575 0 +13 25554 38.614557252296 0 +13 25554 38.614557252296 0 +13 25564 38.614717252296 0 +13 25564 38.614717252296 0 +13 25581 38.624399249618 0 +13 25581 38.624399249618 0 +13 25591 38.624559249618 0 +13 25591 38.624559249618 0 +13 25635 38.657383685955 0 +13 25635 38.657383685955 0 +13 25642 38.657543685955 0 +13 25642 38.657543685955 0 +13 25676 38.743993716074 0 +13 25676 38.743993716074 0 +13 25686 38.744153716074 0 +13 25686 38.744153716074 0 +13 25720 38.914557255584 0 +13 25720 38.914557255584 0 +13 25730 38.914717255584 0 +13 25730 38.914717255584 0 +13 25747 38.924399249631 0 +13 25747 38.924399249631 0 +13 25757 38.924559249631 0 +13 25757 38.924559249631 0 +13 25801 38.957383685955 0 +13 25801 38.957383685955 0 +13 25808 38.957543685955 0 +13 25808 38.957543685955 0 +13 25842 39.043993690005 0 +13 25842 39.043993690005 0 +13 25852 39.044153690005 0 +13 25852 39.044153690005 0 +13 25886 39.214557259182 0 +13 25886 39.214557259182 0 +13 25896 39.214717259182 0 +13 25896 39.214717259182 0 +13 25913 39.224399249629 0 +13 25913 39.224399249629 0 +13 25923 39.224559249629 0 +13 25923 39.224559249629 0 +13 25967 39.257383685955 0 +13 25967 39.257383685955 0 +13 25974 39.257543685955 0 +13 25974 39.257543685955 0 +13 26008 39.343993663209 0 +13 26008 39.343993663209 0 +13 26018 39.344153663209 0 +13 26018 39.344153663209 0 +13 26052 39.514557263099 0 +13 26052 39.514557263099 0 +13 26062 39.514717263099 0 +13 26062 39.514717263099 0 +13 26079 39.524399249613 0 +13 26079 39.524399249613 0 +13 26089 39.524559249613 0 +13 26089 39.524559249613 0 +13 26133 39.557383685955 0 +13 26133 39.557383685955 0 +13 26140 39.557543685955 0 +13 26140 39.557543685955 0 +13 26174 39.643993635768 0 +13 26174 39.643993635768 0 +13 26184 39.644153635768 0 +13 26184 39.644153635768 0 +13 26218 39.81455726744 0 +13 26218 39.81455726744 0 +13 26228 39.81471726744 0 +13 26228 39.81471726744 0 +13 26245 39.824399249586 0 +13 26245 39.824399249586 0 +13 26255 39.824559249586 0 +13 26255 39.824559249586 0 +13 26299 39.857383685955 0 +13 26299 39.857383685955 0 +13 26306 39.857543685955 0 +13 26306 39.857543685955 0 +13 26340 39.943993607814 0 +13 26340 39.943993607814 0 +13 26350 39.944153607814 0 +13 26350 39.944153607814 0 +13 26384 40.114557272479 0 +13 26384 40.114557272479 0 +13 26394 40.114717272479 0 +13 26394 40.114717272479 0 +13 26411 40.124399249559 0 +13 26411 40.124399249559 0 +13 26421 40.124559249559 0 +13 26421 40.124559249559 0 +13 26465 40.157383685955 0 +13 26465 40.157383685955 0 +13 26472 40.157543685955 0 +13 26472 40.157543685955 0 +13 26505 40.243993579799 0 +13 26505 40.243993579799 0 +13 26511 40.244153579799 0 +13 26511 40.244153579799 0 +13 26550 40.414557278253 0 +13 26550 40.414557278253 0 +13 26560 40.414717278253 0 +13 26560 40.414717278253 0 +13 26577 40.424399249535 0 +13 26577 40.424399249535 0 +13 26587 40.424559249535 0 +13 26587 40.424559249535 0 +13 26631 40.457383685955 0 +13 26631 40.457383685955 0 +13 26638 40.457543685955 0 +13 26638 40.457543685955 0 +13 26671 40.543993551811 0 +13 26671 40.543993551811 0 +13 26677 40.544153551811 0 +13 26677 40.544153551811 0 +13 26716 40.714557284831 0 +13 26716 40.714557284831 0 +13 26726 40.714717284831 0 +13 26726 40.714717284831 0 +13 26743 40.724399249515 0 +13 26743 40.724399249515 0 +13 26753 40.724559249515 0 +13 26753 40.724559249515 0 +13 26801 40.757383685955 0 +13 26801 40.757383685955 0 +13 26808 40.757543685955 0 +13 26808 40.757543685955 0 +13 26841 40.843993523891 0 +13 26841 40.843993523891 0 +13 26847 40.844153523891 0 +13 26847 40.844153523891 0 +13 26890 41.014557292056 0 +13 26890 41.014557292056 0 +13 26900 41.014717292056 0 +13 26900 41.014717292056 0 +13 26917 41.024399249498 0 +13 26917 41.024399249498 0 +13 26927 41.024559249498 0 +13 26927 41.024559249498 0 +13 26975 41.057383685955 0 +13 26975 41.057383685955 0 +13 26982 41.057543685955 0 +13 26982 41.057543685955 0 +13 27015 41.143993495882 0 +13 27015 41.143993495882 0 +13 27021 41.144153495882 0 +13 27021 41.144153495882 0 +13 27064 41.314557299998 0 +13 27064 41.314557299998 0 +13 27074 41.314717299998 0 +13 27074 41.314717299998 0 +13 27091 41.324399249485 0 +13 27091 41.324399249485 0 +13 27101 41.324559249485 0 +13 27101 41.324559249485 0 +13 27149 41.357383685955 0 +13 27149 41.357383685955 0 +13 27156 41.357543685955 0 +13 27156 41.357543685955 0 +13 27189 41.44399346791 0 +13 27189 41.44399346791 0 +13 27195 41.44415346791 0 +13 27195 41.44415346791 0 +13 27238 41.614557308543 0 +13 27238 41.614557308543 0 +13 27248 41.614717308543 0 +13 27248 41.614717308543 0 +13 27265 41.624399249475 0 +13 27265 41.624399249475 0 +13 27275 41.624559249475 0 +13 27275 41.624559249475 0 +13 27323 41.657383685955 0 +13 27323 41.657383685955 0 +13 27330 41.657543685955 0 +13 27330 41.657543685955 0 +13 27363 41.743993439965 0 +13 27363 41.743993439965 0 +13 27369 41.744153439965 0 +13 27369 41.744153439965 0 +13 27412 41.914557317732 0 +13 27412 41.914557317732 0 +13 27422 41.914717317732 0 +13 27422 41.914717317732 0 +13 27439 41.924399249468 0 +13 27439 41.924399249468 0 +13 27449 41.924559249468 0 +13 27449 41.924559249468 0 +13 27497 41.957383685955 0 +13 27497 41.957383685955 0 +13 27504 41.957543685955 0 +13 27504 41.957543685955 0 +13 27537 42.043993412971 0 +13 27537 42.043993412971 0 +13 27543 42.044153412971 0 +13 27543 42.044153412971 0 +13 27586 42.214557327498 0 +13 27586 42.214557327498 0 +13 27596 42.214717327498 0 +13 27596 42.214717327498 0 +13 27613 42.224399249465 0 +13 27613 42.224399249465 0 +13 27623 42.224559249465 0 +13 27623 42.224559249465 0 +13 27671 42.257383685955 0 +13 27671 42.257383685955 0 +13 27678 42.257543685955 0 +13 27678 42.257543685955 0 +13 27711 42.34399338739 0 +13 27711 42.34399338739 0 +13 27717 42.34415338739 0 +13 27717 42.34415338739 0 +13 27760 42.514557337799 0 +13 27760 42.514557337799 0 +13 27770 42.514717337799 0 +13 27770 42.514717337799 0 +13 27787 42.524399249465 0 +13 27787 42.524399249465 0 +13 27797 42.524559249465 0 +13 27797 42.524559249465 0 +13 27845 42.557383685955 0 +13 27845 42.557383685955 0 +13 27852 42.557543685955 0 +13 27852 42.557543685955 0 +13 27885 42.643993363107 0 +13 27885 42.643993363107 0 +13 27891 42.644153363107 0 +13 27891 42.644153363107 0 +13 27934 42.814557348649 0 +13 27934 42.814557348649 0 +13 27944 42.814717348649 0 +13 27944 42.814717348649 0 +13 27961 42.824399249468 0 +13 27961 42.824399249468 0 +13 27971 42.824559249468 0 +13 27971 42.824559249468 0 +13 28019 42.857383685955 0 +13 28019 42.857383685955 0 +13 28026 42.857543685955 0 +13 28026 42.857543685955 0 +13 28059 42.943993340208 0 +13 28059 42.943993340208 0 +13 28065 42.944153340208 0 +13 28065 42.944153340208 0 +13 28107 43.114557359966 0 +13 28107 43.114557359966 0 +13 28113 43.114717359966 0 +13 28113 43.114717359966 0 +13 28135 43.124399249475 0 +13 28135 43.124399249475 0 +13 28145 43.124559249475 0 +13 28145 43.124559249475 0 +13 28193 43.157383685955 0 +13 28193 43.157383685955 0 +13 28200 43.157543685955 0 +13 28200 43.157543685955 0 +13 28233 43.243993318662 0 +13 28233 43.243993318662 0 +13 28239 43.244153318662 0 +13 28239 43.244153318662 0 +13 28281 43.414557371721 0 +13 28281 43.414557371721 0 +13 28287 43.414717371721 0 +13 28287 43.414717371721 0 +13 28309 43.424399249485 0 +13 28309 43.424399249485 0 +13 28319 43.424559249485 0 +13 28319 43.424559249485 0 +13 28367 43.457383685955 0 +13 28367 43.457383685955 0 +13 28374 43.457543685955 0 +13 28374 43.457543685955 0 +13 28407 43.543993298467 0 +13 28407 43.543993298467 0 +13 28413 43.544153298467 0 +13 28413 43.544153298467 0 +13 28455 43.71455738363 0 +13 28455 43.71455738363 0 +13 28461 43.71471738363 0 +13 28461 43.71471738363 0 +13 28483 43.724399249498 0 +13 28483 43.724399249498 0 +13 28493 43.724559249498 0 +13 28493 43.724559249498 0 +13 28541 43.757383685955 0 +13 28541 43.757383685955 0 +13 28548 43.757543685955 0 +13 28548 43.757543685955 0 +13 28581 43.843993279612 0 +13 28581 43.843993279612 0 +13 28587 43.844153279612 0 +13 28587 43.844153279612 0 +13 28629 44.014557394666 0 +13 28629 44.014557394666 0 +13 28635 44.014717394666 0 +13 28635 44.014717394666 0 +13 28657 44.024399249515 0 +13 28657 44.024399249515 0 +13 28667 44.024559249515 0 +13 28667 44.024559249515 0 +13 28715 44.057383685955 0 +13 28715 44.057383685955 0 +13 28722 44.057543685955 0 +13 28722 44.057543685955 0 +13 28755 44.143993262339 0 +13 28755 44.143993262339 0 +13 28761 44.144153262339 0 +13 28761 44.144153262339 0 +13 28803 44.314557404849 0 +13 28803 44.314557404849 0 +13 28809 44.314717404849 0 +13 28809 44.314717404849 0 +13 28832 44.324399249523 0 +13 28832 44.324399249523 0 +13 28846 44.324559249523 0 +13 28846 44.324559249523 0 +13 28885 44.357383685955 0 +13 28885 44.357383685955 0 +13 28892 44.357543685955 0 +13 28892 44.357543685955 0 +13 28925 44.443993247573 0 +13 28925 44.443993247573 0 +13 28931 44.444153247573 0 +13 28931 44.444153247573 0 +13 28969 44.614557414115 0 +13 28969 44.614557414115 0 +13 28975 44.614717414115 0 +13 28975 44.614717414115 0 +13 28998 44.624399249512 0 +13 28998 44.624399249512 0 +13 29012 44.624559249512 0 +13 29012 44.624559249512 0 +13 29051 44.657383685955 0 +13 29051 44.657383685955 0 +13 29058 44.657543685955 0 +13 29058 44.657543685955 0 +13 29091 44.743993235516 0 +13 29091 44.743993235516 0 +13 29097 44.744153235516 0 +13 29097 44.744153235516 0 +13 29135 44.914557422365 0 +13 29135 44.914557422365 0 +13 29141 44.914717422365 0 +13 29141 44.914717422365 0 +13 29164 44.92439924949 0 +13 29164 44.92439924949 0 +13 29178 44.92455924949 0 +13 29178 44.92455924949 0 +13 29217 44.957383685955 0 +13 29217 44.957383685955 0 +13 29224 44.957543685955 0 +13 29224 44.957543685955 0 +13 29257 45.04399322614 0 +13 29257 45.04399322614 0 +13 29263 45.04415322614 0 +13 29263 45.04415322614 0 +13 29301 45.214557429517 0 +13 29301 45.214557429517 0 +13 29307 45.214717429517 0 +13 29307 45.214717429517 0 +13 29330 45.224399249469 0 +13 29330 45.224399249469 0 +13 29344 45.224559249469 0 +13 29344 45.224559249469 0 +13 29383 45.257383685955 0 +13 29383 45.257383685955 0 +13 29390 45.257543685955 0 +13 29390 45.257543685955 0 +13 29423 45.343993218642 0 +13 29423 45.343993218642 0 +13 29429 45.344153218642 0 +13 29429 45.344153218642 0 +13 29467 45.514557435742 0 +13 29467 45.514557435742 0 +13 29473 45.514717435742 0 +13 29473 45.514717435742 0 +13 29496 45.524399249468 0 +13 29496 45.524399249468 0 +13 29510 45.524559249468 0 +13 29510 45.524559249468 0 +13 29549 45.557383685955 0 +13 29549 45.557383685955 0 +13 29556 45.557543685955 0 +13 29556 45.557543685955 0 +13 29589 45.643993212262 0 +13 29589 45.643993212262 0 +13 29595 45.644153212262 0 +13 29595 45.644153212262 0 +13 29633 45.814557442585 0 +13 29633 45.814557442585 0 +13 29639 45.814717442585 0 +13 29639 45.814717442585 0 +13 29662 45.82439924948 0 +13 29662 45.82439924948 0 +13 29676 45.82455924948 0 +13 29676 45.82455924948 0 +13 29715 45.857383685955 0 +13 29715 45.857383685955 0 +13 29722 45.857543685955 0 +13 29722 45.857543685955 0 +13 29755 45.943993205371 0 +13 29755 45.943993205371 0 +13 29761 45.944153205371 0 +13 29761 45.944153205371 0 +13 29799 46.114557450187 0 +13 29799 46.114557450187 0 +13 29805 46.114717450187 0 +13 29805 46.114717450187 0 +13 29828 46.124399246618 0 +13 29828 46.124399246618 0 +13 29842 46.124559246618 0 +13 29842 46.124559246618 0 +13 29881 46.157383685955 0 +13 29881 46.157383685955 0 +13 29888 46.157543685955 0 +13 29888 46.157543685955 0 +13 29921 46.24399319776 0 +13 29921 46.24399319776 0 +13 29927 46.24415319776 0 +13 29927 46.24415319776 0 +13 29965 46.414557458063 0 +13 29965 46.414557458063 0 +13 29971 46.414717458063 0 +13 29971 46.414717458063 0 +13 29994 46.424399237708 0 +13 29994 46.424399237708 0 +13 30008 46.424559237708 0 +13 30008 46.424559237708 0 +13 30047 46.457383685955 0 +13 30047 46.457383685955 0 +13 30054 46.457543685955 0 +13 30054 46.457543685955 0 +13 30087 46.54399318918 0 +13 30087 46.54399318918 0 +13 30093 46.54415318918 0 +13 30093 46.54415318918 0 +13 30131 46.714557464072 0 +13 30131 46.714557464072 0 +13 30137 46.714717464072 0 +13 30137 46.714717464072 0 +13 30160 46.724399226197 0 +13 30160 46.724399226197 0 +13 30174 46.724559226197 0 +13 30174 46.724559226197 0 +13 30213 46.757383685955 0 +13 30213 46.757383685955 0 +13 30220 46.757543685955 0 +13 30220 46.757543685955 0 +13 30253 46.843993179661 0 +13 30253 46.843993179661 0 +13 30259 46.844153179661 0 +13 30259 46.844153179661 0 +13 30297 47.014557466477 0 +13 30297 47.014557466477 0 +13 30303 47.014717466477 0 +13 30303 47.014717466477 0 +13 30326 47.02439921469 0 +13 30326 47.02439921469 0 +13 30340 47.02455921469 0 +13 30340 47.02455921469 0 +13 30379 47.057383685955 0 +13 30379 47.057383685955 0 +13 30386 47.057543685955 0 +13 30386 47.057543685955 0 +13 30419 47.143993169499 0 +13 30419 47.143993169499 0 +13 30425 47.144153169499 0 +13 30425 47.144153169499 0 +13 30463 47.314557467583 0 +13 30463 47.314557467583 0 +13 30469 47.314717467583 0 +13 30469 47.314717467583 0 +13 30492 47.324399203344 0 +13 30492 47.324399203344 0 +13 30506 47.324559203344 0 +13 30506 47.324559203344 0 +13 30545 47.357383685955 0 +13 30545 47.357383685955 0 +13 30552 47.357543685955 0 +13 30552 47.357543685955 0 +13 30585 47.443993161554 0 +13 30585 47.443993161554 0 +13 30591 47.444153161554 0 +13 30591 47.444153161554 0 +13 30629 47.614557469418 0 +13 30629 47.614557469418 0 +13 30635 47.614717469418 0 +13 30635 47.614717469418 0 +13 30658 47.62439919222 0 +13 30658 47.62439919222 0 +13 30672 47.62455919222 0 +13 30672 47.62455919222 0 +13 30711 47.657383685955 0 +13 30711 47.657383685955 0 +13 30718 47.657543685955 0 +13 30718 47.657543685955 0 +13 30751 47.743993166005 0 +13 30751 47.743993166005 0 +13 30757 47.744153166005 0 +13 30757 47.744153166005 0 +13 30795 47.914557472096 0 +13 30795 47.914557472096 0 +13 30801 47.914717472096 0 +13 30801 47.914717472096 0 +13 30824 47.924399181338 0 +13 30824 47.924399181338 0 +13 30838 47.924559181338 0 +13 30838 47.924559181338 0 +13 30877 47.957383685955 0 +13 30877 47.957383685955 0 +13 30884 47.957543685955 0 +13 30884 47.957543685955 0 +13 30917 48.043993178928 0 +13 30917 48.043993178928 0 +13 30923 48.044153178928 0 +13 30923 48.044153178928 0 +13 30961 48.214557475721 0 +13 30961 48.214557475721 0 +13 30967 48.214717475721 0 +13 30967 48.214717475721 0 +13 30989 48.224399170754 0 +13 30989 48.224399170754 0 +13 30999 48.224559170754 0 +13 30999 48.224559170754 0 +13 31043 48.257383685955 0 +13 31043 48.257383685955 0 +13 31050 48.257543685955 0 +13 31050 48.257543685955 0 +13 31083 48.343993193323 0 +13 31083 48.343993193323 0 +13 31089 48.344153193323 0 +13 31089 48.344153193323 0 +13 31128 48.514557480378 0 +13 31128 48.514557480378 0 +13 31138 48.514717480378 0 +13 31138 48.514717480378 0 +13 31155 48.524399160478 0 +13 31155 48.524399160478 0 +13 31165 48.524559160478 0 +13 31165 48.524559160478 0 +13 31209 48.557383685955 0 +13 31209 48.557383685955 0 +13 31216 48.557543685955 0 +13 31216 48.557543685955 0 +13 31249 48.643993209351 0 +13 31249 48.643993209351 0 +13 31255 48.644153209351 0 +13 31255 48.644153209351 0 +13 31294 48.8145574862 0 +13 31294 48.8145574862 0 +13 31304 48.8147174862 0 +13 31304 48.8147174862 0 +13 31321 48.824399150571 0 +13 31321 48.824399150571 0 +13 31331 48.824559150571 0 +13 31331 48.824559150571 0 +13 31375 48.857383685955 0 +13 31375 48.857383685955 0 +13 31382 48.857543685955 0 +13 31382 48.857543685955 0 +13 31415 48.943993225428 0 +13 31415 48.943993225428 0 +13 31421 48.944153225428 0 +13 31421 48.944153225428 0 +13 31460 49.11455749318 0 +13 31460 49.11455749318 0 +13 31470 49.11471749318 0 +13 31470 49.11471749318 0 +13 31487 49.124399141102 0 +13 31487 49.124399141102 0 +13 31497 49.124559141102 0 +13 31497 49.124559141102 0 +13 31541 49.157383685955 0 +13 31541 49.157383685955 0 +13 31548 49.157543685955 0 +13 31548 49.157543685955 0 +13 31581 49.243993241593 0 +13 31581 49.243993241593 0 +13 31587 49.244153241593 0 +13 31587 49.244153241593 0 +13 31626 49.4145575013 0 +13 31626 49.4145575013 0 +13 31636 49.4147175013 0 +13 31636 49.4147175013 0 +13 31653 49.424399131999 0 +13 31653 49.424399131999 0 +13 31663 49.424559131999 0 +13 31663 49.424559131999 0 +13 31707 49.457383685955 0 +13 31707 49.457383685955 0 +13 31714 49.457543685955 0 +13 31714 49.457543685955 0 +13 31747 49.543993256365 0 +13 31747 49.543993256365 0 +13 31753 49.544153256365 0 +13 31753 49.544153256365 0 +13 31792 49.714557510532 0 +13 31792 49.714557510532 0 +13 31802 49.714717510532 0 +13 31802 49.714717510532 0 +13 31818 49.72439912329 0 +13 31818 49.72439912329 0 +13 31824 49.72455912329 0 +13 31824 49.72455912329 0 +13 31873 49.757383685955 0 +13 31873 49.757383685955 0 +13 31880 49.757543685955 0 +13 31880 49.757543685955 0 +13 31913 49.843993271223 0 +13 31913 49.843993271223 0 +13 31919 49.844153271223 0 +13 31919 49.844153271223 0 +13 31958 50.014557520716 0 +13 31958 50.014557520716 0 +13 31968 50.014717520716 0 +13 31968 50.014717520716 0 +13 31984 50.024399114997 0 +13 31984 50.024399114997 0 +13 31990 50.024559114997 0 +13 31990 50.024559114997 0 +13 32039 50.057383685955 0 +13 32039 50.057383685955 0 +13 32046 50.057543685955 0 +13 32046 50.057543685955 0 +13 32079 50.143993285388 0 +13 32079 50.143993285388 0 +13 32085 50.144153285388 0 +13 32085 50.144153285388 0 +13 32124 50.314557531836 0 +13 32124 50.314557531836 0 +13 32134 50.314717531836 0 +13 32134 50.314717531836 0 +13 32150 50.324399107181 0 +13 32150 50.324399107181 0 +13 32156 50.324559107181 0 +13 32156 50.324559107181 0 +13 32205 50.357383685955 0 +13 32205 50.357383685955 0 +13 32212 50.357543685955 0 +13 32212 50.357543685955 0 +13 32245 50.443993299881 0 +13 32245 50.443993299881 0 +13 32251 50.444153299881 0 +13 32251 50.444153299881 0 +13 32290 50.614557543841 0 +13 32290 50.614557543841 0 +13 32300 50.614717543841 0 +13 32300 50.614717543841 0 +13 32316 50.6243990998 0 +13 32316 50.6243990998 0 +13 32322 50.6245590998 0 +13 32322 50.6245590998 0 +13 32371 50.657383685955 0 +13 32371 50.657383685955 0 +13 32378 50.657543685955 0 +13 32378 50.657543685955 0 +13 32411 50.743993314719 0 +13 32411 50.743993314719 0 +13 32417 50.744153314719 0 +13 32417 50.744153314719 0 +13 32456 50.914557556641 0 +13 32456 50.914557556641 0 +13 32466 50.914717556641 0 +13 32466 50.914717556641 0 +13 32482 50.924399092883 0 +13 32482 50.924399092883 0 +13 32488 50.924559092883 0 +13 32488 50.924559092883 0 +13 32537 50.957383685955 0 +13 32537 50.957383685955 0 +13 32544 50.957543685955 0 +13 32544 50.957543685955 0 +13 32577 51.043993329888 0 +13 32577 51.043993329888 0 +13 32583 51.044153329888 0 +13 32583 51.044153329888 0 +13 32644 51.224399086505 0 +13 32644 51.224399086505 0 +13 32650 51.224559086505 0 +13 32650 51.224559086505 0 +13 32699 51.257383685955 0 +13 32699 51.257383685955 0 +13 32706 51.257543685955 0 +13 32706 51.257543685955 0 +13 32735 51.343993345414 0 +13 32735 51.343993345414 0 +13 32741 51.344153345414 0 +13 32741 51.344153345414 0 +13 32802 51.524399080627 0 +13 32802 51.524399080627 0 +13 32808 51.524559080627 0 +13 32808 51.524559080627 0 +13 32835 51.531276906599 0 +13 32835 51.531276906599 0 +13 32845 51.531436906599 0 +13 32845 51.531436906599 0 +13 32861 51.557383685955 0 +13 32861 51.557383685955 0 +13 32868 51.557543685955 0 +13 32868 51.557543685955 0 +13 32901 51.643993361304 0 +13 32901 51.643993361304 0 +13 32907 51.644153361304 0 +13 32907 51.644153361304 0 +13 32968 51.824399075287 0 +13 32968 51.824399075287 0 +13 32974 51.824559075287 0 +13 32974 51.824559075287 0 +13 33001 51.831276887561 0 +13 33001 51.831276887561 0 +13 33011 51.831436887561 0 +13 33011 51.831436887561 0 +13 33027 51.857383685955 0 +13 33027 51.857383685955 0 +13 33034 51.857543685955 0 +13 33034 51.857543685955 0 +13 33067 51.943993377578 0 +13 33067 51.943993377578 0 +13 33073 51.944153377578 0 +13 33073 51.944153377578 0 +13 33134 52.124399070526 0 +13 33134 52.124399070526 0 +13 33140 52.124559070526 0 +13 33140 52.124559070526 0 +13 33167 52.131276868507 0 +13 33167 52.131276868507 0 +13 33177 52.131436868507 0 +13 33177 52.131436868507 0 +13 33193 52.157383685955 0 +13 33193 52.157383685955 0 +13 33200 52.157543685955 0 +13 33200 52.157543685955 0 +13 33233 52.243993394241 0 +13 33233 52.243993394241 0 +13 33239 52.244153394241 0 +13 33239 52.244153394241 0 +13 33300 52.424399066364 0 +13 33300 52.424399066364 0 +13 33306 52.424559066364 0 +13 33306 52.424559066364 0 +13 33333 52.431276849398 0 +13 33333 52.431276849398 0 +13 33343 52.431436849398 0 +13 33343 52.431436849398 0 +13 33359 52.457383685955 0 +13 33359 52.457383685955 0 +13 33366 52.457543685955 0 +13 33366 52.457543685955 0 +13 33399 52.543993411231 0 +13 33399 52.543993411231 0 +13 33405 52.544153411231 0 +13 33405 52.544153411231 0 +13 33466 52.724399062755 0 +13 33466 52.724399062755 0 +13 33472 52.724559062755 0 +13 33472 52.724559062755 0 +13 33498 52.731276830378 0 +13 33498 52.731276830378 0 +13 33504 52.731436830378 0 +13 33504 52.731436830378 0 +13 33525 52.757383685955 0 +13 33525 52.757383685955 0 +13 33532 52.757543685955 0 +13 33532 52.757543685955 0 +13 33565 52.843993428579 0 +13 33565 52.843993428579 0 +13 33571 52.844153428579 0 +13 33571 52.844153428579 0 +13 33632 53.024399059705 0 +13 33632 53.024399059705 0 +13 33638 53.024559059705 0 +13 33638 53.024559059705 0 +13 33664 53.031276811401 0 +13 33664 53.031276811401 0 +13 33670 53.031436811401 0 +13 33670 53.031436811401 0 +13 33691 53.057383685955 0 +13 33691 53.057383685955 0 +13 33698 53.057543685955 0 +13 33698 53.057543685955 0 +13 33731 53.143993445991 0 +13 33731 53.143993445991 0 +13 33737 53.144153445991 0 +13 33737 53.144153445991 0 +13 33774 53.324399056666 0 +13 33774 53.324399056666 0 +13 33779 53.324559056666 0 +13 33779 53.324559056666 0 +13 33803 53.331276793082 0 +13 33803 53.331276793082 0 +13 33808 53.331436793082 0 +13 33808 53.331436793082 0 +13 33828 53.357383685955 0 +13 33828 53.357383685955 0 +13 33834 53.357543685955 0 +13 33834 53.357543685955 0 +13 33865 53.443993462692 0 +13 33865 53.443993462692 0 +13 33870 53.444153462692 0 +13 33870 53.444153462692 0 +13 33901 53.624399053363 0 +13 33901 53.624399053363 0 +13 33906 53.624559053363 0 +13 33906 53.624559053363 0 +13 33930 53.631276775636 0 +13 33930 53.631276775636 0 +13 33935 53.631436775636 0 +13 33935 53.631436775636 0 +13 33955 53.657383685955 0 +13 33955 53.657383685955 0 +13 33961 53.657543685955 0 +13 33961 53.657543685955 0 +13 33992 53.74399347871 0 +13 33992 53.74399347871 0 +13 33997 53.74415347871 0 +13 33997 53.74415347871 0 +13 34028 53.924399049701 0 +13 34028 53.924399049701 0 +13 34033 53.924559049701 0 +13 34033 53.924559049701 0 +13 34057 53.931276759068 0 +13 34057 53.931276759068 0 +13 34062 53.931436759068 0 +13 34062 53.931436759068 0 +13 34082 53.957383685955 0 +13 34082 53.957383685955 0 +13 34088 53.957543685955 0 +13 34088 53.957543685955 0 +13 34119 54.04399349386 0 +13 34119 54.04399349386 0 +13 34124 54.04415349386 0 +13 34124 54.04415349386 0 +13 34155 54.224399045616 0 +13 34155 54.224399045616 0 +13 34160 54.224559045616 0 +13 34160 54.224559045616 0 +13 34184 54.231276743362 0 +13 34184 54.231276743362 0 +13 34189 54.231436743362 0 +13 34189 54.231436743362 0 +13 34209 54.257383685955 0 +13 34209 54.257383685955 0 +13 34215 54.257543685955 0 +13 34215 54.257543685955 0 +13 34246 54.343993508088 0 +13 34246 54.343993508088 0 +13 34251 54.344153508088 0 +13 34251 54.344153508088 0 +13 34282 54.524399041209 0 +13 34282 54.524399041209 0 +13 34287 54.524559041209 0 +13 34287 54.524559041209 0 +13 34311 54.531276728362 0 +13 34311 54.531276728362 0 +13 34316 54.531436728362 0 +13 34316 54.531436728362 0 +13 34336 54.557383685955 0 +13 34336 54.557383685955 0 +13 34342 54.557543685955 0 +13 34342 54.557543685955 0 +13 34373 54.643993521993 0 +13 34373 54.643993521993 0 +13 34378 54.644153521993 0 +13 34378 54.644153521993 0 +13 34409 54.824399037501 0 +13 34409 54.824399037501 0 +13 34414 54.824559037501 0 +13 34414 54.824559037501 0 +13 34438 54.831276713317 0 +13 34438 54.831276713317 0 +13 34443 54.831436713317 0 +13 34443 54.831436713317 0 +13 34463 54.857383685955 0 +13 34463 54.857383685955 0 +13 34469 54.857543685955 0 +13 34469 54.857543685955 0 +13 34500 54.943993536727 0 +13 34500 54.943993536727 0 +13 34505 54.944153536727 0 +13 34505 54.944153536727 0 +13 34536 55.124399034691 0 +13 34536 55.124399034691 0 +13 34541 55.124559034691 0 +13 34541 55.124559034691 0 +13 34565 55.131276698742 0 +13 34565 55.131276698742 0 +13 34570 55.131436698742 0 +13 34570 55.131436698742 0 +13 34590 55.157383685955 0 +13 34590 55.157383685955 0 +13 34596 55.157543685955 0 +13 34596 55.157543685955 0 +13 34627 55.243993552196 0 +13 34627 55.243993552196 0 +13 34632 55.244153552196 0 +13 34632 55.244153552196 0 +13 34663 55.424399032731 0 +13 34663 55.424399032731 0 +13 34668 55.424559032731 0 +13 34668 55.424559032731 0 +13 34692 55.431276684798 0 +13 34692 55.431276684798 0 +13 34697 55.431436684798 0 +13 34697 55.431436684798 0 +13 34717 55.457383685955 0 +13 34717 55.457383685955 0 +13 34723 55.457543685955 0 +13 34723 55.457543685955 0 +13 34754 55.543993568263 0 +13 34754 55.543993568263 0 +13 34759 55.544153568263 0 +13 34759 55.544153568263 0 +13 34790 55.72439903167 0 +13 34790 55.72439903167 0 +13 34795 55.72455903167 0 +13 34795 55.72455903167 0 +13 34819 55.731276671503 0 +13 34819 55.731276671503 0 +13 34824 55.731436671503 0 +13 34824 55.731436671503 0 +13 34844 55.757383685955 0 +13 34844 55.757383685955 0 +13 34850 55.757543685955 0 +13 34850 55.757543685955 0 +13 34881 55.843993584895 0 +13 34881 55.843993584895 0 +13 34886 55.844153584895 0 +13 34886 55.844153584895 0 +13 34917 56.02439903159 0 +13 34917 56.02439903159 0 +13 34922 56.02455903159 0 +13 34922 56.02455903159 0 +13 34946 56.031276658808 0 +13 34946 56.031276658808 0 +13 34951 56.031436658808 0 +13 34951 56.031436658808 0 +13 34971 56.057383685955 0 +13 34971 56.057383685955 0 +13 34977 56.057543685955 0 +13 34977 56.057543685955 0 +13 35008 56.143993602134 0 +13 35008 56.143993602134 0 +13 35013 56.144153602134 0 +13 35013 56.144153602134 0 +13 35044 56.324399032473 0 +13 35044 56.324399032473 0 +13 35049 56.324559032473 0 +13 35049 56.324559032473 0 +13 35073 56.331276646771 0 +13 35073 56.331276646771 0 +13 35078 56.331436646771 0 +13 35078 56.331436646771 0 +13 35098 56.357383685955 0 +13 35098 56.357383685955 0 +13 35104 56.357543685955 0 +13 35104 56.357543685955 0 +13 35135 56.443993619822 0 +13 35135 56.443993619822 0 +13 35140 56.444153619822 0 +13 35140 56.444153619822 0 +13 35169 56.624399034306 0 +13 35169 56.624399034306 0 +13 35173 56.624559034306 0 +13 35173 56.624559034306 0 +13 35192 56.631276634911 0 +13 35192 56.631276634911 0 +13 35196 56.631436634911 0 +13 35196 56.631436634911 0 +13 35215 56.657383685955 0 +13 35215 56.657383685955 0 +13 35220 56.657543685955 0 +13 35220 56.657543685955 0 +13 35253 56.924399037177 0 +13 35253 56.924399037177 0 +13 35257 56.924559037177 0 +13 35257 56.924559037177 0 +13 35276 56.931276625815 0 +13 35276 56.931276625815 0 +13 35280 56.931436625815 0 +13 35280 56.931436625815 0 +13 35299 56.957383685955 0 +13 35299 56.957383685955 0 +13 35304 56.957543685955 0 +13 35304 56.957543685955 0 +13 35337 57.224399041135 0 +13 35337 57.224399041135 0 +13 35341 57.224559041135 0 +13 35341 57.224559041135 0 +13 35360 57.231276624504 0 +13 35360 57.231276624504 0 +13 35364 57.231436624504 0 +13 35364 57.231436624504 0 +13 35383 57.257383685955 0 +13 35383 57.257383685955 0 +13 35388 57.257543685955 0 +13 35388 57.257543685955 0 +13 35421 57.524399046156 0 +13 35421 57.524399046156 0 +13 35425 57.524559046156 0 +13 35425 57.524559046156 0 +13 35444 57.531276623773 0 +13 35444 57.531276623773 0 +13 35448 57.531436623773 0 +13 35448 57.531436623773 0 +13 35467 57.557383685955 0 +13 35467 57.557383685955 0 +13 35472 57.557543685955 0 +13 35472 57.557543685955 0 +13 35505 57.824399052067 0 +13 35505 57.824399052067 0 +13 35509 57.824559052067 0 +13 35509 57.824559052067 0 +13 35528 57.83127662344 0 +13 35528 57.83127662344 0 +13 35532 57.83143662344 0 +13 35532 57.83143662344 0 +13 35551 57.857383685955 0 +13 35551 57.857383685955 0 +13 35556 57.857543685955 0 +13 35556 57.857543685955 0 +13 35589 58.12439905849 0 +13 35589 58.12439905849 0 +13 35593 58.12455905849 0 +13 35593 58.12455905849 0 +13 35612 58.131276624201 0 +13 35612 58.131276624201 0 +13 35616 58.131436624201 0 +13 35616 58.131436624201 0 +13 35635 58.157383685955 0 +13 35635 58.157383685955 0 +13 35640 58.157543685955 0 +13 35640 58.157543685955 0 +13 35673 58.424399065464 0 +13 35673 58.424399065464 0 +13 35677 58.424559065464 0 +13 35677 58.424559065464 0 +13 35696 58.431276626037 0 +13 35696 58.431276626037 0 +13 35700 58.431436626037 0 +13 35700 58.431436626037 0 +13 35719 58.457383685955 0 +13 35719 58.457383685955 0 +13 35724 58.457543685955 0 +13 35724 58.457543685955 0 +13 35757 58.72439907295 0 +13 35757 58.72439907295 0 +13 35761 58.72455907295 0 +13 35761 58.72455907295 0 +13 35780 58.731276628991 0 +13 35780 58.731276628991 0 +13 35784 58.731436628991 0 +13 35784 58.731436628991 0 +13 35803 58.757383685955 0 +13 35803 58.757383685955 0 +13 35808 58.757543685955 0 +13 35808 58.757543685955 0 +13 35841 59.024399080905 0 +13 35841 59.024399080905 0 +13 35845 59.024559080905 0 +13 35845 59.024559080905 0 +13 35864 59.031276633114 0 +13 35864 59.031276633114 0 +13 35868 59.031436633114 0 +13 35868 59.031436633114 0 +13 35887 59.057383685955 0 +13 35887 59.057383685955 0 +13 35892 59.057543685955 0 +13 35892 59.057543685955 0 +13 35925 59.324399089353 0 +13 35925 59.324399089353 0 +13 35929 59.324559089353 0 +13 35929 59.324559089353 0 +13 35948 59.331276638423 0 +13 35948 59.331276638423 0 +13 35952 59.331436638423 0 +13 35952 59.331436638423 0 +13 35971 59.357383685955 0 +13 35971 59.357383685955 0 +13 35976 59.357543685955 0 +13 35976 59.357543685955 0 +13 36009 59.624399098247 0 +13 36009 59.624399098247 0 +13 36013 59.624559098247 0 +13 36013 59.624559098247 0 +13 36032 59.631276644886 0 +13 36032 59.631276644886 0 +13 36036 59.631436644886 0 +13 36036 59.631436644886 0 +13 36055 59.657383685955 0 +13 36055 59.657383685955 0 +13 36060 59.657543685955 0 +13 36060 59.657543685955 0 +13 36093 59.924399107553 0 +13 36093 59.924399107553 0 +13 36097 59.924559107553 0 +13 36097 59.924559107553 0 +13 36116 59.931276652523 0 +13 36116 59.931276652523 0 +13 36120 59.931436652523 0 +13 36120 59.931436652523 0 +13 36139 59.957383685955 0 +13 36139 59.957383685955 0 +13 36144 59.957543685955 0 +13 36144 59.957543685955 0 +13 36177 60.224399117246 0 +13 36177 60.224399117246 0 +13 36181 60.224559117246 0 +13 36181 60.224559117246 0 +13 36196 60.231276661221 0 +13 36196 60.231276661221 0 +13 36200 60.231436661221 0 +13 36200 60.231436661221 0 +13 36215 60.257383685955 0 +13 36215 60.257383685955 0 +13 36220 60.257543685955 0 +13 36220 60.257543685955 0 +13 36253 60.524399127334 0 +13 36253 60.524399127334 0 +13 36257 60.524559127334 0 +13 36257 60.524559127334 0 +13 36272 60.53127667062 0 +13 36272 60.53127667062 0 +13 36276 60.53143667062 0 +13 36276 60.53143667062 0 +13 36291 60.557383685955 0 +13 36291 60.557383685955 0 +13 36296 60.557543685955 0 +13 36296 60.557543685955 0 +13 36329 60.824399137773 0 +13 36329 60.824399137773 0 +13 36333 60.824559137773 0 +13 36333 60.824559137773 0 +13 36348 60.831276680584 0 +13 36348 60.831276680584 0 +13 36352 60.831436680584 0 +13 36352 60.831436680584 0 +13 36367 60.857383685955 0 +13 36367 60.857383685955 0 +13 36372 60.857543685955 0 +13 36372 60.857543685955 0 +13 36405 61.124399148508 0 +13 36405 61.124399148508 0 +13 36409 61.124559148508 0 +13 36409 61.124559148508 0 +13 36424 61.131276691084 0 +13 36424 61.131276691084 0 +13 36428 61.131436691084 0 +13 36428 61.131436691084 0 +13 36443 61.157383685955 0 +13 36443 61.157383685955 0 +13 36448 61.157543685955 0 +13 36448 61.157543685955 0 +13 36481 61.424399159611 0 +13 36481 61.424399159611 0 +13 36485 61.424559159611 0 +13 36485 61.424559159611 0 +13 36500 61.431276701991 0 +13 36500 61.431276701991 0 +13 36504 61.431436701991 0 +13 36504 61.431436701991 0 +13 36519 61.457383685955 0 +13 36519 61.457383685955 0 +13 36524 61.457543685955 0 +13 36524 61.457543685955 0 +13 36557 61.724399171016 0 +13 36557 61.724399171016 0 +13 36561 61.724559171016 0 +13 36561 61.724559171016 0 +13 36576 61.731276713345 0 +13 36576 61.731276713345 0 +13 36580 61.731436713345 0 +13 36580 61.731436713345 0 +13 36595 61.757383685955 0 +13 36595 61.757383685955 0 +13 36600 61.757543685955 0 +13 36600 61.757543685955 0 +13 36633 62.024399182109 0 +13 36633 62.024399182109 0 +13 36637 62.024559182109 0 +13 36637 62.024559182109 0 +13 36652 62.031276725245 0 +13 36652 62.031276725245 0 +13 36656 62.031436725245 0 +13 36656 62.031436725245 0 +13 36671 62.057383685955 0 +13 36671 62.057383685955 0 +13 36676 62.057543685955 0 +13 36676 62.057543685955 0 +13 36709 62.324399192148 0 +13 36709 62.324399192148 0 +13 36713 62.324559192148 0 +13 36713 62.324559192148 0 +13 36728 62.3312767377 0 +13 36728 62.3312767377 0 +13 36732 62.3314367377 0 +13 36732 62.3314367377 0 +13 36747 62.357383685955 0 +13 36747 62.357383685955 0 +13 36752 62.357543685955 0 +13 36752 62.357543685955 0 +13 36785 62.624399201089 0 +13 36785 62.624399201089 0 +13 36789 62.624559201089 0 +13 36789 62.624559201089 0 +13 36804 62.631276750535 0 +13 36804 62.631276750535 0 +13 36808 62.631436750535 0 +13 36808 62.631436750535 0 +13 36823 62.657383685955 0 +13 36823 62.657383685955 0 +13 36828 62.657543685955 0 +13 36828 62.657543685955 0 +13 36861 62.924399208912 0 +13 36861 62.924399208912 0 +13 36865 62.924559208912 0 +13 36865 62.924559208912 0 +13 36880 62.931276763684 0 +13 36880 62.931276763684 0 +13 36884 62.931436763684 0 +13 36884 62.931436763684 0 +13 36899 62.957383685955 0 +13 36899 62.957383685955 0 +13 36904 62.957543685955 0 +13 36904 62.957543685955 0 +14 22 2.1 0 +14 22 2.1 0 +14 49 2.614557181566 0 +14 49 2.614557181566 0 +14 52 2.614717181566 0 +14 52 2.614717181566 0 +14 61 2.657383685955 0 +14 61 2.657383685955 2 +14 62 2.657383685955 2 +14 62 2.657383685955 0 +14 65 2.657383685955 0 +14 65 2.657383685955 0 +14 69 2.657543685955 0 +14 69 2.657543685955 0 +14 94 2.914557182681 0 +14 94 2.914557182681 0 +14 97 2.914717182681 0 +14 97 2.914717182681 0 +14 106 2.957383685955 0 +14 106 2.957383685955 2 +14 107 2.957383685955 2 +14 107 2.957383685955 0 +14 110 2.957383685955 0 +14 110 2.957383685955 0 +14 114 2.957543685955 0 +14 114 2.957543685955 0 +14 141 3.214557183861 0 +14 141 3.214557183861 0 +14 145 3.214717183861 0 +14 145 3.214717183861 0 +14 159 3.257383685955 0 +14 159 3.257383685955 2 +14 160 3.257383685955 2 +14 160 3.257383685955 0 +14 163 3.257383685955 0 +14 163 3.257383685955 0 +14 168 3.257543685955 0 +14 168 3.257543685955 0 +14 201 3.514557185136 0 +14 201 3.514557185136 0 +14 205 3.514717185136 0 +14 205 3.514717185136 0 +14 226 3.53127690138 0 +14 226 3.53127690138 0 +14 234 3.53143690138 0 +14 234 3.53143690138 0 +14 243 3.557383685955 0 +14 243 3.557383685955 2 +14 244 3.557383685955 2 +14 244 3.557383685955 0 +14 247 3.557383685955 0 +14 247 3.557383685955 0 +14 252 3.557543685955 0 +14 252 3.557543685955 0 +14 285 3.814557186493 0 +14 285 3.814557186493 0 +14 289 3.814717186493 0 +14 289 3.814717186493 0 +14 310 3.831276901063 0 +14 310 3.831276901063 0 +14 318 3.831436901063 0 +14 318 3.831436901063 0 +14 327 3.857383685955 0 +14 327 3.857383685955 2 +14 328 3.857383685955 2 +14 328 3.857383685955 0 +14 331 3.857383685955 0 +14 331 3.857383685955 0 +14 336 3.857543685955 0 +14 336 3.857543685955 0 +14 370 4.114557187941 0 +14 370 4.114557187941 0 +14 375 4.114717187941 0 +14 375 4.114717187941 0 +14 398 4.131276900741 0 +14 398 4.131276900741 0 +14 411 4.131436900741 0 +14 411 4.131436900741 0 +14 420 4.157383685955 0 +14 420 4.157383685955 2 +14 421 4.157383685955 2 +14 421 4.157383685955 0 +14 424 4.157383685955 0 +14 424 4.157383685955 0 +14 430 4.157543685955 0 +14 430 4.157543685955 0 +14 467 4.414557189528 0 +14 467 4.414557189528 0 +14 472 4.414717189528 0 +14 472 4.414717189528 0 +14 495 4.431276900411 0 +14 495 4.431276900411 0 +14 508 4.431436900411 0 +14 508 4.431436900411 0 +14 517 4.457383685955 0 +14 517 4.457383685955 2 +14 518 4.457383685955 2 +14 518 4.457383685955 0 +14 521 4.457383685955 0 +14 521 4.457383685955 0 +14 527 4.457543685955 0 +14 527 4.457543685955 0 +14 586 4.714557191249 0 +14 586 4.714557191249 0 +14 591 4.714717191249 0 +14 591 4.714717191249 0 +14 614 4.731276900107 0 +14 614 4.731276900107 0 +14 627 4.731436900107 0 +14 627 4.731436900107 0 +14 636 4.757383685955 0 +14 636 4.757383685955 2 +14 637 4.757383685955 2 +14 637 4.757383685955 0 +14 640 4.757383685955 0 +14 640 4.757383685955 0 +14 646 4.757543685955 0 +14 646 4.757543685955 0 +14 705 5.014557193103 0 +14 705 5.014557193103 0 +14 710 5.014717193103 0 +14 710 5.014717193103 0 +14 733 5.031276899786 0 +14 733 5.031276899786 0 +14 746 5.031436899786 0 +14 746 5.031436899786 0 +14 755 5.057383685955 0 +14 755 5.057383685955 2 +14 756 5.057383685955 2 +14 756 5.057383685955 0 +14 759 5.057383685955 0 +14 759 5.057383685955 0 +14 765 5.057543685955 0 +14 765 5.057543685955 0 +14 833 5.314557195171 0 +14 833 5.314557195171 0 +14 839 5.314717195171 0 +14 839 5.314717195171 0 +14 863 5.331276899476 0 +14 863 5.331276899476 0 +14 877 5.331436899476 0 +14 877 5.331436899476 0 +14 887 5.357383685955 0 +14 887 5.357383685955 2 +14 888 5.357383685955 2 +14 888 5.357383685955 0 +14 891 5.357383685955 0 +14 891 5.357383685955 0 +14 898 5.357543685955 0 +14 898 5.357543685955 0 +14 967 5.614557197442 0 +14 967 5.614557197442 0 +14 973 5.614717197442 0 +14 973 5.614717197442 0 +14 997 5.631276899171 0 +14 997 5.631276899171 0 +14 1011 5.631436899171 0 +14 1011 5.631436899171 0 +14 1021 5.657383685955 0 +14 1021 5.657383685955 2 +14 1022 5.657383685955 2 +14 1022 5.657383685955 0 +14 1025 5.657383685955 0 +14 1025 5.657383685955 0 +14 1032 5.657543685955 0 +14 1032 5.657543685955 0 +14 1125 5.914557199962 0 +14 1125 5.914557199962 0 +14 1131 5.914717199962 0 +14 1131 5.914717199962 0 +14 1155 5.931276898866 0 +14 1155 5.931276898866 0 +14 1169 5.931436898866 0 +14 1169 5.931436898866 0 +14 1179 5.957383685955 0 +14 1179 5.957383685955 2 +14 1180 5.957383685955 2 +14 1180 5.957383685955 0 +14 1183 5.957383685955 0 +14 1183 5.957383685955 0 +14 1190 5.957543685955 0 +14 1190 5.957543685955 0 +14 1286 6.214557202762 0 +14 1286 6.214557202762 0 +14 1297 6.214717202762 0 +14 1297 6.214717202762 0 +14 1322 6.231276898564 0 +14 1322 6.231276898564 0 +14 1341 6.231436898564 0 +14 1341 6.231436898564 0 +14 1351 6.257383685955 0 +14 1351 6.257383685955 2 +14 1352 6.257383685955 2 +14 1352 6.257383685955 0 +14 1355 6.257383685955 0 +14 1355 6.257383685955 0 +14 1363 6.257543685955 0 +14 1363 6.257543685955 0 +14 1469 6.514557205852 0 +14 1469 6.514557205852 0 +14 1480 6.514717205852 0 +14 1480 6.514717205852 0 +14 1503 6.524399075657 0 +14 1503 6.524399075657 0 +14 1518 6.524559075657 0 +14 1518 6.524559075657 0 +14 1538 6.531276898265 0 +14 1538 6.531276898265 0 +14 1557 6.531436898265 0 +14 1557 6.531436898265 0 +14 1568 6.557383685955 0 +14 1568 6.557383685955 2 +14 1569 6.557383685955 2 +14 1569 6.557383685955 0 +14 1572 6.557383685955 0 +14 1572 6.557383685955 0 +14 1580 6.557543685955 0 +14 1580 6.557543685955 0 +14 1686 6.814557209291 0 +14 1686 6.814557209291 0 +14 1697 6.814717209291 0 +14 1697 6.814717209291 0 +14 1720 6.82439907586 0 +14 1720 6.82439907586 0 +14 1735 6.82455907586 0 +14 1735 6.82455907586 0 +14 1755 6.831276897959 0 +14 1755 6.831276897959 0 +14 1774 6.831436897959 0 +14 1774 6.831436897959 0 +14 1785 6.857383685955 0 +14 1785 6.857383685955 2 +14 1786 6.857383685955 2 +14 1786 6.857383685955 0 +14 1789 6.857383685955 0 +14 1789 6.857383685955 0 +14 1797 6.857543685955 0 +14 1797 6.857543685955 0 +14 1903 7.1145572131 0 +14 1903 7.1145572131 0 +14 1914 7.1147172131 0 +14 1914 7.1147172131 0 +14 1937 7.124399076049 0 +14 1937 7.124399076049 0 +14 1952 7.124559076049 0 +14 1952 7.124559076049 0 +14 1972 7.131276897653 0 +14 1972 7.131276897653 0 +14 1991 7.131436897653 0 +14 1991 7.131436897653 0 +14 2002 7.157383685955 0 +14 2002 7.157383685955 2 +14 2003 7.157383685955 2 +14 2003 7.157383685955 0 +14 2006 7.157383685955 0 +14 2006 7.157383685955 0 +14 2014 7.157543685955 0 +14 2014 7.157543685955 0 +14 2120 7.414557217271 0 +14 2120 7.414557217271 0 +14 2131 7.414717217271 0 +14 2131 7.414717217271 0 +14 2154 7.424399076251 0 +14 2154 7.424399076251 0 +14 2169 7.424559076251 0 +14 2169 7.424559076251 0 +14 2189 7.431276897348 0 +14 2189 7.431276897348 0 +14 2208 7.431436897348 0 +14 2208 7.431436897348 0 +14 2219 7.457383685955 0 +14 2219 7.457383685955 2 +14 2220 7.457383685955 2 +14 2220 7.457383685955 0 +14 2223 7.457383685955 0 +14 2223 7.457383685955 0 +14 2231 7.457543685955 0 +14 2231 7.457543685955 0 +14 2337 7.714557221838 0 +14 2337 7.714557221838 0 +14 2348 7.714717221838 0 +14 2348 7.714717221838 0 +14 2371 7.724399076456 0 +14 2371 7.724399076456 0 +14 2386 7.724559076456 0 +14 2386 7.724559076456 0 +14 2406 7.73127689705 0 +14 2406 7.73127689705 0 +14 2425 7.73143689705 0 +14 2425 7.73143689705 0 +14 2436 7.757383685955 0 +14 2436 7.757383685955 2 +14 2437 7.757383685955 2 +14 2437 7.757383685955 0 +14 2440 7.757383685955 0 +14 2440 7.757383685955 0 +14 2448 7.757543685955 0 +14 2448 7.757543685955 0 +14 2554 8.014557226859 0 +14 2554 8.014557226859 0 +14 2565 8.014717226859 0 +14 2565 8.014717226859 0 +14 2588 8.024399076668 0 +14 2588 8.024399076668 0 +14 2603 8.024559076668 0 +14 2603 8.024559076668 0 +14 2623 8.031276896762 0 +14 2623 8.031276896762 0 +14 2642 8.031436896762 0 +14 2642 8.031436896762 0 +14 2653 8.057383685955 0 +14 2653 8.057383685955 2 +14 2654 8.057383685955 2 +14 2654 8.057383685955 0 +14 2657 8.057383685955 0 +14 2657 8.057383685955 0 +14 2665 8.057543685955 0 +14 2665 8.057543685955 0 +14 2771 8.314557232422 0 +14 2771 8.314557232422 0 +14 2782 8.314717232422 0 +14 2782 8.314717232422 0 +14 2805 8.324399076881 0 +14 2805 8.324399076881 0 +14 2820 8.324559076881 0 +14 2820 8.324559076881 0 +14 2844 8.331276896481 0 +14 2844 8.331276896481 0 +14 2863 8.331436896481 0 +14 2863 8.331436896481 0 +14 2874 8.357383685955 0 +14 2874 8.357383685955 2 +14 2875 8.357383685955 2 +14 2875 8.357383685955 0 +14 2878 8.357383685955 0 +14 2878 8.357383685955 0 +14 2886 8.357543685955 0 +14 2886 8.357543685955 0 +14 2996 8.614557238496 0 +14 2996 8.614557238496 0 +14 3007 8.614717238496 0 +14 3007 8.614717238496 0 +14 3030 8.6243990771 0 +14 3030 8.6243990771 0 +14 3045 8.6245590771 0 +14 3045 8.6245590771 0 +14 3069 8.63127689619 0 +14 3069 8.63127689619 0 +14 3088 8.63143689619 0 +14 3088 8.63143689619 0 +14 3099 8.657383685955 0 +14 3099 8.657383685955 2 +14 3100 8.657383685955 2 +14 3100 8.657383685955 0 +14 3103 8.657383685955 0 +14 3103 8.657383685955 0 +14 3111 8.657543685955 0 +14 3111 8.657543685955 0 +14 3222 8.914557245124 0 +14 3222 8.914557245124 0 +14 3237 8.914717245124 0 +14 3237 8.914717245124 0 +14 3255 8.924399077324 0 +14 3255 8.924399077324 0 +14 3270 8.924559077324 0 +14 3270 8.924559077324 0 +14 3294 8.931276895893 0 +14 3294 8.931276895893 0 +14 3313 8.931436895893 0 +14 3313 8.931436895893 0 +14 3324 8.957383685955 0 +14 3324 8.957383685955 2 +14 3325 8.957383685955 2 +14 3325 8.957383685955 0 +14 3328 8.957383685955 0 +14 3328 8.957383685955 0 +14 3336 8.957543685955 0 +14 3336 8.957543685955 0 +14 3447 9.214557252325 0 +14 3447 9.214557252325 0 +14 3462 9.214717252325 0 +14 3462 9.214717252325 0 +14 3480 9.224399077547 0 +14 3480 9.224399077547 0 +14 3495 9.224559077547 0 +14 3495 9.224559077547 0 +14 3519 9.231276895621 0 +14 3519 9.231276895621 0 +14 3538 9.231436895621 0 +14 3538 9.231436895621 0 +14 3549 9.257383685955 0 +14 3549 9.257383685955 2 +14 3550 9.257383685955 2 +14 3550 9.257383685955 0 +14 3553 9.257383685955 0 +14 3553 9.257383685955 0 +14 3561 9.257543685955 0 +14 3561 9.257543685955 0 +14 3672 9.514557260085 0 +14 3672 9.514557260085 0 +14 3687 9.514717260085 0 +14 3687 9.514717260085 0 +14 3705 9.52439907778 0 +14 3705 9.52439907778 0 +14 3720 9.52455907778 0 +14 3720 9.52455907778 0 +14 3744 9.531276895347 0 +14 3744 9.531276895347 0 +14 3763 9.531436895347 0 +14 3763 9.531436895347 0 +14 3774 9.557383685955 0 +14 3774 9.557383685955 2 +14 3775 9.557383685955 2 +14 3775 9.557383685955 0 +14 3778 9.557383685955 0 +14 3778 9.557383685955 0 +14 3786 9.557543685955 0 +14 3786 9.557543685955 0 +14 3897 9.814557268307 0 +14 3897 9.814557268307 0 +14 3912 9.814717268307 0 +14 3912 9.814717268307 0 +14 3930 9.824399078019 0 +14 3930 9.824399078019 0 +14 3945 9.824559078019 0 +14 3945 9.824559078019 0 +14 3969 9.831276895075 0 +14 3969 9.831276895075 0 +14 3988 9.831436895075 0 +14 3988 9.831436895075 0 +14 3999 9.857383685955 0 +14 3999 9.857383685955 2 +14 4000 9.857383685955 2 +14 4000 9.857383685955 0 +14 4003 9.857383685955 0 +14 4003 9.857383685955 0 +14 4011 9.857543685955 0 +14 4011 9.857543685955 0 +14 4122 10.114557276848 0 +14 4122 10.114557276848 0 +14 4137 10.114717276848 0 +14 4137 10.114717276848 0 +14 4155 10.124399078264 0 +14 4155 10.124399078264 0 +14 4170 10.124559078264 0 +14 4170 10.124559078264 0 +14 4194 10.131276894808 0 +14 4194 10.131276894808 0 +14 4213 10.131436894808 0 +14 4213 10.131436894808 0 +14 4224 10.157383685955 0 +14 4224 10.157383685955 2 +14 4225 10.157383685955 2 +14 4225 10.157383685955 0 +14 4228 10.157383685955 0 +14 4228 10.157383685955 0 +14 4236 10.157543685955 0 +14 4236 10.157543685955 0 +14 4347 10.414557285658 0 +14 4347 10.414557285658 0 +14 4362 10.414717285658 0 +14 4362 10.414717285658 0 +14 4380 10.4243990785 0 +14 4380 10.4243990785 0 +14 4395 10.4245590785 0 +14 4395 10.4245590785 0 +14 4419 10.431276894532 0 +14 4419 10.431276894532 0 +14 4438 10.431436894532 0 +14 4438 10.431436894532 0 +14 4449 10.457383685955 0 +14 4449 10.457383685955 2 +14 4450 10.457383685955 2 +14 4450 10.457383685955 0 +14 4453 10.457383685955 0 +14 4453 10.457383685955 0 +14 4461 10.457543685955 0 +14 4461 10.457543685955 0 +14 4576 10.714557294754 0 +14 4576 10.714557294754 0 +14 4591 10.714717294754 0 +14 4591 10.714717294754 0 +14 4613 10.724399078727 0 +14 4613 10.724399078727 0 +14 4628 10.724559078727 0 +14 4628 10.724559078727 0 +14 4652 10.731276894259 0 +14 4652 10.731276894259 0 +14 4671 10.731436894259 0 +14 4671 10.731436894259 0 +14 4682 10.757383685955 0 +14 4682 10.757383685955 2 +14 4683 10.757383685955 2 +14 4683 10.757383685955 0 +14 4686 10.757383685955 0 +14 4686 10.757383685955 0 +14 4694 10.757543685955 0 +14 4694 10.757543685955 0 +14 4809 11.014557304135 0 +14 4809 11.014557304135 0 +14 4824 11.014717304135 0 +14 4824 11.014717304135 0 +14 4846 11.024399078987 0 +14 4846 11.024399078987 0 +14 4861 11.024559078987 0 +14 4861 11.024559078987 0 +14 4885 11.031276893999 0 +14 4885 11.031276893999 0 +14 4904 11.031436893999 0 +14 4904 11.031436893999 0 +14 4915 11.057383685955 0 +14 4915 11.057383685955 2 +14 4916 11.057383685955 2 +14 4916 11.057383685955 0 +14 4919 11.057383685955 0 +14 4919 11.057383685955 0 +14 4927 11.057543685955 0 +14 4927 11.057543685955 0 +14 5042 11.314557313736 0 +14 5042 11.314557313736 0 +14 5057 11.314717313736 0 +14 5057 11.314717313736 0 +14 5079 11.324399079221 0 +14 5079 11.324399079221 0 +14 5094 11.324559079221 0 +14 5094 11.324559079221 0 +14 5118 11.331276893733 0 +14 5118 11.331276893733 0 +14 5137 11.331436893733 0 +14 5137 11.331436893733 0 +14 5148 11.357383685955 0 +14 5148 11.357383685955 2 +14 5149 11.357383685955 2 +14 5149 11.357383685955 0 +14 5152 11.357383685955 0 +14 5152 11.357383685955 0 +14 5160 11.357543685955 0 +14 5160 11.357543685955 0 +14 5275 11.614557323591 0 +14 5275 11.614557323591 0 +14 5290 11.614717323591 0 +14 5290 11.614717323591 0 +14 5312 11.624399079471 0 +14 5312 11.624399079471 0 +14 5327 11.624559079471 0 +14 5327 11.624559079471 0 +14 5351 11.631276893479 0 +14 5351 11.631276893479 0 +14 5370 11.631436893479 0 +14 5370 11.631436893479 0 +14 5385 11.657383685955 0 +14 5385 11.657383685955 2 +14 5386 11.657383685955 2 +14 5386 11.657383685955 0 +14 5389 11.657383685955 0 +14 5389 11.657383685955 0 +14 5397 11.657543685955 0 +14 5397 11.657543685955 0 +14 5516 11.914557333695 0 +14 5516 11.914557333695 0 +14 5531 11.914717333695 0 +14 5531 11.914717333695 0 +14 5553 11.92439907973 0 +14 5553 11.92439907973 0 +14 5568 11.92455907973 0 +14 5568 11.92455907973 0 +14 5592 11.931276893219 0 +14 5592 11.931276893219 0 +14 5611 11.931436893219 0 +14 5611 11.931436893219 0 +14 5626 11.957383685955 0 +14 5626 11.957383685955 2 +14 5627 11.957383685955 2 +14 5627 11.957383685955 0 +14 5630 11.957383685955 0 +14 5630 11.957383685955 0 +14 5638 11.957543685955 0 +14 5638 11.957543685955 0 +14 5757 12.214557344013 0 +14 5757 12.214557344013 0 +14 5772 12.214717344013 0 +14 5772 12.214717344013 0 +14 5794 12.22439907998 0 +14 5794 12.22439907998 0 +14 5809 12.22455907998 0 +14 5809 12.22455907998 0 +14 5833 12.231276892968 0 +14 5833 12.231276892968 0 +14 5852 12.231436892968 0 +14 5852 12.231436892968 0 +14 5867 12.257383685955 0 +14 5867 12.257383685955 2 +14 5868 12.257383685955 2 +14 5868 12.257383685955 0 +14 5871 12.257383685955 0 +14 5871 12.257383685955 0 +14 5879 12.257543685955 0 +14 5879 12.257543685955 0 +14 5998 12.514557354529 0 +14 5998 12.514557354529 0 +14 6013 12.514717354529 0 +14 6013 12.514717354529 0 +14 6035 12.524399080256 0 +14 6035 12.524399080256 0 +14 6050 12.524559080256 0 +14 6050 12.524559080256 0 +14 6074 12.531276892721 0 +14 6074 12.531276892721 0 +14 6093 12.531436892721 0 +14 6093 12.531436892721 0 +14 6108 12.557383685955 0 +14 6108 12.557383685955 2 +14 6109 12.557383685955 2 +14 6109 12.557383685955 0 +14 6112 12.557383685955 0 +14 6112 12.557383685955 0 +14 6120 12.557543685955 0 +14 6120 12.557543685955 0 +14 6239 12.814557365221 0 +14 6239 12.814557365221 0 +14 6254 12.814717365221 0 +14 6254 12.814717365221 0 +14 6276 12.82439908052 0 +14 6276 12.82439908052 0 +14 6291 12.82455908052 0 +14 6291 12.82455908052 0 +14 6315 12.831276892469 0 +14 6315 12.831276892469 0 +14 6334 12.831436892469 0 +14 6334 12.831436892469 0 +14 6349 12.857383685955 0 +14 6349 12.857383685955 2 +14 6350 12.857383685955 2 +14 6350 12.857383685955 0 +14 6353 12.857383685955 0 +14 6353 12.857383685955 0 +14 6361 12.857543685955 0 +14 6361 12.857543685955 0 +14 6480 13.114557376122 0 +14 6480 13.114557376122 0 +14 6495 13.114717376122 0 +14 6495 13.114717376122 0 +14 6517 13.124399080797 0 +14 6517 13.124399080797 0 +14 6532 13.124559080797 0 +14 6532 13.124559080797 0 +14 6556 13.131276892214 0 +14 6556 13.131276892214 0 +14 6575 13.131436892214 0 +14 6575 13.131436892214 0 +14 6590 13.157383685955 0 +14 6590 13.157383685955 2 +14 6591 13.157383685955 2 +14 6591 13.157383685955 0 +14 6594 13.157383685955 0 +14 6594 13.157383685955 0 +14 6602 13.157543685955 0 +14 6602 13.157543685955 0 +14 6721 13.414557387173 0 +14 6721 13.414557387173 0 +14 6736 13.414717387173 0 +14 6736 13.414717387173 0 +14 6758 13.424399081079 0 +14 6758 13.424399081079 0 +14 6773 13.424559081079 0 +14 6773 13.424559081079 0 +14 6797 13.431276891978 0 +14 6797 13.431276891978 0 +14 6816 13.431436891978 0 +14 6816 13.431436891978 0 +14 6831 13.457383685955 0 +14 6831 13.457383685955 2 +14 6832 13.457383685955 2 +14 6832 13.457383685955 0 +14 6835 13.457383685955 0 +14 6835 13.457383685955 0 +14 6843 13.457543685955 0 +14 6843 13.457543685955 0 +14 6962 13.714557398373 0 +14 6962 13.714557398373 0 +14 6977 13.714717398373 0 +14 6977 13.714717398373 0 +14 6999 13.724399081347 0 +14 6999 13.724399081347 0 +14 7014 13.724559081347 0 +14 7014 13.724559081347 0 +14 7038 13.731276891728 0 +14 7038 13.731276891728 0 +14 7057 13.731436891728 0 +14 7057 13.731436891728 0 +14 7072 13.757383685955 0 +14 7072 13.757383685955 2 +14 7073 13.757383685955 2 +14 7073 13.757383685955 0 +14 7076 13.757383685955 0 +14 7076 13.757383685955 0 +14 7084 13.757543685955 0 +14 7084 13.757543685955 0 +14 7204 14.014557409766 0 +14 7204 14.014557409766 0 +14 7223 14.014717409766 0 +14 7223 14.014717409766 0 +14 7240 14.024399081623 0 +14 7240 14.024399081623 0 +14 7255 14.024559081623 0 +14 7255 14.024559081623 0 +14 7279 14.03127689148 0 +14 7279 14.03127689148 0 +14 7298 14.03143689148 0 +14 7298 14.03143689148 0 +14 7313 14.057383685955 0 +14 7313 14.057383685955 2 +14 7314 14.057383685955 2 +14 7314 14.057383685955 0 +14 7317 14.057383685955 0 +14 7317 14.057383685955 0 +14 7325 14.057543685955 0 +14 7325 14.057543685955 0 +14 7445 14.314557421278 0 +14 7445 14.314557421278 0 +14 7464 14.314717421278 0 +14 7464 14.314717421278 0 +14 7481 14.324399081908 0 +14 7481 14.324399081908 0 +14 7496 14.324559081908 0 +14 7496 14.324559081908 0 +14 7520 14.33127689125 0 +14 7520 14.33127689125 0 +14 7539 14.33143689125 0 +14 7539 14.33143689125 0 +14 7554 14.357383685955 0 +14 7554 14.357383685955 2 +14 7555 14.357383685955 2 +14 7555 14.357383685955 0 +14 7558 14.357383685955 0 +14 7558 14.357383685955 0 +14 7566 14.357543685955 0 +14 7566 14.357543685955 0 +14 7686 14.614557432907 0 +14 7686 14.614557432907 0 +14 7705 14.614717432907 0 +14 7705 14.614717432907 0 +14 7722 14.624399082205 0 +14 7722 14.624399082205 0 +14 7737 14.624559082205 0 +14 7737 14.624559082205 0 +14 7761 14.631276891011 0 +14 7761 14.631276891011 0 +14 7780 14.631436891011 0 +14 7780 14.631436891011 0 +14 7795 14.657383685955 0 +14 7795 14.657383685955 2 +14 7796 14.657383685955 2 +14 7796 14.657383685955 0 +14 7799 14.657383685955 0 +14 7799 14.657383685955 0 +14 7807 14.657543685955 0 +14 7807 14.657543685955 0 +14 7927 14.914557444663 0 +14 7927 14.914557444663 0 +14 7946 14.914717444663 0 +14 7946 14.914717444663 0 +14 7963 14.924399082499 0 +14 7963 14.924399082499 0 +14 7978 14.924559082499 0 +14 7978 14.924559082499 0 +14 8002 14.93127689078 0 +14 8002 14.93127689078 0 +14 8021 14.93143689078 0 +14 8021 14.93143689078 0 +14 8036 14.957383685955 0 +14 8036 14.957383685955 2 +14 8037 14.957383685955 2 +14 8037 14.957383685955 0 +14 8040 14.957383685955 0 +14 8040 14.957383685955 0 +14 8048 14.957543685955 0 +14 8048 14.957543685955 0 +14 8168 15.214557456539 0 +14 8168 15.214557456539 0 +14 8187 15.214717456539 0 +14 8187 15.214717456539 0 +14 8204 15.224399082794 0 +14 8204 15.224399082794 0 +14 8219 15.224559082794 0 +14 8219 15.224559082794 0 +14 8243 15.231276890537 0 +14 8243 15.231276890537 0 +14 8262 15.231436890537 0 +14 8262 15.231436890537 0 +14 8277 15.257383685955 0 +14 8277 15.257383685955 2 +14 8278 15.257383685955 2 +14 8278 15.257383685955 0 +14 8281 15.257383685955 0 +14 8281 15.257383685955 0 +14 8289 15.257543685955 0 +14 8289 15.257543685955 0 +14 8409 15.514557468564 0 +14 8409 15.514557468564 0 +14 8428 15.514717468564 0 +14 8428 15.514717468564 0 +14 8445 15.524399083099 0 +14 8445 15.524399083099 0 +14 8460 15.524559083099 0 +14 8460 15.524559083099 0 +14 8485 15.531276890317 0 +14 8485 15.531276890317 0 +14 8508 15.531436890317 0 +14 8508 15.531436890317 0 +14 8518 15.557383685955 0 +14 8518 15.557383685955 2 +14 8519 15.557383685955 2 +14 8519 15.557383685955 0 +14 8522 15.557383685955 0 +14 8522 15.557383685955 0 +14 8530 15.557543685955 0 +14 8530 15.557543685955 0 +14 8650 15.814557480657 0 +14 8650 15.814557480657 0 +14 8669 15.814717480657 0 +14 8669 15.814717480657 0 +14 8686 15.824399083408 0 +14 8686 15.824399083408 0 +14 8701 15.824559083408 0 +14 8701 15.824559083408 0 +14 8726 15.831276890112 0 +14 8726 15.831276890112 0 +14 8749 15.831436890112 0 +14 8749 15.831436890112 0 +14 8759 15.857383685955 0 +14 8759 15.857383685955 2 +14 8760 15.857383685955 2 +14 8760 15.857383685955 0 +14 8763 15.857383685955 0 +14 8763 15.857383685955 0 +14 8771 15.857543685955 0 +14 8771 15.857543685955 0 +14 8891 16.114557492863 0 +14 8891 16.114557492863 0 +14 8910 16.114717492863 0 +14 8910 16.114717492863 0 +14 8931 16.124399083716 0 +14 8931 16.124399083716 0 +14 8946 16.124559083716 0 +14 8946 16.124559083716 0 +14 8971 16.131276889879 0 +14 8971 16.131276889879 0 +14 8994 16.131436889879 0 +14 8994 16.131436889879 0 +14 9004 16.157383685955 0 +14 9004 16.157383685955 2 +14 9005 16.157383685955 2 +14 9005 16.157383685955 0 +14 9008 16.157383685955 0 +14 9008 16.157383685955 0 +14 9016 16.157543685955 0 +14 9016 16.157543685955 0 +14 9140 16.414557505188 0 +14 9140 16.414557505188 0 +14 9159 16.414717505188 0 +14 9159 16.414717505188 0 +14 9180 16.424399084041 0 +14 9180 16.424399084041 0 +14 9195 16.424559084041 0 +14 9195 16.424559084041 0 +14 9220 16.431276889657 0 +14 9220 16.431276889657 0 +14 9243 16.431436889657 0 +14 9243 16.431436889657 0 +14 9253 16.457383685955 0 +14 9253 16.457383685955 2 +14 9254 16.457383685955 2 +14 9254 16.457383685955 0 +14 9257 16.457383685955 0 +14 9257 16.457383685955 0 +14 9265 16.457543685955 0 +14 9265 16.457543685955 0 +14 9390 16.714557517603 0 +14 9390 16.714557517603 0 +14 9413 16.714717517603 0 +14 9413 16.714717517603 0 +14 9429 16.724399084357 0 +14 9429 16.724399084357 0 +14 9444 16.724559084357 0 +14 9444 16.724559084357 0 +14 9469 16.731276889444 0 +14 9469 16.731276889444 0 +14 9492 16.731436889444 0 +14 9492 16.731436889444 0 +14 9502 16.757383685955 0 +14 9502 16.757383685955 2 +14 9503 16.757383685955 2 +14 9503 16.757383685955 0 +14 9506 16.757383685955 0 +14 9506 16.757383685955 0 +14 9514 16.757543685955 0 +14 9514 16.757543685955 0 +14 9639 17.014557530081 0 +14 9639 17.014557530081 0 +14 9662 17.014717530081 0 +14 9662 17.014717530081 0 +14 9678 17.024399084668 0 +14 9678 17.024399084668 0 +14 9693 17.024559084668 0 +14 9693 17.024559084668 0 +14 9718 17.031276889227 0 +14 9718 17.031276889227 0 +14 9741 17.031436889227 0 +14 9741 17.031436889227 0 +14 9751 17.057383685955 0 +14 9751 17.057383685955 2 +14 9752 17.057383685955 2 +14 9752 17.057383685955 0 +14 9755 17.057383685955 0 +14 9755 17.057383685955 0 +14 9763 17.057543685955 0 +14 9763 17.057543685955 0 +14 9888 17.314557542674 0 +14 9888 17.314557542674 0 +14 9911 17.314717542674 0 +14 9911 17.314717542674 0 +14 9927 17.324399084984 0 +14 9927 17.324399084984 0 +14 9942 17.324559084984 0 +14 9942 17.324559084984 0 +14 9967 17.331276889013 0 +14 9967 17.331276889013 0 +14 9990 17.331436889013 0 +14 9990 17.331436889013 0 +14 10000 17.357383685955 0 +14 10000 17.357383685955 2 +14 10001 17.357383685955 2 +14 10001 17.357383685955 0 +14 10004 17.357383685955 0 +14 10004 17.357383685955 0 +14 10012 17.357543685955 0 +14 10012 17.357543685955 0 +14 10137 17.614557555309 0 +14 10137 17.614557555309 0 +14 10160 17.614717555309 0 +14 10160 17.614717555309 0 +14 10176 17.624399085289 0 +14 10176 17.624399085289 0 +14 10191 17.624559085289 0 +14 10191 17.624559085289 0 +14 10216 17.631276888786 0 +14 10216 17.631276888786 0 +14 10239 17.631436888786 0 +14 10239 17.631436888786 0 +14 10249 17.657383685955 0 +14 10249 17.657383685955 2 +14 10250 17.657383685955 2 +14 10250 17.657383685955 0 +14 10253 17.657383685955 0 +14 10253 17.657383685955 0 +14 10261 17.657543685955 0 +14 10261 17.657543685955 0 +14 10386 17.914557568022 0 +14 10386 17.914557568022 0 +14 10409 17.914717568022 0 +14 10409 17.914717568022 0 +14 10421 17.924399085606 0 +14 10421 17.924399085606 0 +14 10436 17.924559085606 0 +14 10436 17.924559085606 0 +14 10461 17.931276888582 0 +14 10461 17.931276888582 0 +14 10484 17.931436888582 0 +14 10484 17.931436888582 0 +14 10494 17.957383685955 0 +14 10494 17.957383685955 2 +14 10495 17.957383685955 2 +14 10495 17.957383685955 0 +14 10498 17.957383685955 0 +14 10498 17.957383685955 0 +14 10506 17.957543685955 0 +14 10506 17.957543685955 0 +14 10662 18.224399085935 0 +14 10662 18.224399085935 0 +14 10677 18.224559085935 0 +14 10677 18.224559085935 0 +14 10698 18.231276888386 0 +14 10698 18.231276888386 0 +14 10721 18.231436888386 0 +14 10721 18.231436888386 0 +14 10731 18.257383685955 0 +14 10731 18.257383685955 2 +14 10732 18.257383685955 2 +14 10732 18.257383685955 0 +14 10735 18.257383685955 0 +14 10735 18.257383685955 0 +14 10743 18.257543685955 0 +14 10743 18.257543685955 0 +14 10895 18.524399086265 0 +14 10895 18.524399086265 0 +14 10910 18.524559086265 0 +14 10910 18.524559086265 0 +14 10931 18.531276888177 0 +14 10931 18.531276888177 0 +14 10954 18.531436888177 0 +14 10954 18.531436888177 0 +14 10964 18.557383685955 0 +14 10964 18.557383685955 2 +14 10965 18.557383685955 2 +14 10965 18.557383685955 0 +14 10968 18.557383685955 0 +14 10968 18.557383685955 0 +14 10976 18.557543685955 0 +14 10976 18.557543685955 0 +14 11128 18.824399086608 0 +14 11128 18.824399086608 0 +14 11143 18.824559086608 0 +14 11143 18.824559086608 0 +14 11164 18.831276887981 0 +14 11164 18.831276887981 0 +14 11187 18.831436887981 0 +14 11187 18.831436887981 0 +14 11197 18.857383685955 0 +14 11197 18.857383685955 2 +14 11198 18.857383685955 2 +14 11198 18.857383685955 0 +14 11201 18.857383685955 0 +14 11201 18.857383685955 0 +14 11209 18.857543685955 0 +14 11209 18.857543685955 0 +14 11361 19.124399086967 0 +14 11361 19.124399086967 0 +14 11376 19.124559086967 0 +14 11376 19.124559086967 0 +14 11397 19.131276887793 0 +14 11397 19.131276887793 0 +14 11420 19.131436887793 0 +14 11420 19.131436887793 0 +14 11430 19.157383685955 0 +14 11430 19.157383685955 2 +14 11431 19.157383685955 2 +14 11431 19.157383685955 0 +14 11434 19.157383685955 0 +14 11434 19.157383685955 0 +14 11442 19.157543685955 0 +14 11442 19.157543685955 0 +14 11594 19.424399087317 0 +14 11594 19.424399087317 0 +14 11609 19.424559087317 0 +14 11609 19.424559087317 0 +14 11630 19.43127688759 0 +14 11630 19.43127688759 0 +14 11653 19.43143688759 0 +14 11653 19.43143688759 0 +14 11663 19.457383685955 0 +14 11663 19.457383685955 2 +14 11664 19.457383685955 2 +14 11664 19.457383685955 0 +14 11667 19.457383685955 0 +14 11667 19.457383685955 0 +14 11675 19.457543685955 0 +14 11675 19.457543685955 0 +14 11827 19.724399087464 0 +14 11827 19.724399087464 0 +14 11842 19.724559087464 0 +14 11842 19.724559087464 0 +14 11863 19.731276887029 0 +14 11863 19.731276887029 0 +14 11886 19.731436887029 0 +14 11886 19.731436887029 0 +14 11896 19.757383685955 0 +14 11896 19.757383685955 2 +14 11897 19.757383685955 2 +14 11897 19.757383685955 0 +14 11900 19.757383685955 0 +14 11900 19.757383685955 0 +14 11908 19.757543685955 0 +14 11908 19.757543685955 0 +14 12025 20.014557564104 0 +14 12025 20.014557564104 0 +14 12048 20.014717564104 0 +14 12048 20.014717564104 0 +14 12064 20.0243990873 0 +14 12064 20.0243990873 0 +14 12079 20.0245590873 0 +14 12079 20.0245590873 0 +14 12100 20.03127688588 0 +14 12100 20.03127688588 0 +14 12123 20.03143688588 0 +14 12123 20.03143688588 0 +14 12133 20.057383685955 0 +14 12133 20.057383685955 2 +14 12134 20.057383685955 2 +14 12134 20.057383685955 0 +14 12137 20.057383685955 0 +14 12137 20.057383685955 0 +14 12145 20.057543685955 0 +14 12145 20.057543685955 0 +14 12266 20.314557557995 0 +14 12266 20.314557557995 0 +14 12289 20.314717557995 0 +14 12289 20.314717557995 0 +14 12305 20.324399087241 0 +14 12305 20.324399087241 0 +14 12320 20.324559087241 0 +14 12320 20.324559087241 0 +14 12341 20.33127688455 0 +14 12341 20.33127688455 0 +14 12364 20.33143688455 0 +14 12364 20.33143688455 0 +14 12374 20.357383685955 0 +14 12374 20.357383685955 2 +14 12375 20.357383685955 2 +14 12375 20.357383685955 0 +14 12378 20.357383685955 0 +14 12378 20.357383685955 0 +14 12386 20.357543685955 0 +14 12386 20.357543685955 0 +14 12507 20.614557552362 0 +14 12507 20.614557552362 0 +14 12530 20.614717552362 0 +14 12530 20.614717552362 0 +14 12546 20.624399087446 0 +14 12546 20.624399087446 0 +14 12561 20.624559087446 0 +14 12561 20.624559087446 0 +14 12582 20.631276883138 0 +14 12582 20.631276883138 0 +14 12605 20.631436883138 0 +14 12605 20.631436883138 0 +14 12615 20.657383685955 0 +14 12615 20.657383685955 2 +14 12616 20.657383685955 2 +14 12616 20.657383685955 0 +14 12619 20.657383685955 0 +14 12619 20.657383685955 0 +14 12627 20.657543685955 0 +14 12627 20.657543685955 0 +14 12748 20.914557547102 0 +14 12748 20.914557547102 0 +14 12771 20.914717547102 0 +14 12771 20.914717547102 0 +14 12787 20.924399087797 0 +14 12787 20.924399087797 0 +14 12802 20.924559087797 0 +14 12802 20.924559087797 0 +14 12823 20.931276881619 0 +14 12823 20.931276881619 0 +14 12846 20.931436881619 0 +14 12846 20.931436881619 0 +14 12856 20.957383685955 0 +14 12856 20.957383685955 2 +14 12857 20.957383685955 2 +14 12857 20.957383685955 0 +14 12860 20.957383685955 0 +14 12860 20.957383685955 0 +14 12868 20.957543685955 0 +14 12868 20.957543685955 0 +14 12989 21.214557542284 0 +14 12989 21.214557542284 0 +14 13012 21.214717542284 0 +14 13012 21.214717542284 0 +14 13028 21.224399088467 0 +14 13028 21.224399088467 0 +14 13043 21.224559088467 0 +14 13043 21.224559088467 0 +14 13064 21.231276880094 0 +14 13064 21.231276880094 0 +14 13087 21.231436880094 0 +14 13087 21.231436880094 0 +14 13097 21.257383685955 0 +14 13097 21.257383685955 2 +14 13098 21.257383685955 2 +14 13098 21.257383685955 0 +14 13101 21.257383685955 0 +14 13101 21.257383685955 0 +14 13109 21.257543685955 0 +14 13109 21.257543685955 0 +14 13230 21.514557537844 0 +14 13230 21.514557537844 0 +14 13253 21.514717537844 0 +14 13253 21.514717537844 0 +14 13269 21.524399089457 0 +14 13269 21.524399089457 0 +14 13284 21.524559089457 0 +14 13284 21.524559089457 0 +14 13305 21.531276878505 0 +14 13305 21.531276878505 0 +14 13328 21.531436878505 0 +14 13328 21.531436878505 0 +14 13338 21.557383685955 0 +14 13338 21.557383685955 2 +14 13339 21.557383685955 2 +14 13339 21.557383685955 0 +14 13342 21.557383685955 0 +14 13342 21.557383685955 0 +14 13350 21.557543685955 0 +14 13350 21.557543685955 0 +14 13471 21.814557533746 0 +14 13471 21.814557533746 0 +14 13494 21.814717533746 0 +14 13494 21.814717533746 0 +14 13510 21.824399090731 0 +14 13510 21.824399090731 0 +14 13525 21.824559090731 0 +14 13525 21.824559090731 0 +14 13546 21.831276876822 0 +14 13546 21.831276876822 0 +14 13569 21.831436876822 0 +14 13569 21.831436876822 0 +14 13579 21.857383685955 0 +14 13579 21.857383685955 2 +14 13580 21.857383685955 2 +14 13580 21.857383685955 0 +14 13583 21.857383685955 0 +14 13583 21.857383685955 0 +14 13591 21.857543685955 0 +14 13591 21.857543685955 0 +14 13712 22.114557529963 0 +14 13712 22.114557529963 0 +14 13735 22.114717529963 0 +14 13735 22.114717529963 0 +14 13751 22.124399092291 0 +14 13751 22.124399092291 0 +14 13766 22.124559092291 0 +14 13766 22.124559092291 0 +14 13787 22.131276875046 0 +14 13787 22.131276875046 0 +14 13810 22.131436875046 0 +14 13810 22.131436875046 0 +14 13820 22.157383685955 0 +14 13820 22.157383685955 2 +14 13821 22.157383685955 2 +14 13821 22.157383685955 0 +14 13824 22.157383685955 0 +14 13824 22.157383685955 0 +14 13832 22.157543685955 0 +14 13832 22.157543685955 0 +14 13953 22.414557526479 0 +14 13953 22.414557526479 0 +14 13976 22.414717526479 0 +14 13976 22.414717526479 0 +14 13992 22.424399094215 0 +14 13992 22.424399094215 0 +14 14007 22.424559094215 0 +14 14007 22.424559094215 0 +14 14028 22.431276873268 0 +14 14028 22.431276873268 0 +14 14051 22.431436873268 0 +14 14051 22.431436873268 0 +14 14061 22.457383685955 0 +14 14061 22.457383685955 2 +14 14062 22.457383685955 2 +14 14062 22.457383685955 0 +14 14065 22.457383685955 0 +14 14065 22.457383685955 0 +14 14073 22.457543685955 0 +14 14073 22.457543685955 0 +14 14194 22.714557523315 0 +14 14194 22.714557523315 0 +14 14217 22.714717523315 0 +14 14217 22.714717523315 0 +14 14233 22.724399096641 0 +14 14233 22.724399096641 0 +14 14248 22.724559096641 0 +14 14248 22.724559096641 0 +14 14269 22.731276871582 0 +14 14269 22.731276871582 0 +14 14292 22.731436871582 0 +14 14292 22.731436871582 0 +14 14302 22.757383685955 0 +14 14302 22.757383685955 2 +14 14303 22.757383685955 2 +14 14303 22.757383685955 0 +14 14306 22.757383685955 0 +14 14306 22.757383685955 0 +14 14314 22.757543685955 0 +14 14314 22.757543685955 0 +14 14435 23.014557520464 0 +14 14435 23.014557520464 0 +14 14458 23.014717520464 0 +14 14458 23.014717520464 0 +14 14473 23.024399099585 0 +14 14473 23.024399099585 0 +14 14484 23.024559099585 0 +14 14484 23.024559099585 0 +14 14510 23.031276870013 0 +14 14510 23.031276870013 0 +14 14533 23.031436870013 0 +14 14533 23.031436870013 0 +14 14543 23.057383685955 0 +14 14543 23.057383685955 2 +14 14544 23.057383685955 2 +14 14544 23.057383685955 0 +14 14547 23.057383685955 0 +14 14547 23.057383685955 0 +14 14555 23.057543685955 0 +14 14555 23.057543685955 0 +14 14676 23.314557517914 0 +14 14676 23.314557517914 0 +14 14699 23.314717517914 0 +14 14699 23.314717517914 0 +14 14714 23.324399103103 0 +14 14714 23.324399103103 0 +14 14725 23.324559103103 0 +14 14725 23.324559103103 0 +14 14751 23.331276868542 0 +14 14751 23.331276868542 0 +14 14774 23.331436868542 0 +14 14774 23.331436868542 0 +14 14784 23.357383685955 0 +14 14784 23.357383685955 2 +14 14785 23.357383685955 2 +14 14785 23.357383685955 0 +14 14788 23.357383685955 0 +14 14788 23.357383685955 0 +14 14796 23.357543685955 0 +14 14796 23.357543685955 0 +14 14917 23.614557515636 0 +14 14917 23.614557515636 0 +14 14940 23.614717515636 0 +14 14940 23.614717515636 0 +14 14955 23.624399107238 0 +14 14955 23.624399107238 0 +14 14966 23.624559107238 0 +14 14966 23.624559107238 0 +14 14992 23.631276867299 0 +14 14992 23.631276867299 0 +14 15015 23.631436867299 0 +14 15015 23.631436867299 0 +14 15025 23.657383685955 0 +14 15025 23.657383685955 2 +14 15026 23.657383685955 2 +14 15026 23.657383685955 0 +14 15029 23.657383685955 0 +14 15029 23.657383685955 0 +14 15037 23.657543685955 0 +14 15037 23.657543685955 0 +14 15158 23.914557513622 0 +14 15158 23.914557513622 0 +14 15181 23.914717513622 0 +14 15181 23.914717513622 0 +14 15196 23.924399112031 0 +14 15196 23.924399112031 0 +14 15207 23.924559112031 0 +14 15207 23.924559112031 0 +14 15233 23.931276866321 0 +14 15233 23.931276866321 0 +14 15256 23.931436866321 0 +14 15256 23.931436866321 0 +14 15266 23.957383685955 0 +14 15266 23.957383685955 2 +14 15267 23.957383685955 2 +14 15267 23.957383685955 0 +14 15270 23.957383685955 0 +14 15270 23.957383685955 0 +14 15278 23.957543685955 0 +14 15278 23.957543685955 0 +14 15399 24.214557511852 0 +14 15399 24.214557511852 0 +14 15422 24.214717511852 0 +14 15422 24.214717511852 0 +14 15437 24.224399117426 0 +14 15437 24.224399117426 0 +14 15448 24.224559117426 0 +14 15448 24.224559117426 0 +14 15474 24.231276865622 0 +14 15474 24.231276865622 0 +14 15497 24.231436865622 0 +14 15497 24.231436865622 0 +14 15507 24.257383685955 0 +14 15507 24.257383685955 2 +14 15508 24.257383685955 2 +14 15508 24.257383685955 0 +14 15511 24.257383685955 0 +14 15511 24.257383685955 0 +14 15519 24.257543685955 0 +14 15519 24.257543685955 0 +14 15640 24.514557510265 0 +14 15640 24.514557510265 0 +14 15663 24.514717510265 0 +14 15663 24.514717510265 0 +14 15678 24.524399123441 0 +14 15678 24.524399123441 0 +14 15689 24.524559123441 0 +14 15689 24.524559123441 0 +14 15715 24.531276865164 0 +14 15715 24.531276865164 0 +14 15738 24.531436865164 0 +14 15738 24.531436865164 0 +14 15748 24.557383685955 0 +14 15748 24.557383685955 2 +14 15749 24.557383685955 2 +14 15749 24.557383685955 0 +14 15752 24.557383685955 0 +14 15752 24.557383685955 0 +14 15760 24.557543685955 0 +14 15760 24.557543685955 0 +14 15881 24.814557508895 0 +14 15881 24.814557508895 0 +14 15904 24.814717508895 0 +14 15904 24.814717508895 0 +14 15919 24.824399130236 0 +14 15919 24.824399130236 0 +14 15930 24.824559130236 0 +14 15930 24.824559130236 0 +14 15956 24.831276865034 0 +14 15956 24.831276865034 0 +14 15979 24.831436865034 0 +14 15979 24.831436865034 0 +14 15989 24.857383685955 0 +14 15989 24.857383685955 2 +14 15990 24.857383685955 2 +14 15990 24.857383685955 0 +14 15993 24.857383685955 0 +14 15993 24.857383685955 0 +14 16001 24.857543685955 0 +14 16001 24.857543685955 0 +14 16122 25.114557507733 0 +14 16122 25.114557507733 0 +14 16145 25.114717507733 0 +14 16145 25.114717507733 0 +14 16160 25.124399137961 0 +14 16160 25.124399137961 0 +14 16171 25.124559137961 0 +14 16171 25.124559137961 0 +14 16197 25.131276865348 0 +14 16197 25.131276865348 0 +14 16220 25.131436865348 0 +14 16220 25.131436865348 0 +14 16230 25.157383685955 0 +14 16230 25.157383685955 2 +14 16231 25.157383685955 2 +14 16231 25.157383685955 0 +14 16234 25.157383685955 0 +14 16234 25.157383685955 0 +14 16242 25.157543685955 0 +14 16242 25.157543685955 0 +14 16363 25.414557506754 0 +14 16363 25.414557506754 0 +14 16386 25.414717506754 0 +14 16386 25.414717506754 0 +14 16401 25.424399146492 0 +14 16401 25.424399146492 0 +14 16412 25.424559146492 0 +14 16412 25.424559146492 0 +14 16438 25.431276866065 0 +14 16438 25.431276866065 0 +14 16461 25.431436866065 0 +14 16461 25.431436866065 0 +14 16471 25.457383685955 0 +14 16471 25.457383685955 2 +14 16472 25.457383685955 2 +14 16472 25.457383685955 0 +14 16475 25.457383685955 0 +14 16475 25.457383685955 0 +14 16483 25.457543685955 0 +14 16483 25.457543685955 0 +14 16604 25.714557505914 0 +14 16604 25.714557505914 0 +14 16627 25.714717505914 0 +14 16627 25.714717505914 0 +14 16642 25.724399155863 0 +14 16642 25.724399155863 0 +14 16653 25.724559155863 0 +14 16653 25.724559155863 0 +14 16679 25.731276867271 0 +14 16679 25.731276867271 0 +14 16702 25.731436867271 0 +14 16702 25.731436867271 0 +14 16712 25.757383685955 0 +14 16712 25.757383685955 2 +14 16713 25.757383685955 2 +14 16713 25.757383685955 0 +14 16716 25.757383685955 0 +14 16716 25.757383685955 0 +14 16724 25.757543685955 0 +14 16724 25.757543685955 0 +14 16845 26.014557505277 0 +14 16845 26.014557505277 0 +14 16868 26.014717505277 0 +14 16868 26.014717505277 0 +14 16883 26.024399166196 0 +14 16883 26.024399166196 0 +14 16894 26.024559166196 0 +14 16894 26.024559166196 0 +14 16920 26.031276869882 0 +14 16920 26.031276869882 0 +14 16943 26.031436869882 0 +14 16943 26.031436869882 0 +14 16953 26.057383685955 0 +14 16953 26.057383685955 2 +14 16954 26.057383685955 2 +14 16954 26.057383685955 0 +14 16957 26.057383685955 0 +14 16957 26.057383685955 0 +14 16965 26.057543685955 0 +14 16965 26.057543685955 0 +14 17085 26.314557504782 0 +14 17085 26.314557504782 0 +14 17104 26.314717504782 0 +14 17104 26.314717504782 0 +14 17124 26.324399177308 0 +14 17124 26.324399177308 0 +14 17135 26.324559177308 0 +14 17135 26.324559177308 0 +14 17161 26.331276874069 0 +14 17161 26.331276874069 0 +14 17184 26.331436874069 0 +14 17184 26.331436874069 0 +14 17194 26.357383685955 0 +14 17194 26.357383685955 2 +14 17195 26.357383685955 2 +14 17195 26.357383685955 0 +14 17198 26.357383685955 0 +14 17198 26.357383685955 0 +14 17206 26.357543685955 0 +14 17206 26.357543685955 0 +14 17326 26.614557504308 0 +14 17326 26.614557504308 0 +14 17345 26.614717504308 0 +14 17345 26.614717504308 0 +14 17365 26.624399188753 0 +14 17365 26.624399188753 0 +14 17376 26.624559188753 0 +14 17376 26.624559188753 0 +14 17402 26.631276879416 0 +14 17402 26.631276879416 0 +14 17425 26.631436879416 0 +14 17425 26.631436879416 0 +14 17435 26.657383685955 0 +14 17435 26.657383685955 2 +14 17436 26.657383685955 2 +14 17436 26.657383685955 0 +14 17439 26.657383685955 0 +14 17439 26.657383685955 0 +14 17447 26.657543685955 0 +14 17447 26.657543685955 0 +14 17567 26.914557503709 0 +14 17567 26.914557503709 0 +14 17586 26.914717503709 0 +14 17586 26.914717503709 0 +14 17606 26.924399200042 0 +14 17606 26.924399200042 0 +14 17617 26.924559200042 0 +14 17617 26.924559200042 0 +14 17643 26.931276885432 0 +14 17643 26.931276885432 0 +14 17666 26.931436885432 0 +14 17666 26.931436885432 0 +14 17676 26.957383685955 0 +14 17676 26.957383685955 2 +14 17677 26.957383685955 2 +14 17677 26.957383685955 0 +14 17680 26.957383685955 0 +14 17680 26.957383685955 0 +14 17688 26.957543685955 0 +14 17688 26.957543685955 0 +14 17808 27.214557502764 0 +14 17808 27.214557502764 0 +14 17827 27.214717502764 0 +14 17827 27.214717502764 0 +14 17843 27.224399210302 0 +14 17843 27.224399210302 0 +14 17854 27.224559210302 0 +14 17854 27.224559210302 0 +14 17876 27.231276891257 0 +14 17876 27.231276891257 0 +14 17899 27.231436891257 0 +14 17899 27.231436891257 0 +14 17909 27.257383685955 0 +14 17909 27.257383685955 2 +14 17910 27.257383685955 2 +14 17910 27.257383685955 0 +14 17913 27.257383685955 0 +14 17913 27.257383685955 0 +14 17921 27.257543685955 0 +14 17921 27.257543685955 0 +14 18041 27.514557501474 0 +14 18041 27.514557501474 0 +14 18060 27.514717501474 0 +14 18060 27.514717501474 0 +14 18076 27.524399219548 0 +14 18076 27.524399219548 0 +14 18087 27.524559219548 0 +14 18087 27.524559219548 0 +14 18109 27.531276896461 0 +14 18109 27.531276896461 0 +14 18132 27.531436896461 0 +14 18132 27.531436896461 0 +14 18142 27.557383685955 0 +14 18142 27.557383685955 2 +14 18143 27.557383685955 2 +14 18143 27.557383685955 0 +14 18146 27.557383685955 0 +14 18146 27.557383685955 0 +14 18154 27.557543685955 0 +14 18154 27.557543685955 0 +14 18274 27.814557499885 0 +14 18274 27.814557499885 0 +14 18293 27.814717499885 0 +14 18293 27.814717499885 0 +14 18309 27.824399227674 0 +14 18309 27.824399227674 0 +14 18320 27.824559227674 0 +14 18320 27.824559227674 0 +14 18342 27.831276898141 0 +14 18342 27.831276898141 0 +14 18365 27.831436898141 0 +14 18365 27.831436898141 0 +14 18375 27.857383685955 0 +14 18375 27.857383685955 2 +14 18376 27.857383685955 2 +14 18376 27.857383685955 0 +14 18379 27.857383685955 0 +14 18379 27.857383685955 0 +14 18387 27.857543685955 0 +14 18387 27.857543685955 0 +14 18507 28.114557497525 0 +14 18507 28.114557497525 0 +14 18526 28.114717497525 0 +14 18526 28.114717497525 0 +14 18542 28.124399234561 0 +14 18542 28.124399234561 0 +14 18553 28.124559234561 0 +14 18553 28.124559234561 0 +14 18575 28.131276899693 0 +14 18575 28.131276899693 0 +14 18598 28.131436899693 0 +14 18598 28.131436899693 0 +14 18608 28.157383685955 0 +14 18608 28.157383685955 2 +14 18609 28.157383685955 2 +14 18609 28.157383685955 0 +14 18612 28.157383685955 0 +14 18612 28.157383685955 0 +14 18620 28.157543685955 0 +14 18620 28.157543685955 0 +14 18740 28.414557494637 0 +14 18740 28.414557494637 0 +14 18759 28.414717494637 0 +14 18759 28.414717494637 0 +14 18775 28.424399240801 0 +14 18775 28.424399240801 0 +14 18786 28.424559240801 0 +14 18786 28.424559240801 0 +14 18808 28.431276907999 0 +14 18808 28.431276907999 0 +14 18831 28.431436907999 0 +14 18831 28.431436907999 0 +14 18841 28.457383685955 0 +14 18841 28.457383685955 2 +14 18842 28.457383685955 2 +14 18842 28.457383685955 0 +14 18845 28.457383685955 0 +14 18845 28.457383685955 0 +14 18853 28.457543685955 0 +14 18853 28.457543685955 0 +14 18973 28.714557490176 0 +14 18973 28.714557490176 0 +14 18992 28.714717490176 0 +14 18992 28.714717490176 0 +14 19008 28.724399242627 0 +14 19008 28.724399242627 0 +14 19019 28.724559242627 0 +14 19019 28.724559242627 0 +14 19041 28.731276917209 0 +14 19041 28.731276917209 0 +14 19064 28.731436917209 0 +14 19064 28.731436917209 0 +14 19074 28.757383685955 0 +14 19074 28.757383685955 2 +14 19075 28.757383685955 2 +14 19075 28.757383685955 0 +14 19078 28.757383685955 0 +14 19078 28.757383685955 0 +14 19086 28.757543685955 0 +14 19086 28.757543685955 0 +14 19206 29.01455748367 0 +14 19206 29.01455748367 0 +14 19225 29.01471748367 0 +14 19225 29.01471748367 0 +14 19241 29.02439924345 0 +14 19241 29.02439924345 0 +14 19252 29.02455924345 0 +14 19252 29.02455924345 0 +14 19303 29.057383685955 0 +14 19303 29.057383685955 2 +14 19304 29.057383685955 2 +14 19304 29.057383685955 0 +14 19307 29.057383685955 0 +14 19307 29.057383685955 0 +14 19315 29.057543685955 0 +14 19315 29.057543685955 0 +14 19431 29.314557474199 0 +14 19431 29.314557474199 0 +14 19450 29.314717474199 0 +14 19450 29.314717474199 0 +14 19466 29.324399247583 0 +14 19466 29.324399247583 0 +14 19477 29.324559247583 0 +14 19477 29.324559247583 0 +14 19528 29.357383685955 0 +14 19528 29.357383685955 2 +14 19529 29.357383685955 2 +14 19529 29.357383685955 0 +14 19532 29.357383685955 0 +14 19532 29.357383685955 0 +14 19540 29.357543685955 0 +14 19540 29.357543685955 0 +14 19656 29.614557462553 0 +14 19656 29.614557462553 0 +14 19675 29.614717462553 0 +14 19675 29.614717462553 0 +14 19691 29.624399248962 0 +14 19691 29.624399248962 0 +14 19702 29.624559248962 0 +14 19702 29.624559248962 0 +14 19753 29.657383685955 0 +14 19753 29.657383685955 2 +14 19754 29.657383685955 2 +14 19754 29.657383685955 0 +14 19757 29.657383685955 0 +14 19757 29.657383685955 0 +14 19765 29.657543685955 0 +14 19765 29.657543685955 0 +14 19881 29.914557450409 0 +14 19881 29.914557450409 0 +14 19900 29.914717450409 0 +14 19900 29.914717450409 0 +14 19916 29.924399249496 0 +14 19916 29.924399249496 0 +14 19927 29.924559249496 0 +14 19927 29.924559249496 0 +14 19978 29.957383685955 0 +14 19978 29.957383685955 2 +14 19979 29.957383685955 2 +14 19979 29.957383685955 0 +14 19982 29.957383685955 0 +14 19982 29.957383685955 0 +14 19990 29.957543685955 0 +14 19990 29.957543685955 0 +14 20106 30.214557437824 0 +14 20106 30.214557437824 0 +14 20125 30.214717437824 0 +14 20125 30.214717437824 0 +14 20141 30.224399249493 0 +14 20141 30.224399249493 0 +14 20152 30.224559249493 0 +14 20152 30.224559249493 0 +14 20203 30.257383685955 0 +14 20203 30.257383685955 2 +14 20204 30.257383685955 2 +14 20204 30.257383685955 0 +14 20207 30.257383685955 0 +14 20207 30.257383685955 0 +14 20215 30.257543685955 0 +14 20215 30.257543685955 0 +14 20329 30.514557424894 0 +14 20329 30.514557424894 0 +14 20340 30.514717424894 0 +14 20340 30.514717424894 0 +14 20366 30.524399249491 0 +14 20366 30.524399249491 0 +14 20377 30.524559249491 0 +14 20377 30.524559249491 0 +14 20428 30.557383685955 0 +14 20428 30.557383685955 2 +14 20429 30.557383685955 2 +14 20429 30.557383685955 0 +14 20432 30.557383685955 0 +14 20432 30.557383685955 0 +14 20440 30.557543685955 0 +14 20440 30.557543685955 0 +14 20554 30.814557411739 0 +14 20554 30.814557411739 0 +14 20565 30.814717411739 0 +14 20565 30.814717411739 0 +14 20591 30.824399249488 0 +14 20591 30.824399249488 0 +14 20602 30.824559249488 0 +14 20602 30.824559249488 0 +14 20653 30.857383685955 0 +14 20653 30.857383685955 2 +14 20654 30.857383685955 2 +14 20654 30.857383685955 0 +14 20657 30.857383685955 0 +14 20657 30.857383685955 0 +14 20665 30.857543685955 0 +14 20665 30.857543685955 0 +14 20779 31.114557398299 0 +14 20779 31.114557398299 0 +14 20790 31.114717398299 0 +14 20790 31.114717398299 0 +14 20816 31.124399249483 0 +14 20816 31.124399249483 0 +14 20827 31.124559249483 0 +14 20827 31.124559249483 0 +14 20882 31.157383685955 0 +14 20882 31.157383685955 2 +14 20883 31.157383685955 2 +14 20883 31.157383685955 0 +14 20886 31.157383685955 0 +14 20886 31.157383685955 0 +14 20894 31.157543685955 0 +14 20894 31.157543685955 0 +14 21012 31.414557384666 0 +14 21012 31.414557384666 0 +14 21023 31.414717384666 0 +14 21023 31.414717384666 0 +14 21049 31.424399249476 0 +14 21049 31.424399249476 0 +14 21060 31.424559249476 0 +14 21060 31.424559249476 0 +14 21115 31.457383685955 0 +14 21115 31.457383685955 2 +14 21116 31.457383685955 2 +14 21116 31.457383685955 0 +14 21119 31.457383685955 0 +14 21119 31.457383685955 0 +14 21127 31.457543685955 0 +14 21127 31.457543685955 0 +14 21245 31.714557370995 0 +14 21245 31.714557370995 0 +14 21256 31.714717370995 0 +14 21256 31.714717370995 0 +14 21282 31.724399249469 0 +14 21282 31.724399249469 0 +14 21293 31.724559249469 0 +14 21293 31.724559249469 0 +14 21348 31.757383685955 0 +14 21348 31.757383685955 2 +14 21349 31.757383685955 2 +14 21349 31.757383685955 0 +14 21352 31.757383685955 0 +14 21352 31.757383685955 0 +14 21360 31.757543685955 0 +14 21360 31.757543685955 0 +14 21478 32.014557357699 0 +14 21478 32.014557357699 0 +14 21489 32.014717357699 0 +14 21489 32.014717357699 0 +14 21516 32.024399249465 0 +14 21516 32.024399249465 0 +14 21531 32.024559249465 0 +14 21531 32.024559249465 0 +14 21581 32.057383685955 0 +14 21581 32.057383685955 2 +14 21582 32.057383685955 2 +14 21582 32.057383685955 0 +14 21585 32.057383685955 0 +14 21585 32.057383685955 0 +14 21593 32.057543685955 0 +14 21593 32.057543685955 0 +14 21711 32.314557344745 0 +14 21711 32.314557344745 0 +14 21722 32.314717344745 0 +14 21722 32.314717344745 0 +14 21749 32.324399249464 0 +14 21749 32.324399249464 0 +14 21764 32.324559249464 0 +14 21764 32.324559249464 0 +14 21814 32.357383685955 0 +14 21814 32.357383685955 2 +14 21815 32.357383685955 2 +14 21815 32.357383685955 0 +14 21818 32.357383685955 0 +14 21818 32.357383685955 0 +14 21826 32.357543685955 0 +14 21826 32.357543685955 0 +14 21944 32.614557332223 0 +14 21944 32.614557332223 0 +14 21955 32.614717332223 0 +14 21955 32.614717332223 0 +14 21982 32.624399249467 0 +14 21982 32.624399249467 0 +14 21997 32.624559249467 0 +14 21997 32.624559249467 0 +14 22047 32.657383685955 0 +14 22047 32.657383685955 2 +14 22048 32.657383685955 2 +14 22048 32.657383685955 0 +14 22051 32.657383685955 0 +14 22051 32.657383685955 0 +14 22059 32.657543685955 0 +14 22059 32.657543685955 0 +14 22177 32.914557320155 0 +14 22177 32.914557320155 0 +14 22188 32.914717320155 0 +14 22188 32.914717320155 0 +14 22215 32.924399249474 0 +14 22215 32.924399249474 0 +14 22230 32.924559249474 0 +14 22230 32.924559249474 0 +14 22280 32.957383685955 0 +14 22280 32.957383685955 2 +14 22281 32.957383685955 2 +14 22281 32.957383685955 0 +14 22284 32.957383685955 0 +14 22284 32.957383685955 0 +14 22292 32.957543685955 0 +14 22292 32.957543685955 0 +14 22410 33.214557308546 0 +14 22410 33.214557308546 0 +14 22421 33.214717308546 0 +14 22421 33.214717308546 0 +14 22448 33.224399249483 0 +14 22448 33.224399249483 0 +14 22463 33.224559249483 0 +14 22463 33.224559249483 0 +14 22513 33.257383685955 0 +14 22513 33.257383685955 2 +14 22514 33.257383685955 2 +14 22514 33.257383685955 0 +14 22517 33.257383685955 0 +14 22517 33.257383685955 0 +14 22525 33.257543685955 0 +14 22525 33.257543685955 0 +14 22643 33.51455729748 0 +14 22643 33.51455729748 0 +14 22654 33.51471729748 0 +14 22654 33.51471729748 0 +14 22681 33.524399249496 0 +14 22681 33.524399249496 0 +14 22696 33.524559249496 0 +14 22696 33.524559249496 0 +14 22746 33.557383685955 0 +14 22746 33.557383685955 2 +14 22747 33.557383685955 2 +14 22747 33.557383685955 0 +14 22750 33.557383685955 0 +14 22750 33.557383685955 0 +14 22758 33.557543685955 0 +14 22758 33.557543685955 0 +14 22876 33.814557286954 0 +14 22876 33.814557286954 0 +14 22887 33.814717286954 0 +14 22887 33.814717286954 0 +14 22910 33.824399249513 0 +14 22910 33.824399249513 0 +14 22925 33.824559249513 0 +14 22925 33.824559249513 0 +14 22975 33.857383685955 0 +14 22975 33.857383685955 2 +14 22976 33.857383685955 2 +14 22976 33.857383685955 0 +14 22979 33.857383685955 0 +14 22979 33.857383685955 0 +14 22987 33.857543685955 0 +14 22987 33.857543685955 0 +14 23092 34.114557277044 0 +14 23092 34.114557277044 0 +14 23102 34.114717277044 0 +14 23102 34.114717277044 0 +14 23119 34.124399249532 0 +14 23119 34.124399249532 0 +14 23129 34.124559249532 0 +14 23129 34.124559249532 0 +14 23169 34.157383685955 0 +14 23169 34.157383685955 2 +14 23170 34.157383685955 2 +14 23170 34.157383685955 0 +14 23173 34.157383685955 0 +14 23173 34.157383685955 0 +14 23180 34.157543685955 0 +14 23180 34.157543685955 0 +14 23250 34.41455726774 0 +14 23250 34.41455726774 0 +14 23260 34.41471726774 0 +14 23260 34.41471726774 0 +14 23277 34.424399249554 0 +14 23277 34.424399249554 0 +14 23287 34.424559249554 0 +14 23287 34.424559249554 0 +14 23327 34.457383685955 0 +14 23327 34.457383685955 2 +14 23328 34.457383685955 2 +14 23328 34.457383685955 0 +14 23331 34.457383685955 0 +14 23331 34.457383685955 0 +14 23338 34.457543685955 0 +14 23338 34.457543685955 0 +14 23408 34.714557259086 0 +14 23408 34.714557259086 0 +14 23418 34.714717259086 0 +14 23418 34.714717259086 0 +14 23435 34.72439924958 0 +14 23435 34.72439924958 0 +14 23445 34.72455924958 0 +14 23445 34.72455924958 0 +14 23485 34.757383685955 0 +14 23485 34.757383685955 2 +14 23486 34.757383685955 2 +14 23486 34.757383685955 0 +14 23489 34.757383685955 0 +14 23489 34.757383685955 0 +14 23496 34.757543685955 0 +14 23496 34.757543685955 0 +14 23566 35.01455725114 0 +14 23566 35.01455725114 0 +14 23576 35.01471725114 0 +14 23576 35.01471725114 0 +14 23593 35.024399249609 0 +14 23593 35.024399249609 0 +14 23603 35.024559249609 0 +14 23603 35.024559249609 0 +14 23643 35.057383685955 0 +14 23643 35.057383685955 2 +14 23644 35.057383685955 2 +14 23644 35.057383685955 0 +14 23647 35.057383685955 0 +14 23647 35.057383685955 0 +14 23654 35.057543685955 0 +14 23654 35.057543685955 0 +14 23685 35.14399390924 0 +14 23685 35.14399390924 0 +14 23699 35.14415390924 0 +14 23699 35.14415390924 0 +14 23728 35.314557244297 0 +14 23728 35.314557244297 0 +14 23738 35.314717244297 0 +14 23738 35.314717244297 0 +14 23755 35.324399249632 0 +14 23755 35.324399249632 0 +14 23765 35.324559249632 0 +14 23765 35.324559249632 0 +14 23805 35.357383685955 0 +14 23805 35.357383685955 2 +14 23806 35.357383685955 2 +14 23806 35.357383685955 0 +14 23809 35.357383685955 0 +14 23809 35.357383685955 0 +14 23816 35.357543685955 0 +14 23816 35.357543685955 0 +14 23851 35.443993894903 0 +14 23851 35.443993894903 0 +14 23865 35.444153894903 0 +14 23865 35.444153894903 0 +14 23894 35.614557239399 0 +14 23894 35.614557239399 0 +14 23904 35.614717239399 0 +14 23904 35.614717239399 0 +14 23921 35.624399249628 0 +14 23921 35.624399249628 0 +14 23931 35.624559249628 0 +14 23931 35.624559249628 0 +14 23971 35.657383685955 0 +14 23971 35.657383685955 2 +14 23972 35.657383685955 2 +14 23972 35.657383685955 0 +14 23975 35.657383685955 0 +14 23975 35.657383685955 0 +14 23982 35.657543685955 0 +14 23982 35.657543685955 0 +14 24017 35.743993882114 0 +14 24017 35.743993882114 0 +14 24031 35.744153882114 0 +14 24031 35.744153882114 0 +14 24059 35.914557236445 0 +14 24059 35.914557236445 0 +14 24065 35.914717236445 0 +14 24065 35.914717236445 0 +14 24087 35.924399249595 0 +14 24087 35.924399249595 0 +14 24097 35.924559249595 0 +14 24097 35.924559249595 0 +14 24137 35.957383685955 0 +14 24137 35.957383685955 2 +14 24138 35.957383685955 2 +14 24138 35.957383685955 0 +14 24141 35.957383685955 0 +14 24141 35.957383685955 0 +14 24148 35.957543685955 0 +14 24148 35.957543685955 0 +14 24183 36.043993870912 0 +14 24183 36.043993870912 0 +14 24197 36.044153870912 0 +14 24197 36.044153870912 0 +14 24225 36.214557235432 0 +14 24225 36.214557235432 0 +14 24231 36.214717235432 0 +14 24231 36.214717235432 0 +14 24253 36.224399249544 0 +14 24253 36.224399249544 0 +14 24263 36.224559249544 0 +14 24263 36.224559249544 0 +14 24303 36.257383685955 0 +14 24303 36.257383685955 2 +14 24304 36.257383685955 2 +14 24304 36.257383685955 0 +14 24307 36.257383685955 0 +14 24307 36.257383685955 0 +14 24314 36.257543685955 0 +14 24314 36.257543685955 0 +14 24349 36.343993861309 0 +14 24349 36.343993861309 0 +14 24363 36.344153861309 0 +14 24363 36.344153861309 0 +14 24391 36.514557236231 0 +14 24391 36.514557236231 0 +14 24397 36.514717236231 0 +14 24397 36.514717236231 0 +14 24419 36.524399249492 0 +14 24419 36.524399249492 0 +14 24429 36.524559249492 0 +14 24429 36.524559249492 0 +14 24469 36.557383685955 0 +14 24469 36.557383685955 2 +14 24470 36.557383685955 2 +14 24470 36.557383685955 0 +14 24473 36.557383685955 0 +14 24473 36.557383685955 0 +14 24480 36.557543685955 0 +14 24480 36.557543685955 0 +14 24515 36.643993853328 0 +14 24515 36.643993853328 0 +14 24529 36.644153853328 0 +14 24529 36.644153853328 0 +14 24558 36.814557238201 0 +14 24558 36.814557238201 0 +14 24568 36.814717238201 0 +14 24568 36.814717238201 0 +14 24585 36.824399249465 0 +14 24585 36.824399249465 0 +14 24595 36.824559249465 0 +14 24595 36.824559249465 0 +14 24635 36.857383685955 0 +14 24635 36.857383685955 2 +14 24636 36.857383685955 2 +14 24636 36.857383685955 0 +14 24639 36.857383685955 0 +14 24639 36.857383685955 0 +14 24646 36.857543685955 0 +14 24646 36.857543685955 0 +14 24681 36.943993845573 0 +14 24681 36.943993845573 0 +14 24695 36.944153845573 0 +14 24695 36.944153845573 0 +14 24724 37.114557240113 0 +14 24724 37.114557240113 0 +14 24734 37.114717240113 0 +14 24734 37.114717240113 0 +14 24751 37.124399249471 0 +14 24751 37.124399249471 0 +14 24761 37.124559249471 0 +14 24761 37.124559249471 0 +14 24801 37.157383685955 0 +14 24801 37.157383685955 2 +14 24802 37.157383685955 2 +14 24802 37.157383685955 0 +14 24805 37.157383685955 0 +14 24805 37.157383685955 0 +14 24812 37.157543685955 0 +14 24812 37.157543685955 0 +14 24846 37.243993835004 0 +14 24846 37.243993835004 0 +14 24856 37.244153835004 0 +14 24856 37.244153835004 0 +14 24890 37.414557242061 0 +14 24890 37.414557242061 0 +14 24900 37.414717242061 0 +14 24900 37.414717242061 0 +14 24917 37.424399249494 0 +14 24917 37.424399249494 0 +14 24927 37.424559249494 0 +14 24927 37.424559249494 0 +14 24967 37.457383685955 0 +14 24967 37.457383685955 2 +14 24968 37.457383685955 2 +14 24968 37.457383685955 0 +14 24971 37.457383685955 0 +14 24971 37.457383685955 0 +14 24978 37.457543685955 0 +14 24978 37.457543685955 0 +14 25012 37.543993814684 0 +14 25012 37.543993814684 0 +14 25022 37.544153814684 0 +14 25022 37.544153814684 0 +14 25056 37.714557244204 0 +14 25056 37.714557244204 0 +14 25066 37.714717244204 0 +14 25066 37.714717244204 0 +14 25083 37.724399249526 0 +14 25083 37.724399249526 0 +14 25093 37.724559249526 0 +14 25093 37.724559249526 0 +14 25133 37.757383685955 0 +14 25133 37.757383685955 2 +14 25134 37.757383685955 2 +14 25134 37.757383685955 0 +14 25137 37.757383685955 0 +14 25137 37.757383685955 0 +14 25144 37.757543685955 0 +14 25144 37.757543685955 0 +14 25178 37.843993790864 0 +14 25178 37.843993790864 0 +14 25188 37.844153790864 0 +14 25188 37.844153790864 0 +14 25222 38.014557246626 0 +14 25222 38.014557246626 0 +14 25232 38.014717246626 0 +14 25232 38.014717246626 0 +14 25249 38.024399249562 0 +14 25249 38.024399249562 0 +14 25259 38.024559249562 0 +14 25259 38.024559249562 0 +14 25299 38.057383685955 0 +14 25299 38.057383685955 2 +14 25300 38.057383685955 2 +14 25300 38.057383685955 0 +14 25303 38.057383685955 0 +14 25303 38.057383685955 0 +14 25310 38.057543685955 0 +14 25310 38.057543685955 0 +14 25344 38.143993766481 0 +14 25344 38.143993766481 0 +14 25354 38.144153766481 0 +14 25354 38.144153766481 0 +14 25388 38.314557249321 0 +14 25388 38.314557249321 0 +14 25398 38.314717249321 0 +14 25398 38.314717249321 0 +14 25415 38.324399249594 0 +14 25415 38.324399249594 0 +14 25425 38.324559249594 0 +14 25425 38.324559249594 0 +14 25465 38.357383685955 0 +14 25465 38.357383685955 2 +14 25466 38.357383685955 2 +14 25466 38.357383685955 0 +14 25469 38.357383685955 0 +14 25469 38.357383685955 0 +14 25476 38.357543685955 0 +14 25476 38.357543685955 0 +14 25510 38.443993741575 0 +14 25510 38.443993741575 0 +14 25520 38.444153741575 0 +14 25520 38.444153741575 0 +14 25554 38.614557252296 0 +14 25554 38.614557252296 0 +14 25564 38.614717252296 0 +14 25564 38.614717252296 0 +14 25581 38.624399249618 0 +14 25581 38.624399249618 0 +14 25591 38.624559249618 0 +14 25591 38.624559249618 0 +14 25631 38.657383685955 0 +14 25631 38.657383685955 2 +14 25632 38.657383685955 2 +14 25632 38.657383685955 0 +14 25635 38.657383685955 0 +14 25635 38.657383685955 0 +14 25642 38.657543685955 0 +14 25642 38.657543685955 0 +14 25676 38.743993716074 0 +14 25676 38.743993716074 0 +14 25686 38.744153716074 0 +14 25686 38.744153716074 0 +14 25720 38.914557255584 0 +14 25720 38.914557255584 0 +14 25730 38.914717255584 0 +14 25730 38.914717255584 0 +14 25747 38.924399249631 0 +14 25747 38.924399249631 0 +14 25757 38.924559249631 0 +14 25757 38.924559249631 0 +14 25797 38.957383685955 0 +14 25797 38.957383685955 2 +14 25798 38.957383685955 2 +14 25798 38.957383685955 0 +14 25801 38.957383685955 0 +14 25801 38.957383685955 0 +14 25808 38.957543685955 0 +14 25808 38.957543685955 0 +14 25842 39.043993690005 0 +14 25842 39.043993690005 0 +14 25852 39.044153690005 0 +14 25852 39.044153690005 0 +14 25886 39.214557259182 0 +14 25886 39.214557259182 0 +14 25896 39.214717259182 0 +14 25896 39.214717259182 0 +14 25913 39.224399249629 0 +14 25913 39.224399249629 0 +14 25923 39.224559249629 0 +14 25923 39.224559249629 0 +14 25963 39.257383685955 0 +14 25963 39.257383685955 2 +14 25964 39.257383685955 2 +14 25964 39.257383685955 0 +14 25967 39.257383685955 0 +14 25967 39.257383685955 0 +14 25974 39.257543685955 0 +14 25974 39.257543685955 0 +14 26008 39.343993663209 0 +14 26008 39.343993663209 0 +14 26018 39.344153663209 0 +14 26018 39.344153663209 0 +14 26052 39.514557263099 0 +14 26052 39.514557263099 0 +14 26062 39.514717263099 0 +14 26062 39.514717263099 0 +14 26079 39.524399249613 0 +14 26079 39.524399249613 0 +14 26089 39.524559249613 0 +14 26089 39.524559249613 0 +14 26129 39.557383685955 0 +14 26129 39.557383685955 2 +14 26130 39.557383685955 2 +14 26130 39.557383685955 0 +14 26133 39.557383685955 0 +14 26133 39.557383685955 0 +14 26140 39.557543685955 0 +14 26140 39.557543685955 0 +14 26174 39.643993635768 0 +14 26174 39.643993635768 0 +14 26184 39.644153635768 0 +14 26184 39.644153635768 0 +14 26218 39.81455726744 0 +14 26218 39.81455726744 0 +14 26228 39.81471726744 0 +14 26228 39.81471726744 0 +14 26245 39.824399249586 0 +14 26245 39.824399249586 0 +14 26255 39.824559249586 0 +14 26255 39.824559249586 0 +14 26295 39.857383685955 0 +14 26295 39.857383685955 2 +14 26296 39.857383685955 2 +14 26296 39.857383685955 0 +14 26299 39.857383685955 0 +14 26299 39.857383685955 0 +14 26306 39.857543685955 0 +14 26306 39.857543685955 0 +14 26340 39.943993607814 0 +14 26340 39.943993607814 0 +14 26350 39.944153607814 0 +14 26350 39.944153607814 0 +14 26384 40.114557272479 0 +14 26384 40.114557272479 0 +14 26394 40.114717272479 0 +14 26394 40.114717272479 0 +14 26411 40.124399249559 0 +14 26411 40.124399249559 0 +14 26421 40.124559249559 0 +14 26421 40.124559249559 0 +14 26461 40.157383685955 0 +14 26461 40.157383685955 2 +14 26462 40.157383685955 2 +14 26462 40.157383685955 0 +14 26465 40.157383685955 0 +14 26465 40.157383685955 0 +14 26472 40.157543685955 0 +14 26472 40.157543685955 0 +14 26505 40.243993579799 0 +14 26505 40.243993579799 0 +14 26511 40.244153579799 0 +14 26511 40.244153579799 0 +14 26550 40.414557278253 0 +14 26550 40.414557278253 0 +14 26560 40.414717278253 0 +14 26560 40.414717278253 0 +14 26577 40.424399249535 0 +14 26577 40.424399249535 0 +14 26587 40.424559249535 0 +14 26587 40.424559249535 0 +14 26627 40.457383685955 0 +14 26627 40.457383685955 2 +14 26628 40.457383685955 2 +14 26628 40.457383685955 0 +14 26631 40.457383685955 0 +14 26631 40.457383685955 0 +14 26638 40.457543685955 0 +14 26638 40.457543685955 0 +14 26671 40.543993551811 0 +14 26671 40.543993551811 0 +14 26677 40.544153551811 0 +14 26677 40.544153551811 0 +14 26716 40.714557284831 0 +14 26716 40.714557284831 0 +14 26726 40.714717284831 0 +14 26726 40.714717284831 0 +14 26743 40.724399249515 0 +14 26743 40.724399249515 0 +14 26753 40.724559249515 0 +14 26753 40.724559249515 0 +14 26797 40.757383685955 0 +14 26797 40.757383685955 2 +14 26798 40.757383685955 2 +14 26798 40.757383685955 0 +14 26801 40.757383685955 0 +14 26801 40.757383685955 0 +14 26808 40.757543685955 0 +14 26808 40.757543685955 0 +14 26841 40.843993523891 0 +14 26841 40.843993523891 0 +14 26847 40.844153523891 0 +14 26847 40.844153523891 0 +14 26890 41.014557292056 0 +14 26890 41.014557292056 0 +14 26900 41.014717292056 0 +14 26900 41.014717292056 0 +14 26917 41.024399249498 0 +14 26917 41.024399249498 0 +14 26927 41.024559249498 0 +14 26927 41.024559249498 0 +14 26971 41.057383685955 0 +14 26971 41.057383685955 2 +14 26972 41.057383685955 2 +14 26972 41.057383685955 0 +14 26975 41.057383685955 0 +14 26975 41.057383685955 0 +14 26982 41.057543685955 0 +14 26982 41.057543685955 0 +14 27015 41.143993495882 0 +14 27015 41.143993495882 0 +14 27021 41.144153495882 0 +14 27021 41.144153495882 0 +14 27064 41.314557299998 0 +14 27064 41.314557299998 0 +14 27074 41.314717299998 0 +14 27074 41.314717299998 0 +14 27091 41.324399249485 0 +14 27091 41.324399249485 0 +14 27101 41.324559249485 0 +14 27101 41.324559249485 0 +14 27145 41.357383685955 0 +14 27145 41.357383685955 2 +14 27146 41.357383685955 2 +14 27146 41.357383685955 0 +14 27149 41.357383685955 0 +14 27149 41.357383685955 0 +14 27156 41.357543685955 0 +14 27156 41.357543685955 0 +14 27189 41.44399346791 0 +14 27189 41.44399346791 0 +14 27195 41.44415346791 0 +14 27195 41.44415346791 0 +14 27238 41.614557308543 0 +14 27238 41.614557308543 0 +14 27248 41.614717308543 0 +14 27248 41.614717308543 0 +14 27265 41.624399249475 0 +14 27265 41.624399249475 0 +14 27275 41.624559249475 0 +14 27275 41.624559249475 0 +14 27319 41.657383685955 0 +14 27319 41.657383685955 2 +14 27320 41.657383685955 2 +14 27320 41.657383685955 0 +14 27323 41.657383685955 0 +14 27323 41.657383685955 0 +14 27330 41.657543685955 0 +14 27330 41.657543685955 0 +14 27363 41.743993439965 0 +14 27363 41.743993439965 0 +14 27369 41.744153439965 0 +14 27369 41.744153439965 0 +14 27412 41.914557317732 0 +14 27412 41.914557317732 0 +14 27422 41.914717317732 0 +14 27422 41.914717317732 0 +14 27439 41.924399249468 0 +14 27439 41.924399249468 0 +14 27449 41.924559249468 0 +14 27449 41.924559249468 0 +14 27493 41.957383685955 0 +14 27493 41.957383685955 2 +14 27494 41.957383685955 2 +14 27494 41.957383685955 0 +14 27497 41.957383685955 0 +14 27497 41.957383685955 0 +14 27504 41.957543685955 0 +14 27504 41.957543685955 0 +14 27537 42.043993412971 0 +14 27537 42.043993412971 0 +14 27543 42.044153412971 0 +14 27543 42.044153412971 0 +14 27586 42.214557327498 0 +14 27586 42.214557327498 0 +14 27596 42.214717327498 0 +14 27596 42.214717327498 0 +14 27613 42.224399249465 0 +14 27613 42.224399249465 0 +14 27623 42.224559249465 0 +14 27623 42.224559249465 0 +14 27667 42.257383685955 0 +14 27667 42.257383685955 2 +14 27668 42.257383685955 2 +14 27668 42.257383685955 0 +14 27671 42.257383685955 0 +14 27671 42.257383685955 0 +14 27678 42.257543685955 0 +14 27678 42.257543685955 0 +14 27711 42.34399338739 0 +14 27711 42.34399338739 0 +14 27717 42.34415338739 0 +14 27717 42.34415338739 0 +14 27760 42.514557337799 0 +14 27760 42.514557337799 0 +14 27770 42.514717337799 0 +14 27770 42.514717337799 0 +14 27787 42.524399249465 0 +14 27787 42.524399249465 0 +14 27797 42.524559249465 0 +14 27797 42.524559249465 0 +14 27841 42.557383685955 0 +14 27841 42.557383685955 2 +14 27842 42.557383685955 2 +14 27842 42.557383685955 0 +14 27845 42.557383685955 0 +14 27845 42.557383685955 0 +14 27852 42.557543685955 0 +14 27852 42.557543685955 0 +14 27885 42.643993363107 0 +14 27885 42.643993363107 0 +14 27891 42.644153363107 0 +14 27891 42.644153363107 0 +14 27934 42.814557348649 0 +14 27934 42.814557348649 0 +14 27944 42.814717348649 0 +14 27944 42.814717348649 0 +14 27961 42.824399249468 0 +14 27961 42.824399249468 0 +14 27971 42.824559249468 0 +14 27971 42.824559249468 0 +14 28015 42.857383685955 0 +14 28015 42.857383685955 2 +14 28016 42.857383685955 2 +14 28016 42.857383685955 0 +14 28019 42.857383685955 0 +14 28019 42.857383685955 0 +14 28026 42.857543685955 0 +14 28026 42.857543685955 0 +14 28059 42.943993340208 0 +14 28059 42.943993340208 0 +14 28065 42.944153340208 0 +14 28065 42.944153340208 0 +14 28107 43.114557359966 0 +14 28107 43.114557359966 0 +14 28113 43.114717359966 0 +14 28113 43.114717359966 0 +14 28135 43.124399249475 0 +14 28135 43.124399249475 0 +14 28145 43.124559249475 0 +14 28145 43.124559249475 0 +14 28189 43.157383685955 0 +14 28189 43.157383685955 2 +14 28190 43.157383685955 2 +14 28190 43.157383685955 0 +14 28193 43.157383685955 0 +14 28193 43.157383685955 0 +14 28200 43.157543685955 0 +14 28200 43.157543685955 0 +14 28233 43.243993318662 0 +14 28233 43.243993318662 0 +14 28239 43.244153318662 0 +14 28239 43.244153318662 0 +14 28281 43.414557371721 0 +14 28281 43.414557371721 0 +14 28287 43.414717371721 0 +14 28287 43.414717371721 0 +14 28309 43.424399249485 0 +14 28309 43.424399249485 0 +14 28319 43.424559249485 0 +14 28319 43.424559249485 0 +14 28363 43.457383685955 0 +14 28363 43.457383685955 2 +14 28364 43.457383685955 2 +14 28364 43.457383685955 0 +14 28367 43.457383685955 0 +14 28367 43.457383685955 0 +14 28374 43.457543685955 0 +14 28374 43.457543685955 0 +14 28407 43.543993298467 0 +14 28407 43.543993298467 0 +14 28413 43.544153298467 0 +14 28413 43.544153298467 0 +14 28455 43.71455738363 0 +14 28455 43.71455738363 0 +14 28461 43.71471738363 0 +14 28461 43.71471738363 0 +14 28483 43.724399249498 0 +14 28483 43.724399249498 0 +14 28493 43.724559249498 0 +14 28493 43.724559249498 0 +14 28537 43.757383685955 0 +14 28537 43.757383685955 2 +14 28538 43.757383685955 2 +14 28538 43.757383685955 0 +14 28541 43.757383685955 0 +14 28541 43.757383685955 0 +14 28548 43.757543685955 0 +14 28548 43.757543685955 0 +14 28581 43.843993279612 0 +14 28581 43.843993279612 0 +14 28587 43.844153279612 0 +14 28587 43.844153279612 0 +14 28629 44.014557394666 0 +14 28629 44.014557394666 0 +14 28635 44.014717394666 0 +14 28635 44.014717394666 0 +14 28657 44.024399249515 0 +14 28657 44.024399249515 0 +14 28667 44.024559249515 0 +14 28667 44.024559249515 0 +14 28711 44.057383685955 0 +14 28711 44.057383685955 2 +14 28712 44.057383685955 2 +14 28712 44.057383685955 0 +14 28715 44.057383685955 0 +14 28715 44.057383685955 0 +14 28722 44.057543685955 0 +14 28722 44.057543685955 0 +14 28755 44.143993262339 0 +14 28755 44.143993262339 0 +14 28761 44.144153262339 0 +14 28761 44.144153262339 0 +14 28803 44.314557404849 0 +14 28803 44.314557404849 0 +14 28809 44.314717404849 0 +14 28809 44.314717404849 0 +14 28832 44.324399249523 0 +14 28832 44.324399249523 0 +14 28846 44.324559249523 0 +14 28846 44.324559249523 0 +14 28881 44.357383685955 0 +14 28881 44.357383685955 2 +14 28882 44.357383685955 2 +14 28882 44.357383685955 0 +14 28885 44.357383685955 0 +14 28885 44.357383685955 0 +14 28892 44.357543685955 0 +14 28892 44.357543685955 0 +14 28925 44.443993247573 0 +14 28925 44.443993247573 0 +14 28931 44.444153247573 0 +14 28931 44.444153247573 0 +14 28969 44.614557414115 0 +14 28969 44.614557414115 0 +14 28975 44.614717414115 0 +14 28975 44.614717414115 0 +14 28998 44.624399249512 0 +14 28998 44.624399249512 0 +14 29012 44.624559249512 0 +14 29012 44.624559249512 0 +14 29047 44.657383685955 0 +14 29047 44.657383685955 2 +14 29048 44.657383685955 2 +14 29048 44.657383685955 0 +14 29051 44.657383685955 0 +14 29051 44.657383685955 0 +14 29058 44.657543685955 0 +14 29058 44.657543685955 0 +14 29091 44.743993235516 0 +14 29091 44.743993235516 0 +14 29097 44.744153235516 0 +14 29097 44.744153235516 0 +14 29135 44.914557422365 0 +14 29135 44.914557422365 0 +14 29141 44.914717422365 0 +14 29141 44.914717422365 0 +14 29164 44.92439924949 0 +14 29164 44.92439924949 0 +14 29178 44.92455924949 0 +14 29178 44.92455924949 0 +14 29213 44.957383685955 0 +14 29213 44.957383685955 2 +14 29214 44.957383685955 2 +14 29214 44.957383685955 0 +14 29217 44.957383685955 0 +14 29217 44.957383685955 0 +14 29224 44.957543685955 0 +14 29224 44.957543685955 0 +14 29257 45.04399322614 0 +14 29257 45.04399322614 0 +14 29263 45.04415322614 0 +14 29263 45.04415322614 0 +14 29301 45.214557429517 0 +14 29301 45.214557429517 0 +14 29307 45.214717429517 0 +14 29307 45.214717429517 0 +14 29330 45.224399249469 0 +14 29330 45.224399249469 0 +14 29344 45.224559249469 0 +14 29344 45.224559249469 0 +14 29379 45.257383685955 0 +14 29379 45.257383685955 2 +14 29380 45.257383685955 2 +14 29380 45.257383685955 0 +14 29383 45.257383685955 0 +14 29383 45.257383685955 0 +14 29390 45.257543685955 0 +14 29390 45.257543685955 0 +14 29423 45.343993218642 0 +14 29423 45.343993218642 0 +14 29429 45.344153218642 0 +14 29429 45.344153218642 0 +14 29467 45.514557435742 0 +14 29467 45.514557435742 0 +14 29473 45.514717435742 0 +14 29473 45.514717435742 0 +14 29496 45.524399249468 0 +14 29496 45.524399249468 0 +14 29510 45.524559249468 0 +14 29510 45.524559249468 0 +14 29545 45.557383685955 0 +14 29545 45.557383685955 2 +14 29546 45.557383685955 2 +14 29546 45.557383685955 0 +14 29549 45.557383685955 0 +14 29549 45.557383685955 0 +14 29556 45.557543685955 0 +14 29556 45.557543685955 0 +14 29589 45.643993212262 0 +14 29589 45.643993212262 0 +14 29595 45.644153212262 0 +14 29595 45.644153212262 0 +14 29633 45.814557442585 0 +14 29633 45.814557442585 0 +14 29639 45.814717442585 0 +14 29639 45.814717442585 0 +14 29662 45.82439924948 0 +14 29662 45.82439924948 0 +14 29676 45.82455924948 0 +14 29676 45.82455924948 0 +14 29711 45.857383685955 0 +14 29711 45.857383685955 2 +14 29712 45.857383685955 2 +14 29712 45.857383685955 0 +14 29715 45.857383685955 0 +14 29715 45.857383685955 0 +14 29722 45.857543685955 0 +14 29722 45.857543685955 0 +14 29755 45.943993205371 0 +14 29755 45.943993205371 0 +14 29761 45.944153205371 0 +14 29761 45.944153205371 0 +14 29799 46.114557450187 0 +14 29799 46.114557450187 0 +14 29805 46.114717450187 0 +14 29805 46.114717450187 0 +14 29828 46.124399246618 0 +14 29828 46.124399246618 0 +14 29842 46.124559246618 0 +14 29842 46.124559246618 0 +14 29877 46.157383685955 0 +14 29877 46.157383685955 2 +14 29878 46.157383685955 2 +14 29878 46.157383685955 0 +14 29881 46.157383685955 0 +14 29881 46.157383685955 0 +14 29888 46.157543685955 0 +14 29888 46.157543685955 0 +14 29921 46.24399319776 0 +14 29921 46.24399319776 0 +14 29927 46.24415319776 0 +14 29927 46.24415319776 0 +14 29965 46.414557458063 0 +14 29965 46.414557458063 0 +14 29971 46.414717458063 0 +14 29971 46.414717458063 0 +14 29994 46.424399237708 0 +14 29994 46.424399237708 0 +14 30008 46.424559237708 0 +14 30008 46.424559237708 0 +14 30043 46.457383685955 0 +14 30043 46.457383685955 2 +14 30044 46.457383685955 2 +14 30044 46.457383685955 0 +14 30047 46.457383685955 0 +14 30047 46.457383685955 0 +14 30054 46.457543685955 0 +14 30054 46.457543685955 0 +14 30087 46.54399318918 0 +14 30087 46.54399318918 0 +14 30093 46.54415318918 0 +14 30093 46.54415318918 0 +14 30131 46.714557464072 0 +14 30131 46.714557464072 0 +14 30137 46.714717464072 0 +14 30137 46.714717464072 0 +14 30160 46.724399226197 0 +14 30160 46.724399226197 0 +14 30174 46.724559226197 0 +14 30174 46.724559226197 0 +14 30209 46.757383685955 0 +14 30209 46.757383685955 2 +14 30210 46.757383685955 2 +14 30210 46.757383685955 0 +14 30213 46.757383685955 0 +14 30213 46.757383685955 0 +14 30220 46.757543685955 0 +14 30220 46.757543685955 0 +14 30253 46.843993179661 0 +14 30253 46.843993179661 0 +14 30259 46.844153179661 0 +14 30259 46.844153179661 0 +14 30297 47.014557466477 0 +14 30297 47.014557466477 0 +14 30303 47.014717466477 0 +14 30303 47.014717466477 0 +14 30326 47.02439921469 0 +14 30326 47.02439921469 0 +14 30340 47.02455921469 0 +14 30340 47.02455921469 0 +14 30375 47.057383685955 0 +14 30375 47.057383685955 2 +14 30376 47.057383685955 2 +14 30376 47.057383685955 0 +14 30379 47.057383685955 0 +14 30379 47.057383685955 0 +14 30386 47.057543685955 0 +14 30386 47.057543685955 0 +14 30419 47.143993169499 0 +14 30419 47.143993169499 0 +14 30425 47.144153169499 0 +14 30425 47.144153169499 0 +14 30463 47.314557467583 0 +14 30463 47.314557467583 0 +14 30469 47.314717467583 0 +14 30469 47.314717467583 0 +14 30492 47.324399203344 0 +14 30492 47.324399203344 0 +14 30506 47.324559203344 0 +14 30506 47.324559203344 0 +14 30541 47.357383685955 0 +14 30541 47.357383685955 2 +14 30542 47.357383685955 2 +14 30542 47.357383685955 0 +14 30545 47.357383685955 0 +14 30545 47.357383685955 0 +14 30552 47.357543685955 0 +14 30552 47.357543685955 0 +14 30585 47.443993161554 0 +14 30585 47.443993161554 0 +14 30591 47.444153161554 0 +14 30591 47.444153161554 0 +14 30629 47.614557469418 0 +14 30629 47.614557469418 0 +14 30635 47.614717469418 0 +14 30635 47.614717469418 0 +14 30658 47.62439919222 0 +14 30658 47.62439919222 0 +14 30672 47.62455919222 0 +14 30672 47.62455919222 0 +14 30707 47.657383685955 0 +14 30707 47.657383685955 2 +14 30708 47.657383685955 2 +14 30708 47.657383685955 0 +14 30711 47.657383685955 0 +14 30711 47.657383685955 0 +14 30718 47.657543685955 0 +14 30718 47.657543685955 0 +14 30751 47.743993166005 0 +14 30751 47.743993166005 0 +14 30757 47.744153166005 0 +14 30757 47.744153166005 0 +14 30795 47.914557472096 0 +14 30795 47.914557472096 0 +14 30801 47.914717472096 0 +14 30801 47.914717472096 0 +14 30824 47.924399181338 0 +14 30824 47.924399181338 0 +14 30838 47.924559181338 0 +14 30838 47.924559181338 0 +14 30873 47.957383685955 0 +14 30873 47.957383685955 2 +14 30874 47.957383685955 2 +14 30874 47.957383685955 0 +14 30877 47.957383685955 0 +14 30877 47.957383685955 0 +14 30884 47.957543685955 0 +14 30884 47.957543685955 0 +14 30917 48.043993178928 0 +14 30917 48.043993178928 0 +14 30923 48.044153178928 0 +14 30923 48.044153178928 0 +14 30961 48.214557475721 0 +14 30961 48.214557475721 0 +14 30967 48.214717475721 0 +14 30967 48.214717475721 0 +14 30989 48.224399170754 0 +14 30989 48.224399170754 0 +14 30999 48.224559170754 0 +14 30999 48.224559170754 0 +14 31039 48.257383685955 0 +14 31039 48.257383685955 2 +14 31040 48.257383685955 2 +14 31040 48.257383685955 0 +14 31043 48.257383685955 0 +14 31043 48.257383685955 0 +14 31050 48.257543685955 0 +14 31050 48.257543685955 0 +14 31083 48.343993193323 0 +14 31083 48.343993193323 0 +14 31089 48.344153193323 0 +14 31089 48.344153193323 0 +14 31128 48.514557480378 0 +14 31128 48.514557480378 0 +14 31138 48.514717480378 0 +14 31138 48.514717480378 0 +14 31155 48.524399160478 0 +14 31155 48.524399160478 0 +14 31165 48.524559160478 0 +14 31165 48.524559160478 0 +14 31205 48.557383685955 0 +14 31205 48.557383685955 2 +14 31206 48.557383685955 2 +14 31206 48.557383685955 0 +14 31209 48.557383685955 0 +14 31209 48.557383685955 0 +14 31216 48.557543685955 0 +14 31216 48.557543685955 0 +14 31249 48.643993209351 0 +14 31249 48.643993209351 0 +14 31255 48.644153209351 0 +14 31255 48.644153209351 0 +14 31294 48.8145574862 0 +14 31294 48.8145574862 0 +14 31304 48.8147174862 0 +14 31304 48.8147174862 0 +14 31321 48.824399150571 0 +14 31321 48.824399150571 0 +14 31331 48.824559150571 0 +14 31331 48.824559150571 0 +14 31371 48.857383685955 0 +14 31371 48.857383685955 2 +14 31372 48.857383685955 2 +14 31372 48.857383685955 0 +14 31375 48.857383685955 0 +14 31375 48.857383685955 0 +14 31382 48.857543685955 0 +14 31382 48.857543685955 0 +14 31415 48.943993225428 0 +14 31415 48.943993225428 0 +14 31421 48.944153225428 0 +14 31421 48.944153225428 0 +14 31460 49.11455749318 0 +14 31460 49.11455749318 0 +14 31470 49.11471749318 0 +14 31470 49.11471749318 0 +14 31487 49.124399141102 0 +14 31487 49.124399141102 0 +14 31497 49.124559141102 0 +14 31497 49.124559141102 0 +14 31537 49.157383685955 0 +14 31537 49.157383685955 2 +14 31538 49.157383685955 2 +14 31538 49.157383685955 0 +14 31541 49.157383685955 0 +14 31541 49.157383685955 0 +14 31548 49.157543685955 0 +14 31548 49.157543685955 0 +14 31581 49.243993241593 0 +14 31581 49.243993241593 0 +14 31587 49.244153241593 0 +14 31587 49.244153241593 0 +14 31626 49.4145575013 0 +14 31626 49.4145575013 0 +14 31636 49.4147175013 0 +14 31636 49.4147175013 0 +14 31653 49.424399131999 0 +14 31653 49.424399131999 0 +14 31663 49.424559131999 0 +14 31663 49.424559131999 0 +14 31703 49.457383685955 0 +14 31703 49.457383685955 2 +14 31704 49.457383685955 2 +14 31704 49.457383685955 0 +14 31707 49.457383685955 0 +14 31707 49.457383685955 0 +14 31714 49.457543685955 0 +14 31714 49.457543685955 0 +14 31747 49.543993256365 0 +14 31747 49.543993256365 0 +14 31753 49.544153256365 0 +14 31753 49.544153256365 0 +14 31792 49.714557510532 0 +14 31792 49.714557510532 0 +14 31802 49.714717510532 0 +14 31802 49.714717510532 0 +14 31818 49.72439912329 0 +14 31818 49.72439912329 0 +14 31824 49.72455912329 0 +14 31824 49.72455912329 0 +14 31869 49.757383685955 0 +14 31869 49.757383685955 2 +14 31870 49.757383685955 2 +14 31870 49.757383685955 0 +14 31873 49.757383685955 0 +14 31873 49.757383685955 0 +14 31880 49.757543685955 0 +14 31880 49.757543685955 0 +14 31913 49.843993271223 0 +14 31913 49.843993271223 0 +14 31919 49.844153271223 0 +14 31919 49.844153271223 0 +14 31958 50.014557520716 0 +14 31958 50.014557520716 0 +14 31968 50.014717520716 0 +14 31968 50.014717520716 0 +14 31984 50.024399114997 0 +14 31984 50.024399114997 0 +14 31990 50.024559114997 0 +14 31990 50.024559114997 0 +14 32035 50.057383685955 0 +14 32035 50.057383685955 2 +14 32036 50.057383685955 2 +14 32036 50.057383685955 0 +14 32039 50.057383685955 0 +14 32039 50.057383685955 0 +14 32046 50.057543685955 0 +14 32046 50.057543685955 0 +14 32079 50.143993285388 0 +14 32079 50.143993285388 0 +14 32085 50.144153285388 0 +14 32085 50.144153285388 0 +14 32124 50.314557531836 0 +14 32124 50.314557531836 0 +14 32134 50.314717531836 0 +14 32134 50.314717531836 0 +14 32150 50.324399107181 0 +14 32150 50.324399107181 0 +14 32156 50.324559107181 0 +14 32156 50.324559107181 0 +14 32201 50.357383685955 0 +14 32201 50.357383685955 2 +14 32202 50.357383685955 2 +14 32202 50.357383685955 0 +14 32205 50.357383685955 0 +14 32205 50.357383685955 0 +14 32212 50.357543685955 0 +14 32212 50.357543685955 0 +14 32245 50.443993299881 0 +14 32245 50.443993299881 0 +14 32251 50.444153299881 0 +14 32251 50.444153299881 0 +14 32290 50.614557543841 0 +14 32290 50.614557543841 0 +14 32300 50.614717543841 0 +14 32300 50.614717543841 0 +14 32316 50.6243990998 0 +14 32316 50.6243990998 0 +14 32322 50.6245590998 0 +14 32322 50.6245590998 0 +14 32367 50.657383685955 0 +14 32367 50.657383685955 2 +14 32368 50.657383685955 2 +14 32368 50.657383685955 0 +14 32371 50.657383685955 0 +14 32371 50.657383685955 0 +14 32378 50.657543685955 0 +14 32378 50.657543685955 0 +14 32411 50.743993314719 0 +14 32411 50.743993314719 0 +14 32417 50.744153314719 0 +14 32417 50.744153314719 0 +14 32456 50.914557556641 0 +14 32456 50.914557556641 0 +14 32466 50.914717556641 0 +14 32466 50.914717556641 0 +14 32482 50.924399092883 0 +14 32482 50.924399092883 0 +14 32488 50.924559092883 0 +14 32488 50.924559092883 0 +14 32533 50.957383685955 0 +14 32533 50.957383685955 2 +14 32534 50.957383685955 2 +14 32534 50.957383685955 0 +14 32537 50.957383685955 0 +14 32537 50.957383685955 0 +14 32544 50.957543685955 0 +14 32544 50.957543685955 0 +14 32577 51.043993329888 0 +14 32577 51.043993329888 0 +14 32583 51.044153329888 0 +14 32583 51.044153329888 0 +14 32644 51.224399086505 0 +14 32644 51.224399086505 0 +14 32650 51.224559086505 0 +14 32650 51.224559086505 0 +14 32695 51.257383685955 0 +14 32695 51.257383685955 2 +14 32696 51.257383685955 2 +14 32696 51.257383685955 0 +14 32699 51.257383685955 0 +14 32699 51.257383685955 0 +14 32706 51.257543685955 0 +14 32706 51.257543685955 0 +14 32735 51.343993345414 0 +14 32735 51.343993345414 0 +14 32741 51.344153345414 0 +14 32741 51.344153345414 0 +14 32802 51.524399080627 0 +14 32802 51.524399080627 0 +14 32808 51.524559080627 0 +14 32808 51.524559080627 0 +14 32835 51.531276906599 0 +14 32835 51.531276906599 0 +14 32845 51.531436906599 0 +14 32845 51.531436906599 0 +14 32857 51.557383685955 0 +14 32857 51.557383685955 2 +14 32858 51.557383685955 2 +14 32858 51.557383685955 0 +14 32861 51.557383685955 0 +14 32861 51.557383685955 0 +14 32868 51.557543685955 0 +14 32868 51.557543685955 0 +14 32901 51.643993361304 0 +14 32901 51.643993361304 0 +14 32907 51.644153361304 0 +14 32907 51.644153361304 0 +14 32968 51.824399075287 0 +14 32968 51.824399075287 0 +14 32974 51.824559075287 0 +14 32974 51.824559075287 0 +14 33001 51.831276887561 0 +14 33001 51.831276887561 0 +14 33011 51.831436887561 0 +14 33011 51.831436887561 0 +14 33023 51.857383685955 0 +14 33023 51.857383685955 2 +14 33024 51.857383685955 2 +14 33024 51.857383685955 0 +14 33027 51.857383685955 0 +14 33027 51.857383685955 0 +14 33034 51.857543685955 0 +14 33034 51.857543685955 0 +14 33067 51.943993377578 0 +14 33067 51.943993377578 0 +14 33073 51.944153377578 0 +14 33073 51.944153377578 0 +14 33134 52.124399070526 0 +14 33134 52.124399070526 0 +14 33140 52.124559070526 0 +14 33140 52.124559070526 0 +14 33167 52.131276868507 0 +14 33167 52.131276868507 0 +14 33177 52.131436868507 0 +14 33177 52.131436868507 0 +14 33189 52.157383685955 0 +14 33189 52.157383685955 2 +14 33190 52.157383685955 2 +14 33190 52.157383685955 0 +14 33193 52.157383685955 0 +14 33193 52.157383685955 0 +14 33200 52.157543685955 0 +14 33200 52.157543685955 0 +14 33233 52.243993394241 0 +14 33233 52.243993394241 0 +14 33239 52.244153394241 0 +14 33239 52.244153394241 0 +14 33300 52.424399066364 0 +14 33300 52.424399066364 0 +14 33306 52.424559066364 0 +14 33306 52.424559066364 0 +14 33333 52.431276849398 0 +14 33333 52.431276849398 0 +14 33343 52.431436849398 0 +14 33343 52.431436849398 0 +14 33355 52.457383685955 0 +14 33355 52.457383685955 2 +14 33356 52.457383685955 2 +14 33356 52.457383685955 0 +14 33359 52.457383685955 0 +14 33359 52.457383685955 0 +14 33366 52.457543685955 0 +14 33366 52.457543685955 0 +14 33399 52.543993411231 0 +14 33399 52.543993411231 0 +14 33405 52.544153411231 0 +14 33405 52.544153411231 0 +14 33466 52.724399062755 0 +14 33466 52.724399062755 0 +14 33472 52.724559062755 0 +14 33472 52.724559062755 0 +14 33498 52.731276830378 0 +14 33498 52.731276830378 0 +14 33504 52.731436830378 0 +14 33504 52.731436830378 0 +14 33521 52.757383685955 0 +14 33521 52.757383685955 2 +14 33522 52.757383685955 2 +14 33522 52.757383685955 0 +14 33525 52.757383685955 0 +14 33525 52.757383685955 0 +14 33532 52.757543685955 0 +14 33532 52.757543685955 0 +14 33565 52.843993428579 0 +14 33565 52.843993428579 0 +14 33571 52.844153428579 0 +14 33571 52.844153428579 0 +14 33632 53.024399059705 0 +14 33632 53.024399059705 0 +14 33638 53.024559059705 0 +14 33638 53.024559059705 0 +14 33664 53.031276811401 0 +14 33664 53.031276811401 0 +14 33670 53.031436811401 0 +14 33670 53.031436811401 0 +14 33687 53.057383685955 0 +14 33687 53.057383685955 2 +14 33688 53.057383685955 2 +14 33688 53.057383685955 0 +14 33691 53.057383685955 0 +14 33691 53.057383685955 0 +14 33698 53.057543685955 0 +14 33698 53.057543685955 0 +14 33731 53.143993445991 0 +14 33731 53.143993445991 0 +14 33737 53.144153445991 0 +14 33737 53.144153445991 0 +14 33774 53.324399056666 0 +14 33774 53.324399056666 0 +14 33779 53.324559056666 0 +14 33779 53.324559056666 0 +14 33803 53.331276793082 0 +14 33803 53.331276793082 0 +14 33808 53.331436793082 0 +14 33808 53.331436793082 0 +14 33824 53.357383685955 0 +14 33824 53.357383685955 2 +14 33825 53.357383685955 2 +14 33825 53.357383685955 0 +14 33828 53.357383685955 0 +14 33828 53.357383685955 0 +14 33834 53.357543685955 0 +14 33834 53.357543685955 0 +14 33865 53.443993462692 0 +14 33865 53.443993462692 0 +14 33870 53.444153462692 0 +14 33870 53.444153462692 0 +14 33901 53.624399053363 0 +14 33901 53.624399053363 0 +14 33906 53.624559053363 0 +14 33906 53.624559053363 0 +14 33930 53.631276775636 0 +14 33930 53.631276775636 0 +14 33935 53.631436775636 0 +14 33935 53.631436775636 0 +14 33951 53.657383685955 0 +14 33951 53.657383685955 2 +14 33952 53.657383685955 2 +14 33952 53.657383685955 0 +14 33955 53.657383685955 0 +14 33955 53.657383685955 0 +14 33961 53.657543685955 0 +14 33961 53.657543685955 0 +14 33992 53.74399347871 0 +14 33992 53.74399347871 0 +14 33997 53.74415347871 0 +14 33997 53.74415347871 0 +14 34028 53.924399049701 0 +14 34028 53.924399049701 0 +14 34033 53.924559049701 0 +14 34033 53.924559049701 0 +14 34057 53.931276759068 0 +14 34057 53.931276759068 0 +14 34062 53.931436759068 0 +14 34062 53.931436759068 0 +14 34078 53.957383685955 0 +14 34078 53.957383685955 2 +14 34079 53.957383685955 2 +14 34079 53.957383685955 0 +14 34082 53.957383685955 0 +14 34082 53.957383685955 0 +14 34088 53.957543685955 0 +14 34088 53.957543685955 0 +14 34119 54.04399349386 0 +14 34119 54.04399349386 0 +14 34124 54.04415349386 0 +14 34124 54.04415349386 0 +14 34155 54.224399045616 0 +14 34155 54.224399045616 0 +14 34160 54.224559045616 0 +14 34160 54.224559045616 0 +14 34184 54.231276743362 0 +14 34184 54.231276743362 0 +14 34189 54.231436743362 0 +14 34189 54.231436743362 0 +14 34205 54.257383685955 0 +14 34205 54.257383685955 2 +14 34206 54.257383685955 2 +14 34206 54.257383685955 0 +14 34209 54.257383685955 0 +14 34209 54.257383685955 0 +14 34215 54.257543685955 0 +14 34215 54.257543685955 0 +14 34246 54.343993508088 0 +14 34246 54.343993508088 0 +14 34251 54.344153508088 0 +14 34251 54.344153508088 0 +14 34282 54.524399041209 0 +14 34282 54.524399041209 0 +14 34287 54.524559041209 0 +14 34287 54.524559041209 0 +14 34311 54.531276728362 0 +14 34311 54.531276728362 0 +14 34316 54.531436728362 0 +14 34316 54.531436728362 0 +14 34332 54.557383685955 0 +14 34332 54.557383685955 2 +14 34333 54.557383685955 2 +14 34333 54.557383685955 0 +14 34336 54.557383685955 0 +14 34336 54.557383685955 0 +14 34342 54.557543685955 0 +14 34342 54.557543685955 0 +14 34373 54.643993521993 0 +14 34373 54.643993521993 0 +14 34378 54.644153521993 0 +14 34378 54.644153521993 0 +14 34409 54.824399037501 0 +14 34409 54.824399037501 0 +14 34414 54.824559037501 0 +14 34414 54.824559037501 0 +14 34438 54.831276713317 0 +14 34438 54.831276713317 0 +14 34443 54.831436713317 0 +14 34443 54.831436713317 0 +14 34459 54.857383685955 0 +14 34459 54.857383685955 2 +14 34460 54.857383685955 2 +14 34460 54.857383685955 0 +14 34463 54.857383685955 0 +14 34463 54.857383685955 0 +14 34469 54.857543685955 0 +14 34469 54.857543685955 0 +14 34500 54.943993536727 0 +14 34500 54.943993536727 0 +14 34505 54.944153536727 0 +14 34505 54.944153536727 0 +14 34536 55.124399034691 0 +14 34536 55.124399034691 0 +14 34541 55.124559034691 0 +14 34541 55.124559034691 0 +14 34565 55.131276698742 0 +14 34565 55.131276698742 0 +14 34570 55.131436698742 0 +14 34570 55.131436698742 0 +14 34586 55.157383685955 0 +14 34586 55.157383685955 2 +14 34587 55.157383685955 2 +14 34587 55.157383685955 0 +14 34590 55.157383685955 0 +14 34590 55.157383685955 0 +14 34596 55.157543685955 0 +14 34596 55.157543685955 0 +14 34627 55.243993552196 0 +14 34627 55.243993552196 0 +14 34632 55.244153552196 0 +14 34632 55.244153552196 0 +14 34663 55.424399032731 0 +14 34663 55.424399032731 0 +14 34668 55.424559032731 0 +14 34668 55.424559032731 0 +14 34692 55.431276684798 0 +14 34692 55.431276684798 0 +14 34697 55.431436684798 0 +14 34697 55.431436684798 0 +14 34713 55.457383685955 0 +14 34713 55.457383685955 2 +14 34714 55.457383685955 2 +14 34714 55.457383685955 0 +14 34717 55.457383685955 0 +14 34717 55.457383685955 0 +14 34723 55.457543685955 0 +14 34723 55.457543685955 0 +14 34754 55.543993568263 0 +14 34754 55.543993568263 0 +14 34759 55.544153568263 0 +14 34759 55.544153568263 0 +14 34790 55.72439903167 0 +14 34790 55.72439903167 0 +14 34795 55.72455903167 0 +14 34795 55.72455903167 0 +14 34819 55.731276671503 0 +14 34819 55.731276671503 0 +14 34824 55.731436671503 0 +14 34824 55.731436671503 0 +14 34840 55.757383685955 0 +14 34840 55.757383685955 2 +14 34841 55.757383685955 2 +14 34841 55.757383685955 0 +14 34844 55.757383685955 0 +14 34844 55.757383685955 0 +14 34850 55.757543685955 0 +14 34850 55.757543685955 0 +14 34881 55.843993584895 0 +14 34881 55.843993584895 0 +14 34886 55.844153584895 0 +14 34886 55.844153584895 0 +14 34917 56.02439903159 0 +14 34917 56.02439903159 0 +14 34922 56.02455903159 0 +14 34922 56.02455903159 0 +14 34946 56.031276658808 0 +14 34946 56.031276658808 0 +14 34951 56.031436658808 0 +14 34951 56.031436658808 0 +14 34967 56.057383685955 0 +14 34967 56.057383685955 2 +14 34968 56.057383685955 2 +14 34968 56.057383685955 0 +14 34971 56.057383685955 0 +14 34971 56.057383685955 0 +14 34977 56.057543685955 0 +14 34977 56.057543685955 0 +14 35008 56.143993602134 0 +14 35008 56.143993602134 0 +14 35013 56.144153602134 0 +14 35013 56.144153602134 0 +14 35044 56.324399032473 0 +14 35044 56.324399032473 0 +14 35049 56.324559032473 0 +14 35049 56.324559032473 0 +14 35073 56.331276646771 0 +14 35073 56.331276646771 0 +14 35078 56.331436646771 0 +14 35078 56.331436646771 0 +14 35094 56.357383685955 0 +14 35094 56.357383685955 2 +14 35095 56.357383685955 2 +14 35095 56.357383685955 0 +14 35098 56.357383685955 0 +14 35098 56.357383685955 0 +14 35104 56.357543685955 0 +14 35104 56.357543685955 0 +14 35135 56.443993619822 0 +14 35135 56.443993619822 0 +14 35140 56.444153619822 0 +14 35140 56.444153619822 0 +14 35169 56.624399034306 0 +14 35169 56.624399034306 0 +14 35173 56.624559034306 0 +14 35173 56.624559034306 0 +14 35192 56.631276634911 0 +14 35192 56.631276634911 0 +14 35196 56.631436634911 0 +14 35196 56.631436634911 0 +14 35211 56.657383685955 0 +14 35211 56.657383685955 2 +14 35212 56.657383685955 2 +14 35212 56.657383685955 0 +14 35215 56.657383685955 0 +14 35215 56.657383685955 0 +14 35220 56.657543685955 0 +14 35220 56.657543685955 0 +14 35253 56.924399037177 0 +14 35253 56.924399037177 0 +14 35257 56.924559037177 0 +14 35257 56.924559037177 0 +14 35276 56.931276625815 0 +14 35276 56.931276625815 0 +14 35280 56.931436625815 0 +14 35280 56.931436625815 0 +14 35295 56.957383685955 0 +14 35295 56.957383685955 2 +14 35296 56.957383685955 2 +14 35296 56.957383685955 0 +14 35299 56.957383685955 0 +14 35299 56.957383685955 0 +14 35304 56.957543685955 0 +14 35304 56.957543685955 0 +14 35337 57.224399041135 0 +14 35337 57.224399041135 0 +14 35341 57.224559041135 0 +14 35341 57.224559041135 0 +14 35360 57.231276624504 0 +14 35360 57.231276624504 0 +14 35364 57.231436624504 0 +14 35364 57.231436624504 0 +14 35379 57.257383685955 0 +14 35379 57.257383685955 2 +14 35380 57.257383685955 2 +14 35380 57.257383685955 0 +14 35383 57.257383685955 0 +14 35383 57.257383685955 0 +14 35388 57.257543685955 0 +14 35388 57.257543685955 0 +14 35421 57.524399046156 0 +14 35421 57.524399046156 0 +14 35425 57.524559046156 0 +14 35425 57.524559046156 0 +14 35444 57.531276623773 0 +14 35444 57.531276623773 0 +14 35448 57.531436623773 0 +14 35448 57.531436623773 0 +14 35463 57.557383685955 0 +14 35463 57.557383685955 2 +14 35464 57.557383685955 2 +14 35464 57.557383685955 0 +14 35467 57.557383685955 0 +14 35467 57.557383685955 0 +14 35472 57.557543685955 0 +14 35472 57.557543685955 0 +14 35505 57.824399052067 0 +14 35505 57.824399052067 0 +14 35509 57.824559052067 0 +14 35509 57.824559052067 0 +14 35528 57.83127662344 0 +14 35528 57.83127662344 0 +14 35532 57.83143662344 0 +14 35532 57.83143662344 0 +14 35547 57.857383685955 0 +14 35547 57.857383685955 2 +14 35548 57.857383685955 2 +14 35548 57.857383685955 0 +14 35551 57.857383685955 0 +14 35551 57.857383685955 0 +14 35556 57.857543685955 0 +14 35556 57.857543685955 0 +14 35589 58.12439905849 0 +14 35589 58.12439905849 0 +14 35593 58.12455905849 0 +14 35593 58.12455905849 0 +14 35612 58.131276624201 0 +14 35612 58.131276624201 0 +14 35616 58.131436624201 0 +14 35616 58.131436624201 0 +14 35631 58.157383685955 0 +14 35631 58.157383685955 2 +14 35632 58.157383685955 2 +14 35632 58.157383685955 0 +14 35635 58.157383685955 0 +14 35635 58.157383685955 0 +14 35640 58.157543685955 0 +14 35640 58.157543685955 0 +14 35673 58.424399065464 0 +14 35673 58.424399065464 0 +14 35677 58.424559065464 0 +14 35677 58.424559065464 0 +14 35696 58.431276626037 0 +14 35696 58.431276626037 0 +14 35700 58.431436626037 0 +14 35700 58.431436626037 0 +14 35715 58.457383685955 0 +14 35715 58.457383685955 2 +14 35716 58.457383685955 2 +14 35716 58.457383685955 0 +14 35719 58.457383685955 0 +14 35719 58.457383685955 0 +14 35724 58.457543685955 0 +14 35724 58.457543685955 0 +14 35757 58.72439907295 0 +14 35757 58.72439907295 0 +14 35761 58.72455907295 0 +14 35761 58.72455907295 0 +14 35780 58.731276628991 0 +14 35780 58.731276628991 0 +14 35784 58.731436628991 0 +14 35784 58.731436628991 0 +14 35799 58.757383685955 0 +14 35799 58.757383685955 2 +14 35800 58.757383685955 2 +14 35800 58.757383685955 0 +14 35803 58.757383685955 0 +14 35803 58.757383685955 0 +14 35808 58.757543685955 0 +14 35808 58.757543685955 0 +14 35841 59.024399080905 0 +14 35841 59.024399080905 0 +14 35845 59.024559080905 0 +14 35845 59.024559080905 0 +14 35864 59.031276633114 0 +14 35864 59.031276633114 0 +14 35868 59.031436633114 0 +14 35868 59.031436633114 0 +14 35883 59.057383685955 0 +14 35883 59.057383685955 2 +14 35884 59.057383685955 2 +14 35884 59.057383685955 0 +14 35887 59.057383685955 0 +14 35887 59.057383685955 0 +14 35892 59.057543685955 0 +14 35892 59.057543685955 0 +14 35925 59.324399089353 0 +14 35925 59.324399089353 0 +14 35929 59.324559089353 0 +14 35929 59.324559089353 0 +14 35948 59.331276638423 0 +14 35948 59.331276638423 0 +14 35952 59.331436638423 0 +14 35952 59.331436638423 0 +14 35967 59.357383685955 0 +14 35967 59.357383685955 2 +14 35968 59.357383685955 2 +14 35968 59.357383685955 0 +14 35971 59.357383685955 0 +14 35971 59.357383685955 0 +14 35976 59.357543685955 0 +14 35976 59.357543685955 0 +14 36009 59.624399098247 0 +14 36009 59.624399098247 0 +14 36013 59.624559098247 0 +14 36013 59.624559098247 0 +14 36032 59.631276644886 0 +14 36032 59.631276644886 0 +14 36036 59.631436644886 0 +14 36036 59.631436644886 0 +14 36051 59.657383685955 0 +14 36051 59.657383685955 2 +14 36052 59.657383685955 2 +14 36052 59.657383685955 0 +14 36055 59.657383685955 0 +14 36055 59.657383685955 0 +14 36060 59.657543685955 0 +14 36060 59.657543685955 0 +14 36093 59.924399107553 0 +14 36093 59.924399107553 0 +14 36097 59.924559107553 0 +14 36097 59.924559107553 0 +14 36116 59.931276652523 0 +14 36116 59.931276652523 0 +14 36120 59.931436652523 0 +14 36120 59.931436652523 0 +14 36135 59.957383685955 0 +14 36135 59.957383685955 2 +14 36136 59.957383685955 2 +14 36136 59.957383685955 0 +14 36139 59.957383685955 0 +14 36139 59.957383685955 0 +14 36144 59.957543685955 0 +14 36144 59.957543685955 0 +14 36177 60.224399117246 0 +14 36177 60.224399117246 0 +14 36181 60.224559117246 0 +14 36181 60.224559117246 0 +14 36196 60.231276661221 0 +14 36196 60.231276661221 0 +14 36200 60.231436661221 0 +14 36200 60.231436661221 0 +14 36211 60.257383685955 0 +14 36211 60.257383685955 2 +14 36212 60.257383685955 2 +14 36212 60.257383685955 0 +14 36215 60.257383685955 0 +14 36215 60.257383685955 0 +14 36220 60.257543685955 0 +14 36220 60.257543685955 0 +14 36253 60.524399127334 0 +14 36253 60.524399127334 0 +14 36257 60.524559127334 0 +14 36257 60.524559127334 0 +14 36272 60.53127667062 0 +14 36272 60.53127667062 0 +14 36276 60.53143667062 0 +14 36276 60.53143667062 0 +14 36287 60.557383685955 0 +14 36287 60.557383685955 2 +14 36288 60.557383685955 2 +14 36288 60.557383685955 0 +14 36291 60.557383685955 0 +14 36291 60.557383685955 0 +14 36296 60.557543685955 0 +14 36296 60.557543685955 0 +14 36329 60.824399137773 0 +14 36329 60.824399137773 0 +14 36333 60.824559137773 0 +14 36333 60.824559137773 0 +14 36348 60.831276680584 0 +14 36348 60.831276680584 0 +14 36352 60.831436680584 0 +14 36352 60.831436680584 0 +14 36363 60.857383685955 0 +14 36363 60.857383685955 2 +14 36364 60.857383685955 2 +14 36364 60.857383685955 0 +14 36367 60.857383685955 0 +14 36367 60.857383685955 0 +14 36372 60.857543685955 0 +14 36372 60.857543685955 0 +14 36405 61.124399148508 0 +14 36405 61.124399148508 0 +14 36409 61.124559148508 0 +14 36409 61.124559148508 0 +14 36424 61.131276691084 0 +14 36424 61.131276691084 0 +14 36428 61.131436691084 0 +14 36428 61.131436691084 0 +14 36439 61.157383685955 0 +14 36439 61.157383685955 2 +14 36440 61.157383685955 2 +14 36440 61.157383685955 0 +14 36443 61.157383685955 0 +14 36443 61.157383685955 0 +14 36448 61.157543685955 0 +14 36448 61.157543685955 0 +14 36481 61.424399159611 0 +14 36481 61.424399159611 0 +14 36485 61.424559159611 0 +14 36485 61.424559159611 0 +14 36500 61.431276701991 0 +14 36500 61.431276701991 0 +14 36504 61.431436701991 0 +14 36504 61.431436701991 0 +14 36515 61.457383685955 0 +14 36515 61.457383685955 2 +14 36516 61.457383685955 2 +14 36516 61.457383685955 0 +14 36519 61.457383685955 0 +14 36519 61.457383685955 0 +14 36524 61.457543685955 0 +14 36524 61.457543685955 0 +14 36557 61.724399171016 0 +14 36557 61.724399171016 0 +14 36561 61.724559171016 0 +14 36561 61.724559171016 0 +14 36576 61.731276713345 0 +14 36576 61.731276713345 0 +14 36580 61.731436713345 0 +14 36580 61.731436713345 0 +14 36591 61.757383685955 0 +14 36591 61.757383685955 2 +14 36592 61.757383685955 2 +14 36592 61.757383685955 0 +14 36595 61.757383685955 0 +14 36595 61.757383685955 0 +14 36600 61.757543685955 0 +14 36600 61.757543685955 0 +14 36633 62.024399182109 0 +14 36633 62.024399182109 0 +14 36637 62.024559182109 0 +14 36637 62.024559182109 0 +14 36652 62.031276725245 0 +14 36652 62.031276725245 0 +14 36656 62.031436725245 0 +14 36656 62.031436725245 0 +14 36667 62.057383685955 0 +14 36667 62.057383685955 2 +14 36668 62.057383685955 2 +14 36668 62.057383685955 0 +14 36671 62.057383685955 0 +14 36671 62.057383685955 0 +14 36676 62.057543685955 0 +14 36676 62.057543685955 0 +14 36709 62.324399192148 0 +14 36709 62.324399192148 0 +14 36713 62.324559192148 0 +14 36713 62.324559192148 0 +14 36728 62.3312767377 0 +14 36728 62.3312767377 0 +14 36732 62.3314367377 0 +14 36732 62.3314367377 0 +14 36743 62.357383685955 0 +14 36743 62.357383685955 2 +14 36744 62.357383685955 2 +14 36744 62.357383685955 0 +14 36747 62.357383685955 0 +14 36747 62.357383685955 0 +14 36752 62.357543685955 0 +14 36752 62.357543685955 0 +14 36785 62.624399201089 0 +14 36785 62.624399201089 0 +14 36789 62.624559201089 0 +14 36789 62.624559201089 0 +14 36804 62.631276750535 0 +14 36804 62.631276750535 0 +14 36808 62.631436750535 0 +14 36808 62.631436750535 0 +14 36819 62.657383685955 0 +14 36819 62.657383685955 2 +14 36820 62.657383685955 2 +14 36820 62.657383685955 0 +14 36823 62.657383685955 0 +14 36823 62.657383685955 0 +14 36828 62.657543685955 0 +14 36828 62.657543685955 0 +14 36861 62.924399208912 0 +14 36861 62.924399208912 0 +14 36865 62.924559208912 0 +14 36865 62.924559208912 0 +14 36880 62.931276763684 0 +14 36880 62.931276763684 0 +14 36884 62.931436763684 0 +14 36884 62.931436763684 0 +14 36895 62.957383685955 0 +14 36895 62.957383685955 2 +14 36896 62.957383685955 2 +14 36896 62.957383685955 0 +14 36899 62.957383685955 0 +14 36899 62.957383685955 0 +14 36904 62.957543685955 0 +14 36904 62.957543685955 0 +15 22 2.1 0 +15 22 2.1 0 +15 49 2.614557181566 0 +15 49 2.614557181566 0 +15 52 2.614717181566 0 +15 52 2.614717181566 0 +15 65 2.657383685955 0 +15 65 2.657383685955 0 +15 69 2.657543685955 0 +15 69 2.657543685955 0 +15 94 2.914557182681 0 +15 94 2.914557182681 0 +15 97 2.914717182681 0 +15 97 2.914717182681 0 +15 110 2.957383685955 0 +15 110 2.957383685955 0 +15 114 2.957543685955 0 +15 114 2.957543685955 0 +15 141 3.214557183861 0 +15 141 3.214557183861 0 +15 145 3.214717183861 0 +15 145 3.214717183861 0 +15 163 3.257383685955 0 +15 163 3.257383685955 0 +15 168 3.257543685955 0 +15 168 3.257543685955 0 +15 201 3.514557185136 0 +15 201 3.514557185136 0 +15 205 3.514717185136 0 +15 205 3.514717185136 0 +15 226 3.53127690138 0 +15 226 3.53127690138 0 +15 234 3.53143690138 0 +15 234 3.53143690138 0 +15 247 3.557383685955 0 +15 247 3.557383685955 0 +15 252 3.557543685955 0 +15 252 3.557543685955 0 +15 285 3.814557186493 0 +15 285 3.814557186493 0 +15 289 3.814717186493 0 +15 289 3.814717186493 0 +15 310 3.831276901063 0 +15 310 3.831276901063 0 +15 318 3.831436901063 0 +15 318 3.831436901063 0 +15 331 3.857383685955 0 +15 331 3.857383685955 0 +15 336 3.857543685955 0 +15 336 3.857543685955 0 +15 370 4.114557187941 0 +15 370 4.114557187941 0 +15 375 4.114717187941 0 +15 375 4.114717187941 0 +15 398 4.131276900741 0 +15 398 4.131276900741 0 +15 411 4.131436900741 0 +15 411 4.131436900741 0 +15 424 4.157383685955 0 +15 424 4.157383685955 0 +15 430 4.157543685955 0 +15 430 4.157543685955 0 +15 467 4.414557189528 0 +15 467 4.414557189528 0 +15 472 4.414717189528 0 +15 472 4.414717189528 0 +15 495 4.431276900411 0 +15 495 4.431276900411 0 +15 508 4.431436900411 0 +15 508 4.431436900411 0 +15 521 4.457383685955 0 +15 521 4.457383685955 0 +15 527 4.457543685955 0 +15 527 4.457543685955 0 +15 586 4.714557191249 0 +15 586 4.714557191249 0 +15 591 4.714717191249 0 +15 591 4.714717191249 0 +15 614 4.731276900107 0 +15 614 4.731276900107 0 +15 627 4.731436900107 0 +15 627 4.731436900107 0 +15 640 4.757383685955 0 +15 640 4.757383685955 0 +15 646 4.757543685955 0 +15 646 4.757543685955 0 +15 705 5.014557193103 0 +15 705 5.014557193103 0 +15 710 5.014717193103 0 +15 710 5.014717193103 0 +15 733 5.031276899786 0 +15 733 5.031276899786 0 +15 746 5.031436899786 0 +15 746 5.031436899786 0 +15 759 5.057383685955 0 +15 759 5.057383685955 0 +15 765 5.057543685955 0 +15 765 5.057543685955 0 +15 833 5.314557195171 0 +15 833 5.314557195171 0 +15 839 5.314717195171 0 +15 839 5.314717195171 0 +15 863 5.331276899476 0 +15 863 5.331276899476 0 +15 877 5.331436899476 0 +15 877 5.331436899476 0 +15 891 5.357383685955 0 +15 891 5.357383685955 0 +15 898 5.357543685955 0 +15 898 5.357543685955 0 +15 967 5.614557197442 0 +15 967 5.614557197442 0 +15 973 5.614717197442 0 +15 973 5.614717197442 0 +15 997 5.631276899171 0 +15 997 5.631276899171 0 +15 1011 5.631436899171 0 +15 1011 5.631436899171 0 +15 1025 5.657383685955 0 +15 1025 5.657383685955 0 +15 1032 5.657543685955 0 +15 1032 5.657543685955 0 +15 1125 5.914557199962 0 +15 1125 5.914557199962 0 +15 1131 5.914717199962 0 +15 1131 5.914717199962 0 +15 1155 5.931276898866 0 +15 1155 5.931276898866 0 +15 1169 5.931436898866 0 +15 1169 5.931436898866 0 +15 1183 5.957383685955 0 +15 1183 5.957383685955 0 +15 1190 5.957543685955 0 +15 1190 5.957543685955 0 +15 1286 6.214557202762 0 +15 1286 6.214557202762 0 +15 1297 6.214717202762 0 +15 1297 6.214717202762 0 +15 1322 6.231276898564 0 +15 1322 6.231276898564 0 +15 1341 6.231436898564 0 +15 1341 6.231436898564 0 +15 1355 6.257383685955 0 +15 1355 6.257383685955 0 +15 1363 6.257543685955 0 +15 1363 6.257543685955 0 +15 1469 6.514557205852 0 +15 1469 6.514557205852 0 +15 1480 6.514717205852 0 +15 1480 6.514717205852 0 +15 1503 6.524399075657 0 +15 1503 6.524399075657 0 +15 1518 6.524559075657 0 +15 1518 6.524559075657 0 +15 1538 6.531276898265 0 +15 1538 6.531276898265 0 +15 1557 6.531436898265 0 +15 1557 6.531436898265 0 +15 1572 6.557383685955 0 +15 1572 6.557383685955 0 +15 1580 6.557543685955 0 +15 1580 6.557543685955 0 +15 1686 6.814557209291 0 +15 1686 6.814557209291 0 +15 1697 6.814717209291 0 +15 1697 6.814717209291 0 +15 1720 6.82439907586 0 +15 1720 6.82439907586 0 +15 1735 6.82455907586 0 +15 1735 6.82455907586 0 +15 1755 6.831276897959 0 +15 1755 6.831276897959 0 +15 1774 6.831436897959 0 +15 1774 6.831436897959 0 +15 1789 6.857383685955 0 +15 1789 6.857383685955 0 +15 1797 6.857543685955 0 +15 1797 6.857543685955 0 +15 1903 7.1145572131 0 +15 1903 7.1145572131 0 +15 1914 7.1147172131 0 +15 1914 7.1147172131 0 +15 1937 7.124399076049 0 +15 1937 7.124399076049 0 +15 1952 7.124559076049 0 +15 1952 7.124559076049 0 +15 1972 7.131276897653 0 +15 1972 7.131276897653 0 +15 1991 7.131436897653 0 +15 1991 7.131436897653 0 +15 2006 7.157383685955 0 +15 2006 7.157383685955 0 +15 2014 7.157543685955 0 +15 2014 7.157543685955 0 +15 2120 7.414557217271 0 +15 2120 7.414557217271 0 +15 2131 7.414717217271 0 +15 2131 7.414717217271 0 +15 2154 7.424399076251 0 +15 2154 7.424399076251 0 +15 2169 7.424559076251 0 +15 2169 7.424559076251 0 +15 2189 7.431276897348 0 +15 2189 7.431276897348 0 +15 2208 7.431436897348 0 +15 2208 7.431436897348 0 +15 2223 7.457383685955 0 +15 2223 7.457383685955 0 +15 2231 7.457543685955 0 +15 2231 7.457543685955 0 +15 2337 7.714557221838 0 +15 2337 7.714557221838 0 +15 2348 7.714717221838 0 +15 2348 7.714717221838 0 +15 2371 7.724399076456 0 +15 2371 7.724399076456 0 +15 2386 7.724559076456 0 +15 2386 7.724559076456 0 +15 2406 7.73127689705 0 +15 2406 7.73127689705 0 +15 2425 7.73143689705 0 +15 2425 7.73143689705 0 +15 2440 7.757383685955 0 +15 2440 7.757383685955 0 +15 2448 7.757543685955 0 +15 2448 7.757543685955 0 +15 2554 8.014557226859 0 +15 2554 8.014557226859 0 +15 2565 8.014717226859 0 +15 2565 8.014717226859 0 +15 2588 8.024399076668 0 +15 2588 8.024399076668 0 +15 2603 8.024559076668 0 +15 2603 8.024559076668 0 +15 2623 8.031276896762 0 +15 2623 8.031276896762 0 +15 2642 8.031436896762 0 +15 2642 8.031436896762 0 +15 2657 8.057383685955 0 +15 2657 8.057383685955 0 +15 2665 8.057543685955 0 +15 2665 8.057543685955 0 +15 2771 8.314557232422 0 +15 2771 8.314557232422 0 +15 2782 8.314717232422 0 +15 2782 8.314717232422 0 +15 2805 8.324399076881 0 +15 2805 8.324399076881 0 +15 2820 8.324559076881 0 +15 2820 8.324559076881 0 +15 2844 8.331276896481 0 +15 2844 8.331276896481 0 +15 2863 8.331436896481 0 +15 2863 8.331436896481 0 +15 2878 8.357383685955 0 +15 2878 8.357383685955 0 +15 2886 8.357543685955 0 +15 2886 8.357543685955 0 +15 2996 8.614557238496 0 +15 2996 8.614557238496 0 +15 3007 8.614717238496 0 +15 3007 8.614717238496 0 +15 3030 8.6243990771 0 +15 3030 8.6243990771 0 +15 3045 8.6245590771 0 +15 3045 8.6245590771 0 +15 3069 8.63127689619 0 +15 3069 8.63127689619 0 +15 3088 8.63143689619 0 +15 3088 8.63143689619 0 +15 3103 8.657383685955 0 +15 3103 8.657383685955 0 +15 3111 8.657543685955 0 +15 3111 8.657543685955 0 +15 3222 8.914557245124 0 +15 3222 8.914557245124 0 +15 3237 8.914717245124 0 +15 3237 8.914717245124 0 +15 3255 8.924399077324 0 +15 3255 8.924399077324 0 +15 3270 8.924559077324 0 +15 3270 8.924559077324 0 +15 3294 8.931276895893 0 +15 3294 8.931276895893 0 +15 3313 8.931436895893 0 +15 3313 8.931436895893 0 +15 3328 8.957383685955 0 +15 3328 8.957383685955 0 +15 3336 8.957543685955 0 +15 3336 8.957543685955 0 +15 3447 9.214557252325 0 +15 3447 9.214557252325 0 +15 3462 9.214717252325 0 +15 3462 9.214717252325 0 +15 3480 9.224399077547 0 +15 3480 9.224399077547 0 +15 3495 9.224559077547 0 +15 3495 9.224559077547 0 +15 3519 9.231276895621 0 +15 3519 9.231276895621 0 +15 3538 9.231436895621 0 +15 3538 9.231436895621 0 +15 3553 9.257383685955 0 +15 3553 9.257383685955 0 +15 3561 9.257543685955 0 +15 3561 9.257543685955 0 +15 3672 9.514557260085 0 +15 3672 9.514557260085 0 +15 3687 9.514717260085 0 +15 3687 9.514717260085 0 +15 3705 9.52439907778 0 +15 3705 9.52439907778 0 +15 3720 9.52455907778 0 +15 3720 9.52455907778 0 +15 3744 9.531276895347 0 +15 3744 9.531276895347 0 +15 3763 9.531436895347 0 +15 3763 9.531436895347 0 +15 3778 9.557383685955 0 +15 3778 9.557383685955 0 +15 3786 9.557543685955 0 +15 3786 9.557543685955 0 +15 3897 9.814557268307 0 +15 3897 9.814557268307 0 +15 3912 9.814717268307 0 +15 3912 9.814717268307 0 +15 3930 9.824399078019 0 +15 3930 9.824399078019 0 +15 3945 9.824559078019 0 +15 3945 9.824559078019 0 +15 3969 9.831276895075 0 +15 3969 9.831276895075 0 +15 3988 9.831436895075 0 +15 3988 9.831436895075 0 +15 4003 9.857383685955 0 +15 4003 9.857383685955 0 +15 4011 9.857543685955 0 +15 4011 9.857543685955 0 +15 4122 10.114557276848 0 +15 4122 10.114557276848 0 +15 4137 10.114717276848 0 +15 4137 10.114717276848 0 +15 4155 10.124399078264 0 +15 4155 10.124399078264 0 +15 4170 10.124559078264 0 +15 4170 10.124559078264 0 +15 4194 10.131276894808 0 +15 4194 10.131276894808 0 +15 4213 10.131436894808 0 +15 4213 10.131436894808 0 +15 4228 10.157383685955 0 +15 4228 10.157383685955 0 +15 4236 10.157543685955 0 +15 4236 10.157543685955 0 +15 4347 10.414557285658 0 +15 4347 10.414557285658 0 +15 4362 10.414717285658 0 +15 4362 10.414717285658 0 +15 4380 10.4243990785 0 +15 4380 10.4243990785 0 +15 4395 10.4245590785 0 +15 4395 10.4245590785 0 +15 4419 10.431276894532 0 +15 4419 10.431276894532 0 +15 4438 10.431436894532 0 +15 4438 10.431436894532 0 +15 4453 10.457383685955 0 +15 4453 10.457383685955 0 +15 4461 10.457543685955 0 +15 4461 10.457543685955 0 +15 4576 10.714557294754 0 +15 4576 10.714557294754 0 +15 4591 10.714717294754 0 +15 4591 10.714717294754 0 +15 4613 10.724399078727 0 +15 4613 10.724399078727 0 +15 4628 10.724559078727 0 +15 4628 10.724559078727 0 +15 4652 10.731276894259 0 +15 4652 10.731276894259 0 +15 4671 10.731436894259 0 +15 4671 10.731436894259 0 +15 4686 10.757383685955 0 +15 4686 10.757383685955 0 +15 4694 10.757543685955 0 +15 4694 10.757543685955 0 +15 4809 11.014557304135 0 +15 4809 11.014557304135 0 +15 4824 11.014717304135 0 +15 4824 11.014717304135 0 +15 4846 11.024399078987 0 +15 4846 11.024399078987 0 +15 4861 11.024559078987 0 +15 4861 11.024559078987 0 +15 4885 11.031276893999 0 +15 4885 11.031276893999 0 +15 4904 11.031436893999 0 +15 4904 11.031436893999 0 +15 4919 11.057383685955 0 +15 4919 11.057383685955 0 +15 4927 11.057543685955 0 +15 4927 11.057543685955 0 +15 5042 11.314557313736 0 +15 5042 11.314557313736 0 +15 5057 11.314717313736 0 +15 5057 11.314717313736 0 +15 5079 11.324399079221 0 +15 5079 11.324399079221 0 +15 5094 11.324559079221 0 +15 5094 11.324559079221 0 +15 5118 11.331276893733 0 +15 5118 11.331276893733 0 +15 5137 11.331436893733 0 +15 5137 11.331436893733 0 +15 5152 11.357383685955 0 +15 5152 11.357383685955 0 +15 5160 11.357543685955 0 +15 5160 11.357543685955 0 +15 5275 11.614557323591 0 +15 5275 11.614557323591 0 +15 5290 11.614717323591 0 +15 5290 11.614717323591 0 +15 5312 11.624399079471 0 +15 5312 11.624399079471 0 +15 5327 11.624559079471 0 +15 5327 11.624559079471 0 +15 5351 11.631276893479 0 +15 5351 11.631276893479 0 +15 5370 11.631436893479 0 +15 5370 11.631436893479 0 +15 5389 11.657383685955 0 +15 5389 11.657383685955 0 +15 5397 11.657543685955 0 +15 5397 11.657543685955 0 +15 5516 11.914557333695 0 +15 5516 11.914557333695 0 +15 5531 11.914717333695 0 +15 5531 11.914717333695 0 +15 5553 11.92439907973 0 +15 5553 11.92439907973 0 +15 5568 11.92455907973 0 +15 5568 11.92455907973 0 +15 5592 11.931276893219 0 +15 5592 11.931276893219 0 +15 5611 11.931436893219 0 +15 5611 11.931436893219 0 +15 5630 11.957383685955 0 +15 5630 11.957383685955 0 +15 5638 11.957543685955 0 +15 5638 11.957543685955 0 +15 5757 12.214557344013 0 +15 5757 12.214557344013 0 +15 5772 12.214717344013 0 +15 5772 12.214717344013 0 +15 5794 12.22439907998 0 +15 5794 12.22439907998 0 +15 5809 12.22455907998 0 +15 5809 12.22455907998 0 +15 5833 12.231276892968 0 +15 5833 12.231276892968 0 +15 5852 12.231436892968 0 +15 5852 12.231436892968 0 +15 5871 12.257383685955 0 +15 5871 12.257383685955 0 +15 5879 12.257543685955 0 +15 5879 12.257543685955 0 +15 5998 12.514557354529 0 +15 5998 12.514557354529 0 +15 6013 12.514717354529 0 +15 6013 12.514717354529 0 +15 6035 12.524399080256 0 +15 6035 12.524399080256 0 +15 6050 12.524559080256 0 +15 6050 12.524559080256 0 +15 6074 12.531276892721 0 +15 6074 12.531276892721 0 +15 6093 12.531436892721 0 +15 6093 12.531436892721 0 +15 6112 12.557383685955 0 +15 6112 12.557383685955 0 +15 6120 12.557543685955 0 +15 6120 12.557543685955 0 +15 6239 12.814557365221 0 +15 6239 12.814557365221 0 +15 6254 12.814717365221 0 +15 6254 12.814717365221 0 +15 6276 12.82439908052 0 +15 6276 12.82439908052 0 +15 6291 12.82455908052 0 +15 6291 12.82455908052 0 +15 6315 12.831276892469 0 +15 6315 12.831276892469 0 +15 6334 12.831436892469 0 +15 6334 12.831436892469 0 +15 6353 12.857383685955 0 +15 6353 12.857383685955 0 +15 6361 12.857543685955 0 +15 6361 12.857543685955 0 +15 6480 13.114557376122 0 +15 6480 13.114557376122 0 +15 6495 13.114717376122 0 +15 6495 13.114717376122 0 +15 6517 13.124399080797 0 +15 6517 13.124399080797 0 +15 6532 13.124559080797 0 +15 6532 13.124559080797 0 +15 6556 13.131276892214 0 +15 6556 13.131276892214 0 +15 6575 13.131436892214 0 +15 6575 13.131436892214 0 +15 6594 13.157383685955 0 +15 6594 13.157383685955 0 +15 6602 13.157543685955 0 +15 6602 13.157543685955 0 +15 6721 13.414557387173 0 +15 6721 13.414557387173 0 +15 6736 13.414717387173 0 +15 6736 13.414717387173 0 +15 6758 13.424399081079 0 +15 6758 13.424399081079 0 +15 6773 13.424559081079 0 +15 6773 13.424559081079 0 +15 6797 13.431276891978 0 +15 6797 13.431276891978 0 +15 6816 13.431436891978 0 +15 6816 13.431436891978 0 +15 6835 13.457383685955 0 +15 6835 13.457383685955 0 +15 6843 13.457543685955 0 +15 6843 13.457543685955 0 +15 6962 13.714557398373 0 +15 6962 13.714557398373 0 +15 6977 13.714717398373 0 +15 6977 13.714717398373 0 +15 6999 13.724399081347 0 +15 6999 13.724399081347 0 +15 7014 13.724559081347 0 +15 7014 13.724559081347 0 +15 7038 13.731276891728 0 +15 7038 13.731276891728 0 +15 7057 13.731436891728 0 +15 7057 13.731436891728 0 +15 7076 13.757383685955 0 +15 7076 13.757383685955 0 +15 7084 13.757543685955 0 +15 7084 13.757543685955 0 +15 7204 14.014557409766 0 +15 7204 14.014557409766 0 +15 7223 14.014717409766 0 +15 7223 14.014717409766 0 +15 7240 14.024399081623 0 +15 7240 14.024399081623 0 +15 7255 14.024559081623 0 +15 7255 14.024559081623 0 +15 7279 14.03127689148 0 +15 7279 14.03127689148 0 +15 7298 14.03143689148 0 +15 7298 14.03143689148 0 +15 7317 14.057383685955 0 +15 7317 14.057383685955 0 +15 7325 14.057543685955 0 +15 7325 14.057543685955 0 +15 7445 14.314557421278 0 +15 7445 14.314557421278 0 +15 7464 14.314717421278 0 +15 7464 14.314717421278 0 +15 7481 14.324399081908 0 +15 7481 14.324399081908 0 +15 7496 14.324559081908 0 +15 7496 14.324559081908 0 +15 7520 14.33127689125 0 +15 7520 14.33127689125 0 +15 7539 14.33143689125 0 +15 7539 14.33143689125 0 +15 7558 14.357383685955 0 +15 7558 14.357383685955 0 +15 7566 14.357543685955 0 +15 7566 14.357543685955 0 +15 7686 14.614557432907 0 +15 7686 14.614557432907 0 +15 7705 14.614717432907 0 +15 7705 14.614717432907 0 +15 7722 14.624399082205 0 +15 7722 14.624399082205 0 +15 7737 14.624559082205 0 +15 7737 14.624559082205 0 +15 7761 14.631276891011 0 +15 7761 14.631276891011 0 +15 7780 14.631436891011 0 +15 7780 14.631436891011 0 +15 7799 14.657383685955 0 +15 7799 14.657383685955 0 +15 7807 14.657543685955 0 +15 7807 14.657543685955 0 +15 7927 14.914557444663 0 +15 7927 14.914557444663 0 +15 7946 14.914717444663 0 +15 7946 14.914717444663 0 +15 7963 14.924399082499 0 +15 7963 14.924399082499 0 +15 7978 14.924559082499 0 +15 7978 14.924559082499 0 +15 8002 14.93127689078 0 +15 8002 14.93127689078 0 +15 8021 14.93143689078 0 +15 8021 14.93143689078 0 +15 8040 14.957383685955 0 +15 8040 14.957383685955 0 +15 8048 14.957543685955 0 +15 8048 14.957543685955 0 +15 8168 15.214557456539 0 +15 8168 15.214557456539 0 +15 8187 15.214717456539 0 +15 8187 15.214717456539 0 +15 8204 15.224399082794 0 +15 8204 15.224399082794 0 +15 8219 15.224559082794 0 +15 8219 15.224559082794 0 +15 8243 15.231276890537 0 +15 8243 15.231276890537 0 +15 8262 15.231436890537 0 +15 8262 15.231436890537 0 +15 8281 15.257383685955 0 +15 8281 15.257383685955 0 +15 8289 15.257543685955 0 +15 8289 15.257543685955 0 +15 8409 15.514557468564 0 +15 8409 15.514557468564 0 +15 8428 15.514717468564 0 +15 8428 15.514717468564 0 +15 8445 15.524399083099 0 +15 8445 15.524399083099 0 +15 8460 15.524559083099 0 +15 8460 15.524559083099 0 +15 8485 15.531276890317 0 +15 8485 15.531276890317 0 +15 8508 15.531436890317 0 +15 8508 15.531436890317 0 +15 8522 15.557383685955 0 +15 8522 15.557383685955 0 +15 8530 15.557543685955 0 +15 8530 15.557543685955 0 +15 8650 15.814557480657 0 +15 8650 15.814557480657 0 +15 8669 15.814717480657 0 +15 8669 15.814717480657 0 +15 8686 15.824399083408 0 +15 8686 15.824399083408 0 +15 8701 15.824559083408 0 +15 8701 15.824559083408 0 +15 8726 15.831276890112 0 +15 8726 15.831276890112 0 +15 8749 15.831436890112 0 +15 8749 15.831436890112 0 +15 8763 15.857383685955 0 +15 8763 15.857383685955 0 +15 8771 15.857543685955 0 +15 8771 15.857543685955 0 +15 8891 16.114557492863 0 +15 8891 16.114557492863 0 +15 8910 16.114717492863 0 +15 8910 16.114717492863 0 +15 8931 16.124399083716 0 +15 8931 16.124399083716 0 +15 8946 16.124559083716 0 +15 8946 16.124559083716 0 +15 8971 16.131276889879 0 +15 8971 16.131276889879 0 +15 8994 16.131436889879 0 +15 8994 16.131436889879 0 +15 9008 16.157383685955 0 +15 9008 16.157383685955 0 +15 9016 16.157543685955 0 +15 9016 16.157543685955 0 +15 9140 16.414557505188 0 +15 9140 16.414557505188 0 +15 9159 16.414717505188 0 +15 9159 16.414717505188 0 +15 9180 16.424399084041 0 +15 9180 16.424399084041 0 +15 9195 16.424559084041 0 +15 9195 16.424559084041 0 +15 9220 16.431276889657 0 +15 9220 16.431276889657 0 +15 9243 16.431436889657 0 +15 9243 16.431436889657 0 +15 9257 16.457383685955 0 +15 9257 16.457383685955 0 +15 9265 16.457543685955 0 +15 9265 16.457543685955 0 +15 9390 16.714557517603 0 +15 9390 16.714557517603 0 +15 9413 16.714717517603 0 +15 9413 16.714717517603 0 +15 9429 16.724399084357 0 +15 9429 16.724399084357 0 +15 9444 16.724559084357 0 +15 9444 16.724559084357 0 +15 9469 16.731276889444 0 +15 9469 16.731276889444 0 +15 9492 16.731436889444 0 +15 9492 16.731436889444 0 +15 9506 16.757383685955 0 +15 9506 16.757383685955 0 +15 9514 16.757543685955 0 +15 9514 16.757543685955 0 +15 9639 17.014557530081 0 +15 9639 17.014557530081 0 +15 9662 17.014717530081 0 +15 9662 17.014717530081 0 +15 9678 17.024399084668 0 +15 9678 17.024399084668 0 +15 9693 17.024559084668 0 +15 9693 17.024559084668 0 +15 9718 17.031276889227 0 +15 9718 17.031276889227 0 +15 9741 17.031436889227 0 +15 9741 17.031436889227 0 +15 9755 17.057383685955 0 +15 9755 17.057383685955 0 +15 9763 17.057543685955 0 +15 9763 17.057543685955 0 +15 9888 17.314557542674 0 +15 9888 17.314557542674 0 +15 9911 17.314717542674 0 +15 9911 17.314717542674 0 +15 9927 17.324399084984 0 +15 9927 17.324399084984 0 +15 9942 17.324559084984 0 +15 9942 17.324559084984 0 +15 9967 17.331276889013 0 +15 9967 17.331276889013 0 +15 9990 17.331436889013 0 +15 9990 17.331436889013 0 +15 10004 17.357383685955 0 +15 10004 17.357383685955 0 +15 10012 17.357543685955 0 +15 10012 17.357543685955 0 +15 10137 17.614557555309 0 +15 10137 17.614557555309 0 +15 10160 17.614717555309 0 +15 10160 17.614717555309 0 +15 10176 17.624399085289 0 +15 10176 17.624399085289 0 +15 10191 17.624559085289 0 +15 10191 17.624559085289 0 +15 10216 17.631276888786 0 +15 10216 17.631276888786 0 +15 10239 17.631436888786 0 +15 10239 17.631436888786 0 +15 10253 17.657383685955 0 +15 10253 17.657383685955 0 +15 10261 17.657543685955 0 +15 10261 17.657543685955 0 +15 10386 17.914557568022 0 +15 10386 17.914557568022 0 +15 10409 17.914717568022 0 +15 10409 17.914717568022 0 +15 10421 17.924399085606 0 +15 10421 17.924399085606 0 +15 10436 17.924559085606 0 +15 10436 17.924559085606 0 +15 10461 17.931276888582 0 +15 10461 17.931276888582 0 +15 10484 17.931436888582 0 +15 10484 17.931436888582 0 +15 10498 17.957383685955 0 +15 10498 17.957383685955 0 +15 10506 17.957543685955 0 +15 10506 17.957543685955 0 +15 10662 18.224399085935 0 +15 10662 18.224399085935 0 +15 10677 18.224559085935 0 +15 10677 18.224559085935 0 +15 10698 18.231276888386 0 +15 10698 18.231276888386 0 +15 10721 18.231436888386 0 +15 10721 18.231436888386 0 +15 10735 18.257383685955 0 +15 10735 18.257383685955 0 +15 10743 18.257543685955 0 +15 10743 18.257543685955 0 +15 10895 18.524399086265 0 +15 10895 18.524399086265 0 +15 10910 18.524559086265 0 +15 10910 18.524559086265 0 +15 10931 18.531276888177 0 +15 10931 18.531276888177 0 +15 10954 18.531436888177 0 +15 10954 18.531436888177 0 +15 10968 18.557383685955 0 +15 10968 18.557383685955 0 +15 10976 18.557543685955 0 +15 10976 18.557543685955 0 +15 11128 18.824399086608 0 +15 11128 18.824399086608 0 +15 11143 18.824559086608 0 +15 11143 18.824559086608 0 +15 11164 18.831276887981 0 +15 11164 18.831276887981 0 +15 11187 18.831436887981 0 +15 11187 18.831436887981 0 +15 11201 18.857383685955 0 +15 11201 18.857383685955 0 +15 11209 18.857543685955 0 +15 11209 18.857543685955 0 +15 11361 19.124399086967 0 +15 11361 19.124399086967 0 +15 11376 19.124559086967 0 +15 11376 19.124559086967 0 +15 11397 19.131276887793 0 +15 11397 19.131276887793 0 +15 11420 19.131436887793 0 +15 11420 19.131436887793 0 +15 11434 19.157383685955 0 +15 11434 19.157383685955 0 +15 11442 19.157543685955 0 +15 11442 19.157543685955 0 +15 11594 19.424399087317 0 +15 11594 19.424399087317 0 +15 11609 19.424559087317 0 +15 11609 19.424559087317 0 +15 11630 19.43127688759 0 +15 11630 19.43127688759 0 +15 11653 19.43143688759 0 +15 11653 19.43143688759 0 +15 11667 19.457383685955 0 +15 11667 19.457383685955 0 +15 11675 19.457543685955 0 +15 11675 19.457543685955 0 +15 11827 19.724399087464 0 +15 11827 19.724399087464 0 +15 11842 19.724559087464 0 +15 11842 19.724559087464 0 +15 11863 19.731276887029 0 +15 11863 19.731276887029 0 +15 11886 19.731436887029 0 +15 11886 19.731436887029 0 +15 11900 19.757383685955 0 +15 11900 19.757383685955 0 +15 11908 19.757543685955 0 +15 11908 19.757543685955 0 +15 12025 20.014557564104 0 +15 12025 20.014557564104 0 +15 12048 20.014717564104 0 +15 12048 20.014717564104 0 +15 12064 20.0243990873 0 +15 12064 20.0243990873 0 +15 12079 20.0245590873 0 +15 12079 20.0245590873 0 +15 12100 20.03127688588 0 +15 12100 20.03127688588 0 +15 12123 20.03143688588 0 +15 12123 20.03143688588 0 +15 12137 20.057383685955 0 +15 12137 20.057383685955 0 +15 12145 20.057543685955 0 +15 12145 20.057543685955 0 +15 12266 20.314557557995 0 +15 12266 20.314557557995 0 +15 12289 20.314717557995 0 +15 12289 20.314717557995 0 +15 12305 20.324399087241 0 +15 12305 20.324399087241 0 +15 12320 20.324559087241 0 +15 12320 20.324559087241 0 +15 12341 20.33127688455 0 +15 12341 20.33127688455 0 +15 12364 20.33143688455 0 +15 12364 20.33143688455 0 +15 12378 20.357383685955 0 +15 12378 20.357383685955 0 +15 12386 20.357543685955 0 +15 12386 20.357543685955 0 +15 12507 20.614557552362 0 +15 12507 20.614557552362 0 +15 12530 20.614717552362 0 +15 12530 20.614717552362 0 +15 12546 20.624399087446 0 +15 12546 20.624399087446 0 +15 12561 20.624559087446 0 +15 12561 20.624559087446 0 +15 12582 20.631276883138 0 +15 12582 20.631276883138 0 +15 12605 20.631436883138 0 +15 12605 20.631436883138 0 +15 12619 20.657383685955 0 +15 12619 20.657383685955 0 +15 12627 20.657543685955 0 +15 12627 20.657543685955 0 +15 12748 20.914557547102 0 +15 12748 20.914557547102 0 +15 12771 20.914717547102 0 +15 12771 20.914717547102 0 +15 12787 20.924399087797 0 +15 12787 20.924399087797 0 +15 12802 20.924559087797 0 +15 12802 20.924559087797 0 +15 12823 20.931276881619 0 +15 12823 20.931276881619 0 +15 12846 20.931436881619 0 +15 12846 20.931436881619 0 +15 12860 20.957383685955 0 +15 12860 20.957383685955 0 +15 12868 20.957543685955 0 +15 12868 20.957543685955 0 +15 12989 21.214557542284 0 +15 12989 21.214557542284 0 +15 13012 21.214717542284 0 +15 13012 21.214717542284 0 +15 13028 21.224399088467 0 +15 13028 21.224399088467 0 +15 13043 21.224559088467 0 +15 13043 21.224559088467 0 +15 13064 21.231276880094 0 +15 13064 21.231276880094 0 +15 13087 21.231436880094 0 +15 13087 21.231436880094 0 +15 13101 21.257383685955 0 +15 13101 21.257383685955 0 +15 13109 21.257543685955 0 +15 13109 21.257543685955 0 +15 13230 21.514557537844 0 +15 13230 21.514557537844 0 +15 13253 21.514717537844 0 +15 13253 21.514717537844 0 +15 13269 21.524399089457 0 +15 13269 21.524399089457 0 +15 13284 21.524559089457 0 +15 13284 21.524559089457 0 +15 13305 21.531276878505 0 +15 13305 21.531276878505 0 +15 13328 21.531436878505 0 +15 13328 21.531436878505 0 +15 13342 21.557383685955 0 +15 13342 21.557383685955 0 +15 13350 21.557543685955 0 +15 13350 21.557543685955 0 +15 13471 21.814557533746 0 +15 13471 21.814557533746 0 +15 13494 21.814717533746 0 +15 13494 21.814717533746 0 +15 13510 21.824399090731 0 +15 13510 21.824399090731 0 +15 13525 21.824559090731 0 +15 13525 21.824559090731 0 +15 13546 21.831276876822 0 +15 13546 21.831276876822 0 +15 13569 21.831436876822 0 +15 13569 21.831436876822 0 +15 13583 21.857383685955 0 +15 13583 21.857383685955 0 +15 13591 21.857543685955 0 +15 13591 21.857543685955 0 +15 13712 22.114557529963 0 +15 13712 22.114557529963 0 +15 13735 22.114717529963 0 +15 13735 22.114717529963 0 +15 13751 22.124399092291 0 +15 13751 22.124399092291 0 +15 13766 22.124559092291 0 +15 13766 22.124559092291 0 +15 13787 22.131276875046 0 +15 13787 22.131276875046 0 +15 13810 22.131436875046 0 +15 13810 22.131436875046 0 +15 13824 22.157383685955 0 +15 13824 22.157383685955 0 +15 13832 22.157543685955 0 +15 13832 22.157543685955 0 +15 13953 22.414557526479 0 +15 13953 22.414557526479 0 +15 13976 22.414717526479 0 +15 13976 22.414717526479 0 +15 13992 22.424399094215 0 +15 13992 22.424399094215 0 +15 14007 22.424559094215 0 +15 14007 22.424559094215 0 +15 14028 22.431276873268 0 +15 14028 22.431276873268 0 +15 14051 22.431436873268 0 +15 14051 22.431436873268 0 +15 14065 22.457383685955 0 +15 14065 22.457383685955 0 +15 14073 22.457543685955 0 +15 14073 22.457543685955 0 +15 14194 22.714557523315 0 +15 14194 22.714557523315 0 +15 14217 22.714717523315 0 +15 14217 22.714717523315 0 +15 14233 22.724399096641 0 +15 14233 22.724399096641 0 +15 14248 22.724559096641 0 +15 14248 22.724559096641 0 +15 14269 22.731276871582 0 +15 14269 22.731276871582 0 +15 14292 22.731436871582 0 +15 14292 22.731436871582 0 +15 14306 22.757383685955 0 +15 14306 22.757383685955 0 +15 14314 22.757543685955 0 +15 14314 22.757543685955 0 +15 14435 23.014557520464 0 +15 14435 23.014557520464 0 +15 14458 23.014717520464 0 +15 14458 23.014717520464 0 +15 14473 23.024399099585 0 +15 14473 23.024399099585 0 +15 14484 23.024559099585 0 +15 14484 23.024559099585 0 +15 14510 23.031276870013 0 +15 14510 23.031276870013 0 +15 14533 23.031436870013 0 +15 14533 23.031436870013 0 +15 14547 23.057383685955 0 +15 14547 23.057383685955 0 +15 14555 23.057543685955 0 +15 14555 23.057543685955 0 +15 14676 23.314557517914 0 +15 14676 23.314557517914 0 +15 14699 23.314717517914 0 +15 14699 23.314717517914 0 +15 14714 23.324399103103 0 +15 14714 23.324399103103 0 +15 14725 23.324559103103 0 +15 14725 23.324559103103 0 +15 14751 23.331276868542 0 +15 14751 23.331276868542 0 +15 14774 23.331436868542 0 +15 14774 23.331436868542 0 +15 14788 23.357383685955 0 +15 14788 23.357383685955 0 +15 14796 23.357543685955 0 +15 14796 23.357543685955 0 +15 14917 23.614557515636 0 +15 14917 23.614557515636 0 +15 14940 23.614717515636 0 +15 14940 23.614717515636 0 +15 14955 23.624399107238 0 +15 14955 23.624399107238 0 +15 14966 23.624559107238 0 +15 14966 23.624559107238 0 +15 14992 23.631276867299 0 +15 14992 23.631276867299 0 +15 15015 23.631436867299 0 +15 15015 23.631436867299 0 +15 15029 23.657383685955 0 +15 15029 23.657383685955 0 +15 15037 23.657543685955 0 +15 15037 23.657543685955 0 +15 15158 23.914557513622 0 +15 15158 23.914557513622 0 +15 15181 23.914717513622 0 +15 15181 23.914717513622 0 +15 15196 23.924399112031 0 +15 15196 23.924399112031 0 +15 15207 23.924559112031 0 +15 15207 23.924559112031 0 +15 15233 23.931276866321 0 +15 15233 23.931276866321 0 +15 15256 23.931436866321 0 +15 15256 23.931436866321 0 +15 15270 23.957383685955 0 +15 15270 23.957383685955 0 +15 15278 23.957543685955 0 +15 15278 23.957543685955 0 +15 15399 24.214557511852 0 +15 15399 24.214557511852 0 +15 15422 24.214717511852 0 +15 15422 24.214717511852 0 +15 15437 24.224399117426 0 +15 15437 24.224399117426 0 +15 15448 24.224559117426 0 +15 15448 24.224559117426 0 +15 15474 24.231276865622 0 +15 15474 24.231276865622 0 +15 15497 24.231436865622 0 +15 15497 24.231436865622 0 +15 15511 24.257383685955 0 +15 15511 24.257383685955 0 +15 15519 24.257543685955 0 +15 15519 24.257543685955 0 +15 15640 24.514557510265 0 +15 15640 24.514557510265 0 +15 15663 24.514717510265 0 +15 15663 24.514717510265 0 +15 15678 24.524399123441 0 +15 15678 24.524399123441 0 +15 15689 24.524559123441 0 +15 15689 24.524559123441 0 +15 15715 24.531276865164 0 +15 15715 24.531276865164 0 +15 15738 24.531436865164 0 +15 15738 24.531436865164 0 +15 15752 24.557383685955 0 +15 15752 24.557383685955 0 +15 15760 24.557543685955 0 +15 15760 24.557543685955 0 +15 15881 24.814557508895 0 +15 15881 24.814557508895 0 +15 15904 24.814717508895 0 +15 15904 24.814717508895 0 +15 15919 24.824399130236 0 +15 15919 24.824399130236 0 +15 15930 24.824559130236 0 +15 15930 24.824559130236 0 +15 15956 24.831276865034 0 +15 15956 24.831276865034 0 +15 15979 24.831436865034 0 +15 15979 24.831436865034 0 +15 15993 24.857383685955 0 +15 15993 24.857383685955 0 +15 16001 24.857543685955 0 +15 16001 24.857543685955 0 +15 16122 25.114557507733 0 +15 16122 25.114557507733 0 +15 16145 25.114717507733 0 +15 16145 25.114717507733 0 +15 16160 25.124399137961 0 +15 16160 25.124399137961 0 +15 16171 25.124559137961 0 +15 16171 25.124559137961 0 +15 16197 25.131276865348 0 +15 16197 25.131276865348 0 +15 16220 25.131436865348 0 +15 16220 25.131436865348 0 +15 16234 25.157383685955 0 +15 16234 25.157383685955 0 +15 16242 25.157543685955 0 +15 16242 25.157543685955 0 +15 16363 25.414557506754 0 +15 16363 25.414557506754 0 +15 16386 25.414717506754 0 +15 16386 25.414717506754 0 +15 16401 25.424399146492 0 +15 16401 25.424399146492 0 +15 16412 25.424559146492 0 +15 16412 25.424559146492 0 +15 16438 25.431276866065 0 +15 16438 25.431276866065 0 +15 16461 25.431436866065 0 +15 16461 25.431436866065 0 +15 16475 25.457383685955 0 +15 16475 25.457383685955 0 +15 16483 25.457543685955 0 +15 16483 25.457543685955 0 +15 16604 25.714557505914 0 +15 16604 25.714557505914 0 +15 16627 25.714717505914 0 +15 16627 25.714717505914 0 +15 16642 25.724399155863 0 +15 16642 25.724399155863 0 +15 16653 25.724559155863 0 +15 16653 25.724559155863 0 +15 16679 25.731276867271 0 +15 16679 25.731276867271 0 +15 16702 25.731436867271 0 +15 16702 25.731436867271 0 +15 16716 25.757383685955 0 +15 16716 25.757383685955 0 +15 16724 25.757543685955 0 +15 16724 25.757543685955 0 +15 16845 26.014557505277 0 +15 16845 26.014557505277 0 +15 16868 26.014717505277 0 +15 16868 26.014717505277 0 +15 16883 26.024399166196 0 +15 16883 26.024399166196 0 +15 16894 26.024559166196 0 +15 16894 26.024559166196 0 +15 16920 26.031276869882 0 +15 16920 26.031276869882 0 +15 16943 26.031436869882 0 +15 16943 26.031436869882 0 +15 16957 26.057383685955 0 +15 16957 26.057383685955 0 +15 16965 26.057543685955 0 +15 16965 26.057543685955 0 +15 17085 26.314557504782 0 +15 17085 26.314557504782 0 +15 17104 26.314717504782 0 +15 17104 26.314717504782 0 +15 17124 26.324399177308 0 +15 17124 26.324399177308 0 +15 17135 26.324559177308 0 +15 17135 26.324559177308 0 +15 17161 26.331276874069 0 +15 17161 26.331276874069 0 +15 17184 26.331436874069 0 +15 17184 26.331436874069 0 +15 17198 26.357383685955 0 +15 17198 26.357383685955 0 +15 17206 26.357543685955 0 +15 17206 26.357543685955 0 +15 17326 26.614557504308 0 +15 17326 26.614557504308 0 +15 17345 26.614717504308 0 +15 17345 26.614717504308 0 +15 17365 26.624399188753 0 +15 17365 26.624399188753 0 +15 17376 26.624559188753 0 +15 17376 26.624559188753 0 +15 17402 26.631276879416 0 +15 17402 26.631276879416 0 +15 17425 26.631436879416 0 +15 17425 26.631436879416 0 +15 17439 26.657383685955 0 +15 17439 26.657383685955 0 +15 17447 26.657543685955 0 +15 17447 26.657543685955 0 +15 17567 26.914557503709 0 +15 17567 26.914557503709 0 +15 17586 26.914717503709 0 +15 17586 26.914717503709 0 +15 17606 26.924399200042 0 +15 17606 26.924399200042 0 +15 17617 26.924559200042 0 +15 17617 26.924559200042 0 +15 17643 26.931276885432 0 +15 17643 26.931276885432 0 +15 17666 26.931436885432 0 +15 17666 26.931436885432 0 +15 17680 26.957383685955 0 +15 17680 26.957383685955 0 +15 17688 26.957543685955 0 +15 17688 26.957543685955 0 +15 17808 27.214557502764 0 +15 17808 27.214557502764 0 +15 17827 27.214717502764 0 +15 17827 27.214717502764 0 +15 17843 27.224399210302 0 +15 17843 27.224399210302 0 +15 17854 27.224559210302 0 +15 17854 27.224559210302 0 +15 17876 27.231276891257 0 +15 17876 27.231276891257 0 +15 17899 27.231436891257 0 +15 17899 27.231436891257 0 +15 17913 27.257383685955 0 +15 17913 27.257383685955 0 +15 17921 27.257543685955 0 +15 17921 27.257543685955 0 +15 18041 27.514557501474 0 +15 18041 27.514557501474 0 +15 18060 27.514717501474 0 +15 18060 27.514717501474 0 +15 18076 27.524399219548 0 +15 18076 27.524399219548 0 +15 18087 27.524559219548 0 +15 18087 27.524559219548 0 +15 18109 27.531276896461 0 +15 18109 27.531276896461 0 +15 18132 27.531436896461 0 +15 18132 27.531436896461 0 +15 18146 27.557383685955 0 +15 18146 27.557383685955 0 +15 18154 27.557543685955 0 +15 18154 27.557543685955 0 +15 18274 27.814557499885 0 +15 18274 27.814557499885 0 +15 18293 27.814717499885 0 +15 18293 27.814717499885 0 +15 18309 27.824399227674 0 +15 18309 27.824399227674 0 +15 18320 27.824559227674 0 +15 18320 27.824559227674 0 +15 18342 27.831276898141 0 +15 18342 27.831276898141 0 +15 18365 27.831436898141 0 +15 18365 27.831436898141 0 +15 18379 27.857383685955 0 +15 18379 27.857383685955 0 +15 18387 27.857543685955 0 +15 18387 27.857543685955 0 +15 18507 28.114557497525 0 +15 18507 28.114557497525 0 +15 18526 28.114717497525 0 +15 18526 28.114717497525 0 +15 18542 28.124399234561 0 +15 18542 28.124399234561 0 +15 18553 28.124559234561 0 +15 18553 28.124559234561 0 +15 18575 28.131276899693 0 +15 18575 28.131276899693 0 +15 18598 28.131436899693 0 +15 18598 28.131436899693 0 +15 18612 28.157383685955 0 +15 18612 28.157383685955 0 +15 18620 28.157543685955 0 +15 18620 28.157543685955 0 +15 18740 28.414557494637 0 +15 18740 28.414557494637 0 +15 18759 28.414717494637 0 +15 18759 28.414717494637 0 +15 18775 28.424399240801 0 +15 18775 28.424399240801 0 +15 18786 28.424559240801 0 +15 18786 28.424559240801 0 +15 18808 28.431276907999 0 +15 18808 28.431276907999 0 +15 18831 28.431436907999 0 +15 18831 28.431436907999 0 +15 18845 28.457383685955 0 +15 18845 28.457383685955 0 +15 18853 28.457543685955 0 +15 18853 28.457543685955 0 +15 18973 28.714557490176 0 +15 18973 28.714557490176 0 +15 18992 28.714717490176 0 +15 18992 28.714717490176 0 +15 19008 28.724399242627 0 +15 19008 28.724399242627 0 +15 19019 28.724559242627 0 +15 19019 28.724559242627 0 +15 19041 28.731276917209 0 +15 19041 28.731276917209 0 +15 19064 28.731436917209 0 +15 19064 28.731436917209 0 +15 19078 28.757383685955 0 +15 19078 28.757383685955 0 +15 19086 28.757543685955 0 +15 19086 28.757543685955 0 +15 19206 29.01455748367 0 +15 19206 29.01455748367 0 +15 19225 29.01471748367 0 +15 19225 29.01471748367 0 +15 19241 29.02439924345 0 +15 19241 29.02439924345 0 +15 19252 29.02455924345 0 +15 19252 29.02455924345 0 +15 19307 29.057383685955 0 +15 19307 29.057383685955 0 +15 19315 29.057543685955 0 +15 19315 29.057543685955 0 +15 19431 29.314557474199 0 +15 19431 29.314557474199 0 +15 19450 29.314717474199 0 +15 19450 29.314717474199 0 +15 19466 29.324399247583 0 +15 19466 29.324399247583 0 +15 19477 29.324559247583 0 +15 19477 29.324559247583 0 +15 19532 29.357383685955 0 +15 19532 29.357383685955 0 +15 19540 29.357543685955 0 +15 19540 29.357543685955 0 +15 19656 29.614557462553 0 +15 19656 29.614557462553 0 +15 19675 29.614717462553 0 +15 19675 29.614717462553 0 +15 19691 29.624399248962 0 +15 19691 29.624399248962 0 +15 19702 29.624559248962 0 +15 19702 29.624559248962 0 +15 19757 29.657383685955 0 +15 19757 29.657383685955 0 +15 19765 29.657543685955 0 +15 19765 29.657543685955 0 +15 19881 29.914557450409 0 +15 19881 29.914557450409 0 +15 19900 29.914717450409 0 +15 19900 29.914717450409 0 +15 19916 29.924399249496 0 +15 19916 29.924399249496 0 +15 19927 29.924559249496 0 +15 19927 29.924559249496 0 +15 19982 29.957383685955 0 +15 19982 29.957383685955 0 +15 19990 29.957543685955 0 +15 19990 29.957543685955 0 +15 20106 30.214557437824 0 +15 20106 30.214557437824 0 +15 20125 30.214717437824 0 +15 20125 30.214717437824 0 +15 20141 30.224399249493 0 +15 20141 30.224399249493 0 +15 20152 30.224559249493 0 +15 20152 30.224559249493 0 +15 20207 30.257383685955 0 +15 20207 30.257383685955 0 +15 20215 30.257543685955 0 +15 20215 30.257543685955 0 +15 20329 30.514557424894 0 +15 20329 30.514557424894 0 +15 20340 30.514717424894 0 +15 20340 30.514717424894 0 +15 20366 30.524399249491 0 +15 20366 30.524399249491 0 +15 20377 30.524559249491 0 +15 20377 30.524559249491 0 +15 20432 30.557383685955 0 +15 20432 30.557383685955 0 +15 20440 30.557543685955 0 +15 20440 30.557543685955 0 +15 20554 30.814557411739 0 +15 20554 30.814557411739 0 +15 20565 30.814717411739 0 +15 20565 30.814717411739 0 +15 20591 30.824399249488 0 +15 20591 30.824399249488 0 +15 20602 30.824559249488 0 +15 20602 30.824559249488 0 +15 20657 30.857383685955 0 +15 20657 30.857383685955 0 +15 20665 30.857543685955 0 +15 20665 30.857543685955 0 +15 20779 31.114557398299 0 +15 20779 31.114557398299 0 +15 20790 31.114717398299 0 +15 20790 31.114717398299 0 +15 20816 31.124399249483 0 +15 20816 31.124399249483 0 +15 20827 31.124559249483 0 +15 20827 31.124559249483 0 +15 20886 31.157383685955 0 +15 20886 31.157383685955 0 +15 20894 31.157543685955 0 +15 20894 31.157543685955 0 +15 21012 31.414557384666 0 +15 21012 31.414557384666 0 +15 21023 31.414717384666 0 +15 21023 31.414717384666 0 +15 21049 31.424399249476 0 +15 21049 31.424399249476 0 +15 21060 31.424559249476 0 +15 21060 31.424559249476 0 +15 21119 31.457383685955 0 +15 21119 31.457383685955 0 +15 21127 31.457543685955 0 +15 21127 31.457543685955 0 +15 21245 31.714557370995 0 +15 21245 31.714557370995 0 +15 21256 31.714717370995 0 +15 21256 31.714717370995 0 +15 21282 31.724399249469 0 +15 21282 31.724399249469 0 +15 21293 31.724559249469 0 +15 21293 31.724559249469 0 +15 21352 31.757383685955 0 +15 21352 31.757383685955 0 +15 21360 31.757543685955 0 +15 21360 31.757543685955 0 +15 21478 32.014557357699 0 +15 21478 32.014557357699 0 +15 21489 32.014717357699 0 +15 21489 32.014717357699 0 +15 21516 32.024399249465 0 +15 21516 32.024399249465 0 +15 21531 32.024559249465 0 +15 21531 32.024559249465 0 +15 21585 32.057383685955 0 +15 21585 32.057383685955 0 +15 21593 32.057543685955 0 +15 21593 32.057543685955 0 +15 21711 32.314557344745 0 +15 21711 32.314557344745 0 +15 21722 32.314717344745 0 +15 21722 32.314717344745 0 +15 21749 32.324399249464 0 +15 21749 32.324399249464 0 +15 21764 32.324559249464 0 +15 21764 32.324559249464 0 +15 21818 32.357383685955 0 +15 21818 32.357383685955 0 +15 21826 32.357543685955 0 +15 21826 32.357543685955 0 +15 21944 32.614557332223 0 +15 21944 32.614557332223 0 +15 21955 32.614717332223 0 +15 21955 32.614717332223 0 +15 21982 32.624399249467 0 +15 21982 32.624399249467 0 +15 21997 32.624559249467 0 +15 21997 32.624559249467 0 +15 22051 32.657383685955 0 +15 22051 32.657383685955 0 +15 22059 32.657543685955 0 +15 22059 32.657543685955 0 +15 22177 32.914557320155 0 +15 22177 32.914557320155 0 +15 22188 32.914717320155 0 +15 22188 32.914717320155 0 +15 22215 32.924399249474 0 +15 22215 32.924399249474 0 +15 22230 32.924559249474 0 +15 22230 32.924559249474 0 +15 22284 32.957383685955 0 +15 22284 32.957383685955 0 +15 22292 32.957543685955 0 +15 22292 32.957543685955 0 +15 22410 33.214557308546 0 +15 22410 33.214557308546 0 +15 22421 33.214717308546 0 +15 22421 33.214717308546 0 +15 22448 33.224399249483 0 +15 22448 33.224399249483 0 +15 22463 33.224559249483 0 +15 22463 33.224559249483 0 +15 22517 33.257383685955 0 +15 22517 33.257383685955 0 +15 22525 33.257543685955 0 +15 22525 33.257543685955 0 +15 22643 33.51455729748 0 +15 22643 33.51455729748 0 +15 22654 33.51471729748 0 +15 22654 33.51471729748 0 +15 22681 33.524399249496 0 +15 22681 33.524399249496 0 +15 22696 33.524559249496 0 +15 22696 33.524559249496 0 +15 22750 33.557383685955 0 +15 22750 33.557383685955 0 +15 22758 33.557543685955 0 +15 22758 33.557543685955 0 +15 22876 33.814557286954 0 +15 22876 33.814557286954 0 +15 22887 33.814717286954 0 +15 22887 33.814717286954 0 +15 22910 33.824399249513 0 +15 22910 33.824399249513 0 +15 22925 33.824559249513 0 +15 22925 33.824559249513 0 +15 22979 33.857383685955 0 +15 22979 33.857383685955 0 +15 22987 33.857543685955 0 +15 22987 33.857543685955 0 +15 23092 34.114557277044 0 +15 23092 34.114557277044 0 +15 23102 34.114717277044 0 +15 23102 34.114717277044 0 +15 23119 34.124399249532 0 +15 23119 34.124399249532 0 +15 23129 34.124559249532 0 +15 23129 34.124559249532 0 +15 23173 34.157383685955 0 +15 23173 34.157383685955 0 +15 23180 34.157543685955 0 +15 23180 34.157543685955 0 +15 23250 34.41455726774 0 +15 23250 34.41455726774 0 +15 23260 34.41471726774 0 +15 23260 34.41471726774 0 +15 23277 34.424399249554 0 +15 23277 34.424399249554 0 +15 23287 34.424559249554 0 +15 23287 34.424559249554 0 +15 23331 34.457383685955 0 +15 23331 34.457383685955 0 +15 23338 34.457543685955 0 +15 23338 34.457543685955 0 +15 23408 34.714557259086 0 +15 23408 34.714557259086 0 +15 23418 34.714717259086 0 +15 23418 34.714717259086 0 +15 23435 34.72439924958 0 +15 23435 34.72439924958 0 +15 23445 34.72455924958 0 +15 23445 34.72455924958 0 +15 23489 34.757383685955 0 +15 23489 34.757383685955 0 +15 23496 34.757543685955 0 +15 23496 34.757543685955 0 +15 23566 35.01455725114 0 +15 23566 35.01455725114 0 +15 23576 35.01471725114 0 +15 23576 35.01471725114 0 +15 23593 35.024399249609 0 +15 23593 35.024399249609 0 +15 23603 35.024559249609 0 +15 23603 35.024559249609 0 +15 23647 35.057383685955 0 +15 23647 35.057383685955 0 +15 23654 35.057543685955 0 +15 23654 35.057543685955 0 +15 23685 35.14399390924 0 +15 23685 35.14399390924 0 +15 23699 35.14415390924 0 +15 23699 35.14415390924 0 +15 23728 35.314557244297 0 +15 23728 35.314557244297 0 +15 23738 35.314717244297 0 +15 23738 35.314717244297 0 +15 23755 35.324399249632 0 +15 23755 35.324399249632 0 +15 23765 35.324559249632 0 +15 23765 35.324559249632 0 +15 23809 35.357383685955 0 +15 23809 35.357383685955 0 +15 23816 35.357543685955 0 +15 23816 35.357543685955 0 +15 23851 35.443993894903 0 +15 23851 35.443993894903 0 +15 23865 35.444153894903 0 +15 23865 35.444153894903 0 +15 23894 35.614557239399 0 +15 23894 35.614557239399 0 +15 23904 35.614717239399 0 +15 23904 35.614717239399 0 +15 23921 35.624399249628 0 +15 23921 35.624399249628 0 +15 23931 35.624559249628 0 +15 23931 35.624559249628 0 +15 23975 35.657383685955 0 +15 23975 35.657383685955 0 +15 23982 35.657543685955 0 +15 23982 35.657543685955 0 +15 24017 35.743993882114 0 +15 24017 35.743993882114 0 +15 24031 35.744153882114 0 +15 24031 35.744153882114 0 +15 24059 35.914557236445 0 +15 24059 35.914557236445 0 +15 24065 35.914717236445 0 +15 24065 35.914717236445 0 +15 24087 35.924399249595 0 +15 24087 35.924399249595 0 +15 24097 35.924559249595 0 +15 24097 35.924559249595 0 +15 24141 35.957383685955 0 +15 24141 35.957383685955 0 +15 24148 35.957543685955 0 +15 24148 35.957543685955 0 +15 24183 36.043993870912 0 +15 24183 36.043993870912 0 +15 24197 36.044153870912 0 +15 24197 36.044153870912 0 +15 24225 36.214557235432 0 +15 24225 36.214557235432 0 +15 24231 36.214717235432 0 +15 24231 36.214717235432 0 +15 24253 36.224399249544 0 +15 24253 36.224399249544 0 +15 24263 36.224559249544 0 +15 24263 36.224559249544 0 +15 24307 36.257383685955 0 +15 24307 36.257383685955 0 +15 24314 36.257543685955 0 +15 24314 36.257543685955 0 +15 24349 36.343993861309 0 +15 24349 36.343993861309 0 +15 24363 36.344153861309 0 +15 24363 36.344153861309 0 +15 24391 36.514557236231 0 +15 24391 36.514557236231 0 +15 24397 36.514717236231 0 +15 24397 36.514717236231 0 +15 24419 36.524399249492 0 +15 24419 36.524399249492 0 +15 24429 36.524559249492 0 +15 24429 36.524559249492 0 +15 24473 36.557383685955 0 +15 24473 36.557383685955 0 +15 24480 36.557543685955 0 +15 24480 36.557543685955 0 +15 24515 36.643993853328 0 +15 24515 36.643993853328 0 +15 24529 36.644153853328 0 +15 24529 36.644153853328 0 +15 24558 36.814557238201 0 +15 24558 36.814557238201 0 +15 24568 36.814717238201 0 +15 24568 36.814717238201 0 +15 24585 36.824399249465 0 +15 24585 36.824399249465 0 +15 24595 36.824559249465 0 +15 24595 36.824559249465 0 +15 24639 36.857383685955 0 +15 24639 36.857383685955 0 +15 24646 36.857543685955 0 +15 24646 36.857543685955 0 +15 24681 36.943993845573 0 +15 24681 36.943993845573 0 +15 24695 36.944153845573 0 +15 24695 36.944153845573 0 +15 24724 37.114557240113 0 +15 24724 37.114557240113 0 +15 24734 37.114717240113 0 +15 24734 37.114717240113 0 +15 24751 37.124399249471 0 +15 24751 37.124399249471 0 +15 24761 37.124559249471 0 +15 24761 37.124559249471 0 +15 24805 37.157383685955 0 +15 24805 37.157383685955 0 +15 24812 37.157543685955 0 +15 24812 37.157543685955 0 +15 24846 37.243993835004 0 +15 24846 37.243993835004 0 +15 24856 37.244153835004 0 +15 24856 37.244153835004 0 +15 24890 37.414557242061 0 +15 24890 37.414557242061 0 +15 24900 37.414717242061 0 +15 24900 37.414717242061 0 +15 24917 37.424399249494 0 +15 24917 37.424399249494 0 +15 24927 37.424559249494 0 +15 24927 37.424559249494 0 +15 24971 37.457383685955 0 +15 24971 37.457383685955 0 +15 24978 37.457543685955 0 +15 24978 37.457543685955 0 +15 25012 37.543993814684 0 +15 25012 37.543993814684 0 +15 25022 37.544153814684 0 +15 25022 37.544153814684 0 +15 25056 37.714557244204 0 +15 25056 37.714557244204 0 +15 25066 37.714717244204 0 +15 25066 37.714717244204 0 +15 25083 37.724399249526 0 +15 25083 37.724399249526 0 +15 25093 37.724559249526 0 +15 25093 37.724559249526 0 +15 25137 37.757383685955 0 +15 25137 37.757383685955 0 +15 25144 37.757543685955 0 +15 25144 37.757543685955 0 +15 25178 37.843993790864 0 +15 25178 37.843993790864 0 +15 25188 37.844153790864 0 +15 25188 37.844153790864 0 +15 25222 38.014557246626 0 +15 25222 38.014557246626 0 +15 25232 38.014717246626 0 +15 25232 38.014717246626 0 +15 25249 38.024399249562 0 +15 25249 38.024399249562 0 +15 25259 38.024559249562 0 +15 25259 38.024559249562 0 +15 25303 38.057383685955 0 +15 25303 38.057383685955 0 +15 25310 38.057543685955 0 +15 25310 38.057543685955 0 +15 25344 38.143993766481 0 +15 25344 38.143993766481 0 +15 25354 38.144153766481 0 +15 25354 38.144153766481 0 +15 25388 38.314557249321 0 +15 25388 38.314557249321 0 +15 25398 38.314717249321 0 +15 25398 38.314717249321 0 +15 25415 38.324399249594 0 +15 25415 38.324399249594 0 +15 25425 38.324559249594 0 +15 25425 38.324559249594 0 +15 25469 38.357383685955 0 +15 25469 38.357383685955 0 +15 25476 38.357543685955 0 +15 25476 38.357543685955 0 +15 25510 38.443993741575 0 +15 25510 38.443993741575 0 +15 25520 38.444153741575 0 +15 25520 38.444153741575 0 +15 25554 38.614557252296 0 +15 25554 38.614557252296 0 +15 25564 38.614717252296 0 +15 25564 38.614717252296 0 +15 25581 38.624399249618 0 +15 25581 38.624399249618 0 +15 25591 38.624559249618 0 +15 25591 38.624559249618 0 +15 25635 38.657383685955 0 +15 25635 38.657383685955 0 +15 25642 38.657543685955 0 +15 25642 38.657543685955 0 +15 25676 38.743993716074 0 +15 25676 38.743993716074 0 +15 25686 38.744153716074 0 +15 25686 38.744153716074 0 +15 25720 38.914557255584 0 +15 25720 38.914557255584 0 +15 25730 38.914717255584 0 +15 25730 38.914717255584 0 +15 25747 38.924399249631 0 +15 25747 38.924399249631 0 +15 25757 38.924559249631 0 +15 25757 38.924559249631 0 +15 25801 38.957383685955 0 +15 25801 38.957383685955 0 +15 25808 38.957543685955 0 +15 25808 38.957543685955 0 +15 25842 39.043993690005 0 +15 25842 39.043993690005 0 +15 25852 39.044153690005 0 +15 25852 39.044153690005 0 +15 25886 39.214557259182 0 +15 25886 39.214557259182 0 +15 25896 39.214717259182 0 +15 25896 39.214717259182 0 +15 25913 39.224399249629 0 +15 25913 39.224399249629 0 +15 25923 39.224559249629 0 +15 25923 39.224559249629 0 +15 25967 39.257383685955 0 +15 25967 39.257383685955 0 +15 25974 39.257543685955 0 +15 25974 39.257543685955 0 +15 26008 39.343993663209 0 +15 26008 39.343993663209 0 +15 26018 39.344153663209 0 +15 26018 39.344153663209 0 +15 26052 39.514557263099 0 +15 26052 39.514557263099 0 +15 26062 39.514717263099 0 +15 26062 39.514717263099 0 +15 26079 39.524399249613 0 +15 26079 39.524399249613 0 +15 26089 39.524559249613 0 +15 26089 39.524559249613 0 +15 26133 39.557383685955 0 +15 26133 39.557383685955 0 +15 26140 39.557543685955 0 +15 26140 39.557543685955 0 +15 26174 39.643993635768 0 +15 26174 39.643993635768 0 +15 26184 39.644153635768 0 +15 26184 39.644153635768 0 +15 26218 39.81455726744 0 +15 26218 39.81455726744 0 +15 26228 39.81471726744 0 +15 26228 39.81471726744 0 +15 26245 39.824399249586 0 +15 26245 39.824399249586 0 +15 26255 39.824559249586 0 +15 26255 39.824559249586 0 +15 26299 39.857383685955 0 +15 26299 39.857383685955 0 +15 26306 39.857543685955 0 +15 26306 39.857543685955 0 +15 26340 39.943993607814 0 +15 26340 39.943993607814 0 +15 26350 39.944153607814 0 +15 26350 39.944153607814 0 +15 26384 40.114557272479 0 +15 26384 40.114557272479 0 +15 26394 40.114717272479 0 +15 26394 40.114717272479 0 +15 26411 40.124399249559 0 +15 26411 40.124399249559 0 +15 26421 40.124559249559 0 +15 26421 40.124559249559 0 +15 26465 40.157383685955 0 +15 26465 40.157383685955 0 +15 26472 40.157543685955 0 +15 26472 40.157543685955 0 +15 26505 40.243993579799 0 +15 26505 40.243993579799 0 +15 26511 40.244153579799 0 +15 26511 40.244153579799 0 +15 26550 40.414557278253 0 +15 26550 40.414557278253 0 +15 26560 40.414717278253 0 +15 26560 40.414717278253 0 +15 26577 40.424399249535 0 +15 26577 40.424399249535 0 +15 26587 40.424559249535 0 +15 26587 40.424559249535 0 +15 26631 40.457383685955 0 +15 26631 40.457383685955 0 +15 26638 40.457543685955 0 +15 26638 40.457543685955 0 +15 26671 40.543993551811 0 +15 26671 40.543993551811 0 +15 26677 40.544153551811 0 +15 26677 40.544153551811 0 +15 26716 40.714557284831 0 +15 26716 40.714557284831 0 +15 26726 40.714717284831 0 +15 26726 40.714717284831 0 +15 26743 40.724399249515 0 +15 26743 40.724399249515 0 +15 26753 40.724559249515 0 +15 26753 40.724559249515 0 +15 26801 40.757383685955 0 +15 26801 40.757383685955 0 +15 26808 40.757543685955 0 +15 26808 40.757543685955 0 +15 26841 40.843993523891 0 +15 26841 40.843993523891 0 +15 26847 40.844153523891 0 +15 26847 40.844153523891 0 +15 26890 41.014557292056 0 +15 26890 41.014557292056 0 +15 26900 41.014717292056 0 +15 26900 41.014717292056 0 +15 26917 41.024399249498 0 +15 26917 41.024399249498 0 +15 26927 41.024559249498 0 +15 26927 41.024559249498 0 +15 26975 41.057383685955 0 +15 26975 41.057383685955 0 +15 26982 41.057543685955 0 +15 26982 41.057543685955 0 +15 27015 41.143993495882 0 +15 27015 41.143993495882 0 +15 27021 41.144153495882 0 +15 27021 41.144153495882 0 +15 27064 41.314557299998 0 +15 27064 41.314557299998 0 +15 27074 41.314717299998 0 +15 27074 41.314717299998 0 +15 27091 41.324399249485 0 +15 27091 41.324399249485 0 +15 27101 41.324559249485 0 +15 27101 41.324559249485 0 +15 27149 41.357383685955 0 +15 27149 41.357383685955 0 +15 27156 41.357543685955 0 +15 27156 41.357543685955 0 +15 27189 41.44399346791 0 +15 27189 41.44399346791 0 +15 27195 41.44415346791 0 +15 27195 41.44415346791 0 +15 27238 41.614557308543 0 +15 27238 41.614557308543 0 +15 27248 41.614717308543 0 +15 27248 41.614717308543 0 +15 27265 41.624399249475 0 +15 27265 41.624399249475 0 +15 27275 41.624559249475 0 +15 27275 41.624559249475 0 +15 27323 41.657383685955 0 +15 27323 41.657383685955 0 +15 27330 41.657543685955 0 +15 27330 41.657543685955 0 +15 27363 41.743993439965 0 +15 27363 41.743993439965 0 +15 27369 41.744153439965 0 +15 27369 41.744153439965 0 +15 27412 41.914557317732 0 +15 27412 41.914557317732 0 +15 27422 41.914717317732 0 +15 27422 41.914717317732 0 +15 27439 41.924399249468 0 +15 27439 41.924399249468 0 +15 27449 41.924559249468 0 +15 27449 41.924559249468 0 +15 27497 41.957383685955 0 +15 27497 41.957383685955 0 +15 27504 41.957543685955 0 +15 27504 41.957543685955 0 +15 27537 42.043993412971 0 +15 27537 42.043993412971 0 +15 27543 42.044153412971 0 +15 27543 42.044153412971 0 +15 27586 42.214557327498 0 +15 27586 42.214557327498 0 +15 27596 42.214717327498 0 +15 27596 42.214717327498 0 +15 27613 42.224399249465 0 +15 27613 42.224399249465 0 +15 27623 42.224559249465 0 +15 27623 42.224559249465 0 +15 27671 42.257383685955 0 +15 27671 42.257383685955 0 +15 27678 42.257543685955 0 +15 27678 42.257543685955 0 +15 27711 42.34399338739 0 +15 27711 42.34399338739 0 +15 27717 42.34415338739 0 +15 27717 42.34415338739 0 +15 27760 42.514557337799 0 +15 27760 42.514557337799 0 +15 27770 42.514717337799 0 +15 27770 42.514717337799 0 +15 27787 42.524399249465 0 +15 27787 42.524399249465 0 +15 27797 42.524559249465 0 +15 27797 42.524559249465 0 +15 27845 42.557383685955 0 +15 27845 42.557383685955 0 +15 27852 42.557543685955 0 +15 27852 42.557543685955 0 +15 27885 42.643993363107 0 +15 27885 42.643993363107 0 +15 27891 42.644153363107 0 +15 27891 42.644153363107 0 +15 27934 42.814557348649 0 +15 27934 42.814557348649 0 +15 27944 42.814717348649 0 +15 27944 42.814717348649 0 +15 27961 42.824399249468 0 +15 27961 42.824399249468 0 +15 27971 42.824559249468 0 +15 27971 42.824559249468 0 +15 28019 42.857383685955 0 +15 28019 42.857383685955 0 +15 28026 42.857543685955 0 +15 28026 42.857543685955 0 +15 28059 42.943993340208 0 +15 28059 42.943993340208 0 +15 28065 42.944153340208 0 +15 28065 42.944153340208 0 +15 28107 43.114557359966 0 +15 28107 43.114557359966 0 +15 28113 43.114717359966 0 +15 28113 43.114717359966 0 +15 28135 43.124399249475 0 +15 28135 43.124399249475 0 +15 28145 43.124559249475 0 +15 28145 43.124559249475 0 +15 28193 43.157383685955 0 +15 28193 43.157383685955 0 +15 28200 43.157543685955 0 +15 28200 43.157543685955 0 +15 28233 43.243993318662 0 +15 28233 43.243993318662 0 +15 28239 43.244153318662 0 +15 28239 43.244153318662 0 +15 28281 43.414557371721 0 +15 28281 43.414557371721 0 +15 28287 43.414717371721 0 +15 28287 43.414717371721 0 +15 28309 43.424399249485 0 +15 28309 43.424399249485 0 +15 28319 43.424559249485 0 +15 28319 43.424559249485 0 +15 28367 43.457383685955 0 +15 28367 43.457383685955 0 +15 28374 43.457543685955 0 +15 28374 43.457543685955 0 +15 28407 43.543993298467 0 +15 28407 43.543993298467 0 +15 28413 43.544153298467 0 +15 28413 43.544153298467 0 +15 28455 43.71455738363 0 +15 28455 43.71455738363 0 +15 28461 43.71471738363 0 +15 28461 43.71471738363 0 +15 28483 43.724399249498 0 +15 28483 43.724399249498 0 +15 28493 43.724559249498 0 +15 28493 43.724559249498 0 +15 28541 43.757383685955 0 +15 28541 43.757383685955 0 +15 28548 43.757543685955 0 +15 28548 43.757543685955 0 +15 28581 43.843993279612 0 +15 28581 43.843993279612 0 +15 28587 43.844153279612 0 +15 28587 43.844153279612 0 +15 28629 44.014557394666 0 +15 28629 44.014557394666 0 +15 28635 44.014717394666 0 +15 28635 44.014717394666 0 +15 28657 44.024399249515 0 +15 28657 44.024399249515 0 +15 28667 44.024559249515 0 +15 28667 44.024559249515 0 +15 28715 44.057383685955 0 +15 28715 44.057383685955 0 +15 28722 44.057543685955 0 +15 28722 44.057543685955 0 +15 28755 44.143993262339 0 +15 28755 44.143993262339 0 +15 28761 44.144153262339 0 +15 28761 44.144153262339 0 +15 28803 44.314557404849 0 +15 28803 44.314557404849 0 +15 28809 44.314717404849 0 +15 28809 44.314717404849 0 +15 28832 44.324399249523 0 +15 28832 44.324399249523 0 +15 28846 44.324559249523 0 +15 28846 44.324559249523 0 +15 28885 44.357383685955 0 +15 28885 44.357383685955 0 +15 28892 44.357543685955 0 +15 28892 44.357543685955 0 +15 28925 44.443993247573 0 +15 28925 44.443993247573 0 +15 28931 44.444153247573 0 +15 28931 44.444153247573 0 +15 28969 44.614557414115 0 +15 28969 44.614557414115 0 +15 28975 44.614717414115 0 +15 28975 44.614717414115 0 +15 28998 44.624399249512 0 +15 28998 44.624399249512 0 +15 29012 44.624559249512 0 +15 29012 44.624559249512 0 +15 29051 44.657383685955 0 +15 29051 44.657383685955 0 +15 29058 44.657543685955 0 +15 29058 44.657543685955 0 +15 29091 44.743993235516 0 +15 29091 44.743993235516 0 +15 29097 44.744153235516 0 +15 29097 44.744153235516 0 +15 29135 44.914557422365 0 +15 29135 44.914557422365 0 +15 29141 44.914717422365 0 +15 29141 44.914717422365 0 +15 29164 44.92439924949 0 +15 29164 44.92439924949 0 +15 29178 44.92455924949 0 +15 29178 44.92455924949 0 +15 29217 44.957383685955 0 +15 29217 44.957383685955 0 +15 29224 44.957543685955 0 +15 29224 44.957543685955 0 +15 29257 45.04399322614 0 +15 29257 45.04399322614 0 +15 29263 45.04415322614 0 +15 29263 45.04415322614 0 +15 29301 45.214557429517 0 +15 29301 45.214557429517 0 +15 29307 45.214717429517 0 +15 29307 45.214717429517 0 +15 29330 45.224399249469 0 +15 29330 45.224399249469 0 +15 29344 45.224559249469 0 +15 29344 45.224559249469 0 +15 29383 45.257383685955 0 +15 29383 45.257383685955 0 +15 29390 45.257543685955 0 +15 29390 45.257543685955 0 +15 29423 45.343993218642 0 +15 29423 45.343993218642 0 +15 29429 45.344153218642 0 +15 29429 45.344153218642 0 +15 29467 45.514557435742 0 +15 29467 45.514557435742 0 +15 29473 45.514717435742 0 +15 29473 45.514717435742 0 +15 29496 45.524399249468 0 +15 29496 45.524399249468 0 +15 29510 45.524559249468 0 +15 29510 45.524559249468 0 +15 29549 45.557383685955 0 +15 29549 45.557383685955 0 +15 29556 45.557543685955 0 +15 29556 45.557543685955 0 +15 29589 45.643993212262 0 +15 29589 45.643993212262 0 +15 29595 45.644153212262 0 +15 29595 45.644153212262 0 +15 29633 45.814557442585 0 +15 29633 45.814557442585 0 +15 29639 45.814717442585 0 +15 29639 45.814717442585 0 +15 29662 45.82439924948 0 +15 29662 45.82439924948 0 +15 29676 45.82455924948 0 +15 29676 45.82455924948 0 +15 29715 45.857383685955 0 +15 29715 45.857383685955 0 +15 29722 45.857543685955 0 +15 29722 45.857543685955 0 +15 29755 45.943993205371 0 +15 29755 45.943993205371 0 +15 29761 45.944153205371 0 +15 29761 45.944153205371 0 +15 29799 46.114557450187 0 +15 29799 46.114557450187 0 +15 29805 46.114717450187 0 +15 29805 46.114717450187 0 +15 29828 46.124399246618 0 +15 29828 46.124399246618 0 +15 29842 46.124559246618 0 +15 29842 46.124559246618 0 +15 29881 46.157383685955 0 +15 29881 46.157383685955 0 +15 29888 46.157543685955 0 +15 29888 46.157543685955 0 +15 29921 46.24399319776 0 +15 29921 46.24399319776 0 +15 29927 46.24415319776 0 +15 29927 46.24415319776 0 +15 29965 46.414557458063 0 +15 29965 46.414557458063 0 +15 29971 46.414717458063 0 +15 29971 46.414717458063 0 +15 29994 46.424399237708 0 +15 29994 46.424399237708 0 +15 30008 46.424559237708 0 +15 30008 46.424559237708 0 +15 30047 46.457383685955 0 +15 30047 46.457383685955 0 +15 30054 46.457543685955 0 +15 30054 46.457543685955 0 +15 30087 46.54399318918 0 +15 30087 46.54399318918 0 +15 30093 46.54415318918 0 +15 30093 46.54415318918 0 +15 30131 46.714557464072 0 +15 30131 46.714557464072 0 +15 30137 46.714717464072 0 +15 30137 46.714717464072 0 +15 30160 46.724399226197 0 +15 30160 46.724399226197 0 +15 30174 46.724559226197 0 +15 30174 46.724559226197 0 +15 30213 46.757383685955 0 +15 30213 46.757383685955 0 +15 30220 46.757543685955 0 +15 30220 46.757543685955 0 +15 30253 46.843993179661 0 +15 30253 46.843993179661 0 +15 30259 46.844153179661 0 +15 30259 46.844153179661 0 +15 30297 47.014557466477 0 +15 30297 47.014557466477 0 +15 30303 47.014717466477 0 +15 30303 47.014717466477 0 +15 30326 47.02439921469 0 +15 30326 47.02439921469 0 +15 30340 47.02455921469 0 +15 30340 47.02455921469 0 +15 30379 47.057383685955 0 +15 30379 47.057383685955 0 +15 30386 47.057543685955 0 +15 30386 47.057543685955 0 +15 30419 47.143993169499 0 +15 30419 47.143993169499 0 +15 30425 47.144153169499 0 +15 30425 47.144153169499 0 +15 30463 47.314557467583 0 +15 30463 47.314557467583 0 +15 30469 47.314717467583 0 +15 30469 47.314717467583 0 +15 30492 47.324399203344 0 +15 30492 47.324399203344 0 +15 30506 47.324559203344 0 +15 30506 47.324559203344 0 +15 30545 47.357383685955 0 +15 30545 47.357383685955 0 +15 30552 47.357543685955 0 +15 30552 47.357543685955 0 +15 30585 47.443993161554 0 +15 30585 47.443993161554 0 +15 30591 47.444153161554 0 +15 30591 47.444153161554 0 +15 30629 47.614557469418 0 +15 30629 47.614557469418 0 +15 30635 47.614717469418 0 +15 30635 47.614717469418 0 +15 30658 47.62439919222 0 +15 30658 47.62439919222 0 +15 30672 47.62455919222 0 +15 30672 47.62455919222 0 +15 30711 47.657383685955 0 +15 30711 47.657383685955 0 +15 30718 47.657543685955 0 +15 30718 47.657543685955 0 +15 30751 47.743993166005 0 +15 30751 47.743993166005 0 +15 30757 47.744153166005 0 +15 30757 47.744153166005 0 +15 30795 47.914557472096 0 +15 30795 47.914557472096 0 +15 30801 47.914717472096 0 +15 30801 47.914717472096 0 +15 30824 47.924399181338 0 +15 30824 47.924399181338 0 +15 30838 47.924559181338 0 +15 30838 47.924559181338 0 +15 30877 47.957383685955 0 +15 30877 47.957383685955 0 +15 30884 47.957543685955 0 +15 30884 47.957543685955 0 +15 30917 48.043993178928 0 +15 30917 48.043993178928 0 +15 30923 48.044153178928 0 +15 30923 48.044153178928 0 +15 30961 48.214557475721 0 +15 30961 48.214557475721 0 +15 30967 48.214717475721 0 +15 30967 48.214717475721 0 +15 30989 48.224399170754 0 +15 30989 48.224399170754 0 +15 30999 48.224559170754 0 +15 30999 48.224559170754 0 +15 31043 48.257383685955 0 +15 31043 48.257383685955 0 +15 31050 48.257543685955 0 +15 31050 48.257543685955 0 +15 31083 48.343993193323 0 +15 31083 48.343993193323 0 +15 31089 48.344153193323 0 +15 31089 48.344153193323 0 +15 31128 48.514557480378 0 +15 31128 48.514557480378 0 +15 31138 48.514717480378 0 +15 31138 48.514717480378 0 +15 31155 48.524399160478 0 +15 31155 48.524399160478 0 +15 31165 48.524559160478 0 +15 31165 48.524559160478 0 +15 31209 48.557383685955 0 +15 31209 48.557383685955 0 +15 31216 48.557543685955 0 +15 31216 48.557543685955 0 +15 31249 48.643993209351 0 +15 31249 48.643993209351 0 +15 31255 48.644153209351 0 +15 31255 48.644153209351 0 +15 31294 48.8145574862 0 +15 31294 48.8145574862 0 +15 31304 48.8147174862 0 +15 31304 48.8147174862 0 +15 31321 48.824399150571 0 +15 31321 48.824399150571 0 +15 31331 48.824559150571 0 +15 31331 48.824559150571 0 +15 31375 48.857383685955 0 +15 31375 48.857383685955 0 +15 31382 48.857543685955 0 +15 31382 48.857543685955 0 +15 31415 48.943993225428 0 +15 31415 48.943993225428 0 +15 31421 48.944153225428 0 +15 31421 48.944153225428 0 +15 31460 49.11455749318 0 +15 31460 49.11455749318 0 +15 31470 49.11471749318 0 +15 31470 49.11471749318 0 +15 31487 49.124399141102 0 +15 31487 49.124399141102 0 +15 31497 49.124559141102 0 +15 31497 49.124559141102 0 +15 31541 49.157383685955 0 +15 31541 49.157383685955 0 +15 31548 49.157543685955 0 +15 31548 49.157543685955 0 +15 31581 49.243993241593 0 +15 31581 49.243993241593 0 +15 31587 49.244153241593 0 +15 31587 49.244153241593 0 +15 31626 49.4145575013 0 +15 31626 49.4145575013 0 +15 31636 49.4147175013 0 +15 31636 49.4147175013 0 +15 31653 49.424399131999 0 +15 31653 49.424399131999 0 +15 31663 49.424559131999 0 +15 31663 49.424559131999 0 +15 31707 49.457383685955 0 +15 31707 49.457383685955 0 +15 31714 49.457543685955 0 +15 31714 49.457543685955 0 +15 31747 49.543993256365 0 +15 31747 49.543993256365 0 +15 31753 49.544153256365 0 +15 31753 49.544153256365 0 +15 31792 49.714557510532 0 +15 31792 49.714557510532 0 +15 31802 49.714717510532 0 +15 31802 49.714717510532 0 +15 31818 49.72439912329 0 +15 31818 49.72439912329 0 +15 31824 49.72455912329 0 +15 31824 49.72455912329 0 +15 31873 49.757383685955 0 +15 31873 49.757383685955 0 +15 31880 49.757543685955 0 +15 31880 49.757543685955 0 +15 31913 49.843993271223 0 +15 31913 49.843993271223 0 +15 31919 49.844153271223 0 +15 31919 49.844153271223 0 +15 31958 50.014557520716 0 +15 31958 50.014557520716 0 +15 31968 50.014717520716 0 +15 31968 50.014717520716 0 +15 31984 50.024399114997 0 +15 31984 50.024399114997 0 +15 31990 50.024559114997 0 +15 31990 50.024559114997 0 +15 32039 50.057383685955 0 +15 32039 50.057383685955 0 +15 32046 50.057543685955 0 +15 32046 50.057543685955 0 +15 32079 50.143993285388 0 +15 32079 50.143993285388 0 +15 32085 50.144153285388 0 +15 32085 50.144153285388 0 +15 32124 50.314557531836 0 +15 32124 50.314557531836 0 +15 32134 50.314717531836 0 +15 32134 50.314717531836 0 +15 32150 50.324399107181 0 +15 32150 50.324399107181 0 +15 32156 50.324559107181 0 +15 32156 50.324559107181 0 +15 32205 50.357383685955 0 +15 32205 50.357383685955 0 +15 32212 50.357543685955 0 +15 32212 50.357543685955 0 +15 32245 50.443993299881 0 +15 32245 50.443993299881 0 +15 32251 50.444153299881 0 +15 32251 50.444153299881 0 +15 32290 50.614557543841 0 +15 32290 50.614557543841 0 +15 32300 50.614717543841 0 +15 32300 50.614717543841 0 +15 32316 50.6243990998 0 +15 32316 50.6243990998 0 +15 32322 50.6245590998 0 +15 32322 50.6245590998 0 +15 32371 50.657383685955 0 +15 32371 50.657383685955 0 +15 32378 50.657543685955 0 +15 32378 50.657543685955 0 +15 32411 50.743993314719 0 +15 32411 50.743993314719 0 +15 32417 50.744153314719 0 +15 32417 50.744153314719 0 +15 32456 50.914557556641 0 +15 32456 50.914557556641 0 +15 32466 50.914717556641 0 +15 32466 50.914717556641 0 +15 32482 50.924399092883 0 +15 32482 50.924399092883 0 +15 32488 50.924559092883 0 +15 32488 50.924559092883 0 +15 32537 50.957383685955 0 +15 32537 50.957383685955 0 +15 32544 50.957543685955 0 +15 32544 50.957543685955 0 +15 32577 51.043993329888 0 +15 32577 51.043993329888 0 +15 32583 51.044153329888 0 +15 32583 51.044153329888 0 +15 32644 51.224399086505 0 +15 32644 51.224399086505 0 +15 32650 51.224559086505 0 +15 32650 51.224559086505 0 +15 32699 51.257383685955 0 +15 32699 51.257383685955 0 +15 32706 51.257543685955 0 +15 32706 51.257543685955 0 +15 32735 51.343993345414 0 +15 32735 51.343993345414 0 +15 32741 51.344153345414 0 +15 32741 51.344153345414 0 +15 32802 51.524399080627 0 +15 32802 51.524399080627 0 +15 32808 51.524559080627 0 +15 32808 51.524559080627 0 +15 32835 51.531276906599 0 +15 32835 51.531276906599 0 +15 32845 51.531436906599 0 +15 32845 51.531436906599 0 +15 32861 51.557383685955 0 +15 32861 51.557383685955 0 +15 32868 51.557543685955 0 +15 32868 51.557543685955 0 +15 32901 51.643993361304 0 +15 32901 51.643993361304 0 +15 32907 51.644153361304 0 +15 32907 51.644153361304 0 +15 32968 51.824399075287 0 +15 32968 51.824399075287 0 +15 32974 51.824559075287 0 +15 32974 51.824559075287 0 +15 33001 51.831276887561 0 +15 33001 51.831276887561 0 +15 33011 51.831436887561 0 +15 33011 51.831436887561 0 +15 33027 51.857383685955 0 +15 33027 51.857383685955 0 +15 33034 51.857543685955 0 +15 33034 51.857543685955 0 +15 33067 51.943993377578 0 +15 33067 51.943993377578 0 +15 33073 51.944153377578 0 +15 33073 51.944153377578 0 +15 33134 52.124399070526 0 +15 33134 52.124399070526 0 +15 33140 52.124559070526 0 +15 33140 52.124559070526 0 +15 33167 52.131276868507 0 +15 33167 52.131276868507 0 +15 33177 52.131436868507 0 +15 33177 52.131436868507 0 +15 33193 52.157383685955 0 +15 33193 52.157383685955 0 +15 33200 52.157543685955 0 +15 33200 52.157543685955 0 +15 33233 52.243993394241 0 +15 33233 52.243993394241 0 +15 33239 52.244153394241 0 +15 33239 52.244153394241 0 +15 33300 52.424399066364 0 +15 33300 52.424399066364 0 +15 33306 52.424559066364 0 +15 33306 52.424559066364 0 +15 33333 52.431276849398 0 +15 33333 52.431276849398 0 +15 33343 52.431436849398 0 +15 33343 52.431436849398 0 +15 33359 52.457383685955 0 +15 33359 52.457383685955 0 +15 33366 52.457543685955 0 +15 33366 52.457543685955 0 +15 33399 52.543993411231 0 +15 33399 52.543993411231 0 +15 33405 52.544153411231 0 +15 33405 52.544153411231 0 +15 33466 52.724399062755 0 +15 33466 52.724399062755 0 +15 33472 52.724559062755 0 +15 33472 52.724559062755 0 +15 33498 52.731276830378 0 +15 33498 52.731276830378 0 +15 33504 52.731436830378 0 +15 33504 52.731436830378 0 +15 33525 52.757383685955 0 +15 33525 52.757383685955 0 +15 33532 52.757543685955 0 +15 33532 52.757543685955 0 +15 33565 52.843993428579 0 +15 33565 52.843993428579 0 +15 33571 52.844153428579 0 +15 33571 52.844153428579 0 +15 33632 53.024399059705 0 +15 33632 53.024399059705 0 +15 33638 53.024559059705 0 +15 33638 53.024559059705 0 +15 33664 53.031276811401 0 +15 33664 53.031276811401 0 +15 33670 53.031436811401 0 +15 33670 53.031436811401 0 +15 33691 53.057383685955 0 +15 33691 53.057383685955 0 +15 33698 53.057543685955 0 +15 33698 53.057543685955 0 +15 33731 53.143993445991 0 +15 33731 53.143993445991 0 +15 33737 53.144153445991 0 +15 33737 53.144153445991 0 +15 33774 53.324399056666 0 +15 33774 53.324399056666 0 +15 33779 53.324559056666 0 +15 33779 53.324559056666 0 +15 33803 53.331276793082 0 +15 33803 53.331276793082 0 +15 33808 53.331436793082 0 +15 33808 53.331436793082 0 +15 33828 53.357383685955 0 +15 33828 53.357383685955 0 +15 33834 53.357543685955 0 +15 33834 53.357543685955 0 +15 33865 53.443993462692 0 +15 33865 53.443993462692 0 +15 33870 53.444153462692 0 +15 33870 53.444153462692 0 +15 33901 53.624399053363 0 +15 33901 53.624399053363 0 +15 33906 53.624559053363 0 +15 33906 53.624559053363 0 +15 33930 53.631276775636 0 +15 33930 53.631276775636 0 +15 33935 53.631436775636 0 +15 33935 53.631436775636 0 +15 33955 53.657383685955 0 +15 33955 53.657383685955 0 +15 33961 53.657543685955 0 +15 33961 53.657543685955 0 +15 33992 53.74399347871 0 +15 33992 53.74399347871 0 +15 33997 53.74415347871 0 +15 33997 53.74415347871 0 +15 34028 53.924399049701 0 +15 34028 53.924399049701 0 +15 34033 53.924559049701 0 +15 34033 53.924559049701 0 +15 34057 53.931276759068 0 +15 34057 53.931276759068 0 +15 34062 53.931436759068 0 +15 34062 53.931436759068 0 +15 34082 53.957383685955 0 +15 34082 53.957383685955 0 +15 34088 53.957543685955 0 +15 34088 53.957543685955 0 +15 34119 54.04399349386 0 +15 34119 54.04399349386 0 +15 34124 54.04415349386 0 +15 34124 54.04415349386 0 +15 34155 54.224399045616 0 +15 34155 54.224399045616 0 +15 34160 54.224559045616 0 +15 34160 54.224559045616 0 +15 34184 54.231276743362 0 +15 34184 54.231276743362 0 +15 34189 54.231436743362 0 +15 34189 54.231436743362 0 +15 34209 54.257383685955 0 +15 34209 54.257383685955 0 +15 34215 54.257543685955 0 +15 34215 54.257543685955 0 +15 34246 54.343993508088 0 +15 34246 54.343993508088 0 +15 34251 54.344153508088 0 +15 34251 54.344153508088 0 +15 34282 54.524399041209 0 +15 34282 54.524399041209 0 +15 34287 54.524559041209 0 +15 34287 54.524559041209 0 +15 34311 54.531276728362 0 +15 34311 54.531276728362 0 +15 34316 54.531436728362 0 +15 34316 54.531436728362 0 +15 34336 54.557383685955 0 +15 34336 54.557383685955 0 +15 34342 54.557543685955 0 +15 34342 54.557543685955 0 +15 34373 54.643993521993 0 +15 34373 54.643993521993 0 +15 34378 54.644153521993 0 +15 34378 54.644153521993 0 +15 34409 54.824399037501 0 +15 34409 54.824399037501 0 +15 34414 54.824559037501 0 +15 34414 54.824559037501 0 +15 34438 54.831276713317 0 +15 34438 54.831276713317 0 +15 34443 54.831436713317 0 +15 34443 54.831436713317 0 +15 34463 54.857383685955 0 +15 34463 54.857383685955 0 +15 34469 54.857543685955 0 +15 34469 54.857543685955 0 +15 34500 54.943993536727 0 +15 34500 54.943993536727 0 +15 34505 54.944153536727 0 +15 34505 54.944153536727 0 +15 34536 55.124399034691 0 +15 34536 55.124399034691 0 +15 34541 55.124559034691 0 +15 34541 55.124559034691 0 +15 34565 55.131276698742 0 +15 34565 55.131276698742 0 +15 34570 55.131436698742 0 +15 34570 55.131436698742 0 +15 34590 55.157383685955 0 +15 34590 55.157383685955 0 +15 34596 55.157543685955 0 +15 34596 55.157543685955 0 +15 34627 55.243993552196 0 +15 34627 55.243993552196 0 +15 34632 55.244153552196 0 +15 34632 55.244153552196 0 +15 34663 55.424399032731 0 +15 34663 55.424399032731 0 +15 34668 55.424559032731 0 +15 34668 55.424559032731 0 +15 34692 55.431276684798 0 +15 34692 55.431276684798 0 +15 34697 55.431436684798 0 +15 34697 55.431436684798 0 +15 34717 55.457383685955 0 +15 34717 55.457383685955 0 +15 34723 55.457543685955 0 +15 34723 55.457543685955 0 +15 34754 55.543993568263 0 +15 34754 55.543993568263 0 +15 34759 55.544153568263 0 +15 34759 55.544153568263 0 +15 34790 55.72439903167 0 +15 34790 55.72439903167 0 +15 34795 55.72455903167 0 +15 34795 55.72455903167 0 +15 34819 55.731276671503 0 +15 34819 55.731276671503 0 +15 34824 55.731436671503 0 +15 34824 55.731436671503 0 +15 34844 55.757383685955 0 +15 34844 55.757383685955 0 +15 34850 55.757543685955 0 +15 34850 55.757543685955 0 +15 34881 55.843993584895 0 +15 34881 55.843993584895 0 +15 34886 55.844153584895 0 +15 34886 55.844153584895 0 +15 34917 56.02439903159 0 +15 34917 56.02439903159 0 +15 34922 56.02455903159 0 +15 34922 56.02455903159 0 +15 34946 56.031276658808 0 +15 34946 56.031276658808 0 +15 34951 56.031436658808 0 +15 34951 56.031436658808 0 +15 34971 56.057383685955 0 +15 34971 56.057383685955 0 +15 34977 56.057543685955 0 +15 34977 56.057543685955 0 +15 35008 56.143993602134 0 +15 35008 56.143993602134 0 +15 35013 56.144153602134 0 +15 35013 56.144153602134 0 +15 35044 56.324399032473 0 +15 35044 56.324399032473 0 +15 35049 56.324559032473 0 +15 35049 56.324559032473 0 +15 35073 56.331276646771 0 +15 35073 56.331276646771 0 +15 35078 56.331436646771 0 +15 35078 56.331436646771 0 +15 35098 56.357383685955 0 +15 35098 56.357383685955 0 +15 35104 56.357543685955 0 +15 35104 56.357543685955 0 +15 35135 56.443993619822 0 +15 35135 56.443993619822 0 +15 35140 56.444153619822 0 +15 35140 56.444153619822 0 +15 35169 56.624399034306 0 +15 35169 56.624399034306 0 +15 35173 56.624559034306 0 +15 35173 56.624559034306 0 +15 35192 56.631276634911 0 +15 35192 56.631276634911 0 +15 35196 56.631436634911 0 +15 35196 56.631436634911 0 +15 35215 56.657383685955 0 +15 35215 56.657383685955 0 +15 35220 56.657543685955 0 +15 35220 56.657543685955 0 +15 35253 56.924399037177 0 +15 35253 56.924399037177 0 +15 35257 56.924559037177 0 +15 35257 56.924559037177 0 +15 35276 56.931276625815 0 +15 35276 56.931276625815 0 +15 35280 56.931436625815 0 +15 35280 56.931436625815 0 +15 35299 56.957383685955 0 +15 35299 56.957383685955 0 +15 35304 56.957543685955 0 +15 35304 56.957543685955 0 +15 35337 57.224399041135 0 +15 35337 57.224399041135 0 +15 35341 57.224559041135 0 +15 35341 57.224559041135 0 +15 35360 57.231276624504 0 +15 35360 57.231276624504 0 +15 35364 57.231436624504 0 +15 35364 57.231436624504 0 +15 35383 57.257383685955 0 +15 35383 57.257383685955 0 +15 35388 57.257543685955 0 +15 35388 57.257543685955 0 +15 35421 57.524399046156 0 +15 35421 57.524399046156 0 +15 35425 57.524559046156 0 +15 35425 57.524559046156 0 +15 35444 57.531276623773 0 +15 35444 57.531276623773 0 +15 35448 57.531436623773 0 +15 35448 57.531436623773 0 +15 35467 57.557383685955 0 +15 35467 57.557383685955 0 +15 35472 57.557543685955 0 +15 35472 57.557543685955 0 +15 35505 57.824399052067 0 +15 35505 57.824399052067 0 +15 35509 57.824559052067 0 +15 35509 57.824559052067 0 +15 35528 57.83127662344 0 +15 35528 57.83127662344 0 +15 35532 57.83143662344 0 +15 35532 57.83143662344 0 +15 35551 57.857383685955 0 +15 35551 57.857383685955 0 +15 35556 57.857543685955 0 +15 35556 57.857543685955 0 +15 35589 58.12439905849 0 +15 35589 58.12439905849 0 +15 35593 58.12455905849 0 +15 35593 58.12455905849 0 +15 35612 58.131276624201 0 +15 35612 58.131276624201 0 +15 35616 58.131436624201 0 +15 35616 58.131436624201 0 +15 35635 58.157383685955 0 +15 35635 58.157383685955 0 +15 35640 58.157543685955 0 +15 35640 58.157543685955 0 +15 35673 58.424399065464 0 +15 35673 58.424399065464 0 +15 35677 58.424559065464 0 +15 35677 58.424559065464 0 +15 35696 58.431276626037 0 +15 35696 58.431276626037 0 +15 35700 58.431436626037 0 +15 35700 58.431436626037 0 +15 35719 58.457383685955 0 +15 35719 58.457383685955 0 +15 35724 58.457543685955 0 +15 35724 58.457543685955 0 +15 35757 58.72439907295 0 +15 35757 58.72439907295 0 +15 35761 58.72455907295 0 +15 35761 58.72455907295 0 +15 35780 58.731276628991 0 +15 35780 58.731276628991 0 +15 35784 58.731436628991 0 +15 35784 58.731436628991 0 +15 35803 58.757383685955 0 +15 35803 58.757383685955 0 +15 35808 58.757543685955 0 +15 35808 58.757543685955 0 +15 35841 59.024399080905 0 +15 35841 59.024399080905 0 +15 35845 59.024559080905 0 +15 35845 59.024559080905 0 +15 35864 59.031276633114 0 +15 35864 59.031276633114 0 +15 35868 59.031436633114 0 +15 35868 59.031436633114 0 +15 35887 59.057383685955 0 +15 35887 59.057383685955 0 +15 35892 59.057543685955 0 +15 35892 59.057543685955 0 +15 35925 59.324399089353 0 +15 35925 59.324399089353 0 +15 35929 59.324559089353 0 +15 35929 59.324559089353 0 +15 35948 59.331276638423 0 +15 35948 59.331276638423 0 +15 35952 59.331436638423 0 +15 35952 59.331436638423 0 +15 35971 59.357383685955 0 +15 35971 59.357383685955 0 +15 35976 59.357543685955 0 +15 35976 59.357543685955 0 +15 36009 59.624399098247 0 +15 36009 59.624399098247 0 +15 36013 59.624559098247 0 +15 36013 59.624559098247 0 +15 36032 59.631276644886 0 +15 36032 59.631276644886 0 +15 36036 59.631436644886 0 +15 36036 59.631436644886 0 +15 36055 59.657383685955 0 +15 36055 59.657383685955 0 +15 36060 59.657543685955 0 +15 36060 59.657543685955 0 +15 36093 59.924399107553 0 +15 36093 59.924399107553 0 +15 36097 59.924559107553 0 +15 36097 59.924559107553 0 +15 36116 59.931276652523 0 +15 36116 59.931276652523 0 +15 36120 59.931436652523 0 +15 36120 59.931436652523 0 +15 36139 59.957383685955 0 +15 36139 59.957383685955 0 +15 36144 59.957543685955 0 +15 36144 59.957543685955 0 +15 36177 60.224399117246 0 +15 36177 60.224399117246 0 +15 36181 60.224559117246 0 +15 36181 60.224559117246 0 +15 36196 60.231276661221 0 +15 36196 60.231276661221 0 +15 36200 60.231436661221 0 +15 36200 60.231436661221 0 +15 36215 60.257383685955 0 +15 36215 60.257383685955 0 +15 36220 60.257543685955 0 +15 36220 60.257543685955 0 +15 36253 60.524399127334 0 +15 36253 60.524399127334 0 +15 36257 60.524559127334 0 +15 36257 60.524559127334 0 +15 36272 60.53127667062 0 +15 36272 60.53127667062 0 +15 36276 60.53143667062 0 +15 36276 60.53143667062 0 +15 36291 60.557383685955 0 +15 36291 60.557383685955 0 +15 36296 60.557543685955 0 +15 36296 60.557543685955 0 +15 36329 60.824399137773 0 +15 36329 60.824399137773 0 +15 36333 60.824559137773 0 +15 36333 60.824559137773 0 +15 36348 60.831276680584 0 +15 36348 60.831276680584 0 +15 36352 60.831436680584 0 +15 36352 60.831436680584 0 +15 36367 60.857383685955 0 +15 36367 60.857383685955 0 +15 36372 60.857543685955 0 +15 36372 60.857543685955 0 +15 36405 61.124399148508 0 +15 36405 61.124399148508 0 +15 36409 61.124559148508 0 +15 36409 61.124559148508 0 +15 36424 61.131276691084 0 +15 36424 61.131276691084 0 +15 36428 61.131436691084 0 +15 36428 61.131436691084 0 +15 36443 61.157383685955 0 +15 36443 61.157383685955 0 +15 36448 61.157543685955 0 +15 36448 61.157543685955 0 +15 36481 61.424399159611 0 +15 36481 61.424399159611 0 +15 36485 61.424559159611 0 +15 36485 61.424559159611 0 +15 36500 61.431276701991 0 +15 36500 61.431276701991 0 +15 36504 61.431436701991 0 +15 36504 61.431436701991 0 +15 36519 61.457383685955 0 +15 36519 61.457383685955 0 +15 36524 61.457543685955 0 +15 36524 61.457543685955 0 +15 36557 61.724399171016 0 +15 36557 61.724399171016 0 +15 36561 61.724559171016 0 +15 36561 61.724559171016 0 +15 36576 61.731276713345 0 +15 36576 61.731276713345 0 +15 36580 61.731436713345 0 +15 36580 61.731436713345 0 +15 36595 61.757383685955 0 +15 36595 61.757383685955 0 +15 36600 61.757543685955 0 +15 36600 61.757543685955 0 +15 36633 62.024399182109 0 +15 36633 62.024399182109 0 +15 36637 62.024559182109 0 +15 36637 62.024559182109 0 +15 36652 62.031276725245 0 +15 36652 62.031276725245 0 +15 36656 62.031436725245 0 +15 36656 62.031436725245 0 +15 36671 62.057383685955 0 +15 36671 62.057383685955 0 +15 36676 62.057543685955 0 +15 36676 62.057543685955 0 +15 36709 62.324399192148 0 +15 36709 62.324399192148 0 +15 36713 62.324559192148 0 +15 36713 62.324559192148 0 +15 36728 62.3312767377 0 +15 36728 62.3312767377 0 +15 36732 62.3314367377 0 +15 36732 62.3314367377 0 +15 36747 62.357383685955 0 +15 36747 62.357383685955 0 +15 36752 62.357543685955 0 +15 36752 62.357543685955 0 +15 36785 62.624399201089 0 +15 36785 62.624399201089 0 +15 36789 62.624559201089 0 +15 36789 62.624559201089 0 +15 36804 62.631276750535 0 +15 36804 62.631276750535 0 +15 36808 62.631436750535 0 +15 36808 62.631436750535 0 +15 36823 62.657383685955 0 +15 36823 62.657383685955 0 +15 36828 62.657543685955 0 +15 36828 62.657543685955 0 +15 36861 62.924399208912 0 +15 36861 62.924399208912 0 +15 36865 62.924559208912 0 +15 36865 62.924559208912 0 +15 36880 62.931276763684 0 +15 36880 62.931276763684 0 +15 36884 62.931436763684 0 +15 36884 62.931436763684 0 +15 36899 62.957383685955 0 +15 36899 62.957383685955 0 +15 36904 62.957543685955 0 +15 36904 62.957543685955 0 +19 53 2.614717181566 82 +19 98 2.914717182681 82 +19 146 3.214717183861 82 +19 206 3.514717185136 82 +19 235 3.53143690138 82 +19 290 3.814717186493 82 +19 319 3.831436901063 82 +19 376 4.114717187941 82 +19 412 4.131436900741 82 +19 473 4.414717189528 82 +19 509 4.431436900411 82 +19 592 4.714717191249 82 +19 628 4.731436900107 82 +19 711 5.014717193103 82 +19 747 5.031436899786 82 +19 840 5.314717195171 82 +19 878 5.331436899476 82 +19 974 5.614717197442 82 +19 1012 5.631436899171 82 +19 1132 5.914717199962 82 +19 1170 5.931436898866 82 +19 1298 6.214717202762 82 +19 1342 6.231436898564 82 +19 1481 6.514717205852 82 +19 1519 6.524559075657 82 +19 1558 6.531436898265 82 +19 1698 6.814717209291 82 +19 1736 6.82455907586 82 +19 1775 6.831436897959 82 +19 1915 7.1147172131 82 +19 1953 7.124559076049 82 +19 1992 7.131436897653 82 +19 2132 7.414717217271 82 +19 2170 7.424559076251 82 +19 2209 7.431436897348 82 +19 2349 7.714717221838 82 +19 2387 7.724559076456 82 +19 2426 7.73143689705 82 +19 2566 8.014717226859 82 +19 2604 8.024559076668 82 +19 2643 8.031436896762 82 +19 2783 8.314717232422 82 +19 2821 8.324559076881 82 +19 2864 8.331436896481 82 +19 3008 8.614717238496 82 +19 3046 8.6245590771 82 +19 3089 8.63143689619 82 +19 3238 8.914717245124 82 +19 3271 8.924559077324 82 +19 3314 8.931436895893 82 +19 3463 9.214717252325 82 +19 3496 9.224559077547 82 +19 3539 9.231436895621 82 +19 3688 9.514717260085 82 +19 3721 9.52455907778 82 +19 3764 9.531436895347 82 +19 3913 9.814717268307 82 +19 3946 9.824559078019 82 +19 3989 9.831436895075 82 +19 4138 10.114717276848 82 +19 4171 10.124559078264 82 +19 4214 10.131436894808 82 +19 4363 10.414717285658 82 +19 4396 10.4245590785 82 +19 4439 10.431436894532 82 +19 4592 10.714717294754 82 +19 4629 10.724559078727 82 +19 4672 10.731436894259 82 +19 4825 11.014717304135 82 +19 4862 11.024559078987 82 +19 4905 11.031436893999 82 +19 5058 11.314717313736 82 +19 5095 11.324559079221 82 +19 5138 11.331436893733 82 +19 5291 11.614717323591 82 +19 5328 11.624559079471 82 +19 5371 11.631436893479 82 +19 5532 11.914717333695 82 +19 5569 11.92455907973 82 +19 5612 11.931436893219 82 +19 5773 12.214717344013 82 +19 5810 12.22455907998 82 +19 5853 12.231436892968 82 +19 6014 12.514717354529 82 +19 6051 12.524559080256 82 +19 6094 12.531436892721 82 +19 6255 12.814717365221 82 +19 6292 12.82455908052 82 +19 6335 12.831436892469 82 +19 6496 13.114717376122 82 +19 6533 13.124559080797 82 +19 6576 13.131436892214 82 +19 6737 13.414717387173 82 +19 6774 13.424559081079 82 +19 6817 13.431436891978 82 +19 6978 13.714717398373 82 +19 7015 13.724559081347 82 +19 7058 13.731436891728 82 +19 7224 14.014717409766 82 +19 7256 14.024559081623 82 +19 7299 14.03143689148 82 +19 7465 14.314717421278 82 +19 7497 14.324559081908 82 +19 7540 14.33143689125 82 +19 7706 14.614717432907 82 +19 7738 14.624559082205 82 +19 7781 14.631436891011 82 +19 7947 14.914717444663 82 +19 7979 14.924559082499 82 +19 8022 14.93143689078 82 +19 8188 15.214717456539 82 +19 8220 15.224559082794 82 +19 8263 15.231436890537 82 +19 8429 15.514717468564 82 +19 8461 15.524559083099 82 +19 8509 15.531436890317 82 +19 8670 15.814717480657 82 +19 8702 15.824559083408 82 +19 8750 15.831436890112 82 +19 8911 16.114717492863 82 +19 8947 16.124559083716 82 +19 8995 16.131436889879 82 +19 9160 16.414717505188 82 +19 9196 16.424559084041 82 +19 9244 16.431436889657 82 +19 9414 16.714717517603 82 +19 9445 16.724559084357 82 +19 9493 16.731436889444 82 +19 9663 17.014717530081 82 +19 9694 17.024559084668 82 +19 9742 17.031436889227 82 +19 9912 17.314717542674 82 +19 9943 17.324559084984 82 +19 9991 17.331436889013 82 +19 10161 17.614717555309 82 +19 10192 17.624559085289 82 +19 10240 17.631436888786 82 +19 10437 17.924559085606 82 +19 10485 17.931436888582 82 +19 10678 18.224559085935 82 +19 10722 18.231436888386 82 +19 10911 18.524559086265 82 +19 10955 18.531436888177 82 +19 11144 18.824559086608 82 +19 11188 18.831436887981 82 +19 11377 19.124559086967 82 +19 11421 19.131436887793 82 +19 11610 19.424559087317 82 +19 11654 19.43143688759 82 +19 11843 19.724559087464 82 +19 11887 19.731436887029 82 +19 12049 20.014717564104 82 +19 12080 20.0245590873 82 +19 12124 20.03143688588 82 +19 12290 20.314717557995 82 +19 12321 20.324559087241 82 +19 12365 20.33143688455 82 +19 12531 20.614717552362 82 +19 12562 20.624559087446 82 +19 12606 20.631436883138 82 +19 12772 20.914717547102 82 +19 12803 20.924559087797 82 +19 12847 20.931436881619 82 +19 13013 21.214717542284 82 +19 13044 21.224559088467 82 +19 13088 21.231436880094 82 +19 13254 21.514717537844 82 +19 13285 21.524559089457 82 +19 13329 21.531436878505 82 +19 13495 21.814717533746 82 +19 13526 21.824559090731 82 +19 13570 21.831436876822 82 +19 13736 22.114717529963 82 +19 13767 22.124559092291 82 +19 13811 22.131436875046 82 +19 13977 22.414717526479 82 +19 14008 22.424559094215 82 +19 14052 22.431436873268 82 +19 14218 22.714717523315 82 +19 14249 22.724559096641 82 +19 14293 22.731436871582 82 +19 14459 23.014717520464 82 +19 14485 23.024559099585 82 +19 14534 23.031436870013 82 +19 14700 23.314717517914 82 +19 14726 23.324559103103 82 +19 14775 23.331436868542 82 +19 14941 23.614717515636 82 +19 14967 23.624559107238 82 +19 15016 23.631436867299 82 +19 15182 23.914717513622 82 +19 15208 23.924559112031 82 +19 15257 23.931436866321 82 +19 15423 24.214717511852 82 +19 15449 24.224559117426 82 +19 15498 24.231436865622 82 +19 15664 24.514717510265 82 +19 15690 24.524559123441 82 +19 15739 24.531436865164 82 +19 15905 24.814717508895 82 +19 15931 24.824559130236 82 +19 15980 24.831436865034 82 +19 16146 25.114717507733 82 +19 16172 25.124559137961 82 +19 16221 25.131436865348 82 +19 16387 25.414717506754 82 +19 16413 25.424559146492 82 +19 16462 25.431436866065 82 +19 16628 25.714717505914 82 +19 16654 25.724559155863 82 +19 16703 25.731436867271 82 +19 16869 26.014717505277 82 +19 16895 26.024559166196 82 +19 16944 26.031436869882 82 +19 17105 26.314717504782 82 +19 17136 26.324559177308 82 +19 17185 26.331436874069 82 +19 17346 26.614717504308 82 +19 17377 26.624559188753 82 +19 17426 26.631436879416 82 +19 17587 26.914717503709 82 +19 17618 26.924559200042 82 +19 17667 26.931436885432 82 +19 17828 27.214717502764 82 +19 17855 27.224559210302 82 +19 17900 27.231436891257 82 +19 18061 27.514717501474 82 +19 18088 27.524559219548 82 +19 18133 27.531436896461 82 +19 18294 27.814717499885 82 +19 18321 27.824559227674 82 +19 18366 27.831436898141 82 +19 18527 28.114717497525 82 +19 18554 28.124559234561 82 +19 18599 28.131436899693 82 +19 18760 28.414717494637 82 +19 18787 28.424559240801 82 +19 18832 28.431436907999 82 +19 18993 28.714717490176 82 +19 19020 28.724559242627 82 +19 19065 28.731436917209 82 +19 19226 29.01471748367 82 +19 19253 29.02455924345 82 +19 19451 29.314717474199 82 +19 19478 29.324559247583 82 +19 19676 29.614717462553 82 +19 19703 29.624559248962 82 +19 19901 29.914717450409 82 +19 19928 29.924559249496 82 +19 20126 30.214717437824 82 +19 20153 30.224559249493 82 +19 20341 30.514717424894 82 +19 20378 30.524559249491 82 +19 20566 30.814717411739 82 +19 20603 30.824559249488 82 +19 20791 31.114717398299 82 +19 20828 31.124559249483 82 +19 21024 31.414717384666 82 +19 21061 31.424559249476 82 +19 21257 31.714717370995 82 +19 21294 31.724559249469 82 +19 21490 32.014717357699 82 +19 21532 32.024559249465 82 +19 21723 32.314717344745 82 +19 21765 32.324559249464 82 +19 21956 32.614717332223 82 +19 21998 32.624559249467 82 +19 22189 32.914717320155 82 +19 22231 32.924559249474 82 +19 22422 33.214717308546 82 +19 22464 33.224559249483 82 +19 22655 33.51471729748 82 +19 22697 33.524559249496 82 +19 22888 33.814717286954 82 +19 22926 33.824559249513 82 +19 23103 34.114717277044 82 +19 23130 34.124559249532 82 +19 23261 34.41471726774 82 +19 23288 34.424559249554 82 +19 23419 34.714717259086 82 +19 23446 34.72455924958 82 +19 23577 35.01471725114 82 +19 23604 35.024559249609 82 +19 23700 35.14415390924 82 +19 23739 35.314717244297 82 +19 23766 35.324559249632 82 +19 23866 35.444153894903 82 +19 23905 35.614717239399 82 +19 23932 35.624559249628 82 +19 24032 35.744153882114 82 +19 24066 35.914717236445 82 +19 24098 35.924559249595 82 +19 24198 36.044153870912 82 +19 24232 36.214717235432 82 +19 24264 36.224559249544 82 +19 24364 36.344153861309 82 +19 24398 36.514717236231 82 +19 24430 36.524559249492 82 +19 24530 36.644153853328 82 +19 24569 36.814717238201 82 +19 24596 36.824559249465 82 +19 24696 36.944153845573 82 +19 24735 37.114717240113 82 +19 24762 37.124559249471 82 +19 24857 37.244153835004 82 +19 24901 37.414717242061 82 +19 24928 37.424559249494 82 +19 25023 37.544153814684 82 +19 25067 37.714717244204 82 +19 25094 37.724559249526 82 +19 25189 37.844153790864 82 +19 25233 38.014717246626 82 +19 25260 38.024559249562 82 +19 25355 38.144153766481 82 +19 25399 38.314717249321 82 +19 25426 38.324559249594 82 +19 25521 38.444153741575 82 +19 25565 38.614717252296 82 +19 25592 38.624559249618 82 +19 25687 38.744153716074 82 +19 25731 38.914717255584 82 +19 25758 38.924559249631 82 +19 25853 39.044153690005 82 +19 25897 39.214717259182 82 +19 25924 39.224559249629 82 +19 26019 39.344153663209 82 +19 26063 39.514717263099 82 +19 26090 39.524559249613 82 +19 26185 39.644153635768 82 +19 26229 39.81471726744 82 +19 26256 39.824559249586 82 +19 26351 39.944153607814 82 +19 26395 40.114717272479 82 +19 26422 40.124559249559 82 +19 26512 40.244153579799 82 +19 26561 40.414717278253 82 +19 26588 40.424559249535 82 +19 26678 40.544153551811 82 +19 26727 40.714717284831 82 +19 26754 40.724559249515 82 +19 26848 40.844153523891 82 +19 26901 41.014717292056 82 +19 26928 41.024559249498 82 +19 27022 41.144153495882 82 +19 27075 41.314717299998 82 +19 27102 41.324559249485 82 +19 27196 41.44415346791 82 +19 27249 41.614717308543 82 +19 27276 41.624559249475 82 +19 27370 41.744153439965 82 +19 27423 41.914717317732 82 +19 27450 41.924559249468 82 +19 27544 42.044153412971 82 +19 27597 42.214717327498 82 +19 27624 42.224559249465 82 +19 27718 42.34415338739 82 +19 27771 42.514717337799 82 +19 27798 42.524559249465 82 +19 27892 42.644153363107 82 +19 27945 42.814717348649 82 +19 27972 42.824559249468 82 +19 28066 42.944153340208 82 +19 28114 43.114717359966 82 +19 28146 43.124559249475 82 +19 28240 43.244153318662 82 +19 28288 43.414717371721 82 +19 28320 43.424559249485 82 +19 28414 43.544153298467 82 +19 28462 43.71471738363 82 +19 28494 43.724559249498 82 +19 28588 43.844153279612 82 +19 28636 44.014717394666 82 +19 28668 44.024559249515 82 +19 28762 44.144153262339 82 +19 28810 44.314717404849 82 +19 28847 44.324559249523 82 +19 28932 44.444153247573 82 +19 28976 44.614717414115 82 +19 29013 44.624559249512 82 +19 29098 44.744153235516 82 +19 29142 44.914717422365 82 +19 29179 44.92455924949 82 +19 29264 45.04415322614 82 +19 29308 45.214717429517 82 +19 29345 45.224559249469 82 +19 29430 45.344153218642 82 +19 29474 45.514717435742 82 +19 29511 45.524559249468 82 +19 29596 45.644153212262 82 +19 29640 45.814717442585 82 +19 29677 45.82455924948 82 +19 29762 45.944153205371 82 +19 29806 46.114717450187 82 +19 29843 46.124559246618 82 +19 29928 46.24415319776 82 +19 29972 46.414717458063 82 +19 30009 46.424559237708 82 +19 30094 46.54415318918 82 +19 30138 46.714717464072 82 +19 30175 46.724559226197 82 +19 30260 46.844153179661 82 +19 30304 47.014717466477 82 +19 30341 47.02455921469 82 +19 30426 47.144153169499 82 +19 30470 47.314717467583 82 +19 30507 47.324559203344 82 +19 30592 47.444153161554 82 +19 30636 47.614717469418 82 +19 30673 47.62455919222 82 +19 30758 47.744153166005 82 +19 30802 47.914717472096 82 +19 30839 47.924559181338 82 +19 30924 48.044153178928 82 +19 30968 48.214717475721 82 +19 31000 48.224559170754 82 +19 31090 48.344153193323 82 +19 31139 48.514717480378 82 +19 31166 48.524559160478 82 +19 31256 48.644153209351 82 +19 31305 48.8147174862 82 +19 31332 48.824559150571 82 +19 31422 48.944153225428 82 +19 31471 49.11471749318 82 +19 31498 49.124559141102 82 +19 31588 49.244153241593 82 +19 31637 49.4147175013 82 +19 31664 49.424559131999 82 +19 31754 49.544153256365 82 +19 31803 49.714717510532 82 +19 31825 49.72455912329 82 +19 31920 49.844153271223 82 +19 31969 50.014717520716 82 +19 31991 50.024559114997 82 +19 32086 50.144153285388 82 +19 32135 50.314717531836 82 +19 32157 50.324559107181 82 +19 32252 50.444153299881 82 +19 32301 50.614717543841 82 +19 32323 50.6245590998 82 +19 32418 50.744153314719 82 +19 32467 50.914717556641 82 +19 32489 50.924559092883 82 +19 32584 51.044153329888 82 +19 32651 51.224559086505 82 +19 32742 51.344153345414 82 +19 32809 51.524559080627 82 +19 32846 51.531436906599 82 +19 32908 51.644153361304 82 +19 32975 51.824559075287 82 +19 33012 51.831436887561 82 +19 33074 51.944153377578 82 +19 33141 52.124559070526 82 +19 33178 52.131436868507 82 +19 33240 52.244153394241 82 +19 33307 52.424559066364 82 +19 33344 52.431436849398 82 +19 33406 52.544153411231 82 +19 33473 52.724559062755 82 +19 33505 52.731436830378 82 +19 33572 52.844153428579 82 +19 33639 53.024559059705 82 +19 33671 53.031436811401 82 +19 33738 53.144153445991 82 +19 33780 53.324559056666 82 +19 33809 53.331436793082 82 +19 33871 53.444153462692 82 +19 33907 53.624559053363 82 +19 33936 53.631436775636 82 +19 33998 53.74415347871 82 +19 34034 53.924559049701 82 +19 34063 53.931436759068 82 +19 34125 54.04415349386 82 +19 34161 54.224559045616 82 +19 34190 54.231436743362 82 +19 34252 54.344153508088 82 +19 34288 54.524559041209 82 +19 34317 54.531436728362 82 +19 34379 54.644153521993 82 +19 34415 54.824559037501 82 +19 34444 54.831436713317 82 +19 34506 54.944153536727 82 +19 34542 55.124559034691 82 +19 34571 55.131436698742 82 +19 34633 55.244153552196 82 +19 34669 55.424559032731 82 +19 34698 55.431436684798 82 +19 34760 55.544153568263 82 +19 34796 55.72455903167 82 +19 34825 55.731436671503 82 +19 34887 55.844153584895 82 +19 34923 56.02455903159 82 +19 34952 56.031436658808 82 +19 35014 56.144153602134 82 +19 35050 56.324559032473 82 +19 35079 56.331436646771 82 +19 35141 56.444153619822 82 +19 35174 56.624559034306 82 +19 35197 56.631436634911 82 +19 35258 56.924559037177 82 +19 35281 56.931436625815 82 +19 35342 57.224559041135 82 +19 35365 57.231436624504 82 +19 35426 57.524559046156 82 +19 35449 57.531436623773 82 +19 35510 57.824559052067 82 +19 35533 57.83143662344 82 +19 35594 58.12455905849 82 +19 35617 58.131436624201 82 +19 35678 58.424559065464 82 +19 35701 58.431436626037 82 +19 35762 58.72455907295 82 +19 35785 58.731436628991 82 +19 35846 59.024559080905 82 +19 35869 59.031436633114 82 +19 35930 59.324559089353 82 +19 35953 59.331436638423 82 +19 36014 59.624559098247 82 +19 36037 59.631436644886 82 +19 36098 59.924559107553 82 +19 36121 59.931436652523 82 +19 36182 60.224559117246 82 +19 36201 60.231436661221 82 +19 36258 60.524559127334 82 +19 36277 60.53143667062 82 +19 36334 60.824559137773 82 +19 36353 60.831436680584 82 +19 36410 61.124559148508 82 +19 36429 61.131436691084 82 +19 36486 61.424559159611 82 +19 36505 61.431436701991 82 +19 36562 61.724559171016 82 +19 36581 61.731436713345 82 +19 36638 62.024559182109 82 +19 36657 62.031436725245 82 +19 36714 62.324559192148 82 +19 36733 62.3314367377 82 +19 36790 62.624559201089 82 +19 36809 62.631436750535 82 +19 36866 62.924559208912 82 +19 36885 62.931436763684 82 +20 53 2.614717181566 82 +20 98 2.914717182681 82 +20 146 3.214717183861 82 +20 206 3.514717185136 82 +20 235 3.53143690138 82 +20 290 3.814717186493 82 +20 319 3.831436901063 82 +20 376 4.114717187941 82 +20 412 4.131436900741 82 +20 473 4.414717189528 82 +20 509 4.431436900411 82 +20 592 4.714717191249 82 +20 628 4.731436900107 82 +20 711 5.014717193103 82 +20 747 5.031436899786 82 +20 840 5.314717195171 82 +20 878 5.331436899476 82 +20 974 5.614717197442 82 +20 1012 5.631436899171 82 +20 1132 5.914717199962 82 +20 1170 5.931436898866 82 +20 1298 6.214717202762 82 +20 1342 6.231436898564 82 +20 1481 6.514717205852 82 +20 1519 6.524559075657 82 +20 1558 6.531436898265 82 +20 1698 6.814717209291 82 +20 1736 6.82455907586 82 +20 1775 6.831436897959 82 +20 1915 7.1147172131 82 +20 1953 7.124559076049 82 +20 1992 7.131436897653 82 +20 2132 7.414717217271 82 +20 2170 7.424559076251 82 +20 2209 7.431436897348 82 +20 2349 7.714717221838 82 +20 2387 7.724559076456 82 +20 2426 7.73143689705 82 +20 2566 8.014717226859 82 +20 2604 8.024559076668 82 +20 2643 8.031436896762 82 +20 2783 8.314717232422 82 +20 2821 8.324559076881 82 +20 2864 8.331436896481 82 +20 3008 8.614717238496 82 +20 3046 8.6245590771 82 +20 3089 8.63143689619 82 +20 3238 8.914717245124 82 +20 3271 8.924559077324 82 +20 3314 8.931436895893 82 +20 3463 9.214717252325 82 +20 3496 9.224559077547 82 +20 3539 9.231436895621 82 +20 3688 9.514717260085 82 +20 3721 9.52455907778 82 +20 3764 9.531436895347 82 +20 3913 9.814717268307 82 +20 3946 9.824559078019 82 +20 3989 9.831436895075 82 +20 4138 10.114717276848 82 +20 4171 10.124559078264 82 +20 4214 10.131436894808 82 +20 4363 10.414717285658 82 +20 4396 10.4245590785 82 +20 4439 10.431436894532 82 +20 4592 10.714717294754 82 +20 4629 10.724559078727 82 +20 4672 10.731436894259 82 +20 4825 11.014717304135 82 +20 4862 11.024559078987 82 +20 4905 11.031436893999 82 +20 5058 11.314717313736 82 +20 5095 11.324559079221 82 +20 5138 11.331436893733 82 +20 5291 11.614717323591 82 +20 5328 11.624559079471 82 +20 5371 11.631436893479 82 +20 5532 11.914717333695 82 +20 5569 11.92455907973 82 +20 5612 11.931436893219 82 +20 5773 12.214717344013 82 +20 5810 12.22455907998 82 +20 5853 12.231436892968 82 +20 6014 12.514717354529 82 +20 6051 12.524559080256 82 +20 6094 12.531436892721 82 +20 6255 12.814717365221 82 +20 6292 12.82455908052 82 +20 6335 12.831436892469 82 +20 6496 13.114717376122 82 +20 6533 13.124559080797 82 +20 6576 13.131436892214 82 +20 6737 13.414717387173 82 +20 6774 13.424559081079 82 +20 6817 13.431436891978 82 +20 6978 13.714717398373 82 +20 7015 13.724559081347 82 +20 7058 13.731436891728 82 +20 7224 14.014717409766 82 +20 7256 14.024559081623 82 +20 7299 14.03143689148 82 +20 7465 14.314717421278 82 +20 7497 14.324559081908 82 +20 7540 14.33143689125 82 +20 7706 14.614717432907 82 +20 7738 14.624559082205 82 +20 7781 14.631436891011 82 +20 7947 14.914717444663 82 +20 7979 14.924559082499 82 +20 8022 14.93143689078 82 +20 8188 15.214717456539 82 +20 8220 15.224559082794 82 +20 8263 15.231436890537 82 +20 8429 15.514717468564 82 +20 8461 15.524559083099 82 +20 8509 15.531436890317 82 +20 8670 15.814717480657 82 +20 8702 15.824559083408 82 +20 8750 15.831436890112 82 +20 8911 16.114717492863 82 +20 8947 16.124559083716 82 +20 8995 16.131436889879 82 +20 9160 16.414717505188 82 +20 9196 16.424559084041 82 +20 9244 16.431436889657 82 +20 9414 16.714717517603 82 +20 9445 16.724559084357 82 +20 9493 16.731436889444 82 +20 9663 17.014717530081 82 +20 9694 17.024559084668 82 +20 9742 17.031436889227 82 +20 9912 17.314717542674 82 +20 9943 17.324559084984 82 +20 9991 17.331436889013 82 +20 10161 17.614717555309 82 +20 10192 17.624559085289 82 +20 10240 17.631436888786 82 +20 10437 17.924559085606 82 +20 10485 17.931436888582 82 +20 10678 18.224559085935 82 +20 10722 18.231436888386 82 +20 10911 18.524559086265 82 +20 10955 18.531436888177 82 +20 11144 18.824559086608 82 +20 11188 18.831436887981 82 +20 11377 19.124559086967 82 +20 11421 19.131436887793 82 +20 11610 19.424559087317 82 +20 11654 19.43143688759 82 +20 11843 19.724559087464 82 +20 11887 19.731436887029 82 +20 12049 20.014717564104 82 +20 12080 20.0245590873 82 +20 12124 20.03143688588 82 +20 12290 20.314717557995 82 +20 12321 20.324559087241 82 +20 12365 20.33143688455 82 +20 12531 20.614717552362 82 +20 12562 20.624559087446 82 +20 12606 20.631436883138 82 +20 12772 20.914717547102 82 +20 12803 20.924559087797 82 +20 12847 20.931436881619 82 +20 13013 21.214717542284 82 +20 13044 21.224559088467 82 +20 13088 21.231436880094 82 +20 13254 21.514717537844 82 +20 13285 21.524559089457 82 +20 13329 21.531436878505 82 +20 13495 21.814717533746 82 +20 13526 21.824559090731 82 +20 13570 21.831436876822 82 +20 13736 22.114717529963 82 +20 13767 22.124559092291 82 +20 13811 22.131436875046 82 +20 13977 22.414717526479 82 +20 14008 22.424559094215 82 +20 14052 22.431436873268 82 +20 14218 22.714717523315 82 +20 14249 22.724559096641 82 +20 14293 22.731436871582 82 +20 14459 23.014717520464 82 +20 14485 23.024559099585 82 +20 14534 23.031436870013 82 +20 14700 23.314717517914 82 +20 14726 23.324559103103 82 +20 14775 23.331436868542 82 +20 14941 23.614717515636 82 +20 14967 23.624559107238 82 +20 15016 23.631436867299 82 +20 15182 23.914717513622 82 +20 15208 23.924559112031 82 +20 15257 23.931436866321 82 +20 15423 24.214717511852 82 +20 15449 24.224559117426 82 +20 15498 24.231436865622 82 +20 15664 24.514717510265 82 +20 15690 24.524559123441 82 +20 15739 24.531436865164 82 +20 15905 24.814717508895 82 +20 15931 24.824559130236 82 +20 15980 24.831436865034 82 +20 16146 25.114717507733 82 +20 16172 25.124559137961 82 +20 16221 25.131436865348 82 +20 16387 25.414717506754 82 +20 16413 25.424559146492 82 +20 16462 25.431436866065 82 +20 16628 25.714717505914 82 +20 16654 25.724559155863 82 +20 16703 25.731436867271 82 +20 16869 26.014717505277 82 +20 16895 26.024559166196 82 +20 16944 26.031436869882 82 +20 17105 26.314717504782 82 +20 17136 26.324559177308 82 +20 17185 26.331436874069 82 +20 17346 26.614717504308 82 +20 17377 26.624559188753 82 +20 17426 26.631436879416 82 +20 17587 26.914717503709 82 +20 17618 26.924559200042 82 +20 17667 26.931436885432 82 +20 17828 27.214717502764 82 +20 17855 27.224559210302 82 +20 17900 27.231436891257 82 +20 18061 27.514717501474 82 +20 18088 27.524559219548 82 +20 18133 27.531436896461 82 +20 18294 27.814717499885 82 +20 18321 27.824559227674 82 +20 18366 27.831436898141 82 +20 18527 28.114717497525 82 +20 18554 28.124559234561 82 +20 18599 28.131436899693 82 +20 18760 28.414717494637 82 +20 18787 28.424559240801 82 +20 18832 28.431436907999 82 +20 18993 28.714717490176 82 +20 19020 28.724559242627 82 +20 19065 28.731436917209 82 +20 19226 29.01471748367 82 +20 19253 29.02455924345 82 +20 19451 29.314717474199 82 +20 19478 29.324559247583 82 +20 19676 29.614717462553 82 +20 19703 29.624559248962 82 +20 19901 29.914717450409 82 +20 19928 29.924559249496 82 +20 20126 30.214717437824 82 +20 20153 30.224559249493 82 +20 20341 30.514717424894 82 +20 20378 30.524559249491 82 +20 20566 30.814717411739 82 +20 20603 30.824559249488 82 +20 20791 31.114717398299 82 +20 20828 31.124559249483 82 +20 21024 31.414717384666 82 +20 21061 31.424559249476 82 +20 21257 31.714717370995 82 +20 21294 31.724559249469 82 +20 21490 32.014717357699 82 +20 21532 32.024559249465 82 +20 21723 32.314717344745 82 +20 21765 32.324559249464 82 +20 21956 32.614717332223 82 +20 21998 32.624559249467 82 +20 22189 32.914717320155 82 +20 22231 32.924559249474 82 +20 22422 33.214717308546 82 +20 22464 33.224559249483 82 +20 22655 33.51471729748 82 +20 22697 33.524559249496 82 +20 22888 33.814717286954 82 +20 22926 33.824559249513 82 +20 23103 34.114717277044 82 +20 23130 34.124559249532 82 +20 23261 34.41471726774 82 +20 23288 34.424559249554 82 +20 23419 34.714717259086 82 +20 23446 34.72455924958 82 +20 23577 35.01471725114 82 +20 23604 35.024559249609 82 +20 23700 35.14415390924 82 +20 23739 35.314717244297 82 +20 23766 35.324559249632 82 +20 23866 35.444153894903 82 +20 23905 35.614717239399 82 +20 23932 35.624559249628 82 +20 24032 35.744153882114 82 +20 24066 35.914717236445 82 +20 24098 35.924559249595 82 +20 24198 36.044153870912 82 +20 24232 36.214717235432 82 +20 24264 36.224559249544 82 +20 24364 36.344153861309 82 +20 24398 36.514717236231 82 +20 24430 36.524559249492 82 +20 24530 36.644153853328 82 +20 24569 36.814717238201 82 +20 24596 36.824559249465 82 +20 24696 36.944153845573 82 +20 24735 37.114717240113 82 +20 24762 37.124559249471 82 +20 24857 37.244153835004 82 +20 24901 37.414717242061 82 +20 24928 37.424559249494 82 +20 25023 37.544153814684 82 +20 25067 37.714717244204 82 +20 25094 37.724559249526 82 +20 25189 37.844153790864 82 +20 25233 38.014717246626 82 +20 25260 38.024559249562 82 +20 25355 38.144153766481 82 +20 25399 38.314717249321 82 +20 25426 38.324559249594 82 +20 25521 38.444153741575 82 +20 25565 38.614717252296 82 +20 25592 38.624559249618 82 +20 25687 38.744153716074 82 +20 25731 38.914717255584 82 +20 25758 38.924559249631 82 +20 25853 39.044153690005 82 +20 25897 39.214717259182 82 +20 25924 39.224559249629 82 +20 26019 39.344153663209 82 +20 26063 39.514717263099 82 +20 26090 39.524559249613 82 +20 26185 39.644153635768 82 +20 26229 39.81471726744 82 +20 26256 39.824559249586 82 +20 26351 39.944153607814 82 +20 26395 40.114717272479 82 +20 26422 40.124559249559 82 +20 26512 40.244153579799 82 +20 26561 40.414717278253 82 +20 26588 40.424559249535 82 +20 26678 40.544153551811 82 +20 26727 40.714717284831 82 +20 26754 40.724559249515 82 +20 26848 40.844153523891 82 +20 26901 41.014717292056 82 +20 26928 41.024559249498 82 +20 27022 41.144153495882 82 +20 27075 41.314717299998 82 +20 27102 41.324559249485 82 +20 27196 41.44415346791 82 +20 27249 41.614717308543 82 +20 27276 41.624559249475 82 +20 27370 41.744153439965 82 +20 27423 41.914717317732 82 +20 27450 41.924559249468 82 +20 27544 42.044153412971 82 +20 27597 42.214717327498 82 +20 27624 42.224559249465 82 +20 27718 42.34415338739 82 +20 27771 42.514717337799 82 +20 27798 42.524559249465 82 +20 27892 42.644153363107 82 +20 27945 42.814717348649 82 +20 27972 42.824559249468 82 +20 28066 42.944153340208 82 +20 28114 43.114717359966 82 +20 28146 43.124559249475 82 +20 28240 43.244153318662 82 +20 28288 43.414717371721 82 +20 28320 43.424559249485 82 +20 28414 43.544153298467 82 +20 28462 43.71471738363 82 +20 28494 43.724559249498 82 +20 28588 43.844153279612 82 +20 28636 44.014717394666 82 +20 28668 44.024559249515 82 +20 28762 44.144153262339 82 +20 28810 44.314717404849 82 +20 28847 44.324559249523 82 +20 28932 44.444153247573 82 +20 28976 44.614717414115 82 +20 29013 44.624559249512 82 +20 29098 44.744153235516 82 +20 29142 44.914717422365 82 +20 29179 44.92455924949 82 +20 29264 45.04415322614 82 +20 29308 45.214717429517 82 +20 29345 45.224559249469 82 +20 29430 45.344153218642 82 +20 29474 45.514717435742 82 +20 29511 45.524559249468 82 +20 29596 45.644153212262 82 +20 29640 45.814717442585 82 +20 29677 45.82455924948 82 +20 29762 45.944153205371 82 +20 29806 46.114717450187 82 +20 29843 46.124559246618 82 +20 29928 46.24415319776 82 +20 29972 46.414717458063 82 +20 30009 46.424559237708 82 +20 30094 46.54415318918 82 +20 30138 46.714717464072 82 +20 30175 46.724559226197 82 +20 30260 46.844153179661 82 +20 30304 47.014717466477 82 +20 30341 47.02455921469 82 +20 30426 47.144153169499 82 +20 30470 47.314717467583 82 +20 30507 47.324559203344 82 +20 30592 47.444153161554 82 +20 30636 47.614717469418 82 +20 30673 47.62455919222 82 +20 30758 47.744153166005 82 +20 30802 47.914717472096 82 +20 30839 47.924559181338 82 +20 30924 48.044153178928 82 +20 30968 48.214717475721 82 +20 31000 48.224559170754 82 +20 31090 48.344153193323 82 +20 31139 48.514717480378 82 +20 31166 48.524559160478 82 +20 31256 48.644153209351 82 +20 31305 48.8147174862 82 +20 31332 48.824559150571 82 +20 31422 48.944153225428 82 +20 31471 49.11471749318 82 +20 31498 49.124559141102 82 +20 31588 49.244153241593 82 +20 31637 49.4147175013 82 +20 31664 49.424559131999 82 +20 31754 49.544153256365 82 +20 31803 49.714717510532 82 +20 31825 49.72455912329 82 +20 31920 49.844153271223 82 +20 31969 50.014717520716 82 +20 31991 50.024559114997 82 +20 32086 50.144153285388 82 +20 32135 50.314717531836 82 +20 32157 50.324559107181 82 +20 32252 50.444153299881 82 +20 32301 50.614717543841 82 +20 32323 50.6245590998 82 +20 32418 50.744153314719 82 +20 32467 50.914717556641 82 +20 32489 50.924559092883 82 +20 32584 51.044153329888 82 +20 32651 51.224559086505 82 +20 32742 51.344153345414 82 +20 32809 51.524559080627 82 +20 32846 51.531436906599 82 +20 32908 51.644153361304 82 +20 32975 51.824559075287 82 +20 33012 51.831436887561 82 +20 33074 51.944153377578 82 +20 33141 52.124559070526 82 +20 33178 52.131436868507 82 +20 33240 52.244153394241 82 +20 33307 52.424559066364 82 +20 33344 52.431436849398 82 +20 33406 52.544153411231 82 +20 33473 52.724559062755 82 +20 33505 52.731436830378 82 +20 33572 52.844153428579 82 +20 33639 53.024559059705 82 +20 33671 53.031436811401 82 +20 33738 53.144153445991 82 +20 33780 53.324559056666 82 +20 33809 53.331436793082 82 +20 33871 53.444153462692 82 +20 33907 53.624559053363 82 +20 33936 53.631436775636 82 +20 33998 53.74415347871 82 +20 34034 53.924559049701 82 +20 34063 53.931436759068 82 +20 34125 54.04415349386 82 +20 34161 54.224559045616 82 +20 34190 54.231436743362 82 +20 34252 54.344153508088 82 +20 34288 54.524559041209 82 +20 34317 54.531436728362 82 +20 34379 54.644153521993 82 +20 34415 54.824559037501 82 +20 34444 54.831436713317 82 +20 34506 54.944153536727 82 +20 34542 55.124559034691 82 +20 34571 55.131436698742 82 +20 34633 55.244153552196 82 +20 34669 55.424559032731 82 +20 34698 55.431436684798 82 +20 34760 55.544153568263 82 +20 34796 55.72455903167 82 +20 34825 55.731436671503 82 +20 34887 55.844153584895 82 +20 34923 56.02455903159 82 +20 34952 56.031436658808 82 +20 35014 56.144153602134 82 +20 35050 56.324559032473 82 +20 35079 56.331436646771 82 +20 35141 56.444153619822 82 +20 35174 56.624559034306 82 +20 35197 56.631436634911 82 +20 35258 56.924559037177 82 +20 35281 56.931436625815 82 +20 35342 57.224559041135 82 +20 35365 57.231436624504 82 +20 35426 57.524559046156 82 +20 35449 57.531436623773 82 +20 35510 57.824559052067 82 +20 35533 57.83143662344 82 +20 35594 58.12455905849 82 +20 35617 58.131436624201 82 +20 35678 58.424559065464 82 +20 35701 58.431436626037 82 +20 35762 58.72455907295 82 +20 35785 58.731436628991 82 +20 35846 59.024559080905 82 +20 35869 59.031436633114 82 +20 35930 59.324559089353 82 +20 35953 59.331436638423 82 +20 36014 59.624559098247 82 +20 36037 59.631436644886 82 +20 36098 59.924559107553 82 +20 36121 59.931436652523 82 +20 36182 60.224559117246 82 +20 36201 60.231436661221 82 +20 36258 60.524559127334 82 +20 36277 60.53143667062 82 +20 36334 60.824559137773 82 +20 36353 60.831436680584 82 +20 36410 61.124559148508 82 +20 36429 61.131436691084 82 +20 36486 61.424559159611 82 +20 36505 61.431436701991 82 +20 36562 61.724559171016 82 +20 36581 61.731436713345 82 +20 36638 62.024559182109 82 +20 36657 62.031436725245 82 +20 36714 62.324559192148 82 +20 36733 62.3314367377 82 +20 36790 62.624559201089 82 +20 36809 62.631436750535 82 +20 36866 62.924559208912 82 +20 36885 62.931436763684 82 +21 61 2.657383685955 82 +21 106 2.957383685955 82 +21 159 3.257383685955 82 +21 243 3.557383685955 82 +21 327 3.857383685955 82 +21 420 4.157383685955 82 +21 517 4.457383685955 82 +21 636 4.757383685955 82 +21 755 5.057383685955 82 +21 887 5.357383685955 82 +21 1021 5.657383685955 82 +21 1179 5.957383685955 82 +21 1351 6.257383685955 82 +21 1568 6.557383685955 82 +21 1785 6.857383685955 82 +21 2002 7.157383685955 82 +21 2219 7.457383685955 82 +21 2436 7.757383685955 82 +21 2653 8.057383685955 82 +21 2874 8.357383685955 82 +21 3099 8.657383685955 82 +21 3324 8.957383685955 82 +21 3549 9.257383685955 82 +21 3774 9.557383685955 82 +21 3999 9.857383685955 82 +21 4224 10.157383685955 82 +21 4449 10.457383685955 82 +21 4682 10.757383685955 82 +21 4915 11.057383685955 82 +21 5148 11.357383685955 82 +21 5385 11.657383685955 82 +21 5626 11.957383685955 82 +21 5867 12.257383685955 82 +21 6108 12.557383685955 82 +21 6349 12.857383685955 82 +21 6590 13.157383685955 82 +21 6831 13.457383685955 82 +21 7072 13.757383685955 82 +21 7313 14.057383685955 82 +21 7554 14.357383685955 82 +21 7795 14.657383685955 82 +21 8036 14.957383685955 82 +21 8277 15.257383685955 82 +21 8518 15.557383685955 82 +21 8759 15.857383685955 82 +21 9004 16.157383685955 82 +21 9253 16.457383685955 82 +21 9502 16.757383685955 82 +21 9751 17.057383685955 82 +21 10000 17.357383685955 82 +21 10249 17.657383685955 82 +21 10494 17.957383685955 82 +21 10731 18.257383685955 82 +21 10964 18.557383685955 82 +21 11197 18.857383685955 82 +21 11430 19.157383685955 82 +21 11663 19.457383685955 82 +21 11896 19.757383685955 82 +21 12133 20.057383685955 82 +21 12374 20.357383685955 82 +21 12615 20.657383685955 82 +21 12856 20.957383685955 82 +21 13097 21.257383685955 82 +21 13338 21.557383685955 82 +21 13579 21.857383685955 82 +21 13820 22.157383685955 82 +21 14061 22.457383685955 82 +21 14302 22.757383685955 82 +21 14543 23.057383685955 82 +21 14784 23.357383685955 82 +21 15025 23.657383685955 82 +21 15266 23.957383685955 82 +21 15507 24.257383685955 82 +21 15748 24.557383685955 82 +21 15989 24.857383685955 82 +21 16230 25.157383685955 82 +21 16471 25.457383685955 82 +21 16712 25.757383685955 82 +21 16953 26.057383685955 82 +21 17194 26.357383685955 82 +21 17435 26.657383685955 82 +21 17676 26.957383685955 82 +21 17909 27.257383685955 82 +21 18142 27.557383685955 82 +21 18375 27.857383685955 82 +21 18608 28.157383685955 82 +21 18841 28.457383685955 82 +21 19074 28.757383685955 82 +21 19303 29.057383685955 82 +21 19528 29.357383685955 82 +21 19753 29.657383685955 82 +21 19978 29.957383685955 82 +21 20203 30.257383685955 82 +21 20428 30.557383685955 82 +21 20653 30.857383685955 82 +21 20882 31.157383685955 82 +21 21115 31.457383685955 82 +21 21348 31.757383685955 82 +21 21581 32.057383685955 82 +21 21814 32.357383685955 82 +21 22047 32.657383685955 82 +21 22280 32.957383685955 82 +21 22513 33.257383685955 82 +21 22746 33.557383685955 82 +21 22975 33.857383685955 82 +21 23169 34.157383685955 82 +21 23327 34.457383685955 82 +21 23485 34.757383685955 82 +21 23643 35.057383685955 82 +21 23805 35.357383685955 82 +21 23971 35.657383685955 82 +21 24137 35.957383685955 82 +21 24303 36.257383685955 82 +21 24469 36.557383685955 82 +21 24635 36.857383685955 82 +21 24801 37.157383685955 82 +21 24967 37.457383685955 82 +21 25133 37.757383685955 82 +21 25299 38.057383685955 82 +21 25465 38.357383685955 82 +21 25631 38.657383685955 82 +21 25797 38.957383685955 82 +21 25963 39.257383685955 82 +21 26129 39.557383685955 82 +21 26295 39.857383685955 82 +21 26461 40.157383685955 82 +21 26627 40.457383685955 82 +21 26797 40.757383685955 82 +21 26971 41.057383685955 82 +21 27145 41.357383685955 82 +21 27319 41.657383685955 82 +21 27493 41.957383685955 82 +21 27667 42.257383685955 82 +21 27841 42.557383685955 82 +21 28015 42.857383685955 82 +21 28189 43.157383685955 82 +21 28363 43.457383685955 82 +21 28537 43.757383685955 82 +21 28711 44.057383685955 82 +21 28881 44.357383685955 82 +21 29047 44.657383685955 82 +21 29213 44.957383685955 82 +21 29379 45.257383685955 82 +21 29545 45.557383685955 82 +21 29711 45.857383685955 82 +21 29877 46.157383685955 82 +21 30043 46.457383685955 82 +21 30209 46.757383685955 82 +21 30375 47.057383685955 82 +21 30541 47.357383685955 82 +21 30707 47.657383685955 82 +21 30873 47.957383685955 82 +21 31039 48.257383685955 82 +21 31205 48.557383685955 82 +21 31371 48.857383685955 82 +21 31537 49.157383685955 82 +21 31703 49.457383685955 82 +21 31869 49.757383685955 82 +21 32035 50.057383685955 82 +21 32201 50.357383685955 82 +21 32367 50.657383685955 82 +21 32533 50.957383685955 82 +21 32695 51.257383685955 82 +21 32857 51.557383685955 82 +21 33023 51.857383685955 82 +21 33189 52.157383685955 82 +21 33355 52.457383685955 82 +21 33521 52.757383685955 82 +21 33687 53.057383685955 82 +21 33824 53.357383685955 82 +21 33951 53.657383685955 82 +21 34078 53.957383685955 82 +21 34205 54.257383685955 82 +21 34332 54.557383685955 82 +21 34459 54.857383685955 82 +21 34586 55.157383685955 82 +21 34713 55.457383685955 82 +21 34840 55.757383685955 82 +21 34967 56.057383685955 82 +21 35094 56.357383685955 82 +21 35211 56.657383685955 82 +21 35295 56.957383685955 82 +21 35379 57.257383685955 82 +21 35463 57.557383685955 82 +21 35547 57.857383685955 82 +21 35631 58.157383685955 82 +21 35715 58.457383685955 82 +21 35799 58.757383685955 82 +21 35883 59.057383685955 82 +21 35967 59.357383685955 82 +21 36051 59.657383685955 82 +21 36135 59.957383685955 82 +21 36211 60.257383685955 82 +21 36287 60.557383685955 82 +21 36363 60.857383685955 82 +21 36439 61.157383685955 82 +21 36515 61.457383685955 82 +21 36591 61.757383685955 82 +21 36667 62.057383685955 82 +21 36743 62.357383685955 82 +21 36819 62.657383685955 82 +21 36895 62.957383685955 82 +22 64 2.657383685955 82 +22 109 2.957383685955 82 +22 162 3.257383685955 82 +22 246 3.557383685955 82 +22 330 3.857383685955 82 +22 423 4.157383685955 82 +22 520 4.457383685955 82 +22 639 4.757383685955 82 +22 758 5.057383685955 82 +22 890 5.357383685955 82 +22 1024 5.657383685955 82 +22 1182 5.957383685955 82 +22 1354 6.257383685955 82 +22 1571 6.557383685955 82 +22 1788 6.857383685955 82 +22 2005 7.157383685955 82 +22 2222 7.457383685955 82 +22 2439 7.757383685955 82 +22 2656 8.057383685955 82 +22 2877 8.357383685955 82 +22 3102 8.657383685955 82 +22 3327 8.957383685955 82 +22 3552 9.257383685955 82 +22 3777 9.557383685955 82 +22 4002 9.857383685955 82 +22 4227 10.157383685955 82 +22 4452 10.457383685955 82 +22 4685 10.757383685955 82 +22 4918 11.057383685955 82 +22 5151 11.357383685955 82 +22 5388 11.657383685955 82 +22 5629 11.957383685955 82 +22 5870 12.257383685955 82 +22 6111 12.557383685955 82 +22 6352 12.857383685955 82 +22 6593 13.157383685955 82 +22 6834 13.457383685955 82 +22 7075 13.757383685955 82 +22 7316 14.057383685955 82 +22 7557 14.357383685955 82 +22 7798 14.657383685955 82 +22 8039 14.957383685955 82 +22 8280 15.257383685955 82 +22 8521 15.557383685955 82 +22 8762 15.857383685955 82 +22 9007 16.157383685955 82 +22 9256 16.457383685955 82 +22 9505 16.757383685955 82 +22 9754 17.057383685955 82 +22 10003 17.357383685955 82 +22 10252 17.657383685955 82 +22 10497 17.957383685955 82 +22 10734 18.257383685955 82 +22 10967 18.557383685955 82 +22 11200 18.857383685955 82 +22 11433 19.157383685955 82 +22 11666 19.457383685955 82 +22 11899 19.757383685955 82 +22 12136 20.057383685955 82 +22 12377 20.357383685955 82 +22 12618 20.657383685955 82 +22 12859 20.957383685955 82 +22 13100 21.257383685955 82 +22 13341 21.557383685955 82 +22 13582 21.857383685955 82 +22 13823 22.157383685955 82 +22 14064 22.457383685955 82 +22 14305 22.757383685955 82 +22 14546 23.057383685955 82 +22 14787 23.357383685955 82 +22 15028 23.657383685955 82 +22 15269 23.957383685955 82 +22 15510 24.257383685955 82 +22 15751 24.557383685955 82 +22 15992 24.857383685955 82 +22 16233 25.157383685955 82 +22 16474 25.457383685955 82 +22 16715 25.757383685955 82 +22 16956 26.057383685955 82 +22 17197 26.357383685955 82 +22 17438 26.657383685955 82 +22 17679 26.957383685955 82 +22 17912 27.257383685955 82 +22 18145 27.557383685955 82 +22 18378 27.857383685955 82 +22 18611 28.157383685955 82 +22 18844 28.457383685955 82 +22 19077 28.757383685955 82 +22 19306 29.057383685955 82 +22 19531 29.357383685955 82 +22 19756 29.657383685955 82 +22 19981 29.957383685955 82 +22 20206 30.257383685955 82 +22 20431 30.557383685955 82 +22 20656 30.857383685955 82 +22 20885 31.157383685955 82 +22 21118 31.457383685955 82 +22 21351 31.757383685955 82 +22 21584 32.057383685955 82 +22 21817 32.357383685955 82 +22 22050 32.657383685955 82 +22 22283 32.957383685955 82 +22 22516 33.257383685955 82 +22 22749 33.557383685955 82 +22 22978 33.857383685955 82 +22 23172 34.157383685955 82 +22 23330 34.457383685955 82 +22 23488 34.757383685955 82 +22 23646 35.057383685955 82 +22 23808 35.357383685955 82 +22 23974 35.657383685955 82 +22 24140 35.957383685955 82 +22 24306 36.257383685955 82 +22 24472 36.557383685955 82 +22 24638 36.857383685955 82 +22 24804 37.157383685955 82 +22 24970 37.457383685955 82 +22 25136 37.757383685955 82 +22 25302 38.057383685955 82 +22 25468 38.357383685955 82 +22 25634 38.657383685955 82 +22 25800 38.957383685955 82 +22 25966 39.257383685955 82 +22 26132 39.557383685955 82 +22 26298 39.857383685955 82 +22 26464 40.157383685955 82 +22 26630 40.457383685955 82 +22 26800 40.757383685955 82 +22 26974 41.057383685955 82 +22 27148 41.357383685955 82 +22 27322 41.657383685955 82 +22 27496 41.957383685955 82 +22 27670 42.257383685955 82 +22 27844 42.557383685955 82 +22 28018 42.857383685955 82 +22 28192 43.157383685955 82 +22 28366 43.457383685955 82 +22 28540 43.757383685955 82 +22 28714 44.057383685955 82 +22 28884 44.357383685955 82 +22 29050 44.657383685955 82 +22 29216 44.957383685955 82 +22 29382 45.257383685955 82 +22 29548 45.557383685955 82 +22 29714 45.857383685955 82 +22 29880 46.157383685955 82 +22 30046 46.457383685955 82 +22 30212 46.757383685955 82 +22 30378 47.057383685955 82 +22 30544 47.357383685955 82 +22 30710 47.657383685955 82 +22 30876 47.957383685955 82 +22 31042 48.257383685955 82 +22 31208 48.557383685955 82 +22 31374 48.857383685955 82 +22 31540 49.157383685955 82 +22 31706 49.457383685955 82 +22 31872 49.757383685955 82 +22 32038 50.057383685955 82 +22 32204 50.357383685955 82 +22 32370 50.657383685955 82 +22 32536 50.957383685955 82 +22 32698 51.257383685955 82 +22 32860 51.557383685955 82 +22 33026 51.857383685955 82 +22 33192 52.157383685955 82 +22 33358 52.457383685955 82 +22 33524 52.757383685955 82 +22 33690 53.057383685955 82 +22 33827 53.357383685955 82 +22 33954 53.657383685955 82 +22 34081 53.957383685955 82 +22 34208 54.257383685955 82 +22 34335 54.557383685955 82 +22 34462 54.857383685955 82 +22 34589 55.157383685955 82 +22 34716 55.457383685955 82 +22 34843 55.757383685955 82 +22 34970 56.057383685955 82 +22 35097 56.357383685955 82 +22 35214 56.657383685955 82 +22 35298 56.957383685955 82 +22 35382 57.257383685955 82 +22 35466 57.557383685955 82 +22 35550 57.857383685955 82 +22 35634 58.157383685955 82 +22 35718 58.457383685955 82 +22 35802 58.757383685955 82 +22 35886 59.057383685955 82 +22 35970 59.357383685955 82 +22 36054 59.657383685955 82 +22 36138 59.957383685955 82 +22 36214 60.257383685955 82 +22 36290 60.557383685955 82 +22 36366 60.857383685955 82 +22 36442 61.157383685955 82 +22 36518 61.457383685955 82 +22 36594 61.757383685955 82 +22 36670 62.057383685955 82 +22 36746 62.357383685955 82 +22 36822 62.657383685955 82 +22 36898 62.957383685955 82 +23 65 2.657383685955 1 +23 66 2.657383685955 2 +23 68 2.657543685955 1 +23 69 2.657543685955 0 +23 110 2.957383685955 1 +23 111 2.957383685955 2 +23 113 2.957543685955 1 +23 114 2.957543685955 0 +23 163 3.257383685955 1 +23 164 3.257383685955 2 +23 167 3.257543685955 1 +23 168 3.257543685955 0 +23 247 3.557383685955 1 +23 248 3.557383685955 2 +23 251 3.557543685955 1 +23 252 3.557543685955 0 +23 331 3.857383685955 1 +23 332 3.857383685955 2 +23 335 3.857543685955 1 +23 336 3.857543685955 0 +23 424 4.157383685955 1 +23 425 4.157383685955 2 +23 429 4.157543685955 1 +23 430 4.157543685955 0 +23 521 4.457383685955 1 +23 522 4.457383685955 2 +23 526 4.457543685955 1 +23 527 4.457543685955 0 +23 640 4.757383685955 1 +23 641 4.757383685955 2 +23 645 4.757543685955 1 +23 646 4.757543685955 0 +23 759 5.057383685955 1 +23 760 5.057383685955 2 +23 764 5.057543685955 1 +23 765 5.057543685955 0 +23 891 5.357383685955 1 +23 892 5.357383685955 2 +23 897 5.357543685955 1 +23 898 5.357543685955 0 +23 1025 5.657383685955 1 +23 1026 5.657383685955 2 +23 1031 5.657543685955 1 +23 1032 5.657543685955 0 +23 1183 5.957383685955 1 +23 1184 5.957383685955 2 +23 1189 5.957543685955 1 +23 1190 5.957543685955 0 +23 1355 6.257383685955 1 +23 1356 6.257383685955 2 +23 1362 6.257543685955 1 +23 1363 6.257543685955 0 +23 1572 6.557383685955 1 +23 1573 6.557383685955 2 +23 1579 6.557543685955 1 +23 1580 6.557543685955 0 +23 1789 6.857383685955 1 +23 1790 6.857383685955 2 +23 1796 6.857543685955 1 +23 1797 6.857543685955 0 +23 2006 7.157383685955 1 +23 2007 7.157383685955 2 +23 2013 7.157543685955 1 +23 2014 7.157543685955 0 +23 2223 7.457383685955 1 +23 2224 7.457383685955 2 +23 2230 7.457543685955 1 +23 2231 7.457543685955 0 +23 2440 7.757383685955 1 +23 2441 7.757383685955 2 +23 2447 7.757543685955 1 +23 2448 7.757543685955 0 +23 2657 8.057383685955 1 +23 2658 8.057383685955 2 +23 2664 8.057543685955 1 +23 2665 8.057543685955 0 +23 2878 8.357383685955 1 +23 2879 8.357383685955 2 +23 2885 8.357543685955 1 +23 2886 8.357543685955 0 +23 3103 8.657383685955 1 +23 3104 8.657383685955 2 +23 3110 8.657543685955 1 +23 3111 8.657543685955 0 +23 3328 8.957383685955 1 +23 3329 8.957383685955 2 +23 3335 8.957543685955 1 +23 3336 8.957543685955 0 +23 3553 9.257383685955 1 +23 3554 9.257383685955 2 +23 3560 9.257543685955 1 +23 3561 9.257543685955 0 +23 3778 9.557383685955 1 +23 3779 9.557383685955 2 +23 3785 9.557543685955 1 +23 3786 9.557543685955 0 +23 4003 9.857383685955 1 +23 4004 9.857383685955 2 +23 4010 9.857543685955 1 +23 4011 9.857543685955 0 +23 4228 10.157383685955 1 +23 4229 10.157383685955 2 +23 4235 10.157543685955 1 +23 4236 10.157543685955 0 +23 4453 10.457383685955 1 +23 4454 10.457383685955 2 +23 4460 10.457543685955 1 +23 4461 10.457543685955 0 +23 4686 10.757383685955 1 +23 4687 10.757383685955 2 +23 4693 10.757543685955 1 +23 4694 10.757543685955 0 +23 4919 11.057383685955 1 +23 4920 11.057383685955 2 +23 4926 11.057543685955 1 +23 4927 11.057543685955 0 +23 5152 11.357383685955 1 +23 5153 11.357383685955 2 +23 5159 11.357543685955 1 +23 5160 11.357543685955 0 +23 5389 11.657383685955 1 +23 5390 11.657383685955 2 +23 5396 11.657543685955 1 +23 5397 11.657543685955 0 +23 5630 11.957383685955 1 +23 5631 11.957383685955 2 +23 5637 11.957543685955 1 +23 5638 11.957543685955 0 +23 5871 12.257383685955 1 +23 5872 12.257383685955 2 +23 5878 12.257543685955 1 +23 5879 12.257543685955 0 +23 6112 12.557383685955 1 +23 6113 12.557383685955 2 +23 6119 12.557543685955 1 +23 6120 12.557543685955 0 +23 6353 12.857383685955 1 +23 6354 12.857383685955 2 +23 6360 12.857543685955 1 +23 6361 12.857543685955 0 +23 6594 13.157383685955 1 +23 6595 13.157383685955 2 +23 6601 13.157543685955 1 +23 6602 13.157543685955 0 +23 6835 13.457383685955 1 +23 6836 13.457383685955 2 +23 6842 13.457543685955 1 +23 6843 13.457543685955 0 +23 7076 13.757383685955 1 +23 7077 13.757383685955 2 +23 7083 13.757543685955 1 +23 7084 13.757543685955 0 +23 7317 14.057383685955 1 +23 7318 14.057383685955 2 +23 7324 14.057543685955 1 +23 7325 14.057543685955 0 +23 7558 14.357383685955 1 +23 7559 14.357383685955 2 +23 7565 14.357543685955 1 +23 7566 14.357543685955 0 +23 7799 14.657383685955 1 +23 7800 14.657383685955 2 +23 7806 14.657543685955 1 +23 7807 14.657543685955 0 +23 8040 14.957383685955 1 +23 8041 14.957383685955 2 +23 8047 14.957543685955 1 +23 8048 14.957543685955 0 +23 8281 15.257383685955 1 +23 8282 15.257383685955 2 +23 8288 15.257543685955 1 +23 8289 15.257543685955 0 +23 8522 15.557383685955 1 +23 8523 15.557383685955 2 +23 8529 15.557543685955 1 +23 8530 15.557543685955 0 +23 8763 15.857383685955 1 +23 8764 15.857383685955 2 +23 8770 15.857543685955 1 +23 8771 15.857543685955 0 +23 9008 16.157383685955 1 +23 9009 16.157383685955 2 +23 9015 16.157543685955 1 +23 9016 16.157543685955 0 +23 9257 16.457383685955 1 +23 9258 16.457383685955 2 +23 9264 16.457543685955 1 +23 9265 16.457543685955 0 +23 9506 16.757383685955 1 +23 9507 16.757383685955 2 +23 9513 16.757543685955 1 +23 9514 16.757543685955 0 +23 9755 17.057383685955 1 +23 9756 17.057383685955 2 +23 9762 17.057543685955 1 +23 9763 17.057543685955 0 +23 10004 17.357383685955 1 +23 10005 17.357383685955 2 +23 10011 17.357543685955 1 +23 10012 17.357543685955 0 +23 10253 17.657383685955 1 +23 10254 17.657383685955 2 +23 10260 17.657543685955 1 +23 10261 17.657543685955 0 +23 10498 17.957383685955 1 +23 10499 17.957383685955 2 +23 10505 17.957543685955 1 +23 10506 17.957543685955 0 +23 10735 18.257383685955 1 +23 10736 18.257383685955 2 +23 10742 18.257543685955 1 +23 10743 18.257543685955 0 +23 10968 18.557383685955 1 +23 10969 18.557383685955 2 +23 10975 18.557543685955 1 +23 10976 18.557543685955 0 +23 11201 18.857383685955 1 +23 11202 18.857383685955 2 +23 11208 18.857543685955 1 +23 11209 18.857543685955 0 +23 11434 19.157383685955 1 +23 11435 19.157383685955 2 +23 11441 19.157543685955 1 +23 11442 19.157543685955 0 +23 11667 19.457383685955 1 +23 11668 19.457383685955 2 +23 11674 19.457543685955 1 +23 11675 19.457543685955 0 +23 11900 19.757383685955 1 +23 11901 19.757383685955 2 +23 11907 19.757543685955 1 +23 11908 19.757543685955 0 +23 12137 20.057383685955 1 +23 12138 20.057383685955 2 +23 12144 20.057543685955 1 +23 12145 20.057543685955 0 +23 12378 20.357383685955 1 +23 12379 20.357383685955 2 +23 12385 20.357543685955 1 +23 12386 20.357543685955 0 +23 12619 20.657383685955 1 +23 12620 20.657383685955 2 +23 12626 20.657543685955 1 +23 12627 20.657543685955 0 +23 12860 20.957383685955 1 +23 12861 20.957383685955 2 +23 12867 20.957543685955 1 +23 12868 20.957543685955 0 +23 13101 21.257383685955 1 +23 13102 21.257383685955 2 +23 13108 21.257543685955 1 +23 13109 21.257543685955 0 +23 13342 21.557383685955 1 +23 13343 21.557383685955 2 +23 13349 21.557543685955 1 +23 13350 21.557543685955 0 +23 13583 21.857383685955 1 +23 13584 21.857383685955 2 +23 13590 21.857543685955 1 +23 13591 21.857543685955 0 +23 13824 22.157383685955 1 +23 13825 22.157383685955 2 +23 13831 22.157543685955 1 +23 13832 22.157543685955 0 +23 14065 22.457383685955 1 +23 14066 22.457383685955 2 +23 14072 22.457543685955 1 +23 14073 22.457543685955 0 +23 14306 22.757383685955 1 +23 14307 22.757383685955 2 +23 14313 22.757543685955 1 +23 14314 22.757543685955 0 +23 14547 23.057383685955 1 +23 14548 23.057383685955 2 +23 14554 23.057543685955 1 +23 14555 23.057543685955 0 +23 14788 23.357383685955 1 +23 14789 23.357383685955 2 +23 14795 23.357543685955 1 +23 14796 23.357543685955 0 +23 15029 23.657383685955 1 +23 15030 23.657383685955 2 +23 15036 23.657543685955 1 +23 15037 23.657543685955 0 +23 15270 23.957383685955 1 +23 15271 23.957383685955 2 +23 15277 23.957543685955 1 +23 15278 23.957543685955 0 +23 15511 24.257383685955 1 +23 15512 24.257383685955 2 +23 15518 24.257543685955 1 +23 15519 24.257543685955 0 +23 15752 24.557383685955 1 +23 15753 24.557383685955 2 +23 15759 24.557543685955 1 +23 15760 24.557543685955 0 +23 15993 24.857383685955 1 +23 15994 24.857383685955 2 +23 16000 24.857543685955 1 +23 16001 24.857543685955 0 +23 16234 25.157383685955 1 +23 16235 25.157383685955 2 +23 16241 25.157543685955 1 +23 16242 25.157543685955 0 +23 16475 25.457383685955 1 +23 16476 25.457383685955 2 +23 16482 25.457543685955 1 +23 16483 25.457543685955 0 +23 16716 25.757383685955 1 +23 16717 25.757383685955 2 +23 16723 25.757543685955 1 +23 16724 25.757543685955 0 +23 16957 26.057383685955 1 +23 16958 26.057383685955 2 +23 16964 26.057543685955 1 +23 16965 26.057543685955 0 +23 17198 26.357383685955 1 +23 17199 26.357383685955 2 +23 17205 26.357543685955 1 +23 17206 26.357543685955 0 +23 17439 26.657383685955 1 +23 17440 26.657383685955 2 +23 17446 26.657543685955 1 +23 17447 26.657543685955 0 +23 17680 26.957383685955 1 +23 17681 26.957383685955 2 +23 17687 26.957543685955 1 +23 17688 26.957543685955 0 +23 17913 27.257383685955 1 +23 17914 27.257383685955 2 +23 17920 27.257543685955 1 +23 17921 27.257543685955 0 +23 18146 27.557383685955 1 +23 18147 27.557383685955 2 +23 18153 27.557543685955 1 +23 18154 27.557543685955 0 +23 18379 27.857383685955 1 +23 18380 27.857383685955 2 +23 18386 27.857543685955 1 +23 18387 27.857543685955 0 +23 18612 28.157383685955 1 +23 18613 28.157383685955 2 +23 18619 28.157543685955 1 +23 18620 28.157543685955 0 +23 18845 28.457383685955 1 +23 18846 28.457383685955 2 +23 18852 28.457543685955 1 +23 18853 28.457543685955 0 +23 19078 28.757383685955 1 +23 19079 28.757383685955 2 +23 19085 28.757543685955 1 +23 19086 28.757543685955 0 +23 19307 29.057383685955 1 +23 19308 29.057383685955 2 +23 19314 29.057543685955 1 +23 19315 29.057543685955 0 +23 19532 29.357383685955 1 +23 19533 29.357383685955 2 +23 19539 29.357543685955 1 +23 19540 29.357543685955 0 +23 19757 29.657383685955 1 +23 19758 29.657383685955 2 +23 19764 29.657543685955 1 +23 19765 29.657543685955 0 +23 19982 29.957383685955 1 +23 19983 29.957383685955 2 +23 19989 29.957543685955 1 +23 19990 29.957543685955 0 +23 20207 30.257383685955 1 +23 20208 30.257383685955 2 +23 20214 30.257543685955 1 +23 20215 30.257543685955 0 +23 20432 30.557383685955 1 +23 20433 30.557383685955 2 +23 20439 30.557543685955 1 +23 20440 30.557543685955 0 +23 20657 30.857383685955 1 +23 20658 30.857383685955 2 +23 20664 30.857543685955 1 +23 20665 30.857543685955 0 +23 20886 31.157383685955 1 +23 20887 31.157383685955 2 +23 20893 31.157543685955 1 +23 20894 31.157543685955 0 +23 21119 31.457383685955 1 +23 21120 31.457383685955 2 +23 21126 31.457543685955 1 +23 21127 31.457543685955 0 +23 21352 31.757383685955 1 +23 21353 31.757383685955 2 +23 21359 31.757543685955 1 +23 21360 31.757543685955 0 +23 21585 32.057383685955 1 +23 21586 32.057383685955 2 +23 21592 32.057543685955 1 +23 21593 32.057543685955 0 +23 21818 32.357383685955 1 +23 21819 32.357383685955 2 +23 21825 32.357543685955 1 +23 21826 32.357543685955 0 +23 22051 32.657383685955 1 +23 22052 32.657383685955 2 +23 22058 32.657543685955 1 +23 22059 32.657543685955 0 +23 22284 32.957383685955 1 +23 22285 32.957383685955 2 +23 22291 32.957543685955 1 +23 22292 32.957543685955 0 +23 22517 33.257383685955 1 +23 22518 33.257383685955 2 +23 22524 33.257543685955 1 +23 22525 33.257543685955 0 +23 22750 33.557383685955 1 +23 22751 33.557383685955 2 +23 22757 33.557543685955 1 +23 22758 33.557543685955 0 +23 22979 33.857383685955 1 +23 22980 33.857383685955 2 +23 22986 33.857543685955 1 +23 22987 33.857543685955 0 +23 23173 34.157383685955 1 +23 23174 34.157383685955 2 +23 23179 34.157543685955 1 +23 23180 34.157543685955 0 +23 23331 34.457383685955 1 +23 23332 34.457383685955 2 +23 23337 34.457543685955 1 +23 23338 34.457543685955 0 +23 23489 34.757383685955 1 +23 23490 34.757383685955 2 +23 23495 34.757543685955 1 +23 23496 34.757543685955 0 +23 23647 35.057383685955 1 +23 23648 35.057383685955 2 +23 23653 35.057543685955 1 +23 23654 35.057543685955 0 +23 23809 35.357383685955 1 +23 23810 35.357383685955 2 +23 23815 35.357543685955 1 +23 23816 35.357543685955 0 +23 23975 35.657383685955 1 +23 23976 35.657383685955 2 +23 23981 35.657543685955 1 +23 23982 35.657543685955 0 +23 24141 35.957383685955 1 +23 24142 35.957383685955 2 +23 24147 35.957543685955 1 +23 24148 35.957543685955 0 +23 24307 36.257383685955 1 +23 24308 36.257383685955 2 +23 24313 36.257543685955 1 +23 24314 36.257543685955 0 +23 24473 36.557383685955 1 +23 24474 36.557383685955 2 +23 24479 36.557543685955 1 +23 24480 36.557543685955 0 +23 24639 36.857383685955 1 +23 24640 36.857383685955 2 +23 24645 36.857543685955 1 +23 24646 36.857543685955 0 +23 24805 37.157383685955 1 +23 24806 37.157383685955 2 +23 24811 37.157543685955 1 +23 24812 37.157543685955 0 +23 24971 37.457383685955 1 +23 24972 37.457383685955 2 +23 24977 37.457543685955 1 +23 24978 37.457543685955 0 +23 25137 37.757383685955 1 +23 25138 37.757383685955 2 +23 25143 37.757543685955 1 +23 25144 37.757543685955 0 +23 25303 38.057383685955 1 +23 25304 38.057383685955 2 +23 25309 38.057543685955 1 +23 25310 38.057543685955 0 +23 25469 38.357383685955 1 +23 25470 38.357383685955 2 +23 25475 38.357543685955 1 +23 25476 38.357543685955 0 +23 25635 38.657383685955 1 +23 25636 38.657383685955 2 +23 25641 38.657543685955 1 +23 25642 38.657543685955 0 +23 25801 38.957383685955 1 +23 25802 38.957383685955 2 +23 25807 38.957543685955 1 +23 25808 38.957543685955 0 +23 25967 39.257383685955 1 +23 25968 39.257383685955 2 +23 25973 39.257543685955 1 +23 25974 39.257543685955 0 +23 26133 39.557383685955 1 +23 26134 39.557383685955 2 +23 26139 39.557543685955 1 +23 26140 39.557543685955 0 +23 26299 39.857383685955 1 +23 26300 39.857383685955 2 +23 26305 39.857543685955 1 +23 26306 39.857543685955 0 +23 26465 40.157383685955 1 +23 26466 40.157383685955 2 +23 26471 40.157543685955 1 +23 26472 40.157543685955 0 +23 26631 40.457383685955 1 +23 26632 40.457383685955 2 +23 26637 40.457543685955 1 +23 26638 40.457543685955 0 +23 26801 40.757383685955 1 +23 26802 40.757383685955 2 +23 26807 40.757543685955 1 +23 26808 40.757543685955 0 +23 26975 41.057383685955 1 +23 26976 41.057383685955 2 +23 26981 41.057543685955 1 +23 26982 41.057543685955 0 +23 27149 41.357383685955 1 +23 27150 41.357383685955 2 +23 27155 41.357543685955 1 +23 27156 41.357543685955 0 +23 27323 41.657383685955 1 +23 27324 41.657383685955 2 +23 27329 41.657543685955 1 +23 27330 41.657543685955 0 +23 27497 41.957383685955 1 +23 27498 41.957383685955 2 +23 27503 41.957543685955 1 +23 27504 41.957543685955 0 +23 27671 42.257383685955 1 +23 27672 42.257383685955 2 +23 27677 42.257543685955 1 +23 27678 42.257543685955 0 +23 27845 42.557383685955 1 +23 27846 42.557383685955 2 +23 27851 42.557543685955 1 +23 27852 42.557543685955 0 +23 28019 42.857383685955 1 +23 28020 42.857383685955 2 +23 28025 42.857543685955 1 +23 28026 42.857543685955 0 +23 28193 43.157383685955 1 +23 28194 43.157383685955 2 +23 28199 43.157543685955 1 +23 28200 43.157543685955 0 +23 28367 43.457383685955 1 +23 28368 43.457383685955 2 +23 28373 43.457543685955 1 +23 28374 43.457543685955 0 +23 28541 43.757383685955 1 +23 28542 43.757383685955 2 +23 28547 43.757543685955 1 +23 28548 43.757543685955 0 +23 28715 44.057383685955 1 +23 28716 44.057383685955 2 +23 28721 44.057543685955 1 +23 28722 44.057543685955 0 +23 28885 44.357383685955 1 +23 28886 44.357383685955 2 +23 28891 44.357543685955 1 +23 28892 44.357543685955 0 +23 29051 44.657383685955 1 +23 29052 44.657383685955 2 +23 29057 44.657543685955 1 +23 29058 44.657543685955 0 +23 29217 44.957383685955 1 +23 29218 44.957383685955 2 +23 29223 44.957543685955 1 +23 29224 44.957543685955 0 +23 29383 45.257383685955 1 +23 29384 45.257383685955 2 +23 29389 45.257543685955 1 +23 29390 45.257543685955 0 +23 29549 45.557383685955 1 +23 29550 45.557383685955 2 +23 29555 45.557543685955 1 +23 29556 45.557543685955 0 +23 29715 45.857383685955 1 +23 29716 45.857383685955 2 +23 29721 45.857543685955 1 +23 29722 45.857543685955 0 +23 29881 46.157383685955 1 +23 29882 46.157383685955 2 +23 29887 46.157543685955 1 +23 29888 46.157543685955 0 +23 30047 46.457383685955 1 +23 30048 46.457383685955 2 +23 30053 46.457543685955 1 +23 30054 46.457543685955 0 +23 30213 46.757383685955 1 +23 30214 46.757383685955 2 +23 30219 46.757543685955 1 +23 30220 46.757543685955 0 +23 30379 47.057383685955 1 +23 30380 47.057383685955 2 +23 30385 47.057543685955 1 +23 30386 47.057543685955 0 +23 30545 47.357383685955 1 +23 30546 47.357383685955 2 +23 30551 47.357543685955 1 +23 30552 47.357543685955 0 +23 30711 47.657383685955 1 +23 30712 47.657383685955 2 +23 30717 47.657543685955 1 +23 30718 47.657543685955 0 +23 30877 47.957383685955 1 +23 30878 47.957383685955 2 +23 30883 47.957543685955 1 +23 30884 47.957543685955 0 +23 31043 48.257383685955 1 +23 31044 48.257383685955 2 +23 31049 48.257543685955 1 +23 31050 48.257543685955 0 +23 31209 48.557383685955 1 +23 31210 48.557383685955 2 +23 31215 48.557543685955 1 +23 31216 48.557543685955 0 +23 31375 48.857383685955 1 +23 31376 48.857383685955 2 +23 31381 48.857543685955 1 +23 31382 48.857543685955 0 +23 31541 49.157383685955 1 +23 31542 49.157383685955 2 +23 31547 49.157543685955 1 +23 31548 49.157543685955 0 +23 31707 49.457383685955 1 +23 31708 49.457383685955 2 +23 31713 49.457543685955 1 +23 31714 49.457543685955 0 +23 31873 49.757383685955 1 +23 31874 49.757383685955 2 +23 31879 49.757543685955 1 +23 31880 49.757543685955 0 +23 32039 50.057383685955 1 +23 32040 50.057383685955 2 +23 32045 50.057543685955 1 +23 32046 50.057543685955 0 +23 32205 50.357383685955 1 +23 32206 50.357383685955 2 +23 32211 50.357543685955 1 +23 32212 50.357543685955 0 +23 32371 50.657383685955 1 +23 32372 50.657383685955 2 +23 32377 50.657543685955 1 +23 32378 50.657543685955 0 +23 32537 50.957383685955 1 +23 32538 50.957383685955 2 +23 32543 50.957543685955 1 +23 32544 50.957543685955 0 +23 32699 51.257383685955 1 +23 32700 51.257383685955 2 +23 32705 51.257543685955 1 +23 32706 51.257543685955 0 +23 32861 51.557383685955 1 +23 32862 51.557383685955 2 +23 32867 51.557543685955 1 +23 32868 51.557543685955 0 +23 33027 51.857383685955 1 +23 33028 51.857383685955 2 +23 33033 51.857543685955 1 +23 33034 51.857543685955 0 +23 33193 52.157383685955 1 +23 33194 52.157383685955 2 +23 33199 52.157543685955 1 +23 33200 52.157543685955 0 +23 33359 52.457383685955 1 +23 33360 52.457383685955 2 +23 33365 52.457543685955 1 +23 33366 52.457543685955 0 +23 33525 52.757383685955 1 +23 33526 52.757383685955 2 +23 33531 52.757543685955 1 +23 33532 52.757543685955 0 +23 33691 53.057383685955 1 +23 33692 53.057383685955 2 +23 33697 53.057543685955 1 +23 33698 53.057543685955 0 +23 33828 53.357383685955 1 +23 33829 53.357383685955 2 +23 33833 53.357543685955 1 +23 33834 53.357543685955 0 +23 33955 53.657383685955 1 +23 33956 53.657383685955 2 +23 33960 53.657543685955 1 +23 33961 53.657543685955 0 +23 34082 53.957383685955 1 +23 34083 53.957383685955 2 +23 34087 53.957543685955 1 +23 34088 53.957543685955 0 +23 34209 54.257383685955 1 +23 34210 54.257383685955 2 +23 34214 54.257543685955 1 +23 34215 54.257543685955 0 +23 34336 54.557383685955 1 +23 34337 54.557383685955 2 +23 34341 54.557543685955 1 +23 34342 54.557543685955 0 +23 34463 54.857383685955 1 +23 34464 54.857383685955 2 +23 34468 54.857543685955 1 +23 34469 54.857543685955 0 +23 34590 55.157383685955 1 +23 34591 55.157383685955 2 +23 34595 55.157543685955 1 +23 34596 55.157543685955 0 +23 34717 55.457383685955 1 +23 34718 55.457383685955 2 +23 34722 55.457543685955 1 +23 34723 55.457543685955 0 +23 34844 55.757383685955 1 +23 34845 55.757383685955 2 +23 34849 55.757543685955 1 +23 34850 55.757543685955 0 +23 34971 56.057383685955 1 +23 34972 56.057383685955 2 +23 34976 56.057543685955 1 +23 34977 56.057543685955 0 +23 35098 56.357383685955 1 +23 35099 56.357383685955 2 +23 35103 56.357543685955 1 +23 35104 56.357543685955 0 +23 35215 56.657383685955 1 +23 35216 56.657383685955 2 +23 35219 56.657543685955 1 +23 35220 56.657543685955 0 +23 35299 56.957383685955 1 +23 35300 56.957383685955 2 +23 35303 56.957543685955 1 +23 35304 56.957543685955 0 +23 35383 57.257383685955 1 +23 35384 57.257383685955 2 +23 35387 57.257543685955 1 +23 35388 57.257543685955 0 +23 35467 57.557383685955 1 +23 35468 57.557383685955 2 +23 35471 57.557543685955 1 +23 35472 57.557543685955 0 +23 35551 57.857383685955 1 +23 35552 57.857383685955 2 +23 35555 57.857543685955 1 +23 35556 57.857543685955 0 +23 35635 58.157383685955 1 +23 35636 58.157383685955 2 +23 35639 58.157543685955 1 +23 35640 58.157543685955 0 +23 35719 58.457383685955 1 +23 35720 58.457383685955 2 +23 35723 58.457543685955 1 +23 35724 58.457543685955 0 +23 35803 58.757383685955 1 +23 35804 58.757383685955 2 +23 35807 58.757543685955 1 +23 35808 58.757543685955 0 +23 35887 59.057383685955 1 +23 35888 59.057383685955 2 +23 35891 59.057543685955 1 +23 35892 59.057543685955 0 +23 35971 59.357383685955 1 +23 35972 59.357383685955 2 +23 35975 59.357543685955 1 +23 35976 59.357543685955 0 +23 36055 59.657383685955 1 +23 36056 59.657383685955 2 +23 36059 59.657543685955 1 +23 36060 59.657543685955 0 +23 36139 59.957383685955 1 +23 36140 59.957383685955 2 +23 36143 59.957543685955 1 +23 36144 59.957543685955 0 +23 36215 60.257383685955 1 +23 36216 60.257383685955 2 +23 36219 60.257543685955 1 +23 36220 60.257543685955 0 +23 36291 60.557383685955 1 +23 36292 60.557383685955 2 +23 36295 60.557543685955 1 +23 36296 60.557543685955 0 +23 36367 60.857383685955 1 +23 36368 60.857383685955 2 +23 36371 60.857543685955 1 +23 36372 60.857543685955 0 +23 36443 61.157383685955 1 +23 36444 61.157383685955 2 +23 36447 61.157543685955 1 +23 36448 61.157543685955 0 +23 36519 61.457383685955 1 +23 36520 61.457383685955 2 +23 36523 61.457543685955 1 +23 36524 61.457543685955 0 +23 36595 61.757383685955 1 +23 36596 61.757383685955 2 +23 36599 61.757543685955 1 +23 36600 61.757543685955 0 +23 36671 62.057383685955 1 +23 36672 62.057383685955 2 +23 36675 62.057543685955 1 +23 36676 62.057543685955 0 +23 36747 62.357383685955 1 +23 36748 62.357383685955 2 +23 36751 62.357543685955 1 +23 36752 62.357543685955 0 +23 36823 62.657383685955 1 +23 36824 62.657383685955 2 +23 36827 62.657543685955 1 +23 36828 62.657543685955 0 +23 36899 62.957383685955 1 +23 36900 62.957383685955 2 +23 36903 62.957543685955 1 +23 36904 62.957543685955 0 +26 124 3.1 0 +26 124 3.1 2 +26 223 3.531276162993 3 +26 228 3.531436162993 2 +26 307 3.831276162993 3 +26 312 3.831436162993 2 +26 394 4.131276162993 3 +26 400 4.131436162993 2 +26 491 4.431276162993 3 +26 497 4.431436162993 2 +26 610 4.731276162993 3 +26 616 4.731436162993 2 +26 729 5.031276162993 3 +26 735 5.031436162993 2 +26 859 5.331276162993 3 +26 866 5.331436162993 2 +26 993 5.631276162993 3 +26 1000 5.631436162993 2 +26 1151 5.931276162993 3 +26 1158 5.931436162993 2 +26 1317 6.231276162993 3 +26 1325 6.231436162993 2 +26 1533 6.531276162993 3 +26 1541 6.531436162993 2 +26 1750 6.831276162993 3 +26 1758 6.831436162993 2 +26 1967 7.131276162993 3 +26 1975 7.131436162993 2 +26 2184 7.431276162993 3 +26 2192 7.431436162993 2 +26 2401 7.731276162993 3 +26 2409 7.731436162993 2 +26 2618 8.031276162993 3 +26 2626 8.031436162993 2 +26 2839 8.331276162993 3 +26 2847 8.331436162993 2 +26 3064 8.631276162993 3 +26 3072 8.631436162993 2 +26 3289 8.931276162993 3 +26 3297 8.931436162993 2 +26 3514 9.231276162993 3 +26 3522 9.231436162993 2 +26 3739 9.531276162993 3 +26 3747 9.531436162993 2 +26 3964 9.831276162993 3 +26 3972 9.831436162993 2 +26 4189 10.131276162993 3 +26 4197 10.131436162993 2 +26 4414 10.431276162993 3 +26 4422 10.431436162993 2 +26 4647 10.731276162993 3 +26 4655 10.731436162993 2 +26 4880 11.031276162993 3 +26 4888 11.031436162993 2 +26 5113 11.331276162993 3 +26 5121 11.331436162993 2 +26 5346 11.631276162993 3 +26 5354 11.631436162993 2 +26 5587 11.931276162993 3 +26 5595 11.931436162993 2 +26 5828 12.231276162993 3 +26 5836 12.231436162993 2 +26 6069 12.531276162993 3 +26 6077 12.531436162993 2 +26 6310 12.831276162993 3 +26 6318 12.831436162993 2 +26 6551 13.131276162993 3 +26 6559 13.131436162993 2 +26 6792 13.431276162993 3 +26 6800 13.431436162993 2 +26 7033 13.731276162993 3 +26 7041 13.731436162993 2 +26 7274 14.031276162993 3 +26 7282 14.031436162993 2 +26 7515 14.331276162993 3 +26 7523 14.331436162993 2 +26 7756 14.631276162993 3 +26 7764 14.631436162993 2 +26 7997 14.931276162993 3 +26 8005 14.931436162993 2 +26 8238 15.231276162993 3 +26 8246 15.231436162993 2 +26 8479 15.531276162993 3 +26 8487 15.531436162993 2 +26 8720 15.831276162993 3 +26 8728 15.831436162993 2 +26 8965 16.131276162993 3 +26 8973 16.131436162993 2 +26 9214 16.431276162993 3 +26 9222 16.431436162993 2 +26 9463 16.731276162993 3 +26 9471 16.731436162993 2 +26 9712 17.031276162993 3 +26 9720 17.031436162993 2 +26 9961 17.331276162993 3 +26 9969 17.331436162993 2 +26 10210 17.631276162993 3 +26 10218 17.631436162993 2 +26 10455 17.931276162993 3 +26 10463 17.931436162993 2 +26 10692 18.231276162993 3 +26 10700 18.231436162993 2 +26 10925 18.531276162993 3 +26 10933 18.531436162993 2 +26 11158 18.831276162993 3 +26 11166 18.831436162993 2 +26 11391 19.131276162993 3 +26 11399 19.131436162993 2 +26 11624 19.431276162993 3 +26 11632 19.431436162993 2 +26 11857 19.731276162993 3 +26 11865 19.731436162993 2 +26 12094 20.031276162993 3 +26 12102 20.031436162993 2 +26 12335 20.331276162993 3 +26 12343 20.331436162993 2 +26 12576 20.631276162993 3 +26 12584 20.631436162993 2 +26 12817 20.931276162993 3 +26 12825 20.931436162993 2 +26 13058 21.231276162993 3 +26 13066 21.231436162993 2 +26 13299 21.531276162993 3 +26 13307 21.531436162993 2 +26 13540 21.831276162993 3 +26 13548 21.831436162993 2 +26 13781 22.131276162993 3 +26 13789 22.131436162993 2 +26 14022 22.431276162993 3 +26 14030 22.431436162993 2 +26 14263 22.731276162993 3 +26 14271 22.731436162993 2 +26 14504 23.031276162993 3 +26 14512 23.031436162993 2 +26 14745 23.331276162993 3 +26 14753 23.331436162993 2 +26 14986 23.631276162993 3 +26 14994 23.631436162993 2 +26 15227 23.931276162993 3 +26 15235 23.931436162993 2 +26 15468 24.231276162993 3 +26 15476 24.231436162993 2 +26 15709 24.531276162993 3 +26 15717 24.531436162993 2 +26 15950 24.831276162993 3 +26 15958 24.831436162993 2 +26 16191 25.131276162993 3 +26 16199 25.131436162993 2 +26 16432 25.431276162993 3 +26 16440 25.431436162993 2 +26 16673 25.731276162993 3 +26 16681 25.731436162993 2 +26 16914 26.031276162993 3 +26 16922 26.031436162993 2 +26 17155 26.331276162993 3 +26 17163 26.331436162993 2 +26 17396 26.631276162993 3 +26 17404 26.631436162993 2 +26 17637 26.931276162993 3 +26 17645 26.931436162993 2 +26 17870 27.231276162993 3 +26 17878 27.231436162993 2 +26 18103 27.531276162993 3 +26 18111 27.531436162993 2 +26 18336 27.831276162993 3 +26 18344 27.831436162993 2 +26 18569 28.131276162993 3 +26 18577 28.131436162993 2 +26 18802 28.431276162993 3 +26 18810 28.431436162993 2 +26 19035 28.731276162993 3 +26 19043 28.731436162993 2 +26 19268 29.031276162993 3 +26 19276 29.031436162993 2 +26 19493 29.331276162993 3 +26 19501 29.331436162993 2 +26 19718 29.631276162993 3 +26 19726 29.631436162993 2 +26 19943 29.931276162993 3 +26 19951 29.931436162993 2 +26 20168 30.231276162993 3 +26 20176 30.231436162993 2 +26 20393 30.531276162993 3 +26 20401 30.531436162993 2 +26 20618 30.831276162993 3 +26 20626 30.831436162993 2 +26 20847 31.131276162993 3 +26 20855 31.131436162993 2 +26 21080 31.431276162993 3 +26 21088 31.431436162993 2 +26 21313 31.731276162993 3 +26 21321 31.731436162993 2 +26 21546 32.031276162993 3 +26 21554 32.031436162993 2 +26 21779 32.331276162993 3 +26 21787 32.331436162993 2 +26 22012 32.631276162993 3 +26 22020 32.631436162993 2 +26 22245 32.931276162993 3 +26 22253 32.931436162993 2 +26 22478 33.231276162993 3 +26 22486 33.231436162993 2 +26 22711 33.531276162993 3 +26 22719 33.531436162993 2 +26 22940 33.831276162993 3 +26 22948 33.831436162993 2 +26 23144 34.131276162993 3 +26 23151 34.131436162993 2 +26 23302 34.431276162993 3 +26 23309 34.431436162993 2 +26 23460 34.731276162993 3 +26 23467 34.731436162993 2 +26 23618 35.031276162993 3 +26 23625 35.031436162993 2 +26 23780 35.331276162993 3 +26 23787 35.331436162993 2 +26 23946 35.631276162993 3 +26 23953 35.631436162993 2 +26 24112 35.931276162993 3 +26 24119 35.931436162993 2 +26 24278 36.231276162993 3 +26 24285 36.231436162993 2 +26 24444 36.531276162993 3 +26 24451 36.531436162993 2 +26 24610 36.831276162993 3 +26 24617 36.831436162993 2 +26 24776 37.131276162993 3 +26 24783 37.131436162993 2 +26 24942 37.431276162993 3 +26 24949 37.431436162993 2 +26 25108 37.731276162993 3 +26 25115 37.731436162993 2 +26 25274 38.031276162993 3 +26 25281 38.031436162993 2 +26 25440 38.331276162993 3 +26 25447 38.331436162993 2 +26 25606 38.631276162993 3 +26 25613 38.631436162993 2 +26 25772 38.931276162993 3 +26 25779 38.931436162993 2 +26 25938 39.231276162993 3 +26 25945 39.231436162993 2 +26 26104 39.531276162993 3 +26 26111 39.531436162993 2 +26 26270 39.831276162993 3 +26 26277 39.831436162993 2 +26 26436 40.131276162993 3 +26 26443 40.131436162993 2 +26 26602 40.431276162993 3 +26 26609 40.431436162993 2 +26 26772 40.731276162993 3 +26 26779 40.731436162993 2 +26 26946 41.031276162993 3 +26 26953 41.031436162993 2 +26 27120 41.331276162993 3 +26 27127 41.331436162993 2 +26 27294 41.631276162993 3 +26 27301 41.631436162993 2 +26 27468 41.931276162993 3 +26 27475 41.931436162993 2 +26 27642 42.231276162993 3 +26 27649 42.231436162993 2 +26 27816 42.531276162993 3 +26 27823 42.531436162993 2 +26 27990 42.831276162993 3 +26 27997 42.831436162993 2 +26 28164 43.131276162993 3 +26 28171 43.131436162993 2 +26 28338 43.431276162993 3 +26 28345 43.431436162993 2 +26 28512 43.731276162993 3 +26 28519 43.731436162993 2 +26 28686 44.031276162993 3 +26 28693 44.031436162993 2 +26 28860 44.331276162993 3 +26 28867 44.331436162993 2 +26 29026 44.631276162993 3 +26 29033 44.631436162993 2 +26 29192 44.931276162993 3 +26 29199 44.931436162993 2 +26 29358 45.231276162993 3 +26 29365 45.231436162993 2 +26 29524 45.531276162993 3 +26 29531 45.531436162993 2 +26 29690 45.831276162993 3 +26 29697 45.831436162993 2 +26 29856 46.131276162993 3 +26 29863 46.131436162993 2 +26 30022 46.431276162993 3 +26 30029 46.431436162993 2 +26 30188 46.731276162993 3 +26 30195 46.731436162993 2 +26 30354 47.031276162993 3 +26 30361 47.031436162993 2 +26 30520 47.331276162993 3 +26 30527 47.331436162993 2 +26 30686 47.631276162993 3 +26 30693 47.631436162993 2 +26 30852 47.931276162993 3 +26 30859 47.931436162993 2 +26 31018 48.231276162993 3 +26 31025 48.231436162993 2 +26 31184 48.531276162993 3 +26 31191 48.531436162993 2 +26 31350 48.831276162993 3 +26 31357 48.831436162993 2 +26 31516 49.131276162993 3 +26 31523 49.131436162993 2 +26 31682 49.431276162993 3 +26 31689 49.431436162993 2 +26 31848 49.731276162993 3 +26 31855 49.731436162993 2 +26 32014 50.031276162993 3 +26 32021 50.031436162993 2 +26 32180 50.331276162993 3 +26 32187 50.331436162993 2 +26 32346 50.631276162993 3 +26 32353 50.631436162993 2 +26 32512 50.931276162993 3 +26 32519 50.931436162993 2 +26 32674 51.231276162993 3 +26 32681 51.231436162993 2 +26 32832 51.531276162993 3 +26 32839 51.531436162993 2 +26 32998 51.831276162993 3 +26 33005 51.831436162993 2 +26 33164 52.131276162993 3 +26 33171 52.131436162993 2 +26 33330 52.431276162993 3 +26 33337 52.431436162993 2 +26 33496 52.731276162993 3 +26 33503 52.731436162993 2 +26 33662 53.031276162993 3 +26 33669 53.031436162993 2 +26 33801 53.331276162993 3 +26 33807 53.331436162993 2 +26 33928 53.631276162993 3 +26 33934 53.631436162993 2 +26 34055 53.931276162993 3 +26 34061 53.931436162993 2 +26 34182 54.231276162993 3 +26 34188 54.231436162993 2 +26 34309 54.531276162993 3 +26 34315 54.531436162993 2 +26 34436 54.831276162993 3 +26 34442 54.831436162993 2 +26 34563 55.131276162993 3 +26 34569 55.131436162993 2 +26 34690 55.431276162993 3 +26 34696 55.431436162993 2 +26 34817 55.731276162993 3 +26 34823 55.731436162993 2 +26 34944 56.031276162993 3 +26 34950 56.031436162993 2 +26 35071 56.331276162993 3 +26 35077 56.331436162993 2 +26 35190 56.631276162993 3 +26 35195 56.631436162993 2 +26 35274 56.931276162993 3 +26 35279 56.931436162993 2 +26 35358 57.231276162993 3 +26 35363 57.231436162993 2 +26 35442 57.531276162993 3 +26 35447 57.531436162993 2 +26 35526 57.831276162993 3 +26 35531 57.831436162993 2 +26 35610 58.131276162993 3 +26 35615 58.131436162993 2 +26 35694 58.431276162993 3 +26 35699 58.431436162993 2 +26 35778 58.731276162993 3 +26 35783 58.731436162993 2 +26 35862 59.031276162993 3 +26 35867 59.031436162993 2 +26 35946 59.331276162993 3 +26 35951 59.331436162993 2 +26 36030 59.631276162993 3 +26 36035 59.631436162993 2 +26 36114 59.931276162993 3 +26 36119 59.931436162993 2 +26 36194 60.231276162993 3 +26 36199 60.231436162993 2 +26 36270 60.531276162993 3 +26 36275 60.531436162993 2 +26 36346 60.831276162993 3 +26 36351 60.831436162993 2 +26 36422 61.131276162993 3 +26 36427 61.131436162993 2 +26 36498 61.431276162993 3 +26 36503 61.431436162993 2 +26 36574 61.731276162993 3 +26 36579 61.731436162993 2 +26 36650 62.031276162993 3 +26 36655 62.031436162993 2 +26 36726 62.331276162993 3 +26 36731 62.331436162993 2 +26 36802 62.631276162993 3 +26 36807 62.631436162993 2 +26 36878 62.931276162993 3 +26 36883 62.931436162993 2 +27 124 3.1 180 +28 124 3.1 1 +28 142 3.21455740282 3 +28 150 3.21471740282 1 +28 166 3.257384424448 3 +28 174 3.257544424448 1 +28 202 3.514557399314 3 +28 210 3.514717399314 1 +28 223 3.531276162993 0 +28 228 3.531436162993 1 +28 250 3.557384424342 3 +28 258 3.557544424342 1 +28 286 3.81455739499 3 +28 294 3.81471739499 1 +28 307 3.831276162993 0 +28 312 3.831436162993 1 +28 334 3.857384424025 3 +28 342 3.857544424025 1 +28 371 4.11455739006 3 +28 380 4.11471739006 1 +28 394 4.131276162993 0 +28 400 4.131436162993 1 +28 427 4.157384423703 3 +28 436 4.157544423703 1 +28 468 4.414557384462 3 +28 477 4.414717384462 1 +28 491 4.431276162993 0 +28 497 4.431436162993 1 +28 524 4.457384423373 3 +28 533 4.457544423373 1 +28 554 4.54399363691 3 +28 559 4.54415363691 1 +28 587 4.714557378402 3 +28 596 4.714717378402 1 +28 610 4.731276162993 0 +28 616 4.731436162993 1 +28 643 4.757384423069 3 +28 652 4.757544423069 1 +28 673 4.843993636799 3 +28 678 4.844153636799 1 +28 706 5.014557371745 3 +28 715 5.014717371745 1 +28 729 5.031276162993 0 +28 735 5.031436162993 1 +28 762 5.057384422748 3 +28 771 5.057544422748 1 +28 794 5.143993636284 3 +28 804 5.144153636284 1 +28 834 5.31455736441 3 +28 844 5.31471736441 1 +28 859 5.331276162993 0 +28 866 5.331436162993 1 +28 894 5.357384422438 3 +28 904 5.357544422438 1 +28 928 5.443993635357 3 +28 938 5.444153635357 1 +28 968 5.614557356527 3 +28 978 5.614717356527 1 +28 993 5.631276162993 0 +28 1000 5.631436162993 1 +28 1028 5.657384422133 3 +28 1038 5.657544422133 1 +28 1086 5.743993634123 3 +28 1096 5.744153634123 1 +28 1126 5.914557347995 3 +28 1136 5.914717347995 1 +28 1151 5.931276162993 0 +28 1158 5.931436162993 1 +28 1186 5.957384421828 3 +28 1196 5.957544421828 1 +28 1244 6.043993632613 3 +28 1254 6.044153632613 1 +28 1287 6.214557338841 3 +28 1302 6.214717338841 1 +28 1317 6.231276162993 0 +28 1325 6.231436162993 1 +28 1359 6.257384421526 3 +28 1374 6.257544421526 1 +28 1425 6.343993630796 3 +28 1436 6.344153630796 1 +28 1470 6.514557329163 3 +28 1485 6.514717329163 1 +28 1502 6.524398906174 3 +28 1513 6.524558906174 1 +28 1533 6.531276162993 0 +28 1541 6.531436162993 1 +28 1576 6.557384421227 3 +28 1591 6.557544421227 1 +28 1642 6.643993628669 3 +28 1653 6.644153628669 1 +28 1687 6.81455731881 3 +28 1702 6.81471731881 1 +28 1719 6.824398906154 3 +28 1730 6.824558906154 1 +28 1750 6.831276162993 0 +28 1758 6.831436162993 1 +28 1793 6.857384420921 3 +28 1808 6.857544420921 1 +28 1859 6.943993626289 3 +28 1870 6.944153626289 1 +28 1904 7.114557307827 3 +28 1919 7.114717307827 1 +28 1936 7.124398906151 3 +28 1947 7.124558906151 1 +28 1967 7.131276162993 0 +28 1975 7.131436162993 1 +28 2010 7.157384420615 3 +28 2025 7.157544420615 1 +28 2076 7.243993623629 3 +28 2087 7.244153623629 1 +28 2121 7.414557296389 3 +28 2136 7.414717296389 1 +28 2153 7.424398906139 3 +28 2164 7.424558906139 1 +28 2184 7.431276162993 0 +28 2192 7.431436162993 1 +28 2227 7.45738442031 3 +28 2242 7.45754442031 1 +28 2293 7.543993620729 3 +28 2304 7.544153620729 1 +28 2338 7.714557284487 3 +28 2353 7.714717284487 1 +28 2370 7.72439890614 3 +28 2381 7.72455890614 1 +28 2401 7.731276162993 0 +28 2409 7.731436162993 1 +28 2444 7.757384420012 3 +28 2459 7.757544420012 1 +28 2510 7.843993617626 3 +28 2521 7.844153617626 1 +28 2555 8.014557271989 3 +28 2570 8.014717271989 1 +28 2587 8.024398906138 3 +28 2598 8.024558906138 1 +28 2618 8.031276162993 0 +28 2626 8.031436162993 1 +28 2661 8.057384419724 3 +28 2676 8.057544419724 1 +28 2727 8.143993614294 3 +28 2738 8.144153614294 1 +28 2772 8.314557258778 3 +28 2787 8.314717258778 1 +28 2804 8.324398906149 3 +28 2815 8.324558906149 1 +28 2839 8.331276162993 0 +28 2847 8.331436162993 1 +28 2882 8.357384419443 3 +28 2897 8.357544419443 1 +28 2948 8.443993610746 3 +28 2959 8.444153610746 1 +28 2997 8.614557244982 3 +28 3012 8.614717244982 1 +28 3029 8.624398906137 3 +28 3040 8.624558906137 1 +28 3064 8.631276162993 0 +28 3072 8.631436162993 1 +28 3107 8.657384419152 3 +28 3122 8.657544419152 1 +28 3173 8.74399360708 3 +28 3184 8.74415360708 1 +28 3221 8.91455723058 3 +28 3232 8.91471723058 1 +28 3254 8.924398906106 3 +28 3265 8.924558906106 1 +28 3289 8.931276162993 0 +28 3297 8.931436162993 1 +28 3332 8.957384418855 3 +28 3347 8.957544418855 1 +28 3398 9.043993603305 3 +28 3409 9.044153603305 1 +28 3446 9.214557215656 3 +28 3457 9.214717215656 1 +28 3479 9.224398906123 3 +28 3490 9.224558906123 1 +28 3514 9.231276162993 0 +28 3522 9.231436162993 1 +28 3557 9.257384418583 3 +28 3572 9.257544418583 1 +28 3623 9.343993599436 3 +28 3634 9.344153599436 1 +28 3671 9.514557200231 3 +28 3682 9.514717200231 1 +28 3704 9.524398906117 3 +28 3715 9.524558906117 1 +28 3739 9.531276162993 0 +28 3747 9.531436162993 1 +28 3782 9.557384418309 3 +28 3797 9.557544418309 1 +28 3848 9.643993595572 3 +28 3859 9.644153595572 1 +28 3896 9.814557184553 3 +28 3907 9.814717184553 1 +28 3929 9.824398906116 3 +28 3940 9.824558906116 1 +28 3964 9.831276162993 0 +28 3972 9.831436162993 1 +28 4007 9.857384418037 3 +28 4022 9.857544418037 1 +28 4073 9.943993591684 3 +28 4084 9.944153591684 1 +28 4121 10.114557168884 3 +28 4132 10.114717168884 1 +28 4154 10.124398906115 3 +28 4165 10.124558906115 1 +28 4189 10.131276162993 0 +28 4197 10.131436162993 1 +28 4232 10.15738441777 3 +28 4247 10.15754441777 1 +28 4298 10.243993587823 3 +28 4309 10.244153587823 1 +28 4346 10.414557153241 3 +28 4357 10.414717153241 1 +28 4379 10.424398906104 3 +28 4390 10.424558906104 1 +28 4414 10.431276162993 0 +28 4422 10.431436162993 1 +28 4457 10.457384417494 3 +28 4472 10.457544417494 1 +28 4523 10.543993584071 3 +28 4534 10.544153584071 1 +28 4575 10.7145571376 3 +28 4586 10.7147171376 1 +28 4612 10.724398906116 3 +28 4623 10.724558906116 1 +28 4647 10.731276162993 0 +28 4655 10.731436162993 1 +28 4690 10.757384417221 3 +28 4705 10.757544417221 1 +28 4756 10.843993580594 3 +28 4767 10.844153580594 1 +28 4808 11.014557121962 3 +28 4819 11.014717121962 1 +28 4845 11.024398906108 3 +28 4856 11.024558906108 1 +28 4880 11.031276162993 0 +28 4888 11.031436162993 1 +28 4923 11.057384416961 3 +28 4938 11.057544416961 1 +28 4989 11.1439935782 3 +28 5000 11.1441535782 1 +28 5041 11.314557106356 3 +28 5052 11.314717106356 1 +28 5078 11.324398906123 3 +28 5089 11.324558906123 1 +28 5113 11.331276162993 0 +28 5121 11.331436162993 1 +28 5156 11.357384416695 3 +28 5171 11.357544416695 1 +28 5189 11.393586261354 2 +28 5200 11.393746261354 1 +28 5222 11.443993576825 3 +28 5233 11.444153576825 1 +28 5274 11.614557090743 3 +28 5285 11.614717090743 1 +28 5311 11.624398906133 3 +28 5322 11.624558906133 1 +28 5346 11.631276162993 0 +28 5354 11.631436162993 1 +28 5393 11.657384416441 3 +28 5408 11.657544416441 1 +28 5426 11.693586259603 3 +28 5437 11.693746259603 1 +28 5463 11.743993576355 3 +28 5474 11.744153576355 1 +28 5515 11.914557075093 3 +28 5526 11.914717075093 1 +28 5552 11.924398906131 3 +28 5563 11.924558906131 1 +28 5587 11.931276162993 0 +28 5595 11.931436162993 1 +28 5634 11.957384416181 3 +28 5649 11.957544416181 1 +28 5667 11.993586257957 3 +28 5678 11.993746257957 1 +28 5704 12.043993576682 3 +28 5715 12.044153576682 1 +28 5756 12.214557059446 3 +28 5767 12.214717059446 1 +28 5793 12.22439890615 3 +28 5804 12.22455890615 1 +28 5828 12.231276162993 0 +28 5836 12.231436162993 1 +28 5875 12.25738441593 3 +28 5890 12.25754441593 1 +28 5908 12.293586256438 3 +28 5919 12.293746256438 1 +28 5945 12.343993577342 3 +28 5956 12.344153577342 1 +28 5997 12.514557043815 3 +28 6008 12.514717043815 1 +28 6034 12.524398906142 3 +28 6045 12.524558906142 1 +28 6069 12.531276162993 0 +28 6077 12.531436162993 1 +28 6116 12.557384415683 3 +28 6131 12.557544415683 1 +28 6149 12.593586255105 3 +28 6160 12.593746255105 1 +28 6186 12.643993578007 3 +28 6197 12.644153578007 1 +28 6238 12.814557028193 3 +28 6249 12.814717028193 1 +28 6275 12.824398906145 3 +28 6286 12.824558906145 1 +28 6310 12.831276162993 0 +28 6318 12.831436162993 1 +28 6357 12.857384415431 3 +28 6372 12.857544415431 1 +28 6390 12.893586254045 3 +28 6401 12.893746254045 1 +28 6427 12.943993578695 3 +28 6438 12.944153578695 1 +28 6479 13.114557012525 3 +28 6490 13.114717012525 1 +28 6516 13.124398906128 3 +28 6527 13.124558906128 1 +28 6551 13.131276162993 0 +28 6559 13.131436162993 1 +28 6598 13.157384415176 3 +28 6613 13.157544415176 1 +28 6631 13.193586253273 3 +28 6642 13.193746253273 1 +28 6668 13.243993579376 3 +28 6679 13.244153579376 1 +28 6720 13.414556996915 3 +28 6731 13.414716996915 1 +28 6757 13.424398906138 3 +28 6768 13.424558906138 1 +28 6792 13.431276162993 0 +28 6800 13.431436162993 1 +28 6839 13.45738441494 3 +28 6854 13.45754441494 1 +28 6872 13.493586252758 3 +28 6883 13.493746252758 1 +28 6909 13.543993580057 3 +28 6920 13.544153580057 1 +28 6961 13.714556981296 3 +28 6972 13.714716981296 1 +28 6998 13.724398906143 3 +28 7009 13.724558906143 1 +28 7033 13.731276162993 0 +28 7041 13.731436162993 1 +28 7080 13.75738441469 3 +28 7095 13.75754441469 1 +28 7113 13.793586252521 3 +28 7124 13.793746252521 1 +28 7150 13.843993580742 3 +28 7161 13.844153580742 1 +28 7201 14.014556965625 3 +28 7208 14.014716965625 1 +28 7239 14.024398906136 3 +28 7250 14.024558906136 1 +28 7274 14.031276162993 0 +28 7282 14.031436162993 1 +28 7321 14.057384414442 3 +28 7336 14.057544414442 1 +28 7354 14.093586252556 3 +28 7365 14.093746252556 1 +28 7391 14.143993581436 3 +28 7402 14.144153581436 1 +28 7442 14.314556950015 3 +28 7449 14.314716950015 1 +28 7480 14.324398906149 3 +28 7491 14.324558906149 1 +28 7515 14.331276162993 0 +28 7523 14.331436162993 1 +28 7562 14.357384414212 3 +28 7577 14.357544414212 1 +28 7595 14.393586252856 3 +28 7606 14.393746252856 1 +28 7632 14.443993582121 3 +28 7643 14.444153582121 1 +28 7683 14.614556934427 3 +28 7690 14.614716934427 1 +28 7721 14.624398906139 3 +28 7732 14.624558906139 1 +28 7756 14.631276162993 0 +28 7764 14.631436162993 1 +28 7803 14.657384413973 3 +28 7818 14.657544413973 1 +28 7836 14.693586253132 3 +28 7847 14.693746253132 1 +28 7873 14.743993582821 3 +28 7884 14.744153582821 1 +28 7924 14.914556918856 3 +28 7931 14.914716918856 1 +28 7962 14.924398906135 3 +28 7973 14.924558906135 1 +28 7997 14.931276162993 0 +28 8005 14.931436162993 1 +28 8044 14.957384413742 3 +28 8059 14.957544413742 1 +28 8077 14.993586247233 3 +28 8088 14.993746247233 1 +28 8114 15.043993583523 3 +28 8125 15.044153583523 1 +28 8165 15.214556903292 3 +28 8172 15.214716903292 1 +28 8203 15.22439890612 3 +28 8214 15.22455890612 1 +28 8238 15.231276162993 0 +28 8246 15.231436162993 1 +28 8285 15.257384413499 3 +28 8300 15.257544413499 1 +28 8318 15.293586234372 3 +28 8329 15.293746234372 1 +28 8355 15.343993584234 3 +28 8366 15.344153584234 1 +28 8406 15.514556887741 3 +28 8413 15.514716887741 1 +28 8444 15.524398906129 3 +28 8455 15.524558906129 1 +28 8479 15.531276162993 0 +28 8487 15.531436162993 1 +28 8526 15.557384413279 3 +28 8541 15.557544413279 1 +28 8559 15.59358622109 3 +28 8570 15.59374622109 1 +28 8596 15.643993584927 3 +28 8607 15.644153584927 1 +28 8647 15.814556872317 3 +28 8654 15.814716872317 1 +28 8685 15.82439890615 3 +28 8696 15.82455890615 1 +28 8720 15.831276162993 0 +28 8728 15.831436162993 1 +28 8767 15.857384413074 3 +28 8782 15.857544413074 1 +28 8800 15.893586207767 3 +28 8811 15.893746207767 1 +28 8837 15.943993585623 3 +28 8848 15.944153585623 1 +28 8888 16.114556856962 3 +28 8895 16.114716856962 1 +28 8930 16.124398906134 3 +28 8941 16.124558906134 1 +28 8965 16.131276162993 0 +28 8973 16.131436162993 1 +28 9012 16.157384412841 3 +28 9027 16.157544412841 1 +28 9045 16.19358619447 3 +28 9056 16.19374619447 1 +28 9086 16.243993586344 3 +28 9097 16.244153586344 1 +28 9137 16.414556841879 3 +28 9144 16.414716841879 1 +28 9179 16.42439890611 3 +28 9190 16.42455890611 1 +28 9214 16.431276162993 0 +28 9222 16.431436162993 1 +28 9261 16.457384412619 3 +28 9276 16.457544412619 1 +28 9294 16.493586182941 3 +28 9305 16.493746182941 1 +28 9335 16.543993587061 3 +28 9346 16.544153587061 1 +28 9386 16.714556827831 3 +28 9393 16.714716827831 1 +28 9428 16.72439890611 3 +28 9439 16.72455890611 1 +28 9463 16.731276162993 0 +28 9471 16.731436162993 1 +28 9510 16.757384412406 3 +28 9525 16.757544412406 1 +28 9543 16.793586174099 3 +28 9554 16.793746174099 1 +28 9584 16.843993587769 3 +28 9595 16.844153587769 1 +28 9635 17.01455682019 3 +28 9642 17.01471682019 1 +28 9676 17.024398906114 3 +28 9683 17.024558906114 1 +28 9712 17.031276162993 0 +28 9720 17.031436162993 1 +28 9759 17.057384412189 3 +28 9774 17.057544412189 1 +28 9793 17.093586167963 3 +28 9808 17.093746167963 1 +28 9834 17.143993588488 3 +28 9849 17.144153588488 1 +28 9884 17.314556829071 3 +28 9891 17.314716829071 1 +28 9925 17.324398906121 3 +28 9932 17.324558906121 1 +28 9961 17.331276162993 0 +28 9969 17.331436162993 1 +28 10007 17.357384411975 3 +28 10018 17.357544411975 1 +28 10042 17.393586164536 3 +28 10057 17.393746164536 1 +28 10083 17.44399358921 3 +28 10098 17.44415358921 1 +28 10133 17.614556843292 3 +28 10140 17.614716843292 1 +28 10174 17.624398906125 3 +28 10181 17.624558906125 1 +28 10210 17.631276162993 0 +28 10218 17.631436162993 1 +28 10256 17.657384411748 3 +28 10267 17.657544411748 1 +28 10291 17.693586163751 3 +28 10306 17.693746163751 1 +28 10332 17.743993589932 3 +28 10347 17.744153589932 1 +28 10382 17.914556858379 3 +28 10389 17.914716858379 1 +28 10419 17.924398906139 3 +28 10426 17.924558906139 1 +28 10455 17.931276162993 0 +28 10463 17.931436162993 1 +28 10501 17.957384411544 3 +28 10512 17.957544411544 1 +28 10532 17.993586163742 3 +28 10547 17.993746163742 1 +28 10573 18.043993590647 3 +28 10588 18.044153590647 1 +28 10623 18.214556873732 3 +28 10630 18.214716873732 1 +28 10660 18.22439890616 3 +28 10667 18.22455890616 1 +28 10692 18.231276162993 0 +28 10700 18.231436162993 1 +28 10738 18.257384411348 3 +28 10749 18.257544411348 1 +28 10769 18.29358616373 3 +28 10784 18.29374616373 1 +28 10810 18.343993591375 3 +28 10825 18.344153591375 1 +28 10856 18.514556889096 3 +28 10863 18.514716889096 1 +28 10893 18.524398906161 3 +28 10900 18.524558906161 1 +28 10925 18.531276162993 0 +28 10933 18.531436162993 1 +28 10971 18.557384411139 3 +28 10982 18.557544411139 1 +28 11002 18.593586163725 3 +28 11017 18.593746163725 1 +28 11043 18.64399359211 3 +28 11058 18.64415359211 1 +28 11089 18.814556899317 3 +28 11096 18.814716899317 1 +28 11126 18.824398906157 3 +28 11133 18.824558906157 1 +28 11158 18.831276162993 0 +28 11166 18.831436162993 1 +28 11204 18.857384410943 3 +28 11215 18.857544410943 1 +28 11235 18.893586163718 3 +28 11250 18.893746163718 1 +28 11276 18.943993592844 3 +28 11291 18.944153592844 1 +28 11322 19.114556905927 3 +28 11329 19.114716905927 1 +28 11359 19.124398906156 3 +28 11366 19.124558906156 1 +28 11391 19.131276162993 0 +28 11399 19.131436162993 1 +28 11437 19.157384410755 3 +28 11448 19.157544410755 1 +28 11468 19.193586163706 3 +28 11483 19.193746163706 1 +28 11509 19.243993593591 3 +28 11524 19.244153593591 1 +28 11555 19.414556913869 3 +28 11562 19.414716913869 1 +28 11592 19.424398906135 3 +28 11599 19.424558906135 1 +28 11624 19.431276162993 0 +28 11632 19.431436162993 1 +28 11670 19.457384410552 3 +28 11681 19.457544410552 1 +28 11701 19.49358616371 3 +28 11716 19.49374616371 1 +28 11742 19.543993594392 3 +28 11757 19.544153594392 1 +28 11788 19.714556923553 3 +28 11795 19.714716923553 1 +28 11825 19.724398906093 3 +28 11832 19.724558906093 1 +28 11857 19.731276162993 0 +28 11865 19.731436162993 1 +28 11903 19.757384409991 3 +28 11914 19.757544409991 1 +28 11934 19.793586163688 3 +28 11949 19.793746163688 1 +28 11975 19.843993595698 3 +28 11990 19.844153595698 1 +28 12021 20.014556934723 3 +28 12028 20.014716934723 1 +28 12062 20.024398905916 3 +28 12069 20.024558905916 1 +28 12094 20.031276162993 0 +28 12102 20.031436162993 1 +28 12140 20.057384408842 3 +28 12151 20.057544408842 1 +28 12175 20.0935861637 3 +28 12190 20.0937461637 1 +28 12216 20.143993597547 3 +28 12231 20.144153597547 1 +28 12262 20.314556946995 3 +28 12269 20.314716946995 1 +28 12303 20.324398905745 3 +28 12310 20.324558905745 1 +28 12335 20.331276162993 0 +28 12343 20.331436162993 1 +28 12381 20.357384407512 3 +28 12392 20.357544407512 1 +28 12416 20.393586163659 3 +28 12431 20.393746163659 1 +28 12457 20.443993599834 3 +28 12472 20.444153599834 1 +28 12503 20.614556960156 3 +28 12510 20.614716960156 1 +28 12544 20.624398905622 3 +28 12551 20.624558905622 1 +28 12576 20.631276162993 0 +28 12584 20.631436162993 1 +28 12622 20.6573844061 3 +28 12633 20.6575444061 1 +28 12657 20.693586163661 3 +28 12672 20.693746163661 1 +28 12698 20.743993602682 3 +28 12713 20.744153602682 1 +28 12744 20.914556974042 3 +28 12751 20.914716974042 1 +28 12785 20.924398905643 3 +28 12792 20.924558905643 1 +28 12817 20.931276162993 0 +28 12825 20.931436162993 1 +28 12863 20.957384404581 3 +28 12874 20.957544404581 1 +28 12898 20.993586163701 3 +28 12913 20.993746163701 1 +28 12939 21.043993605975 3 +28 12954 21.044153605975 1 +28 12985 21.214556988437 3 +28 12992 21.214716988437 1 +28 13026 21.22439890572 3 +28 13033 21.22455890572 1 +28 13058 21.231276162993 0 +28 13066 21.231436162993 1 +28 13104 21.257384403056 3 +28 13115 21.257544403056 1 +28 13139 21.293586163789 3 +28 13154 21.293746163789 1 +28 13180 21.343993609822 3 +28 13195 21.344153609822 1 +28 13226 21.514557003324 3 +28 13233 21.514717003324 1 +28 13267 21.524398905746 3 +28 13274 21.524558905746 1 +28 13299 21.531276162993 0 +28 13307 21.531436162993 1 +28 13345 21.557384401467 3 +28 13356 21.557544401467 1 +28 13380 21.593586163828 3 +28 13395 21.593746163828 1 +28 13421 21.643993614218 3 +28 13436 21.644153614218 1 +28 13467 21.814557018645 3 +28 13474 21.814717018645 1 +28 13508 21.82439890573 3 +28 13515 21.82455890573 1 +28 13540 21.831276162993 0 +28 13548 21.831436162993 1 +28 13586 21.857384399784 3 +28 13597 21.857544399784 1 +28 13621 21.893586163871 3 +28 13636 21.893746163871 1 +28 13662 21.943993619248 3 +28 13677 21.944153619248 1 +28 13708 22.114557034351 3 +28 13715 22.114717034351 1 +28 13749 22.124398905663 3 +28 13756 22.124558905663 1 +28 13781 22.131276162993 0 +28 13789 22.131436162993 1 +28 13827 22.157384398008 3 +28 13838 22.157544398008 1 +28 13862 22.193586163915 3 +28 13877 22.193746163915 1 +28 13903 22.243993624898 3 +28 13918 22.244153624898 1 +28 13949 22.414557050412 3 +28 13956 22.414717050412 1 +28 13990 22.424398905574 3 +28 13997 22.424558905574 1 +28 14022 22.431276162993 0 +28 14030 22.431436162993 1 +28 14068 22.45738439623 3 +28 14079 22.45754439623 1 +28 14103 22.493586164003 3 +28 14118 22.493746164003 1 +28 14144 22.543993631141 3 +28 14159 22.544153631141 1 +28 14190 22.714557066832 3 +28 14197 22.714717066832 1 +28 14231 22.724398905447 3 +28 14238 22.724558905447 1 +28 14263 22.731276162993 0 +28 14271 22.731436162993 1 +28 14309 22.757384394544 3 +28 14320 22.757544394544 1 +28 14344 22.793586164046 3 +28 14359 22.793746164046 1 +28 14385 22.843993638109 3 +28 14400 22.844153638109 1 +28 14431 23.014557083564 3 +28 14438 23.014717083564 1 +28 14472 23.024398905315 3 +28 14479 23.024558905315 1 +28 14504 23.031276162993 0 +28 14512 23.031436162993 1 +28 14550 23.057384392975 3 +28 14561 23.057544392975 1 +28 14585 23.093586164045 3 +28 14600 23.093746164045 1 +28 14626 23.143993645806 3 +28 14641 23.144153645806 1 +28 14672 23.314557100631 3 +28 14679 23.314717100631 1 +28 14713 23.324398905056 3 +28 14720 23.324558905056 1 +28 14745 23.331276162993 0 +28 14753 23.331436162993 1 +28 14791 23.357384391504 3 +28 14802 23.357544391504 1 +28 14826 23.393586164071 3 +28 14841 23.393746164071 1 +28 14867 23.443993653987 3 +28 14882 23.444153653987 1 +28 14913 23.614557118038 3 +28 14920 23.614717118038 1 +28 14954 23.624398904843 3 +28 14961 23.624558904843 1 +28 14986 23.631276162993 0 +28 14994 23.631436162993 1 +28 15032 23.657384390261 3 +28 15043 23.657544390261 1 +28 15067 23.693586164114 3 +28 15082 23.693746164114 1 +28 15108 23.743993657373 3 +28 15123 23.744153657373 1 +28 15154 23.914557135739 3 +28 15161 23.914717135739 1 +28 15195 23.924398904623 3 +28 15202 23.924558904623 1 +28 15227 23.931276162993 0 +28 15235 23.931436162993 1 +28 15273 23.957384389283 3 +28 15284 23.957544389283 1 +28 15308 23.993586164088 3 +28 15323 23.993746164088 1 +28 15349 24.043993663161 3 +28 15364 24.044153663161 1 +28 15395 24.214557153664 3 +28 15402 24.214717153664 1 +28 15436 24.224398904516 3 +28 15443 24.224558904516 1 +28 15468 24.231276162993 0 +28 15476 24.231436162993 1 +28 15515 24.257384388584 3 +28 15530 24.257544388584 1 +28 15549 24.293586163925 3 +28 15564 24.293746163925 1 +28 15590 24.343993674356 3 +28 15605 24.344153674356 1 +28 15636 24.51455717198 3 +28 15643 24.51471717198 1 +28 15677 24.52439890444 3 +28 15684 24.52455890444 1 +28 15709 24.531276162993 0 +28 15717 24.531436162993 1 +28 15756 24.557384388126 3 +28 15771 24.557544388126 1 +28 15790 24.59358616382 3 +28 15805 24.59374616382 1 +28 15831 24.643993686393 3 +28 15846 24.644153686393 1 +28 15877 24.814557190662 3 +28 15884 24.814717190662 1 +28 15918 24.824398904207 3 +28 15925 24.824558904207 1 +28 15950 24.831276162993 0 +28 15958 24.831436162993 1 +28 15997 24.857384387996 3 +28 16012 24.857544387996 1 +28 16031 24.893586163833 3 +28 16046 24.893746163833 1 +28 16072 24.943993699252 3 +28 16087 24.944153699252 1 +28 16118 25.114557209682 3 +28 16125 25.114717209682 1 +28 16159 25.124398903459 3 +28 16166 25.124558903459 1 +28 16191 25.131276162993 0 +28 16199 25.131436162993 1 +28 16238 25.15738438831 3 +28 16253 25.15754438831 1 +28 16272 25.19358616381 3 +28 16287 25.19374616381 1 +28 16313 25.243993712907 3 +28 16328 25.244153712907 1 +28 16359 25.414557228959 3 +28 16366 25.414717228959 1 +28 16400 25.424398902138 3 +28 16407 25.424558902138 1 +28 16432 25.431276162993 0 +28 16440 25.431436162993 1 +28 16479 25.457384389027 3 +28 16494 25.457544389027 1 +28 16513 25.493586163787 3 +28 16528 25.493746163787 1 +28 16554 25.543993727372 3 +28 16569 25.544153727372 1 +28 16601 25.714557248637 3 +28 16612 25.714717248637 1 +28 16641 25.724398900217 3 +28 16648 25.724558900217 1 +28 16673 25.731276162993 0 +28 16681 25.731436162993 1 +28 16720 25.757384390233 3 +28 16735 25.757544390233 1 +28 16754 25.793586163731 3 +28 16769 25.793746163731 1 +28 16795 25.843993742406 3 +28 16810 25.844153742406 1 +28 16842 26.014557267922 3 +28 16853 26.014717267922 1 +28 16882 26.024398899074 3 +28 16889 26.024558899074 1 +28 16914 26.031276162993 0 +28 16922 26.031436162993 1 +28 16961 26.057384392844 3 +28 16976 26.057544392844 1 +28 16995 26.093586162311 3 +28 17010 26.093746162311 1 +28 17036 26.1439937566 3 +28 17051 26.1441537566 1 +28 17083 26.314557286443 3 +28 17094 26.314717286443 1 +28 17123 26.324398899192 3 +28 17130 26.324558899192 1 +28 17155 26.331276162993 0 +28 17163 26.331436162993 1 +28 17202 26.357384397031 3 +28 17217 26.357544397031 1 +28 17236 26.39358615939 3 +28 17251 26.39374615939 1 +28 17277 26.443993769777 3 +28 17292 26.444153769777 1 +28 17324 26.614557304195 3 +28 17335 26.614717304195 1 +28 17364 26.624398900705 3 +28 17371 26.624558900705 1 +28 17396 26.631276162993 0 +28 17404 26.631436162993 1 +28 17443 26.657384402378 3 +28 17458 26.657544402378 1 +28 17477 26.693586155151 3 +28 17492 26.693746155151 1 +28 17518 26.743993781976 3 +28 17533 26.744153781976 1 +28 17565 26.914557321211 3 +28 17576 26.914717321211 1 +28 17605 26.924398903552 3 +28 17612 26.924558903552 1 +28 17637 26.931276162993 0 +28 17645 26.931436162993 1 +28 17684 26.957384408394 3 +28 17699 26.957544408394 1 +28 17718 26.993586149522 3 +28 17733 26.993746149522 1 +28 17759 27.0439937932 3 +28 17774 27.0441537932 1 +28 17806 27.214557337437 3 +28 17817 27.214717337437 1 +28 17842 27.224398907162 3 +28 17849 27.224558907162 1 +28 17870 27.231276162993 0 +28 17878 27.231436162993 1 +28 17917 27.257384414219 3 +28 17932 27.257544414219 1 +28 17951 27.293586142554 3 +28 17966 27.293746142554 1 +28 17992 27.343993803466 3 +28 18007 27.344153803466 1 +28 18039 27.514557353353 3 +28 18050 27.514717353353 1 +28 18075 27.524398910114 3 +28 18082 27.524558910114 1 +28 18103 27.531276162993 0 +28 18111 27.531436162993 1 +28 18150 27.557384419423 3 +28 18165 27.557544419423 1 +28 18184 27.593586134917 3 +28 18199 27.593746134917 1 +28 18225 27.643993814 3 +28 18240 27.644153814 1 +28 18272 27.814557366584 3 +28 18283 27.814717366584 1 +28 18308 27.824398911978 3 +28 18315 27.824558911978 1 +28 18336 27.831276162993 0 +28 18344 27.831436162993 1 +28 18383 27.857384421103 3 +28 18398 27.857544421103 1 +28 18417 27.893586127086 3 +28 18432 27.893746127086 1 +28 18458 27.943993821662 3 +28 18473 27.944153821662 1 +28 18505 28.114557372208 3 +28 18516 28.114717372208 1 +28 18541 28.124398921331 3 +28 18548 28.124558921331 1 +28 18569 28.131276162993 0 +28 18577 28.131436162993 1 +28 18616 28.157384422655 3 +28 18631 28.157544422655 1 +28 18650 28.193586110531 3 +28 18665 28.193746110531 1 +28 18691 28.243993818775 3 +28 18706 28.244153818775 1 +28 18738 28.414557379085 3 +28 18749 28.414717379085 1 +28 18774 28.424398936132 3 +28 18781 28.424558936132 1 +28 18802 28.431276162993 0 +28 18810 28.431436162993 1 +28 18849 28.457384430961 3 +28 18864 28.457544430961 1 +28 18883 28.493586087782 3 +28 18898 28.493746087782 1 +28 18924 28.543993814768 3 +28 18939 28.544153814768 1 +28 18971 28.714557386825 3 +28 18982 28.714717386825 1 +28 19007 28.724398950517 3 +28 19014 28.724558950517 1 +28 19035 28.731276162993 0 +28 19043 28.731436162993 1 +28 19082 28.757384440171 3 +28 19097 28.757544440171 1 +28 19115 28.793586063963 3 +28 19126 28.793746063963 1 +28 19157 28.843993810621 3 +28 19172 28.844153810621 1 +28 19204 29.014557394729 3 +28 19215 29.014717394729 1 +28 19240 29.024398956074 3 +28 19247 29.024558956074 1 +28 19268 29.031276162993 0 +28 19276 29.031436162993 1 +28 19340 29.093586039541 3 +28 19351 29.093746039541 1 +28 19382 29.143993806384 3 +28 19397 29.144153806384 1 +28 19430 29.314557402851 3 +28 19445 29.314717402851 1 +28 19465 29.324398958617 3 +28 19472 29.324558958617 1 +28 19493 29.331276162993 0 +28 19501 29.331436162993 1 +28 19565 29.393586014641 3 +28 19576 29.393746014641 1 +28 19607 29.443993802196 3 +28 19622 29.444153802196 1 +28 19655 29.614557411175 3 +28 19670 29.614717411175 1 +28 19690 29.624398960906 3 +28 19697 29.624558960906 1 +28 19718 29.631276162993 0 +28 19726 29.631436162993 1 +28 19790 29.6935859893 3 +28 19801 29.6937459893 1 +28 19832 29.74399379804 3 +28 19847 29.74415379804 1 +28 19880 29.914557419712 3 +28 19895 29.914717419712 1 +28 19915 29.924398963158 3 +28 19922 29.924558963158 1 +28 19943 29.931276162993 0 +28 19951 29.931436162993 1 +28 20015 29.993585963286 3 +28 20026 29.993745963286 1 +28 20057 30.04399379379 3 +28 20072 30.04415379379 1 +28 20105 30.214557428417 3 +28 20120 30.214717428417 1 +28 20140 30.224398965468 3 +28 20147 30.224558965468 1 +28 20168 30.231276162993 0 +28 20176 30.231436162993 1 +28 20240 30.293585936581 3 +28 20251 30.293745936581 1 +28 20282 30.343993789518 3 +28 20297 30.344153789518 1 +28 20331 30.514557437361 3 +28 20350 30.514717437361 1 +28 20365 30.524398967804 3 +28 20372 30.524558967804 1 +28 20393 30.531276162993 0 +28 20401 30.531436162993 1 +28 20465 30.59358590925 3 +28 20476 30.59374590925 1 +28 20507 30.643993785288 3 +28 20522 30.644153785288 1 +28 20555 30.814557446582 3 +28 20570 30.814717446582 1 +28 20590 30.824398970242 3 +28 20597 30.824558970242 1 +28 20618 30.831276162993 0 +28 20626 30.831436162993 1 +28 20690 30.89358588135 3 +28 20701 30.89374588135 1 +28 20732 30.94399378118 3 +28 20747 30.94415378118 1 +28 20780 31.114557456231 3 +28 20795 31.114717456231 1 +28 20815 31.124398972755 3 +28 20822 31.124558972755 1 +28 20847 31.131276162993 0 +28 20855 31.131436162993 1 +28 20918 31.193585853113 3 +28 20925 31.193745853113 1 +28 20965 31.243993777587 3 +28 20980 31.244153777587 1 +28 21013 31.414557466338 3 +28 21028 31.414717466338 1 +28 21048 31.424398975275 3 +28 21055 31.424558975275 1 +28 21080 31.431276162993 0 +28 21088 31.431436162993 1 +28 21151 31.493585824854 3 +28 21158 31.493745824854 1 +28 21198 31.543993774618 3 +28 21213 31.544153774618 1 +28 21246 31.714557476938 3 +28 21261 31.714717476938 1 +28 21281 31.724398977789 3 +28 21288 31.724558977789 1 +28 21313 31.731276162993 0 +28 21321 31.731436162993 1 +28 21384 31.793585796622 3 +28 21391 31.793745796622 1 +28 21431 31.843993772319 3 +28 21446 31.844153772319 1 +28 21479 32.014557487942 3 +28 21494 32.014717487942 1 +28 21514 32.024398980316 3 +28 21521 32.024558980316 1 +28 21546 32.031276162993 0 +28 21554 32.031436162993 1 +28 21617 32.093585768404 3 +28 21624 32.093745768404 1 +28 21664 32.143993770659 3 +28 21679 32.144153770659 1 +28 21712 32.314557499402 3 +28 21727 32.314717499402 1 +28 21747 32.324398982748 3 +28 21754 32.324558982748 1 +28 21779 32.331276162993 0 +28 21787 32.331436162993 1 +28 21850 32.393585740167 3 +28 21857 32.393745740167 1 +28 21897 32.443993769753 3 +28 21912 32.444153769753 1 +28 21945 32.614557511219 3 +28 21960 32.614717511219 1 +28 21980 32.624398985247 3 +28 21987 32.624558985247 1 +28 22012 32.631276162993 0 +28 22020 32.631436162993 1 +28 22083 32.693585711913 3 +28 22090 32.693745711913 1 +28 22130 32.74399376948 3 +28 22145 32.74415376948 1 +28 22178 32.914557523456 3 +28 22193 32.914717523456 1 +28 22213 32.924398987742 3 +28 22220 32.924558987742 1 +28 22245 32.931276162993 0 +28 22253 32.931436162993 1 +28 22316 32.993585683676 3 +28 22323 32.993745683676 1 +28 22363 33.043993769896 3 +28 22378 33.044153769896 1 +28 22411 33.214557536006 3 +28 22426 33.214717536006 1 +28 22446 33.224398990236 3 +28 22453 33.224558990236 1 +28 22478 33.231276162993 0 +28 22486 33.231436162993 1 +28 22549 33.293585655474 3 +28 22556 33.293745655474 1 +28 22596 33.343993770985 3 +28 22611 33.344153770985 1 +28 22644 33.514557548915 3 +28 22659 33.514717548915 1 +28 22679 33.524398992733 3 +28 22686 33.524558992733 1 +28 22711 33.531276162993 0 +28 22719 33.531436162993 1 +28 22782 33.593585627277 3 +28 22789 33.593745627277 1 +28 22829 33.643993772782 3 +28 22844 33.644153772782 1 +28 22877 33.814557562144 3 +28 22892 33.814717562144 1 +28 22908 33.82439899523 3 +28 22915 33.82455899523 1 +28 22940 33.831276162993 0 +28 22948 33.831436162993 1 +28 23011 33.893585599183 3 +28 23018 33.893745599183 1 +28 23052 33.943993775237 3 +28 23062 33.944153775237 1 +28 23118 34.124398997755 3 +28 23124 34.124558997755 1 +28 23144 34.131276162993 0 +28 23151 34.131436162993 1 +28 23210 34.243993778327 3 +28 23220 34.244153778327 1 +28 23276 34.424399000269 3 +28 23282 34.424559000269 1 +28 23302 34.431276162993 0 +28 23309 34.431436162993 1 +28 23368 34.543993782072 3 +28 23378 34.544153782072 1 +28 23434 34.724399002779 3 +28 23440 34.724559002779 1 +28 23460 34.731276162993 0 +28 23467 34.731436162993 1 +28 23526 34.843993786489 3 +28 23536 34.844153786489 1 +28 23592 35.02439900524 3 +28 23598 35.02455900524 1 +28 23618 35.031276162993 0 +28 23625 35.031436162993 1 +28 23684 35.143993791503 3 +28 23694 35.144153791503 1 +28 23754 35.32439900778 3 +28 23760 35.32455900778 1 +28 23780 35.331276162993 0 +28 23787 35.331436162993 1 +28 23850 35.443993797136 3 +28 23860 35.444153797136 1 +28 23920 35.624399010314 3 +28 23926 35.624559010314 1 +28 23946 35.631276162993 0 +28 23953 35.631436162993 1 +28 24016 35.743993803331 3 +28 24026 35.744153803331 1 +28 24086 35.924399012824 3 +28 24092 35.924559012824 1 +28 24112 35.931276162993 0 +28 24119 35.931436162993 1 +28 24182 36.043993810134 3 +28 24192 36.044153810134 1 +28 24252 36.224399015304 3 +28 24258 36.224559015304 1 +28 24278 36.231276162993 0 +28 24285 36.231436162993 1 +28 24348 36.343993817527 3 +28 24358 36.344153817527 1 +28 24418 36.524399017802 3 +28 24424 36.524559017802 1 +28 24444 36.531276162993 0 +28 24451 36.531436162993 1 +28 24514 36.643993825454 3 +28 24524 36.644153825454 1 +28 24584 36.824399020283 3 +28 24590 36.824559020283 1 +28 24610 36.831276162993 0 +28 24617 36.831436162993 1 +28 24680 36.943993833942 3 +28 24690 36.944153833942 1 +28 24750 37.124399022747 3 +28 24756 37.124559022747 1 +28 24776 37.131276162993 0 +28 24783 37.131436162993 1 +28 24847 37.243993841675 3 +28 24861 37.244153841675 1 +28 24916 37.424399025229 3 +28 24922 37.424559025229 1 +28 24942 37.431276162993 0 +28 24949 37.431436162993 1 +28 25013 37.54399384071 3 +28 25027 37.54415384071 1 +28 25082 37.724399027708 3 +28 25088 37.724559027708 1 +28 25108 37.731276162993 0 +28 25115 37.731436162993 1 +28 25179 37.843993832964 3 +28 25193 37.844153832964 1 +28 25248 38.024399030169 3 +28 25254 38.024559030169 1 +28 25274 38.031276162993 0 +28 25281 38.031436162993 1 +28 25345 38.143993825758 3 +28 25359 38.144153825758 1 +28 25414 38.324399032643 3 +28 25420 38.324559032643 1 +28 25440 38.331276162993 0 +28 25447 38.331436162993 1 +28 25511 38.44399381973 3 +28 25525 38.44415381973 1 +28 25580 38.624399035134 3 +28 25586 38.624559035134 1 +28 25606 38.631276162993 0 +28 25613 38.631436162993 1 +28 25677 38.743993814907 3 +28 25691 38.744153814907 1 +28 25746 38.924399037653 3 +28 25752 38.924559037653 1 +28 25772 38.931276162993 0 +28 25779 38.931436162993 1 +28 25843 39.043993811322 3 +28 25857 39.044153811322 1 +28 25912 39.224399040102 3 +28 25918 39.224559040102 1 +28 25938 39.231276162993 0 +28 25945 39.231436162993 1 +28 26009 39.343993808998 3 +28 26023 39.344153808998 1 +28 26078 39.524399042597 3 +28 26084 39.524559042597 1 +28 26104 39.531276162993 0 +28 26111 39.531436162993 1 +28 26175 39.643993807943 3 +28 26189 39.644153807943 1 +28 26244 39.824399045083 3 +28 26250 39.824559045083 1 +28 26270 39.831276162993 0 +28 26277 39.831436162993 1 +28 26341 39.943993808167 3 +28 26355 39.944153808167 1 +28 26410 40.124399047608 3 +28 26416 40.124559047608 1 +28 26436 40.131276162993 0 +28 26443 40.131436162993 1 +28 26507 40.243993809672 3 +28 26521 40.244153809672 1 +28 26576 40.424399050085 3 +28 26582 40.424559050085 1 +28 26602 40.431276162993 0 +28 26609 40.431436162993 1 +28 26673 40.543993812444 3 +28 26687 40.544153812444 1 +28 26742 40.72439905259 3 +28 26748 40.72455905259 1 +28 26772 40.731276162993 0 +28 26779 40.731436162993 1 +28 26843 40.843993816458 3 +28 26857 40.844153816458 1 +28 26916 41.024399055027 3 +28 26922 41.024559055027 1 +28 26946 41.031276162993 0 +28 26953 41.031436162993 1 +28 27017 41.143993821716 3 +28 27031 41.144153821716 1 +28 27090 41.324399057542 3 +28 27096 41.324559057542 1 +28 27120 41.331276162993 0 +28 27127 41.331436162993 1 +28 27191 41.443993828168 3 +28 27205 41.444153828168 1 +28 27264 41.62439906007 3 +28 27270 41.62455906007 1 +28 27294 41.631276162993 0 +28 27301 41.631436162993 1 +28 27365 41.743993835789 3 +28 27379 41.744153835789 1 +28 27438 41.924399062611 3 +28 27444 41.924559062611 1 +28 27468 41.931276162993 0 +28 27475 41.931436162993 1 +28 27539 42.043993844221 3 +28 27553 42.044153844221 1 +28 27612 42.224399065158 3 +28 27618 42.224559065158 1 +28 27642 42.231276162993 0 +28 27649 42.231436162993 1 +28 27714 42.343993853216 3 +28 27732 42.344153853216 1 +28 27786 42.524399067719 3 +28 27792 42.524559067719 1 +28 27816 42.531276162993 0 +28 27823 42.531436162993 1 +28 27888 42.643993862563 3 +28 27906 42.644153862563 1 +28 27960 42.824399070171 3 +28 27966 42.824559070171 1 +28 27990 42.831276162993 0 +28 27997 42.831436162993 1 +28 28062 42.943993872107 3 +28 28080 42.944153872107 1 +28 28134 43.124399072679 3 +28 28140 43.124559072679 1 +28 28164 43.131276162993 0 +28 28171 43.131436162993 1 +28 28236 43.243993881734 3 +28 28254 43.244153881734 1 +28 28308 43.424399075168 3 +28 28314 43.424559075168 1 +28 28338 43.431276162993 0 +28 28345 43.431436162993 1 +28 28410 43.543993891273 3 +28 28428 43.544153891273 1 +28 28482 43.724399077694 3 +28 28488 43.724559077694 1 +28 28512 43.731276162993 0 +28 28519 43.731436162993 1 +28 28584 43.843993900664 3 +28 28602 43.844153900664 1 +28 28656 44.024399080215 3 +28 28662 44.024559080215 1 +28 28686 44.031276162993 0 +28 28693 44.031436162993 1 +28 28758 44.143993909788 3 +28 28776 44.144153909788 1 +28 28830 44.324399082695 3 +28 28836 44.324559082695 1 +28 28860 44.331276162993 0 +28 28867 44.331436162993 1 +28 28996 44.624399085153 3 +28 29002 44.624559085153 1 +28 29026 44.631276162993 0 +28 29033 44.631436162993 1 +28 29162 44.924399087671 3 +28 29168 44.924559087671 1 +28 29192 44.931276162993 0 +28 29199 44.931436162993 1 +28 29328 45.224399090114 3 +28 29334 45.224559090114 1 +28 29358 45.231276162993 0 +28 29365 45.231436162993 1 +28 29494 45.524399092613 3 +28 29500 45.524559092613 1 +28 29524 45.531276162993 0 +28 29531 45.531436162993 1 +28 29660 45.824399095152 3 +28 29666 45.824559095152 1 +28 29690 45.831276162993 0 +28 29697 45.831436162993 1 +28 29826 46.124399098204 3 +28 29832 46.124559098204 1 +28 29856 46.131276162993 0 +28 29863 46.131436162993 1 +28 29992 46.424399105752 3 +28 29998 46.424559105752 1 +28 30022 46.431276162993 0 +28 30029 46.431436162993 1 +28 30158 46.724399119111 3 +28 30164 46.724559119111 1 +28 30188 46.731276162993 0 +28 30195 46.731436162993 1 +28 30324 47.02439913369 3 +28 30330 47.02455913369 1 +28 30354 47.031276162993 0 +28 30361 47.031436162993 1 +28 30490 47.3243991485 3 +28 30496 47.3245591485 1 +28 30520 47.331276162993 0 +28 30527 47.331436162993 1 +28 30656 47.624399163475 3 +28 30662 47.624559163475 1 +28 30686 47.631276162993 0 +28 30693 47.631436162993 1 +28 30823 47.924399178648 3 +28 30833 47.924559178648 1 +28 30852 47.931276162993 0 +28 30859 47.931436162993 1 +28 30990 48.224399193917 3 +28 31004 48.224559193917 1 +28 31018 48.231276162993 0 +28 31025 48.231436162993 1 +28 31156 48.524399209372 3 +28 31170 48.524559209372 1 +28 31184 48.531276162993 0 +28 31191 48.531436162993 1 +28 31322 48.824399224983 3 +28 31336 48.824559224983 1 +28 31350 48.831276162993 0 +28 31357 48.831436162993 1 +28 31488 49.124399240703 3 +28 31502 49.124559240703 1 +28 31516 49.131276162993 0 +28 31523 49.131436162993 1 +28 31654 49.424399256502 3 +28 31668 49.424559256502 1 +28 31682 49.431276162993 0 +28 31689 49.431436162993 1 +28 31820 49.724399261494 3 +28 31834 49.724559261494 1 +28 31848 49.731276162993 0 +28 31855 49.731436162993 1 +28 31986 50.02439926103 3 +28 32000 50.02455926103 1 +28 32014 50.031276162993 0 +28 32021 50.031436162993 1 +28 32152 50.324399260569 3 +28 32166 50.324559260569 1 +28 32180 50.331276162993 0 +28 32187 50.331436162993 1 +28 32318 50.624399260125 3 +28 32332 50.624559260125 1 +28 32346 50.631276162993 0 +28 32353 50.631436162993 1 +28 32484 50.924399259692 3 +28 32498 50.924559259692 1 +28 32512 50.931276162993 0 +28 32519 50.931436162993 1 +28 32646 51.224399259255 3 +28 32660 51.224559259255 1 +28 32674 51.231276162993 0 +28 32681 51.231436162993 1 +28 32804 51.524399258837 3 +28 32818 51.524559258837 1 +28 32832 51.531276162993 0 +28 32839 51.531436162993 1 +28 32865 51.557384429561 3 +28 32879 51.557544429561 1 +28 32970 51.824399258432 3 +28 32984 51.824559258432 1 +28 32998 51.831276162993 0 +28 33005 51.831436162993 1 +28 33031 51.857384410523 3 +28 33045 51.857544410523 1 +28 33136 52.124399258035 3 +28 33150 52.124559258035 1 +28 33164 52.131276162993 0 +28 33171 52.131436162993 1 +28 33197 52.157384391469 3 +28 33211 52.157544391469 1 +28 33302 52.424399257631 3 +28 33316 52.424559257631 1 +28 33330 52.431276162993 0 +28 33337 52.431436162993 1 +28 33363 52.45738437236 3 +28 33377 52.45754437236 1 +28 33468 52.724399257249 3 +28 33482 52.724559257249 1 +28 33496 52.731276162993 0 +28 33503 52.731436162993 1 +28 33529 52.75738435334 3 +28 33543 52.75754435334 1 +28 33634 53.024399256872 3 +28 33648 53.024559256872 1 +28 33662 53.031276162993 0 +28 33669 53.031436162993 1 +28 33695 53.057384334363 3 +28 33709 53.057544334363 1 +28 33776 53.324399256501 3 +28 33789 53.324559256501 1 +28 33801 53.331276162993 0 +28 33807 53.331436162993 1 +28 33832 53.357384316044 3 +28 33845 53.357544316044 1 +28 33903 53.624399256146 3 +28 33916 53.624559256146 1 +28 33928 53.631276162993 0 +28 33934 53.631436162993 1 +28 33959 53.657384298598 3 +28 33972 53.657544298598 1 +28 34030 53.924399255807 3 +28 34043 53.924559255807 1 +28 34055 53.931276162993 0 +28 34061 53.931436162993 1 +28 34086 53.95738428203 3 +28 34099 53.95754428203 1 +28 34157 54.224399255474 3 +28 34170 54.224559255474 1 +28 34182 54.231276162993 0 +28 34188 54.231436162993 1 +28 34213 54.257384266324 3 +28 34226 54.257544266324 1 +28 34284 54.52439925514 3 +28 34297 54.52455925514 1 +28 34309 54.531276162993 0 +28 34315 54.531436162993 1 +28 34340 54.557384251324 3 +28 34353 54.557544251324 1 +28 34411 54.824399254865 3 +28 34424 54.824559254865 1 +28 34436 54.831276162993 0 +28 34442 54.831436162993 1 +28 34467 54.857384236279 3 +28 34480 54.857544236279 1 +28 34538 55.124399254758 3 +28 34551 55.124559254758 1 +28 34563 55.131276162993 0 +28 34569 55.131436162993 1 +28 34594 55.157384221704 3 +28 34607 55.157544221704 1 +28 34665 55.424399254821 3 +28 34678 55.424559254821 1 +28 34690 55.431276162993 0 +28 34696 55.431436162993 1 +28 34721 55.45738420776 3 +28 34734 55.45754420776 1 +28 34792 55.724399255052 3 +28 34805 55.724559255052 1 +28 34817 55.731276162993 0 +28 34823 55.731436162993 1 +28 34848 55.757384194465 3 +28 34861 55.757544194465 1 +28 34919 56.024399255468 3 +28 34932 56.024559255468 1 +28 34944 56.031276162993 0 +28 34950 56.031436162993 1 +28 34975 56.05738418177 3 +28 34988 56.05754418177 1 +28 35046 56.324399256088 3 +28 35059 56.324559256088 1 +28 35071 56.331276162993 0 +28 35077 56.331436162993 1 +28 35102 56.357384169733 3 +28 35115 56.357544169733 1 +28 35170 56.624399256836 3 +28 35178 56.624559256836 1 +28 35190 56.631276162993 0 +28 35195 56.631436162993 1 +28 35218 56.657384157873 3 +28 35226 56.657544157873 1 +28 35254 56.924399261596 3 +28 35262 56.924559261596 1 +28 35274 56.931276162993 0 +28 35279 56.931436162993 1 +28 35302 56.957384148777 3 +28 35310 56.957544148777 1 +28 35338 57.224399269866 3 +28 35346 57.224559269866 1 +28 35358 57.231276162993 0 +28 35363 57.231436162993 1 +28 35386 57.257384147466 3 +28 35394 57.257544147466 1 +28 35422 57.524399274423 3 +28 35430 57.524559274423 1 +28 35442 57.531276162993 0 +28 35447 57.531436162993 1 +28 35469 57.557384146735 3 +28 35473 57.557544146735 1 +28 35506 57.824399278835 3 +28 35514 57.824559278835 1 +28 35526 57.831276162993 0 +28 35531 57.831436162993 1 +28 35553 57.857384146402 3 +28 35557 57.857544146402 1 +28 35590 58.124399283976 3 +28 35598 58.124559283976 1 +28 35610 58.131276162993 0 +28 35615 58.131436162993 1 +28 35637 58.157384147163 3 +28 35641 58.157544147163 1 +28 35674 58.424399289901 3 +28 35682 58.424559289901 1 +28 35694 58.431276162993 0 +28 35699 58.431436162993 1 +28 35721 58.457384148999 3 +28 35725 58.457544148999 1 +28 35758 58.724399296596 3 +28 35766 58.724559296596 1 +28 35778 58.731276162993 0 +28 35783 58.731436162993 1 +28 35805 58.757384151953 3 +28 35809 58.757544151953 1 +28 35842 59.024399304148 3 +28 35850 59.024559304148 1 +28 35862 59.031276162993 0 +28 35867 59.031436162993 1 +28 35889 59.057384156076 3 +28 35893 59.057544156076 1 +28 35926 59.324399312582 3 +28 35934 59.324559312582 1 +28 35946 59.331276162993 0 +28 35951 59.331436162993 1 +28 35973 59.357384161385 3 +28 35977 59.357544161385 1 +28 36010 59.624399321918 3 +28 36018 59.624559321918 1 +28 36030 59.631276162993 0 +28 36035 59.631436162993 1 +28 36057 59.657384167848 3 +28 36061 59.657544167848 1 +28 36094 59.924399332192 3 +28 36102 59.924559332192 1 +28 36114 59.931276162993 0 +28 36119 59.931436162993 1 +28 36141 59.957384175485 3 +28 36145 59.957544175485 1 +28 36194 60.231276162993 0 +28 36199 60.231436162993 1 +28 36217 60.257384184183 3 +28 36221 60.257544184183 1 +28 36270 60.531276162993 0 +28 36275 60.531436162993 1 +28 36293 60.557384193582 3 +28 36297 60.557544193582 1 +28 36346 60.831276162993 0 +28 36351 60.831436162993 1 +28 36369 60.857384203546 3 +28 36373 60.857544203546 1 +28 36422 61.131276162993 0 +28 36427 61.131436162993 1 +28 36445 61.157384214046 3 +28 36449 61.157544214046 1 +28 36498 61.431276162993 0 +28 36503 61.431436162993 1 +28 36521 61.457384224953 3 +28 36525 61.457544224953 1 +28 36574 61.731276162993 0 +28 36579 61.731436162993 1 +28 36597 61.757384236307 3 +28 36601 61.757544236307 1 +28 36650 62.031276162993 0 +28 36655 62.031436162993 1 +28 36673 62.057384248207 3 +28 36677 62.057544248207 1 +28 36726 62.331276162993 0 +28 36731 62.331436162993 1 +28 36749 62.357384260662 3 +28 36753 62.357544260662 1 +28 36802 62.631276162993 0 +28 36807 62.631436162993 1 +28 36825 62.657384273497 3 +28 36829 62.657544273497 1 +28 36878 62.931276162993 0 +28 36883 62.931436162993 1 +28 36901 62.957384286646 3 +28 36905 62.957544286646 1 +29 124 3.1 0 +29 124 3.1 0 +29 142 3.21455740282 0 +29 142 3.21455740282 0 +29 150 3.21471740282 0 +29 150 3.21471740282 0 +29 166 3.257384424448 0 +29 166 3.257384424448 0 +29 174 3.257544424448 0 +29 174 3.257544424448 0 +29 202 3.514557399314 0 +29 202 3.514557399314 0 +29 210 3.514717399314 0 +29 210 3.514717399314 0 +29 223 3.531276162993 0 +29 223 3.531276162993 0 +29 228 3.531436162993 0 +29 228 3.531436162993 0 +29 250 3.557384424342 0 +29 250 3.557384424342 0 +29 258 3.557544424342 0 +29 258 3.557544424342 0 +29 286 3.81455739499 0 +29 286 3.81455739499 0 +29 294 3.81471739499 0 +29 294 3.81471739499 0 +29 307 3.831276162993 0 +29 307 3.831276162993 0 +29 312 3.831436162993 0 +29 312 3.831436162993 0 +29 334 3.857384424025 0 +29 334 3.857384424025 0 +29 342 3.857544424025 0 +29 342 3.857544424025 0 +29 371 4.11455739006 0 +29 371 4.11455739006 0 +29 380 4.11471739006 0 +29 380 4.11471739006 0 +29 394 4.131276162993 0 +29 394 4.131276162993 0 +29 400 4.131436162993 0 +29 400 4.131436162993 0 +29 427 4.157384423703 0 +29 427 4.157384423703 0 +29 436 4.157544423703 0 +29 436 4.157544423703 0 +29 468 4.414557384462 0 +29 468 4.414557384462 0 +29 477 4.414717384462 0 +29 477 4.414717384462 0 +29 491 4.431276162993 0 +29 491 4.431276162993 0 +29 497 4.431436162993 0 +29 497 4.431436162993 0 +29 524 4.457384423373 0 +29 524 4.457384423373 0 +29 533 4.457544423373 0 +29 533 4.457544423373 0 +29 554 4.54399363691 0 +29 554 4.54399363691 0 +29 559 4.54415363691 0 +29 559 4.54415363691 0 +29 587 4.714557378402 0 +29 587 4.714557378402 0 +29 596 4.714717378402 0 +29 596 4.714717378402 0 +29 610 4.731276162993 0 +29 610 4.731276162993 0 +29 616 4.731436162993 0 +29 616 4.731436162993 0 +29 643 4.757384423069 0 +29 643 4.757384423069 0 +29 652 4.757544423069 0 +29 652 4.757544423069 0 +29 673 4.843993636799 0 +29 673 4.843993636799 0 +29 678 4.844153636799 0 +29 678 4.844153636799 0 +29 706 5.014557371745 0 +29 706 5.014557371745 0 +29 715 5.014717371745 0 +29 715 5.014717371745 0 +29 729 5.031276162993 0 +29 729 5.031276162993 0 +29 735 5.031436162993 0 +29 735 5.031436162993 0 +29 762 5.057384422748 0 +29 762 5.057384422748 0 +29 771 5.057544422748 0 +29 771 5.057544422748 0 +29 794 5.143993636284 0 +29 794 5.143993636284 0 +29 804 5.144153636284 0 +29 804 5.144153636284 0 +29 834 5.31455736441 0 +29 834 5.31455736441 0 +29 844 5.31471736441 0 +29 844 5.31471736441 0 +29 859 5.331276162993 0 +29 859 5.331276162993 0 +29 866 5.331436162993 0 +29 866 5.331436162993 0 +29 894 5.357384422438 0 +29 894 5.357384422438 0 +29 904 5.357544422438 0 +29 904 5.357544422438 0 +29 928 5.443993635357 0 +29 928 5.443993635357 0 +29 938 5.444153635357 0 +29 938 5.444153635357 0 +29 968 5.614557356527 0 +29 968 5.614557356527 0 +29 978 5.614717356527 0 +29 978 5.614717356527 0 +29 993 5.631276162993 0 +29 993 5.631276162993 0 +29 1000 5.631436162993 0 +29 1000 5.631436162993 0 +29 1028 5.657384422133 0 +29 1028 5.657384422133 0 +29 1038 5.657544422133 0 +29 1038 5.657544422133 0 +29 1086 5.743993634123 0 +29 1086 5.743993634123 0 +29 1096 5.744153634123 0 +29 1096 5.744153634123 0 +29 1126 5.914557347995 0 +29 1126 5.914557347995 0 +29 1136 5.914717347995 0 +29 1136 5.914717347995 0 +29 1151 5.931276162993 0 +29 1151 5.931276162993 0 +29 1158 5.931436162993 0 +29 1158 5.931436162993 0 +29 1186 5.957384421828 0 +29 1186 5.957384421828 0 +29 1196 5.957544421828 0 +29 1196 5.957544421828 0 +29 1244 6.043993632613 0 +29 1244 6.043993632613 0 +29 1254 6.044153632613 0 +29 1254 6.044153632613 0 +29 1287 6.214557338841 0 +29 1287 6.214557338841 0 +29 1302 6.214717338841 0 +29 1302 6.214717338841 0 +29 1317 6.231276162993 0 +29 1317 6.231276162993 0 +29 1325 6.231436162993 0 +29 1325 6.231436162993 0 +29 1359 6.257384421526 0 +29 1359 6.257384421526 0 +29 1374 6.257544421526 0 +29 1374 6.257544421526 0 +29 1425 6.343993630796 0 +29 1425 6.343993630796 0 +29 1436 6.344153630796 0 +29 1436 6.344153630796 0 +29 1470 6.514557329163 0 +29 1470 6.514557329163 0 +29 1485 6.514717329163 0 +29 1485 6.514717329163 0 +29 1502 6.524398906174 0 +29 1502 6.524398906174 0 +29 1513 6.524558906174 0 +29 1513 6.524558906174 0 +29 1533 6.531276162993 0 +29 1533 6.531276162993 0 +29 1541 6.531436162993 0 +29 1541 6.531436162993 0 +29 1576 6.557384421227 0 +29 1576 6.557384421227 0 +29 1591 6.557544421227 0 +29 1591 6.557544421227 0 +29 1642 6.643993628669 0 +29 1642 6.643993628669 0 +29 1653 6.644153628669 0 +29 1653 6.644153628669 0 +29 1687 6.81455731881 0 +29 1687 6.81455731881 0 +29 1702 6.81471731881 0 +29 1702 6.81471731881 0 +29 1719 6.824398906154 0 +29 1719 6.824398906154 0 +29 1730 6.824558906154 0 +29 1730 6.824558906154 0 +29 1750 6.831276162993 0 +29 1750 6.831276162993 0 +29 1758 6.831436162993 0 +29 1758 6.831436162993 0 +29 1793 6.857384420921 0 +29 1793 6.857384420921 0 +29 1808 6.857544420921 0 +29 1808 6.857544420921 0 +29 1859 6.943993626289 0 +29 1859 6.943993626289 0 +29 1870 6.944153626289 0 +29 1870 6.944153626289 0 +29 1904 7.114557307827 0 +29 1904 7.114557307827 0 +29 1919 7.114717307827 0 +29 1919 7.114717307827 0 +29 1936 7.124398906151 0 +29 1936 7.124398906151 0 +29 1947 7.124558906151 0 +29 1947 7.124558906151 0 +29 1967 7.131276162993 0 +29 1967 7.131276162993 0 +29 1975 7.131436162993 0 +29 1975 7.131436162993 0 +29 2010 7.157384420615 0 +29 2010 7.157384420615 0 +29 2025 7.157544420615 0 +29 2025 7.157544420615 0 +29 2076 7.243993623629 0 +29 2076 7.243993623629 0 +29 2087 7.244153623629 0 +29 2087 7.244153623629 0 +29 2121 7.414557296389 0 +29 2121 7.414557296389 0 +29 2136 7.414717296389 0 +29 2136 7.414717296389 0 +29 2153 7.424398906139 0 +29 2153 7.424398906139 0 +29 2164 7.424558906139 0 +29 2164 7.424558906139 0 +29 2184 7.431276162993 0 +29 2184 7.431276162993 0 +29 2192 7.431436162993 0 +29 2192 7.431436162993 0 +29 2227 7.45738442031 0 +29 2227 7.45738442031 0 +29 2242 7.45754442031 0 +29 2242 7.45754442031 0 +29 2293 7.543993620729 0 +29 2293 7.543993620729 0 +29 2304 7.544153620729 0 +29 2304 7.544153620729 0 +29 2338 7.714557284487 0 +29 2338 7.714557284487 0 +29 2353 7.714717284487 0 +29 2353 7.714717284487 0 +29 2370 7.72439890614 0 +29 2370 7.72439890614 0 +29 2381 7.72455890614 0 +29 2381 7.72455890614 0 +29 2401 7.731276162993 0 +29 2401 7.731276162993 0 +29 2409 7.731436162993 0 +29 2409 7.731436162993 0 +29 2444 7.757384420012 0 +29 2444 7.757384420012 0 +29 2459 7.757544420012 0 +29 2459 7.757544420012 0 +29 2510 7.843993617626 0 +29 2510 7.843993617626 0 +29 2521 7.844153617626 0 +29 2521 7.844153617626 0 +29 2555 8.014557271989 0 +29 2555 8.014557271989 0 +29 2570 8.014717271989 0 +29 2570 8.014717271989 0 +29 2587 8.024398906138 0 +29 2587 8.024398906138 0 +29 2598 8.024558906138 0 +29 2598 8.024558906138 0 +29 2618 8.031276162993 0 +29 2618 8.031276162993 0 +29 2626 8.031436162993 0 +29 2626 8.031436162993 0 +29 2661 8.057384419724 0 +29 2661 8.057384419724 0 +29 2676 8.057544419724 0 +29 2676 8.057544419724 0 +29 2727 8.143993614294 0 +29 2727 8.143993614294 0 +29 2738 8.144153614294 0 +29 2738 8.144153614294 0 +29 2772 8.314557258778 0 +29 2772 8.314557258778 0 +29 2787 8.314717258778 0 +29 2787 8.314717258778 0 +29 2804 8.324398906149 0 +29 2804 8.324398906149 0 +29 2815 8.324558906149 0 +29 2815 8.324558906149 0 +29 2839 8.331276162993 0 +29 2839 8.331276162993 0 +29 2847 8.331436162993 0 +29 2847 8.331436162993 0 +29 2882 8.357384419443 0 +29 2882 8.357384419443 0 +29 2897 8.357544419443 0 +29 2897 8.357544419443 0 +29 2948 8.443993610746 0 +29 2948 8.443993610746 0 +29 2959 8.444153610746 0 +29 2959 8.444153610746 0 +29 2997 8.614557244982 0 +29 2997 8.614557244982 0 +29 3012 8.614717244982 0 +29 3012 8.614717244982 0 +29 3029 8.624398906137 0 +29 3029 8.624398906137 0 +29 3040 8.624558906137 0 +29 3040 8.624558906137 0 +29 3064 8.631276162993 0 +29 3064 8.631276162993 0 +29 3072 8.631436162993 0 +29 3072 8.631436162993 0 +29 3107 8.657384419152 0 +29 3107 8.657384419152 0 +29 3122 8.657544419152 0 +29 3122 8.657544419152 0 +29 3173 8.74399360708 0 +29 3173 8.74399360708 0 +29 3184 8.74415360708 0 +29 3184 8.74415360708 0 +29 3221 8.91455723058 0 +29 3221 8.91455723058 0 +29 3232 8.91471723058 0 +29 3232 8.91471723058 0 +29 3254 8.924398906106 0 +29 3254 8.924398906106 0 +29 3265 8.924558906106 0 +29 3265 8.924558906106 0 +29 3289 8.931276162993 0 +29 3289 8.931276162993 0 +29 3297 8.931436162993 0 +29 3297 8.931436162993 0 +29 3332 8.957384418855 0 +29 3332 8.957384418855 0 +29 3347 8.957544418855 0 +29 3347 8.957544418855 0 +29 3398 9.043993603305 0 +29 3398 9.043993603305 0 +29 3409 9.044153603305 0 +29 3409 9.044153603305 0 +29 3446 9.214557215656 0 +29 3446 9.214557215656 0 +29 3457 9.214717215656 0 +29 3457 9.214717215656 0 +29 3479 9.224398906123 0 +29 3479 9.224398906123 0 +29 3490 9.224558906123 0 +29 3490 9.224558906123 0 +29 3514 9.231276162993 0 +29 3514 9.231276162993 0 +29 3522 9.231436162993 0 +29 3522 9.231436162993 0 +29 3557 9.257384418583 0 +29 3557 9.257384418583 0 +29 3572 9.257544418583 0 +29 3572 9.257544418583 0 +29 3623 9.343993599436 0 +29 3623 9.343993599436 0 +29 3634 9.344153599436 0 +29 3634 9.344153599436 0 +29 3671 9.514557200231 0 +29 3671 9.514557200231 0 +29 3682 9.514717200231 0 +29 3682 9.514717200231 0 +29 3704 9.524398906117 0 +29 3704 9.524398906117 0 +29 3715 9.524558906117 0 +29 3715 9.524558906117 0 +29 3739 9.531276162993 0 +29 3739 9.531276162993 0 +29 3747 9.531436162993 0 +29 3747 9.531436162993 0 +29 3782 9.557384418309 0 +29 3782 9.557384418309 0 +29 3797 9.557544418309 0 +29 3797 9.557544418309 0 +29 3848 9.643993595572 0 +29 3848 9.643993595572 0 +29 3859 9.644153595572 0 +29 3859 9.644153595572 0 +29 3896 9.814557184553 0 +29 3896 9.814557184553 0 +29 3907 9.814717184553 0 +29 3907 9.814717184553 0 +29 3929 9.824398906116 0 +29 3929 9.824398906116 0 +29 3940 9.824558906116 0 +29 3940 9.824558906116 0 +29 3964 9.831276162993 0 +29 3964 9.831276162993 0 +29 3972 9.831436162993 0 +29 3972 9.831436162993 0 +29 4007 9.857384418037 0 +29 4007 9.857384418037 0 +29 4022 9.857544418037 0 +29 4022 9.857544418037 0 +29 4073 9.943993591684 0 +29 4073 9.943993591684 0 +29 4084 9.944153591684 0 +29 4084 9.944153591684 0 +29 4121 10.114557168884 0 +29 4121 10.114557168884 0 +29 4132 10.114717168884 0 +29 4132 10.114717168884 0 +29 4154 10.124398906115 0 +29 4154 10.124398906115 0 +29 4165 10.124558906115 0 +29 4165 10.124558906115 0 +29 4189 10.131276162993 0 +29 4189 10.131276162993 0 +29 4197 10.131436162993 0 +29 4197 10.131436162993 0 +29 4232 10.15738441777 0 +29 4232 10.15738441777 0 +29 4247 10.15754441777 0 +29 4247 10.15754441777 0 +29 4298 10.243993587823 0 +29 4298 10.243993587823 0 +29 4309 10.244153587823 0 +29 4309 10.244153587823 0 +29 4346 10.414557153241 0 +29 4346 10.414557153241 0 +29 4357 10.414717153241 0 +29 4357 10.414717153241 0 +29 4379 10.424398906104 0 +29 4379 10.424398906104 0 +29 4390 10.424558906104 0 +29 4390 10.424558906104 0 +29 4414 10.431276162993 0 +29 4414 10.431276162993 0 +29 4422 10.431436162993 0 +29 4422 10.431436162993 0 +29 4457 10.457384417494 0 +29 4457 10.457384417494 0 +29 4472 10.457544417494 0 +29 4472 10.457544417494 0 +29 4523 10.543993584071 0 +29 4523 10.543993584071 0 +29 4534 10.544153584071 0 +29 4534 10.544153584071 0 +29 4575 10.7145571376 0 +29 4575 10.7145571376 0 +29 4586 10.7147171376 0 +29 4586 10.7147171376 0 +29 4612 10.724398906116 0 +29 4612 10.724398906116 0 +29 4623 10.724558906116 0 +29 4623 10.724558906116 0 +29 4647 10.731276162993 0 +29 4647 10.731276162993 0 +29 4655 10.731436162993 0 +29 4655 10.731436162993 0 +29 4690 10.757384417221 0 +29 4690 10.757384417221 0 +29 4705 10.757544417221 0 +29 4705 10.757544417221 0 +29 4756 10.843993580594 0 +29 4756 10.843993580594 0 +29 4767 10.844153580594 0 +29 4767 10.844153580594 0 +29 4808 11.014557121962 0 +29 4808 11.014557121962 0 +29 4819 11.014717121962 0 +29 4819 11.014717121962 0 +29 4845 11.024398906108 0 +29 4845 11.024398906108 0 +29 4856 11.024558906108 0 +29 4856 11.024558906108 0 +29 4880 11.031276162993 0 +29 4880 11.031276162993 0 +29 4888 11.031436162993 0 +29 4888 11.031436162993 0 +29 4923 11.057384416961 0 +29 4923 11.057384416961 0 +29 4938 11.057544416961 0 +29 4938 11.057544416961 0 +29 4989 11.1439935782 0 +29 4989 11.1439935782 0 +29 5000 11.1441535782 0 +29 5000 11.1441535782 0 +29 5041 11.314557106356 0 +29 5041 11.314557106356 0 +29 5052 11.314717106356 0 +29 5052 11.314717106356 0 +29 5078 11.324398906123 0 +29 5078 11.324398906123 0 +29 5089 11.324558906123 0 +29 5089 11.324558906123 0 +29 5113 11.331276162993 0 +29 5113 11.331276162993 0 +29 5121 11.331436162993 0 +29 5121 11.331436162993 0 +29 5156 11.357384416695 0 +29 5156 11.357384416695 0 +29 5171 11.357544416695 0 +29 5171 11.357544416695 0 +29 5189 11.393586261354 0 +29 5189 11.393586261354 0 +29 5200 11.393746261354 0 +29 5200 11.393746261354 0 +29 5222 11.443993576825 0 +29 5222 11.443993576825 0 +29 5233 11.444153576825 0 +29 5233 11.444153576825 0 +29 5274 11.614557090743 0 +29 5274 11.614557090743 0 +29 5285 11.614717090743 0 +29 5285 11.614717090743 0 +29 5311 11.624398906133 0 +29 5311 11.624398906133 0 +29 5322 11.624558906133 0 +29 5322 11.624558906133 0 +29 5346 11.631276162993 0 +29 5346 11.631276162993 0 +29 5354 11.631436162993 0 +29 5354 11.631436162993 0 +29 5393 11.657384416441 0 +29 5393 11.657384416441 0 +29 5408 11.657544416441 0 +29 5408 11.657544416441 0 +29 5426 11.693586259603 0 +29 5426 11.693586259603 0 +29 5437 11.693746259603 0 +29 5437 11.693746259603 0 +29 5463 11.743993576355 0 +29 5463 11.743993576355 0 +29 5474 11.744153576355 0 +29 5474 11.744153576355 0 +29 5515 11.914557075093 0 +29 5515 11.914557075093 0 +29 5526 11.914717075093 0 +29 5526 11.914717075093 0 +29 5552 11.924398906131 0 +29 5552 11.924398906131 0 +29 5563 11.924558906131 0 +29 5563 11.924558906131 0 +29 5587 11.931276162993 0 +29 5587 11.931276162993 0 +29 5595 11.931436162993 0 +29 5595 11.931436162993 0 +29 5634 11.957384416181 0 +29 5634 11.957384416181 0 +29 5649 11.957544416181 0 +29 5649 11.957544416181 0 +29 5667 11.993586257957 0 +29 5667 11.993586257957 0 +29 5678 11.993746257957 0 +29 5678 11.993746257957 0 +29 5704 12.043993576682 0 +29 5704 12.043993576682 0 +29 5715 12.044153576682 0 +29 5715 12.044153576682 0 +29 5756 12.214557059446 0 +29 5756 12.214557059446 0 +29 5767 12.214717059446 0 +29 5767 12.214717059446 0 +29 5793 12.22439890615 0 +29 5793 12.22439890615 0 +29 5804 12.22455890615 0 +29 5804 12.22455890615 0 +29 5828 12.231276162993 0 +29 5828 12.231276162993 0 +29 5836 12.231436162993 0 +29 5836 12.231436162993 0 +29 5875 12.25738441593 0 +29 5875 12.25738441593 0 +29 5890 12.25754441593 0 +29 5890 12.25754441593 0 +29 5908 12.293586256438 0 +29 5908 12.293586256438 0 +29 5919 12.293746256438 0 +29 5919 12.293746256438 0 +29 5945 12.343993577342 0 +29 5945 12.343993577342 0 +29 5956 12.344153577342 0 +29 5956 12.344153577342 0 +29 5997 12.514557043815 0 +29 5997 12.514557043815 0 +29 6008 12.514717043815 0 +29 6008 12.514717043815 0 +29 6034 12.524398906142 0 +29 6034 12.524398906142 0 +29 6045 12.524558906142 0 +29 6045 12.524558906142 0 +29 6069 12.531276162993 0 +29 6069 12.531276162993 0 +29 6077 12.531436162993 0 +29 6077 12.531436162993 0 +29 6116 12.557384415683 0 +29 6116 12.557384415683 0 +29 6131 12.557544415683 0 +29 6131 12.557544415683 0 +29 6149 12.593586255105 0 +29 6149 12.593586255105 0 +29 6160 12.593746255105 0 +29 6160 12.593746255105 0 +29 6186 12.643993578007 0 +29 6186 12.643993578007 0 +29 6197 12.644153578007 0 +29 6197 12.644153578007 0 +29 6238 12.814557028193 0 +29 6238 12.814557028193 0 +29 6249 12.814717028193 0 +29 6249 12.814717028193 0 +29 6275 12.824398906145 0 +29 6275 12.824398906145 0 +29 6286 12.824558906145 0 +29 6286 12.824558906145 0 +29 6310 12.831276162993 0 +29 6310 12.831276162993 0 +29 6318 12.831436162993 0 +29 6318 12.831436162993 0 +29 6357 12.857384415431 0 +29 6357 12.857384415431 0 +29 6372 12.857544415431 0 +29 6372 12.857544415431 0 +29 6390 12.893586254045 0 +29 6390 12.893586254045 0 +29 6401 12.893746254045 0 +29 6401 12.893746254045 0 +29 6427 12.943993578695 0 +29 6427 12.943993578695 0 +29 6438 12.944153578695 0 +29 6438 12.944153578695 0 +29 6479 13.114557012525 0 +29 6479 13.114557012525 0 +29 6490 13.114717012525 0 +29 6490 13.114717012525 0 +29 6516 13.124398906128 0 +29 6516 13.124398906128 0 +29 6527 13.124558906128 0 +29 6527 13.124558906128 0 +29 6551 13.131276162993 0 +29 6551 13.131276162993 0 +29 6559 13.131436162993 0 +29 6559 13.131436162993 0 +29 6598 13.157384415176 0 +29 6598 13.157384415176 0 +29 6613 13.157544415176 0 +29 6613 13.157544415176 0 +29 6631 13.193586253273 0 +29 6631 13.193586253273 0 +29 6642 13.193746253273 0 +29 6642 13.193746253273 0 +29 6668 13.243993579376 0 +29 6668 13.243993579376 0 +29 6679 13.244153579376 0 +29 6679 13.244153579376 0 +29 6720 13.414556996915 0 +29 6720 13.414556996915 0 +29 6731 13.414716996915 0 +29 6731 13.414716996915 0 +29 6757 13.424398906138 0 +29 6757 13.424398906138 0 +29 6768 13.424558906138 0 +29 6768 13.424558906138 0 +29 6792 13.431276162993 0 +29 6792 13.431276162993 0 +29 6800 13.431436162993 0 +29 6800 13.431436162993 0 +29 6839 13.45738441494 0 +29 6839 13.45738441494 0 +29 6854 13.45754441494 0 +29 6854 13.45754441494 0 +29 6872 13.493586252758 0 +29 6872 13.493586252758 0 +29 6883 13.493746252758 0 +29 6883 13.493746252758 0 +29 6909 13.543993580057 0 +29 6909 13.543993580057 0 +29 6920 13.544153580057 0 +29 6920 13.544153580057 0 +29 6961 13.714556981296 0 +29 6961 13.714556981296 0 +29 6972 13.714716981296 0 +29 6972 13.714716981296 0 +29 6998 13.724398906143 0 +29 6998 13.724398906143 0 +29 7009 13.724558906143 0 +29 7009 13.724558906143 0 +29 7033 13.731276162993 0 +29 7033 13.731276162993 0 +29 7041 13.731436162993 0 +29 7041 13.731436162993 0 +29 7080 13.75738441469 0 +29 7080 13.75738441469 0 +29 7095 13.75754441469 0 +29 7095 13.75754441469 0 +29 7113 13.793586252521 0 +29 7113 13.793586252521 0 +29 7124 13.793746252521 0 +29 7124 13.793746252521 0 +29 7150 13.843993580742 0 +29 7150 13.843993580742 0 +29 7161 13.844153580742 0 +29 7161 13.844153580742 0 +29 7201 14.014556965625 0 +29 7201 14.014556965625 0 +29 7208 14.014716965625 0 +29 7208 14.014716965625 0 +29 7239 14.024398906136 0 +29 7239 14.024398906136 0 +29 7250 14.024558906136 0 +29 7250 14.024558906136 0 +29 7274 14.031276162993 0 +29 7274 14.031276162993 0 +29 7282 14.031436162993 0 +29 7282 14.031436162993 0 +29 7321 14.057384414442 0 +29 7321 14.057384414442 0 +29 7336 14.057544414442 0 +29 7336 14.057544414442 0 +29 7354 14.093586252556 0 +29 7354 14.093586252556 0 +29 7365 14.093746252556 0 +29 7365 14.093746252556 0 +29 7391 14.143993581436 0 +29 7391 14.143993581436 0 +29 7402 14.144153581436 0 +29 7402 14.144153581436 0 +29 7442 14.314556950015 0 +29 7442 14.314556950015 0 +29 7449 14.314716950015 0 +29 7449 14.314716950015 0 +29 7480 14.324398906149 0 +29 7480 14.324398906149 0 +29 7491 14.324558906149 0 +29 7491 14.324558906149 0 +29 7515 14.331276162993 0 +29 7515 14.331276162993 0 +29 7523 14.331436162993 0 +29 7523 14.331436162993 0 +29 7562 14.357384414212 0 +29 7562 14.357384414212 0 +29 7577 14.357544414212 0 +29 7577 14.357544414212 0 +29 7595 14.393586252856 0 +29 7595 14.393586252856 0 +29 7606 14.393746252856 0 +29 7606 14.393746252856 0 +29 7632 14.443993582121 0 +29 7632 14.443993582121 0 +29 7643 14.444153582121 0 +29 7643 14.444153582121 0 +29 7683 14.614556934427 0 +29 7683 14.614556934427 0 +29 7690 14.614716934427 0 +29 7690 14.614716934427 0 +29 7721 14.624398906139 0 +29 7721 14.624398906139 0 +29 7732 14.624558906139 0 +29 7732 14.624558906139 0 +29 7756 14.631276162993 0 +29 7756 14.631276162993 0 +29 7764 14.631436162993 0 +29 7764 14.631436162993 0 +29 7803 14.657384413973 0 +29 7803 14.657384413973 0 +29 7818 14.657544413973 0 +29 7818 14.657544413973 0 +29 7836 14.693586253132 0 +29 7836 14.693586253132 0 +29 7847 14.693746253132 0 +29 7847 14.693746253132 0 +29 7873 14.743993582821 0 +29 7873 14.743993582821 0 +29 7884 14.744153582821 0 +29 7884 14.744153582821 0 +29 7924 14.914556918856 0 +29 7924 14.914556918856 0 +29 7931 14.914716918856 0 +29 7931 14.914716918856 0 +29 7962 14.924398906135 0 +29 7962 14.924398906135 0 +29 7973 14.924558906135 0 +29 7973 14.924558906135 0 +29 7997 14.931276162993 0 +29 7997 14.931276162993 0 +29 8005 14.931436162993 0 +29 8005 14.931436162993 0 +29 8044 14.957384413742 0 +29 8044 14.957384413742 0 +29 8059 14.957544413742 0 +29 8059 14.957544413742 0 +29 8077 14.993586247233 0 +29 8077 14.993586247233 0 +29 8088 14.993746247233 0 +29 8088 14.993746247233 0 +29 8114 15.043993583523 0 +29 8114 15.043993583523 0 +29 8125 15.044153583523 0 +29 8125 15.044153583523 0 +29 8165 15.214556903292 0 +29 8165 15.214556903292 0 +29 8172 15.214716903292 0 +29 8172 15.214716903292 0 +29 8203 15.22439890612 0 +29 8203 15.22439890612 0 +29 8214 15.22455890612 0 +29 8214 15.22455890612 0 +29 8238 15.231276162993 0 +29 8238 15.231276162993 0 +29 8246 15.231436162993 0 +29 8246 15.231436162993 0 +29 8285 15.257384413499 0 +29 8285 15.257384413499 0 +29 8300 15.257544413499 0 +29 8300 15.257544413499 0 +29 8318 15.293586234372 0 +29 8318 15.293586234372 0 +29 8329 15.293746234372 0 +29 8329 15.293746234372 0 +29 8355 15.343993584234 0 +29 8355 15.343993584234 0 +29 8366 15.344153584234 0 +29 8366 15.344153584234 0 +29 8406 15.514556887741 0 +29 8406 15.514556887741 0 +29 8413 15.514716887741 0 +29 8413 15.514716887741 0 +29 8444 15.524398906129 0 +29 8444 15.524398906129 0 +29 8455 15.524558906129 0 +29 8455 15.524558906129 0 +29 8479 15.531276162993 0 +29 8479 15.531276162993 0 +29 8487 15.531436162993 0 +29 8487 15.531436162993 0 +29 8526 15.557384413279 0 +29 8526 15.557384413279 0 +29 8541 15.557544413279 0 +29 8541 15.557544413279 0 +29 8559 15.59358622109 0 +29 8559 15.59358622109 0 +29 8570 15.59374622109 0 +29 8570 15.59374622109 0 +29 8596 15.643993584927 0 +29 8596 15.643993584927 0 +29 8607 15.644153584927 0 +29 8607 15.644153584927 0 +29 8647 15.814556872317 0 +29 8647 15.814556872317 0 +29 8654 15.814716872317 0 +29 8654 15.814716872317 0 +29 8685 15.82439890615 0 +29 8685 15.82439890615 0 +29 8696 15.82455890615 0 +29 8696 15.82455890615 0 +29 8720 15.831276162993 0 +29 8720 15.831276162993 0 +29 8728 15.831436162993 0 +29 8728 15.831436162993 0 +29 8767 15.857384413074 0 +29 8767 15.857384413074 0 +29 8782 15.857544413074 0 +29 8782 15.857544413074 0 +29 8800 15.893586207767 0 +29 8800 15.893586207767 0 +29 8811 15.893746207767 0 +29 8811 15.893746207767 0 +29 8837 15.943993585623 0 +29 8837 15.943993585623 0 +29 8848 15.944153585623 0 +29 8848 15.944153585623 0 +29 8888 16.114556856962 0 +29 8888 16.114556856962 0 +29 8895 16.114716856962 0 +29 8895 16.114716856962 0 +29 8930 16.124398906134 0 +29 8930 16.124398906134 0 +29 8941 16.124558906134 0 +29 8941 16.124558906134 0 +29 8965 16.131276162993 0 +29 8965 16.131276162993 0 +29 8973 16.131436162993 0 +29 8973 16.131436162993 0 +29 9012 16.157384412841 0 +29 9012 16.157384412841 0 +29 9027 16.157544412841 0 +29 9027 16.157544412841 0 +29 9045 16.19358619447 0 +29 9045 16.19358619447 0 +29 9056 16.19374619447 0 +29 9056 16.19374619447 0 +29 9086 16.243993586344 0 +29 9086 16.243993586344 0 +29 9097 16.244153586344 0 +29 9097 16.244153586344 0 +29 9137 16.414556841879 0 +29 9137 16.414556841879 0 +29 9144 16.414716841879 0 +29 9144 16.414716841879 0 +29 9179 16.42439890611 0 +29 9179 16.42439890611 0 +29 9190 16.42455890611 0 +29 9190 16.42455890611 0 +29 9214 16.431276162993 0 +29 9214 16.431276162993 0 +29 9222 16.431436162993 0 +29 9222 16.431436162993 0 +29 9261 16.457384412619 0 +29 9261 16.457384412619 0 +29 9276 16.457544412619 0 +29 9276 16.457544412619 0 +29 9294 16.493586182941 0 +29 9294 16.493586182941 0 +29 9305 16.493746182941 0 +29 9305 16.493746182941 0 +29 9335 16.543993587061 0 +29 9335 16.543993587061 0 +29 9346 16.544153587061 0 +29 9346 16.544153587061 0 +29 9386 16.714556827831 0 +29 9386 16.714556827831 0 +29 9393 16.714716827831 0 +29 9393 16.714716827831 0 +29 9428 16.72439890611 0 +29 9428 16.72439890611 0 +29 9439 16.72455890611 0 +29 9439 16.72455890611 0 +29 9463 16.731276162993 0 +29 9463 16.731276162993 0 +29 9471 16.731436162993 0 +29 9471 16.731436162993 0 +29 9510 16.757384412406 0 +29 9510 16.757384412406 0 +29 9525 16.757544412406 0 +29 9525 16.757544412406 0 +29 9543 16.793586174099 0 +29 9543 16.793586174099 0 +29 9554 16.793746174099 0 +29 9554 16.793746174099 0 +29 9584 16.843993587769 0 +29 9584 16.843993587769 0 +29 9595 16.844153587769 0 +29 9595 16.844153587769 0 +29 9635 17.01455682019 0 +29 9635 17.01455682019 0 +29 9642 17.01471682019 0 +29 9642 17.01471682019 0 +29 9676 17.024398906114 0 +29 9676 17.024398906114 0 +29 9683 17.024558906114 0 +29 9683 17.024558906114 0 +29 9712 17.031276162993 0 +29 9712 17.031276162993 0 +29 9720 17.031436162993 0 +29 9720 17.031436162993 0 +29 9759 17.057384412189 0 +29 9759 17.057384412189 0 +29 9774 17.057544412189 0 +29 9774 17.057544412189 0 +29 9793 17.093586167963 0 +29 9793 17.093586167963 0 +29 9808 17.093746167963 0 +29 9808 17.093746167963 0 +29 9834 17.143993588488 0 +29 9834 17.143993588488 0 +29 9849 17.144153588488 0 +29 9849 17.144153588488 0 +29 9884 17.314556829071 0 +29 9884 17.314556829071 0 +29 9891 17.314716829071 0 +29 9891 17.314716829071 0 +29 9925 17.324398906121 0 +29 9925 17.324398906121 0 +29 9932 17.324558906121 0 +29 9932 17.324558906121 0 +29 9961 17.331276162993 0 +29 9961 17.331276162993 0 +29 9969 17.331436162993 0 +29 9969 17.331436162993 0 +29 10007 17.357384411975 0 +29 10007 17.357384411975 0 +29 10018 17.357544411975 0 +29 10018 17.357544411975 0 +29 10042 17.393586164536 0 +29 10042 17.393586164536 0 +29 10057 17.393746164536 0 +29 10057 17.393746164536 0 +29 10083 17.44399358921 0 +29 10083 17.44399358921 0 +29 10098 17.44415358921 0 +29 10098 17.44415358921 0 +29 10133 17.614556843292 0 +29 10133 17.614556843292 0 +29 10140 17.614716843292 0 +29 10140 17.614716843292 0 +29 10174 17.624398906125 0 +29 10174 17.624398906125 0 +29 10181 17.624558906125 0 +29 10181 17.624558906125 0 +29 10210 17.631276162993 0 +29 10210 17.631276162993 0 +29 10218 17.631436162993 0 +29 10218 17.631436162993 0 +29 10256 17.657384411748 0 +29 10256 17.657384411748 0 +29 10267 17.657544411748 0 +29 10267 17.657544411748 0 +29 10291 17.693586163751 0 +29 10291 17.693586163751 0 +29 10306 17.693746163751 0 +29 10306 17.693746163751 0 +29 10332 17.743993589932 0 +29 10332 17.743993589932 0 +29 10347 17.744153589932 0 +29 10347 17.744153589932 0 +29 10382 17.914556858379 0 +29 10382 17.914556858379 0 +29 10389 17.914716858379 0 +29 10389 17.914716858379 0 +29 10419 17.924398906139 0 +29 10419 17.924398906139 0 +29 10426 17.924558906139 0 +29 10426 17.924558906139 0 +29 10455 17.931276162993 0 +29 10455 17.931276162993 0 +29 10463 17.931436162993 0 +29 10463 17.931436162993 0 +29 10501 17.957384411544 0 +29 10501 17.957384411544 0 +29 10512 17.957544411544 0 +29 10512 17.957544411544 0 +29 10532 17.993586163742 0 +29 10532 17.993586163742 0 +29 10547 17.993746163742 0 +29 10547 17.993746163742 0 +29 10573 18.043993590647 0 +29 10573 18.043993590647 0 +29 10588 18.044153590647 0 +29 10588 18.044153590647 0 +29 10623 18.214556873732 0 +29 10623 18.214556873732 0 +29 10630 18.214716873732 0 +29 10630 18.214716873732 0 +29 10660 18.22439890616 0 +29 10660 18.22439890616 0 +29 10667 18.22455890616 0 +29 10667 18.22455890616 0 +29 10692 18.231276162993 0 +29 10692 18.231276162993 0 +29 10700 18.231436162993 0 +29 10700 18.231436162993 0 +29 10738 18.257384411348 0 +29 10738 18.257384411348 0 +29 10749 18.257544411348 0 +29 10749 18.257544411348 0 +29 10769 18.29358616373 0 +29 10769 18.29358616373 0 +29 10784 18.29374616373 0 +29 10784 18.29374616373 0 +29 10810 18.343993591375 0 +29 10810 18.343993591375 0 +29 10825 18.344153591375 0 +29 10825 18.344153591375 0 +29 10856 18.514556889096 0 +29 10856 18.514556889096 0 +29 10863 18.514716889096 0 +29 10863 18.514716889096 0 +29 10893 18.524398906161 0 +29 10893 18.524398906161 0 +29 10900 18.524558906161 0 +29 10900 18.524558906161 0 +29 10925 18.531276162993 0 +29 10925 18.531276162993 0 +29 10933 18.531436162993 0 +29 10933 18.531436162993 0 +29 10971 18.557384411139 0 +29 10971 18.557384411139 0 +29 10982 18.557544411139 0 +29 10982 18.557544411139 0 +29 11002 18.593586163725 0 +29 11002 18.593586163725 0 +29 11017 18.593746163725 0 +29 11017 18.593746163725 0 +29 11043 18.64399359211 0 +29 11043 18.64399359211 0 +29 11058 18.64415359211 0 +29 11058 18.64415359211 0 +29 11089 18.814556899317 0 +29 11089 18.814556899317 0 +29 11096 18.814716899317 0 +29 11096 18.814716899317 0 +29 11126 18.824398906157 0 +29 11126 18.824398906157 0 +29 11133 18.824558906157 0 +29 11133 18.824558906157 0 +29 11158 18.831276162993 0 +29 11158 18.831276162993 0 +29 11166 18.831436162993 0 +29 11166 18.831436162993 0 +29 11204 18.857384410943 0 +29 11204 18.857384410943 0 +29 11215 18.857544410943 0 +29 11215 18.857544410943 0 +29 11235 18.893586163718 0 +29 11235 18.893586163718 0 +29 11250 18.893746163718 0 +29 11250 18.893746163718 0 +29 11276 18.943993592844 0 +29 11276 18.943993592844 0 +29 11291 18.944153592844 0 +29 11291 18.944153592844 0 +29 11322 19.114556905927 0 +29 11322 19.114556905927 0 +29 11329 19.114716905927 0 +29 11329 19.114716905927 0 +29 11359 19.124398906156 0 +29 11359 19.124398906156 0 +29 11366 19.124558906156 0 +29 11366 19.124558906156 0 +29 11391 19.131276162993 0 +29 11391 19.131276162993 0 +29 11399 19.131436162993 0 +29 11399 19.131436162993 0 +29 11437 19.157384410755 0 +29 11437 19.157384410755 0 +29 11448 19.157544410755 0 +29 11448 19.157544410755 0 +29 11468 19.193586163706 0 +29 11468 19.193586163706 0 +29 11483 19.193746163706 0 +29 11483 19.193746163706 0 +29 11509 19.243993593591 0 +29 11509 19.243993593591 0 +29 11524 19.244153593591 0 +29 11524 19.244153593591 0 +29 11555 19.414556913869 0 +29 11555 19.414556913869 0 +29 11562 19.414716913869 0 +29 11562 19.414716913869 0 +29 11592 19.424398906135 0 +29 11592 19.424398906135 0 +29 11599 19.424558906135 0 +29 11599 19.424558906135 0 +29 11624 19.431276162993 0 +29 11624 19.431276162993 0 +29 11632 19.431436162993 0 +29 11632 19.431436162993 0 +29 11670 19.457384410552 0 +29 11670 19.457384410552 0 +29 11681 19.457544410552 0 +29 11681 19.457544410552 0 +29 11701 19.49358616371 0 +29 11701 19.49358616371 0 +29 11716 19.49374616371 0 +29 11716 19.49374616371 0 +29 11742 19.543993594392 0 +29 11742 19.543993594392 0 +29 11757 19.544153594392 0 +29 11757 19.544153594392 0 +29 11788 19.714556923553 0 +29 11788 19.714556923553 0 +29 11795 19.714716923553 0 +29 11795 19.714716923553 0 +29 11825 19.724398906093 0 +29 11825 19.724398906093 0 +29 11832 19.724558906093 0 +29 11832 19.724558906093 0 +29 11857 19.731276162993 0 +29 11857 19.731276162993 0 +29 11865 19.731436162993 0 +29 11865 19.731436162993 0 +29 11903 19.757384409991 0 +29 11903 19.757384409991 0 +29 11914 19.757544409991 0 +29 11914 19.757544409991 0 +29 11934 19.793586163688 0 +29 11934 19.793586163688 0 +29 11949 19.793746163688 0 +29 11949 19.793746163688 0 +29 11975 19.843993595698 0 +29 11975 19.843993595698 0 +29 11990 19.844153595698 0 +29 11990 19.844153595698 0 +29 12021 20.014556934723 0 +29 12021 20.014556934723 0 +29 12028 20.014716934723 0 +29 12028 20.014716934723 0 +29 12062 20.024398905916 0 +29 12062 20.024398905916 0 +29 12069 20.024558905916 0 +29 12069 20.024558905916 0 +29 12094 20.031276162993 0 +29 12094 20.031276162993 0 +29 12102 20.031436162993 0 +29 12102 20.031436162993 0 +29 12140 20.057384408842 0 +29 12140 20.057384408842 0 +29 12151 20.057544408842 0 +29 12151 20.057544408842 0 +29 12175 20.0935861637 0 +29 12175 20.0935861637 0 +29 12190 20.0937461637 0 +29 12190 20.0937461637 0 +29 12216 20.143993597547 0 +29 12216 20.143993597547 0 +29 12231 20.144153597547 0 +29 12231 20.144153597547 0 +29 12262 20.314556946995 0 +29 12262 20.314556946995 0 +29 12269 20.314716946995 0 +29 12269 20.314716946995 0 +29 12303 20.324398905745 0 +29 12303 20.324398905745 0 +29 12310 20.324558905745 0 +29 12310 20.324558905745 0 +29 12335 20.331276162993 0 +29 12335 20.331276162993 0 +29 12343 20.331436162993 0 +29 12343 20.331436162993 0 +29 12381 20.357384407512 0 +29 12381 20.357384407512 0 +29 12392 20.357544407512 0 +29 12392 20.357544407512 0 +29 12416 20.393586163659 0 +29 12416 20.393586163659 0 +29 12431 20.393746163659 0 +29 12431 20.393746163659 0 +29 12457 20.443993599834 0 +29 12457 20.443993599834 0 +29 12472 20.444153599834 0 +29 12472 20.444153599834 0 +29 12503 20.614556960156 0 +29 12503 20.614556960156 0 +29 12510 20.614716960156 0 +29 12510 20.614716960156 0 +29 12544 20.624398905622 0 +29 12544 20.624398905622 0 +29 12551 20.624558905622 0 +29 12551 20.624558905622 0 +29 12576 20.631276162993 0 +29 12576 20.631276162993 0 +29 12584 20.631436162993 0 +29 12584 20.631436162993 0 +29 12622 20.6573844061 0 +29 12622 20.6573844061 0 +29 12633 20.6575444061 0 +29 12633 20.6575444061 0 +29 12657 20.693586163661 0 +29 12657 20.693586163661 0 +29 12672 20.693746163661 0 +29 12672 20.693746163661 0 +29 12698 20.743993602682 0 +29 12698 20.743993602682 0 +29 12713 20.744153602682 0 +29 12713 20.744153602682 0 +29 12744 20.914556974042 0 +29 12744 20.914556974042 0 +29 12751 20.914716974042 0 +29 12751 20.914716974042 0 +29 12785 20.924398905643 0 +29 12785 20.924398905643 0 +29 12792 20.924558905643 0 +29 12792 20.924558905643 0 +29 12817 20.931276162993 0 +29 12817 20.931276162993 0 +29 12825 20.931436162993 0 +29 12825 20.931436162993 0 +29 12863 20.957384404581 0 +29 12863 20.957384404581 0 +29 12874 20.957544404581 0 +29 12874 20.957544404581 0 +29 12898 20.993586163701 0 +29 12898 20.993586163701 0 +29 12913 20.993746163701 0 +29 12913 20.993746163701 0 +29 12939 21.043993605975 0 +29 12939 21.043993605975 0 +29 12954 21.044153605975 0 +29 12954 21.044153605975 0 +29 12985 21.214556988437 0 +29 12985 21.214556988437 0 +29 12992 21.214716988437 0 +29 12992 21.214716988437 0 +29 13026 21.22439890572 0 +29 13026 21.22439890572 0 +29 13033 21.22455890572 0 +29 13033 21.22455890572 0 +29 13058 21.231276162993 0 +29 13058 21.231276162993 0 +29 13066 21.231436162993 0 +29 13066 21.231436162993 0 +29 13104 21.257384403056 0 +29 13104 21.257384403056 0 +29 13115 21.257544403056 0 +29 13115 21.257544403056 0 +29 13139 21.293586163789 0 +29 13139 21.293586163789 0 +29 13154 21.293746163789 0 +29 13154 21.293746163789 0 +29 13180 21.343993609822 0 +29 13180 21.343993609822 0 +29 13195 21.344153609822 0 +29 13195 21.344153609822 0 +29 13226 21.514557003324 0 +29 13226 21.514557003324 0 +29 13233 21.514717003324 0 +29 13233 21.514717003324 0 +29 13267 21.524398905746 0 +29 13267 21.524398905746 0 +29 13274 21.524558905746 0 +29 13274 21.524558905746 0 +29 13299 21.531276162993 0 +29 13299 21.531276162993 0 +29 13307 21.531436162993 0 +29 13307 21.531436162993 0 +29 13345 21.557384401467 0 +29 13345 21.557384401467 0 +29 13356 21.557544401467 0 +29 13356 21.557544401467 0 +29 13380 21.593586163828 0 +29 13380 21.593586163828 0 +29 13395 21.593746163828 0 +29 13395 21.593746163828 0 +29 13421 21.643993614218 0 +29 13421 21.643993614218 0 +29 13436 21.644153614218 0 +29 13436 21.644153614218 0 +29 13467 21.814557018645 0 +29 13467 21.814557018645 0 +29 13474 21.814717018645 0 +29 13474 21.814717018645 0 +29 13508 21.82439890573 0 +29 13508 21.82439890573 0 +29 13515 21.82455890573 0 +29 13515 21.82455890573 0 +29 13540 21.831276162993 0 +29 13540 21.831276162993 0 +29 13548 21.831436162993 0 +29 13548 21.831436162993 0 +29 13586 21.857384399784 0 +29 13586 21.857384399784 0 +29 13597 21.857544399784 0 +29 13597 21.857544399784 0 +29 13621 21.893586163871 0 +29 13621 21.893586163871 0 +29 13636 21.893746163871 0 +29 13636 21.893746163871 0 +29 13662 21.943993619248 0 +29 13662 21.943993619248 0 +29 13677 21.944153619248 0 +29 13677 21.944153619248 0 +29 13708 22.114557034351 0 +29 13708 22.114557034351 0 +29 13715 22.114717034351 0 +29 13715 22.114717034351 0 +29 13749 22.124398905663 0 +29 13749 22.124398905663 0 +29 13756 22.124558905663 0 +29 13756 22.124558905663 0 +29 13781 22.131276162993 0 +29 13781 22.131276162993 0 +29 13789 22.131436162993 0 +29 13789 22.131436162993 0 +29 13827 22.157384398008 0 +29 13827 22.157384398008 0 +29 13838 22.157544398008 0 +29 13838 22.157544398008 0 +29 13862 22.193586163915 0 +29 13862 22.193586163915 0 +29 13877 22.193746163915 0 +29 13877 22.193746163915 0 +29 13903 22.243993624898 0 +29 13903 22.243993624898 0 +29 13918 22.244153624898 0 +29 13918 22.244153624898 0 +29 13949 22.414557050412 0 +29 13949 22.414557050412 0 +29 13956 22.414717050412 0 +29 13956 22.414717050412 0 +29 13990 22.424398905574 0 +29 13990 22.424398905574 0 +29 13997 22.424558905574 0 +29 13997 22.424558905574 0 +29 14022 22.431276162993 0 +29 14022 22.431276162993 0 +29 14030 22.431436162993 0 +29 14030 22.431436162993 0 +29 14068 22.45738439623 0 +29 14068 22.45738439623 0 +29 14079 22.45754439623 0 +29 14079 22.45754439623 0 +29 14103 22.493586164003 0 +29 14103 22.493586164003 0 +29 14118 22.493746164003 0 +29 14118 22.493746164003 0 +29 14144 22.543993631141 0 +29 14144 22.543993631141 0 +29 14159 22.544153631141 0 +29 14159 22.544153631141 0 +29 14190 22.714557066832 0 +29 14190 22.714557066832 0 +29 14197 22.714717066832 0 +29 14197 22.714717066832 0 +29 14231 22.724398905447 0 +29 14231 22.724398905447 0 +29 14238 22.724558905447 0 +29 14238 22.724558905447 0 +29 14263 22.731276162993 0 +29 14263 22.731276162993 0 +29 14271 22.731436162993 0 +29 14271 22.731436162993 0 +29 14309 22.757384394544 0 +29 14309 22.757384394544 0 +29 14320 22.757544394544 0 +29 14320 22.757544394544 0 +29 14344 22.793586164046 0 +29 14344 22.793586164046 0 +29 14359 22.793746164046 0 +29 14359 22.793746164046 0 +29 14385 22.843993638109 0 +29 14385 22.843993638109 0 +29 14400 22.844153638109 0 +29 14400 22.844153638109 0 +29 14431 23.014557083564 0 +29 14431 23.014557083564 0 +29 14438 23.014717083564 0 +29 14438 23.014717083564 0 +29 14472 23.024398905315 0 +29 14472 23.024398905315 0 +29 14479 23.024558905315 0 +29 14479 23.024558905315 0 +29 14504 23.031276162993 0 +29 14504 23.031276162993 0 +29 14512 23.031436162993 0 +29 14512 23.031436162993 0 +29 14550 23.057384392975 0 +29 14550 23.057384392975 0 +29 14561 23.057544392975 0 +29 14561 23.057544392975 0 +29 14585 23.093586164045 0 +29 14585 23.093586164045 0 +29 14600 23.093746164045 0 +29 14600 23.093746164045 0 +29 14626 23.143993645806 0 +29 14626 23.143993645806 0 +29 14641 23.144153645806 0 +29 14641 23.144153645806 0 +29 14672 23.314557100631 0 +29 14672 23.314557100631 0 +29 14679 23.314717100631 0 +29 14679 23.314717100631 0 +29 14713 23.324398905056 0 +29 14713 23.324398905056 0 +29 14720 23.324558905056 0 +29 14720 23.324558905056 0 +29 14745 23.331276162993 0 +29 14745 23.331276162993 0 +29 14753 23.331436162993 0 +29 14753 23.331436162993 0 +29 14791 23.357384391504 0 +29 14791 23.357384391504 0 +29 14802 23.357544391504 0 +29 14802 23.357544391504 0 +29 14826 23.393586164071 0 +29 14826 23.393586164071 0 +29 14841 23.393746164071 0 +29 14841 23.393746164071 0 +29 14867 23.443993653987 0 +29 14867 23.443993653987 0 +29 14882 23.444153653987 0 +29 14882 23.444153653987 0 +29 14913 23.614557118038 0 +29 14913 23.614557118038 0 +29 14920 23.614717118038 0 +29 14920 23.614717118038 0 +29 14954 23.624398904843 0 +29 14954 23.624398904843 0 +29 14961 23.624558904843 0 +29 14961 23.624558904843 0 +29 14986 23.631276162993 0 +29 14986 23.631276162993 0 +29 14994 23.631436162993 0 +29 14994 23.631436162993 0 +29 15032 23.657384390261 0 +29 15032 23.657384390261 0 +29 15043 23.657544390261 0 +29 15043 23.657544390261 0 +29 15067 23.693586164114 0 +29 15067 23.693586164114 0 +29 15082 23.693746164114 0 +29 15082 23.693746164114 0 +29 15108 23.743993657373 0 +29 15108 23.743993657373 0 +29 15123 23.744153657373 0 +29 15123 23.744153657373 0 +29 15154 23.914557135739 0 +29 15154 23.914557135739 0 +29 15161 23.914717135739 0 +29 15161 23.914717135739 0 +29 15195 23.924398904623 0 +29 15195 23.924398904623 0 +29 15202 23.924558904623 0 +29 15202 23.924558904623 0 +29 15227 23.931276162993 0 +29 15227 23.931276162993 0 +29 15235 23.931436162993 0 +29 15235 23.931436162993 0 +29 15273 23.957384389283 0 +29 15273 23.957384389283 0 +29 15284 23.957544389283 0 +29 15284 23.957544389283 0 +29 15308 23.993586164088 0 +29 15308 23.993586164088 0 +29 15323 23.993746164088 0 +29 15323 23.993746164088 0 +29 15349 24.043993663161 0 +29 15349 24.043993663161 0 +29 15364 24.044153663161 0 +29 15364 24.044153663161 0 +29 15395 24.214557153664 0 +29 15395 24.214557153664 0 +29 15402 24.214717153664 0 +29 15402 24.214717153664 0 +29 15436 24.224398904516 0 +29 15436 24.224398904516 0 +29 15443 24.224558904516 0 +29 15443 24.224558904516 0 +29 15468 24.231276162993 0 +29 15468 24.231276162993 0 +29 15476 24.231436162993 0 +29 15476 24.231436162993 0 +29 15515 24.257384388584 0 +29 15515 24.257384388584 0 +29 15530 24.257544388584 0 +29 15530 24.257544388584 0 +29 15549 24.293586163925 0 +29 15549 24.293586163925 0 +29 15564 24.293746163925 0 +29 15564 24.293746163925 0 +29 15590 24.343993674356 0 +29 15590 24.343993674356 0 +29 15605 24.344153674356 0 +29 15605 24.344153674356 0 +29 15636 24.51455717198 0 +29 15636 24.51455717198 0 +29 15643 24.51471717198 0 +29 15643 24.51471717198 0 +29 15677 24.52439890444 0 +29 15677 24.52439890444 0 +29 15684 24.52455890444 0 +29 15684 24.52455890444 0 +29 15709 24.531276162993 0 +29 15709 24.531276162993 0 +29 15717 24.531436162993 0 +29 15717 24.531436162993 0 +29 15756 24.557384388126 0 +29 15756 24.557384388126 0 +29 15771 24.557544388126 0 +29 15771 24.557544388126 0 +29 15790 24.59358616382 0 +29 15790 24.59358616382 0 +29 15805 24.59374616382 0 +29 15805 24.59374616382 0 +29 15831 24.643993686393 0 +29 15831 24.643993686393 0 +29 15846 24.644153686393 0 +29 15846 24.644153686393 0 +29 15877 24.814557190662 0 +29 15877 24.814557190662 0 +29 15884 24.814717190662 0 +29 15884 24.814717190662 0 +29 15918 24.824398904207 0 +29 15918 24.824398904207 0 +29 15925 24.824558904207 0 +29 15925 24.824558904207 0 +29 15950 24.831276162993 0 +29 15950 24.831276162993 0 +29 15958 24.831436162993 0 +29 15958 24.831436162993 0 +29 15997 24.857384387996 0 +29 15997 24.857384387996 0 +29 16012 24.857544387996 0 +29 16012 24.857544387996 0 +29 16031 24.893586163833 0 +29 16031 24.893586163833 0 +29 16046 24.893746163833 0 +29 16046 24.893746163833 0 +29 16072 24.943993699252 0 +29 16072 24.943993699252 0 +29 16087 24.944153699252 0 +29 16087 24.944153699252 0 +29 16118 25.114557209682 0 +29 16118 25.114557209682 0 +29 16125 25.114717209682 0 +29 16125 25.114717209682 0 +29 16159 25.124398903459 0 +29 16159 25.124398903459 0 +29 16166 25.124558903459 0 +29 16166 25.124558903459 0 +29 16191 25.131276162993 0 +29 16191 25.131276162993 0 +29 16199 25.131436162993 0 +29 16199 25.131436162993 0 +29 16238 25.15738438831 0 +29 16238 25.15738438831 0 +29 16253 25.15754438831 0 +29 16253 25.15754438831 0 +29 16272 25.19358616381 0 +29 16272 25.19358616381 0 +29 16287 25.19374616381 0 +29 16287 25.19374616381 0 +29 16313 25.243993712907 0 +29 16313 25.243993712907 0 +29 16328 25.244153712907 0 +29 16328 25.244153712907 0 +29 16359 25.414557228959 0 +29 16359 25.414557228959 0 +29 16366 25.414717228959 0 +29 16366 25.414717228959 0 +29 16400 25.424398902138 0 +29 16400 25.424398902138 0 +29 16407 25.424558902138 0 +29 16407 25.424558902138 0 +29 16432 25.431276162993 0 +29 16432 25.431276162993 0 +29 16440 25.431436162993 0 +29 16440 25.431436162993 0 +29 16479 25.457384389027 0 +29 16479 25.457384389027 0 +29 16494 25.457544389027 0 +29 16494 25.457544389027 0 +29 16513 25.493586163787 0 +29 16513 25.493586163787 0 +29 16528 25.493746163787 0 +29 16528 25.493746163787 0 +29 16554 25.543993727372 0 +29 16554 25.543993727372 0 +29 16569 25.544153727372 0 +29 16569 25.544153727372 0 +29 16601 25.714557248637 0 +29 16601 25.714557248637 0 +29 16612 25.714717248637 0 +29 16612 25.714717248637 0 +29 16641 25.724398900217 0 +29 16641 25.724398900217 0 +29 16648 25.724558900217 0 +29 16648 25.724558900217 0 +29 16673 25.731276162993 0 +29 16673 25.731276162993 0 +29 16681 25.731436162993 0 +29 16681 25.731436162993 0 +29 16720 25.757384390233 0 +29 16720 25.757384390233 0 +29 16735 25.757544390233 0 +29 16735 25.757544390233 0 +29 16754 25.793586163731 0 +29 16754 25.793586163731 0 +29 16769 25.793746163731 0 +29 16769 25.793746163731 0 +29 16795 25.843993742406 0 +29 16795 25.843993742406 0 +29 16810 25.844153742406 0 +29 16810 25.844153742406 0 +29 16842 26.014557267922 0 +29 16842 26.014557267922 0 +29 16853 26.014717267922 0 +29 16853 26.014717267922 0 +29 16882 26.024398899074 0 +29 16882 26.024398899074 0 +29 16889 26.024558899074 0 +29 16889 26.024558899074 0 +29 16914 26.031276162993 0 +29 16914 26.031276162993 0 +29 16922 26.031436162993 0 +29 16922 26.031436162993 0 +29 16961 26.057384392844 0 +29 16961 26.057384392844 0 +29 16976 26.057544392844 0 +29 16976 26.057544392844 0 +29 16995 26.093586162311 0 +29 16995 26.093586162311 0 +29 17010 26.093746162311 0 +29 17010 26.093746162311 0 +29 17036 26.1439937566 0 +29 17036 26.1439937566 0 +29 17051 26.1441537566 0 +29 17051 26.1441537566 0 +29 17083 26.314557286443 0 +29 17083 26.314557286443 0 +29 17094 26.314717286443 0 +29 17094 26.314717286443 0 +29 17123 26.324398899192 0 +29 17123 26.324398899192 0 +29 17130 26.324558899192 0 +29 17130 26.324558899192 0 +29 17155 26.331276162993 0 +29 17155 26.331276162993 0 +29 17163 26.331436162993 0 +29 17163 26.331436162993 0 +29 17202 26.357384397031 0 +29 17202 26.357384397031 0 +29 17217 26.357544397031 0 +29 17217 26.357544397031 0 +29 17236 26.39358615939 0 +29 17236 26.39358615939 0 +29 17251 26.39374615939 0 +29 17251 26.39374615939 0 +29 17277 26.443993769777 0 +29 17277 26.443993769777 0 +29 17292 26.444153769777 0 +29 17292 26.444153769777 0 +29 17324 26.614557304195 0 +29 17324 26.614557304195 0 +29 17335 26.614717304195 0 +29 17335 26.614717304195 0 +29 17364 26.624398900705 0 +29 17364 26.624398900705 0 +29 17371 26.624558900705 0 +29 17371 26.624558900705 0 +29 17396 26.631276162993 0 +29 17396 26.631276162993 0 +29 17404 26.631436162993 0 +29 17404 26.631436162993 0 +29 17443 26.657384402378 0 +29 17443 26.657384402378 0 +29 17458 26.657544402378 0 +29 17458 26.657544402378 0 +29 17477 26.693586155151 0 +29 17477 26.693586155151 0 +29 17492 26.693746155151 0 +29 17492 26.693746155151 0 +29 17518 26.743993781976 0 +29 17518 26.743993781976 0 +29 17533 26.744153781976 0 +29 17533 26.744153781976 0 +29 17565 26.914557321211 0 +29 17565 26.914557321211 0 +29 17576 26.914717321211 0 +29 17576 26.914717321211 0 +29 17605 26.924398903552 0 +29 17605 26.924398903552 0 +29 17612 26.924558903552 0 +29 17612 26.924558903552 0 +29 17637 26.931276162993 0 +29 17637 26.931276162993 0 +29 17645 26.931436162993 0 +29 17645 26.931436162993 0 +29 17684 26.957384408394 0 +29 17684 26.957384408394 0 +29 17699 26.957544408394 0 +29 17699 26.957544408394 0 +29 17718 26.993586149522 0 +29 17718 26.993586149522 0 +29 17733 26.993746149522 0 +29 17733 26.993746149522 0 +29 17759 27.0439937932 0 +29 17759 27.0439937932 0 +29 17774 27.0441537932 0 +29 17774 27.0441537932 0 +29 17806 27.214557337437 0 +29 17806 27.214557337437 0 +29 17817 27.214717337437 0 +29 17817 27.214717337437 0 +29 17842 27.224398907162 0 +29 17842 27.224398907162 0 +29 17849 27.224558907162 0 +29 17849 27.224558907162 0 +29 17870 27.231276162993 0 +29 17870 27.231276162993 0 +29 17878 27.231436162993 0 +29 17878 27.231436162993 0 +29 17917 27.257384414219 0 +29 17917 27.257384414219 0 +29 17932 27.257544414219 0 +29 17932 27.257544414219 0 +29 17951 27.293586142554 0 +29 17951 27.293586142554 0 +29 17966 27.293746142554 0 +29 17966 27.293746142554 0 +29 17992 27.343993803466 0 +29 17992 27.343993803466 0 +29 18007 27.344153803466 0 +29 18007 27.344153803466 0 +29 18039 27.514557353353 0 +29 18039 27.514557353353 0 +29 18050 27.514717353353 0 +29 18050 27.514717353353 0 +29 18075 27.524398910114 0 +29 18075 27.524398910114 0 +29 18082 27.524558910114 0 +29 18082 27.524558910114 0 +29 18103 27.531276162993 0 +29 18103 27.531276162993 0 +29 18111 27.531436162993 0 +29 18111 27.531436162993 0 +29 18150 27.557384419423 0 +29 18150 27.557384419423 0 +29 18165 27.557544419423 0 +29 18165 27.557544419423 0 +29 18184 27.593586134917 0 +29 18184 27.593586134917 0 +29 18199 27.593746134917 0 +29 18199 27.593746134917 0 +29 18225 27.643993814 0 +29 18225 27.643993814 0 +29 18240 27.644153814 0 +29 18240 27.644153814 0 +29 18272 27.814557366584 0 +29 18272 27.814557366584 0 +29 18283 27.814717366584 0 +29 18283 27.814717366584 0 +29 18308 27.824398911978 0 +29 18308 27.824398911978 0 +29 18315 27.824558911978 0 +29 18315 27.824558911978 0 +29 18336 27.831276162993 0 +29 18336 27.831276162993 0 +29 18344 27.831436162993 0 +29 18344 27.831436162993 0 +29 18383 27.857384421103 0 +29 18383 27.857384421103 0 +29 18398 27.857544421103 0 +29 18398 27.857544421103 0 +29 18417 27.893586127086 0 +29 18417 27.893586127086 0 +29 18432 27.893746127086 0 +29 18432 27.893746127086 0 +29 18458 27.943993821662 0 +29 18458 27.943993821662 0 +29 18473 27.944153821662 0 +29 18473 27.944153821662 0 +29 18505 28.114557372208 0 +29 18505 28.114557372208 0 +29 18516 28.114717372208 0 +29 18516 28.114717372208 0 +29 18541 28.124398921331 0 +29 18541 28.124398921331 0 +29 18548 28.124558921331 0 +29 18548 28.124558921331 0 +29 18569 28.131276162993 0 +29 18569 28.131276162993 0 +29 18577 28.131436162993 0 +29 18577 28.131436162993 0 +29 18616 28.157384422655 0 +29 18616 28.157384422655 0 +29 18631 28.157544422655 0 +29 18631 28.157544422655 0 +29 18650 28.193586110531 0 +29 18650 28.193586110531 0 +29 18665 28.193746110531 0 +29 18665 28.193746110531 0 +29 18691 28.243993818775 0 +29 18691 28.243993818775 0 +29 18706 28.244153818775 0 +29 18706 28.244153818775 0 +29 18738 28.414557379085 0 +29 18738 28.414557379085 0 +29 18749 28.414717379085 0 +29 18749 28.414717379085 0 +29 18774 28.424398936132 0 +29 18774 28.424398936132 0 +29 18781 28.424558936132 0 +29 18781 28.424558936132 0 +29 18802 28.431276162993 0 +29 18802 28.431276162993 0 +29 18810 28.431436162993 0 +29 18810 28.431436162993 0 +29 18849 28.457384430961 0 +29 18849 28.457384430961 0 +29 18864 28.457544430961 0 +29 18864 28.457544430961 0 +29 18883 28.493586087782 0 +29 18883 28.493586087782 0 +29 18898 28.493746087782 0 +29 18898 28.493746087782 0 +29 18924 28.543993814768 0 +29 18924 28.543993814768 0 +29 18939 28.544153814768 0 +29 18939 28.544153814768 0 +29 18971 28.714557386825 0 +29 18971 28.714557386825 0 +29 18982 28.714717386825 0 +29 18982 28.714717386825 0 +29 19007 28.724398950517 0 +29 19007 28.724398950517 0 +29 19014 28.724558950517 0 +29 19014 28.724558950517 0 +29 19035 28.731276162993 0 +29 19035 28.731276162993 0 +29 19043 28.731436162993 0 +29 19043 28.731436162993 0 +29 19082 28.757384440171 0 +29 19082 28.757384440171 0 +29 19097 28.757544440171 0 +29 19097 28.757544440171 0 +29 19115 28.793586063963 0 +29 19115 28.793586063963 0 +29 19126 28.793746063963 0 +29 19126 28.793746063963 0 +29 19157 28.843993810621 0 +29 19157 28.843993810621 0 +29 19172 28.844153810621 0 +29 19172 28.844153810621 0 +29 19204 29.014557394729 0 +29 19204 29.014557394729 0 +29 19215 29.014717394729 0 +29 19215 29.014717394729 0 +29 19240 29.024398956074 0 +29 19240 29.024398956074 0 +29 19247 29.024558956074 0 +29 19247 29.024558956074 0 +29 19268 29.031276162993 0 +29 19268 29.031276162993 0 +29 19276 29.031436162993 0 +29 19276 29.031436162993 0 +29 19340 29.093586039541 0 +29 19340 29.093586039541 0 +29 19351 29.093746039541 0 +29 19351 29.093746039541 0 +29 19382 29.143993806384 0 +29 19382 29.143993806384 0 +29 19397 29.144153806384 0 +29 19397 29.144153806384 0 +29 19430 29.314557402851 0 +29 19430 29.314557402851 0 +29 19445 29.314717402851 0 +29 19445 29.314717402851 0 +29 19465 29.324398958617 0 +29 19465 29.324398958617 0 +29 19472 29.324558958617 0 +29 19472 29.324558958617 0 +29 19493 29.331276162993 0 +29 19493 29.331276162993 0 +29 19501 29.331436162993 0 +29 19501 29.331436162993 0 +29 19565 29.393586014641 0 +29 19565 29.393586014641 0 +29 19576 29.393746014641 0 +29 19576 29.393746014641 0 +29 19607 29.443993802196 0 +29 19607 29.443993802196 0 +29 19622 29.444153802196 0 +29 19622 29.444153802196 0 +29 19655 29.614557411175 0 +29 19655 29.614557411175 0 +29 19670 29.614717411175 0 +29 19670 29.614717411175 0 +29 19690 29.624398960906 0 +29 19690 29.624398960906 0 +29 19697 29.624558960906 0 +29 19697 29.624558960906 0 +29 19718 29.631276162993 0 +29 19718 29.631276162993 0 +29 19726 29.631436162993 0 +29 19726 29.631436162993 0 +29 19790 29.6935859893 0 +29 19790 29.6935859893 0 +29 19801 29.6937459893 0 +29 19801 29.6937459893 0 +29 19832 29.74399379804 0 +29 19832 29.74399379804 0 +29 19847 29.74415379804 0 +29 19847 29.74415379804 0 +29 19880 29.914557419712 0 +29 19880 29.914557419712 0 +29 19895 29.914717419712 0 +29 19895 29.914717419712 0 +29 19915 29.924398963158 0 +29 19915 29.924398963158 0 +29 19922 29.924558963158 0 +29 19922 29.924558963158 0 +29 19943 29.931276162993 0 +29 19943 29.931276162993 0 +29 19951 29.931436162993 0 +29 19951 29.931436162993 0 +29 20015 29.993585963286 0 +29 20015 29.993585963286 0 +29 20026 29.993745963286 0 +29 20026 29.993745963286 0 +29 20057 30.04399379379 0 +29 20057 30.04399379379 0 +29 20072 30.04415379379 0 +29 20072 30.04415379379 0 +29 20105 30.214557428417 0 +29 20105 30.214557428417 0 +29 20120 30.214717428417 0 +29 20120 30.214717428417 0 +29 20140 30.224398965468 0 +29 20140 30.224398965468 0 +29 20147 30.224558965468 0 +29 20147 30.224558965468 0 +29 20168 30.231276162993 0 +29 20168 30.231276162993 0 +29 20176 30.231436162993 0 +29 20176 30.231436162993 0 +29 20240 30.293585936581 0 +29 20240 30.293585936581 0 +29 20251 30.293745936581 0 +29 20251 30.293745936581 0 +29 20282 30.343993789518 0 +29 20282 30.343993789518 0 +29 20297 30.344153789518 0 +29 20297 30.344153789518 0 +29 20331 30.514557437361 0 +29 20331 30.514557437361 0 +29 20350 30.514717437361 0 +29 20350 30.514717437361 0 +29 20365 30.524398967804 0 +29 20365 30.524398967804 0 +29 20372 30.524558967804 0 +29 20372 30.524558967804 0 +29 20393 30.531276162993 0 +29 20393 30.531276162993 0 +29 20401 30.531436162993 0 +29 20401 30.531436162993 0 +29 20465 30.59358590925 0 +29 20465 30.59358590925 0 +29 20476 30.59374590925 0 +29 20476 30.59374590925 0 +29 20507 30.643993785288 0 +29 20507 30.643993785288 0 +29 20522 30.644153785288 0 +29 20522 30.644153785288 0 +29 20555 30.814557446582 0 +29 20555 30.814557446582 0 +29 20570 30.814717446582 0 +29 20570 30.814717446582 0 +29 20590 30.824398970242 0 +29 20590 30.824398970242 0 +29 20597 30.824558970242 0 +29 20597 30.824558970242 0 +29 20618 30.831276162993 0 +29 20618 30.831276162993 0 +29 20626 30.831436162993 0 +29 20626 30.831436162993 0 +29 20690 30.89358588135 0 +29 20690 30.89358588135 0 +29 20701 30.89374588135 0 +29 20701 30.89374588135 0 +29 20732 30.94399378118 0 +29 20732 30.94399378118 0 +29 20747 30.94415378118 0 +29 20747 30.94415378118 0 +29 20780 31.114557456231 0 +29 20780 31.114557456231 0 +29 20795 31.114717456231 0 +29 20795 31.114717456231 0 +29 20815 31.124398972755 0 +29 20815 31.124398972755 0 +29 20822 31.124558972755 0 +29 20822 31.124558972755 0 +29 20847 31.131276162993 0 +29 20847 31.131276162993 0 +29 20855 31.131436162993 0 +29 20855 31.131436162993 0 +29 20918 31.193585853113 0 +29 20918 31.193585853113 0 +29 20925 31.193745853113 0 +29 20925 31.193745853113 0 +29 20965 31.243993777587 0 +29 20965 31.243993777587 0 +29 20980 31.244153777587 0 +29 20980 31.244153777587 0 +29 21013 31.414557466338 0 +29 21013 31.414557466338 0 +29 21028 31.414717466338 0 +29 21028 31.414717466338 0 +29 21048 31.424398975275 0 +29 21048 31.424398975275 0 +29 21055 31.424558975275 0 +29 21055 31.424558975275 0 +29 21080 31.431276162993 0 +29 21080 31.431276162993 0 +29 21088 31.431436162993 0 +29 21088 31.431436162993 0 +29 21151 31.493585824854 0 +29 21151 31.493585824854 0 +29 21158 31.493745824854 0 +29 21158 31.493745824854 0 +29 21198 31.543993774618 0 +29 21198 31.543993774618 0 +29 21213 31.544153774618 0 +29 21213 31.544153774618 0 +29 21246 31.714557476938 0 +29 21246 31.714557476938 0 +29 21261 31.714717476938 0 +29 21261 31.714717476938 0 +29 21281 31.724398977789 0 +29 21281 31.724398977789 0 +29 21288 31.724558977789 0 +29 21288 31.724558977789 0 +29 21313 31.731276162993 0 +29 21313 31.731276162993 0 +29 21321 31.731436162993 0 +29 21321 31.731436162993 0 +29 21384 31.793585796622 0 +29 21384 31.793585796622 0 +29 21391 31.793745796622 0 +29 21391 31.793745796622 0 +29 21431 31.843993772319 0 +29 21431 31.843993772319 0 +29 21446 31.844153772319 0 +29 21446 31.844153772319 0 +29 21479 32.014557487942 0 +29 21479 32.014557487942 0 +29 21494 32.014717487942 0 +29 21494 32.014717487942 0 +29 21514 32.024398980316 0 +29 21514 32.024398980316 0 +29 21521 32.024558980316 0 +29 21521 32.024558980316 0 +29 21546 32.031276162993 0 +29 21546 32.031276162993 0 +29 21554 32.031436162993 0 +29 21554 32.031436162993 0 +29 21617 32.093585768404 0 +29 21617 32.093585768404 0 +29 21624 32.093745768404 0 +29 21624 32.093745768404 0 +29 21664 32.143993770659 0 +29 21664 32.143993770659 0 +29 21679 32.144153770659 0 +29 21679 32.144153770659 0 +29 21712 32.314557499402 0 +29 21712 32.314557499402 0 +29 21727 32.314717499402 0 +29 21727 32.314717499402 0 +29 21747 32.324398982748 0 +29 21747 32.324398982748 0 +29 21754 32.324558982748 0 +29 21754 32.324558982748 0 +29 21779 32.331276162993 0 +29 21779 32.331276162993 0 +29 21787 32.331436162993 0 +29 21787 32.331436162993 0 +29 21850 32.393585740167 0 +29 21850 32.393585740167 0 +29 21857 32.393745740167 0 +29 21857 32.393745740167 0 +29 21897 32.443993769753 0 +29 21897 32.443993769753 0 +29 21912 32.444153769753 0 +29 21912 32.444153769753 0 +29 21945 32.614557511219 0 +29 21945 32.614557511219 0 +29 21960 32.614717511219 0 +29 21960 32.614717511219 0 +29 21980 32.624398985247 0 +29 21980 32.624398985247 0 +29 21987 32.624558985247 0 +29 21987 32.624558985247 0 +29 22012 32.631276162993 0 +29 22012 32.631276162993 0 +29 22020 32.631436162993 0 +29 22020 32.631436162993 0 +29 22083 32.693585711913 0 +29 22083 32.693585711913 0 +29 22090 32.693745711913 0 +29 22090 32.693745711913 0 +29 22130 32.74399376948 0 +29 22130 32.74399376948 0 +29 22145 32.74415376948 0 +29 22145 32.74415376948 0 +29 22178 32.914557523456 0 +29 22178 32.914557523456 0 +29 22193 32.914717523456 0 +29 22193 32.914717523456 0 +29 22213 32.924398987742 0 +29 22213 32.924398987742 0 +29 22220 32.924558987742 0 +29 22220 32.924558987742 0 +29 22245 32.931276162993 0 +29 22245 32.931276162993 0 +29 22253 32.931436162993 0 +29 22253 32.931436162993 0 +29 22316 32.993585683676 0 +29 22316 32.993585683676 0 +29 22323 32.993745683676 0 +29 22323 32.993745683676 0 +29 22363 33.043993769896 0 +29 22363 33.043993769896 0 +29 22378 33.044153769896 0 +29 22378 33.044153769896 0 +29 22411 33.214557536006 0 +29 22411 33.214557536006 0 +29 22426 33.214717536006 0 +29 22426 33.214717536006 0 +29 22446 33.224398990236 0 +29 22446 33.224398990236 0 +29 22453 33.224558990236 0 +29 22453 33.224558990236 0 +29 22478 33.231276162993 0 +29 22478 33.231276162993 0 +29 22486 33.231436162993 0 +29 22486 33.231436162993 0 +29 22549 33.293585655474 0 +29 22549 33.293585655474 0 +29 22556 33.293745655474 0 +29 22556 33.293745655474 0 +29 22596 33.343993770985 0 +29 22596 33.343993770985 0 +29 22611 33.344153770985 0 +29 22611 33.344153770985 0 +29 22644 33.514557548915 0 +29 22644 33.514557548915 0 +29 22659 33.514717548915 0 +29 22659 33.514717548915 0 +29 22679 33.524398992733 0 +29 22679 33.524398992733 0 +29 22686 33.524558992733 0 +29 22686 33.524558992733 0 +29 22711 33.531276162993 0 +29 22711 33.531276162993 0 +29 22719 33.531436162993 0 +29 22719 33.531436162993 0 +29 22782 33.593585627277 0 +29 22782 33.593585627277 0 +29 22789 33.593745627277 0 +29 22789 33.593745627277 0 +29 22829 33.643993772782 0 +29 22829 33.643993772782 0 +29 22844 33.644153772782 0 +29 22844 33.644153772782 0 +29 22877 33.814557562144 0 +29 22877 33.814557562144 0 +29 22892 33.814717562144 0 +29 22892 33.814717562144 0 +29 22908 33.82439899523 0 +29 22908 33.82439899523 0 +29 22915 33.82455899523 0 +29 22915 33.82455899523 0 +29 22940 33.831276162993 0 +29 22940 33.831276162993 0 +29 22948 33.831436162993 0 +29 22948 33.831436162993 0 +29 23011 33.893585599183 0 +29 23011 33.893585599183 0 +29 23018 33.893745599183 0 +29 23018 33.893745599183 0 +29 23052 33.943993775237 0 +29 23052 33.943993775237 0 +29 23062 33.944153775237 0 +29 23062 33.944153775237 0 +29 23118 34.124398997755 0 +29 23118 34.124398997755 0 +29 23124 34.124558997755 0 +29 23124 34.124558997755 0 +29 23144 34.131276162993 0 +29 23144 34.131276162993 0 +29 23151 34.131436162993 0 +29 23151 34.131436162993 0 +29 23210 34.243993778327 0 +29 23210 34.243993778327 0 +29 23220 34.244153778327 0 +29 23220 34.244153778327 0 +29 23276 34.424399000269 0 +29 23276 34.424399000269 0 +29 23282 34.424559000269 0 +29 23282 34.424559000269 0 +29 23302 34.431276162993 0 +29 23302 34.431276162993 0 +29 23309 34.431436162993 0 +29 23309 34.431436162993 0 +29 23368 34.543993782072 0 +29 23368 34.543993782072 0 +29 23378 34.544153782072 0 +29 23378 34.544153782072 0 +29 23434 34.724399002779 0 +29 23434 34.724399002779 0 +29 23440 34.724559002779 0 +29 23440 34.724559002779 0 +29 23460 34.731276162993 0 +29 23460 34.731276162993 0 +29 23467 34.731436162993 0 +29 23467 34.731436162993 0 +29 23526 34.843993786489 0 +29 23526 34.843993786489 0 +29 23536 34.844153786489 0 +29 23536 34.844153786489 0 +29 23592 35.02439900524 0 +29 23592 35.02439900524 0 +29 23598 35.02455900524 0 +29 23598 35.02455900524 0 +29 23618 35.031276162993 0 +29 23618 35.031276162993 0 +29 23625 35.031436162993 0 +29 23625 35.031436162993 0 +29 23684 35.143993791503 0 +29 23684 35.143993791503 0 +29 23694 35.144153791503 0 +29 23694 35.144153791503 0 +29 23754 35.32439900778 0 +29 23754 35.32439900778 0 +29 23760 35.32455900778 0 +29 23760 35.32455900778 0 +29 23780 35.331276162993 0 +29 23780 35.331276162993 0 +29 23787 35.331436162993 0 +29 23787 35.331436162993 0 +29 23850 35.443993797136 0 +29 23850 35.443993797136 0 +29 23860 35.444153797136 0 +29 23860 35.444153797136 0 +29 23920 35.624399010314 0 +29 23920 35.624399010314 0 +29 23926 35.624559010314 0 +29 23926 35.624559010314 0 +29 23946 35.631276162993 0 +29 23946 35.631276162993 0 +29 23953 35.631436162993 0 +29 23953 35.631436162993 0 +29 24016 35.743993803331 0 +29 24016 35.743993803331 0 +29 24026 35.744153803331 0 +29 24026 35.744153803331 0 +29 24086 35.924399012824 0 +29 24086 35.924399012824 0 +29 24092 35.924559012824 0 +29 24092 35.924559012824 0 +29 24112 35.931276162993 0 +29 24112 35.931276162993 0 +29 24119 35.931436162993 0 +29 24119 35.931436162993 0 +29 24182 36.043993810134 0 +29 24182 36.043993810134 0 +29 24192 36.044153810134 0 +29 24192 36.044153810134 0 +29 24252 36.224399015304 0 +29 24252 36.224399015304 0 +29 24258 36.224559015304 0 +29 24258 36.224559015304 0 +29 24278 36.231276162993 0 +29 24278 36.231276162993 0 +29 24285 36.231436162993 0 +29 24285 36.231436162993 0 +29 24348 36.343993817527 0 +29 24348 36.343993817527 0 +29 24358 36.344153817527 0 +29 24358 36.344153817527 0 +29 24418 36.524399017802 0 +29 24418 36.524399017802 0 +29 24424 36.524559017802 0 +29 24424 36.524559017802 0 +29 24444 36.531276162993 0 +29 24444 36.531276162993 0 +29 24451 36.531436162993 0 +29 24451 36.531436162993 0 +29 24514 36.643993825454 0 +29 24514 36.643993825454 0 +29 24524 36.644153825454 0 +29 24524 36.644153825454 0 +29 24584 36.824399020283 0 +29 24584 36.824399020283 0 +29 24590 36.824559020283 0 +29 24590 36.824559020283 0 +29 24610 36.831276162993 0 +29 24610 36.831276162993 0 +29 24617 36.831436162993 0 +29 24617 36.831436162993 0 +29 24680 36.943993833942 0 +29 24680 36.943993833942 0 +29 24690 36.944153833942 0 +29 24690 36.944153833942 0 +29 24750 37.124399022747 0 +29 24750 37.124399022747 0 +29 24756 37.124559022747 0 +29 24756 37.124559022747 0 +29 24776 37.131276162993 0 +29 24776 37.131276162993 0 +29 24783 37.131436162993 0 +29 24783 37.131436162993 0 +29 24847 37.243993841675 0 +29 24847 37.243993841675 0 +29 24861 37.244153841675 0 +29 24861 37.244153841675 0 +29 24916 37.424399025229 0 +29 24916 37.424399025229 0 +29 24922 37.424559025229 0 +29 24922 37.424559025229 0 +29 24942 37.431276162993 0 +29 24942 37.431276162993 0 +29 24949 37.431436162993 0 +29 24949 37.431436162993 0 +29 25013 37.54399384071 0 +29 25013 37.54399384071 0 +29 25027 37.54415384071 0 +29 25027 37.54415384071 0 +29 25082 37.724399027708 0 +29 25082 37.724399027708 0 +29 25088 37.724559027708 0 +29 25088 37.724559027708 0 +29 25108 37.731276162993 0 +29 25108 37.731276162993 0 +29 25115 37.731436162993 0 +29 25115 37.731436162993 0 +29 25179 37.843993832964 0 +29 25179 37.843993832964 0 +29 25193 37.844153832964 0 +29 25193 37.844153832964 0 +29 25248 38.024399030169 0 +29 25248 38.024399030169 0 +29 25254 38.024559030169 0 +29 25254 38.024559030169 0 +29 25274 38.031276162993 0 +29 25274 38.031276162993 0 +29 25281 38.031436162993 0 +29 25281 38.031436162993 0 +29 25345 38.143993825758 0 +29 25345 38.143993825758 0 +29 25359 38.144153825758 0 +29 25359 38.144153825758 0 +29 25414 38.324399032643 0 +29 25414 38.324399032643 0 +29 25420 38.324559032643 0 +29 25420 38.324559032643 0 +29 25440 38.331276162993 0 +29 25440 38.331276162993 0 +29 25447 38.331436162993 0 +29 25447 38.331436162993 0 +29 25511 38.44399381973 0 +29 25511 38.44399381973 0 +29 25525 38.44415381973 0 +29 25525 38.44415381973 0 +29 25580 38.624399035134 0 +29 25580 38.624399035134 0 +29 25586 38.624559035134 0 +29 25586 38.624559035134 0 +29 25606 38.631276162993 0 +29 25606 38.631276162993 0 +29 25613 38.631436162993 0 +29 25613 38.631436162993 0 +29 25677 38.743993814907 0 +29 25677 38.743993814907 0 +29 25691 38.744153814907 0 +29 25691 38.744153814907 0 +29 25746 38.924399037653 0 +29 25746 38.924399037653 0 +29 25752 38.924559037653 0 +29 25752 38.924559037653 0 +29 25772 38.931276162993 0 +29 25772 38.931276162993 0 +29 25779 38.931436162993 0 +29 25779 38.931436162993 0 +29 25843 39.043993811322 0 +29 25843 39.043993811322 0 +29 25857 39.044153811322 0 +29 25857 39.044153811322 0 +29 25912 39.224399040102 0 +29 25912 39.224399040102 0 +29 25918 39.224559040102 0 +29 25918 39.224559040102 0 +29 25938 39.231276162993 0 +29 25938 39.231276162993 0 +29 25945 39.231436162993 0 +29 25945 39.231436162993 0 +29 26009 39.343993808998 0 +29 26009 39.343993808998 0 +29 26023 39.344153808998 0 +29 26023 39.344153808998 0 +29 26078 39.524399042597 0 +29 26078 39.524399042597 0 +29 26084 39.524559042597 0 +29 26084 39.524559042597 0 +29 26104 39.531276162993 0 +29 26104 39.531276162993 0 +29 26111 39.531436162993 0 +29 26111 39.531436162993 0 +29 26175 39.643993807943 0 +29 26175 39.643993807943 0 +29 26189 39.644153807943 0 +29 26189 39.644153807943 0 +29 26244 39.824399045083 0 +29 26244 39.824399045083 0 +29 26250 39.824559045083 0 +29 26250 39.824559045083 0 +29 26270 39.831276162993 0 +29 26270 39.831276162993 0 +29 26277 39.831436162993 0 +29 26277 39.831436162993 0 +29 26341 39.943993808167 0 +29 26341 39.943993808167 0 +29 26355 39.944153808167 0 +29 26355 39.944153808167 0 +29 26410 40.124399047608 0 +29 26410 40.124399047608 0 +29 26416 40.124559047608 0 +29 26416 40.124559047608 0 +29 26436 40.131276162993 0 +29 26436 40.131276162993 0 +29 26443 40.131436162993 0 +29 26443 40.131436162993 0 +29 26507 40.243993809672 0 +29 26507 40.243993809672 0 +29 26521 40.244153809672 0 +29 26521 40.244153809672 0 +29 26576 40.424399050085 0 +29 26576 40.424399050085 0 +29 26582 40.424559050085 0 +29 26582 40.424559050085 0 +29 26602 40.431276162993 0 +29 26602 40.431276162993 0 +29 26609 40.431436162993 0 +29 26609 40.431436162993 0 +29 26673 40.543993812444 0 +29 26673 40.543993812444 0 +29 26687 40.544153812444 0 +29 26687 40.544153812444 0 +29 26742 40.72439905259 0 +29 26742 40.72439905259 0 +29 26748 40.72455905259 0 +29 26748 40.72455905259 0 +29 26772 40.731276162993 0 +29 26772 40.731276162993 0 +29 26779 40.731436162993 0 +29 26779 40.731436162993 0 +29 26843 40.843993816458 0 +29 26843 40.843993816458 0 +29 26857 40.844153816458 0 +29 26857 40.844153816458 0 +29 26916 41.024399055027 0 +29 26916 41.024399055027 0 +29 26922 41.024559055027 0 +29 26922 41.024559055027 0 +29 26946 41.031276162993 0 +29 26946 41.031276162993 0 +29 26953 41.031436162993 0 +29 26953 41.031436162993 0 +29 27017 41.143993821716 0 +29 27017 41.143993821716 0 +29 27031 41.144153821716 0 +29 27031 41.144153821716 0 +29 27090 41.324399057542 0 +29 27090 41.324399057542 0 +29 27096 41.324559057542 0 +29 27096 41.324559057542 0 +29 27120 41.331276162993 0 +29 27120 41.331276162993 0 +29 27127 41.331436162993 0 +29 27127 41.331436162993 0 +29 27191 41.443993828168 0 +29 27191 41.443993828168 0 +29 27205 41.444153828168 0 +29 27205 41.444153828168 0 +29 27264 41.62439906007 0 +29 27264 41.62439906007 0 +29 27270 41.62455906007 0 +29 27270 41.62455906007 0 +29 27294 41.631276162993 0 +29 27294 41.631276162993 0 +29 27301 41.631436162993 0 +29 27301 41.631436162993 0 +29 27365 41.743993835789 0 +29 27365 41.743993835789 0 +29 27379 41.744153835789 0 +29 27379 41.744153835789 0 +29 27438 41.924399062611 0 +29 27438 41.924399062611 0 +29 27444 41.924559062611 0 +29 27444 41.924559062611 0 +29 27468 41.931276162993 0 +29 27468 41.931276162993 0 +29 27475 41.931436162993 0 +29 27475 41.931436162993 0 +29 27539 42.043993844221 0 +29 27539 42.043993844221 0 +29 27553 42.044153844221 0 +29 27553 42.044153844221 0 +29 27612 42.224399065158 0 +29 27612 42.224399065158 0 +29 27618 42.224559065158 0 +29 27618 42.224559065158 0 +29 27642 42.231276162993 0 +29 27642 42.231276162993 0 +29 27649 42.231436162993 0 +29 27649 42.231436162993 0 +29 27714 42.343993853216 0 +29 27714 42.343993853216 0 +29 27732 42.344153853216 0 +29 27732 42.344153853216 0 +29 27786 42.524399067719 0 +29 27786 42.524399067719 0 +29 27792 42.524559067719 0 +29 27792 42.524559067719 0 +29 27816 42.531276162993 0 +29 27816 42.531276162993 0 +29 27823 42.531436162993 0 +29 27823 42.531436162993 0 +29 27888 42.643993862563 0 +29 27888 42.643993862563 0 +29 27906 42.644153862563 0 +29 27906 42.644153862563 0 +29 27960 42.824399070171 0 +29 27960 42.824399070171 0 +29 27966 42.824559070171 0 +29 27966 42.824559070171 0 +29 27990 42.831276162993 0 +29 27990 42.831276162993 0 +29 27997 42.831436162993 0 +29 27997 42.831436162993 0 +29 28062 42.943993872107 0 +29 28062 42.943993872107 0 +29 28080 42.944153872107 0 +29 28080 42.944153872107 0 +29 28134 43.124399072679 0 +29 28134 43.124399072679 0 +29 28140 43.124559072679 0 +29 28140 43.124559072679 0 +29 28164 43.131276162993 0 +29 28164 43.131276162993 0 +29 28171 43.131436162993 0 +29 28171 43.131436162993 0 +29 28236 43.243993881734 0 +29 28236 43.243993881734 0 +29 28254 43.244153881734 0 +29 28254 43.244153881734 0 +29 28308 43.424399075168 0 +29 28308 43.424399075168 0 +29 28314 43.424559075168 0 +29 28314 43.424559075168 0 +29 28338 43.431276162993 0 +29 28338 43.431276162993 0 +29 28345 43.431436162993 0 +29 28345 43.431436162993 0 +29 28410 43.543993891273 0 +29 28410 43.543993891273 0 +29 28428 43.544153891273 0 +29 28428 43.544153891273 0 +29 28482 43.724399077694 0 +29 28482 43.724399077694 0 +29 28488 43.724559077694 0 +29 28488 43.724559077694 0 +29 28512 43.731276162993 0 +29 28512 43.731276162993 0 +29 28519 43.731436162993 0 +29 28519 43.731436162993 0 +29 28584 43.843993900664 0 +29 28584 43.843993900664 0 +29 28602 43.844153900664 0 +29 28602 43.844153900664 0 +29 28656 44.024399080215 0 +29 28656 44.024399080215 0 +29 28662 44.024559080215 0 +29 28662 44.024559080215 0 +29 28686 44.031276162993 0 +29 28686 44.031276162993 0 +29 28693 44.031436162993 0 +29 28693 44.031436162993 0 +29 28758 44.143993909788 0 +29 28758 44.143993909788 0 +29 28776 44.144153909788 0 +29 28776 44.144153909788 0 +29 28830 44.324399082695 0 +29 28830 44.324399082695 0 +29 28836 44.324559082695 0 +29 28836 44.324559082695 0 +29 28860 44.331276162993 0 +29 28860 44.331276162993 0 +29 28867 44.331436162993 0 +29 28867 44.331436162993 0 +29 28996 44.624399085153 0 +29 28996 44.624399085153 0 +29 29002 44.624559085153 0 +29 29002 44.624559085153 0 +29 29026 44.631276162993 0 +29 29026 44.631276162993 0 +29 29033 44.631436162993 0 +29 29033 44.631436162993 0 +29 29162 44.924399087671 0 +29 29162 44.924399087671 0 +29 29168 44.924559087671 0 +29 29168 44.924559087671 0 +29 29192 44.931276162993 0 +29 29192 44.931276162993 0 +29 29199 44.931436162993 0 +29 29199 44.931436162993 0 +29 29328 45.224399090114 0 +29 29328 45.224399090114 0 +29 29334 45.224559090114 0 +29 29334 45.224559090114 0 +29 29358 45.231276162993 0 +29 29358 45.231276162993 0 +29 29365 45.231436162993 0 +29 29365 45.231436162993 0 +29 29494 45.524399092613 0 +29 29494 45.524399092613 0 +29 29500 45.524559092613 0 +29 29500 45.524559092613 0 +29 29524 45.531276162993 0 +29 29524 45.531276162993 0 +29 29531 45.531436162993 0 +29 29531 45.531436162993 0 +29 29660 45.824399095152 0 +29 29660 45.824399095152 0 +29 29666 45.824559095152 0 +29 29666 45.824559095152 0 +29 29690 45.831276162993 0 +29 29690 45.831276162993 0 +29 29697 45.831436162993 0 +29 29697 45.831436162993 0 +29 29826 46.124399098204 0 +29 29826 46.124399098204 0 +29 29832 46.124559098204 0 +29 29832 46.124559098204 0 +29 29856 46.131276162993 0 +29 29856 46.131276162993 0 +29 29863 46.131436162993 0 +29 29863 46.131436162993 0 +29 29992 46.424399105752 0 +29 29992 46.424399105752 0 +29 29998 46.424559105752 0 +29 29998 46.424559105752 0 +29 30022 46.431276162993 0 +29 30022 46.431276162993 0 +29 30029 46.431436162993 0 +29 30029 46.431436162993 0 +29 30158 46.724399119111 0 +29 30158 46.724399119111 0 +29 30164 46.724559119111 0 +29 30164 46.724559119111 0 +29 30188 46.731276162993 0 +29 30188 46.731276162993 0 +29 30195 46.731436162993 0 +29 30195 46.731436162993 0 +29 30324 47.02439913369 0 +29 30324 47.02439913369 0 +29 30330 47.02455913369 0 +29 30330 47.02455913369 0 +29 30354 47.031276162993 0 +29 30354 47.031276162993 0 +29 30361 47.031436162993 0 +29 30361 47.031436162993 0 +29 30490 47.3243991485 0 +29 30490 47.3243991485 0 +29 30496 47.3245591485 0 +29 30496 47.3245591485 0 +29 30520 47.331276162993 0 +29 30520 47.331276162993 0 +29 30527 47.331436162993 0 +29 30527 47.331436162993 0 +29 30656 47.624399163475 0 +29 30656 47.624399163475 0 +29 30662 47.624559163475 0 +29 30662 47.624559163475 0 +29 30686 47.631276162993 0 +29 30686 47.631276162993 0 +29 30693 47.631436162993 0 +29 30693 47.631436162993 0 +29 30823 47.924399178648 0 +29 30823 47.924399178648 0 +29 30833 47.924559178648 0 +29 30833 47.924559178648 0 +29 30852 47.931276162993 0 +29 30852 47.931276162993 0 +29 30859 47.931436162993 0 +29 30859 47.931436162993 0 +29 30990 48.224399193917 0 +29 30990 48.224399193917 0 +29 31004 48.224559193917 0 +29 31004 48.224559193917 0 +29 31018 48.231276162993 0 +29 31018 48.231276162993 0 +29 31025 48.231436162993 0 +29 31025 48.231436162993 0 +29 31156 48.524399209372 0 +29 31156 48.524399209372 0 +29 31170 48.524559209372 0 +29 31170 48.524559209372 0 +29 31184 48.531276162993 0 +29 31184 48.531276162993 0 +29 31191 48.531436162993 0 +29 31191 48.531436162993 0 +29 31322 48.824399224983 0 +29 31322 48.824399224983 0 +29 31336 48.824559224983 0 +29 31336 48.824559224983 0 +29 31350 48.831276162993 0 +29 31350 48.831276162993 0 +29 31357 48.831436162993 0 +29 31357 48.831436162993 0 +29 31488 49.124399240703 0 +29 31488 49.124399240703 0 +29 31502 49.124559240703 0 +29 31502 49.124559240703 0 +29 31516 49.131276162993 0 +29 31516 49.131276162993 0 +29 31523 49.131436162993 0 +29 31523 49.131436162993 0 +29 31654 49.424399256502 0 +29 31654 49.424399256502 0 +29 31668 49.424559256502 0 +29 31668 49.424559256502 0 +29 31682 49.431276162993 0 +29 31682 49.431276162993 0 +29 31689 49.431436162993 0 +29 31689 49.431436162993 0 +29 31820 49.724399261494 0 +29 31820 49.724399261494 0 +29 31834 49.724559261494 0 +29 31834 49.724559261494 0 +29 31848 49.731276162993 0 +29 31848 49.731276162993 0 +29 31855 49.731436162993 0 +29 31855 49.731436162993 0 +29 31986 50.02439926103 0 +29 31986 50.02439926103 0 +29 32000 50.02455926103 0 +29 32000 50.02455926103 0 +29 32014 50.031276162993 0 +29 32014 50.031276162993 0 +29 32021 50.031436162993 0 +29 32021 50.031436162993 0 +29 32152 50.324399260569 0 +29 32152 50.324399260569 0 +29 32166 50.324559260569 0 +29 32166 50.324559260569 0 +29 32180 50.331276162993 0 +29 32180 50.331276162993 0 +29 32187 50.331436162993 0 +29 32187 50.331436162993 0 +29 32318 50.624399260125 0 +29 32318 50.624399260125 0 +29 32332 50.624559260125 0 +29 32332 50.624559260125 0 +29 32346 50.631276162993 0 +29 32346 50.631276162993 0 +29 32353 50.631436162993 0 +29 32353 50.631436162993 0 +29 32484 50.924399259692 0 +29 32484 50.924399259692 0 +29 32498 50.924559259692 0 +29 32498 50.924559259692 0 +29 32512 50.931276162993 0 +29 32512 50.931276162993 0 +29 32519 50.931436162993 0 +29 32519 50.931436162993 0 +29 32646 51.224399259255 0 +29 32646 51.224399259255 0 +29 32660 51.224559259255 0 +29 32660 51.224559259255 0 +29 32674 51.231276162993 0 +29 32674 51.231276162993 0 +29 32681 51.231436162993 0 +29 32681 51.231436162993 0 +29 32804 51.524399258837 0 +29 32804 51.524399258837 0 +29 32818 51.524559258837 0 +29 32818 51.524559258837 0 +29 32832 51.531276162993 0 +29 32832 51.531276162993 0 +29 32839 51.531436162993 0 +29 32839 51.531436162993 0 +29 32865 51.557384429561 0 +29 32865 51.557384429561 0 +29 32879 51.557544429561 0 +29 32879 51.557544429561 0 +29 32970 51.824399258432 0 +29 32970 51.824399258432 0 +29 32984 51.824559258432 0 +29 32984 51.824559258432 0 +29 32998 51.831276162993 0 +29 32998 51.831276162993 0 +29 33005 51.831436162993 0 +29 33005 51.831436162993 0 +29 33031 51.857384410523 0 +29 33031 51.857384410523 0 +29 33045 51.857544410523 0 +29 33045 51.857544410523 0 +29 33136 52.124399258035 0 +29 33136 52.124399258035 0 +29 33150 52.124559258035 0 +29 33150 52.124559258035 0 +29 33164 52.131276162993 0 +29 33164 52.131276162993 0 +29 33171 52.131436162993 0 +29 33171 52.131436162993 0 +29 33197 52.157384391469 0 +29 33197 52.157384391469 0 +29 33211 52.157544391469 0 +29 33211 52.157544391469 0 +29 33302 52.424399257631 0 +29 33302 52.424399257631 0 +29 33316 52.424559257631 0 +29 33316 52.424559257631 0 +29 33330 52.431276162993 0 +29 33330 52.431276162993 0 +29 33337 52.431436162993 0 +29 33337 52.431436162993 0 +29 33363 52.45738437236 0 +29 33363 52.45738437236 0 +29 33377 52.45754437236 0 +29 33377 52.45754437236 0 +29 33468 52.724399257249 0 +29 33468 52.724399257249 0 +29 33482 52.724559257249 0 +29 33482 52.724559257249 0 +29 33496 52.731276162993 0 +29 33496 52.731276162993 0 +29 33503 52.731436162993 0 +29 33503 52.731436162993 0 +29 33529 52.75738435334 0 +29 33529 52.75738435334 0 +29 33543 52.75754435334 0 +29 33543 52.75754435334 0 +29 33634 53.024399256872 0 +29 33634 53.024399256872 0 +29 33648 53.024559256872 0 +29 33648 53.024559256872 0 +29 33662 53.031276162993 0 +29 33662 53.031276162993 0 +29 33669 53.031436162993 0 +29 33669 53.031436162993 0 +29 33695 53.057384334363 0 +29 33695 53.057384334363 0 +29 33709 53.057544334363 0 +29 33709 53.057544334363 0 +29 33776 53.324399256501 0 +29 33776 53.324399256501 0 +29 33789 53.324559256501 0 +29 33789 53.324559256501 0 +29 33801 53.331276162993 0 +29 33801 53.331276162993 0 +29 33807 53.331436162993 0 +29 33807 53.331436162993 0 +29 33832 53.357384316044 0 +29 33832 53.357384316044 0 +29 33845 53.357544316044 0 +29 33845 53.357544316044 0 +29 33903 53.624399256146 0 +29 33903 53.624399256146 0 +29 33916 53.624559256146 0 +29 33916 53.624559256146 0 +29 33928 53.631276162993 0 +29 33928 53.631276162993 0 +29 33934 53.631436162993 0 +29 33934 53.631436162993 0 +29 33959 53.657384298598 0 +29 33959 53.657384298598 0 +29 33972 53.657544298598 0 +29 33972 53.657544298598 0 +29 34030 53.924399255807 0 +29 34030 53.924399255807 0 +29 34043 53.924559255807 0 +29 34043 53.924559255807 0 +29 34055 53.931276162993 0 +29 34055 53.931276162993 0 +29 34061 53.931436162993 0 +29 34061 53.931436162993 0 +29 34086 53.95738428203 0 +29 34086 53.95738428203 0 +29 34099 53.95754428203 0 +29 34099 53.95754428203 0 +29 34157 54.224399255474 0 +29 34157 54.224399255474 0 +29 34170 54.224559255474 0 +29 34170 54.224559255474 0 +29 34182 54.231276162993 0 +29 34182 54.231276162993 0 +29 34188 54.231436162993 0 +29 34188 54.231436162993 0 +29 34213 54.257384266324 0 +29 34213 54.257384266324 0 +29 34226 54.257544266324 0 +29 34226 54.257544266324 0 +29 34284 54.52439925514 0 +29 34284 54.52439925514 0 +29 34297 54.52455925514 0 +29 34297 54.52455925514 0 +29 34309 54.531276162993 0 +29 34309 54.531276162993 0 +29 34315 54.531436162993 0 +29 34315 54.531436162993 0 +29 34340 54.557384251324 0 +29 34340 54.557384251324 0 +29 34353 54.557544251324 0 +29 34353 54.557544251324 0 +29 34411 54.824399254865 0 +29 34411 54.824399254865 0 +29 34424 54.824559254865 0 +29 34424 54.824559254865 0 +29 34436 54.831276162993 0 +29 34436 54.831276162993 0 +29 34442 54.831436162993 0 +29 34442 54.831436162993 0 +29 34467 54.857384236279 0 +29 34467 54.857384236279 0 +29 34480 54.857544236279 0 +29 34480 54.857544236279 0 +29 34538 55.124399254758 0 +29 34538 55.124399254758 0 +29 34551 55.124559254758 0 +29 34551 55.124559254758 0 +29 34563 55.131276162993 0 +29 34563 55.131276162993 0 +29 34569 55.131436162993 0 +29 34569 55.131436162993 0 +29 34594 55.157384221704 0 +29 34594 55.157384221704 0 +29 34607 55.157544221704 0 +29 34607 55.157544221704 0 +29 34665 55.424399254821 0 +29 34665 55.424399254821 0 +29 34678 55.424559254821 0 +29 34678 55.424559254821 0 +29 34690 55.431276162993 0 +29 34690 55.431276162993 0 +29 34696 55.431436162993 0 +29 34696 55.431436162993 0 +29 34721 55.45738420776 0 +29 34721 55.45738420776 0 +29 34734 55.45754420776 0 +29 34734 55.45754420776 0 +29 34792 55.724399255052 0 +29 34792 55.724399255052 0 +29 34805 55.724559255052 0 +29 34805 55.724559255052 0 +29 34817 55.731276162993 0 +29 34817 55.731276162993 0 +29 34823 55.731436162993 0 +29 34823 55.731436162993 0 +29 34848 55.757384194465 0 +29 34848 55.757384194465 0 +29 34861 55.757544194465 0 +29 34861 55.757544194465 0 +29 34919 56.024399255468 0 +29 34919 56.024399255468 0 +29 34932 56.024559255468 0 +29 34932 56.024559255468 0 +29 34944 56.031276162993 0 +29 34944 56.031276162993 0 +29 34950 56.031436162993 0 +29 34950 56.031436162993 0 +29 34975 56.05738418177 0 +29 34975 56.05738418177 0 +29 34988 56.05754418177 0 +29 34988 56.05754418177 0 +29 35046 56.324399256088 0 +29 35046 56.324399256088 0 +29 35059 56.324559256088 0 +29 35059 56.324559256088 0 +29 35071 56.331276162993 0 +29 35071 56.331276162993 0 +29 35077 56.331436162993 0 +29 35077 56.331436162993 0 +29 35102 56.357384169733 0 +29 35102 56.357384169733 0 +29 35115 56.357544169733 0 +29 35115 56.357544169733 0 +29 35170 56.624399256836 0 +29 35170 56.624399256836 0 +29 35178 56.624559256836 0 +29 35178 56.624559256836 0 +29 35190 56.631276162993 0 +29 35190 56.631276162993 0 +29 35195 56.631436162993 0 +29 35195 56.631436162993 0 +29 35218 56.657384157873 0 +29 35218 56.657384157873 0 +29 35226 56.657544157873 0 +29 35226 56.657544157873 0 +29 35254 56.924399261596 0 +29 35254 56.924399261596 0 +29 35262 56.924559261596 0 +29 35262 56.924559261596 0 +29 35274 56.931276162993 0 +29 35274 56.931276162993 0 +29 35279 56.931436162993 0 +29 35279 56.931436162993 0 +29 35302 56.957384148777 0 +29 35302 56.957384148777 0 +29 35310 56.957544148777 0 +29 35310 56.957544148777 0 +29 35338 57.224399269866 0 +29 35338 57.224399269866 0 +29 35346 57.224559269866 0 +29 35346 57.224559269866 0 +29 35358 57.231276162993 0 +29 35358 57.231276162993 0 +29 35363 57.231436162993 0 +29 35363 57.231436162993 0 +29 35386 57.257384147466 0 +29 35386 57.257384147466 0 +29 35394 57.257544147466 0 +29 35394 57.257544147466 0 +29 35422 57.524399274423 0 +29 35422 57.524399274423 0 +29 35430 57.524559274423 0 +29 35430 57.524559274423 0 +29 35442 57.531276162993 0 +29 35442 57.531276162993 0 +29 35447 57.531436162993 0 +29 35447 57.531436162993 0 +29 35469 57.557384146735 0 +29 35469 57.557384146735 0 +29 35473 57.557544146735 0 +29 35473 57.557544146735 0 +29 35506 57.824399278835 0 +29 35506 57.824399278835 0 +29 35514 57.824559278835 0 +29 35514 57.824559278835 0 +29 35526 57.831276162993 0 +29 35526 57.831276162993 0 +29 35531 57.831436162993 0 +29 35531 57.831436162993 0 +29 35553 57.857384146402 0 +29 35553 57.857384146402 0 +29 35557 57.857544146402 0 +29 35557 57.857544146402 0 +29 35590 58.124399283976 0 +29 35590 58.124399283976 0 +29 35598 58.124559283976 0 +29 35598 58.124559283976 0 +29 35610 58.131276162993 0 +29 35610 58.131276162993 0 +29 35615 58.131436162993 0 +29 35615 58.131436162993 0 +29 35637 58.157384147163 0 +29 35637 58.157384147163 0 +29 35641 58.157544147163 0 +29 35641 58.157544147163 0 +29 35674 58.424399289901 0 +29 35674 58.424399289901 0 +29 35682 58.424559289901 0 +29 35682 58.424559289901 0 +29 35694 58.431276162993 0 +29 35694 58.431276162993 0 +29 35699 58.431436162993 0 +29 35699 58.431436162993 0 +29 35721 58.457384148999 0 +29 35721 58.457384148999 0 +29 35725 58.457544148999 0 +29 35725 58.457544148999 0 +29 35758 58.724399296596 0 +29 35758 58.724399296596 0 +29 35766 58.724559296596 0 +29 35766 58.724559296596 0 +29 35778 58.731276162993 0 +29 35778 58.731276162993 0 +29 35783 58.731436162993 0 +29 35783 58.731436162993 0 +29 35805 58.757384151953 0 +29 35805 58.757384151953 0 +29 35809 58.757544151953 0 +29 35809 58.757544151953 0 +29 35842 59.024399304148 0 +29 35842 59.024399304148 0 +29 35850 59.024559304148 0 +29 35850 59.024559304148 0 +29 35862 59.031276162993 0 +29 35862 59.031276162993 0 +29 35867 59.031436162993 0 +29 35867 59.031436162993 0 +29 35889 59.057384156076 0 +29 35889 59.057384156076 0 +29 35893 59.057544156076 0 +29 35893 59.057544156076 0 +29 35926 59.324399312582 0 +29 35926 59.324399312582 0 +29 35934 59.324559312582 0 +29 35934 59.324559312582 0 +29 35946 59.331276162993 0 +29 35946 59.331276162993 0 +29 35951 59.331436162993 0 +29 35951 59.331436162993 0 +29 35973 59.357384161385 0 +29 35973 59.357384161385 0 +29 35977 59.357544161385 0 +29 35977 59.357544161385 0 +29 36010 59.624399321918 0 +29 36010 59.624399321918 0 +29 36018 59.624559321918 0 +29 36018 59.624559321918 0 +29 36030 59.631276162993 0 +29 36030 59.631276162993 0 +29 36035 59.631436162993 0 +29 36035 59.631436162993 0 +29 36057 59.657384167848 0 +29 36057 59.657384167848 0 +29 36061 59.657544167848 0 +29 36061 59.657544167848 0 +29 36094 59.924399332192 0 +29 36094 59.924399332192 0 +29 36102 59.924559332192 0 +29 36102 59.924559332192 0 +29 36114 59.931276162993 0 +29 36114 59.931276162993 0 +29 36119 59.931436162993 0 +29 36119 59.931436162993 0 +29 36141 59.957384175485 0 +29 36141 59.957384175485 0 +29 36145 59.957544175485 0 +29 36145 59.957544175485 0 +29 36194 60.231276162993 0 +29 36194 60.231276162993 0 +29 36199 60.231436162993 0 +29 36199 60.231436162993 0 +29 36217 60.257384184183 0 +29 36217 60.257384184183 0 +29 36221 60.257544184183 0 +29 36221 60.257544184183 0 +29 36270 60.531276162993 0 +29 36270 60.531276162993 0 +29 36275 60.531436162993 0 +29 36275 60.531436162993 0 +29 36293 60.557384193582 0 +29 36293 60.557384193582 0 +29 36297 60.557544193582 0 +29 36297 60.557544193582 0 +29 36346 60.831276162993 0 +29 36346 60.831276162993 0 +29 36351 60.831436162993 0 +29 36351 60.831436162993 0 +29 36369 60.857384203546 0 +29 36369 60.857384203546 0 +29 36373 60.857544203546 0 +29 36373 60.857544203546 0 +29 36422 61.131276162993 0 +29 36422 61.131276162993 0 +29 36427 61.131436162993 0 +29 36427 61.131436162993 0 +29 36445 61.157384214046 0 +29 36445 61.157384214046 0 +29 36449 61.157544214046 0 +29 36449 61.157544214046 0 +29 36498 61.431276162993 0 +29 36498 61.431276162993 0 +29 36503 61.431436162993 0 +29 36503 61.431436162993 0 +29 36521 61.457384224953 0 +29 36521 61.457384224953 0 +29 36525 61.457544224953 0 +29 36525 61.457544224953 0 +29 36574 61.731276162993 0 +29 36574 61.731276162993 0 +29 36579 61.731436162993 0 +29 36579 61.731436162993 0 +29 36597 61.757384236307 0 +29 36597 61.757384236307 0 +29 36601 61.757544236307 0 +29 36601 61.757544236307 0 +29 36650 62.031276162993 0 +29 36650 62.031276162993 0 +29 36655 62.031436162993 0 +29 36655 62.031436162993 0 +29 36673 62.057384248207 0 +29 36673 62.057384248207 0 +29 36677 62.057544248207 0 +29 36677 62.057544248207 0 +29 36726 62.331276162993 0 +29 36726 62.331276162993 0 +29 36731 62.331436162993 0 +29 36731 62.331436162993 0 +29 36749 62.357384260662 0 +29 36749 62.357384260662 0 +29 36753 62.357544260662 0 +29 36753 62.357544260662 0 +29 36802 62.631276162993 0 +29 36802 62.631276162993 0 +29 36807 62.631436162993 0 +29 36807 62.631436162993 0 +29 36825 62.657384273497 0 +29 36825 62.657384273497 0 +29 36829 62.657544273497 0 +29 36829 62.657544273497 0 +29 36878 62.931276162993 0 +29 36878 62.931276162993 0 +29 36883 62.931436162993 0 +29 36883 62.931436162993 0 +29 36901 62.957384286646 0 +29 36901 62.957384286646 0 +29 36905 62.957544286646 0 +29 36905 62.957544286646 0 +30 124 3.1 0 +30 124 3.1 0 +30 142 3.21455740282 0 +30 142 3.21455740282 0 +30 150 3.21471740282 0 +30 150 3.21471740282 0 +30 166 3.257384424448 0 +30 166 3.257384424448 0 +30 174 3.257544424448 0 +30 174 3.257544424448 0 +30 202 3.514557399314 0 +30 202 3.514557399314 0 +30 210 3.514717399314 0 +30 210 3.514717399314 0 +30 223 3.531276162993 0 +30 223 3.531276162993 0 +30 228 3.531436162993 0 +30 228 3.531436162993 0 +30 250 3.557384424342 0 +30 250 3.557384424342 0 +30 258 3.557544424342 0 +30 258 3.557544424342 0 +30 286 3.81455739499 0 +30 286 3.81455739499 0 +30 294 3.81471739499 0 +30 294 3.81471739499 0 +30 307 3.831276162993 0 +30 307 3.831276162993 0 +30 312 3.831436162993 0 +30 312 3.831436162993 0 +30 334 3.857384424025 0 +30 334 3.857384424025 0 +30 342 3.857544424025 0 +30 342 3.857544424025 0 +30 371 4.11455739006 0 +30 371 4.11455739006 0 +30 380 4.11471739006 0 +30 380 4.11471739006 0 +30 394 4.131276162993 0 +30 394 4.131276162993 0 +30 400 4.131436162993 0 +30 400 4.131436162993 0 +30 427 4.157384423703 0 +30 427 4.157384423703 0 +30 436 4.157544423703 0 +30 436 4.157544423703 0 +30 468 4.414557384462 0 +30 468 4.414557384462 0 +30 477 4.414717384462 0 +30 477 4.414717384462 0 +30 491 4.431276162993 0 +30 491 4.431276162993 0 +30 497 4.431436162993 0 +30 497 4.431436162993 0 +30 524 4.457384423373 0 +30 524 4.457384423373 0 +30 533 4.457544423373 0 +30 533 4.457544423373 0 +30 554 4.54399363691 0 +30 554 4.54399363691 0 +30 559 4.54415363691 0 +30 559 4.54415363691 0 +30 587 4.714557378402 0 +30 587 4.714557378402 0 +30 596 4.714717378402 0 +30 596 4.714717378402 0 +30 610 4.731276162993 0 +30 610 4.731276162993 0 +30 616 4.731436162993 0 +30 616 4.731436162993 0 +30 643 4.757384423069 0 +30 643 4.757384423069 0 +30 652 4.757544423069 0 +30 652 4.757544423069 0 +30 673 4.843993636799 0 +30 673 4.843993636799 0 +30 678 4.844153636799 0 +30 678 4.844153636799 0 +30 706 5.014557371745 0 +30 706 5.014557371745 0 +30 715 5.014717371745 0 +30 715 5.014717371745 0 +30 729 5.031276162993 0 +30 729 5.031276162993 0 +30 735 5.031436162993 0 +30 735 5.031436162993 0 +30 762 5.057384422748 0 +30 762 5.057384422748 0 +30 771 5.057544422748 0 +30 771 5.057544422748 0 +30 794 5.143993636284 0 +30 794 5.143993636284 0 +30 804 5.144153636284 0 +30 804 5.144153636284 0 +30 834 5.31455736441 0 +30 834 5.31455736441 0 +30 844 5.31471736441 0 +30 844 5.31471736441 0 +30 859 5.331276162993 0 +30 859 5.331276162993 0 +30 866 5.331436162993 0 +30 866 5.331436162993 0 +30 894 5.357384422438 0 +30 894 5.357384422438 0 +30 904 5.357544422438 0 +30 904 5.357544422438 0 +30 928 5.443993635357 0 +30 928 5.443993635357 0 +30 938 5.444153635357 0 +30 938 5.444153635357 0 +30 968 5.614557356527 0 +30 968 5.614557356527 0 +30 978 5.614717356527 0 +30 978 5.614717356527 0 +30 993 5.631276162993 0 +30 993 5.631276162993 0 +30 1000 5.631436162993 0 +30 1000 5.631436162993 0 +30 1028 5.657384422133 0 +30 1028 5.657384422133 0 +30 1038 5.657544422133 0 +30 1038 5.657544422133 0 +30 1086 5.743993634123 0 +30 1086 5.743993634123 0 +30 1096 5.744153634123 0 +30 1096 5.744153634123 0 +30 1126 5.914557347995 0 +30 1126 5.914557347995 0 +30 1136 5.914717347995 0 +30 1136 5.914717347995 0 +30 1151 5.931276162993 0 +30 1151 5.931276162993 0 +30 1158 5.931436162993 0 +30 1158 5.931436162993 0 +30 1186 5.957384421828 0 +30 1186 5.957384421828 0 +30 1196 5.957544421828 0 +30 1196 5.957544421828 0 +30 1244 6.043993632613 0 +30 1244 6.043993632613 0 +30 1254 6.044153632613 0 +30 1254 6.044153632613 0 +30 1287 6.214557338841 0 +30 1287 6.214557338841 0 +30 1302 6.214717338841 0 +30 1302 6.214717338841 0 +30 1317 6.231276162993 0 +30 1317 6.231276162993 0 +30 1325 6.231436162993 0 +30 1325 6.231436162993 0 +30 1359 6.257384421526 0 +30 1359 6.257384421526 0 +30 1374 6.257544421526 0 +30 1374 6.257544421526 0 +30 1425 6.343993630796 0 +30 1425 6.343993630796 0 +30 1436 6.344153630796 0 +30 1436 6.344153630796 0 +30 1470 6.514557329163 0 +30 1470 6.514557329163 0 +30 1485 6.514717329163 0 +30 1485 6.514717329163 0 +30 1502 6.524398906174 0 +30 1502 6.524398906174 0 +30 1513 6.524558906174 0 +30 1513 6.524558906174 0 +30 1533 6.531276162993 0 +30 1533 6.531276162993 0 +30 1541 6.531436162993 0 +30 1541 6.531436162993 0 +30 1576 6.557384421227 0 +30 1576 6.557384421227 0 +30 1591 6.557544421227 0 +30 1591 6.557544421227 0 +30 1642 6.643993628669 0 +30 1642 6.643993628669 0 +30 1653 6.644153628669 0 +30 1653 6.644153628669 0 +30 1687 6.81455731881 0 +30 1687 6.81455731881 0 +30 1702 6.81471731881 0 +30 1702 6.81471731881 0 +30 1719 6.824398906154 0 +30 1719 6.824398906154 0 +30 1730 6.824558906154 0 +30 1730 6.824558906154 0 +30 1750 6.831276162993 0 +30 1750 6.831276162993 0 +30 1758 6.831436162993 0 +30 1758 6.831436162993 0 +30 1793 6.857384420921 0 +30 1793 6.857384420921 0 +30 1808 6.857544420921 0 +30 1808 6.857544420921 0 +30 1859 6.943993626289 0 +30 1859 6.943993626289 0 +30 1870 6.944153626289 0 +30 1870 6.944153626289 0 +30 1904 7.114557307827 0 +30 1904 7.114557307827 0 +30 1919 7.114717307827 0 +30 1919 7.114717307827 0 +30 1936 7.124398906151 0 +30 1936 7.124398906151 0 +30 1947 7.124558906151 0 +30 1947 7.124558906151 0 +30 1967 7.131276162993 0 +30 1967 7.131276162993 0 +30 1975 7.131436162993 0 +30 1975 7.131436162993 0 +30 2010 7.157384420615 0 +30 2010 7.157384420615 0 +30 2025 7.157544420615 0 +30 2025 7.157544420615 0 +30 2076 7.243993623629 0 +30 2076 7.243993623629 0 +30 2087 7.244153623629 0 +30 2087 7.244153623629 0 +30 2121 7.414557296389 0 +30 2121 7.414557296389 0 +30 2136 7.414717296389 0 +30 2136 7.414717296389 0 +30 2153 7.424398906139 0 +30 2153 7.424398906139 0 +30 2164 7.424558906139 0 +30 2164 7.424558906139 0 +30 2184 7.431276162993 0 +30 2184 7.431276162993 0 +30 2192 7.431436162993 0 +30 2192 7.431436162993 0 +30 2227 7.45738442031 0 +30 2227 7.45738442031 0 +30 2242 7.45754442031 0 +30 2242 7.45754442031 0 +30 2293 7.543993620729 0 +30 2293 7.543993620729 0 +30 2304 7.544153620729 0 +30 2304 7.544153620729 0 +30 2338 7.714557284487 0 +30 2338 7.714557284487 0 +30 2353 7.714717284487 0 +30 2353 7.714717284487 0 +30 2370 7.72439890614 0 +30 2370 7.72439890614 0 +30 2381 7.72455890614 0 +30 2381 7.72455890614 0 +30 2401 7.731276162993 0 +30 2401 7.731276162993 0 +30 2409 7.731436162993 0 +30 2409 7.731436162993 0 +30 2444 7.757384420012 0 +30 2444 7.757384420012 0 +30 2459 7.757544420012 0 +30 2459 7.757544420012 0 +30 2510 7.843993617626 0 +30 2510 7.843993617626 0 +30 2521 7.844153617626 0 +30 2521 7.844153617626 0 +30 2555 8.014557271989 0 +30 2555 8.014557271989 0 +30 2570 8.014717271989 0 +30 2570 8.014717271989 0 +30 2587 8.024398906138 0 +30 2587 8.024398906138 0 +30 2598 8.024558906138 0 +30 2598 8.024558906138 0 +30 2618 8.031276162993 0 +30 2618 8.031276162993 0 +30 2626 8.031436162993 0 +30 2626 8.031436162993 0 +30 2661 8.057384419724 0 +30 2661 8.057384419724 0 +30 2676 8.057544419724 0 +30 2676 8.057544419724 0 +30 2727 8.143993614294 0 +30 2727 8.143993614294 0 +30 2738 8.144153614294 0 +30 2738 8.144153614294 0 +30 2772 8.314557258778 0 +30 2772 8.314557258778 0 +30 2787 8.314717258778 0 +30 2787 8.314717258778 0 +30 2804 8.324398906149 0 +30 2804 8.324398906149 0 +30 2815 8.324558906149 0 +30 2815 8.324558906149 0 +30 2839 8.331276162993 0 +30 2839 8.331276162993 0 +30 2847 8.331436162993 0 +30 2847 8.331436162993 0 +30 2882 8.357384419443 0 +30 2882 8.357384419443 0 +30 2897 8.357544419443 0 +30 2897 8.357544419443 0 +30 2948 8.443993610746 0 +30 2948 8.443993610746 0 +30 2959 8.444153610746 0 +30 2959 8.444153610746 0 +30 2997 8.614557244982 0 +30 2997 8.614557244982 0 +30 3012 8.614717244982 0 +30 3012 8.614717244982 0 +30 3029 8.624398906137 0 +30 3029 8.624398906137 0 +30 3040 8.624558906137 0 +30 3040 8.624558906137 0 +30 3064 8.631276162993 0 +30 3064 8.631276162993 0 +30 3072 8.631436162993 0 +30 3072 8.631436162993 0 +30 3107 8.657384419152 0 +30 3107 8.657384419152 0 +30 3122 8.657544419152 0 +30 3122 8.657544419152 0 +30 3173 8.74399360708 0 +30 3173 8.74399360708 0 +30 3184 8.74415360708 0 +30 3184 8.74415360708 0 +30 3221 8.91455723058 0 +30 3221 8.91455723058 0 +30 3232 8.91471723058 0 +30 3232 8.91471723058 0 +30 3254 8.924398906106 0 +30 3254 8.924398906106 0 +30 3265 8.924558906106 0 +30 3265 8.924558906106 0 +30 3289 8.931276162993 0 +30 3289 8.931276162993 0 +30 3297 8.931436162993 0 +30 3297 8.931436162993 0 +30 3332 8.957384418855 0 +30 3332 8.957384418855 0 +30 3347 8.957544418855 0 +30 3347 8.957544418855 0 +30 3398 9.043993603305 0 +30 3398 9.043993603305 0 +30 3409 9.044153603305 0 +30 3409 9.044153603305 0 +30 3446 9.214557215656 0 +30 3446 9.214557215656 0 +30 3457 9.214717215656 0 +30 3457 9.214717215656 0 +30 3479 9.224398906123 0 +30 3479 9.224398906123 0 +30 3490 9.224558906123 0 +30 3490 9.224558906123 0 +30 3514 9.231276162993 0 +30 3514 9.231276162993 0 +30 3522 9.231436162993 0 +30 3522 9.231436162993 0 +30 3557 9.257384418583 0 +30 3557 9.257384418583 0 +30 3572 9.257544418583 0 +30 3572 9.257544418583 0 +30 3623 9.343993599436 0 +30 3623 9.343993599436 0 +30 3634 9.344153599436 0 +30 3634 9.344153599436 0 +30 3671 9.514557200231 0 +30 3671 9.514557200231 0 +30 3682 9.514717200231 0 +30 3682 9.514717200231 0 +30 3704 9.524398906117 0 +30 3704 9.524398906117 0 +30 3715 9.524558906117 0 +30 3715 9.524558906117 0 +30 3739 9.531276162993 0 +30 3739 9.531276162993 0 +30 3747 9.531436162993 0 +30 3747 9.531436162993 0 +30 3782 9.557384418309 0 +30 3782 9.557384418309 0 +30 3797 9.557544418309 0 +30 3797 9.557544418309 0 +30 3848 9.643993595572 0 +30 3848 9.643993595572 0 +30 3859 9.644153595572 0 +30 3859 9.644153595572 0 +30 3896 9.814557184553 0 +30 3896 9.814557184553 0 +30 3907 9.814717184553 0 +30 3907 9.814717184553 0 +30 3929 9.824398906116 0 +30 3929 9.824398906116 0 +30 3940 9.824558906116 0 +30 3940 9.824558906116 0 +30 3964 9.831276162993 0 +30 3964 9.831276162993 0 +30 3972 9.831436162993 0 +30 3972 9.831436162993 0 +30 4007 9.857384418037 0 +30 4007 9.857384418037 0 +30 4022 9.857544418037 0 +30 4022 9.857544418037 0 +30 4073 9.943993591684 0 +30 4073 9.943993591684 0 +30 4084 9.944153591684 0 +30 4084 9.944153591684 0 +30 4121 10.114557168884 0 +30 4121 10.114557168884 0 +30 4132 10.114717168884 0 +30 4132 10.114717168884 0 +30 4154 10.124398906115 0 +30 4154 10.124398906115 0 +30 4165 10.124558906115 0 +30 4165 10.124558906115 0 +30 4189 10.131276162993 0 +30 4189 10.131276162993 0 +30 4197 10.131436162993 0 +30 4197 10.131436162993 0 +30 4232 10.15738441777 0 +30 4232 10.15738441777 0 +30 4247 10.15754441777 0 +30 4247 10.15754441777 0 +30 4298 10.243993587823 0 +30 4298 10.243993587823 0 +30 4309 10.244153587823 0 +30 4309 10.244153587823 0 +30 4346 10.414557153241 0 +30 4346 10.414557153241 0 +30 4357 10.414717153241 0 +30 4357 10.414717153241 0 +30 4379 10.424398906104 0 +30 4379 10.424398906104 0 +30 4390 10.424558906104 0 +30 4390 10.424558906104 0 +30 4414 10.431276162993 0 +30 4414 10.431276162993 0 +30 4422 10.431436162993 0 +30 4422 10.431436162993 0 +30 4457 10.457384417494 0 +30 4457 10.457384417494 0 +30 4472 10.457544417494 0 +30 4472 10.457544417494 0 +30 4523 10.543993584071 0 +30 4523 10.543993584071 0 +30 4534 10.544153584071 0 +30 4534 10.544153584071 0 +30 4575 10.7145571376 0 +30 4575 10.7145571376 0 +30 4586 10.7147171376 0 +30 4586 10.7147171376 0 +30 4612 10.724398906116 0 +30 4612 10.724398906116 0 +30 4623 10.724558906116 0 +30 4623 10.724558906116 0 +30 4647 10.731276162993 0 +30 4647 10.731276162993 0 +30 4655 10.731436162993 0 +30 4655 10.731436162993 0 +30 4690 10.757384417221 0 +30 4690 10.757384417221 0 +30 4705 10.757544417221 0 +30 4705 10.757544417221 0 +30 4756 10.843993580594 0 +30 4756 10.843993580594 0 +30 4767 10.844153580594 0 +30 4767 10.844153580594 0 +30 4808 11.014557121962 0 +30 4808 11.014557121962 0 +30 4819 11.014717121962 0 +30 4819 11.014717121962 0 +30 4845 11.024398906108 0 +30 4845 11.024398906108 0 +30 4856 11.024558906108 0 +30 4856 11.024558906108 0 +30 4880 11.031276162993 0 +30 4880 11.031276162993 0 +30 4888 11.031436162993 0 +30 4888 11.031436162993 0 +30 4923 11.057384416961 0 +30 4923 11.057384416961 0 +30 4938 11.057544416961 0 +30 4938 11.057544416961 0 +30 4989 11.1439935782 0 +30 4989 11.1439935782 0 +30 5000 11.1441535782 0 +30 5000 11.1441535782 0 +30 5041 11.314557106356 0 +30 5041 11.314557106356 0 +30 5052 11.314717106356 0 +30 5052 11.314717106356 0 +30 5078 11.324398906123 0 +30 5078 11.324398906123 0 +30 5089 11.324558906123 0 +30 5089 11.324558906123 0 +30 5113 11.331276162993 0 +30 5113 11.331276162993 0 +30 5121 11.331436162993 0 +30 5121 11.331436162993 0 +30 5156 11.357384416695 0 +30 5156 11.357384416695 0 +30 5171 11.357544416695 0 +30 5171 11.357544416695 0 +30 5189 11.393586261354 0 +30 5189 11.393586261354 0 +30 5200 11.393746261354 0 +30 5200 11.393746261354 0 +30 5222 11.443993576825 0 +30 5222 11.443993576825 0 +30 5233 11.444153576825 0 +30 5233 11.444153576825 0 +30 5274 11.614557090743 0 +30 5274 11.614557090743 0 +30 5285 11.614717090743 0 +30 5285 11.614717090743 0 +30 5311 11.624398906133 0 +30 5311 11.624398906133 0 +30 5322 11.624558906133 0 +30 5322 11.624558906133 0 +30 5346 11.631276162993 0 +30 5346 11.631276162993 0 +30 5354 11.631436162993 0 +30 5354 11.631436162993 0 +30 5393 11.657384416441 0 +30 5393 11.657384416441 0 +30 5408 11.657544416441 0 +30 5408 11.657544416441 0 +30 5426 11.693586259603 0 +30 5426 11.693586259603 0 +30 5437 11.693746259603 0 +30 5437 11.693746259603 0 +30 5463 11.743993576355 0 +30 5463 11.743993576355 0 +30 5474 11.744153576355 0 +30 5474 11.744153576355 0 +30 5515 11.914557075093 0 +30 5515 11.914557075093 0 +30 5526 11.914717075093 0 +30 5526 11.914717075093 0 +30 5552 11.924398906131 0 +30 5552 11.924398906131 0 +30 5563 11.924558906131 0 +30 5563 11.924558906131 0 +30 5587 11.931276162993 0 +30 5587 11.931276162993 0 +30 5595 11.931436162993 0 +30 5595 11.931436162993 0 +30 5634 11.957384416181 0 +30 5634 11.957384416181 0 +30 5649 11.957544416181 0 +30 5649 11.957544416181 0 +30 5667 11.993586257957 0 +30 5667 11.993586257957 0 +30 5678 11.993746257957 0 +30 5678 11.993746257957 0 +30 5704 12.043993576682 0 +30 5704 12.043993576682 0 +30 5715 12.044153576682 0 +30 5715 12.044153576682 0 +30 5756 12.214557059446 0 +30 5756 12.214557059446 0 +30 5767 12.214717059446 0 +30 5767 12.214717059446 0 +30 5793 12.22439890615 0 +30 5793 12.22439890615 0 +30 5804 12.22455890615 0 +30 5804 12.22455890615 0 +30 5828 12.231276162993 0 +30 5828 12.231276162993 0 +30 5836 12.231436162993 0 +30 5836 12.231436162993 0 +30 5875 12.25738441593 0 +30 5875 12.25738441593 0 +30 5890 12.25754441593 0 +30 5890 12.25754441593 0 +30 5908 12.293586256438 0 +30 5908 12.293586256438 0 +30 5919 12.293746256438 0 +30 5919 12.293746256438 0 +30 5945 12.343993577342 0 +30 5945 12.343993577342 0 +30 5956 12.344153577342 0 +30 5956 12.344153577342 0 +30 5997 12.514557043815 0 +30 5997 12.514557043815 0 +30 6008 12.514717043815 0 +30 6008 12.514717043815 0 +30 6034 12.524398906142 0 +30 6034 12.524398906142 0 +30 6045 12.524558906142 0 +30 6045 12.524558906142 0 +30 6069 12.531276162993 0 +30 6069 12.531276162993 0 +30 6077 12.531436162993 0 +30 6077 12.531436162993 0 +30 6116 12.557384415683 0 +30 6116 12.557384415683 0 +30 6131 12.557544415683 0 +30 6131 12.557544415683 0 +30 6149 12.593586255105 0 +30 6149 12.593586255105 0 +30 6160 12.593746255105 0 +30 6160 12.593746255105 0 +30 6186 12.643993578007 0 +30 6186 12.643993578007 0 +30 6197 12.644153578007 0 +30 6197 12.644153578007 0 +30 6238 12.814557028193 0 +30 6238 12.814557028193 0 +30 6249 12.814717028193 0 +30 6249 12.814717028193 0 +30 6275 12.824398906145 0 +30 6275 12.824398906145 0 +30 6286 12.824558906145 0 +30 6286 12.824558906145 0 +30 6310 12.831276162993 0 +30 6310 12.831276162993 0 +30 6318 12.831436162993 0 +30 6318 12.831436162993 0 +30 6357 12.857384415431 0 +30 6357 12.857384415431 0 +30 6372 12.857544415431 0 +30 6372 12.857544415431 0 +30 6390 12.893586254045 0 +30 6390 12.893586254045 0 +30 6401 12.893746254045 0 +30 6401 12.893746254045 0 +30 6427 12.943993578695 0 +30 6427 12.943993578695 0 +30 6438 12.944153578695 0 +30 6438 12.944153578695 0 +30 6479 13.114557012525 0 +30 6479 13.114557012525 0 +30 6490 13.114717012525 0 +30 6490 13.114717012525 0 +30 6516 13.124398906128 0 +30 6516 13.124398906128 0 +30 6527 13.124558906128 0 +30 6527 13.124558906128 0 +30 6551 13.131276162993 0 +30 6551 13.131276162993 0 +30 6559 13.131436162993 0 +30 6559 13.131436162993 0 +30 6598 13.157384415176 0 +30 6598 13.157384415176 0 +30 6613 13.157544415176 0 +30 6613 13.157544415176 0 +30 6631 13.193586253273 0 +30 6631 13.193586253273 0 +30 6642 13.193746253273 0 +30 6642 13.193746253273 0 +30 6668 13.243993579376 0 +30 6668 13.243993579376 0 +30 6679 13.244153579376 0 +30 6679 13.244153579376 0 +30 6720 13.414556996915 0 +30 6720 13.414556996915 0 +30 6731 13.414716996915 0 +30 6731 13.414716996915 0 +30 6757 13.424398906138 0 +30 6757 13.424398906138 0 +30 6768 13.424558906138 0 +30 6768 13.424558906138 0 +30 6792 13.431276162993 0 +30 6792 13.431276162993 0 +30 6800 13.431436162993 0 +30 6800 13.431436162993 0 +30 6839 13.45738441494 0 +30 6839 13.45738441494 0 +30 6854 13.45754441494 0 +30 6854 13.45754441494 0 +30 6872 13.493586252758 0 +30 6872 13.493586252758 0 +30 6883 13.493746252758 0 +30 6883 13.493746252758 0 +30 6909 13.543993580057 0 +30 6909 13.543993580057 0 +30 6920 13.544153580057 0 +30 6920 13.544153580057 0 +30 6961 13.714556981296 0 +30 6961 13.714556981296 0 +30 6972 13.714716981296 0 +30 6972 13.714716981296 0 +30 6998 13.724398906143 0 +30 6998 13.724398906143 0 +30 7009 13.724558906143 0 +30 7009 13.724558906143 0 +30 7033 13.731276162993 0 +30 7033 13.731276162993 0 +30 7041 13.731436162993 0 +30 7041 13.731436162993 0 +30 7080 13.75738441469 0 +30 7080 13.75738441469 0 +30 7095 13.75754441469 0 +30 7095 13.75754441469 0 +30 7113 13.793586252521 0 +30 7113 13.793586252521 0 +30 7124 13.793746252521 0 +30 7124 13.793746252521 0 +30 7150 13.843993580742 0 +30 7150 13.843993580742 0 +30 7161 13.844153580742 0 +30 7161 13.844153580742 0 +30 7201 14.014556965625 0 +30 7201 14.014556965625 0 +30 7208 14.014716965625 0 +30 7208 14.014716965625 0 +30 7239 14.024398906136 0 +30 7239 14.024398906136 0 +30 7250 14.024558906136 0 +30 7250 14.024558906136 0 +30 7274 14.031276162993 0 +30 7274 14.031276162993 0 +30 7282 14.031436162993 0 +30 7282 14.031436162993 0 +30 7321 14.057384414442 0 +30 7321 14.057384414442 0 +30 7336 14.057544414442 0 +30 7336 14.057544414442 0 +30 7354 14.093586252556 0 +30 7354 14.093586252556 0 +30 7365 14.093746252556 0 +30 7365 14.093746252556 0 +30 7391 14.143993581436 0 +30 7391 14.143993581436 0 +30 7402 14.144153581436 0 +30 7402 14.144153581436 0 +30 7442 14.314556950015 0 +30 7442 14.314556950015 0 +30 7449 14.314716950015 0 +30 7449 14.314716950015 0 +30 7480 14.324398906149 0 +30 7480 14.324398906149 0 +30 7491 14.324558906149 0 +30 7491 14.324558906149 0 +30 7515 14.331276162993 0 +30 7515 14.331276162993 0 +30 7523 14.331436162993 0 +30 7523 14.331436162993 0 +30 7562 14.357384414212 0 +30 7562 14.357384414212 0 +30 7577 14.357544414212 0 +30 7577 14.357544414212 0 +30 7595 14.393586252856 0 +30 7595 14.393586252856 0 +30 7606 14.393746252856 0 +30 7606 14.393746252856 0 +30 7632 14.443993582121 0 +30 7632 14.443993582121 0 +30 7643 14.444153582121 0 +30 7643 14.444153582121 0 +30 7683 14.614556934427 0 +30 7683 14.614556934427 0 +30 7690 14.614716934427 0 +30 7690 14.614716934427 0 +30 7721 14.624398906139 0 +30 7721 14.624398906139 0 +30 7732 14.624558906139 0 +30 7732 14.624558906139 0 +30 7756 14.631276162993 0 +30 7756 14.631276162993 0 +30 7764 14.631436162993 0 +30 7764 14.631436162993 0 +30 7803 14.657384413973 0 +30 7803 14.657384413973 0 +30 7818 14.657544413973 0 +30 7818 14.657544413973 0 +30 7836 14.693586253132 0 +30 7836 14.693586253132 0 +30 7847 14.693746253132 0 +30 7847 14.693746253132 0 +30 7873 14.743993582821 0 +30 7873 14.743993582821 0 +30 7884 14.744153582821 0 +30 7884 14.744153582821 0 +30 7924 14.914556918856 0 +30 7924 14.914556918856 0 +30 7931 14.914716918856 0 +30 7931 14.914716918856 0 +30 7962 14.924398906135 0 +30 7962 14.924398906135 0 +30 7973 14.924558906135 0 +30 7973 14.924558906135 0 +30 7997 14.931276162993 0 +30 7997 14.931276162993 0 +30 8005 14.931436162993 0 +30 8005 14.931436162993 0 +30 8044 14.957384413742 0 +30 8044 14.957384413742 0 +30 8059 14.957544413742 0 +30 8059 14.957544413742 0 +30 8077 14.993586247233 0 +30 8077 14.993586247233 0 +30 8088 14.993746247233 0 +30 8088 14.993746247233 0 +30 8114 15.043993583523 0 +30 8114 15.043993583523 0 +30 8125 15.044153583523 0 +30 8125 15.044153583523 0 +30 8165 15.214556903292 0 +30 8165 15.214556903292 0 +30 8172 15.214716903292 0 +30 8172 15.214716903292 0 +30 8203 15.22439890612 0 +30 8203 15.22439890612 0 +30 8214 15.22455890612 0 +30 8214 15.22455890612 0 +30 8238 15.231276162993 0 +30 8238 15.231276162993 0 +30 8246 15.231436162993 0 +30 8246 15.231436162993 0 +30 8285 15.257384413499 0 +30 8285 15.257384413499 0 +30 8300 15.257544413499 0 +30 8300 15.257544413499 0 +30 8318 15.293586234372 0 +30 8318 15.293586234372 0 +30 8329 15.293746234372 0 +30 8329 15.293746234372 0 +30 8355 15.343993584234 0 +30 8355 15.343993584234 0 +30 8366 15.344153584234 0 +30 8366 15.344153584234 0 +30 8406 15.514556887741 0 +30 8406 15.514556887741 0 +30 8413 15.514716887741 0 +30 8413 15.514716887741 0 +30 8444 15.524398906129 0 +30 8444 15.524398906129 0 +30 8455 15.524558906129 0 +30 8455 15.524558906129 0 +30 8479 15.531276162993 0 +30 8479 15.531276162993 0 +30 8487 15.531436162993 0 +30 8487 15.531436162993 0 +30 8526 15.557384413279 0 +30 8526 15.557384413279 0 +30 8541 15.557544413279 0 +30 8541 15.557544413279 0 +30 8559 15.59358622109 0 +30 8559 15.59358622109 0 +30 8570 15.59374622109 0 +30 8570 15.59374622109 0 +30 8596 15.643993584927 0 +30 8596 15.643993584927 0 +30 8607 15.644153584927 0 +30 8607 15.644153584927 0 +30 8647 15.814556872317 0 +30 8647 15.814556872317 0 +30 8654 15.814716872317 0 +30 8654 15.814716872317 0 +30 8685 15.82439890615 0 +30 8685 15.82439890615 0 +30 8696 15.82455890615 0 +30 8696 15.82455890615 0 +30 8720 15.831276162993 0 +30 8720 15.831276162993 0 +30 8728 15.831436162993 0 +30 8728 15.831436162993 0 +30 8767 15.857384413074 0 +30 8767 15.857384413074 0 +30 8782 15.857544413074 0 +30 8782 15.857544413074 0 +30 8800 15.893586207767 0 +30 8800 15.893586207767 0 +30 8811 15.893746207767 0 +30 8811 15.893746207767 0 +30 8837 15.943993585623 0 +30 8837 15.943993585623 0 +30 8848 15.944153585623 0 +30 8848 15.944153585623 0 +30 8888 16.114556856962 0 +30 8888 16.114556856962 0 +30 8895 16.114716856962 0 +30 8895 16.114716856962 0 +30 8930 16.124398906134 0 +30 8930 16.124398906134 0 +30 8941 16.124558906134 0 +30 8941 16.124558906134 0 +30 8965 16.131276162993 0 +30 8965 16.131276162993 0 +30 8973 16.131436162993 0 +30 8973 16.131436162993 0 +30 9012 16.157384412841 0 +30 9012 16.157384412841 0 +30 9027 16.157544412841 0 +30 9027 16.157544412841 0 +30 9045 16.19358619447 0 +30 9045 16.19358619447 0 +30 9056 16.19374619447 0 +30 9056 16.19374619447 0 +30 9086 16.243993586344 0 +30 9086 16.243993586344 0 +30 9097 16.244153586344 0 +30 9097 16.244153586344 0 +30 9137 16.414556841879 0 +30 9137 16.414556841879 0 +30 9144 16.414716841879 0 +30 9144 16.414716841879 0 +30 9179 16.42439890611 0 +30 9179 16.42439890611 0 +30 9190 16.42455890611 0 +30 9190 16.42455890611 0 +30 9214 16.431276162993 0 +30 9214 16.431276162993 0 +30 9222 16.431436162993 0 +30 9222 16.431436162993 0 +30 9261 16.457384412619 0 +30 9261 16.457384412619 0 +30 9276 16.457544412619 0 +30 9276 16.457544412619 0 +30 9294 16.493586182941 0 +30 9294 16.493586182941 0 +30 9305 16.493746182941 0 +30 9305 16.493746182941 0 +30 9335 16.543993587061 0 +30 9335 16.543993587061 0 +30 9346 16.544153587061 0 +30 9346 16.544153587061 0 +30 9386 16.714556827831 0 +30 9386 16.714556827831 0 +30 9393 16.714716827831 0 +30 9393 16.714716827831 0 +30 9428 16.72439890611 0 +30 9428 16.72439890611 0 +30 9439 16.72455890611 0 +30 9439 16.72455890611 0 +30 9463 16.731276162993 0 +30 9463 16.731276162993 0 +30 9471 16.731436162993 0 +30 9471 16.731436162993 0 +30 9510 16.757384412406 0 +30 9510 16.757384412406 0 +30 9525 16.757544412406 0 +30 9525 16.757544412406 0 +30 9543 16.793586174099 0 +30 9543 16.793586174099 0 +30 9554 16.793746174099 0 +30 9554 16.793746174099 0 +30 9584 16.843993587769 0 +30 9584 16.843993587769 0 +30 9595 16.844153587769 0 +30 9595 16.844153587769 0 +30 9635 17.01455682019 0 +30 9635 17.01455682019 0 +30 9642 17.01471682019 0 +30 9642 17.01471682019 0 +30 9676 17.024398906114 0 +30 9676 17.024398906114 0 +30 9683 17.024558906114 0 +30 9683 17.024558906114 0 +30 9712 17.031276162993 0 +30 9712 17.031276162993 0 +30 9720 17.031436162993 0 +30 9720 17.031436162993 0 +30 9759 17.057384412189 0 +30 9759 17.057384412189 0 +30 9774 17.057544412189 0 +30 9774 17.057544412189 0 +30 9793 17.093586167963 0 +30 9793 17.093586167963 0 +30 9808 17.093746167963 0 +30 9808 17.093746167963 0 +30 9834 17.143993588488 0 +30 9834 17.143993588488 0 +30 9849 17.144153588488 0 +30 9849 17.144153588488 0 +30 9884 17.314556829071 0 +30 9884 17.314556829071 0 +30 9891 17.314716829071 0 +30 9891 17.314716829071 0 +30 9925 17.324398906121 0 +30 9925 17.324398906121 0 +30 9932 17.324558906121 0 +30 9932 17.324558906121 0 +30 9961 17.331276162993 0 +30 9961 17.331276162993 0 +30 9969 17.331436162993 0 +30 9969 17.331436162993 0 +30 10007 17.357384411975 0 +30 10007 17.357384411975 0 +30 10018 17.357544411975 0 +30 10018 17.357544411975 0 +30 10042 17.393586164536 0 +30 10042 17.393586164536 0 +30 10057 17.393746164536 0 +30 10057 17.393746164536 0 +30 10083 17.44399358921 0 +30 10083 17.44399358921 0 +30 10098 17.44415358921 0 +30 10098 17.44415358921 0 +30 10133 17.614556843292 0 +30 10133 17.614556843292 0 +30 10140 17.614716843292 0 +30 10140 17.614716843292 0 +30 10174 17.624398906125 0 +30 10174 17.624398906125 0 +30 10181 17.624558906125 0 +30 10181 17.624558906125 0 +30 10210 17.631276162993 0 +30 10210 17.631276162993 0 +30 10218 17.631436162993 0 +30 10218 17.631436162993 0 +30 10256 17.657384411748 0 +30 10256 17.657384411748 0 +30 10267 17.657544411748 0 +30 10267 17.657544411748 0 +30 10291 17.693586163751 0 +30 10291 17.693586163751 0 +30 10306 17.693746163751 0 +30 10306 17.693746163751 0 +30 10332 17.743993589932 0 +30 10332 17.743993589932 0 +30 10347 17.744153589932 0 +30 10347 17.744153589932 0 +30 10382 17.914556858379 0 +30 10382 17.914556858379 0 +30 10389 17.914716858379 0 +30 10389 17.914716858379 0 +30 10419 17.924398906139 0 +30 10419 17.924398906139 0 +30 10426 17.924558906139 0 +30 10426 17.924558906139 0 +30 10455 17.931276162993 0 +30 10455 17.931276162993 0 +30 10463 17.931436162993 0 +30 10463 17.931436162993 0 +30 10501 17.957384411544 0 +30 10501 17.957384411544 0 +30 10512 17.957544411544 0 +30 10512 17.957544411544 0 +30 10532 17.993586163742 0 +30 10532 17.993586163742 0 +30 10547 17.993746163742 0 +30 10547 17.993746163742 0 +30 10573 18.043993590647 0 +30 10573 18.043993590647 0 +30 10588 18.044153590647 0 +30 10588 18.044153590647 0 +30 10623 18.214556873732 0 +30 10623 18.214556873732 0 +30 10630 18.214716873732 0 +30 10630 18.214716873732 0 +30 10660 18.22439890616 0 +30 10660 18.22439890616 0 +30 10667 18.22455890616 0 +30 10667 18.22455890616 0 +30 10692 18.231276162993 0 +30 10692 18.231276162993 0 +30 10700 18.231436162993 0 +30 10700 18.231436162993 0 +30 10738 18.257384411348 0 +30 10738 18.257384411348 0 +30 10749 18.257544411348 0 +30 10749 18.257544411348 0 +30 10769 18.29358616373 0 +30 10769 18.29358616373 0 +30 10784 18.29374616373 0 +30 10784 18.29374616373 0 +30 10810 18.343993591375 0 +30 10810 18.343993591375 0 +30 10825 18.344153591375 0 +30 10825 18.344153591375 0 +30 10856 18.514556889096 0 +30 10856 18.514556889096 0 +30 10863 18.514716889096 0 +30 10863 18.514716889096 0 +30 10893 18.524398906161 0 +30 10893 18.524398906161 0 +30 10900 18.524558906161 0 +30 10900 18.524558906161 0 +30 10925 18.531276162993 0 +30 10925 18.531276162993 0 +30 10933 18.531436162993 0 +30 10933 18.531436162993 0 +30 10971 18.557384411139 0 +30 10971 18.557384411139 0 +30 10982 18.557544411139 0 +30 10982 18.557544411139 0 +30 11002 18.593586163725 0 +30 11002 18.593586163725 0 +30 11017 18.593746163725 0 +30 11017 18.593746163725 0 +30 11043 18.64399359211 0 +30 11043 18.64399359211 0 +30 11058 18.64415359211 0 +30 11058 18.64415359211 0 +30 11089 18.814556899317 0 +30 11089 18.814556899317 0 +30 11096 18.814716899317 0 +30 11096 18.814716899317 0 +30 11126 18.824398906157 0 +30 11126 18.824398906157 0 +30 11133 18.824558906157 0 +30 11133 18.824558906157 0 +30 11158 18.831276162993 0 +30 11158 18.831276162993 0 +30 11166 18.831436162993 0 +30 11166 18.831436162993 0 +30 11204 18.857384410943 0 +30 11204 18.857384410943 0 +30 11215 18.857544410943 0 +30 11215 18.857544410943 0 +30 11235 18.893586163718 0 +30 11235 18.893586163718 0 +30 11250 18.893746163718 0 +30 11250 18.893746163718 0 +30 11276 18.943993592844 0 +30 11276 18.943993592844 0 +30 11291 18.944153592844 0 +30 11291 18.944153592844 0 +30 11322 19.114556905927 0 +30 11322 19.114556905927 0 +30 11329 19.114716905927 0 +30 11329 19.114716905927 0 +30 11359 19.124398906156 0 +30 11359 19.124398906156 0 +30 11366 19.124558906156 0 +30 11366 19.124558906156 0 +30 11391 19.131276162993 0 +30 11391 19.131276162993 0 +30 11399 19.131436162993 0 +30 11399 19.131436162993 0 +30 11437 19.157384410755 0 +30 11437 19.157384410755 0 +30 11448 19.157544410755 0 +30 11448 19.157544410755 0 +30 11468 19.193586163706 0 +30 11468 19.193586163706 0 +30 11483 19.193746163706 0 +30 11483 19.193746163706 0 +30 11509 19.243993593591 0 +30 11509 19.243993593591 0 +30 11524 19.244153593591 0 +30 11524 19.244153593591 0 +30 11555 19.414556913869 0 +30 11555 19.414556913869 0 +30 11562 19.414716913869 0 +30 11562 19.414716913869 0 +30 11592 19.424398906135 0 +30 11592 19.424398906135 0 +30 11599 19.424558906135 0 +30 11599 19.424558906135 0 +30 11624 19.431276162993 0 +30 11624 19.431276162993 0 +30 11632 19.431436162993 0 +30 11632 19.431436162993 0 +30 11670 19.457384410552 0 +30 11670 19.457384410552 0 +30 11681 19.457544410552 0 +30 11681 19.457544410552 0 +30 11701 19.49358616371 0 +30 11701 19.49358616371 0 +30 11716 19.49374616371 0 +30 11716 19.49374616371 0 +30 11742 19.543993594392 0 +30 11742 19.543993594392 0 +30 11757 19.544153594392 0 +30 11757 19.544153594392 0 +30 11788 19.714556923553 0 +30 11788 19.714556923553 0 +30 11795 19.714716923553 0 +30 11795 19.714716923553 0 +30 11825 19.724398906093 0 +30 11825 19.724398906093 0 +30 11832 19.724558906093 0 +30 11832 19.724558906093 0 +30 11857 19.731276162993 0 +30 11857 19.731276162993 0 +30 11865 19.731436162993 0 +30 11865 19.731436162993 0 +30 11903 19.757384409991 0 +30 11903 19.757384409991 0 +30 11914 19.757544409991 0 +30 11914 19.757544409991 0 +30 11934 19.793586163688 0 +30 11934 19.793586163688 0 +30 11949 19.793746163688 0 +30 11949 19.793746163688 0 +30 11975 19.843993595698 0 +30 11975 19.843993595698 0 +30 11990 19.844153595698 0 +30 11990 19.844153595698 0 +30 12021 20.014556934723 0 +30 12021 20.014556934723 0 +30 12028 20.014716934723 0 +30 12028 20.014716934723 0 +30 12062 20.024398905916 0 +30 12062 20.024398905916 0 +30 12069 20.024558905916 0 +30 12069 20.024558905916 0 +30 12094 20.031276162993 0 +30 12094 20.031276162993 0 +30 12102 20.031436162993 0 +30 12102 20.031436162993 0 +30 12140 20.057384408842 0 +30 12140 20.057384408842 0 +30 12151 20.057544408842 0 +30 12151 20.057544408842 0 +30 12175 20.0935861637 0 +30 12175 20.0935861637 0 +30 12190 20.0937461637 0 +30 12190 20.0937461637 0 +30 12216 20.143993597547 0 +30 12216 20.143993597547 0 +30 12231 20.144153597547 0 +30 12231 20.144153597547 0 +30 12262 20.314556946995 0 +30 12262 20.314556946995 0 +30 12269 20.314716946995 0 +30 12269 20.314716946995 0 +30 12303 20.324398905745 0 +30 12303 20.324398905745 0 +30 12310 20.324558905745 0 +30 12310 20.324558905745 0 +30 12335 20.331276162993 0 +30 12335 20.331276162993 0 +30 12343 20.331436162993 0 +30 12343 20.331436162993 0 +30 12381 20.357384407512 0 +30 12381 20.357384407512 0 +30 12392 20.357544407512 0 +30 12392 20.357544407512 0 +30 12416 20.393586163659 0 +30 12416 20.393586163659 0 +30 12431 20.393746163659 0 +30 12431 20.393746163659 0 +30 12457 20.443993599834 0 +30 12457 20.443993599834 0 +30 12472 20.444153599834 0 +30 12472 20.444153599834 0 +30 12503 20.614556960156 0 +30 12503 20.614556960156 0 +30 12510 20.614716960156 0 +30 12510 20.614716960156 0 +30 12544 20.624398905622 0 +30 12544 20.624398905622 0 +30 12551 20.624558905622 0 +30 12551 20.624558905622 0 +30 12576 20.631276162993 0 +30 12576 20.631276162993 0 +30 12584 20.631436162993 0 +30 12584 20.631436162993 0 +30 12622 20.6573844061 0 +30 12622 20.6573844061 0 +30 12633 20.6575444061 0 +30 12633 20.6575444061 0 +30 12657 20.693586163661 0 +30 12657 20.693586163661 0 +30 12672 20.693746163661 0 +30 12672 20.693746163661 0 +30 12698 20.743993602682 0 +30 12698 20.743993602682 0 +30 12713 20.744153602682 0 +30 12713 20.744153602682 0 +30 12744 20.914556974042 0 +30 12744 20.914556974042 0 +30 12751 20.914716974042 0 +30 12751 20.914716974042 0 +30 12785 20.924398905643 0 +30 12785 20.924398905643 0 +30 12792 20.924558905643 0 +30 12792 20.924558905643 0 +30 12817 20.931276162993 0 +30 12817 20.931276162993 0 +30 12825 20.931436162993 0 +30 12825 20.931436162993 0 +30 12863 20.957384404581 0 +30 12863 20.957384404581 0 +30 12874 20.957544404581 0 +30 12874 20.957544404581 0 +30 12898 20.993586163701 0 +30 12898 20.993586163701 0 +30 12913 20.993746163701 0 +30 12913 20.993746163701 0 +30 12939 21.043993605975 0 +30 12939 21.043993605975 0 +30 12954 21.044153605975 0 +30 12954 21.044153605975 0 +30 12985 21.214556988437 0 +30 12985 21.214556988437 0 +30 12992 21.214716988437 0 +30 12992 21.214716988437 0 +30 13026 21.22439890572 0 +30 13026 21.22439890572 0 +30 13033 21.22455890572 0 +30 13033 21.22455890572 0 +30 13058 21.231276162993 0 +30 13058 21.231276162993 0 +30 13066 21.231436162993 0 +30 13066 21.231436162993 0 +30 13104 21.257384403056 0 +30 13104 21.257384403056 0 +30 13115 21.257544403056 0 +30 13115 21.257544403056 0 +30 13139 21.293586163789 0 +30 13139 21.293586163789 0 +30 13154 21.293746163789 0 +30 13154 21.293746163789 0 +30 13180 21.343993609822 0 +30 13180 21.343993609822 0 +30 13195 21.344153609822 0 +30 13195 21.344153609822 0 +30 13226 21.514557003324 0 +30 13226 21.514557003324 0 +30 13233 21.514717003324 0 +30 13233 21.514717003324 0 +30 13267 21.524398905746 0 +30 13267 21.524398905746 0 +30 13274 21.524558905746 0 +30 13274 21.524558905746 0 +30 13299 21.531276162993 0 +30 13299 21.531276162993 0 +30 13307 21.531436162993 0 +30 13307 21.531436162993 0 +30 13345 21.557384401467 0 +30 13345 21.557384401467 0 +30 13356 21.557544401467 0 +30 13356 21.557544401467 0 +30 13380 21.593586163828 0 +30 13380 21.593586163828 0 +30 13395 21.593746163828 0 +30 13395 21.593746163828 0 +30 13421 21.643993614218 0 +30 13421 21.643993614218 0 +30 13436 21.644153614218 0 +30 13436 21.644153614218 0 +30 13467 21.814557018645 0 +30 13467 21.814557018645 0 +30 13474 21.814717018645 0 +30 13474 21.814717018645 0 +30 13508 21.82439890573 0 +30 13508 21.82439890573 0 +30 13515 21.82455890573 0 +30 13515 21.82455890573 0 +30 13540 21.831276162993 0 +30 13540 21.831276162993 0 +30 13548 21.831436162993 0 +30 13548 21.831436162993 0 +30 13586 21.857384399784 0 +30 13586 21.857384399784 0 +30 13597 21.857544399784 0 +30 13597 21.857544399784 0 +30 13621 21.893586163871 0 +30 13621 21.893586163871 0 +30 13636 21.893746163871 0 +30 13636 21.893746163871 0 +30 13662 21.943993619248 0 +30 13662 21.943993619248 0 +30 13677 21.944153619248 0 +30 13677 21.944153619248 0 +30 13708 22.114557034351 0 +30 13708 22.114557034351 0 +30 13715 22.114717034351 0 +30 13715 22.114717034351 0 +30 13749 22.124398905663 0 +30 13749 22.124398905663 0 +30 13756 22.124558905663 0 +30 13756 22.124558905663 0 +30 13781 22.131276162993 0 +30 13781 22.131276162993 0 +30 13789 22.131436162993 0 +30 13789 22.131436162993 0 +30 13827 22.157384398008 0 +30 13827 22.157384398008 0 +30 13838 22.157544398008 0 +30 13838 22.157544398008 0 +30 13862 22.193586163915 0 +30 13862 22.193586163915 0 +30 13877 22.193746163915 0 +30 13877 22.193746163915 0 +30 13903 22.243993624898 0 +30 13903 22.243993624898 0 +30 13918 22.244153624898 0 +30 13918 22.244153624898 0 +30 13949 22.414557050412 0 +30 13949 22.414557050412 0 +30 13956 22.414717050412 0 +30 13956 22.414717050412 0 +30 13990 22.424398905574 0 +30 13990 22.424398905574 0 +30 13997 22.424558905574 0 +30 13997 22.424558905574 0 +30 14022 22.431276162993 0 +30 14022 22.431276162993 0 +30 14030 22.431436162993 0 +30 14030 22.431436162993 0 +30 14068 22.45738439623 0 +30 14068 22.45738439623 0 +30 14079 22.45754439623 0 +30 14079 22.45754439623 0 +30 14103 22.493586164003 0 +30 14103 22.493586164003 0 +30 14118 22.493746164003 0 +30 14118 22.493746164003 0 +30 14144 22.543993631141 0 +30 14144 22.543993631141 0 +30 14159 22.544153631141 0 +30 14159 22.544153631141 0 +30 14190 22.714557066832 0 +30 14190 22.714557066832 0 +30 14197 22.714717066832 0 +30 14197 22.714717066832 0 +30 14231 22.724398905447 0 +30 14231 22.724398905447 0 +30 14238 22.724558905447 0 +30 14238 22.724558905447 0 +30 14263 22.731276162993 0 +30 14263 22.731276162993 0 +30 14271 22.731436162993 0 +30 14271 22.731436162993 0 +30 14309 22.757384394544 0 +30 14309 22.757384394544 0 +30 14320 22.757544394544 0 +30 14320 22.757544394544 0 +30 14344 22.793586164046 0 +30 14344 22.793586164046 0 +30 14359 22.793746164046 0 +30 14359 22.793746164046 0 +30 14385 22.843993638109 0 +30 14385 22.843993638109 0 +30 14400 22.844153638109 0 +30 14400 22.844153638109 0 +30 14431 23.014557083564 0 +30 14431 23.014557083564 0 +30 14438 23.014717083564 0 +30 14438 23.014717083564 0 +30 14472 23.024398905315 0 +30 14472 23.024398905315 0 +30 14479 23.024558905315 0 +30 14479 23.024558905315 0 +30 14504 23.031276162993 0 +30 14504 23.031276162993 0 +30 14512 23.031436162993 0 +30 14512 23.031436162993 0 +30 14550 23.057384392975 0 +30 14550 23.057384392975 0 +30 14561 23.057544392975 0 +30 14561 23.057544392975 0 +30 14585 23.093586164045 0 +30 14585 23.093586164045 0 +30 14600 23.093746164045 0 +30 14600 23.093746164045 0 +30 14626 23.143993645806 0 +30 14626 23.143993645806 0 +30 14641 23.144153645806 0 +30 14641 23.144153645806 0 +30 14672 23.314557100631 0 +30 14672 23.314557100631 0 +30 14679 23.314717100631 0 +30 14679 23.314717100631 0 +30 14713 23.324398905056 0 +30 14713 23.324398905056 0 +30 14720 23.324558905056 0 +30 14720 23.324558905056 0 +30 14745 23.331276162993 0 +30 14745 23.331276162993 0 +30 14753 23.331436162993 0 +30 14753 23.331436162993 0 +30 14791 23.357384391504 0 +30 14791 23.357384391504 0 +30 14802 23.357544391504 0 +30 14802 23.357544391504 0 +30 14826 23.393586164071 0 +30 14826 23.393586164071 0 +30 14841 23.393746164071 0 +30 14841 23.393746164071 0 +30 14867 23.443993653987 0 +30 14867 23.443993653987 0 +30 14882 23.444153653987 0 +30 14882 23.444153653987 0 +30 14913 23.614557118038 0 +30 14913 23.614557118038 0 +30 14920 23.614717118038 0 +30 14920 23.614717118038 0 +30 14954 23.624398904843 0 +30 14954 23.624398904843 0 +30 14961 23.624558904843 0 +30 14961 23.624558904843 0 +30 14986 23.631276162993 0 +30 14986 23.631276162993 0 +30 14994 23.631436162993 0 +30 14994 23.631436162993 0 +30 15032 23.657384390261 0 +30 15032 23.657384390261 0 +30 15043 23.657544390261 0 +30 15043 23.657544390261 0 +30 15067 23.693586164114 0 +30 15067 23.693586164114 0 +30 15082 23.693746164114 0 +30 15082 23.693746164114 0 +30 15108 23.743993657373 0 +30 15108 23.743993657373 0 +30 15123 23.744153657373 0 +30 15123 23.744153657373 0 +30 15154 23.914557135739 0 +30 15154 23.914557135739 0 +30 15161 23.914717135739 0 +30 15161 23.914717135739 0 +30 15195 23.924398904623 0 +30 15195 23.924398904623 0 +30 15202 23.924558904623 0 +30 15202 23.924558904623 0 +30 15227 23.931276162993 0 +30 15227 23.931276162993 0 +30 15235 23.931436162993 0 +30 15235 23.931436162993 0 +30 15273 23.957384389283 0 +30 15273 23.957384389283 0 +30 15284 23.957544389283 0 +30 15284 23.957544389283 0 +30 15308 23.993586164088 0 +30 15308 23.993586164088 0 +30 15323 23.993746164088 0 +30 15323 23.993746164088 0 +30 15349 24.043993663161 0 +30 15349 24.043993663161 0 +30 15364 24.044153663161 0 +30 15364 24.044153663161 0 +30 15395 24.214557153664 0 +30 15395 24.214557153664 0 +30 15402 24.214717153664 0 +30 15402 24.214717153664 0 +30 15436 24.224398904516 0 +30 15436 24.224398904516 0 +30 15443 24.224558904516 0 +30 15443 24.224558904516 0 +30 15468 24.231276162993 0 +30 15468 24.231276162993 0 +30 15476 24.231436162993 0 +30 15476 24.231436162993 0 +30 15515 24.257384388584 0 +30 15515 24.257384388584 0 +30 15530 24.257544388584 0 +30 15530 24.257544388584 0 +30 15549 24.293586163925 0 +30 15549 24.293586163925 0 +30 15564 24.293746163925 0 +30 15564 24.293746163925 0 +30 15590 24.343993674356 0 +30 15590 24.343993674356 0 +30 15605 24.344153674356 0 +30 15605 24.344153674356 0 +30 15636 24.51455717198 0 +30 15636 24.51455717198 0 +30 15643 24.51471717198 0 +30 15643 24.51471717198 0 +30 15677 24.52439890444 0 +30 15677 24.52439890444 0 +30 15684 24.52455890444 0 +30 15684 24.52455890444 0 +30 15709 24.531276162993 0 +30 15709 24.531276162993 0 +30 15717 24.531436162993 0 +30 15717 24.531436162993 0 +30 15756 24.557384388126 0 +30 15756 24.557384388126 0 +30 15771 24.557544388126 0 +30 15771 24.557544388126 0 +30 15790 24.59358616382 0 +30 15790 24.59358616382 0 +30 15805 24.59374616382 0 +30 15805 24.59374616382 0 +30 15831 24.643993686393 0 +30 15831 24.643993686393 0 +30 15846 24.644153686393 0 +30 15846 24.644153686393 0 +30 15877 24.814557190662 0 +30 15877 24.814557190662 0 +30 15884 24.814717190662 0 +30 15884 24.814717190662 0 +30 15918 24.824398904207 0 +30 15918 24.824398904207 0 +30 15925 24.824558904207 0 +30 15925 24.824558904207 0 +30 15950 24.831276162993 0 +30 15950 24.831276162993 0 +30 15958 24.831436162993 0 +30 15958 24.831436162993 0 +30 15997 24.857384387996 0 +30 15997 24.857384387996 0 +30 16012 24.857544387996 0 +30 16012 24.857544387996 0 +30 16031 24.893586163833 0 +30 16031 24.893586163833 0 +30 16046 24.893746163833 0 +30 16046 24.893746163833 0 +30 16072 24.943993699252 0 +30 16072 24.943993699252 0 +30 16087 24.944153699252 0 +30 16087 24.944153699252 0 +30 16118 25.114557209682 0 +30 16118 25.114557209682 0 +30 16125 25.114717209682 0 +30 16125 25.114717209682 0 +30 16159 25.124398903459 0 +30 16159 25.124398903459 0 +30 16166 25.124558903459 0 +30 16166 25.124558903459 0 +30 16191 25.131276162993 0 +30 16191 25.131276162993 0 +30 16199 25.131436162993 0 +30 16199 25.131436162993 0 +30 16238 25.15738438831 0 +30 16238 25.15738438831 0 +30 16253 25.15754438831 0 +30 16253 25.15754438831 0 +30 16272 25.19358616381 0 +30 16272 25.19358616381 0 +30 16287 25.19374616381 0 +30 16287 25.19374616381 0 +30 16313 25.243993712907 0 +30 16313 25.243993712907 0 +30 16328 25.244153712907 0 +30 16328 25.244153712907 0 +30 16359 25.414557228959 0 +30 16359 25.414557228959 0 +30 16366 25.414717228959 0 +30 16366 25.414717228959 0 +30 16400 25.424398902138 0 +30 16400 25.424398902138 0 +30 16407 25.424558902138 0 +30 16407 25.424558902138 0 +30 16432 25.431276162993 0 +30 16432 25.431276162993 0 +30 16440 25.431436162993 0 +30 16440 25.431436162993 0 +30 16479 25.457384389027 0 +30 16479 25.457384389027 0 +30 16494 25.457544389027 0 +30 16494 25.457544389027 0 +30 16513 25.493586163787 0 +30 16513 25.493586163787 0 +30 16528 25.493746163787 0 +30 16528 25.493746163787 0 +30 16554 25.543993727372 0 +30 16554 25.543993727372 0 +30 16569 25.544153727372 0 +30 16569 25.544153727372 0 +30 16601 25.714557248637 0 +30 16601 25.714557248637 0 +30 16612 25.714717248637 0 +30 16612 25.714717248637 0 +30 16641 25.724398900217 0 +30 16641 25.724398900217 0 +30 16648 25.724558900217 0 +30 16648 25.724558900217 0 +30 16673 25.731276162993 0 +30 16673 25.731276162993 0 +30 16681 25.731436162993 0 +30 16681 25.731436162993 0 +30 16720 25.757384390233 0 +30 16720 25.757384390233 0 +30 16735 25.757544390233 0 +30 16735 25.757544390233 0 +30 16754 25.793586163731 0 +30 16754 25.793586163731 0 +30 16769 25.793746163731 0 +30 16769 25.793746163731 0 +30 16795 25.843993742406 0 +30 16795 25.843993742406 0 +30 16810 25.844153742406 0 +30 16810 25.844153742406 0 +30 16842 26.014557267922 0 +30 16842 26.014557267922 0 +30 16853 26.014717267922 0 +30 16853 26.014717267922 0 +30 16882 26.024398899074 0 +30 16882 26.024398899074 0 +30 16889 26.024558899074 0 +30 16889 26.024558899074 0 +30 16914 26.031276162993 0 +30 16914 26.031276162993 0 +30 16922 26.031436162993 0 +30 16922 26.031436162993 0 +30 16961 26.057384392844 0 +30 16961 26.057384392844 0 +30 16976 26.057544392844 0 +30 16976 26.057544392844 0 +30 16995 26.093586162311 0 +30 16995 26.093586162311 0 +30 17010 26.093746162311 0 +30 17010 26.093746162311 0 +30 17036 26.1439937566 0 +30 17036 26.1439937566 0 +30 17051 26.1441537566 0 +30 17051 26.1441537566 0 +30 17083 26.314557286443 0 +30 17083 26.314557286443 0 +30 17094 26.314717286443 0 +30 17094 26.314717286443 0 +30 17123 26.324398899192 0 +30 17123 26.324398899192 0 +30 17130 26.324558899192 0 +30 17130 26.324558899192 0 +30 17155 26.331276162993 0 +30 17155 26.331276162993 0 +30 17163 26.331436162993 0 +30 17163 26.331436162993 0 +30 17202 26.357384397031 0 +30 17202 26.357384397031 0 +30 17217 26.357544397031 0 +30 17217 26.357544397031 0 +30 17236 26.39358615939 0 +30 17236 26.39358615939 0 +30 17251 26.39374615939 0 +30 17251 26.39374615939 0 +30 17277 26.443993769777 0 +30 17277 26.443993769777 0 +30 17292 26.444153769777 0 +30 17292 26.444153769777 0 +30 17324 26.614557304195 0 +30 17324 26.614557304195 0 +30 17335 26.614717304195 0 +30 17335 26.614717304195 0 +30 17364 26.624398900705 0 +30 17364 26.624398900705 0 +30 17371 26.624558900705 0 +30 17371 26.624558900705 0 +30 17396 26.631276162993 0 +30 17396 26.631276162993 0 +30 17404 26.631436162993 0 +30 17404 26.631436162993 0 +30 17443 26.657384402378 0 +30 17443 26.657384402378 0 +30 17458 26.657544402378 0 +30 17458 26.657544402378 0 +30 17477 26.693586155151 0 +30 17477 26.693586155151 0 +30 17492 26.693746155151 0 +30 17492 26.693746155151 0 +30 17518 26.743993781976 0 +30 17518 26.743993781976 0 +30 17533 26.744153781976 0 +30 17533 26.744153781976 0 +30 17565 26.914557321211 0 +30 17565 26.914557321211 0 +30 17576 26.914717321211 0 +30 17576 26.914717321211 0 +30 17605 26.924398903552 0 +30 17605 26.924398903552 0 +30 17612 26.924558903552 0 +30 17612 26.924558903552 0 +30 17637 26.931276162993 0 +30 17637 26.931276162993 0 +30 17645 26.931436162993 0 +30 17645 26.931436162993 0 +30 17684 26.957384408394 0 +30 17684 26.957384408394 0 +30 17699 26.957544408394 0 +30 17699 26.957544408394 0 +30 17718 26.993586149522 0 +30 17718 26.993586149522 0 +30 17733 26.993746149522 0 +30 17733 26.993746149522 0 +30 17759 27.0439937932 0 +30 17759 27.0439937932 0 +30 17774 27.0441537932 0 +30 17774 27.0441537932 0 +30 17806 27.214557337437 0 +30 17806 27.214557337437 0 +30 17817 27.214717337437 0 +30 17817 27.214717337437 0 +30 17842 27.224398907162 0 +30 17842 27.224398907162 0 +30 17849 27.224558907162 0 +30 17849 27.224558907162 0 +30 17870 27.231276162993 0 +30 17870 27.231276162993 0 +30 17878 27.231436162993 0 +30 17878 27.231436162993 0 +30 17917 27.257384414219 0 +30 17917 27.257384414219 0 +30 17932 27.257544414219 0 +30 17932 27.257544414219 0 +30 17951 27.293586142554 0 +30 17951 27.293586142554 0 +30 17966 27.293746142554 0 +30 17966 27.293746142554 0 +30 17992 27.343993803466 0 +30 17992 27.343993803466 0 +30 18007 27.344153803466 0 +30 18007 27.344153803466 0 +30 18039 27.514557353353 0 +30 18039 27.514557353353 0 +30 18050 27.514717353353 0 +30 18050 27.514717353353 0 +30 18075 27.524398910114 0 +30 18075 27.524398910114 0 +30 18082 27.524558910114 0 +30 18082 27.524558910114 0 +30 18103 27.531276162993 0 +30 18103 27.531276162993 0 +30 18111 27.531436162993 0 +30 18111 27.531436162993 0 +30 18150 27.557384419423 0 +30 18150 27.557384419423 0 +30 18165 27.557544419423 0 +30 18165 27.557544419423 0 +30 18184 27.593586134917 0 +30 18184 27.593586134917 0 +30 18199 27.593746134917 0 +30 18199 27.593746134917 0 +30 18225 27.643993814 0 +30 18225 27.643993814 0 +30 18240 27.644153814 0 +30 18240 27.644153814 0 +30 18272 27.814557366584 0 +30 18272 27.814557366584 0 +30 18283 27.814717366584 0 +30 18283 27.814717366584 0 +30 18308 27.824398911978 0 +30 18308 27.824398911978 0 +30 18315 27.824558911978 0 +30 18315 27.824558911978 0 +30 18336 27.831276162993 0 +30 18336 27.831276162993 0 +30 18344 27.831436162993 0 +30 18344 27.831436162993 0 +30 18383 27.857384421103 0 +30 18383 27.857384421103 0 +30 18398 27.857544421103 0 +30 18398 27.857544421103 0 +30 18417 27.893586127086 0 +30 18417 27.893586127086 0 +30 18432 27.893746127086 0 +30 18432 27.893746127086 0 +30 18458 27.943993821662 0 +30 18458 27.943993821662 0 +30 18473 27.944153821662 0 +30 18473 27.944153821662 0 +30 18505 28.114557372208 0 +30 18505 28.114557372208 0 +30 18516 28.114717372208 0 +30 18516 28.114717372208 0 +30 18541 28.124398921331 0 +30 18541 28.124398921331 0 +30 18548 28.124558921331 0 +30 18548 28.124558921331 0 +30 18569 28.131276162993 0 +30 18569 28.131276162993 0 +30 18577 28.131436162993 0 +30 18577 28.131436162993 0 +30 18616 28.157384422655 0 +30 18616 28.157384422655 0 +30 18631 28.157544422655 0 +30 18631 28.157544422655 0 +30 18650 28.193586110531 0 +30 18650 28.193586110531 0 +30 18665 28.193746110531 0 +30 18665 28.193746110531 0 +30 18691 28.243993818775 0 +30 18691 28.243993818775 0 +30 18706 28.244153818775 0 +30 18706 28.244153818775 0 +30 18738 28.414557379085 0 +30 18738 28.414557379085 0 +30 18749 28.414717379085 0 +30 18749 28.414717379085 0 +30 18774 28.424398936132 0 +30 18774 28.424398936132 0 +30 18781 28.424558936132 0 +30 18781 28.424558936132 0 +30 18802 28.431276162993 0 +30 18802 28.431276162993 0 +30 18810 28.431436162993 0 +30 18810 28.431436162993 0 +30 18849 28.457384430961 0 +30 18849 28.457384430961 0 +30 18864 28.457544430961 0 +30 18864 28.457544430961 0 +30 18883 28.493586087782 0 +30 18883 28.493586087782 0 +30 18898 28.493746087782 0 +30 18898 28.493746087782 0 +30 18924 28.543993814768 0 +30 18924 28.543993814768 0 +30 18939 28.544153814768 0 +30 18939 28.544153814768 0 +30 18971 28.714557386825 0 +30 18971 28.714557386825 0 +30 18982 28.714717386825 0 +30 18982 28.714717386825 0 +30 19007 28.724398950517 0 +30 19007 28.724398950517 0 +30 19014 28.724558950517 0 +30 19014 28.724558950517 0 +30 19035 28.731276162993 0 +30 19035 28.731276162993 0 +30 19043 28.731436162993 0 +30 19043 28.731436162993 0 +30 19082 28.757384440171 0 +30 19082 28.757384440171 0 +30 19097 28.757544440171 0 +30 19097 28.757544440171 0 +30 19115 28.793586063963 0 +30 19115 28.793586063963 0 +30 19126 28.793746063963 0 +30 19126 28.793746063963 0 +30 19157 28.843993810621 0 +30 19157 28.843993810621 0 +30 19172 28.844153810621 0 +30 19172 28.844153810621 0 +30 19204 29.014557394729 0 +30 19204 29.014557394729 0 +30 19215 29.014717394729 0 +30 19215 29.014717394729 0 +30 19240 29.024398956074 0 +30 19240 29.024398956074 0 +30 19247 29.024558956074 0 +30 19247 29.024558956074 0 +30 19268 29.031276162993 0 +30 19268 29.031276162993 0 +30 19276 29.031436162993 0 +30 19276 29.031436162993 0 +30 19340 29.093586039541 0 +30 19340 29.093586039541 0 +30 19351 29.093746039541 0 +30 19351 29.093746039541 0 +30 19382 29.143993806384 0 +30 19382 29.143993806384 0 +30 19397 29.144153806384 0 +30 19397 29.144153806384 0 +30 19430 29.314557402851 0 +30 19430 29.314557402851 0 +30 19445 29.314717402851 0 +30 19445 29.314717402851 0 +30 19465 29.324398958617 0 +30 19465 29.324398958617 0 +30 19472 29.324558958617 0 +30 19472 29.324558958617 0 +30 19493 29.331276162993 0 +30 19493 29.331276162993 0 +30 19501 29.331436162993 0 +30 19501 29.331436162993 0 +30 19565 29.393586014641 0 +30 19565 29.393586014641 0 +30 19576 29.393746014641 0 +30 19576 29.393746014641 0 +30 19607 29.443993802196 0 +30 19607 29.443993802196 0 +30 19622 29.444153802196 0 +30 19622 29.444153802196 0 +30 19655 29.614557411175 0 +30 19655 29.614557411175 0 +30 19670 29.614717411175 0 +30 19670 29.614717411175 0 +30 19690 29.624398960906 0 +30 19690 29.624398960906 0 +30 19697 29.624558960906 0 +30 19697 29.624558960906 0 +30 19718 29.631276162993 0 +30 19718 29.631276162993 0 +30 19726 29.631436162993 0 +30 19726 29.631436162993 0 +30 19790 29.6935859893 0 +30 19790 29.6935859893 0 +30 19801 29.6937459893 0 +30 19801 29.6937459893 0 +30 19832 29.74399379804 0 +30 19832 29.74399379804 0 +30 19847 29.74415379804 0 +30 19847 29.74415379804 0 +30 19880 29.914557419712 0 +30 19880 29.914557419712 0 +30 19895 29.914717419712 0 +30 19895 29.914717419712 0 +30 19915 29.924398963158 0 +30 19915 29.924398963158 0 +30 19922 29.924558963158 0 +30 19922 29.924558963158 0 +30 19943 29.931276162993 0 +30 19943 29.931276162993 0 +30 19951 29.931436162993 0 +30 19951 29.931436162993 0 +30 20015 29.993585963286 0 +30 20015 29.993585963286 0 +30 20026 29.993745963286 0 +30 20026 29.993745963286 0 +30 20057 30.04399379379 0 +30 20057 30.04399379379 0 +30 20072 30.04415379379 0 +30 20072 30.04415379379 0 +30 20105 30.214557428417 0 +30 20105 30.214557428417 0 +30 20120 30.214717428417 0 +30 20120 30.214717428417 0 +30 20140 30.224398965468 0 +30 20140 30.224398965468 0 +30 20147 30.224558965468 0 +30 20147 30.224558965468 0 +30 20168 30.231276162993 0 +30 20168 30.231276162993 0 +30 20176 30.231436162993 0 +30 20176 30.231436162993 0 +30 20240 30.293585936581 0 +30 20240 30.293585936581 0 +30 20251 30.293745936581 0 +30 20251 30.293745936581 0 +30 20282 30.343993789518 0 +30 20282 30.343993789518 0 +30 20297 30.344153789518 0 +30 20297 30.344153789518 0 +30 20331 30.514557437361 0 +30 20331 30.514557437361 0 +30 20350 30.514717437361 0 +30 20350 30.514717437361 0 +30 20365 30.524398967804 0 +30 20365 30.524398967804 0 +30 20372 30.524558967804 0 +30 20372 30.524558967804 0 +30 20393 30.531276162993 0 +30 20393 30.531276162993 0 +30 20401 30.531436162993 0 +30 20401 30.531436162993 0 +30 20465 30.59358590925 0 +30 20465 30.59358590925 0 +30 20476 30.59374590925 0 +30 20476 30.59374590925 0 +30 20507 30.643993785288 0 +30 20507 30.643993785288 0 +30 20522 30.644153785288 0 +30 20522 30.644153785288 0 +30 20555 30.814557446582 0 +30 20555 30.814557446582 0 +30 20570 30.814717446582 0 +30 20570 30.814717446582 0 +30 20590 30.824398970242 0 +30 20590 30.824398970242 0 +30 20597 30.824558970242 0 +30 20597 30.824558970242 0 +30 20618 30.831276162993 0 +30 20618 30.831276162993 0 +30 20626 30.831436162993 0 +30 20626 30.831436162993 0 +30 20690 30.89358588135 0 +30 20690 30.89358588135 0 +30 20701 30.89374588135 0 +30 20701 30.89374588135 0 +30 20732 30.94399378118 0 +30 20732 30.94399378118 0 +30 20747 30.94415378118 0 +30 20747 30.94415378118 0 +30 20780 31.114557456231 0 +30 20780 31.114557456231 0 +30 20795 31.114717456231 0 +30 20795 31.114717456231 0 +30 20815 31.124398972755 0 +30 20815 31.124398972755 0 +30 20822 31.124558972755 0 +30 20822 31.124558972755 0 +30 20847 31.131276162993 0 +30 20847 31.131276162993 0 +30 20855 31.131436162993 0 +30 20855 31.131436162993 0 +30 20918 31.193585853113 0 +30 20918 31.193585853113 0 +30 20925 31.193745853113 0 +30 20925 31.193745853113 0 +30 20965 31.243993777587 0 +30 20965 31.243993777587 0 +30 20980 31.244153777587 0 +30 20980 31.244153777587 0 +30 21013 31.414557466338 0 +30 21013 31.414557466338 0 +30 21028 31.414717466338 0 +30 21028 31.414717466338 0 +30 21048 31.424398975275 0 +30 21048 31.424398975275 0 +30 21055 31.424558975275 0 +30 21055 31.424558975275 0 +30 21080 31.431276162993 0 +30 21080 31.431276162993 0 +30 21088 31.431436162993 0 +30 21088 31.431436162993 0 +30 21151 31.493585824854 0 +30 21151 31.493585824854 0 +30 21158 31.493745824854 0 +30 21158 31.493745824854 0 +30 21198 31.543993774618 0 +30 21198 31.543993774618 0 +30 21213 31.544153774618 0 +30 21213 31.544153774618 0 +30 21246 31.714557476938 0 +30 21246 31.714557476938 0 +30 21261 31.714717476938 0 +30 21261 31.714717476938 0 +30 21281 31.724398977789 0 +30 21281 31.724398977789 0 +30 21288 31.724558977789 0 +30 21288 31.724558977789 0 +30 21313 31.731276162993 0 +30 21313 31.731276162993 0 +30 21321 31.731436162993 0 +30 21321 31.731436162993 0 +30 21384 31.793585796622 0 +30 21384 31.793585796622 0 +30 21391 31.793745796622 0 +30 21391 31.793745796622 0 +30 21431 31.843993772319 0 +30 21431 31.843993772319 0 +30 21446 31.844153772319 0 +30 21446 31.844153772319 0 +30 21479 32.014557487942 0 +30 21479 32.014557487942 0 +30 21494 32.014717487942 0 +30 21494 32.014717487942 0 +30 21514 32.024398980316 0 +30 21514 32.024398980316 0 +30 21521 32.024558980316 0 +30 21521 32.024558980316 0 +30 21546 32.031276162993 0 +30 21546 32.031276162993 0 +30 21554 32.031436162993 0 +30 21554 32.031436162993 0 +30 21617 32.093585768404 0 +30 21617 32.093585768404 0 +30 21624 32.093745768404 0 +30 21624 32.093745768404 0 +30 21664 32.143993770659 0 +30 21664 32.143993770659 0 +30 21679 32.144153770659 0 +30 21679 32.144153770659 0 +30 21712 32.314557499402 0 +30 21712 32.314557499402 0 +30 21727 32.314717499402 0 +30 21727 32.314717499402 0 +30 21747 32.324398982748 0 +30 21747 32.324398982748 0 +30 21754 32.324558982748 0 +30 21754 32.324558982748 0 +30 21779 32.331276162993 0 +30 21779 32.331276162993 0 +30 21787 32.331436162993 0 +30 21787 32.331436162993 0 +30 21850 32.393585740167 0 +30 21850 32.393585740167 0 +30 21857 32.393745740167 0 +30 21857 32.393745740167 0 +30 21897 32.443993769753 0 +30 21897 32.443993769753 0 +30 21912 32.444153769753 0 +30 21912 32.444153769753 0 +30 21945 32.614557511219 0 +30 21945 32.614557511219 0 +30 21960 32.614717511219 0 +30 21960 32.614717511219 0 +30 21980 32.624398985247 0 +30 21980 32.624398985247 0 +30 21987 32.624558985247 0 +30 21987 32.624558985247 0 +30 22012 32.631276162993 0 +30 22012 32.631276162993 0 +30 22020 32.631436162993 0 +30 22020 32.631436162993 0 +30 22083 32.693585711913 0 +30 22083 32.693585711913 0 +30 22090 32.693745711913 0 +30 22090 32.693745711913 0 +30 22130 32.74399376948 0 +30 22130 32.74399376948 0 +30 22145 32.74415376948 0 +30 22145 32.74415376948 0 +30 22178 32.914557523456 0 +30 22178 32.914557523456 0 +30 22193 32.914717523456 0 +30 22193 32.914717523456 0 +30 22213 32.924398987742 0 +30 22213 32.924398987742 0 +30 22220 32.924558987742 0 +30 22220 32.924558987742 0 +30 22245 32.931276162993 0 +30 22245 32.931276162993 0 +30 22253 32.931436162993 0 +30 22253 32.931436162993 0 +30 22316 32.993585683676 0 +30 22316 32.993585683676 0 +30 22323 32.993745683676 0 +30 22323 32.993745683676 0 +30 22363 33.043993769896 0 +30 22363 33.043993769896 0 +30 22378 33.044153769896 0 +30 22378 33.044153769896 0 +30 22411 33.214557536006 0 +30 22411 33.214557536006 0 +30 22426 33.214717536006 0 +30 22426 33.214717536006 0 +30 22446 33.224398990236 0 +30 22446 33.224398990236 0 +30 22453 33.224558990236 0 +30 22453 33.224558990236 0 +30 22478 33.231276162993 0 +30 22478 33.231276162993 0 +30 22486 33.231436162993 0 +30 22486 33.231436162993 0 +30 22549 33.293585655474 0 +30 22549 33.293585655474 0 +30 22556 33.293745655474 0 +30 22556 33.293745655474 0 +30 22596 33.343993770985 0 +30 22596 33.343993770985 0 +30 22611 33.344153770985 0 +30 22611 33.344153770985 0 +30 22644 33.514557548915 0 +30 22644 33.514557548915 0 +30 22659 33.514717548915 0 +30 22659 33.514717548915 0 +30 22679 33.524398992733 0 +30 22679 33.524398992733 0 +30 22686 33.524558992733 0 +30 22686 33.524558992733 0 +30 22711 33.531276162993 0 +30 22711 33.531276162993 0 +30 22719 33.531436162993 0 +30 22719 33.531436162993 0 +30 22782 33.593585627277 0 +30 22782 33.593585627277 0 +30 22789 33.593745627277 0 +30 22789 33.593745627277 0 +30 22829 33.643993772782 0 +30 22829 33.643993772782 0 +30 22844 33.644153772782 0 +30 22844 33.644153772782 0 +30 22877 33.814557562144 0 +30 22877 33.814557562144 0 +30 22892 33.814717562144 0 +30 22892 33.814717562144 0 +30 22908 33.82439899523 0 +30 22908 33.82439899523 0 +30 22915 33.82455899523 0 +30 22915 33.82455899523 0 +30 22940 33.831276162993 0 +30 22940 33.831276162993 0 +30 22948 33.831436162993 0 +30 22948 33.831436162993 0 +30 23011 33.893585599183 0 +30 23011 33.893585599183 0 +30 23018 33.893745599183 0 +30 23018 33.893745599183 0 +30 23052 33.943993775237 0 +30 23052 33.943993775237 0 +30 23062 33.944153775237 0 +30 23062 33.944153775237 0 +30 23118 34.124398997755 0 +30 23118 34.124398997755 0 +30 23124 34.124558997755 0 +30 23124 34.124558997755 0 +30 23144 34.131276162993 0 +30 23144 34.131276162993 0 +30 23151 34.131436162993 0 +30 23151 34.131436162993 0 +30 23210 34.243993778327 0 +30 23210 34.243993778327 0 +30 23220 34.244153778327 0 +30 23220 34.244153778327 0 +30 23276 34.424399000269 0 +30 23276 34.424399000269 0 +30 23282 34.424559000269 0 +30 23282 34.424559000269 0 +30 23302 34.431276162993 0 +30 23302 34.431276162993 0 +30 23309 34.431436162993 0 +30 23309 34.431436162993 0 +30 23368 34.543993782072 0 +30 23368 34.543993782072 0 +30 23378 34.544153782072 0 +30 23378 34.544153782072 0 +30 23434 34.724399002779 0 +30 23434 34.724399002779 0 +30 23440 34.724559002779 0 +30 23440 34.724559002779 0 +30 23460 34.731276162993 0 +30 23460 34.731276162993 0 +30 23467 34.731436162993 0 +30 23467 34.731436162993 0 +30 23526 34.843993786489 0 +30 23526 34.843993786489 0 +30 23536 34.844153786489 0 +30 23536 34.844153786489 0 +30 23592 35.02439900524 0 +30 23592 35.02439900524 0 +30 23598 35.02455900524 0 +30 23598 35.02455900524 0 +30 23618 35.031276162993 0 +30 23618 35.031276162993 0 +30 23625 35.031436162993 0 +30 23625 35.031436162993 0 +30 23684 35.143993791503 0 +30 23684 35.143993791503 0 +30 23694 35.144153791503 0 +30 23694 35.144153791503 0 +30 23754 35.32439900778 0 +30 23754 35.32439900778 0 +30 23760 35.32455900778 0 +30 23760 35.32455900778 0 +30 23780 35.331276162993 0 +30 23780 35.331276162993 0 +30 23787 35.331436162993 0 +30 23787 35.331436162993 0 +30 23850 35.443993797136 0 +30 23850 35.443993797136 0 +30 23860 35.444153797136 0 +30 23860 35.444153797136 0 +30 23920 35.624399010314 0 +30 23920 35.624399010314 0 +30 23926 35.624559010314 0 +30 23926 35.624559010314 0 +30 23946 35.631276162993 0 +30 23946 35.631276162993 0 +30 23953 35.631436162993 0 +30 23953 35.631436162993 0 +30 24016 35.743993803331 0 +30 24016 35.743993803331 0 +30 24026 35.744153803331 0 +30 24026 35.744153803331 0 +30 24086 35.924399012824 0 +30 24086 35.924399012824 0 +30 24092 35.924559012824 0 +30 24092 35.924559012824 0 +30 24112 35.931276162993 0 +30 24112 35.931276162993 0 +30 24119 35.931436162993 0 +30 24119 35.931436162993 0 +30 24182 36.043993810134 0 +30 24182 36.043993810134 0 +30 24192 36.044153810134 0 +30 24192 36.044153810134 0 +30 24252 36.224399015304 0 +30 24252 36.224399015304 0 +30 24258 36.224559015304 0 +30 24258 36.224559015304 0 +30 24278 36.231276162993 0 +30 24278 36.231276162993 0 +30 24285 36.231436162993 0 +30 24285 36.231436162993 0 +30 24348 36.343993817527 0 +30 24348 36.343993817527 0 +30 24358 36.344153817527 0 +30 24358 36.344153817527 0 +30 24418 36.524399017802 0 +30 24418 36.524399017802 0 +30 24424 36.524559017802 0 +30 24424 36.524559017802 0 +30 24444 36.531276162993 0 +30 24444 36.531276162993 0 +30 24451 36.531436162993 0 +30 24451 36.531436162993 0 +30 24514 36.643993825454 0 +30 24514 36.643993825454 0 +30 24524 36.644153825454 0 +30 24524 36.644153825454 0 +30 24584 36.824399020283 0 +30 24584 36.824399020283 0 +30 24590 36.824559020283 0 +30 24590 36.824559020283 0 +30 24610 36.831276162993 0 +30 24610 36.831276162993 0 +30 24617 36.831436162993 0 +30 24617 36.831436162993 0 +30 24680 36.943993833942 0 +30 24680 36.943993833942 0 +30 24690 36.944153833942 0 +30 24690 36.944153833942 0 +30 24750 37.124399022747 0 +30 24750 37.124399022747 0 +30 24756 37.124559022747 0 +30 24756 37.124559022747 0 +30 24776 37.131276162993 0 +30 24776 37.131276162993 0 +30 24783 37.131436162993 0 +30 24783 37.131436162993 0 +30 24847 37.243993841675 0 +30 24847 37.243993841675 0 +30 24861 37.244153841675 0 +30 24861 37.244153841675 0 +30 24916 37.424399025229 0 +30 24916 37.424399025229 0 +30 24922 37.424559025229 0 +30 24922 37.424559025229 0 +30 24942 37.431276162993 0 +30 24942 37.431276162993 0 +30 24949 37.431436162993 0 +30 24949 37.431436162993 0 +30 25013 37.54399384071 0 +30 25013 37.54399384071 0 +30 25027 37.54415384071 0 +30 25027 37.54415384071 0 +30 25082 37.724399027708 0 +30 25082 37.724399027708 0 +30 25088 37.724559027708 0 +30 25088 37.724559027708 0 +30 25108 37.731276162993 0 +30 25108 37.731276162993 0 +30 25115 37.731436162993 0 +30 25115 37.731436162993 0 +30 25179 37.843993832964 0 +30 25179 37.843993832964 0 +30 25193 37.844153832964 0 +30 25193 37.844153832964 0 +30 25248 38.024399030169 0 +30 25248 38.024399030169 0 +30 25254 38.024559030169 0 +30 25254 38.024559030169 0 +30 25274 38.031276162993 0 +30 25274 38.031276162993 0 +30 25281 38.031436162993 0 +30 25281 38.031436162993 0 +30 25345 38.143993825758 0 +30 25345 38.143993825758 0 +30 25359 38.144153825758 0 +30 25359 38.144153825758 0 +30 25414 38.324399032643 0 +30 25414 38.324399032643 0 +30 25420 38.324559032643 0 +30 25420 38.324559032643 0 +30 25440 38.331276162993 0 +30 25440 38.331276162993 0 +30 25447 38.331436162993 0 +30 25447 38.331436162993 0 +30 25511 38.44399381973 0 +30 25511 38.44399381973 0 +30 25525 38.44415381973 0 +30 25525 38.44415381973 0 +30 25580 38.624399035134 0 +30 25580 38.624399035134 0 +30 25586 38.624559035134 0 +30 25586 38.624559035134 0 +30 25606 38.631276162993 0 +30 25606 38.631276162993 0 +30 25613 38.631436162993 0 +30 25613 38.631436162993 0 +30 25677 38.743993814907 0 +30 25677 38.743993814907 0 +30 25691 38.744153814907 0 +30 25691 38.744153814907 0 +30 25746 38.924399037653 0 +30 25746 38.924399037653 0 +30 25752 38.924559037653 0 +30 25752 38.924559037653 0 +30 25772 38.931276162993 0 +30 25772 38.931276162993 0 +30 25779 38.931436162993 0 +30 25779 38.931436162993 0 +30 25843 39.043993811322 0 +30 25843 39.043993811322 0 +30 25857 39.044153811322 0 +30 25857 39.044153811322 0 +30 25912 39.224399040102 0 +30 25912 39.224399040102 0 +30 25918 39.224559040102 0 +30 25918 39.224559040102 0 +30 25938 39.231276162993 0 +30 25938 39.231276162993 0 +30 25945 39.231436162993 0 +30 25945 39.231436162993 0 +30 26009 39.343993808998 0 +30 26009 39.343993808998 0 +30 26023 39.344153808998 0 +30 26023 39.344153808998 0 +30 26078 39.524399042597 0 +30 26078 39.524399042597 0 +30 26084 39.524559042597 0 +30 26084 39.524559042597 0 +30 26104 39.531276162993 0 +30 26104 39.531276162993 0 +30 26111 39.531436162993 0 +30 26111 39.531436162993 0 +30 26175 39.643993807943 0 +30 26175 39.643993807943 0 +30 26189 39.644153807943 0 +30 26189 39.644153807943 0 +30 26244 39.824399045083 0 +30 26244 39.824399045083 0 +30 26250 39.824559045083 0 +30 26250 39.824559045083 0 +30 26270 39.831276162993 0 +30 26270 39.831276162993 0 +30 26277 39.831436162993 0 +30 26277 39.831436162993 0 +30 26341 39.943993808167 0 +30 26341 39.943993808167 0 +30 26355 39.944153808167 0 +30 26355 39.944153808167 0 +30 26410 40.124399047608 0 +30 26410 40.124399047608 0 +30 26416 40.124559047608 0 +30 26416 40.124559047608 0 +30 26436 40.131276162993 0 +30 26436 40.131276162993 0 +30 26443 40.131436162993 0 +30 26443 40.131436162993 0 +30 26507 40.243993809672 0 +30 26507 40.243993809672 0 +30 26521 40.244153809672 0 +30 26521 40.244153809672 0 +30 26576 40.424399050085 0 +30 26576 40.424399050085 0 +30 26582 40.424559050085 0 +30 26582 40.424559050085 0 +30 26602 40.431276162993 0 +30 26602 40.431276162993 0 +30 26609 40.431436162993 0 +30 26609 40.431436162993 0 +30 26673 40.543993812444 0 +30 26673 40.543993812444 0 +30 26687 40.544153812444 0 +30 26687 40.544153812444 0 +30 26742 40.72439905259 0 +30 26742 40.72439905259 0 +30 26748 40.72455905259 0 +30 26748 40.72455905259 0 +30 26772 40.731276162993 0 +30 26772 40.731276162993 0 +30 26779 40.731436162993 0 +30 26779 40.731436162993 0 +30 26843 40.843993816458 0 +30 26843 40.843993816458 0 +30 26857 40.844153816458 0 +30 26857 40.844153816458 0 +30 26916 41.024399055027 0 +30 26916 41.024399055027 0 +30 26922 41.024559055027 0 +30 26922 41.024559055027 0 +30 26946 41.031276162993 0 +30 26946 41.031276162993 0 +30 26953 41.031436162993 0 +30 26953 41.031436162993 0 +30 27017 41.143993821716 0 +30 27017 41.143993821716 0 +30 27031 41.144153821716 0 +30 27031 41.144153821716 0 +30 27090 41.324399057542 0 +30 27090 41.324399057542 0 +30 27096 41.324559057542 0 +30 27096 41.324559057542 0 +30 27120 41.331276162993 0 +30 27120 41.331276162993 0 +30 27127 41.331436162993 0 +30 27127 41.331436162993 0 +30 27191 41.443993828168 0 +30 27191 41.443993828168 0 +30 27205 41.444153828168 0 +30 27205 41.444153828168 0 +30 27264 41.62439906007 0 +30 27264 41.62439906007 0 +30 27270 41.62455906007 0 +30 27270 41.62455906007 0 +30 27294 41.631276162993 0 +30 27294 41.631276162993 0 +30 27301 41.631436162993 0 +30 27301 41.631436162993 0 +30 27365 41.743993835789 0 +30 27365 41.743993835789 0 +30 27379 41.744153835789 0 +30 27379 41.744153835789 0 +30 27438 41.924399062611 0 +30 27438 41.924399062611 0 +30 27444 41.924559062611 0 +30 27444 41.924559062611 0 +30 27468 41.931276162993 0 +30 27468 41.931276162993 0 +30 27475 41.931436162993 0 +30 27475 41.931436162993 0 +30 27539 42.043993844221 0 +30 27539 42.043993844221 0 +30 27553 42.044153844221 0 +30 27553 42.044153844221 0 +30 27612 42.224399065158 0 +30 27612 42.224399065158 0 +30 27618 42.224559065158 0 +30 27618 42.224559065158 0 +30 27642 42.231276162993 0 +30 27642 42.231276162993 0 +30 27649 42.231436162993 0 +30 27649 42.231436162993 0 +30 27714 42.343993853216 0 +30 27714 42.343993853216 0 +30 27732 42.344153853216 0 +30 27732 42.344153853216 0 +30 27786 42.524399067719 0 +30 27786 42.524399067719 0 +30 27792 42.524559067719 0 +30 27792 42.524559067719 0 +30 27816 42.531276162993 0 +30 27816 42.531276162993 0 +30 27823 42.531436162993 0 +30 27823 42.531436162993 0 +30 27888 42.643993862563 0 +30 27888 42.643993862563 0 +30 27906 42.644153862563 0 +30 27906 42.644153862563 0 +30 27960 42.824399070171 0 +30 27960 42.824399070171 0 +30 27966 42.824559070171 0 +30 27966 42.824559070171 0 +30 27990 42.831276162993 0 +30 27990 42.831276162993 0 +30 27997 42.831436162993 0 +30 27997 42.831436162993 0 +30 28062 42.943993872107 0 +30 28062 42.943993872107 0 +30 28080 42.944153872107 0 +30 28080 42.944153872107 0 +30 28134 43.124399072679 0 +30 28134 43.124399072679 0 +30 28140 43.124559072679 0 +30 28140 43.124559072679 0 +30 28164 43.131276162993 0 +30 28164 43.131276162993 0 +30 28171 43.131436162993 0 +30 28171 43.131436162993 0 +30 28236 43.243993881734 0 +30 28236 43.243993881734 0 +30 28254 43.244153881734 0 +30 28254 43.244153881734 0 +30 28308 43.424399075168 0 +30 28308 43.424399075168 0 +30 28314 43.424559075168 0 +30 28314 43.424559075168 0 +30 28338 43.431276162993 0 +30 28338 43.431276162993 0 +30 28345 43.431436162993 0 +30 28345 43.431436162993 0 +30 28410 43.543993891273 0 +30 28410 43.543993891273 0 +30 28428 43.544153891273 0 +30 28428 43.544153891273 0 +30 28482 43.724399077694 0 +30 28482 43.724399077694 0 +30 28488 43.724559077694 0 +30 28488 43.724559077694 0 +30 28512 43.731276162993 0 +30 28512 43.731276162993 0 +30 28519 43.731436162993 0 +30 28519 43.731436162993 0 +30 28584 43.843993900664 0 +30 28584 43.843993900664 0 +30 28602 43.844153900664 0 +30 28602 43.844153900664 0 +30 28656 44.024399080215 0 +30 28656 44.024399080215 0 +30 28662 44.024559080215 0 +30 28662 44.024559080215 0 +30 28686 44.031276162993 0 +30 28686 44.031276162993 0 +30 28693 44.031436162993 0 +30 28693 44.031436162993 0 +30 28758 44.143993909788 0 +30 28758 44.143993909788 0 +30 28776 44.144153909788 0 +30 28776 44.144153909788 0 +30 28830 44.324399082695 0 +30 28830 44.324399082695 0 +30 28836 44.324559082695 0 +30 28836 44.324559082695 0 +30 28860 44.331276162993 0 +30 28860 44.331276162993 0 +30 28867 44.331436162993 0 +30 28867 44.331436162993 0 +30 28996 44.624399085153 0 +30 28996 44.624399085153 0 +30 29002 44.624559085153 0 +30 29002 44.624559085153 0 +30 29026 44.631276162993 0 +30 29026 44.631276162993 0 +30 29033 44.631436162993 0 +30 29033 44.631436162993 0 +30 29162 44.924399087671 0 +30 29162 44.924399087671 0 +30 29168 44.924559087671 0 +30 29168 44.924559087671 0 +30 29192 44.931276162993 0 +30 29192 44.931276162993 0 +30 29199 44.931436162993 0 +30 29199 44.931436162993 0 +30 29328 45.224399090114 0 +30 29328 45.224399090114 0 +30 29334 45.224559090114 0 +30 29334 45.224559090114 0 +30 29358 45.231276162993 0 +30 29358 45.231276162993 0 +30 29365 45.231436162993 0 +30 29365 45.231436162993 0 +30 29494 45.524399092613 0 +30 29494 45.524399092613 0 +30 29500 45.524559092613 0 +30 29500 45.524559092613 0 +30 29524 45.531276162993 0 +30 29524 45.531276162993 0 +30 29531 45.531436162993 0 +30 29531 45.531436162993 0 +30 29660 45.824399095152 0 +30 29660 45.824399095152 0 +30 29666 45.824559095152 0 +30 29666 45.824559095152 0 +30 29690 45.831276162993 0 +30 29690 45.831276162993 0 +30 29697 45.831436162993 0 +30 29697 45.831436162993 0 +30 29826 46.124399098204 0 +30 29826 46.124399098204 0 +30 29832 46.124559098204 0 +30 29832 46.124559098204 0 +30 29856 46.131276162993 0 +30 29856 46.131276162993 0 +30 29863 46.131436162993 0 +30 29863 46.131436162993 0 +30 29992 46.424399105752 0 +30 29992 46.424399105752 0 +30 29998 46.424559105752 0 +30 29998 46.424559105752 0 +30 30022 46.431276162993 0 +30 30022 46.431276162993 0 +30 30029 46.431436162993 0 +30 30029 46.431436162993 0 +30 30158 46.724399119111 0 +30 30158 46.724399119111 0 +30 30164 46.724559119111 0 +30 30164 46.724559119111 0 +30 30188 46.731276162993 0 +30 30188 46.731276162993 0 +30 30195 46.731436162993 0 +30 30195 46.731436162993 0 +30 30324 47.02439913369 0 +30 30324 47.02439913369 0 +30 30330 47.02455913369 0 +30 30330 47.02455913369 0 +30 30354 47.031276162993 0 +30 30354 47.031276162993 0 +30 30361 47.031436162993 0 +30 30361 47.031436162993 0 +30 30490 47.3243991485 0 +30 30490 47.3243991485 0 +30 30496 47.3245591485 0 +30 30496 47.3245591485 0 +30 30520 47.331276162993 0 +30 30520 47.331276162993 0 +30 30527 47.331436162993 0 +30 30527 47.331436162993 0 +30 30656 47.624399163475 0 +30 30656 47.624399163475 0 +30 30662 47.624559163475 0 +30 30662 47.624559163475 0 +30 30686 47.631276162993 0 +30 30686 47.631276162993 0 +30 30693 47.631436162993 0 +30 30693 47.631436162993 0 +30 30823 47.924399178648 0 +30 30823 47.924399178648 0 +30 30833 47.924559178648 0 +30 30833 47.924559178648 0 +30 30852 47.931276162993 0 +30 30852 47.931276162993 0 +30 30859 47.931436162993 0 +30 30859 47.931436162993 0 +30 30990 48.224399193917 0 +30 30990 48.224399193917 0 +30 31004 48.224559193917 0 +30 31004 48.224559193917 0 +30 31018 48.231276162993 0 +30 31018 48.231276162993 0 +30 31025 48.231436162993 0 +30 31025 48.231436162993 0 +30 31156 48.524399209372 0 +30 31156 48.524399209372 0 +30 31170 48.524559209372 0 +30 31170 48.524559209372 0 +30 31184 48.531276162993 0 +30 31184 48.531276162993 0 +30 31191 48.531436162993 0 +30 31191 48.531436162993 0 +30 31322 48.824399224983 0 +30 31322 48.824399224983 0 +30 31336 48.824559224983 0 +30 31336 48.824559224983 0 +30 31350 48.831276162993 0 +30 31350 48.831276162993 0 +30 31357 48.831436162993 0 +30 31357 48.831436162993 0 +30 31488 49.124399240703 0 +30 31488 49.124399240703 0 +30 31502 49.124559240703 0 +30 31502 49.124559240703 0 +30 31516 49.131276162993 0 +30 31516 49.131276162993 0 +30 31523 49.131436162993 0 +30 31523 49.131436162993 0 +30 31654 49.424399256502 0 +30 31654 49.424399256502 0 +30 31668 49.424559256502 0 +30 31668 49.424559256502 0 +30 31682 49.431276162993 0 +30 31682 49.431276162993 0 +30 31689 49.431436162993 0 +30 31689 49.431436162993 0 +30 31820 49.724399261494 0 +30 31820 49.724399261494 0 +30 31834 49.724559261494 0 +30 31834 49.724559261494 0 +30 31848 49.731276162993 0 +30 31848 49.731276162993 0 +30 31855 49.731436162993 0 +30 31855 49.731436162993 0 +30 31986 50.02439926103 0 +30 31986 50.02439926103 0 +30 32000 50.02455926103 0 +30 32000 50.02455926103 0 +30 32014 50.031276162993 0 +30 32014 50.031276162993 0 +30 32021 50.031436162993 0 +30 32021 50.031436162993 0 +30 32152 50.324399260569 0 +30 32152 50.324399260569 0 +30 32166 50.324559260569 0 +30 32166 50.324559260569 0 +30 32180 50.331276162993 0 +30 32180 50.331276162993 0 +30 32187 50.331436162993 0 +30 32187 50.331436162993 0 +30 32318 50.624399260125 0 +30 32318 50.624399260125 0 +30 32332 50.624559260125 0 +30 32332 50.624559260125 0 +30 32346 50.631276162993 0 +30 32346 50.631276162993 0 +30 32353 50.631436162993 0 +30 32353 50.631436162993 0 +30 32484 50.924399259692 0 +30 32484 50.924399259692 0 +30 32498 50.924559259692 0 +30 32498 50.924559259692 0 +30 32512 50.931276162993 0 +30 32512 50.931276162993 0 +30 32519 50.931436162993 0 +30 32519 50.931436162993 0 +30 32646 51.224399259255 0 +30 32646 51.224399259255 0 +30 32660 51.224559259255 0 +30 32660 51.224559259255 0 +30 32674 51.231276162993 0 +30 32674 51.231276162993 0 +30 32681 51.231436162993 0 +30 32681 51.231436162993 0 +30 32804 51.524399258837 0 +30 32804 51.524399258837 0 +30 32818 51.524559258837 0 +30 32818 51.524559258837 0 +30 32832 51.531276162993 0 +30 32832 51.531276162993 0 +30 32839 51.531436162993 0 +30 32839 51.531436162993 0 +30 32865 51.557384429561 0 +30 32865 51.557384429561 0 +30 32879 51.557544429561 0 +30 32879 51.557544429561 0 +30 32970 51.824399258432 0 +30 32970 51.824399258432 0 +30 32984 51.824559258432 0 +30 32984 51.824559258432 0 +30 32998 51.831276162993 0 +30 32998 51.831276162993 0 +30 33005 51.831436162993 0 +30 33005 51.831436162993 0 +30 33031 51.857384410523 0 +30 33031 51.857384410523 0 +30 33045 51.857544410523 0 +30 33045 51.857544410523 0 +30 33136 52.124399258035 0 +30 33136 52.124399258035 0 +30 33150 52.124559258035 0 +30 33150 52.124559258035 0 +30 33164 52.131276162993 0 +30 33164 52.131276162993 0 +30 33171 52.131436162993 0 +30 33171 52.131436162993 0 +30 33197 52.157384391469 0 +30 33197 52.157384391469 0 +30 33211 52.157544391469 0 +30 33211 52.157544391469 0 +30 33302 52.424399257631 0 +30 33302 52.424399257631 0 +30 33316 52.424559257631 0 +30 33316 52.424559257631 0 +30 33330 52.431276162993 0 +30 33330 52.431276162993 0 +30 33337 52.431436162993 0 +30 33337 52.431436162993 0 +30 33363 52.45738437236 0 +30 33363 52.45738437236 0 +30 33377 52.45754437236 0 +30 33377 52.45754437236 0 +30 33468 52.724399257249 0 +30 33468 52.724399257249 0 +30 33482 52.724559257249 0 +30 33482 52.724559257249 0 +30 33496 52.731276162993 0 +30 33496 52.731276162993 0 +30 33503 52.731436162993 0 +30 33503 52.731436162993 0 +30 33529 52.75738435334 0 +30 33529 52.75738435334 0 +30 33543 52.75754435334 0 +30 33543 52.75754435334 0 +30 33634 53.024399256872 0 +30 33634 53.024399256872 0 +30 33648 53.024559256872 0 +30 33648 53.024559256872 0 +30 33662 53.031276162993 0 +30 33662 53.031276162993 0 +30 33669 53.031436162993 0 +30 33669 53.031436162993 0 +30 33695 53.057384334363 0 +30 33695 53.057384334363 0 +30 33709 53.057544334363 0 +30 33709 53.057544334363 0 +30 33776 53.324399256501 0 +30 33776 53.324399256501 0 +30 33789 53.324559256501 0 +30 33789 53.324559256501 0 +30 33801 53.331276162993 0 +30 33801 53.331276162993 0 +30 33807 53.331436162993 0 +30 33807 53.331436162993 0 +30 33832 53.357384316044 0 +30 33832 53.357384316044 0 +30 33845 53.357544316044 0 +30 33845 53.357544316044 0 +30 33903 53.624399256146 0 +30 33903 53.624399256146 0 +30 33916 53.624559256146 0 +30 33916 53.624559256146 0 +30 33928 53.631276162993 0 +30 33928 53.631276162993 0 +30 33934 53.631436162993 0 +30 33934 53.631436162993 0 +30 33959 53.657384298598 0 +30 33959 53.657384298598 0 +30 33972 53.657544298598 0 +30 33972 53.657544298598 0 +30 34030 53.924399255807 0 +30 34030 53.924399255807 0 +30 34043 53.924559255807 0 +30 34043 53.924559255807 0 +30 34055 53.931276162993 0 +30 34055 53.931276162993 0 +30 34061 53.931436162993 0 +30 34061 53.931436162993 0 +30 34086 53.95738428203 0 +30 34086 53.95738428203 0 +30 34099 53.95754428203 0 +30 34099 53.95754428203 0 +30 34157 54.224399255474 0 +30 34157 54.224399255474 0 +30 34170 54.224559255474 0 +30 34170 54.224559255474 0 +30 34182 54.231276162993 0 +30 34182 54.231276162993 0 +30 34188 54.231436162993 0 +30 34188 54.231436162993 0 +30 34213 54.257384266324 0 +30 34213 54.257384266324 0 +30 34226 54.257544266324 0 +30 34226 54.257544266324 0 +30 34284 54.52439925514 0 +30 34284 54.52439925514 0 +30 34297 54.52455925514 0 +30 34297 54.52455925514 0 +30 34309 54.531276162993 0 +30 34309 54.531276162993 0 +30 34315 54.531436162993 0 +30 34315 54.531436162993 0 +30 34340 54.557384251324 0 +30 34340 54.557384251324 0 +30 34353 54.557544251324 0 +30 34353 54.557544251324 0 +30 34411 54.824399254865 0 +30 34411 54.824399254865 0 +30 34424 54.824559254865 0 +30 34424 54.824559254865 0 +30 34436 54.831276162993 0 +30 34436 54.831276162993 0 +30 34442 54.831436162993 0 +30 34442 54.831436162993 0 +30 34467 54.857384236279 0 +30 34467 54.857384236279 0 +30 34480 54.857544236279 0 +30 34480 54.857544236279 0 +30 34538 55.124399254758 0 +30 34538 55.124399254758 0 +30 34551 55.124559254758 0 +30 34551 55.124559254758 0 +30 34563 55.131276162993 0 +30 34563 55.131276162993 0 +30 34569 55.131436162993 0 +30 34569 55.131436162993 0 +30 34594 55.157384221704 0 +30 34594 55.157384221704 0 +30 34607 55.157544221704 0 +30 34607 55.157544221704 0 +30 34665 55.424399254821 0 +30 34665 55.424399254821 0 +30 34678 55.424559254821 0 +30 34678 55.424559254821 0 +30 34690 55.431276162993 0 +30 34690 55.431276162993 0 +30 34696 55.431436162993 0 +30 34696 55.431436162993 0 +30 34721 55.45738420776 0 +30 34721 55.45738420776 0 +30 34734 55.45754420776 0 +30 34734 55.45754420776 0 +30 34792 55.724399255052 0 +30 34792 55.724399255052 0 +30 34805 55.724559255052 0 +30 34805 55.724559255052 0 +30 34817 55.731276162993 0 +30 34817 55.731276162993 0 +30 34823 55.731436162993 0 +30 34823 55.731436162993 0 +30 34848 55.757384194465 0 +30 34848 55.757384194465 0 +30 34861 55.757544194465 0 +30 34861 55.757544194465 0 +30 34919 56.024399255468 0 +30 34919 56.024399255468 0 +30 34932 56.024559255468 0 +30 34932 56.024559255468 0 +30 34944 56.031276162993 0 +30 34944 56.031276162993 0 +30 34950 56.031436162993 0 +30 34950 56.031436162993 0 +30 34975 56.05738418177 0 +30 34975 56.05738418177 0 +30 34988 56.05754418177 0 +30 34988 56.05754418177 0 +30 35046 56.324399256088 0 +30 35046 56.324399256088 0 +30 35059 56.324559256088 0 +30 35059 56.324559256088 0 +30 35071 56.331276162993 0 +30 35071 56.331276162993 0 +30 35077 56.331436162993 0 +30 35077 56.331436162993 0 +30 35102 56.357384169733 0 +30 35102 56.357384169733 0 +30 35115 56.357544169733 0 +30 35115 56.357544169733 0 +30 35170 56.624399256836 0 +30 35170 56.624399256836 0 +30 35178 56.624559256836 0 +30 35178 56.624559256836 0 +30 35190 56.631276162993 0 +30 35190 56.631276162993 0 +30 35195 56.631436162993 0 +30 35195 56.631436162993 0 +30 35218 56.657384157873 0 +30 35218 56.657384157873 0 +30 35226 56.657544157873 0 +30 35226 56.657544157873 0 +30 35254 56.924399261596 0 +30 35254 56.924399261596 0 +30 35262 56.924559261596 0 +30 35262 56.924559261596 0 +30 35274 56.931276162993 0 +30 35274 56.931276162993 0 +30 35279 56.931436162993 0 +30 35279 56.931436162993 0 +30 35302 56.957384148777 0 +30 35302 56.957384148777 0 +30 35310 56.957544148777 0 +30 35310 56.957544148777 0 +30 35338 57.224399269866 0 +30 35338 57.224399269866 0 +30 35346 57.224559269866 0 +30 35346 57.224559269866 0 +30 35358 57.231276162993 0 +30 35358 57.231276162993 0 +30 35363 57.231436162993 0 +30 35363 57.231436162993 0 +30 35386 57.257384147466 0 +30 35386 57.257384147466 0 +30 35394 57.257544147466 0 +30 35394 57.257544147466 0 +30 35422 57.524399274423 0 +30 35422 57.524399274423 0 +30 35430 57.524559274423 0 +30 35430 57.524559274423 0 +30 35442 57.531276162993 0 +30 35442 57.531276162993 0 +30 35447 57.531436162993 0 +30 35447 57.531436162993 0 +30 35469 57.557384146735 0 +30 35469 57.557384146735 0 +30 35473 57.557544146735 0 +30 35473 57.557544146735 0 +30 35506 57.824399278835 0 +30 35506 57.824399278835 0 +30 35514 57.824559278835 0 +30 35514 57.824559278835 0 +30 35526 57.831276162993 0 +30 35526 57.831276162993 0 +30 35531 57.831436162993 0 +30 35531 57.831436162993 0 +30 35553 57.857384146402 0 +30 35553 57.857384146402 0 +30 35557 57.857544146402 0 +30 35557 57.857544146402 0 +30 35590 58.124399283976 0 +30 35590 58.124399283976 0 +30 35598 58.124559283976 0 +30 35598 58.124559283976 0 +30 35610 58.131276162993 0 +30 35610 58.131276162993 0 +30 35615 58.131436162993 0 +30 35615 58.131436162993 0 +30 35637 58.157384147163 0 +30 35637 58.157384147163 0 +30 35641 58.157544147163 0 +30 35641 58.157544147163 0 +30 35674 58.424399289901 0 +30 35674 58.424399289901 0 +30 35682 58.424559289901 0 +30 35682 58.424559289901 0 +30 35694 58.431276162993 0 +30 35694 58.431276162993 0 +30 35699 58.431436162993 0 +30 35699 58.431436162993 0 +30 35721 58.457384148999 0 +30 35721 58.457384148999 0 +30 35725 58.457544148999 0 +30 35725 58.457544148999 0 +30 35758 58.724399296596 0 +30 35758 58.724399296596 0 +30 35766 58.724559296596 0 +30 35766 58.724559296596 0 +30 35778 58.731276162993 0 +30 35778 58.731276162993 0 +30 35783 58.731436162993 0 +30 35783 58.731436162993 0 +30 35805 58.757384151953 0 +30 35805 58.757384151953 0 +30 35809 58.757544151953 0 +30 35809 58.757544151953 0 +30 35842 59.024399304148 0 +30 35842 59.024399304148 0 +30 35850 59.024559304148 0 +30 35850 59.024559304148 0 +30 35862 59.031276162993 0 +30 35862 59.031276162993 0 +30 35867 59.031436162993 0 +30 35867 59.031436162993 0 +30 35889 59.057384156076 0 +30 35889 59.057384156076 0 +30 35893 59.057544156076 0 +30 35893 59.057544156076 0 +30 35926 59.324399312582 0 +30 35926 59.324399312582 0 +30 35934 59.324559312582 0 +30 35934 59.324559312582 0 +30 35946 59.331276162993 0 +30 35946 59.331276162993 0 +30 35951 59.331436162993 0 +30 35951 59.331436162993 0 +30 35973 59.357384161385 0 +30 35973 59.357384161385 0 +30 35977 59.357544161385 0 +30 35977 59.357544161385 0 +30 36010 59.624399321918 0 +30 36010 59.624399321918 0 +30 36018 59.624559321918 0 +30 36018 59.624559321918 0 +30 36030 59.631276162993 0 +30 36030 59.631276162993 0 +30 36035 59.631436162993 0 +30 36035 59.631436162993 0 +30 36057 59.657384167848 0 +30 36057 59.657384167848 0 +30 36061 59.657544167848 0 +30 36061 59.657544167848 0 +30 36094 59.924399332192 0 +30 36094 59.924399332192 0 +30 36102 59.924559332192 0 +30 36102 59.924559332192 0 +30 36114 59.931276162993 0 +30 36114 59.931276162993 0 +30 36119 59.931436162993 0 +30 36119 59.931436162993 0 +30 36141 59.957384175485 0 +30 36141 59.957384175485 0 +30 36145 59.957544175485 0 +30 36145 59.957544175485 0 +30 36194 60.231276162993 0 +30 36194 60.231276162993 0 +30 36199 60.231436162993 0 +30 36199 60.231436162993 0 +30 36217 60.257384184183 0 +30 36217 60.257384184183 0 +30 36221 60.257544184183 0 +30 36221 60.257544184183 0 +30 36270 60.531276162993 0 +30 36270 60.531276162993 0 +30 36275 60.531436162993 0 +30 36275 60.531436162993 0 +30 36293 60.557384193582 0 +30 36293 60.557384193582 0 +30 36297 60.557544193582 0 +30 36297 60.557544193582 0 +30 36346 60.831276162993 0 +30 36346 60.831276162993 0 +30 36351 60.831436162993 0 +30 36351 60.831436162993 0 +30 36369 60.857384203546 0 +30 36369 60.857384203546 0 +30 36373 60.857544203546 0 +30 36373 60.857544203546 0 +30 36422 61.131276162993 0 +30 36422 61.131276162993 0 +30 36427 61.131436162993 0 +30 36427 61.131436162993 0 +30 36445 61.157384214046 0 +30 36445 61.157384214046 0 +30 36449 61.157544214046 0 +30 36449 61.157544214046 0 +30 36498 61.431276162993 0 +30 36498 61.431276162993 0 +30 36503 61.431436162993 0 +30 36503 61.431436162993 0 +30 36521 61.457384224953 0 +30 36521 61.457384224953 0 +30 36525 61.457544224953 0 +30 36525 61.457544224953 0 +30 36574 61.731276162993 0 +30 36574 61.731276162993 0 +30 36579 61.731436162993 0 +30 36579 61.731436162993 0 +30 36597 61.757384236307 0 +30 36597 61.757384236307 0 +30 36601 61.757544236307 0 +30 36601 61.757544236307 0 +30 36650 62.031276162993 0 +30 36650 62.031276162993 0 +30 36655 62.031436162993 0 +30 36655 62.031436162993 0 +30 36673 62.057384248207 0 +30 36673 62.057384248207 0 +30 36677 62.057544248207 0 +30 36677 62.057544248207 0 +30 36726 62.331276162993 0 +30 36726 62.331276162993 0 +30 36731 62.331436162993 0 +30 36731 62.331436162993 0 +30 36749 62.357384260662 0 +30 36749 62.357384260662 0 +30 36753 62.357544260662 0 +30 36753 62.357544260662 0 +30 36802 62.631276162993 0 +30 36802 62.631276162993 0 +30 36807 62.631436162993 0 +30 36807 62.631436162993 0 +30 36825 62.657384273497 0 +30 36825 62.657384273497 0 +30 36829 62.657544273497 0 +30 36829 62.657544273497 0 +30 36878 62.931276162993 0 +30 36878 62.931276162993 0 +30 36883 62.931436162993 0 +30 36883 62.931436162993 0 +30 36901 62.957384286646 0 +30 36901 62.957384286646 0 +30 36905 62.957544286646 0 +30 36905 62.957544286646 0 +31 124 3.1 0 +31 124 3.1 0 +31 142 3.21455740282 0 +31 142 3.21455740282 0 +31 150 3.21471740282 0 +31 150 3.21471740282 0 +31 166 3.257384424448 0 +31 166 3.257384424448 0 +31 174 3.257544424448 0 +31 174 3.257544424448 0 +31 202 3.514557399314 0 +31 202 3.514557399314 0 +31 210 3.514717399314 0 +31 210 3.514717399314 0 +31 223 3.531276162993 0 +31 223 3.531276162993 0 +31 228 3.531436162993 0 +31 228 3.531436162993 0 +31 250 3.557384424342 0 +31 250 3.557384424342 0 +31 258 3.557544424342 0 +31 258 3.557544424342 0 +31 286 3.81455739499 0 +31 286 3.81455739499 0 +31 294 3.81471739499 0 +31 294 3.81471739499 0 +31 307 3.831276162993 0 +31 307 3.831276162993 0 +31 312 3.831436162993 0 +31 312 3.831436162993 0 +31 334 3.857384424025 0 +31 334 3.857384424025 0 +31 342 3.857544424025 0 +31 342 3.857544424025 0 +31 371 4.11455739006 0 +31 371 4.11455739006 0 +31 380 4.11471739006 0 +31 380 4.11471739006 0 +31 394 4.131276162993 0 +31 394 4.131276162993 0 +31 400 4.131436162993 0 +31 400 4.131436162993 0 +31 427 4.157384423703 0 +31 427 4.157384423703 0 +31 436 4.157544423703 0 +31 436 4.157544423703 0 +31 468 4.414557384462 0 +31 468 4.414557384462 0 +31 477 4.414717384462 0 +31 477 4.414717384462 0 +31 491 4.431276162993 0 +31 491 4.431276162993 0 +31 497 4.431436162993 0 +31 497 4.431436162993 0 +31 524 4.457384423373 0 +31 524 4.457384423373 0 +31 533 4.457544423373 0 +31 533 4.457544423373 0 +31 554 4.54399363691 0 +31 554 4.54399363691 0 +31 559 4.54415363691 0 +31 559 4.54415363691 0 +31 587 4.714557378402 0 +31 587 4.714557378402 0 +31 596 4.714717378402 0 +31 596 4.714717378402 0 +31 610 4.731276162993 0 +31 610 4.731276162993 0 +31 616 4.731436162993 0 +31 616 4.731436162993 0 +31 643 4.757384423069 0 +31 643 4.757384423069 0 +31 652 4.757544423069 0 +31 652 4.757544423069 0 +31 673 4.843993636799 0 +31 673 4.843993636799 0 +31 678 4.844153636799 0 +31 678 4.844153636799 0 +31 706 5.014557371745 0 +31 706 5.014557371745 0 +31 715 5.014717371745 0 +31 715 5.014717371745 0 +31 729 5.031276162993 0 +31 729 5.031276162993 0 +31 735 5.031436162993 0 +31 735 5.031436162993 0 +31 762 5.057384422748 0 +31 762 5.057384422748 0 +31 771 5.057544422748 0 +31 771 5.057544422748 0 +31 794 5.143993636284 0 +31 794 5.143993636284 0 +31 804 5.144153636284 0 +31 804 5.144153636284 0 +31 834 5.31455736441 0 +31 834 5.31455736441 0 +31 844 5.31471736441 0 +31 844 5.31471736441 0 +31 859 5.331276162993 0 +31 859 5.331276162993 0 +31 866 5.331436162993 0 +31 866 5.331436162993 0 +31 894 5.357384422438 0 +31 894 5.357384422438 0 +31 904 5.357544422438 0 +31 904 5.357544422438 0 +31 928 5.443993635357 0 +31 928 5.443993635357 0 +31 938 5.444153635357 0 +31 938 5.444153635357 0 +31 968 5.614557356527 0 +31 968 5.614557356527 0 +31 978 5.614717356527 0 +31 978 5.614717356527 0 +31 993 5.631276162993 0 +31 993 5.631276162993 0 +31 1000 5.631436162993 0 +31 1000 5.631436162993 0 +31 1028 5.657384422133 0 +31 1028 5.657384422133 0 +31 1038 5.657544422133 0 +31 1038 5.657544422133 0 +31 1086 5.743993634123 0 +31 1086 5.743993634123 0 +31 1096 5.744153634123 0 +31 1096 5.744153634123 0 +31 1126 5.914557347995 0 +31 1126 5.914557347995 0 +31 1136 5.914717347995 0 +31 1136 5.914717347995 0 +31 1151 5.931276162993 0 +31 1151 5.931276162993 0 +31 1158 5.931436162993 0 +31 1158 5.931436162993 0 +31 1186 5.957384421828 0 +31 1186 5.957384421828 0 +31 1196 5.957544421828 0 +31 1196 5.957544421828 0 +31 1244 6.043993632613 0 +31 1244 6.043993632613 0 +31 1254 6.044153632613 0 +31 1254 6.044153632613 0 +31 1287 6.214557338841 0 +31 1287 6.214557338841 0 +31 1302 6.214717338841 0 +31 1302 6.214717338841 0 +31 1317 6.231276162993 0 +31 1317 6.231276162993 0 +31 1325 6.231436162993 0 +31 1325 6.231436162993 0 +31 1359 6.257384421526 0 +31 1359 6.257384421526 0 +31 1374 6.257544421526 0 +31 1374 6.257544421526 0 +31 1425 6.343993630796 0 +31 1425 6.343993630796 0 +31 1436 6.344153630796 0 +31 1436 6.344153630796 0 +31 1470 6.514557329163 0 +31 1470 6.514557329163 0 +31 1485 6.514717329163 0 +31 1485 6.514717329163 0 +31 1502 6.524398906174 0 +31 1502 6.524398906174 0 +31 1513 6.524558906174 0 +31 1513 6.524558906174 0 +31 1533 6.531276162993 0 +31 1533 6.531276162993 0 +31 1541 6.531436162993 0 +31 1541 6.531436162993 0 +31 1576 6.557384421227 0 +31 1576 6.557384421227 0 +31 1591 6.557544421227 0 +31 1591 6.557544421227 0 +31 1642 6.643993628669 0 +31 1642 6.643993628669 0 +31 1653 6.644153628669 0 +31 1653 6.644153628669 0 +31 1687 6.81455731881 0 +31 1687 6.81455731881 0 +31 1702 6.81471731881 0 +31 1702 6.81471731881 0 +31 1719 6.824398906154 0 +31 1719 6.824398906154 0 +31 1730 6.824558906154 0 +31 1730 6.824558906154 0 +31 1750 6.831276162993 0 +31 1750 6.831276162993 0 +31 1758 6.831436162993 0 +31 1758 6.831436162993 0 +31 1793 6.857384420921 0 +31 1793 6.857384420921 0 +31 1808 6.857544420921 0 +31 1808 6.857544420921 0 +31 1859 6.943993626289 0 +31 1859 6.943993626289 0 +31 1870 6.944153626289 0 +31 1870 6.944153626289 0 +31 1904 7.114557307827 0 +31 1904 7.114557307827 0 +31 1919 7.114717307827 0 +31 1919 7.114717307827 0 +31 1936 7.124398906151 0 +31 1936 7.124398906151 0 +31 1947 7.124558906151 0 +31 1947 7.124558906151 0 +31 1967 7.131276162993 0 +31 1967 7.131276162993 0 +31 1975 7.131436162993 0 +31 1975 7.131436162993 0 +31 2010 7.157384420615 0 +31 2010 7.157384420615 0 +31 2025 7.157544420615 0 +31 2025 7.157544420615 0 +31 2076 7.243993623629 0 +31 2076 7.243993623629 0 +31 2087 7.244153623629 0 +31 2087 7.244153623629 0 +31 2121 7.414557296389 0 +31 2121 7.414557296389 0 +31 2136 7.414717296389 0 +31 2136 7.414717296389 0 +31 2153 7.424398906139 0 +31 2153 7.424398906139 0 +31 2164 7.424558906139 0 +31 2164 7.424558906139 0 +31 2184 7.431276162993 0 +31 2184 7.431276162993 0 +31 2192 7.431436162993 0 +31 2192 7.431436162993 0 +31 2227 7.45738442031 0 +31 2227 7.45738442031 0 +31 2242 7.45754442031 0 +31 2242 7.45754442031 0 +31 2293 7.543993620729 0 +31 2293 7.543993620729 0 +31 2304 7.544153620729 0 +31 2304 7.544153620729 0 +31 2338 7.714557284487 0 +31 2338 7.714557284487 0 +31 2353 7.714717284487 0 +31 2353 7.714717284487 0 +31 2370 7.72439890614 0 +31 2370 7.72439890614 0 +31 2381 7.72455890614 0 +31 2381 7.72455890614 0 +31 2401 7.731276162993 0 +31 2401 7.731276162993 0 +31 2409 7.731436162993 0 +31 2409 7.731436162993 0 +31 2444 7.757384420012 0 +31 2444 7.757384420012 0 +31 2459 7.757544420012 0 +31 2459 7.757544420012 0 +31 2510 7.843993617626 0 +31 2510 7.843993617626 0 +31 2521 7.844153617626 0 +31 2521 7.844153617626 0 +31 2555 8.014557271989 0 +31 2555 8.014557271989 0 +31 2570 8.014717271989 0 +31 2570 8.014717271989 0 +31 2587 8.024398906138 0 +31 2587 8.024398906138 0 +31 2598 8.024558906138 0 +31 2598 8.024558906138 0 +31 2618 8.031276162993 0 +31 2618 8.031276162993 0 +31 2626 8.031436162993 0 +31 2626 8.031436162993 0 +31 2661 8.057384419724 0 +31 2661 8.057384419724 0 +31 2676 8.057544419724 0 +31 2676 8.057544419724 0 +31 2727 8.143993614294 0 +31 2727 8.143993614294 0 +31 2738 8.144153614294 0 +31 2738 8.144153614294 0 +31 2772 8.314557258778 0 +31 2772 8.314557258778 0 +31 2787 8.314717258778 0 +31 2787 8.314717258778 0 +31 2804 8.324398906149 0 +31 2804 8.324398906149 0 +31 2815 8.324558906149 0 +31 2815 8.324558906149 0 +31 2839 8.331276162993 0 +31 2839 8.331276162993 0 +31 2847 8.331436162993 0 +31 2847 8.331436162993 0 +31 2882 8.357384419443 0 +31 2882 8.357384419443 0 +31 2897 8.357544419443 0 +31 2897 8.357544419443 0 +31 2948 8.443993610746 0 +31 2948 8.443993610746 0 +31 2959 8.444153610746 0 +31 2959 8.444153610746 0 +31 2997 8.614557244982 0 +31 2997 8.614557244982 0 +31 3012 8.614717244982 0 +31 3012 8.614717244982 0 +31 3029 8.624398906137 0 +31 3029 8.624398906137 0 +31 3040 8.624558906137 0 +31 3040 8.624558906137 0 +31 3064 8.631276162993 0 +31 3064 8.631276162993 0 +31 3072 8.631436162993 0 +31 3072 8.631436162993 0 +31 3107 8.657384419152 0 +31 3107 8.657384419152 0 +31 3122 8.657544419152 0 +31 3122 8.657544419152 0 +31 3173 8.74399360708 0 +31 3173 8.74399360708 0 +31 3184 8.74415360708 0 +31 3184 8.74415360708 0 +31 3221 8.91455723058 0 +31 3221 8.91455723058 0 +31 3232 8.91471723058 0 +31 3232 8.91471723058 0 +31 3254 8.924398906106 0 +31 3254 8.924398906106 0 +31 3265 8.924558906106 0 +31 3265 8.924558906106 0 +31 3289 8.931276162993 0 +31 3289 8.931276162993 0 +31 3297 8.931436162993 0 +31 3297 8.931436162993 0 +31 3332 8.957384418855 0 +31 3332 8.957384418855 0 +31 3347 8.957544418855 0 +31 3347 8.957544418855 0 +31 3398 9.043993603305 0 +31 3398 9.043993603305 0 +31 3409 9.044153603305 0 +31 3409 9.044153603305 0 +31 3446 9.214557215656 0 +31 3446 9.214557215656 0 +31 3457 9.214717215656 0 +31 3457 9.214717215656 0 +31 3479 9.224398906123 0 +31 3479 9.224398906123 0 +31 3490 9.224558906123 0 +31 3490 9.224558906123 0 +31 3514 9.231276162993 0 +31 3514 9.231276162993 0 +31 3522 9.231436162993 0 +31 3522 9.231436162993 0 +31 3557 9.257384418583 0 +31 3557 9.257384418583 0 +31 3572 9.257544418583 0 +31 3572 9.257544418583 0 +31 3623 9.343993599436 0 +31 3623 9.343993599436 0 +31 3634 9.344153599436 0 +31 3634 9.344153599436 0 +31 3671 9.514557200231 0 +31 3671 9.514557200231 0 +31 3682 9.514717200231 0 +31 3682 9.514717200231 0 +31 3704 9.524398906117 0 +31 3704 9.524398906117 0 +31 3715 9.524558906117 0 +31 3715 9.524558906117 0 +31 3739 9.531276162993 0 +31 3739 9.531276162993 0 +31 3747 9.531436162993 0 +31 3747 9.531436162993 0 +31 3782 9.557384418309 0 +31 3782 9.557384418309 0 +31 3797 9.557544418309 0 +31 3797 9.557544418309 0 +31 3848 9.643993595572 0 +31 3848 9.643993595572 0 +31 3859 9.644153595572 0 +31 3859 9.644153595572 0 +31 3896 9.814557184553 0 +31 3896 9.814557184553 0 +31 3907 9.814717184553 0 +31 3907 9.814717184553 0 +31 3929 9.824398906116 0 +31 3929 9.824398906116 0 +31 3940 9.824558906116 0 +31 3940 9.824558906116 0 +31 3964 9.831276162993 0 +31 3964 9.831276162993 0 +31 3972 9.831436162993 0 +31 3972 9.831436162993 0 +31 4007 9.857384418037 0 +31 4007 9.857384418037 0 +31 4022 9.857544418037 0 +31 4022 9.857544418037 0 +31 4073 9.943993591684 0 +31 4073 9.943993591684 0 +31 4084 9.944153591684 0 +31 4084 9.944153591684 0 +31 4121 10.114557168884 0 +31 4121 10.114557168884 0 +31 4132 10.114717168884 0 +31 4132 10.114717168884 0 +31 4154 10.124398906115 0 +31 4154 10.124398906115 0 +31 4165 10.124558906115 0 +31 4165 10.124558906115 0 +31 4189 10.131276162993 0 +31 4189 10.131276162993 0 +31 4197 10.131436162993 0 +31 4197 10.131436162993 0 +31 4232 10.15738441777 0 +31 4232 10.15738441777 0 +31 4247 10.15754441777 0 +31 4247 10.15754441777 0 +31 4298 10.243993587823 0 +31 4298 10.243993587823 0 +31 4309 10.244153587823 0 +31 4309 10.244153587823 0 +31 4346 10.414557153241 0 +31 4346 10.414557153241 0 +31 4357 10.414717153241 0 +31 4357 10.414717153241 0 +31 4379 10.424398906104 0 +31 4379 10.424398906104 0 +31 4390 10.424558906104 0 +31 4390 10.424558906104 0 +31 4414 10.431276162993 0 +31 4414 10.431276162993 0 +31 4422 10.431436162993 0 +31 4422 10.431436162993 0 +31 4457 10.457384417494 0 +31 4457 10.457384417494 0 +31 4472 10.457544417494 0 +31 4472 10.457544417494 0 +31 4523 10.543993584071 0 +31 4523 10.543993584071 0 +31 4534 10.544153584071 0 +31 4534 10.544153584071 0 +31 4575 10.7145571376 0 +31 4575 10.7145571376 0 +31 4586 10.7147171376 0 +31 4586 10.7147171376 0 +31 4612 10.724398906116 0 +31 4612 10.724398906116 0 +31 4623 10.724558906116 0 +31 4623 10.724558906116 0 +31 4647 10.731276162993 0 +31 4647 10.731276162993 0 +31 4655 10.731436162993 0 +31 4655 10.731436162993 0 +31 4690 10.757384417221 0 +31 4690 10.757384417221 0 +31 4705 10.757544417221 0 +31 4705 10.757544417221 0 +31 4756 10.843993580594 0 +31 4756 10.843993580594 0 +31 4767 10.844153580594 0 +31 4767 10.844153580594 0 +31 4808 11.014557121962 0 +31 4808 11.014557121962 0 +31 4819 11.014717121962 0 +31 4819 11.014717121962 0 +31 4845 11.024398906108 0 +31 4845 11.024398906108 0 +31 4856 11.024558906108 0 +31 4856 11.024558906108 0 +31 4880 11.031276162993 0 +31 4880 11.031276162993 0 +31 4888 11.031436162993 0 +31 4888 11.031436162993 0 +31 4923 11.057384416961 0 +31 4923 11.057384416961 0 +31 4938 11.057544416961 0 +31 4938 11.057544416961 0 +31 4989 11.1439935782 0 +31 4989 11.1439935782 0 +31 5000 11.1441535782 0 +31 5000 11.1441535782 0 +31 5041 11.314557106356 0 +31 5041 11.314557106356 0 +31 5052 11.314717106356 0 +31 5052 11.314717106356 0 +31 5078 11.324398906123 0 +31 5078 11.324398906123 0 +31 5089 11.324558906123 0 +31 5089 11.324558906123 0 +31 5113 11.331276162993 0 +31 5113 11.331276162993 0 +31 5121 11.331436162993 0 +31 5121 11.331436162993 0 +31 5156 11.357384416695 0 +31 5156 11.357384416695 0 +31 5171 11.357544416695 0 +31 5171 11.357544416695 0 +31 5189 11.393586261354 0 +31 5189 11.393586261354 0 +31 5200 11.393746261354 0 +31 5200 11.393746261354 0 +31 5222 11.443993576825 0 +31 5222 11.443993576825 0 +31 5233 11.444153576825 0 +31 5233 11.444153576825 0 +31 5274 11.614557090743 0 +31 5274 11.614557090743 0 +31 5285 11.614717090743 0 +31 5285 11.614717090743 0 +31 5311 11.624398906133 0 +31 5311 11.624398906133 0 +31 5322 11.624558906133 0 +31 5322 11.624558906133 0 +31 5346 11.631276162993 0 +31 5346 11.631276162993 0 +31 5354 11.631436162993 0 +31 5354 11.631436162993 0 +31 5393 11.657384416441 0 +31 5393 11.657384416441 0 +31 5408 11.657544416441 0 +31 5408 11.657544416441 0 +31 5426 11.693586259603 0 +31 5426 11.693586259603 0 +31 5437 11.693746259603 0 +31 5437 11.693746259603 0 +31 5463 11.743993576355 0 +31 5463 11.743993576355 0 +31 5474 11.744153576355 0 +31 5474 11.744153576355 0 +31 5515 11.914557075093 0 +31 5515 11.914557075093 0 +31 5526 11.914717075093 0 +31 5526 11.914717075093 0 +31 5552 11.924398906131 0 +31 5552 11.924398906131 0 +31 5563 11.924558906131 0 +31 5563 11.924558906131 0 +31 5587 11.931276162993 0 +31 5587 11.931276162993 0 +31 5595 11.931436162993 0 +31 5595 11.931436162993 0 +31 5634 11.957384416181 0 +31 5634 11.957384416181 0 +31 5649 11.957544416181 0 +31 5649 11.957544416181 0 +31 5667 11.993586257957 0 +31 5667 11.993586257957 0 +31 5678 11.993746257957 0 +31 5678 11.993746257957 0 +31 5704 12.043993576682 0 +31 5704 12.043993576682 0 +31 5715 12.044153576682 0 +31 5715 12.044153576682 0 +31 5756 12.214557059446 0 +31 5756 12.214557059446 0 +31 5767 12.214717059446 0 +31 5767 12.214717059446 0 +31 5793 12.22439890615 0 +31 5793 12.22439890615 0 +31 5804 12.22455890615 0 +31 5804 12.22455890615 0 +31 5828 12.231276162993 0 +31 5828 12.231276162993 0 +31 5836 12.231436162993 0 +31 5836 12.231436162993 0 +31 5875 12.25738441593 0 +31 5875 12.25738441593 0 +31 5890 12.25754441593 0 +31 5890 12.25754441593 0 +31 5908 12.293586256438 0 +31 5908 12.293586256438 0 +31 5919 12.293746256438 0 +31 5919 12.293746256438 0 +31 5945 12.343993577342 0 +31 5945 12.343993577342 0 +31 5956 12.344153577342 0 +31 5956 12.344153577342 0 +31 5997 12.514557043815 0 +31 5997 12.514557043815 0 +31 6008 12.514717043815 0 +31 6008 12.514717043815 0 +31 6034 12.524398906142 0 +31 6034 12.524398906142 0 +31 6045 12.524558906142 0 +31 6045 12.524558906142 0 +31 6069 12.531276162993 0 +31 6069 12.531276162993 0 +31 6077 12.531436162993 0 +31 6077 12.531436162993 0 +31 6116 12.557384415683 0 +31 6116 12.557384415683 0 +31 6131 12.557544415683 0 +31 6131 12.557544415683 0 +31 6149 12.593586255105 0 +31 6149 12.593586255105 0 +31 6160 12.593746255105 0 +31 6160 12.593746255105 0 +31 6186 12.643993578007 0 +31 6186 12.643993578007 0 +31 6197 12.644153578007 0 +31 6197 12.644153578007 0 +31 6238 12.814557028193 0 +31 6238 12.814557028193 0 +31 6249 12.814717028193 0 +31 6249 12.814717028193 0 +31 6275 12.824398906145 0 +31 6275 12.824398906145 0 +31 6286 12.824558906145 0 +31 6286 12.824558906145 0 +31 6310 12.831276162993 0 +31 6310 12.831276162993 0 +31 6318 12.831436162993 0 +31 6318 12.831436162993 0 +31 6357 12.857384415431 0 +31 6357 12.857384415431 0 +31 6372 12.857544415431 0 +31 6372 12.857544415431 0 +31 6390 12.893586254045 0 +31 6390 12.893586254045 0 +31 6401 12.893746254045 0 +31 6401 12.893746254045 0 +31 6427 12.943993578695 0 +31 6427 12.943993578695 0 +31 6438 12.944153578695 0 +31 6438 12.944153578695 0 +31 6479 13.114557012525 0 +31 6479 13.114557012525 0 +31 6490 13.114717012525 0 +31 6490 13.114717012525 0 +31 6516 13.124398906128 0 +31 6516 13.124398906128 0 +31 6527 13.124558906128 0 +31 6527 13.124558906128 0 +31 6551 13.131276162993 0 +31 6551 13.131276162993 0 +31 6559 13.131436162993 0 +31 6559 13.131436162993 0 +31 6598 13.157384415176 0 +31 6598 13.157384415176 0 +31 6613 13.157544415176 0 +31 6613 13.157544415176 0 +31 6631 13.193586253273 0 +31 6631 13.193586253273 0 +31 6642 13.193746253273 0 +31 6642 13.193746253273 0 +31 6668 13.243993579376 0 +31 6668 13.243993579376 0 +31 6679 13.244153579376 0 +31 6679 13.244153579376 0 +31 6720 13.414556996915 0 +31 6720 13.414556996915 0 +31 6731 13.414716996915 0 +31 6731 13.414716996915 0 +31 6757 13.424398906138 0 +31 6757 13.424398906138 0 +31 6768 13.424558906138 0 +31 6768 13.424558906138 0 +31 6792 13.431276162993 0 +31 6792 13.431276162993 0 +31 6800 13.431436162993 0 +31 6800 13.431436162993 0 +31 6839 13.45738441494 0 +31 6839 13.45738441494 0 +31 6854 13.45754441494 0 +31 6854 13.45754441494 0 +31 6872 13.493586252758 0 +31 6872 13.493586252758 0 +31 6883 13.493746252758 0 +31 6883 13.493746252758 0 +31 6909 13.543993580057 0 +31 6909 13.543993580057 0 +31 6920 13.544153580057 0 +31 6920 13.544153580057 0 +31 6961 13.714556981296 0 +31 6961 13.714556981296 0 +31 6972 13.714716981296 0 +31 6972 13.714716981296 0 +31 6998 13.724398906143 0 +31 6998 13.724398906143 0 +31 7009 13.724558906143 0 +31 7009 13.724558906143 0 +31 7033 13.731276162993 0 +31 7033 13.731276162993 0 +31 7041 13.731436162993 0 +31 7041 13.731436162993 0 +31 7080 13.75738441469 0 +31 7080 13.75738441469 0 +31 7095 13.75754441469 0 +31 7095 13.75754441469 0 +31 7113 13.793586252521 0 +31 7113 13.793586252521 0 +31 7124 13.793746252521 0 +31 7124 13.793746252521 0 +31 7150 13.843993580742 0 +31 7150 13.843993580742 0 +31 7161 13.844153580742 0 +31 7161 13.844153580742 0 +31 7201 14.014556965625 0 +31 7201 14.014556965625 0 +31 7208 14.014716965625 0 +31 7208 14.014716965625 0 +31 7239 14.024398906136 0 +31 7239 14.024398906136 0 +31 7250 14.024558906136 0 +31 7250 14.024558906136 0 +31 7274 14.031276162993 0 +31 7274 14.031276162993 0 +31 7282 14.031436162993 0 +31 7282 14.031436162993 0 +31 7321 14.057384414442 0 +31 7321 14.057384414442 0 +31 7336 14.057544414442 0 +31 7336 14.057544414442 0 +31 7354 14.093586252556 0 +31 7354 14.093586252556 0 +31 7365 14.093746252556 0 +31 7365 14.093746252556 0 +31 7391 14.143993581436 0 +31 7391 14.143993581436 0 +31 7402 14.144153581436 0 +31 7402 14.144153581436 0 +31 7442 14.314556950015 0 +31 7442 14.314556950015 0 +31 7449 14.314716950015 0 +31 7449 14.314716950015 0 +31 7480 14.324398906149 0 +31 7480 14.324398906149 0 +31 7491 14.324558906149 0 +31 7491 14.324558906149 0 +31 7515 14.331276162993 0 +31 7515 14.331276162993 0 +31 7523 14.331436162993 0 +31 7523 14.331436162993 0 +31 7562 14.357384414212 0 +31 7562 14.357384414212 0 +31 7577 14.357544414212 0 +31 7577 14.357544414212 0 +31 7595 14.393586252856 0 +31 7595 14.393586252856 0 +31 7606 14.393746252856 0 +31 7606 14.393746252856 0 +31 7632 14.443993582121 0 +31 7632 14.443993582121 0 +31 7643 14.444153582121 0 +31 7643 14.444153582121 0 +31 7683 14.614556934427 0 +31 7683 14.614556934427 0 +31 7690 14.614716934427 0 +31 7690 14.614716934427 0 +31 7721 14.624398906139 0 +31 7721 14.624398906139 0 +31 7732 14.624558906139 0 +31 7732 14.624558906139 0 +31 7756 14.631276162993 0 +31 7756 14.631276162993 0 +31 7764 14.631436162993 0 +31 7764 14.631436162993 0 +31 7803 14.657384413973 0 +31 7803 14.657384413973 0 +31 7818 14.657544413973 0 +31 7818 14.657544413973 0 +31 7836 14.693586253132 0 +31 7836 14.693586253132 0 +31 7847 14.693746253132 0 +31 7847 14.693746253132 0 +31 7873 14.743993582821 0 +31 7873 14.743993582821 0 +31 7884 14.744153582821 0 +31 7884 14.744153582821 0 +31 7924 14.914556918856 0 +31 7924 14.914556918856 0 +31 7931 14.914716918856 0 +31 7931 14.914716918856 0 +31 7962 14.924398906135 0 +31 7962 14.924398906135 0 +31 7973 14.924558906135 0 +31 7973 14.924558906135 0 +31 7997 14.931276162993 0 +31 7997 14.931276162993 0 +31 8005 14.931436162993 0 +31 8005 14.931436162993 0 +31 8044 14.957384413742 0 +31 8044 14.957384413742 0 +31 8059 14.957544413742 0 +31 8059 14.957544413742 0 +31 8077 14.993586247233 0 +31 8077 14.993586247233 0 +31 8088 14.993746247233 0 +31 8088 14.993746247233 0 +31 8114 15.043993583523 0 +31 8114 15.043993583523 0 +31 8125 15.044153583523 0 +31 8125 15.044153583523 0 +31 8165 15.214556903292 0 +31 8165 15.214556903292 0 +31 8172 15.214716903292 0 +31 8172 15.214716903292 0 +31 8203 15.22439890612 0 +31 8203 15.22439890612 0 +31 8214 15.22455890612 0 +31 8214 15.22455890612 0 +31 8238 15.231276162993 0 +31 8238 15.231276162993 0 +31 8246 15.231436162993 0 +31 8246 15.231436162993 0 +31 8285 15.257384413499 0 +31 8285 15.257384413499 0 +31 8300 15.257544413499 0 +31 8300 15.257544413499 0 +31 8318 15.293586234372 0 +31 8318 15.293586234372 0 +31 8329 15.293746234372 0 +31 8329 15.293746234372 0 +31 8355 15.343993584234 0 +31 8355 15.343993584234 0 +31 8366 15.344153584234 0 +31 8366 15.344153584234 0 +31 8406 15.514556887741 0 +31 8406 15.514556887741 0 +31 8413 15.514716887741 0 +31 8413 15.514716887741 0 +31 8444 15.524398906129 0 +31 8444 15.524398906129 0 +31 8455 15.524558906129 0 +31 8455 15.524558906129 0 +31 8479 15.531276162993 0 +31 8479 15.531276162993 0 +31 8487 15.531436162993 0 +31 8487 15.531436162993 0 +31 8526 15.557384413279 0 +31 8526 15.557384413279 0 +31 8541 15.557544413279 0 +31 8541 15.557544413279 0 +31 8559 15.59358622109 0 +31 8559 15.59358622109 0 +31 8570 15.59374622109 0 +31 8570 15.59374622109 0 +31 8596 15.643993584927 0 +31 8596 15.643993584927 0 +31 8607 15.644153584927 0 +31 8607 15.644153584927 0 +31 8647 15.814556872317 0 +31 8647 15.814556872317 0 +31 8654 15.814716872317 0 +31 8654 15.814716872317 0 +31 8685 15.82439890615 0 +31 8685 15.82439890615 0 +31 8696 15.82455890615 0 +31 8696 15.82455890615 0 +31 8720 15.831276162993 0 +31 8720 15.831276162993 0 +31 8728 15.831436162993 0 +31 8728 15.831436162993 0 +31 8767 15.857384413074 0 +31 8767 15.857384413074 0 +31 8782 15.857544413074 0 +31 8782 15.857544413074 0 +31 8800 15.893586207767 0 +31 8800 15.893586207767 0 +31 8811 15.893746207767 0 +31 8811 15.893746207767 0 +31 8837 15.943993585623 0 +31 8837 15.943993585623 0 +31 8848 15.944153585623 0 +31 8848 15.944153585623 0 +31 8888 16.114556856962 0 +31 8888 16.114556856962 0 +31 8895 16.114716856962 0 +31 8895 16.114716856962 0 +31 8930 16.124398906134 0 +31 8930 16.124398906134 0 +31 8941 16.124558906134 0 +31 8941 16.124558906134 0 +31 8965 16.131276162993 0 +31 8965 16.131276162993 0 +31 8973 16.131436162993 0 +31 8973 16.131436162993 0 +31 9012 16.157384412841 0 +31 9012 16.157384412841 0 +31 9027 16.157544412841 0 +31 9027 16.157544412841 0 +31 9045 16.19358619447 0 +31 9045 16.19358619447 0 +31 9056 16.19374619447 0 +31 9056 16.19374619447 0 +31 9086 16.243993586344 0 +31 9086 16.243993586344 0 +31 9097 16.244153586344 0 +31 9097 16.244153586344 0 +31 9137 16.414556841879 0 +31 9137 16.414556841879 0 +31 9144 16.414716841879 0 +31 9144 16.414716841879 0 +31 9179 16.42439890611 0 +31 9179 16.42439890611 0 +31 9190 16.42455890611 0 +31 9190 16.42455890611 0 +31 9214 16.431276162993 0 +31 9214 16.431276162993 0 +31 9222 16.431436162993 0 +31 9222 16.431436162993 0 +31 9261 16.457384412619 0 +31 9261 16.457384412619 0 +31 9276 16.457544412619 0 +31 9276 16.457544412619 0 +31 9294 16.493586182941 0 +31 9294 16.493586182941 0 +31 9305 16.493746182941 0 +31 9305 16.493746182941 0 +31 9335 16.543993587061 0 +31 9335 16.543993587061 0 +31 9346 16.544153587061 0 +31 9346 16.544153587061 0 +31 9386 16.714556827831 0 +31 9386 16.714556827831 0 +31 9393 16.714716827831 0 +31 9393 16.714716827831 0 +31 9428 16.72439890611 0 +31 9428 16.72439890611 0 +31 9439 16.72455890611 0 +31 9439 16.72455890611 0 +31 9463 16.731276162993 0 +31 9463 16.731276162993 0 +31 9471 16.731436162993 0 +31 9471 16.731436162993 0 +31 9510 16.757384412406 0 +31 9510 16.757384412406 0 +31 9525 16.757544412406 0 +31 9525 16.757544412406 0 +31 9543 16.793586174099 0 +31 9543 16.793586174099 0 +31 9554 16.793746174099 0 +31 9554 16.793746174099 0 +31 9584 16.843993587769 0 +31 9584 16.843993587769 0 +31 9595 16.844153587769 0 +31 9595 16.844153587769 0 +31 9635 17.01455682019 0 +31 9635 17.01455682019 0 +31 9642 17.01471682019 0 +31 9642 17.01471682019 0 +31 9676 17.024398906114 0 +31 9676 17.024398906114 0 +31 9683 17.024558906114 0 +31 9683 17.024558906114 0 +31 9712 17.031276162993 0 +31 9712 17.031276162993 0 +31 9720 17.031436162993 0 +31 9720 17.031436162993 0 +31 9759 17.057384412189 0 +31 9759 17.057384412189 0 +31 9774 17.057544412189 0 +31 9774 17.057544412189 0 +31 9793 17.093586167963 0 +31 9793 17.093586167963 0 +31 9808 17.093746167963 0 +31 9808 17.093746167963 0 +31 9834 17.143993588488 0 +31 9834 17.143993588488 0 +31 9849 17.144153588488 0 +31 9849 17.144153588488 0 +31 9884 17.314556829071 0 +31 9884 17.314556829071 0 +31 9891 17.314716829071 0 +31 9891 17.314716829071 0 +31 9925 17.324398906121 0 +31 9925 17.324398906121 0 +31 9932 17.324558906121 0 +31 9932 17.324558906121 0 +31 9961 17.331276162993 0 +31 9961 17.331276162993 0 +31 9969 17.331436162993 0 +31 9969 17.331436162993 0 +31 10007 17.357384411975 0 +31 10007 17.357384411975 0 +31 10018 17.357544411975 0 +31 10018 17.357544411975 0 +31 10042 17.393586164536 0 +31 10042 17.393586164536 0 +31 10057 17.393746164536 0 +31 10057 17.393746164536 0 +31 10083 17.44399358921 0 +31 10083 17.44399358921 0 +31 10098 17.44415358921 0 +31 10098 17.44415358921 0 +31 10133 17.614556843292 0 +31 10133 17.614556843292 0 +31 10140 17.614716843292 0 +31 10140 17.614716843292 0 +31 10174 17.624398906125 0 +31 10174 17.624398906125 0 +31 10181 17.624558906125 0 +31 10181 17.624558906125 0 +31 10210 17.631276162993 0 +31 10210 17.631276162993 0 +31 10218 17.631436162993 0 +31 10218 17.631436162993 0 +31 10256 17.657384411748 0 +31 10256 17.657384411748 0 +31 10267 17.657544411748 0 +31 10267 17.657544411748 0 +31 10291 17.693586163751 0 +31 10291 17.693586163751 0 +31 10306 17.693746163751 0 +31 10306 17.693746163751 0 +31 10332 17.743993589932 0 +31 10332 17.743993589932 0 +31 10347 17.744153589932 0 +31 10347 17.744153589932 0 +31 10382 17.914556858379 0 +31 10382 17.914556858379 0 +31 10389 17.914716858379 0 +31 10389 17.914716858379 0 +31 10419 17.924398906139 0 +31 10419 17.924398906139 0 +31 10426 17.924558906139 0 +31 10426 17.924558906139 0 +31 10455 17.931276162993 0 +31 10455 17.931276162993 0 +31 10463 17.931436162993 0 +31 10463 17.931436162993 0 +31 10501 17.957384411544 0 +31 10501 17.957384411544 0 +31 10512 17.957544411544 0 +31 10512 17.957544411544 0 +31 10532 17.993586163742 0 +31 10532 17.993586163742 0 +31 10547 17.993746163742 0 +31 10547 17.993746163742 0 +31 10573 18.043993590647 0 +31 10573 18.043993590647 0 +31 10588 18.044153590647 0 +31 10588 18.044153590647 0 +31 10623 18.214556873732 0 +31 10623 18.214556873732 0 +31 10630 18.214716873732 0 +31 10630 18.214716873732 0 +31 10660 18.22439890616 0 +31 10660 18.22439890616 0 +31 10667 18.22455890616 0 +31 10667 18.22455890616 0 +31 10692 18.231276162993 0 +31 10692 18.231276162993 0 +31 10700 18.231436162993 0 +31 10700 18.231436162993 0 +31 10738 18.257384411348 0 +31 10738 18.257384411348 0 +31 10749 18.257544411348 0 +31 10749 18.257544411348 0 +31 10769 18.29358616373 0 +31 10769 18.29358616373 0 +31 10784 18.29374616373 0 +31 10784 18.29374616373 0 +31 10810 18.343993591375 0 +31 10810 18.343993591375 0 +31 10825 18.344153591375 0 +31 10825 18.344153591375 0 +31 10856 18.514556889096 0 +31 10856 18.514556889096 0 +31 10863 18.514716889096 0 +31 10863 18.514716889096 0 +31 10893 18.524398906161 0 +31 10893 18.524398906161 0 +31 10900 18.524558906161 0 +31 10900 18.524558906161 0 +31 10925 18.531276162993 0 +31 10925 18.531276162993 0 +31 10933 18.531436162993 0 +31 10933 18.531436162993 0 +31 10971 18.557384411139 0 +31 10971 18.557384411139 0 +31 10982 18.557544411139 0 +31 10982 18.557544411139 0 +31 11002 18.593586163725 0 +31 11002 18.593586163725 0 +31 11017 18.593746163725 0 +31 11017 18.593746163725 0 +31 11043 18.64399359211 0 +31 11043 18.64399359211 0 +31 11058 18.64415359211 0 +31 11058 18.64415359211 0 +31 11089 18.814556899317 0 +31 11089 18.814556899317 0 +31 11096 18.814716899317 0 +31 11096 18.814716899317 0 +31 11126 18.824398906157 0 +31 11126 18.824398906157 0 +31 11133 18.824558906157 0 +31 11133 18.824558906157 0 +31 11158 18.831276162993 0 +31 11158 18.831276162993 0 +31 11166 18.831436162993 0 +31 11166 18.831436162993 0 +31 11204 18.857384410943 0 +31 11204 18.857384410943 0 +31 11215 18.857544410943 0 +31 11215 18.857544410943 0 +31 11235 18.893586163718 0 +31 11235 18.893586163718 0 +31 11250 18.893746163718 0 +31 11250 18.893746163718 0 +31 11276 18.943993592844 0 +31 11276 18.943993592844 0 +31 11291 18.944153592844 0 +31 11291 18.944153592844 0 +31 11322 19.114556905927 0 +31 11322 19.114556905927 0 +31 11329 19.114716905927 0 +31 11329 19.114716905927 0 +31 11359 19.124398906156 0 +31 11359 19.124398906156 0 +31 11366 19.124558906156 0 +31 11366 19.124558906156 0 +31 11391 19.131276162993 0 +31 11391 19.131276162993 0 +31 11399 19.131436162993 0 +31 11399 19.131436162993 0 +31 11437 19.157384410755 0 +31 11437 19.157384410755 0 +31 11448 19.157544410755 0 +31 11448 19.157544410755 0 +31 11468 19.193586163706 0 +31 11468 19.193586163706 0 +31 11483 19.193746163706 0 +31 11483 19.193746163706 0 +31 11509 19.243993593591 0 +31 11509 19.243993593591 0 +31 11524 19.244153593591 0 +31 11524 19.244153593591 0 +31 11555 19.414556913869 0 +31 11555 19.414556913869 0 +31 11562 19.414716913869 0 +31 11562 19.414716913869 0 +31 11592 19.424398906135 0 +31 11592 19.424398906135 0 +31 11599 19.424558906135 0 +31 11599 19.424558906135 0 +31 11624 19.431276162993 0 +31 11624 19.431276162993 0 +31 11632 19.431436162993 0 +31 11632 19.431436162993 0 +31 11670 19.457384410552 0 +31 11670 19.457384410552 0 +31 11681 19.457544410552 0 +31 11681 19.457544410552 0 +31 11701 19.49358616371 0 +31 11701 19.49358616371 0 +31 11716 19.49374616371 0 +31 11716 19.49374616371 0 +31 11742 19.543993594392 0 +31 11742 19.543993594392 0 +31 11757 19.544153594392 0 +31 11757 19.544153594392 0 +31 11788 19.714556923553 0 +31 11788 19.714556923553 0 +31 11795 19.714716923553 0 +31 11795 19.714716923553 0 +31 11825 19.724398906093 0 +31 11825 19.724398906093 0 +31 11832 19.724558906093 0 +31 11832 19.724558906093 0 +31 11857 19.731276162993 0 +31 11857 19.731276162993 0 +31 11865 19.731436162993 0 +31 11865 19.731436162993 0 +31 11903 19.757384409991 0 +31 11903 19.757384409991 0 +31 11914 19.757544409991 0 +31 11914 19.757544409991 0 +31 11934 19.793586163688 0 +31 11934 19.793586163688 0 +31 11949 19.793746163688 0 +31 11949 19.793746163688 0 +31 11975 19.843993595698 0 +31 11975 19.843993595698 0 +31 11990 19.844153595698 0 +31 11990 19.844153595698 0 +31 12021 20.014556934723 0 +31 12021 20.014556934723 0 +31 12028 20.014716934723 0 +31 12028 20.014716934723 0 +31 12062 20.024398905916 0 +31 12062 20.024398905916 0 +31 12069 20.024558905916 0 +31 12069 20.024558905916 0 +31 12094 20.031276162993 0 +31 12094 20.031276162993 0 +31 12102 20.031436162993 0 +31 12102 20.031436162993 0 +31 12140 20.057384408842 0 +31 12140 20.057384408842 0 +31 12151 20.057544408842 0 +31 12151 20.057544408842 0 +31 12175 20.0935861637 0 +31 12175 20.0935861637 0 +31 12190 20.0937461637 0 +31 12190 20.0937461637 0 +31 12216 20.143993597547 0 +31 12216 20.143993597547 0 +31 12231 20.144153597547 0 +31 12231 20.144153597547 0 +31 12262 20.314556946995 0 +31 12262 20.314556946995 0 +31 12269 20.314716946995 0 +31 12269 20.314716946995 0 +31 12303 20.324398905745 0 +31 12303 20.324398905745 0 +31 12310 20.324558905745 0 +31 12310 20.324558905745 0 +31 12335 20.331276162993 0 +31 12335 20.331276162993 0 +31 12343 20.331436162993 0 +31 12343 20.331436162993 0 +31 12381 20.357384407512 0 +31 12381 20.357384407512 0 +31 12392 20.357544407512 0 +31 12392 20.357544407512 0 +31 12416 20.393586163659 0 +31 12416 20.393586163659 0 +31 12431 20.393746163659 0 +31 12431 20.393746163659 0 +31 12457 20.443993599834 0 +31 12457 20.443993599834 0 +31 12472 20.444153599834 0 +31 12472 20.444153599834 0 +31 12503 20.614556960156 0 +31 12503 20.614556960156 0 +31 12510 20.614716960156 0 +31 12510 20.614716960156 0 +31 12544 20.624398905622 0 +31 12544 20.624398905622 0 +31 12551 20.624558905622 0 +31 12551 20.624558905622 0 +31 12576 20.631276162993 0 +31 12576 20.631276162993 0 +31 12584 20.631436162993 0 +31 12584 20.631436162993 0 +31 12622 20.6573844061 0 +31 12622 20.6573844061 0 +31 12633 20.6575444061 0 +31 12633 20.6575444061 0 +31 12657 20.693586163661 0 +31 12657 20.693586163661 0 +31 12672 20.693746163661 0 +31 12672 20.693746163661 0 +31 12698 20.743993602682 0 +31 12698 20.743993602682 0 +31 12713 20.744153602682 0 +31 12713 20.744153602682 0 +31 12744 20.914556974042 0 +31 12744 20.914556974042 0 +31 12751 20.914716974042 0 +31 12751 20.914716974042 0 +31 12785 20.924398905643 0 +31 12785 20.924398905643 0 +31 12792 20.924558905643 0 +31 12792 20.924558905643 0 +31 12817 20.931276162993 0 +31 12817 20.931276162993 0 +31 12825 20.931436162993 0 +31 12825 20.931436162993 0 +31 12863 20.957384404581 0 +31 12863 20.957384404581 0 +31 12874 20.957544404581 0 +31 12874 20.957544404581 0 +31 12898 20.993586163701 0 +31 12898 20.993586163701 0 +31 12913 20.993746163701 0 +31 12913 20.993746163701 0 +31 12939 21.043993605975 0 +31 12939 21.043993605975 0 +31 12954 21.044153605975 0 +31 12954 21.044153605975 0 +31 12985 21.214556988437 0 +31 12985 21.214556988437 0 +31 12992 21.214716988437 0 +31 12992 21.214716988437 0 +31 13026 21.22439890572 0 +31 13026 21.22439890572 0 +31 13033 21.22455890572 0 +31 13033 21.22455890572 0 +31 13058 21.231276162993 0 +31 13058 21.231276162993 0 +31 13066 21.231436162993 0 +31 13066 21.231436162993 0 +31 13104 21.257384403056 0 +31 13104 21.257384403056 0 +31 13115 21.257544403056 0 +31 13115 21.257544403056 0 +31 13139 21.293586163789 0 +31 13139 21.293586163789 0 +31 13154 21.293746163789 0 +31 13154 21.293746163789 0 +31 13180 21.343993609822 0 +31 13180 21.343993609822 0 +31 13195 21.344153609822 0 +31 13195 21.344153609822 0 +31 13226 21.514557003324 0 +31 13226 21.514557003324 0 +31 13233 21.514717003324 0 +31 13233 21.514717003324 0 +31 13267 21.524398905746 0 +31 13267 21.524398905746 0 +31 13274 21.524558905746 0 +31 13274 21.524558905746 0 +31 13299 21.531276162993 0 +31 13299 21.531276162993 0 +31 13307 21.531436162993 0 +31 13307 21.531436162993 0 +31 13345 21.557384401467 0 +31 13345 21.557384401467 0 +31 13356 21.557544401467 0 +31 13356 21.557544401467 0 +31 13380 21.593586163828 0 +31 13380 21.593586163828 0 +31 13395 21.593746163828 0 +31 13395 21.593746163828 0 +31 13421 21.643993614218 0 +31 13421 21.643993614218 0 +31 13436 21.644153614218 0 +31 13436 21.644153614218 0 +31 13467 21.814557018645 0 +31 13467 21.814557018645 0 +31 13474 21.814717018645 0 +31 13474 21.814717018645 0 +31 13508 21.82439890573 0 +31 13508 21.82439890573 0 +31 13515 21.82455890573 0 +31 13515 21.82455890573 0 +31 13540 21.831276162993 0 +31 13540 21.831276162993 0 +31 13548 21.831436162993 0 +31 13548 21.831436162993 0 +31 13586 21.857384399784 0 +31 13586 21.857384399784 0 +31 13597 21.857544399784 0 +31 13597 21.857544399784 0 +31 13621 21.893586163871 0 +31 13621 21.893586163871 0 +31 13636 21.893746163871 0 +31 13636 21.893746163871 0 +31 13662 21.943993619248 0 +31 13662 21.943993619248 0 +31 13677 21.944153619248 0 +31 13677 21.944153619248 0 +31 13708 22.114557034351 0 +31 13708 22.114557034351 0 +31 13715 22.114717034351 0 +31 13715 22.114717034351 0 +31 13749 22.124398905663 0 +31 13749 22.124398905663 0 +31 13756 22.124558905663 0 +31 13756 22.124558905663 0 +31 13781 22.131276162993 0 +31 13781 22.131276162993 0 +31 13789 22.131436162993 0 +31 13789 22.131436162993 0 +31 13827 22.157384398008 0 +31 13827 22.157384398008 0 +31 13838 22.157544398008 0 +31 13838 22.157544398008 0 +31 13862 22.193586163915 0 +31 13862 22.193586163915 0 +31 13877 22.193746163915 0 +31 13877 22.193746163915 0 +31 13903 22.243993624898 0 +31 13903 22.243993624898 0 +31 13918 22.244153624898 0 +31 13918 22.244153624898 0 +31 13949 22.414557050412 0 +31 13949 22.414557050412 0 +31 13956 22.414717050412 0 +31 13956 22.414717050412 0 +31 13990 22.424398905574 0 +31 13990 22.424398905574 0 +31 13997 22.424558905574 0 +31 13997 22.424558905574 0 +31 14022 22.431276162993 0 +31 14022 22.431276162993 0 +31 14030 22.431436162993 0 +31 14030 22.431436162993 0 +31 14068 22.45738439623 0 +31 14068 22.45738439623 0 +31 14079 22.45754439623 0 +31 14079 22.45754439623 0 +31 14103 22.493586164003 0 +31 14103 22.493586164003 0 +31 14118 22.493746164003 0 +31 14118 22.493746164003 0 +31 14144 22.543993631141 0 +31 14144 22.543993631141 0 +31 14159 22.544153631141 0 +31 14159 22.544153631141 0 +31 14190 22.714557066832 0 +31 14190 22.714557066832 0 +31 14197 22.714717066832 0 +31 14197 22.714717066832 0 +31 14231 22.724398905447 0 +31 14231 22.724398905447 0 +31 14238 22.724558905447 0 +31 14238 22.724558905447 0 +31 14263 22.731276162993 0 +31 14263 22.731276162993 0 +31 14271 22.731436162993 0 +31 14271 22.731436162993 0 +31 14309 22.757384394544 0 +31 14309 22.757384394544 0 +31 14320 22.757544394544 0 +31 14320 22.757544394544 0 +31 14344 22.793586164046 0 +31 14344 22.793586164046 0 +31 14359 22.793746164046 0 +31 14359 22.793746164046 0 +31 14385 22.843993638109 0 +31 14385 22.843993638109 0 +31 14400 22.844153638109 0 +31 14400 22.844153638109 0 +31 14431 23.014557083564 0 +31 14431 23.014557083564 0 +31 14438 23.014717083564 0 +31 14438 23.014717083564 0 +31 14472 23.024398905315 0 +31 14472 23.024398905315 0 +31 14479 23.024558905315 0 +31 14479 23.024558905315 0 +31 14504 23.031276162993 0 +31 14504 23.031276162993 0 +31 14512 23.031436162993 0 +31 14512 23.031436162993 0 +31 14550 23.057384392975 0 +31 14550 23.057384392975 0 +31 14561 23.057544392975 0 +31 14561 23.057544392975 0 +31 14585 23.093586164045 0 +31 14585 23.093586164045 0 +31 14600 23.093746164045 0 +31 14600 23.093746164045 0 +31 14626 23.143993645806 0 +31 14626 23.143993645806 0 +31 14641 23.144153645806 0 +31 14641 23.144153645806 0 +31 14672 23.314557100631 0 +31 14672 23.314557100631 0 +31 14679 23.314717100631 0 +31 14679 23.314717100631 0 +31 14713 23.324398905056 0 +31 14713 23.324398905056 0 +31 14720 23.324558905056 0 +31 14720 23.324558905056 0 +31 14745 23.331276162993 0 +31 14745 23.331276162993 0 +31 14753 23.331436162993 0 +31 14753 23.331436162993 0 +31 14791 23.357384391504 0 +31 14791 23.357384391504 0 +31 14802 23.357544391504 0 +31 14802 23.357544391504 0 +31 14826 23.393586164071 0 +31 14826 23.393586164071 0 +31 14841 23.393746164071 0 +31 14841 23.393746164071 0 +31 14867 23.443993653987 0 +31 14867 23.443993653987 0 +31 14882 23.444153653987 0 +31 14882 23.444153653987 0 +31 14913 23.614557118038 0 +31 14913 23.614557118038 0 +31 14920 23.614717118038 0 +31 14920 23.614717118038 0 +31 14954 23.624398904843 0 +31 14954 23.624398904843 0 +31 14961 23.624558904843 0 +31 14961 23.624558904843 0 +31 14986 23.631276162993 0 +31 14986 23.631276162993 0 +31 14994 23.631436162993 0 +31 14994 23.631436162993 0 +31 15032 23.657384390261 0 +31 15032 23.657384390261 0 +31 15043 23.657544390261 0 +31 15043 23.657544390261 0 +31 15067 23.693586164114 0 +31 15067 23.693586164114 0 +31 15082 23.693746164114 0 +31 15082 23.693746164114 0 +31 15108 23.743993657373 0 +31 15108 23.743993657373 0 +31 15123 23.744153657373 0 +31 15123 23.744153657373 0 +31 15154 23.914557135739 0 +31 15154 23.914557135739 0 +31 15161 23.914717135739 0 +31 15161 23.914717135739 0 +31 15195 23.924398904623 0 +31 15195 23.924398904623 0 +31 15202 23.924558904623 0 +31 15202 23.924558904623 0 +31 15227 23.931276162993 0 +31 15227 23.931276162993 0 +31 15235 23.931436162993 0 +31 15235 23.931436162993 0 +31 15273 23.957384389283 0 +31 15273 23.957384389283 0 +31 15284 23.957544389283 0 +31 15284 23.957544389283 0 +31 15308 23.993586164088 0 +31 15308 23.993586164088 0 +31 15323 23.993746164088 0 +31 15323 23.993746164088 0 +31 15349 24.043993663161 0 +31 15349 24.043993663161 0 +31 15364 24.044153663161 0 +31 15364 24.044153663161 0 +31 15395 24.214557153664 0 +31 15395 24.214557153664 0 +31 15402 24.214717153664 0 +31 15402 24.214717153664 0 +31 15436 24.224398904516 0 +31 15436 24.224398904516 0 +31 15443 24.224558904516 0 +31 15443 24.224558904516 0 +31 15468 24.231276162993 0 +31 15468 24.231276162993 0 +31 15476 24.231436162993 0 +31 15476 24.231436162993 0 +31 15515 24.257384388584 0 +31 15515 24.257384388584 0 +31 15530 24.257544388584 0 +31 15530 24.257544388584 0 +31 15549 24.293586163925 0 +31 15549 24.293586163925 0 +31 15564 24.293746163925 0 +31 15564 24.293746163925 0 +31 15590 24.343993674356 0 +31 15590 24.343993674356 0 +31 15605 24.344153674356 0 +31 15605 24.344153674356 0 +31 15636 24.51455717198 0 +31 15636 24.51455717198 0 +31 15643 24.51471717198 0 +31 15643 24.51471717198 0 +31 15677 24.52439890444 0 +31 15677 24.52439890444 0 +31 15684 24.52455890444 0 +31 15684 24.52455890444 0 +31 15709 24.531276162993 0 +31 15709 24.531276162993 0 +31 15717 24.531436162993 0 +31 15717 24.531436162993 0 +31 15756 24.557384388126 0 +31 15756 24.557384388126 0 +31 15771 24.557544388126 0 +31 15771 24.557544388126 0 +31 15790 24.59358616382 0 +31 15790 24.59358616382 0 +31 15805 24.59374616382 0 +31 15805 24.59374616382 0 +31 15831 24.643993686393 0 +31 15831 24.643993686393 0 +31 15846 24.644153686393 0 +31 15846 24.644153686393 0 +31 15877 24.814557190662 0 +31 15877 24.814557190662 0 +31 15884 24.814717190662 0 +31 15884 24.814717190662 0 +31 15918 24.824398904207 0 +31 15918 24.824398904207 0 +31 15925 24.824558904207 0 +31 15925 24.824558904207 0 +31 15950 24.831276162993 0 +31 15950 24.831276162993 0 +31 15958 24.831436162993 0 +31 15958 24.831436162993 0 +31 15997 24.857384387996 0 +31 15997 24.857384387996 0 +31 16012 24.857544387996 0 +31 16012 24.857544387996 0 +31 16031 24.893586163833 0 +31 16031 24.893586163833 0 +31 16046 24.893746163833 0 +31 16046 24.893746163833 0 +31 16072 24.943993699252 0 +31 16072 24.943993699252 0 +31 16087 24.944153699252 0 +31 16087 24.944153699252 0 +31 16118 25.114557209682 0 +31 16118 25.114557209682 0 +31 16125 25.114717209682 0 +31 16125 25.114717209682 0 +31 16159 25.124398903459 0 +31 16159 25.124398903459 0 +31 16166 25.124558903459 0 +31 16166 25.124558903459 0 +31 16191 25.131276162993 0 +31 16191 25.131276162993 0 +31 16199 25.131436162993 0 +31 16199 25.131436162993 0 +31 16238 25.15738438831 0 +31 16238 25.15738438831 0 +31 16253 25.15754438831 0 +31 16253 25.15754438831 0 +31 16272 25.19358616381 0 +31 16272 25.19358616381 0 +31 16287 25.19374616381 0 +31 16287 25.19374616381 0 +31 16313 25.243993712907 0 +31 16313 25.243993712907 0 +31 16328 25.244153712907 0 +31 16328 25.244153712907 0 +31 16359 25.414557228959 0 +31 16359 25.414557228959 0 +31 16366 25.414717228959 0 +31 16366 25.414717228959 0 +31 16400 25.424398902138 0 +31 16400 25.424398902138 0 +31 16407 25.424558902138 0 +31 16407 25.424558902138 0 +31 16432 25.431276162993 0 +31 16432 25.431276162993 0 +31 16440 25.431436162993 0 +31 16440 25.431436162993 0 +31 16479 25.457384389027 0 +31 16479 25.457384389027 0 +31 16494 25.457544389027 0 +31 16494 25.457544389027 0 +31 16513 25.493586163787 0 +31 16513 25.493586163787 0 +31 16528 25.493746163787 0 +31 16528 25.493746163787 0 +31 16554 25.543993727372 0 +31 16554 25.543993727372 0 +31 16569 25.544153727372 0 +31 16569 25.544153727372 0 +31 16601 25.714557248637 0 +31 16601 25.714557248637 0 +31 16612 25.714717248637 0 +31 16612 25.714717248637 0 +31 16641 25.724398900217 0 +31 16641 25.724398900217 0 +31 16648 25.724558900217 0 +31 16648 25.724558900217 0 +31 16673 25.731276162993 0 +31 16673 25.731276162993 0 +31 16681 25.731436162993 0 +31 16681 25.731436162993 0 +31 16720 25.757384390233 0 +31 16720 25.757384390233 0 +31 16735 25.757544390233 0 +31 16735 25.757544390233 0 +31 16754 25.793586163731 0 +31 16754 25.793586163731 0 +31 16769 25.793746163731 0 +31 16769 25.793746163731 0 +31 16795 25.843993742406 0 +31 16795 25.843993742406 0 +31 16810 25.844153742406 0 +31 16810 25.844153742406 0 +31 16842 26.014557267922 0 +31 16842 26.014557267922 0 +31 16853 26.014717267922 0 +31 16853 26.014717267922 0 +31 16882 26.024398899074 0 +31 16882 26.024398899074 0 +31 16889 26.024558899074 0 +31 16889 26.024558899074 0 +31 16914 26.031276162993 0 +31 16914 26.031276162993 0 +31 16922 26.031436162993 0 +31 16922 26.031436162993 0 +31 16961 26.057384392844 0 +31 16961 26.057384392844 0 +31 16976 26.057544392844 0 +31 16976 26.057544392844 0 +31 16995 26.093586162311 0 +31 16995 26.093586162311 0 +31 17010 26.093746162311 0 +31 17010 26.093746162311 0 +31 17036 26.1439937566 0 +31 17036 26.1439937566 0 +31 17051 26.1441537566 0 +31 17051 26.1441537566 0 +31 17083 26.314557286443 0 +31 17083 26.314557286443 0 +31 17094 26.314717286443 0 +31 17094 26.314717286443 0 +31 17123 26.324398899192 0 +31 17123 26.324398899192 0 +31 17130 26.324558899192 0 +31 17130 26.324558899192 0 +31 17155 26.331276162993 0 +31 17155 26.331276162993 0 +31 17163 26.331436162993 0 +31 17163 26.331436162993 0 +31 17202 26.357384397031 0 +31 17202 26.357384397031 0 +31 17217 26.357544397031 0 +31 17217 26.357544397031 0 +31 17236 26.39358615939 0 +31 17236 26.39358615939 0 +31 17251 26.39374615939 0 +31 17251 26.39374615939 0 +31 17277 26.443993769777 0 +31 17277 26.443993769777 0 +31 17292 26.444153769777 0 +31 17292 26.444153769777 0 +31 17324 26.614557304195 0 +31 17324 26.614557304195 0 +31 17335 26.614717304195 0 +31 17335 26.614717304195 0 +31 17364 26.624398900705 0 +31 17364 26.624398900705 0 +31 17371 26.624558900705 0 +31 17371 26.624558900705 0 +31 17396 26.631276162993 0 +31 17396 26.631276162993 0 +31 17404 26.631436162993 0 +31 17404 26.631436162993 0 +31 17443 26.657384402378 0 +31 17443 26.657384402378 0 +31 17458 26.657544402378 0 +31 17458 26.657544402378 0 +31 17477 26.693586155151 0 +31 17477 26.693586155151 0 +31 17492 26.693746155151 0 +31 17492 26.693746155151 0 +31 17518 26.743993781976 0 +31 17518 26.743993781976 0 +31 17533 26.744153781976 0 +31 17533 26.744153781976 0 +31 17565 26.914557321211 0 +31 17565 26.914557321211 0 +31 17576 26.914717321211 0 +31 17576 26.914717321211 0 +31 17605 26.924398903552 0 +31 17605 26.924398903552 0 +31 17612 26.924558903552 0 +31 17612 26.924558903552 0 +31 17637 26.931276162993 0 +31 17637 26.931276162993 0 +31 17645 26.931436162993 0 +31 17645 26.931436162993 0 +31 17684 26.957384408394 0 +31 17684 26.957384408394 0 +31 17699 26.957544408394 0 +31 17699 26.957544408394 0 +31 17718 26.993586149522 0 +31 17718 26.993586149522 0 +31 17733 26.993746149522 0 +31 17733 26.993746149522 0 +31 17759 27.0439937932 0 +31 17759 27.0439937932 0 +31 17774 27.0441537932 0 +31 17774 27.0441537932 0 +31 17806 27.214557337437 0 +31 17806 27.214557337437 0 +31 17817 27.214717337437 0 +31 17817 27.214717337437 0 +31 17842 27.224398907162 0 +31 17842 27.224398907162 0 +31 17849 27.224558907162 0 +31 17849 27.224558907162 0 +31 17870 27.231276162993 0 +31 17870 27.231276162993 0 +31 17878 27.231436162993 0 +31 17878 27.231436162993 0 +31 17917 27.257384414219 0 +31 17917 27.257384414219 0 +31 17932 27.257544414219 0 +31 17932 27.257544414219 0 +31 17951 27.293586142554 0 +31 17951 27.293586142554 0 +31 17966 27.293746142554 0 +31 17966 27.293746142554 0 +31 17992 27.343993803466 0 +31 17992 27.343993803466 0 +31 18007 27.344153803466 0 +31 18007 27.344153803466 0 +31 18039 27.514557353353 0 +31 18039 27.514557353353 0 +31 18050 27.514717353353 0 +31 18050 27.514717353353 0 +31 18075 27.524398910114 0 +31 18075 27.524398910114 0 +31 18082 27.524558910114 0 +31 18082 27.524558910114 0 +31 18103 27.531276162993 0 +31 18103 27.531276162993 0 +31 18111 27.531436162993 0 +31 18111 27.531436162993 0 +31 18150 27.557384419423 0 +31 18150 27.557384419423 0 +31 18165 27.557544419423 0 +31 18165 27.557544419423 0 +31 18184 27.593586134917 0 +31 18184 27.593586134917 0 +31 18199 27.593746134917 0 +31 18199 27.593746134917 0 +31 18225 27.643993814 0 +31 18225 27.643993814 0 +31 18240 27.644153814 0 +31 18240 27.644153814 0 +31 18272 27.814557366584 0 +31 18272 27.814557366584 0 +31 18283 27.814717366584 0 +31 18283 27.814717366584 0 +31 18308 27.824398911978 0 +31 18308 27.824398911978 0 +31 18315 27.824558911978 0 +31 18315 27.824558911978 0 +31 18336 27.831276162993 0 +31 18336 27.831276162993 0 +31 18344 27.831436162993 0 +31 18344 27.831436162993 0 +31 18383 27.857384421103 0 +31 18383 27.857384421103 0 +31 18398 27.857544421103 0 +31 18398 27.857544421103 0 +31 18417 27.893586127086 0 +31 18417 27.893586127086 0 +31 18432 27.893746127086 0 +31 18432 27.893746127086 0 +31 18458 27.943993821662 0 +31 18458 27.943993821662 0 +31 18473 27.944153821662 0 +31 18473 27.944153821662 0 +31 18505 28.114557372208 0 +31 18505 28.114557372208 0 +31 18516 28.114717372208 0 +31 18516 28.114717372208 0 +31 18541 28.124398921331 0 +31 18541 28.124398921331 0 +31 18548 28.124558921331 0 +31 18548 28.124558921331 0 +31 18569 28.131276162993 0 +31 18569 28.131276162993 0 +31 18577 28.131436162993 0 +31 18577 28.131436162993 0 +31 18616 28.157384422655 0 +31 18616 28.157384422655 0 +31 18631 28.157544422655 0 +31 18631 28.157544422655 0 +31 18650 28.193586110531 0 +31 18650 28.193586110531 0 +31 18665 28.193746110531 0 +31 18665 28.193746110531 0 +31 18691 28.243993818775 0 +31 18691 28.243993818775 0 +31 18706 28.244153818775 0 +31 18706 28.244153818775 0 +31 18738 28.414557379085 0 +31 18738 28.414557379085 0 +31 18749 28.414717379085 0 +31 18749 28.414717379085 0 +31 18774 28.424398936132 0 +31 18774 28.424398936132 0 +31 18781 28.424558936132 0 +31 18781 28.424558936132 0 +31 18802 28.431276162993 0 +31 18802 28.431276162993 0 +31 18810 28.431436162993 0 +31 18810 28.431436162993 0 +31 18849 28.457384430961 0 +31 18849 28.457384430961 0 +31 18864 28.457544430961 0 +31 18864 28.457544430961 0 +31 18883 28.493586087782 0 +31 18883 28.493586087782 0 +31 18898 28.493746087782 0 +31 18898 28.493746087782 0 +31 18924 28.543993814768 0 +31 18924 28.543993814768 0 +31 18939 28.544153814768 0 +31 18939 28.544153814768 0 +31 18971 28.714557386825 0 +31 18971 28.714557386825 0 +31 18982 28.714717386825 0 +31 18982 28.714717386825 0 +31 19007 28.724398950517 0 +31 19007 28.724398950517 0 +31 19014 28.724558950517 0 +31 19014 28.724558950517 0 +31 19035 28.731276162993 0 +31 19035 28.731276162993 0 +31 19043 28.731436162993 0 +31 19043 28.731436162993 0 +31 19082 28.757384440171 0 +31 19082 28.757384440171 0 +31 19097 28.757544440171 0 +31 19097 28.757544440171 0 +31 19115 28.793586063963 0 +31 19115 28.793586063963 0 +31 19126 28.793746063963 0 +31 19126 28.793746063963 0 +31 19157 28.843993810621 0 +31 19157 28.843993810621 0 +31 19172 28.844153810621 0 +31 19172 28.844153810621 0 +31 19204 29.014557394729 0 +31 19204 29.014557394729 0 +31 19215 29.014717394729 0 +31 19215 29.014717394729 0 +31 19240 29.024398956074 0 +31 19240 29.024398956074 0 +31 19247 29.024558956074 0 +31 19247 29.024558956074 0 +31 19268 29.031276162993 0 +31 19268 29.031276162993 0 +31 19276 29.031436162993 0 +31 19276 29.031436162993 0 +31 19340 29.093586039541 0 +31 19340 29.093586039541 0 +31 19351 29.093746039541 0 +31 19351 29.093746039541 0 +31 19382 29.143993806384 0 +31 19382 29.143993806384 0 +31 19397 29.144153806384 0 +31 19397 29.144153806384 0 +31 19430 29.314557402851 0 +31 19430 29.314557402851 0 +31 19445 29.314717402851 0 +31 19445 29.314717402851 0 +31 19465 29.324398958617 0 +31 19465 29.324398958617 0 +31 19472 29.324558958617 0 +31 19472 29.324558958617 0 +31 19493 29.331276162993 0 +31 19493 29.331276162993 0 +31 19501 29.331436162993 0 +31 19501 29.331436162993 0 +31 19565 29.393586014641 0 +31 19565 29.393586014641 0 +31 19576 29.393746014641 0 +31 19576 29.393746014641 0 +31 19607 29.443993802196 0 +31 19607 29.443993802196 0 +31 19622 29.444153802196 0 +31 19622 29.444153802196 0 +31 19655 29.614557411175 0 +31 19655 29.614557411175 0 +31 19670 29.614717411175 0 +31 19670 29.614717411175 0 +31 19690 29.624398960906 0 +31 19690 29.624398960906 0 +31 19697 29.624558960906 0 +31 19697 29.624558960906 0 +31 19718 29.631276162993 0 +31 19718 29.631276162993 0 +31 19726 29.631436162993 0 +31 19726 29.631436162993 0 +31 19790 29.6935859893 0 +31 19790 29.6935859893 0 +31 19801 29.6937459893 0 +31 19801 29.6937459893 0 +31 19832 29.74399379804 0 +31 19832 29.74399379804 0 +31 19847 29.74415379804 0 +31 19847 29.74415379804 0 +31 19880 29.914557419712 0 +31 19880 29.914557419712 0 +31 19895 29.914717419712 0 +31 19895 29.914717419712 0 +31 19915 29.924398963158 0 +31 19915 29.924398963158 0 +31 19922 29.924558963158 0 +31 19922 29.924558963158 0 +31 19943 29.931276162993 0 +31 19943 29.931276162993 0 +31 19951 29.931436162993 0 +31 19951 29.931436162993 0 +31 20015 29.993585963286 0 +31 20015 29.993585963286 0 +31 20026 29.993745963286 0 +31 20026 29.993745963286 0 +31 20057 30.04399379379 0 +31 20057 30.04399379379 0 +31 20072 30.04415379379 0 +31 20072 30.04415379379 0 +31 20105 30.214557428417 0 +31 20105 30.214557428417 0 +31 20120 30.214717428417 0 +31 20120 30.214717428417 0 +31 20140 30.224398965468 0 +31 20140 30.224398965468 0 +31 20147 30.224558965468 0 +31 20147 30.224558965468 0 +31 20168 30.231276162993 0 +31 20168 30.231276162993 0 +31 20176 30.231436162993 0 +31 20176 30.231436162993 0 +31 20240 30.293585936581 0 +31 20240 30.293585936581 0 +31 20251 30.293745936581 0 +31 20251 30.293745936581 0 +31 20282 30.343993789518 0 +31 20282 30.343993789518 0 +31 20297 30.344153789518 0 +31 20297 30.344153789518 0 +31 20331 30.514557437361 0 +31 20331 30.514557437361 0 +31 20350 30.514717437361 0 +31 20350 30.514717437361 0 +31 20365 30.524398967804 0 +31 20365 30.524398967804 0 +31 20372 30.524558967804 0 +31 20372 30.524558967804 0 +31 20393 30.531276162993 0 +31 20393 30.531276162993 0 +31 20401 30.531436162993 0 +31 20401 30.531436162993 0 +31 20465 30.59358590925 0 +31 20465 30.59358590925 0 +31 20476 30.59374590925 0 +31 20476 30.59374590925 0 +31 20507 30.643993785288 0 +31 20507 30.643993785288 0 +31 20522 30.644153785288 0 +31 20522 30.644153785288 0 +31 20555 30.814557446582 0 +31 20555 30.814557446582 0 +31 20570 30.814717446582 0 +31 20570 30.814717446582 0 +31 20590 30.824398970242 0 +31 20590 30.824398970242 0 +31 20597 30.824558970242 0 +31 20597 30.824558970242 0 +31 20618 30.831276162993 0 +31 20618 30.831276162993 0 +31 20626 30.831436162993 0 +31 20626 30.831436162993 0 +31 20690 30.89358588135 0 +31 20690 30.89358588135 0 +31 20701 30.89374588135 0 +31 20701 30.89374588135 0 +31 20732 30.94399378118 0 +31 20732 30.94399378118 0 +31 20747 30.94415378118 0 +31 20747 30.94415378118 0 +31 20780 31.114557456231 0 +31 20780 31.114557456231 0 +31 20795 31.114717456231 0 +31 20795 31.114717456231 0 +31 20815 31.124398972755 0 +31 20815 31.124398972755 0 +31 20822 31.124558972755 0 +31 20822 31.124558972755 0 +31 20847 31.131276162993 0 +31 20847 31.131276162993 0 +31 20855 31.131436162993 0 +31 20855 31.131436162993 0 +31 20918 31.193585853113 0 +31 20918 31.193585853113 0 +31 20925 31.193745853113 0 +31 20925 31.193745853113 0 +31 20965 31.243993777587 0 +31 20965 31.243993777587 0 +31 20980 31.244153777587 0 +31 20980 31.244153777587 0 +31 21013 31.414557466338 0 +31 21013 31.414557466338 0 +31 21028 31.414717466338 0 +31 21028 31.414717466338 0 +31 21048 31.424398975275 0 +31 21048 31.424398975275 0 +31 21055 31.424558975275 0 +31 21055 31.424558975275 0 +31 21080 31.431276162993 0 +31 21080 31.431276162993 0 +31 21088 31.431436162993 0 +31 21088 31.431436162993 0 +31 21151 31.493585824854 0 +31 21151 31.493585824854 0 +31 21158 31.493745824854 0 +31 21158 31.493745824854 0 +31 21198 31.543993774618 0 +31 21198 31.543993774618 0 +31 21213 31.544153774618 0 +31 21213 31.544153774618 0 +31 21246 31.714557476938 0 +31 21246 31.714557476938 0 +31 21261 31.714717476938 0 +31 21261 31.714717476938 0 +31 21281 31.724398977789 0 +31 21281 31.724398977789 0 +31 21288 31.724558977789 0 +31 21288 31.724558977789 0 +31 21313 31.731276162993 0 +31 21313 31.731276162993 0 +31 21321 31.731436162993 0 +31 21321 31.731436162993 0 +31 21384 31.793585796622 0 +31 21384 31.793585796622 0 +31 21391 31.793745796622 0 +31 21391 31.793745796622 0 +31 21431 31.843993772319 0 +31 21431 31.843993772319 0 +31 21446 31.844153772319 0 +31 21446 31.844153772319 0 +31 21479 32.014557487942 0 +31 21479 32.014557487942 0 +31 21494 32.014717487942 0 +31 21494 32.014717487942 0 +31 21514 32.024398980316 0 +31 21514 32.024398980316 0 +31 21521 32.024558980316 0 +31 21521 32.024558980316 0 +31 21546 32.031276162993 0 +31 21546 32.031276162993 0 +31 21554 32.031436162993 0 +31 21554 32.031436162993 0 +31 21617 32.093585768404 0 +31 21617 32.093585768404 0 +31 21624 32.093745768404 0 +31 21624 32.093745768404 0 +31 21664 32.143993770659 0 +31 21664 32.143993770659 0 +31 21679 32.144153770659 0 +31 21679 32.144153770659 0 +31 21712 32.314557499402 0 +31 21712 32.314557499402 0 +31 21727 32.314717499402 0 +31 21727 32.314717499402 0 +31 21747 32.324398982748 0 +31 21747 32.324398982748 0 +31 21754 32.324558982748 0 +31 21754 32.324558982748 0 +31 21779 32.331276162993 0 +31 21779 32.331276162993 0 +31 21787 32.331436162993 0 +31 21787 32.331436162993 0 +31 21850 32.393585740167 0 +31 21850 32.393585740167 0 +31 21857 32.393745740167 0 +31 21857 32.393745740167 0 +31 21897 32.443993769753 0 +31 21897 32.443993769753 0 +31 21912 32.444153769753 0 +31 21912 32.444153769753 0 +31 21945 32.614557511219 0 +31 21945 32.614557511219 0 +31 21960 32.614717511219 0 +31 21960 32.614717511219 0 +31 21980 32.624398985247 0 +31 21980 32.624398985247 0 +31 21987 32.624558985247 0 +31 21987 32.624558985247 0 +31 22012 32.631276162993 0 +31 22012 32.631276162993 0 +31 22020 32.631436162993 0 +31 22020 32.631436162993 0 +31 22083 32.693585711913 0 +31 22083 32.693585711913 0 +31 22090 32.693745711913 0 +31 22090 32.693745711913 0 +31 22130 32.74399376948 0 +31 22130 32.74399376948 0 +31 22145 32.74415376948 0 +31 22145 32.74415376948 0 +31 22178 32.914557523456 0 +31 22178 32.914557523456 0 +31 22193 32.914717523456 0 +31 22193 32.914717523456 0 +31 22213 32.924398987742 0 +31 22213 32.924398987742 0 +31 22220 32.924558987742 0 +31 22220 32.924558987742 0 +31 22245 32.931276162993 0 +31 22245 32.931276162993 0 +31 22253 32.931436162993 0 +31 22253 32.931436162993 0 +31 22316 32.993585683676 0 +31 22316 32.993585683676 0 +31 22323 32.993745683676 0 +31 22323 32.993745683676 0 +31 22363 33.043993769896 0 +31 22363 33.043993769896 0 +31 22378 33.044153769896 0 +31 22378 33.044153769896 0 +31 22411 33.214557536006 0 +31 22411 33.214557536006 0 +31 22426 33.214717536006 0 +31 22426 33.214717536006 0 +31 22446 33.224398990236 0 +31 22446 33.224398990236 0 +31 22453 33.224558990236 0 +31 22453 33.224558990236 0 +31 22478 33.231276162993 0 +31 22478 33.231276162993 0 +31 22486 33.231436162993 0 +31 22486 33.231436162993 0 +31 22549 33.293585655474 0 +31 22549 33.293585655474 0 +31 22556 33.293745655474 0 +31 22556 33.293745655474 0 +31 22596 33.343993770985 0 +31 22596 33.343993770985 0 +31 22611 33.344153770985 0 +31 22611 33.344153770985 0 +31 22644 33.514557548915 0 +31 22644 33.514557548915 0 +31 22659 33.514717548915 0 +31 22659 33.514717548915 0 +31 22679 33.524398992733 0 +31 22679 33.524398992733 0 +31 22686 33.524558992733 0 +31 22686 33.524558992733 0 +31 22711 33.531276162993 0 +31 22711 33.531276162993 0 +31 22719 33.531436162993 0 +31 22719 33.531436162993 0 +31 22782 33.593585627277 0 +31 22782 33.593585627277 0 +31 22789 33.593745627277 0 +31 22789 33.593745627277 0 +31 22829 33.643993772782 0 +31 22829 33.643993772782 0 +31 22844 33.644153772782 0 +31 22844 33.644153772782 0 +31 22877 33.814557562144 0 +31 22877 33.814557562144 0 +31 22892 33.814717562144 0 +31 22892 33.814717562144 0 +31 22908 33.82439899523 0 +31 22908 33.82439899523 0 +31 22915 33.82455899523 0 +31 22915 33.82455899523 0 +31 22940 33.831276162993 0 +31 22940 33.831276162993 0 +31 22948 33.831436162993 0 +31 22948 33.831436162993 0 +31 23011 33.893585599183 0 +31 23011 33.893585599183 0 +31 23018 33.893745599183 0 +31 23018 33.893745599183 0 +31 23052 33.943993775237 0 +31 23052 33.943993775237 0 +31 23062 33.944153775237 0 +31 23062 33.944153775237 0 +31 23118 34.124398997755 0 +31 23118 34.124398997755 0 +31 23124 34.124558997755 0 +31 23124 34.124558997755 0 +31 23144 34.131276162993 0 +31 23144 34.131276162993 0 +31 23151 34.131436162993 0 +31 23151 34.131436162993 0 +31 23210 34.243993778327 0 +31 23210 34.243993778327 0 +31 23220 34.244153778327 0 +31 23220 34.244153778327 0 +31 23276 34.424399000269 0 +31 23276 34.424399000269 0 +31 23282 34.424559000269 0 +31 23282 34.424559000269 0 +31 23302 34.431276162993 0 +31 23302 34.431276162993 0 +31 23309 34.431436162993 0 +31 23309 34.431436162993 0 +31 23368 34.543993782072 0 +31 23368 34.543993782072 0 +31 23378 34.544153782072 0 +31 23378 34.544153782072 0 +31 23434 34.724399002779 0 +31 23434 34.724399002779 0 +31 23440 34.724559002779 0 +31 23440 34.724559002779 0 +31 23460 34.731276162993 0 +31 23460 34.731276162993 0 +31 23467 34.731436162993 0 +31 23467 34.731436162993 0 +31 23526 34.843993786489 0 +31 23526 34.843993786489 0 +31 23536 34.844153786489 0 +31 23536 34.844153786489 0 +31 23592 35.02439900524 0 +31 23592 35.02439900524 0 +31 23598 35.02455900524 0 +31 23598 35.02455900524 0 +31 23618 35.031276162993 0 +31 23618 35.031276162993 0 +31 23625 35.031436162993 0 +31 23625 35.031436162993 0 +31 23684 35.143993791503 0 +31 23684 35.143993791503 0 +31 23694 35.144153791503 0 +31 23694 35.144153791503 0 +31 23754 35.32439900778 0 +31 23754 35.32439900778 0 +31 23760 35.32455900778 0 +31 23760 35.32455900778 0 +31 23780 35.331276162993 0 +31 23780 35.331276162993 0 +31 23787 35.331436162993 0 +31 23787 35.331436162993 0 +31 23850 35.443993797136 0 +31 23850 35.443993797136 0 +31 23860 35.444153797136 0 +31 23860 35.444153797136 0 +31 23920 35.624399010314 0 +31 23920 35.624399010314 0 +31 23926 35.624559010314 0 +31 23926 35.624559010314 0 +31 23946 35.631276162993 0 +31 23946 35.631276162993 0 +31 23953 35.631436162993 0 +31 23953 35.631436162993 0 +31 24016 35.743993803331 0 +31 24016 35.743993803331 0 +31 24026 35.744153803331 0 +31 24026 35.744153803331 0 +31 24086 35.924399012824 0 +31 24086 35.924399012824 0 +31 24092 35.924559012824 0 +31 24092 35.924559012824 0 +31 24112 35.931276162993 0 +31 24112 35.931276162993 0 +31 24119 35.931436162993 0 +31 24119 35.931436162993 0 +31 24182 36.043993810134 0 +31 24182 36.043993810134 0 +31 24192 36.044153810134 0 +31 24192 36.044153810134 0 +31 24252 36.224399015304 0 +31 24252 36.224399015304 0 +31 24258 36.224559015304 0 +31 24258 36.224559015304 0 +31 24278 36.231276162993 0 +31 24278 36.231276162993 0 +31 24285 36.231436162993 0 +31 24285 36.231436162993 0 +31 24348 36.343993817527 0 +31 24348 36.343993817527 0 +31 24358 36.344153817527 0 +31 24358 36.344153817527 0 +31 24418 36.524399017802 0 +31 24418 36.524399017802 0 +31 24424 36.524559017802 0 +31 24424 36.524559017802 0 +31 24444 36.531276162993 0 +31 24444 36.531276162993 0 +31 24451 36.531436162993 0 +31 24451 36.531436162993 0 +31 24514 36.643993825454 0 +31 24514 36.643993825454 0 +31 24524 36.644153825454 0 +31 24524 36.644153825454 0 +31 24584 36.824399020283 0 +31 24584 36.824399020283 0 +31 24590 36.824559020283 0 +31 24590 36.824559020283 0 +31 24610 36.831276162993 0 +31 24610 36.831276162993 0 +31 24617 36.831436162993 0 +31 24617 36.831436162993 0 +31 24680 36.943993833942 0 +31 24680 36.943993833942 0 +31 24690 36.944153833942 0 +31 24690 36.944153833942 0 +31 24750 37.124399022747 0 +31 24750 37.124399022747 0 +31 24756 37.124559022747 0 +31 24756 37.124559022747 0 +31 24776 37.131276162993 0 +31 24776 37.131276162993 0 +31 24783 37.131436162993 0 +31 24783 37.131436162993 0 +31 24847 37.243993841675 0 +31 24847 37.243993841675 0 +31 24861 37.244153841675 0 +31 24861 37.244153841675 0 +31 24916 37.424399025229 0 +31 24916 37.424399025229 0 +31 24922 37.424559025229 0 +31 24922 37.424559025229 0 +31 24942 37.431276162993 0 +31 24942 37.431276162993 0 +31 24949 37.431436162993 0 +31 24949 37.431436162993 0 +31 25013 37.54399384071 0 +31 25013 37.54399384071 0 +31 25027 37.54415384071 0 +31 25027 37.54415384071 0 +31 25082 37.724399027708 0 +31 25082 37.724399027708 0 +31 25088 37.724559027708 0 +31 25088 37.724559027708 0 +31 25108 37.731276162993 0 +31 25108 37.731276162993 0 +31 25115 37.731436162993 0 +31 25115 37.731436162993 0 +31 25179 37.843993832964 0 +31 25179 37.843993832964 0 +31 25193 37.844153832964 0 +31 25193 37.844153832964 0 +31 25248 38.024399030169 0 +31 25248 38.024399030169 0 +31 25254 38.024559030169 0 +31 25254 38.024559030169 0 +31 25274 38.031276162993 0 +31 25274 38.031276162993 0 +31 25281 38.031436162993 0 +31 25281 38.031436162993 0 +31 25345 38.143993825758 0 +31 25345 38.143993825758 0 +31 25359 38.144153825758 0 +31 25359 38.144153825758 0 +31 25414 38.324399032643 0 +31 25414 38.324399032643 0 +31 25420 38.324559032643 0 +31 25420 38.324559032643 0 +31 25440 38.331276162993 0 +31 25440 38.331276162993 0 +31 25447 38.331436162993 0 +31 25447 38.331436162993 0 +31 25511 38.44399381973 0 +31 25511 38.44399381973 0 +31 25525 38.44415381973 0 +31 25525 38.44415381973 0 +31 25580 38.624399035134 0 +31 25580 38.624399035134 0 +31 25586 38.624559035134 0 +31 25586 38.624559035134 0 +31 25606 38.631276162993 0 +31 25606 38.631276162993 0 +31 25613 38.631436162993 0 +31 25613 38.631436162993 0 +31 25677 38.743993814907 0 +31 25677 38.743993814907 0 +31 25691 38.744153814907 0 +31 25691 38.744153814907 0 +31 25746 38.924399037653 0 +31 25746 38.924399037653 0 +31 25752 38.924559037653 0 +31 25752 38.924559037653 0 +31 25772 38.931276162993 0 +31 25772 38.931276162993 0 +31 25779 38.931436162993 0 +31 25779 38.931436162993 0 +31 25843 39.043993811322 0 +31 25843 39.043993811322 0 +31 25857 39.044153811322 0 +31 25857 39.044153811322 0 +31 25912 39.224399040102 0 +31 25912 39.224399040102 0 +31 25918 39.224559040102 0 +31 25918 39.224559040102 0 +31 25938 39.231276162993 0 +31 25938 39.231276162993 0 +31 25945 39.231436162993 0 +31 25945 39.231436162993 0 +31 26009 39.343993808998 0 +31 26009 39.343993808998 0 +31 26023 39.344153808998 0 +31 26023 39.344153808998 0 +31 26078 39.524399042597 0 +31 26078 39.524399042597 0 +31 26084 39.524559042597 0 +31 26084 39.524559042597 0 +31 26104 39.531276162993 0 +31 26104 39.531276162993 0 +31 26111 39.531436162993 0 +31 26111 39.531436162993 0 +31 26175 39.643993807943 0 +31 26175 39.643993807943 0 +31 26189 39.644153807943 0 +31 26189 39.644153807943 0 +31 26244 39.824399045083 0 +31 26244 39.824399045083 0 +31 26250 39.824559045083 0 +31 26250 39.824559045083 0 +31 26270 39.831276162993 0 +31 26270 39.831276162993 0 +31 26277 39.831436162993 0 +31 26277 39.831436162993 0 +31 26341 39.943993808167 0 +31 26341 39.943993808167 0 +31 26355 39.944153808167 0 +31 26355 39.944153808167 0 +31 26410 40.124399047608 0 +31 26410 40.124399047608 0 +31 26416 40.124559047608 0 +31 26416 40.124559047608 0 +31 26436 40.131276162993 0 +31 26436 40.131276162993 0 +31 26443 40.131436162993 0 +31 26443 40.131436162993 0 +31 26507 40.243993809672 0 +31 26507 40.243993809672 0 +31 26521 40.244153809672 0 +31 26521 40.244153809672 0 +31 26576 40.424399050085 0 +31 26576 40.424399050085 0 +31 26582 40.424559050085 0 +31 26582 40.424559050085 0 +31 26602 40.431276162993 0 +31 26602 40.431276162993 0 +31 26609 40.431436162993 0 +31 26609 40.431436162993 0 +31 26673 40.543993812444 0 +31 26673 40.543993812444 0 +31 26687 40.544153812444 0 +31 26687 40.544153812444 0 +31 26742 40.72439905259 0 +31 26742 40.72439905259 0 +31 26748 40.72455905259 0 +31 26748 40.72455905259 0 +31 26772 40.731276162993 0 +31 26772 40.731276162993 0 +31 26779 40.731436162993 0 +31 26779 40.731436162993 0 +31 26843 40.843993816458 0 +31 26843 40.843993816458 0 +31 26857 40.844153816458 0 +31 26857 40.844153816458 0 +31 26916 41.024399055027 0 +31 26916 41.024399055027 0 +31 26922 41.024559055027 0 +31 26922 41.024559055027 0 +31 26946 41.031276162993 0 +31 26946 41.031276162993 0 +31 26953 41.031436162993 0 +31 26953 41.031436162993 0 +31 27017 41.143993821716 0 +31 27017 41.143993821716 0 +31 27031 41.144153821716 0 +31 27031 41.144153821716 0 +31 27090 41.324399057542 0 +31 27090 41.324399057542 0 +31 27096 41.324559057542 0 +31 27096 41.324559057542 0 +31 27120 41.331276162993 0 +31 27120 41.331276162993 0 +31 27127 41.331436162993 0 +31 27127 41.331436162993 0 +31 27191 41.443993828168 0 +31 27191 41.443993828168 0 +31 27205 41.444153828168 0 +31 27205 41.444153828168 0 +31 27264 41.62439906007 0 +31 27264 41.62439906007 0 +31 27270 41.62455906007 0 +31 27270 41.62455906007 0 +31 27294 41.631276162993 0 +31 27294 41.631276162993 0 +31 27301 41.631436162993 0 +31 27301 41.631436162993 0 +31 27365 41.743993835789 0 +31 27365 41.743993835789 0 +31 27379 41.744153835789 0 +31 27379 41.744153835789 0 +31 27438 41.924399062611 0 +31 27438 41.924399062611 0 +31 27444 41.924559062611 0 +31 27444 41.924559062611 0 +31 27468 41.931276162993 0 +31 27468 41.931276162993 0 +31 27475 41.931436162993 0 +31 27475 41.931436162993 0 +31 27539 42.043993844221 0 +31 27539 42.043993844221 0 +31 27553 42.044153844221 0 +31 27553 42.044153844221 0 +31 27612 42.224399065158 0 +31 27612 42.224399065158 0 +31 27618 42.224559065158 0 +31 27618 42.224559065158 0 +31 27642 42.231276162993 0 +31 27642 42.231276162993 0 +31 27649 42.231436162993 0 +31 27649 42.231436162993 0 +31 27714 42.343993853216 0 +31 27714 42.343993853216 0 +31 27732 42.344153853216 0 +31 27732 42.344153853216 0 +31 27786 42.524399067719 0 +31 27786 42.524399067719 0 +31 27792 42.524559067719 0 +31 27792 42.524559067719 0 +31 27816 42.531276162993 0 +31 27816 42.531276162993 0 +31 27823 42.531436162993 0 +31 27823 42.531436162993 0 +31 27888 42.643993862563 0 +31 27888 42.643993862563 0 +31 27906 42.644153862563 0 +31 27906 42.644153862563 0 +31 27960 42.824399070171 0 +31 27960 42.824399070171 0 +31 27966 42.824559070171 0 +31 27966 42.824559070171 0 +31 27990 42.831276162993 0 +31 27990 42.831276162993 0 +31 27997 42.831436162993 0 +31 27997 42.831436162993 0 +31 28062 42.943993872107 0 +31 28062 42.943993872107 0 +31 28080 42.944153872107 0 +31 28080 42.944153872107 0 +31 28134 43.124399072679 0 +31 28134 43.124399072679 0 +31 28140 43.124559072679 0 +31 28140 43.124559072679 0 +31 28164 43.131276162993 0 +31 28164 43.131276162993 0 +31 28171 43.131436162993 0 +31 28171 43.131436162993 0 +31 28236 43.243993881734 0 +31 28236 43.243993881734 0 +31 28254 43.244153881734 0 +31 28254 43.244153881734 0 +31 28308 43.424399075168 0 +31 28308 43.424399075168 0 +31 28314 43.424559075168 0 +31 28314 43.424559075168 0 +31 28338 43.431276162993 0 +31 28338 43.431276162993 0 +31 28345 43.431436162993 0 +31 28345 43.431436162993 0 +31 28410 43.543993891273 0 +31 28410 43.543993891273 0 +31 28428 43.544153891273 0 +31 28428 43.544153891273 0 +31 28482 43.724399077694 0 +31 28482 43.724399077694 0 +31 28488 43.724559077694 0 +31 28488 43.724559077694 0 +31 28512 43.731276162993 0 +31 28512 43.731276162993 0 +31 28519 43.731436162993 0 +31 28519 43.731436162993 0 +31 28584 43.843993900664 0 +31 28584 43.843993900664 0 +31 28602 43.844153900664 0 +31 28602 43.844153900664 0 +31 28656 44.024399080215 0 +31 28656 44.024399080215 0 +31 28662 44.024559080215 0 +31 28662 44.024559080215 0 +31 28686 44.031276162993 0 +31 28686 44.031276162993 0 +31 28693 44.031436162993 0 +31 28693 44.031436162993 0 +31 28758 44.143993909788 0 +31 28758 44.143993909788 0 +31 28776 44.144153909788 0 +31 28776 44.144153909788 0 +31 28830 44.324399082695 0 +31 28830 44.324399082695 0 +31 28836 44.324559082695 0 +31 28836 44.324559082695 0 +31 28860 44.331276162993 0 +31 28860 44.331276162993 0 +31 28867 44.331436162993 0 +31 28867 44.331436162993 0 +31 28996 44.624399085153 0 +31 28996 44.624399085153 0 +31 29002 44.624559085153 0 +31 29002 44.624559085153 0 +31 29026 44.631276162993 0 +31 29026 44.631276162993 0 +31 29033 44.631436162993 0 +31 29033 44.631436162993 0 +31 29162 44.924399087671 0 +31 29162 44.924399087671 0 +31 29168 44.924559087671 0 +31 29168 44.924559087671 0 +31 29192 44.931276162993 0 +31 29192 44.931276162993 0 +31 29199 44.931436162993 0 +31 29199 44.931436162993 0 +31 29328 45.224399090114 0 +31 29328 45.224399090114 0 +31 29334 45.224559090114 0 +31 29334 45.224559090114 0 +31 29358 45.231276162993 0 +31 29358 45.231276162993 0 +31 29365 45.231436162993 0 +31 29365 45.231436162993 0 +31 29494 45.524399092613 0 +31 29494 45.524399092613 0 +31 29500 45.524559092613 0 +31 29500 45.524559092613 0 +31 29524 45.531276162993 0 +31 29524 45.531276162993 0 +31 29531 45.531436162993 0 +31 29531 45.531436162993 0 +31 29660 45.824399095152 0 +31 29660 45.824399095152 0 +31 29666 45.824559095152 0 +31 29666 45.824559095152 0 +31 29690 45.831276162993 0 +31 29690 45.831276162993 0 +31 29697 45.831436162993 0 +31 29697 45.831436162993 0 +31 29826 46.124399098204 0 +31 29826 46.124399098204 0 +31 29832 46.124559098204 0 +31 29832 46.124559098204 0 +31 29856 46.131276162993 0 +31 29856 46.131276162993 0 +31 29863 46.131436162993 0 +31 29863 46.131436162993 0 +31 29992 46.424399105752 0 +31 29992 46.424399105752 0 +31 29998 46.424559105752 0 +31 29998 46.424559105752 0 +31 30022 46.431276162993 0 +31 30022 46.431276162993 0 +31 30029 46.431436162993 0 +31 30029 46.431436162993 0 +31 30158 46.724399119111 0 +31 30158 46.724399119111 0 +31 30164 46.724559119111 0 +31 30164 46.724559119111 0 +31 30188 46.731276162993 0 +31 30188 46.731276162993 0 +31 30195 46.731436162993 0 +31 30195 46.731436162993 0 +31 30324 47.02439913369 0 +31 30324 47.02439913369 0 +31 30330 47.02455913369 0 +31 30330 47.02455913369 0 +31 30354 47.031276162993 0 +31 30354 47.031276162993 0 +31 30361 47.031436162993 0 +31 30361 47.031436162993 0 +31 30490 47.3243991485 0 +31 30490 47.3243991485 0 +31 30496 47.3245591485 0 +31 30496 47.3245591485 0 +31 30520 47.331276162993 0 +31 30520 47.331276162993 0 +31 30527 47.331436162993 0 +31 30527 47.331436162993 0 +31 30656 47.624399163475 0 +31 30656 47.624399163475 0 +31 30662 47.624559163475 0 +31 30662 47.624559163475 0 +31 30686 47.631276162993 0 +31 30686 47.631276162993 0 +31 30693 47.631436162993 0 +31 30693 47.631436162993 0 +31 30823 47.924399178648 0 +31 30823 47.924399178648 0 +31 30833 47.924559178648 0 +31 30833 47.924559178648 0 +31 30852 47.931276162993 0 +31 30852 47.931276162993 0 +31 30859 47.931436162993 0 +31 30859 47.931436162993 0 +31 30990 48.224399193917 0 +31 30990 48.224399193917 0 +31 31004 48.224559193917 0 +31 31004 48.224559193917 0 +31 31018 48.231276162993 0 +31 31018 48.231276162993 0 +31 31025 48.231436162993 0 +31 31025 48.231436162993 0 +31 31156 48.524399209372 0 +31 31156 48.524399209372 0 +31 31170 48.524559209372 0 +31 31170 48.524559209372 0 +31 31184 48.531276162993 0 +31 31184 48.531276162993 0 +31 31191 48.531436162993 0 +31 31191 48.531436162993 0 +31 31322 48.824399224983 0 +31 31322 48.824399224983 0 +31 31336 48.824559224983 0 +31 31336 48.824559224983 0 +31 31350 48.831276162993 0 +31 31350 48.831276162993 0 +31 31357 48.831436162993 0 +31 31357 48.831436162993 0 +31 31488 49.124399240703 0 +31 31488 49.124399240703 0 +31 31502 49.124559240703 0 +31 31502 49.124559240703 0 +31 31516 49.131276162993 0 +31 31516 49.131276162993 0 +31 31523 49.131436162993 0 +31 31523 49.131436162993 0 +31 31654 49.424399256502 0 +31 31654 49.424399256502 0 +31 31668 49.424559256502 0 +31 31668 49.424559256502 0 +31 31682 49.431276162993 0 +31 31682 49.431276162993 0 +31 31689 49.431436162993 0 +31 31689 49.431436162993 0 +31 31820 49.724399261494 0 +31 31820 49.724399261494 0 +31 31834 49.724559261494 0 +31 31834 49.724559261494 0 +31 31848 49.731276162993 0 +31 31848 49.731276162993 0 +31 31855 49.731436162993 0 +31 31855 49.731436162993 0 +31 31986 50.02439926103 0 +31 31986 50.02439926103 0 +31 32000 50.02455926103 0 +31 32000 50.02455926103 0 +31 32014 50.031276162993 0 +31 32014 50.031276162993 0 +31 32021 50.031436162993 0 +31 32021 50.031436162993 0 +31 32152 50.324399260569 0 +31 32152 50.324399260569 0 +31 32166 50.324559260569 0 +31 32166 50.324559260569 0 +31 32180 50.331276162993 0 +31 32180 50.331276162993 0 +31 32187 50.331436162993 0 +31 32187 50.331436162993 0 +31 32318 50.624399260125 0 +31 32318 50.624399260125 0 +31 32332 50.624559260125 0 +31 32332 50.624559260125 0 +31 32346 50.631276162993 0 +31 32346 50.631276162993 0 +31 32353 50.631436162993 0 +31 32353 50.631436162993 0 +31 32484 50.924399259692 0 +31 32484 50.924399259692 0 +31 32498 50.924559259692 0 +31 32498 50.924559259692 0 +31 32512 50.931276162993 0 +31 32512 50.931276162993 0 +31 32519 50.931436162993 0 +31 32519 50.931436162993 0 +31 32646 51.224399259255 0 +31 32646 51.224399259255 0 +31 32660 51.224559259255 0 +31 32660 51.224559259255 0 +31 32674 51.231276162993 0 +31 32674 51.231276162993 0 +31 32681 51.231436162993 0 +31 32681 51.231436162993 0 +31 32804 51.524399258837 0 +31 32804 51.524399258837 0 +31 32818 51.524559258837 0 +31 32818 51.524559258837 0 +31 32832 51.531276162993 0 +31 32832 51.531276162993 0 +31 32839 51.531436162993 0 +31 32839 51.531436162993 0 +31 32865 51.557384429561 0 +31 32865 51.557384429561 0 +31 32879 51.557544429561 0 +31 32879 51.557544429561 0 +31 32970 51.824399258432 0 +31 32970 51.824399258432 0 +31 32984 51.824559258432 0 +31 32984 51.824559258432 0 +31 32998 51.831276162993 0 +31 32998 51.831276162993 0 +31 33005 51.831436162993 0 +31 33005 51.831436162993 0 +31 33031 51.857384410523 0 +31 33031 51.857384410523 0 +31 33045 51.857544410523 0 +31 33045 51.857544410523 0 +31 33136 52.124399258035 0 +31 33136 52.124399258035 0 +31 33150 52.124559258035 0 +31 33150 52.124559258035 0 +31 33164 52.131276162993 0 +31 33164 52.131276162993 0 +31 33171 52.131436162993 0 +31 33171 52.131436162993 0 +31 33197 52.157384391469 0 +31 33197 52.157384391469 0 +31 33211 52.157544391469 0 +31 33211 52.157544391469 0 +31 33302 52.424399257631 0 +31 33302 52.424399257631 0 +31 33316 52.424559257631 0 +31 33316 52.424559257631 0 +31 33330 52.431276162993 0 +31 33330 52.431276162993 0 +31 33337 52.431436162993 0 +31 33337 52.431436162993 0 +31 33363 52.45738437236 0 +31 33363 52.45738437236 0 +31 33377 52.45754437236 0 +31 33377 52.45754437236 0 +31 33468 52.724399257249 0 +31 33468 52.724399257249 0 +31 33482 52.724559257249 0 +31 33482 52.724559257249 0 +31 33496 52.731276162993 0 +31 33496 52.731276162993 0 +31 33503 52.731436162993 0 +31 33503 52.731436162993 0 +31 33529 52.75738435334 0 +31 33529 52.75738435334 0 +31 33543 52.75754435334 0 +31 33543 52.75754435334 0 +31 33634 53.024399256872 0 +31 33634 53.024399256872 0 +31 33648 53.024559256872 0 +31 33648 53.024559256872 0 +31 33662 53.031276162993 0 +31 33662 53.031276162993 0 +31 33669 53.031436162993 0 +31 33669 53.031436162993 0 +31 33695 53.057384334363 0 +31 33695 53.057384334363 0 +31 33709 53.057544334363 0 +31 33709 53.057544334363 0 +31 33776 53.324399256501 0 +31 33776 53.324399256501 0 +31 33789 53.324559256501 0 +31 33789 53.324559256501 0 +31 33801 53.331276162993 0 +31 33801 53.331276162993 0 +31 33807 53.331436162993 0 +31 33807 53.331436162993 0 +31 33832 53.357384316044 0 +31 33832 53.357384316044 0 +31 33845 53.357544316044 0 +31 33845 53.357544316044 0 +31 33903 53.624399256146 0 +31 33903 53.624399256146 0 +31 33916 53.624559256146 0 +31 33916 53.624559256146 0 +31 33928 53.631276162993 0 +31 33928 53.631276162993 0 +31 33934 53.631436162993 0 +31 33934 53.631436162993 0 +31 33959 53.657384298598 0 +31 33959 53.657384298598 0 +31 33972 53.657544298598 0 +31 33972 53.657544298598 0 +31 34030 53.924399255807 0 +31 34030 53.924399255807 0 +31 34043 53.924559255807 0 +31 34043 53.924559255807 0 +31 34055 53.931276162993 0 +31 34055 53.931276162993 0 +31 34061 53.931436162993 0 +31 34061 53.931436162993 0 +31 34086 53.95738428203 0 +31 34086 53.95738428203 0 +31 34099 53.95754428203 0 +31 34099 53.95754428203 0 +31 34157 54.224399255474 0 +31 34157 54.224399255474 0 +31 34170 54.224559255474 0 +31 34170 54.224559255474 0 +31 34182 54.231276162993 0 +31 34182 54.231276162993 0 +31 34188 54.231436162993 0 +31 34188 54.231436162993 0 +31 34213 54.257384266324 0 +31 34213 54.257384266324 0 +31 34226 54.257544266324 0 +31 34226 54.257544266324 0 +31 34284 54.52439925514 0 +31 34284 54.52439925514 0 +31 34297 54.52455925514 0 +31 34297 54.52455925514 0 +31 34309 54.531276162993 0 +31 34309 54.531276162993 0 +31 34315 54.531436162993 0 +31 34315 54.531436162993 0 +31 34340 54.557384251324 0 +31 34340 54.557384251324 0 +31 34353 54.557544251324 0 +31 34353 54.557544251324 0 +31 34411 54.824399254865 0 +31 34411 54.824399254865 0 +31 34424 54.824559254865 0 +31 34424 54.824559254865 0 +31 34436 54.831276162993 0 +31 34436 54.831276162993 0 +31 34442 54.831436162993 0 +31 34442 54.831436162993 0 +31 34467 54.857384236279 0 +31 34467 54.857384236279 0 +31 34480 54.857544236279 0 +31 34480 54.857544236279 0 +31 34538 55.124399254758 0 +31 34538 55.124399254758 0 +31 34551 55.124559254758 0 +31 34551 55.124559254758 0 +31 34563 55.131276162993 0 +31 34563 55.131276162993 0 +31 34569 55.131436162993 0 +31 34569 55.131436162993 0 +31 34594 55.157384221704 0 +31 34594 55.157384221704 0 +31 34607 55.157544221704 0 +31 34607 55.157544221704 0 +31 34665 55.424399254821 0 +31 34665 55.424399254821 0 +31 34678 55.424559254821 0 +31 34678 55.424559254821 0 +31 34690 55.431276162993 0 +31 34690 55.431276162993 0 +31 34696 55.431436162993 0 +31 34696 55.431436162993 0 +31 34721 55.45738420776 0 +31 34721 55.45738420776 0 +31 34734 55.45754420776 0 +31 34734 55.45754420776 0 +31 34792 55.724399255052 0 +31 34792 55.724399255052 0 +31 34805 55.724559255052 0 +31 34805 55.724559255052 0 +31 34817 55.731276162993 0 +31 34817 55.731276162993 0 +31 34823 55.731436162993 0 +31 34823 55.731436162993 0 +31 34848 55.757384194465 0 +31 34848 55.757384194465 0 +31 34861 55.757544194465 0 +31 34861 55.757544194465 0 +31 34919 56.024399255468 0 +31 34919 56.024399255468 0 +31 34932 56.024559255468 0 +31 34932 56.024559255468 0 +31 34944 56.031276162993 0 +31 34944 56.031276162993 0 +31 34950 56.031436162993 0 +31 34950 56.031436162993 0 +31 34975 56.05738418177 0 +31 34975 56.05738418177 0 +31 34988 56.05754418177 0 +31 34988 56.05754418177 0 +31 35046 56.324399256088 0 +31 35046 56.324399256088 0 +31 35059 56.324559256088 0 +31 35059 56.324559256088 0 +31 35071 56.331276162993 0 +31 35071 56.331276162993 0 +31 35077 56.331436162993 0 +31 35077 56.331436162993 0 +31 35102 56.357384169733 0 +31 35102 56.357384169733 0 +31 35115 56.357544169733 0 +31 35115 56.357544169733 0 +31 35170 56.624399256836 0 +31 35170 56.624399256836 0 +31 35178 56.624559256836 0 +31 35178 56.624559256836 0 +31 35190 56.631276162993 0 +31 35190 56.631276162993 0 +31 35195 56.631436162993 0 +31 35195 56.631436162993 0 +31 35218 56.657384157873 0 +31 35218 56.657384157873 0 +31 35226 56.657544157873 0 +31 35226 56.657544157873 0 +31 35254 56.924399261596 0 +31 35254 56.924399261596 0 +31 35262 56.924559261596 0 +31 35262 56.924559261596 0 +31 35274 56.931276162993 0 +31 35274 56.931276162993 0 +31 35279 56.931436162993 0 +31 35279 56.931436162993 0 +31 35302 56.957384148777 0 +31 35302 56.957384148777 0 +31 35310 56.957544148777 0 +31 35310 56.957544148777 0 +31 35338 57.224399269866 0 +31 35338 57.224399269866 0 +31 35346 57.224559269866 0 +31 35346 57.224559269866 0 +31 35358 57.231276162993 0 +31 35358 57.231276162993 0 +31 35363 57.231436162993 0 +31 35363 57.231436162993 0 +31 35386 57.257384147466 0 +31 35386 57.257384147466 0 +31 35394 57.257544147466 0 +31 35394 57.257544147466 0 +31 35422 57.524399274423 0 +31 35422 57.524399274423 0 +31 35430 57.524559274423 0 +31 35430 57.524559274423 0 +31 35442 57.531276162993 0 +31 35442 57.531276162993 0 +31 35447 57.531436162993 0 +31 35447 57.531436162993 0 +31 35469 57.557384146735 0 +31 35469 57.557384146735 0 +31 35473 57.557544146735 0 +31 35473 57.557544146735 0 +31 35506 57.824399278835 0 +31 35506 57.824399278835 0 +31 35514 57.824559278835 0 +31 35514 57.824559278835 0 +31 35526 57.831276162993 0 +31 35526 57.831276162993 0 +31 35531 57.831436162993 0 +31 35531 57.831436162993 0 +31 35553 57.857384146402 0 +31 35553 57.857384146402 0 +31 35557 57.857544146402 0 +31 35557 57.857544146402 0 +31 35590 58.124399283976 0 +31 35590 58.124399283976 0 +31 35598 58.124559283976 0 +31 35598 58.124559283976 0 +31 35610 58.131276162993 0 +31 35610 58.131276162993 0 +31 35615 58.131436162993 0 +31 35615 58.131436162993 0 +31 35637 58.157384147163 0 +31 35637 58.157384147163 0 +31 35641 58.157544147163 0 +31 35641 58.157544147163 0 +31 35674 58.424399289901 0 +31 35674 58.424399289901 0 +31 35682 58.424559289901 0 +31 35682 58.424559289901 0 +31 35694 58.431276162993 0 +31 35694 58.431276162993 0 +31 35699 58.431436162993 0 +31 35699 58.431436162993 0 +31 35721 58.457384148999 0 +31 35721 58.457384148999 0 +31 35725 58.457544148999 0 +31 35725 58.457544148999 0 +31 35758 58.724399296596 0 +31 35758 58.724399296596 0 +31 35766 58.724559296596 0 +31 35766 58.724559296596 0 +31 35778 58.731276162993 0 +31 35778 58.731276162993 0 +31 35783 58.731436162993 0 +31 35783 58.731436162993 0 +31 35805 58.757384151953 0 +31 35805 58.757384151953 0 +31 35809 58.757544151953 0 +31 35809 58.757544151953 0 +31 35842 59.024399304148 0 +31 35842 59.024399304148 0 +31 35850 59.024559304148 0 +31 35850 59.024559304148 0 +31 35862 59.031276162993 0 +31 35862 59.031276162993 0 +31 35867 59.031436162993 0 +31 35867 59.031436162993 0 +31 35889 59.057384156076 0 +31 35889 59.057384156076 0 +31 35893 59.057544156076 0 +31 35893 59.057544156076 0 +31 35926 59.324399312582 0 +31 35926 59.324399312582 0 +31 35934 59.324559312582 0 +31 35934 59.324559312582 0 +31 35946 59.331276162993 0 +31 35946 59.331276162993 0 +31 35951 59.331436162993 0 +31 35951 59.331436162993 0 +31 35973 59.357384161385 0 +31 35973 59.357384161385 0 +31 35977 59.357544161385 0 +31 35977 59.357544161385 0 +31 36010 59.624399321918 0 +31 36010 59.624399321918 0 +31 36018 59.624559321918 0 +31 36018 59.624559321918 0 +31 36030 59.631276162993 0 +31 36030 59.631276162993 0 +31 36035 59.631436162993 0 +31 36035 59.631436162993 0 +31 36057 59.657384167848 0 +31 36057 59.657384167848 0 +31 36061 59.657544167848 0 +31 36061 59.657544167848 0 +31 36094 59.924399332192 0 +31 36094 59.924399332192 0 +31 36102 59.924559332192 0 +31 36102 59.924559332192 0 +31 36114 59.931276162993 0 +31 36114 59.931276162993 0 +31 36119 59.931436162993 0 +31 36119 59.931436162993 0 +31 36141 59.957384175485 0 +31 36141 59.957384175485 0 +31 36145 59.957544175485 0 +31 36145 59.957544175485 0 +31 36194 60.231276162993 0 +31 36194 60.231276162993 0 +31 36199 60.231436162993 0 +31 36199 60.231436162993 0 +31 36217 60.257384184183 0 +31 36217 60.257384184183 0 +31 36221 60.257544184183 0 +31 36221 60.257544184183 0 +31 36270 60.531276162993 0 +31 36270 60.531276162993 0 +31 36275 60.531436162993 0 +31 36275 60.531436162993 0 +31 36293 60.557384193582 0 +31 36293 60.557384193582 0 +31 36297 60.557544193582 0 +31 36297 60.557544193582 0 +31 36346 60.831276162993 0 +31 36346 60.831276162993 0 +31 36351 60.831436162993 0 +31 36351 60.831436162993 0 +31 36369 60.857384203546 0 +31 36369 60.857384203546 0 +31 36373 60.857544203546 0 +31 36373 60.857544203546 0 +31 36422 61.131276162993 0 +31 36422 61.131276162993 0 +31 36427 61.131436162993 0 +31 36427 61.131436162993 0 +31 36445 61.157384214046 0 +31 36445 61.157384214046 0 +31 36449 61.157544214046 0 +31 36449 61.157544214046 0 +31 36498 61.431276162993 0 +31 36498 61.431276162993 0 +31 36503 61.431436162993 0 +31 36503 61.431436162993 0 +31 36521 61.457384224953 0 +31 36521 61.457384224953 0 +31 36525 61.457544224953 0 +31 36525 61.457544224953 0 +31 36574 61.731276162993 0 +31 36574 61.731276162993 0 +31 36579 61.731436162993 0 +31 36579 61.731436162993 0 +31 36597 61.757384236307 0 +31 36597 61.757384236307 0 +31 36601 61.757544236307 0 +31 36601 61.757544236307 0 +31 36650 62.031276162993 0 +31 36650 62.031276162993 0 +31 36655 62.031436162993 0 +31 36655 62.031436162993 0 +31 36673 62.057384248207 0 +31 36673 62.057384248207 0 +31 36677 62.057544248207 0 +31 36677 62.057544248207 0 +31 36726 62.331276162993 0 +31 36726 62.331276162993 0 +31 36731 62.331436162993 0 +31 36731 62.331436162993 0 +31 36749 62.357384260662 0 +31 36749 62.357384260662 0 +31 36753 62.357544260662 0 +31 36753 62.357544260662 0 +31 36802 62.631276162993 0 +31 36802 62.631276162993 0 +31 36807 62.631436162993 0 +31 36807 62.631436162993 0 +31 36825 62.657384273497 0 +31 36825 62.657384273497 0 +31 36829 62.657544273497 0 +31 36829 62.657544273497 0 +31 36878 62.931276162993 0 +31 36878 62.931276162993 0 +31 36883 62.931436162993 0 +31 36883 62.931436162993 0 +31 36901 62.957384286646 0 +31 36901 62.957384286646 0 +31 36905 62.957544286646 0 +31 36905 62.957544286646 0 +32 124 3.1 0 +32 124 3.1 0 +32 142 3.21455740282 0 +32 142 3.21455740282 0 +32 150 3.21471740282 0 +32 150 3.21471740282 0 +32 166 3.257384424448 0 +32 166 3.257384424448 0 +32 174 3.257544424448 0 +32 174 3.257544424448 0 +32 202 3.514557399314 0 +32 202 3.514557399314 0 +32 210 3.514717399314 0 +32 210 3.514717399314 0 +32 219 3.531276162993 0 +32 219 3.531276162993 2 +32 220 3.531276162993 2 +32 220 3.531276162993 0 +32 223 3.531276162993 0 +32 223 3.531276162993 0 +32 228 3.531436162993 0 +32 228 3.531436162993 0 +32 250 3.557384424342 0 +32 250 3.557384424342 0 +32 258 3.557544424342 0 +32 258 3.557544424342 0 +32 286 3.81455739499 0 +32 286 3.81455739499 0 +32 294 3.81471739499 0 +32 294 3.81471739499 0 +32 303 3.831276162993 0 +32 303 3.831276162993 2 +32 304 3.831276162993 2 +32 304 3.831276162993 0 +32 307 3.831276162993 0 +32 307 3.831276162993 0 +32 312 3.831436162993 0 +32 312 3.831436162993 0 +32 334 3.857384424025 0 +32 334 3.857384424025 0 +32 342 3.857544424025 0 +32 342 3.857544424025 0 +32 371 4.11455739006 0 +32 371 4.11455739006 0 +32 380 4.11471739006 0 +32 380 4.11471739006 0 +32 390 4.131276162993 0 +32 390 4.131276162993 2 +32 391 4.131276162993 2 +32 391 4.131276162993 0 +32 394 4.131276162993 0 +32 394 4.131276162993 0 +32 400 4.131436162993 0 +32 400 4.131436162993 0 +32 427 4.157384423703 0 +32 427 4.157384423703 0 +32 436 4.157544423703 0 +32 436 4.157544423703 0 +32 468 4.414557384462 0 +32 468 4.414557384462 0 +32 477 4.414717384462 0 +32 477 4.414717384462 0 +32 487 4.431276162993 0 +32 487 4.431276162993 2 +32 488 4.431276162993 2 +32 488 4.431276162993 0 +32 491 4.431276162993 0 +32 491 4.431276162993 0 +32 497 4.431436162993 0 +32 497 4.431436162993 0 +32 524 4.457384423373 0 +32 524 4.457384423373 0 +32 533 4.457544423373 0 +32 533 4.457544423373 0 +32 554 4.54399363691 0 +32 554 4.54399363691 0 +32 559 4.54415363691 0 +32 559 4.54415363691 0 +32 587 4.714557378402 0 +32 587 4.714557378402 0 +32 596 4.714717378402 0 +32 596 4.714717378402 0 +32 606 4.731276162993 0 +32 606 4.731276162993 2 +32 607 4.731276162993 2 +32 607 4.731276162993 0 +32 610 4.731276162993 0 +32 610 4.731276162993 0 +32 616 4.731436162993 0 +32 616 4.731436162993 0 +32 643 4.757384423069 0 +32 643 4.757384423069 0 +32 652 4.757544423069 0 +32 652 4.757544423069 0 +32 673 4.843993636799 0 +32 673 4.843993636799 0 +32 678 4.844153636799 0 +32 678 4.844153636799 0 +32 706 5.014557371745 0 +32 706 5.014557371745 0 +32 715 5.014717371745 0 +32 715 5.014717371745 0 +32 725 5.031276162993 0 +32 725 5.031276162993 2 +32 726 5.031276162993 2 +32 726 5.031276162993 0 +32 729 5.031276162993 0 +32 729 5.031276162993 0 +32 735 5.031436162993 0 +32 735 5.031436162993 0 +32 762 5.057384422748 0 +32 762 5.057384422748 0 +32 771 5.057544422748 0 +32 771 5.057544422748 0 +32 794 5.143993636284 0 +32 794 5.143993636284 0 +32 804 5.144153636284 0 +32 804 5.144153636284 0 +32 834 5.31455736441 0 +32 834 5.31455736441 0 +32 844 5.31471736441 0 +32 844 5.31471736441 0 +32 855 5.331276162993 0 +32 855 5.331276162993 2 +32 856 5.331276162993 2 +32 856 5.331276162993 0 +32 859 5.331276162993 0 +32 859 5.331276162993 0 +32 866 5.331436162993 0 +32 866 5.331436162993 0 +32 894 5.357384422438 0 +32 894 5.357384422438 0 +32 904 5.357544422438 0 +32 904 5.357544422438 0 +32 928 5.443993635357 0 +32 928 5.443993635357 0 +32 938 5.444153635357 0 +32 938 5.444153635357 0 +32 968 5.614557356527 0 +32 968 5.614557356527 0 +32 978 5.614717356527 0 +32 978 5.614717356527 0 +32 989 5.631276162993 0 +32 989 5.631276162993 2 +32 990 5.631276162993 2 +32 990 5.631276162993 0 +32 993 5.631276162993 0 +32 993 5.631276162993 0 +32 1000 5.631436162993 0 +32 1000 5.631436162993 0 +32 1028 5.657384422133 0 +32 1028 5.657384422133 0 +32 1038 5.657544422133 0 +32 1038 5.657544422133 0 +32 1086 5.743993634123 0 +32 1086 5.743993634123 0 +32 1096 5.744153634123 0 +32 1096 5.744153634123 0 +32 1126 5.914557347995 0 +32 1126 5.914557347995 0 +32 1136 5.914717347995 0 +32 1136 5.914717347995 0 +32 1147 5.931276162993 0 +32 1147 5.931276162993 2 +32 1148 5.931276162993 2 +32 1148 5.931276162993 0 +32 1151 5.931276162993 0 +32 1151 5.931276162993 0 +32 1158 5.931436162993 0 +32 1158 5.931436162993 0 +32 1186 5.957384421828 0 +32 1186 5.957384421828 0 +32 1196 5.957544421828 0 +32 1196 5.957544421828 0 +32 1244 6.043993632613 0 +32 1244 6.043993632613 0 +32 1254 6.044153632613 0 +32 1254 6.044153632613 0 +32 1287 6.214557338841 0 +32 1287 6.214557338841 0 +32 1302 6.214717338841 0 +32 1302 6.214717338841 0 +32 1313 6.231276162993 0 +32 1313 6.231276162993 2 +32 1314 6.231276162993 2 +32 1314 6.231276162993 0 +32 1317 6.231276162993 0 +32 1317 6.231276162993 0 +32 1325 6.231436162993 0 +32 1325 6.231436162993 0 +32 1359 6.257384421526 0 +32 1359 6.257384421526 0 +32 1374 6.257544421526 0 +32 1374 6.257544421526 0 +32 1425 6.343993630796 0 +32 1425 6.343993630796 0 +32 1436 6.344153630796 0 +32 1436 6.344153630796 0 +32 1470 6.514557329163 0 +32 1470 6.514557329163 0 +32 1485 6.514717329163 0 +32 1485 6.514717329163 0 +32 1502 6.524398906174 0 +32 1502 6.524398906174 0 +32 1513 6.524558906174 0 +32 1513 6.524558906174 0 +32 1529 6.531276162993 0 +32 1529 6.531276162993 2 +32 1530 6.531276162993 2 +32 1530 6.531276162993 0 +32 1533 6.531276162993 0 +32 1533 6.531276162993 0 +32 1541 6.531436162993 0 +32 1541 6.531436162993 0 +32 1576 6.557384421227 0 +32 1576 6.557384421227 0 +32 1591 6.557544421227 0 +32 1591 6.557544421227 0 +32 1642 6.643993628669 0 +32 1642 6.643993628669 0 +32 1653 6.644153628669 0 +32 1653 6.644153628669 0 +32 1687 6.81455731881 0 +32 1687 6.81455731881 0 +32 1702 6.81471731881 0 +32 1702 6.81471731881 0 +32 1719 6.824398906154 0 +32 1719 6.824398906154 0 +32 1730 6.824558906154 0 +32 1730 6.824558906154 0 +32 1746 6.831276162993 0 +32 1746 6.831276162993 2 +32 1747 6.831276162993 2 +32 1747 6.831276162993 0 +32 1750 6.831276162993 0 +32 1750 6.831276162993 0 +32 1758 6.831436162993 0 +32 1758 6.831436162993 0 +32 1793 6.857384420921 0 +32 1793 6.857384420921 0 +32 1808 6.857544420921 0 +32 1808 6.857544420921 0 +32 1859 6.943993626289 0 +32 1859 6.943993626289 0 +32 1870 6.944153626289 0 +32 1870 6.944153626289 0 +32 1904 7.114557307827 0 +32 1904 7.114557307827 0 +32 1919 7.114717307827 0 +32 1919 7.114717307827 0 +32 1936 7.124398906151 0 +32 1936 7.124398906151 0 +32 1947 7.124558906151 0 +32 1947 7.124558906151 0 +32 1963 7.131276162993 0 +32 1963 7.131276162993 2 +32 1964 7.131276162993 2 +32 1964 7.131276162993 0 +32 1967 7.131276162993 0 +32 1967 7.131276162993 0 +32 1975 7.131436162993 0 +32 1975 7.131436162993 0 +32 2010 7.157384420615 0 +32 2010 7.157384420615 0 +32 2025 7.157544420615 0 +32 2025 7.157544420615 0 +32 2076 7.243993623629 0 +32 2076 7.243993623629 0 +32 2087 7.244153623629 0 +32 2087 7.244153623629 0 +32 2121 7.414557296389 0 +32 2121 7.414557296389 0 +32 2136 7.414717296389 0 +32 2136 7.414717296389 0 +32 2153 7.424398906139 0 +32 2153 7.424398906139 0 +32 2164 7.424558906139 0 +32 2164 7.424558906139 0 +32 2180 7.431276162993 0 +32 2180 7.431276162993 2 +32 2181 7.431276162993 2 +32 2181 7.431276162993 0 +32 2184 7.431276162993 0 +32 2184 7.431276162993 0 +32 2192 7.431436162993 0 +32 2192 7.431436162993 0 +32 2227 7.45738442031 0 +32 2227 7.45738442031 0 +32 2242 7.45754442031 0 +32 2242 7.45754442031 0 +32 2293 7.543993620729 0 +32 2293 7.543993620729 0 +32 2304 7.544153620729 0 +32 2304 7.544153620729 0 +32 2338 7.714557284487 0 +32 2338 7.714557284487 0 +32 2353 7.714717284487 0 +32 2353 7.714717284487 0 +32 2370 7.72439890614 0 +32 2370 7.72439890614 0 +32 2381 7.72455890614 0 +32 2381 7.72455890614 0 +32 2397 7.731276162993 0 +32 2397 7.731276162993 2 +32 2398 7.731276162993 2 +32 2398 7.731276162993 0 +32 2401 7.731276162993 0 +32 2401 7.731276162993 0 +32 2409 7.731436162993 0 +32 2409 7.731436162993 0 +32 2444 7.757384420012 0 +32 2444 7.757384420012 0 +32 2459 7.757544420012 0 +32 2459 7.757544420012 0 +32 2510 7.843993617626 0 +32 2510 7.843993617626 0 +32 2521 7.844153617626 0 +32 2521 7.844153617626 0 +32 2555 8.014557271989 0 +32 2555 8.014557271989 0 +32 2570 8.014717271989 0 +32 2570 8.014717271989 0 +32 2587 8.024398906138 0 +32 2587 8.024398906138 0 +32 2598 8.024558906138 0 +32 2598 8.024558906138 0 +32 2614 8.031276162993 0 +32 2614 8.031276162993 2 +32 2615 8.031276162993 2 +32 2615 8.031276162993 0 +32 2618 8.031276162993 0 +32 2618 8.031276162993 0 +32 2626 8.031436162993 0 +32 2626 8.031436162993 0 +32 2661 8.057384419724 0 +32 2661 8.057384419724 0 +32 2676 8.057544419724 0 +32 2676 8.057544419724 0 +32 2727 8.143993614294 0 +32 2727 8.143993614294 0 +32 2738 8.144153614294 0 +32 2738 8.144153614294 0 +32 2772 8.314557258778 0 +32 2772 8.314557258778 0 +32 2787 8.314717258778 0 +32 2787 8.314717258778 0 +32 2804 8.324398906149 0 +32 2804 8.324398906149 0 +32 2815 8.324558906149 0 +32 2815 8.324558906149 0 +32 2835 8.331276162993 0 +32 2835 8.331276162993 2 +32 2836 8.331276162993 2 +32 2836 8.331276162993 0 +32 2839 8.331276162993 0 +32 2839 8.331276162993 0 +32 2847 8.331436162993 0 +32 2847 8.331436162993 0 +32 2882 8.357384419443 0 +32 2882 8.357384419443 0 +32 2897 8.357544419443 0 +32 2897 8.357544419443 0 +32 2948 8.443993610746 0 +32 2948 8.443993610746 0 +32 2959 8.444153610746 0 +32 2959 8.444153610746 0 +32 2997 8.614557244982 0 +32 2997 8.614557244982 0 +32 3012 8.614717244982 0 +32 3012 8.614717244982 0 +32 3029 8.624398906137 0 +32 3029 8.624398906137 0 +32 3040 8.624558906137 0 +32 3040 8.624558906137 0 +32 3060 8.631276162993 0 +32 3060 8.631276162993 2 +32 3061 8.631276162993 2 +32 3061 8.631276162993 0 +32 3064 8.631276162993 0 +32 3064 8.631276162993 0 +32 3072 8.631436162993 0 +32 3072 8.631436162993 0 +32 3107 8.657384419152 0 +32 3107 8.657384419152 0 +32 3122 8.657544419152 0 +32 3122 8.657544419152 0 +32 3173 8.74399360708 0 +32 3173 8.74399360708 0 +32 3184 8.74415360708 0 +32 3184 8.74415360708 0 +32 3221 8.91455723058 0 +32 3221 8.91455723058 0 +32 3232 8.91471723058 0 +32 3232 8.91471723058 0 +32 3254 8.924398906106 0 +32 3254 8.924398906106 0 +32 3265 8.924558906106 0 +32 3265 8.924558906106 0 +32 3285 8.931276162993 0 +32 3285 8.931276162993 2 +32 3286 8.931276162993 2 +32 3286 8.931276162993 0 +32 3289 8.931276162993 0 +32 3289 8.931276162993 0 +32 3297 8.931436162993 0 +32 3297 8.931436162993 0 +32 3332 8.957384418855 0 +32 3332 8.957384418855 0 +32 3347 8.957544418855 0 +32 3347 8.957544418855 0 +32 3398 9.043993603305 0 +32 3398 9.043993603305 0 +32 3409 9.044153603305 0 +32 3409 9.044153603305 0 +32 3446 9.214557215656 0 +32 3446 9.214557215656 0 +32 3457 9.214717215656 0 +32 3457 9.214717215656 0 +32 3479 9.224398906123 0 +32 3479 9.224398906123 0 +32 3490 9.224558906123 0 +32 3490 9.224558906123 0 +32 3510 9.231276162993 0 +32 3510 9.231276162993 2 +32 3511 9.231276162993 2 +32 3511 9.231276162993 0 +32 3514 9.231276162993 0 +32 3514 9.231276162993 0 +32 3522 9.231436162993 0 +32 3522 9.231436162993 0 +32 3557 9.257384418583 0 +32 3557 9.257384418583 0 +32 3572 9.257544418583 0 +32 3572 9.257544418583 0 +32 3623 9.343993599436 0 +32 3623 9.343993599436 0 +32 3634 9.344153599436 0 +32 3634 9.344153599436 0 +32 3671 9.514557200231 0 +32 3671 9.514557200231 0 +32 3682 9.514717200231 0 +32 3682 9.514717200231 0 +32 3704 9.524398906117 0 +32 3704 9.524398906117 0 +32 3715 9.524558906117 0 +32 3715 9.524558906117 0 +32 3735 9.531276162993 0 +32 3735 9.531276162993 2 +32 3736 9.531276162993 2 +32 3736 9.531276162993 0 +32 3739 9.531276162993 0 +32 3739 9.531276162993 0 +32 3747 9.531436162993 0 +32 3747 9.531436162993 0 +32 3782 9.557384418309 0 +32 3782 9.557384418309 0 +32 3797 9.557544418309 0 +32 3797 9.557544418309 0 +32 3848 9.643993595572 0 +32 3848 9.643993595572 0 +32 3859 9.644153595572 0 +32 3859 9.644153595572 0 +32 3896 9.814557184553 0 +32 3896 9.814557184553 0 +32 3907 9.814717184553 0 +32 3907 9.814717184553 0 +32 3929 9.824398906116 0 +32 3929 9.824398906116 0 +32 3940 9.824558906116 0 +32 3940 9.824558906116 0 +32 3960 9.831276162993 0 +32 3960 9.831276162993 2 +32 3961 9.831276162993 2 +32 3961 9.831276162993 0 +32 3964 9.831276162993 0 +32 3964 9.831276162993 0 +32 3972 9.831436162993 0 +32 3972 9.831436162993 0 +32 4007 9.857384418037 0 +32 4007 9.857384418037 0 +32 4022 9.857544418037 0 +32 4022 9.857544418037 0 +32 4073 9.943993591684 0 +32 4073 9.943993591684 0 +32 4084 9.944153591684 0 +32 4084 9.944153591684 0 +32 4121 10.114557168884 0 +32 4121 10.114557168884 0 +32 4132 10.114717168884 0 +32 4132 10.114717168884 0 +32 4154 10.124398906115 0 +32 4154 10.124398906115 0 +32 4165 10.124558906115 0 +32 4165 10.124558906115 0 +32 4185 10.131276162993 0 +32 4185 10.131276162993 2 +32 4186 10.131276162993 2 +32 4186 10.131276162993 0 +32 4189 10.131276162993 0 +32 4189 10.131276162993 0 +32 4197 10.131436162993 0 +32 4197 10.131436162993 0 +32 4232 10.15738441777 0 +32 4232 10.15738441777 0 +32 4247 10.15754441777 0 +32 4247 10.15754441777 0 +32 4298 10.243993587823 0 +32 4298 10.243993587823 0 +32 4309 10.244153587823 0 +32 4309 10.244153587823 0 +32 4346 10.414557153241 0 +32 4346 10.414557153241 0 +32 4357 10.414717153241 0 +32 4357 10.414717153241 0 +32 4379 10.424398906104 0 +32 4379 10.424398906104 0 +32 4390 10.424558906104 0 +32 4390 10.424558906104 0 +32 4410 10.431276162993 0 +32 4410 10.431276162993 2 +32 4411 10.431276162993 2 +32 4411 10.431276162993 0 +32 4414 10.431276162993 0 +32 4414 10.431276162993 0 +32 4422 10.431436162993 0 +32 4422 10.431436162993 0 +32 4457 10.457384417494 0 +32 4457 10.457384417494 0 +32 4472 10.457544417494 0 +32 4472 10.457544417494 0 +32 4523 10.543993584071 0 +32 4523 10.543993584071 0 +32 4534 10.544153584071 0 +32 4534 10.544153584071 0 +32 4575 10.7145571376 0 +32 4575 10.7145571376 0 +32 4586 10.7147171376 0 +32 4586 10.7147171376 0 +32 4612 10.724398906116 0 +32 4612 10.724398906116 0 +32 4623 10.724558906116 0 +32 4623 10.724558906116 0 +32 4643 10.731276162993 0 +32 4643 10.731276162993 2 +32 4644 10.731276162993 2 +32 4644 10.731276162993 0 +32 4647 10.731276162993 0 +32 4647 10.731276162993 0 +32 4655 10.731436162993 0 +32 4655 10.731436162993 0 +32 4690 10.757384417221 0 +32 4690 10.757384417221 0 +32 4705 10.757544417221 0 +32 4705 10.757544417221 0 +32 4756 10.843993580594 0 +32 4756 10.843993580594 0 +32 4767 10.844153580594 0 +32 4767 10.844153580594 0 +32 4808 11.014557121962 0 +32 4808 11.014557121962 0 +32 4819 11.014717121962 0 +32 4819 11.014717121962 0 +32 4845 11.024398906108 0 +32 4845 11.024398906108 0 +32 4856 11.024558906108 0 +32 4856 11.024558906108 0 +32 4876 11.031276162993 0 +32 4876 11.031276162993 2 +32 4877 11.031276162993 2 +32 4877 11.031276162993 0 +32 4880 11.031276162993 0 +32 4880 11.031276162993 0 +32 4888 11.031436162993 0 +32 4888 11.031436162993 0 +32 4923 11.057384416961 0 +32 4923 11.057384416961 0 +32 4938 11.057544416961 0 +32 4938 11.057544416961 0 +32 4989 11.1439935782 0 +32 4989 11.1439935782 0 +32 5000 11.1441535782 0 +32 5000 11.1441535782 0 +32 5041 11.314557106356 0 +32 5041 11.314557106356 0 +32 5052 11.314717106356 0 +32 5052 11.314717106356 0 +32 5078 11.324398906123 0 +32 5078 11.324398906123 0 +32 5089 11.324558906123 0 +32 5089 11.324558906123 0 +32 5109 11.331276162993 0 +32 5109 11.331276162993 2 +32 5110 11.331276162993 2 +32 5110 11.331276162993 0 +32 5113 11.331276162993 0 +32 5113 11.331276162993 0 +32 5121 11.331436162993 0 +32 5121 11.331436162993 0 +32 5156 11.357384416695 0 +32 5156 11.357384416695 0 +32 5171 11.357544416695 0 +32 5171 11.357544416695 0 +32 5189 11.393586261354 0 +32 5189 11.393586261354 0 +32 5200 11.393746261354 0 +32 5200 11.393746261354 0 +32 5222 11.443993576825 0 +32 5222 11.443993576825 0 +32 5233 11.444153576825 0 +32 5233 11.444153576825 0 +32 5274 11.614557090743 0 +32 5274 11.614557090743 0 +32 5285 11.614717090743 0 +32 5285 11.614717090743 0 +32 5311 11.624398906133 0 +32 5311 11.624398906133 0 +32 5322 11.624558906133 0 +32 5322 11.624558906133 0 +32 5342 11.631276162993 0 +32 5342 11.631276162993 2 +32 5343 11.631276162993 2 +32 5343 11.631276162993 0 +32 5346 11.631276162993 0 +32 5346 11.631276162993 0 +32 5354 11.631436162993 0 +32 5354 11.631436162993 0 +32 5393 11.657384416441 0 +32 5393 11.657384416441 0 +32 5408 11.657544416441 0 +32 5408 11.657544416441 0 +32 5426 11.693586259603 0 +32 5426 11.693586259603 0 +32 5437 11.693746259603 0 +32 5437 11.693746259603 0 +32 5463 11.743993576355 0 +32 5463 11.743993576355 0 +32 5474 11.744153576355 0 +32 5474 11.744153576355 0 +32 5515 11.914557075093 0 +32 5515 11.914557075093 0 +32 5526 11.914717075093 0 +32 5526 11.914717075093 0 +32 5552 11.924398906131 0 +32 5552 11.924398906131 0 +32 5563 11.924558906131 0 +32 5563 11.924558906131 0 +32 5583 11.931276162993 0 +32 5583 11.931276162993 2 +32 5584 11.931276162993 2 +32 5584 11.931276162993 0 +32 5587 11.931276162993 0 +32 5587 11.931276162993 0 +32 5595 11.931436162993 0 +32 5595 11.931436162993 0 +32 5634 11.957384416181 0 +32 5634 11.957384416181 0 +32 5649 11.957544416181 0 +32 5649 11.957544416181 0 +32 5667 11.993586257957 0 +32 5667 11.993586257957 0 +32 5678 11.993746257957 0 +32 5678 11.993746257957 0 +32 5704 12.043993576682 0 +32 5704 12.043993576682 0 +32 5715 12.044153576682 0 +32 5715 12.044153576682 0 +32 5756 12.214557059446 0 +32 5756 12.214557059446 0 +32 5767 12.214717059446 0 +32 5767 12.214717059446 0 +32 5793 12.22439890615 0 +32 5793 12.22439890615 0 +32 5804 12.22455890615 0 +32 5804 12.22455890615 0 +32 5824 12.231276162993 0 +32 5824 12.231276162993 2 +32 5825 12.231276162993 2 +32 5825 12.231276162993 0 +32 5828 12.231276162993 0 +32 5828 12.231276162993 0 +32 5836 12.231436162993 0 +32 5836 12.231436162993 0 +32 5875 12.25738441593 0 +32 5875 12.25738441593 0 +32 5890 12.25754441593 0 +32 5890 12.25754441593 0 +32 5908 12.293586256438 0 +32 5908 12.293586256438 0 +32 5919 12.293746256438 0 +32 5919 12.293746256438 0 +32 5945 12.343993577342 0 +32 5945 12.343993577342 0 +32 5956 12.344153577342 0 +32 5956 12.344153577342 0 +32 5997 12.514557043815 0 +32 5997 12.514557043815 0 +32 6008 12.514717043815 0 +32 6008 12.514717043815 0 +32 6034 12.524398906142 0 +32 6034 12.524398906142 0 +32 6045 12.524558906142 0 +32 6045 12.524558906142 0 +32 6065 12.531276162993 0 +32 6065 12.531276162993 2 +32 6066 12.531276162993 2 +32 6066 12.531276162993 0 +32 6069 12.531276162993 0 +32 6069 12.531276162993 0 +32 6077 12.531436162993 0 +32 6077 12.531436162993 0 +32 6116 12.557384415683 0 +32 6116 12.557384415683 0 +32 6131 12.557544415683 0 +32 6131 12.557544415683 0 +32 6149 12.593586255105 0 +32 6149 12.593586255105 0 +32 6160 12.593746255105 0 +32 6160 12.593746255105 0 +32 6186 12.643993578007 0 +32 6186 12.643993578007 0 +32 6197 12.644153578007 0 +32 6197 12.644153578007 0 +32 6238 12.814557028193 0 +32 6238 12.814557028193 0 +32 6249 12.814717028193 0 +32 6249 12.814717028193 0 +32 6275 12.824398906145 0 +32 6275 12.824398906145 0 +32 6286 12.824558906145 0 +32 6286 12.824558906145 0 +32 6306 12.831276162993 0 +32 6306 12.831276162993 2 +32 6307 12.831276162993 2 +32 6307 12.831276162993 0 +32 6310 12.831276162993 0 +32 6310 12.831276162993 0 +32 6318 12.831436162993 0 +32 6318 12.831436162993 0 +32 6357 12.857384415431 0 +32 6357 12.857384415431 0 +32 6372 12.857544415431 0 +32 6372 12.857544415431 0 +32 6390 12.893586254045 0 +32 6390 12.893586254045 0 +32 6401 12.893746254045 0 +32 6401 12.893746254045 0 +32 6427 12.943993578695 0 +32 6427 12.943993578695 0 +32 6438 12.944153578695 0 +32 6438 12.944153578695 0 +32 6479 13.114557012525 0 +32 6479 13.114557012525 0 +32 6490 13.114717012525 0 +32 6490 13.114717012525 0 +32 6516 13.124398906128 0 +32 6516 13.124398906128 0 +32 6527 13.124558906128 0 +32 6527 13.124558906128 0 +32 6547 13.131276162993 0 +32 6547 13.131276162993 2 +32 6548 13.131276162993 2 +32 6548 13.131276162993 0 +32 6551 13.131276162993 0 +32 6551 13.131276162993 0 +32 6559 13.131436162993 0 +32 6559 13.131436162993 0 +32 6598 13.157384415176 0 +32 6598 13.157384415176 0 +32 6613 13.157544415176 0 +32 6613 13.157544415176 0 +32 6631 13.193586253273 0 +32 6631 13.193586253273 0 +32 6642 13.193746253273 0 +32 6642 13.193746253273 0 +32 6668 13.243993579376 0 +32 6668 13.243993579376 0 +32 6679 13.244153579376 0 +32 6679 13.244153579376 0 +32 6720 13.414556996915 0 +32 6720 13.414556996915 0 +32 6731 13.414716996915 0 +32 6731 13.414716996915 0 +32 6757 13.424398906138 0 +32 6757 13.424398906138 0 +32 6768 13.424558906138 0 +32 6768 13.424558906138 0 +32 6788 13.431276162993 0 +32 6788 13.431276162993 2 +32 6789 13.431276162993 2 +32 6789 13.431276162993 0 +32 6792 13.431276162993 0 +32 6792 13.431276162993 0 +32 6800 13.431436162993 0 +32 6800 13.431436162993 0 +32 6839 13.45738441494 0 +32 6839 13.45738441494 0 +32 6854 13.45754441494 0 +32 6854 13.45754441494 0 +32 6872 13.493586252758 0 +32 6872 13.493586252758 0 +32 6883 13.493746252758 0 +32 6883 13.493746252758 0 +32 6909 13.543993580057 0 +32 6909 13.543993580057 0 +32 6920 13.544153580057 0 +32 6920 13.544153580057 0 +32 6961 13.714556981296 0 +32 6961 13.714556981296 0 +32 6972 13.714716981296 0 +32 6972 13.714716981296 0 +32 6998 13.724398906143 0 +32 6998 13.724398906143 0 +32 7009 13.724558906143 0 +32 7009 13.724558906143 0 +32 7029 13.731276162993 0 +32 7029 13.731276162993 2 +32 7030 13.731276162993 2 +32 7030 13.731276162993 0 +32 7033 13.731276162993 0 +32 7033 13.731276162993 0 +32 7041 13.731436162993 0 +32 7041 13.731436162993 0 +32 7080 13.75738441469 0 +32 7080 13.75738441469 0 +32 7095 13.75754441469 0 +32 7095 13.75754441469 0 +32 7113 13.793586252521 0 +32 7113 13.793586252521 0 +32 7124 13.793746252521 0 +32 7124 13.793746252521 0 +32 7150 13.843993580742 0 +32 7150 13.843993580742 0 +32 7161 13.844153580742 0 +32 7161 13.844153580742 0 +32 7201 14.014556965625 0 +32 7201 14.014556965625 0 +32 7208 14.014716965625 0 +32 7208 14.014716965625 0 +32 7239 14.024398906136 0 +32 7239 14.024398906136 0 +32 7250 14.024558906136 0 +32 7250 14.024558906136 0 +32 7270 14.031276162993 0 +32 7270 14.031276162993 2 +32 7271 14.031276162993 2 +32 7271 14.031276162993 0 +32 7274 14.031276162993 0 +32 7274 14.031276162993 0 +32 7282 14.031436162993 0 +32 7282 14.031436162993 0 +32 7321 14.057384414442 0 +32 7321 14.057384414442 0 +32 7336 14.057544414442 0 +32 7336 14.057544414442 0 +32 7354 14.093586252556 0 +32 7354 14.093586252556 0 +32 7365 14.093746252556 0 +32 7365 14.093746252556 0 +32 7391 14.143993581436 0 +32 7391 14.143993581436 0 +32 7402 14.144153581436 0 +32 7402 14.144153581436 0 +32 7442 14.314556950015 0 +32 7442 14.314556950015 0 +32 7449 14.314716950015 0 +32 7449 14.314716950015 0 +32 7480 14.324398906149 0 +32 7480 14.324398906149 0 +32 7491 14.324558906149 0 +32 7491 14.324558906149 0 +32 7511 14.331276162993 0 +32 7511 14.331276162993 2 +32 7512 14.331276162993 2 +32 7512 14.331276162993 0 +32 7515 14.331276162993 0 +32 7515 14.331276162993 0 +32 7523 14.331436162993 0 +32 7523 14.331436162993 0 +32 7562 14.357384414212 0 +32 7562 14.357384414212 0 +32 7577 14.357544414212 0 +32 7577 14.357544414212 0 +32 7595 14.393586252856 0 +32 7595 14.393586252856 0 +32 7606 14.393746252856 0 +32 7606 14.393746252856 0 +32 7632 14.443993582121 0 +32 7632 14.443993582121 0 +32 7643 14.444153582121 0 +32 7643 14.444153582121 0 +32 7683 14.614556934427 0 +32 7683 14.614556934427 0 +32 7690 14.614716934427 0 +32 7690 14.614716934427 0 +32 7721 14.624398906139 0 +32 7721 14.624398906139 0 +32 7732 14.624558906139 0 +32 7732 14.624558906139 0 +32 7752 14.631276162993 0 +32 7752 14.631276162993 2 +32 7753 14.631276162993 2 +32 7753 14.631276162993 0 +32 7756 14.631276162993 0 +32 7756 14.631276162993 0 +32 7764 14.631436162993 0 +32 7764 14.631436162993 0 +32 7803 14.657384413973 0 +32 7803 14.657384413973 0 +32 7818 14.657544413973 0 +32 7818 14.657544413973 0 +32 7836 14.693586253132 0 +32 7836 14.693586253132 0 +32 7847 14.693746253132 0 +32 7847 14.693746253132 0 +32 7873 14.743993582821 0 +32 7873 14.743993582821 0 +32 7884 14.744153582821 0 +32 7884 14.744153582821 0 +32 7924 14.914556918856 0 +32 7924 14.914556918856 0 +32 7931 14.914716918856 0 +32 7931 14.914716918856 0 +32 7962 14.924398906135 0 +32 7962 14.924398906135 0 +32 7973 14.924558906135 0 +32 7973 14.924558906135 0 +32 7993 14.931276162993 0 +32 7993 14.931276162993 2 +32 7994 14.931276162993 2 +32 7994 14.931276162993 0 +32 7997 14.931276162993 0 +32 7997 14.931276162993 0 +32 8005 14.931436162993 0 +32 8005 14.931436162993 0 +32 8044 14.957384413742 0 +32 8044 14.957384413742 0 +32 8059 14.957544413742 0 +32 8059 14.957544413742 0 +32 8077 14.993586247233 0 +32 8077 14.993586247233 0 +32 8088 14.993746247233 0 +32 8088 14.993746247233 0 +32 8114 15.043993583523 0 +32 8114 15.043993583523 0 +32 8125 15.044153583523 0 +32 8125 15.044153583523 0 +32 8165 15.214556903292 0 +32 8165 15.214556903292 0 +32 8172 15.214716903292 0 +32 8172 15.214716903292 0 +32 8203 15.22439890612 0 +32 8203 15.22439890612 0 +32 8214 15.22455890612 0 +32 8214 15.22455890612 0 +32 8234 15.231276162993 0 +32 8234 15.231276162993 2 +32 8235 15.231276162993 2 +32 8235 15.231276162993 0 +32 8238 15.231276162993 0 +32 8238 15.231276162993 0 +32 8246 15.231436162993 0 +32 8246 15.231436162993 0 +32 8285 15.257384413499 0 +32 8285 15.257384413499 0 +32 8300 15.257544413499 0 +32 8300 15.257544413499 0 +32 8318 15.293586234372 0 +32 8318 15.293586234372 0 +32 8329 15.293746234372 0 +32 8329 15.293746234372 0 +32 8355 15.343993584234 0 +32 8355 15.343993584234 0 +32 8366 15.344153584234 0 +32 8366 15.344153584234 0 +32 8406 15.514556887741 0 +32 8406 15.514556887741 0 +32 8413 15.514716887741 0 +32 8413 15.514716887741 0 +32 8444 15.524398906129 0 +32 8444 15.524398906129 0 +32 8455 15.524558906129 0 +32 8455 15.524558906129 0 +32 8475 15.531276162993 0 +32 8475 15.531276162993 2 +32 8476 15.531276162993 2 +32 8476 15.531276162993 0 +32 8479 15.531276162993 0 +32 8479 15.531276162993 0 +32 8487 15.531436162993 0 +32 8487 15.531436162993 0 +32 8526 15.557384413279 0 +32 8526 15.557384413279 0 +32 8541 15.557544413279 0 +32 8541 15.557544413279 0 +32 8559 15.59358622109 0 +32 8559 15.59358622109 0 +32 8570 15.59374622109 0 +32 8570 15.59374622109 0 +32 8596 15.643993584927 0 +32 8596 15.643993584927 0 +32 8607 15.644153584927 0 +32 8607 15.644153584927 0 +32 8647 15.814556872317 0 +32 8647 15.814556872317 0 +32 8654 15.814716872317 0 +32 8654 15.814716872317 0 +32 8685 15.82439890615 0 +32 8685 15.82439890615 0 +32 8696 15.82455890615 0 +32 8696 15.82455890615 0 +32 8716 15.831276162993 0 +32 8716 15.831276162993 2 +32 8717 15.831276162993 2 +32 8717 15.831276162993 0 +32 8720 15.831276162993 0 +32 8720 15.831276162993 0 +32 8728 15.831436162993 0 +32 8728 15.831436162993 0 +32 8767 15.857384413074 0 +32 8767 15.857384413074 0 +32 8782 15.857544413074 0 +32 8782 15.857544413074 0 +32 8800 15.893586207767 0 +32 8800 15.893586207767 0 +32 8811 15.893746207767 0 +32 8811 15.893746207767 0 +32 8837 15.943993585623 0 +32 8837 15.943993585623 0 +32 8848 15.944153585623 0 +32 8848 15.944153585623 0 +32 8888 16.114556856962 0 +32 8888 16.114556856962 0 +32 8895 16.114716856962 0 +32 8895 16.114716856962 0 +32 8930 16.124398906134 0 +32 8930 16.124398906134 0 +32 8941 16.124558906134 0 +32 8941 16.124558906134 0 +32 8961 16.131276162993 0 +32 8961 16.131276162993 2 +32 8962 16.131276162993 2 +32 8962 16.131276162993 0 +32 8965 16.131276162993 0 +32 8965 16.131276162993 0 +32 8973 16.131436162993 0 +32 8973 16.131436162993 0 +32 9012 16.157384412841 0 +32 9012 16.157384412841 0 +32 9027 16.157544412841 0 +32 9027 16.157544412841 0 +32 9045 16.19358619447 0 +32 9045 16.19358619447 0 +32 9056 16.19374619447 0 +32 9056 16.19374619447 0 +32 9086 16.243993586344 0 +32 9086 16.243993586344 0 +32 9097 16.244153586344 0 +32 9097 16.244153586344 0 +32 9137 16.414556841879 0 +32 9137 16.414556841879 0 +32 9144 16.414716841879 0 +32 9144 16.414716841879 0 +32 9179 16.42439890611 0 +32 9179 16.42439890611 0 +32 9190 16.42455890611 0 +32 9190 16.42455890611 0 +32 9210 16.431276162993 0 +32 9210 16.431276162993 2 +32 9211 16.431276162993 2 +32 9211 16.431276162993 0 +32 9214 16.431276162993 0 +32 9214 16.431276162993 0 +32 9222 16.431436162993 0 +32 9222 16.431436162993 0 +32 9261 16.457384412619 0 +32 9261 16.457384412619 0 +32 9276 16.457544412619 0 +32 9276 16.457544412619 0 +32 9294 16.493586182941 0 +32 9294 16.493586182941 0 +32 9305 16.493746182941 0 +32 9305 16.493746182941 0 +32 9335 16.543993587061 0 +32 9335 16.543993587061 0 +32 9346 16.544153587061 0 +32 9346 16.544153587061 0 +32 9386 16.714556827831 0 +32 9386 16.714556827831 0 +32 9393 16.714716827831 0 +32 9393 16.714716827831 0 +32 9428 16.72439890611 0 +32 9428 16.72439890611 0 +32 9439 16.72455890611 0 +32 9439 16.72455890611 0 +32 9459 16.731276162993 0 +32 9459 16.731276162993 2 +32 9460 16.731276162993 2 +32 9460 16.731276162993 0 +32 9463 16.731276162993 0 +32 9463 16.731276162993 0 +32 9471 16.731436162993 0 +32 9471 16.731436162993 0 +32 9510 16.757384412406 0 +32 9510 16.757384412406 0 +32 9525 16.757544412406 0 +32 9525 16.757544412406 0 +32 9543 16.793586174099 0 +32 9543 16.793586174099 0 +32 9554 16.793746174099 0 +32 9554 16.793746174099 0 +32 9584 16.843993587769 0 +32 9584 16.843993587769 0 +32 9595 16.844153587769 0 +32 9595 16.844153587769 0 +32 9635 17.01455682019 0 +32 9635 17.01455682019 0 +32 9642 17.01471682019 0 +32 9642 17.01471682019 0 +32 9676 17.024398906114 0 +32 9676 17.024398906114 0 +32 9683 17.024558906114 0 +32 9683 17.024558906114 0 +32 9708 17.031276162993 0 +32 9708 17.031276162993 2 +32 9709 17.031276162993 2 +32 9709 17.031276162993 0 +32 9712 17.031276162993 0 +32 9712 17.031276162993 0 +32 9720 17.031436162993 0 +32 9720 17.031436162993 0 +32 9759 17.057384412189 0 +32 9759 17.057384412189 0 +32 9774 17.057544412189 0 +32 9774 17.057544412189 0 +32 9793 17.093586167963 0 +32 9793 17.093586167963 0 +32 9808 17.093746167963 0 +32 9808 17.093746167963 0 +32 9834 17.143993588488 0 +32 9834 17.143993588488 0 +32 9849 17.144153588488 0 +32 9849 17.144153588488 0 +32 9884 17.314556829071 0 +32 9884 17.314556829071 0 +32 9891 17.314716829071 0 +32 9891 17.314716829071 0 +32 9925 17.324398906121 0 +32 9925 17.324398906121 0 +32 9932 17.324558906121 0 +32 9932 17.324558906121 0 +32 9957 17.331276162993 0 +32 9957 17.331276162993 2 +32 9958 17.331276162993 2 +32 9958 17.331276162993 0 +32 9961 17.331276162993 0 +32 9961 17.331276162993 0 +32 9969 17.331436162993 0 +32 9969 17.331436162993 0 +32 10007 17.357384411975 0 +32 10007 17.357384411975 0 +32 10018 17.357544411975 0 +32 10018 17.357544411975 0 +32 10042 17.393586164536 0 +32 10042 17.393586164536 0 +32 10057 17.393746164536 0 +32 10057 17.393746164536 0 +32 10083 17.44399358921 0 +32 10083 17.44399358921 0 +32 10098 17.44415358921 0 +32 10098 17.44415358921 0 +32 10133 17.614556843292 0 +32 10133 17.614556843292 0 +32 10140 17.614716843292 0 +32 10140 17.614716843292 0 +32 10174 17.624398906125 0 +32 10174 17.624398906125 0 +32 10181 17.624558906125 0 +32 10181 17.624558906125 0 +32 10206 17.631276162993 0 +32 10206 17.631276162993 2 +32 10207 17.631276162993 2 +32 10207 17.631276162993 0 +32 10210 17.631276162993 0 +32 10210 17.631276162993 0 +32 10218 17.631436162993 0 +32 10218 17.631436162993 0 +32 10256 17.657384411748 0 +32 10256 17.657384411748 0 +32 10267 17.657544411748 0 +32 10267 17.657544411748 0 +32 10291 17.693586163751 0 +32 10291 17.693586163751 0 +32 10306 17.693746163751 0 +32 10306 17.693746163751 0 +32 10332 17.743993589932 0 +32 10332 17.743993589932 0 +32 10347 17.744153589932 0 +32 10347 17.744153589932 0 +32 10382 17.914556858379 0 +32 10382 17.914556858379 0 +32 10389 17.914716858379 0 +32 10389 17.914716858379 0 +32 10419 17.924398906139 0 +32 10419 17.924398906139 0 +32 10426 17.924558906139 0 +32 10426 17.924558906139 0 +32 10451 17.931276162993 0 +32 10451 17.931276162993 2 +32 10452 17.931276162993 2 +32 10452 17.931276162993 0 +32 10455 17.931276162993 0 +32 10455 17.931276162993 0 +32 10463 17.931436162993 0 +32 10463 17.931436162993 0 +32 10501 17.957384411544 0 +32 10501 17.957384411544 0 +32 10512 17.957544411544 0 +32 10512 17.957544411544 0 +32 10532 17.993586163742 0 +32 10532 17.993586163742 0 +32 10547 17.993746163742 0 +32 10547 17.993746163742 0 +32 10573 18.043993590647 0 +32 10573 18.043993590647 0 +32 10588 18.044153590647 0 +32 10588 18.044153590647 0 +32 10623 18.214556873732 0 +32 10623 18.214556873732 0 +32 10630 18.214716873732 0 +32 10630 18.214716873732 0 +32 10660 18.22439890616 0 +32 10660 18.22439890616 0 +32 10667 18.22455890616 0 +32 10667 18.22455890616 0 +32 10688 18.231276162993 0 +32 10688 18.231276162993 2 +32 10689 18.231276162993 2 +32 10689 18.231276162993 0 +32 10692 18.231276162993 0 +32 10692 18.231276162993 0 +32 10700 18.231436162993 0 +32 10700 18.231436162993 0 +32 10738 18.257384411348 0 +32 10738 18.257384411348 0 +32 10749 18.257544411348 0 +32 10749 18.257544411348 0 +32 10769 18.29358616373 0 +32 10769 18.29358616373 0 +32 10784 18.29374616373 0 +32 10784 18.29374616373 0 +32 10810 18.343993591375 0 +32 10810 18.343993591375 0 +32 10825 18.344153591375 0 +32 10825 18.344153591375 0 +32 10856 18.514556889096 0 +32 10856 18.514556889096 0 +32 10863 18.514716889096 0 +32 10863 18.514716889096 0 +32 10893 18.524398906161 0 +32 10893 18.524398906161 0 +32 10900 18.524558906161 0 +32 10900 18.524558906161 0 +32 10921 18.531276162993 0 +32 10921 18.531276162993 2 +32 10922 18.531276162993 2 +32 10922 18.531276162993 0 +32 10925 18.531276162993 0 +32 10925 18.531276162993 0 +32 10933 18.531436162993 0 +32 10933 18.531436162993 0 +32 10971 18.557384411139 0 +32 10971 18.557384411139 0 +32 10982 18.557544411139 0 +32 10982 18.557544411139 0 +32 11002 18.593586163725 0 +32 11002 18.593586163725 0 +32 11017 18.593746163725 0 +32 11017 18.593746163725 0 +32 11043 18.64399359211 0 +32 11043 18.64399359211 0 +32 11058 18.64415359211 0 +32 11058 18.64415359211 0 +32 11089 18.814556899317 0 +32 11089 18.814556899317 0 +32 11096 18.814716899317 0 +32 11096 18.814716899317 0 +32 11126 18.824398906157 0 +32 11126 18.824398906157 0 +32 11133 18.824558906157 0 +32 11133 18.824558906157 0 +32 11154 18.831276162993 0 +32 11154 18.831276162993 2 +32 11155 18.831276162993 2 +32 11155 18.831276162993 0 +32 11158 18.831276162993 0 +32 11158 18.831276162993 0 +32 11166 18.831436162993 0 +32 11166 18.831436162993 0 +32 11204 18.857384410943 0 +32 11204 18.857384410943 0 +32 11215 18.857544410943 0 +32 11215 18.857544410943 0 +32 11235 18.893586163718 0 +32 11235 18.893586163718 0 +32 11250 18.893746163718 0 +32 11250 18.893746163718 0 +32 11276 18.943993592844 0 +32 11276 18.943993592844 0 +32 11291 18.944153592844 0 +32 11291 18.944153592844 0 +32 11322 19.114556905927 0 +32 11322 19.114556905927 0 +32 11329 19.114716905927 0 +32 11329 19.114716905927 0 +32 11359 19.124398906156 0 +32 11359 19.124398906156 0 +32 11366 19.124558906156 0 +32 11366 19.124558906156 0 +32 11387 19.131276162993 0 +32 11387 19.131276162993 2 +32 11388 19.131276162993 2 +32 11388 19.131276162993 0 +32 11391 19.131276162993 0 +32 11391 19.131276162993 0 +32 11399 19.131436162993 0 +32 11399 19.131436162993 0 +32 11437 19.157384410755 0 +32 11437 19.157384410755 0 +32 11448 19.157544410755 0 +32 11448 19.157544410755 0 +32 11468 19.193586163706 0 +32 11468 19.193586163706 0 +32 11483 19.193746163706 0 +32 11483 19.193746163706 0 +32 11509 19.243993593591 0 +32 11509 19.243993593591 0 +32 11524 19.244153593591 0 +32 11524 19.244153593591 0 +32 11555 19.414556913869 0 +32 11555 19.414556913869 0 +32 11562 19.414716913869 0 +32 11562 19.414716913869 0 +32 11592 19.424398906135 0 +32 11592 19.424398906135 0 +32 11599 19.424558906135 0 +32 11599 19.424558906135 0 +32 11620 19.431276162993 0 +32 11620 19.431276162993 2 +32 11621 19.431276162993 2 +32 11621 19.431276162993 0 +32 11624 19.431276162993 0 +32 11624 19.431276162993 0 +32 11632 19.431436162993 0 +32 11632 19.431436162993 0 +32 11670 19.457384410552 0 +32 11670 19.457384410552 0 +32 11681 19.457544410552 0 +32 11681 19.457544410552 0 +32 11701 19.49358616371 0 +32 11701 19.49358616371 0 +32 11716 19.49374616371 0 +32 11716 19.49374616371 0 +32 11742 19.543993594392 0 +32 11742 19.543993594392 0 +32 11757 19.544153594392 0 +32 11757 19.544153594392 0 +32 11788 19.714556923553 0 +32 11788 19.714556923553 0 +32 11795 19.714716923553 0 +32 11795 19.714716923553 0 +32 11825 19.724398906093 0 +32 11825 19.724398906093 0 +32 11832 19.724558906093 0 +32 11832 19.724558906093 0 +32 11853 19.731276162993 0 +32 11853 19.731276162993 2 +32 11854 19.731276162993 2 +32 11854 19.731276162993 0 +32 11857 19.731276162993 0 +32 11857 19.731276162993 0 +32 11865 19.731436162993 0 +32 11865 19.731436162993 0 +32 11903 19.757384409991 0 +32 11903 19.757384409991 0 +32 11914 19.757544409991 0 +32 11914 19.757544409991 0 +32 11934 19.793586163688 0 +32 11934 19.793586163688 0 +32 11949 19.793746163688 0 +32 11949 19.793746163688 0 +32 11975 19.843993595698 0 +32 11975 19.843993595698 0 +32 11990 19.844153595698 0 +32 11990 19.844153595698 0 +32 12021 20.014556934723 0 +32 12021 20.014556934723 0 +32 12028 20.014716934723 0 +32 12028 20.014716934723 0 +32 12062 20.024398905916 0 +32 12062 20.024398905916 0 +32 12069 20.024558905916 0 +32 12069 20.024558905916 0 +32 12090 20.031276162993 0 +32 12090 20.031276162993 2 +32 12091 20.031276162993 2 +32 12091 20.031276162993 0 +32 12094 20.031276162993 0 +32 12094 20.031276162993 0 +32 12102 20.031436162993 0 +32 12102 20.031436162993 0 +32 12140 20.057384408842 0 +32 12140 20.057384408842 0 +32 12151 20.057544408842 0 +32 12151 20.057544408842 0 +32 12175 20.0935861637 0 +32 12175 20.0935861637 0 +32 12190 20.0937461637 0 +32 12190 20.0937461637 0 +32 12216 20.143993597547 0 +32 12216 20.143993597547 0 +32 12231 20.144153597547 0 +32 12231 20.144153597547 0 +32 12262 20.314556946995 0 +32 12262 20.314556946995 0 +32 12269 20.314716946995 0 +32 12269 20.314716946995 0 +32 12303 20.324398905745 0 +32 12303 20.324398905745 0 +32 12310 20.324558905745 0 +32 12310 20.324558905745 0 +32 12331 20.331276162993 0 +32 12331 20.331276162993 2 +32 12332 20.331276162993 2 +32 12332 20.331276162993 0 +32 12335 20.331276162993 0 +32 12335 20.331276162993 0 +32 12343 20.331436162993 0 +32 12343 20.331436162993 0 +32 12381 20.357384407512 0 +32 12381 20.357384407512 0 +32 12392 20.357544407512 0 +32 12392 20.357544407512 0 +32 12416 20.393586163659 0 +32 12416 20.393586163659 0 +32 12431 20.393746163659 0 +32 12431 20.393746163659 0 +32 12457 20.443993599834 0 +32 12457 20.443993599834 0 +32 12472 20.444153599834 0 +32 12472 20.444153599834 0 +32 12503 20.614556960156 0 +32 12503 20.614556960156 0 +32 12510 20.614716960156 0 +32 12510 20.614716960156 0 +32 12544 20.624398905622 0 +32 12544 20.624398905622 0 +32 12551 20.624558905622 0 +32 12551 20.624558905622 0 +32 12572 20.631276162993 0 +32 12572 20.631276162993 2 +32 12573 20.631276162993 2 +32 12573 20.631276162993 0 +32 12576 20.631276162993 0 +32 12576 20.631276162993 0 +32 12584 20.631436162993 0 +32 12584 20.631436162993 0 +32 12622 20.6573844061 0 +32 12622 20.6573844061 0 +32 12633 20.6575444061 0 +32 12633 20.6575444061 0 +32 12657 20.693586163661 0 +32 12657 20.693586163661 0 +32 12672 20.693746163661 0 +32 12672 20.693746163661 0 +32 12698 20.743993602682 0 +32 12698 20.743993602682 0 +32 12713 20.744153602682 0 +32 12713 20.744153602682 0 +32 12744 20.914556974042 0 +32 12744 20.914556974042 0 +32 12751 20.914716974042 0 +32 12751 20.914716974042 0 +32 12785 20.924398905643 0 +32 12785 20.924398905643 0 +32 12792 20.924558905643 0 +32 12792 20.924558905643 0 +32 12813 20.931276162993 0 +32 12813 20.931276162993 2 +32 12814 20.931276162993 2 +32 12814 20.931276162993 0 +32 12817 20.931276162993 0 +32 12817 20.931276162993 0 +32 12825 20.931436162993 0 +32 12825 20.931436162993 0 +32 12863 20.957384404581 0 +32 12863 20.957384404581 0 +32 12874 20.957544404581 0 +32 12874 20.957544404581 0 +32 12898 20.993586163701 0 +32 12898 20.993586163701 0 +32 12913 20.993746163701 0 +32 12913 20.993746163701 0 +32 12939 21.043993605975 0 +32 12939 21.043993605975 0 +32 12954 21.044153605975 0 +32 12954 21.044153605975 0 +32 12985 21.214556988437 0 +32 12985 21.214556988437 0 +32 12992 21.214716988437 0 +32 12992 21.214716988437 0 +32 13026 21.22439890572 0 +32 13026 21.22439890572 0 +32 13033 21.22455890572 0 +32 13033 21.22455890572 0 +32 13054 21.231276162993 0 +32 13054 21.231276162993 2 +32 13055 21.231276162993 2 +32 13055 21.231276162993 0 +32 13058 21.231276162993 0 +32 13058 21.231276162993 0 +32 13066 21.231436162993 0 +32 13066 21.231436162993 0 +32 13104 21.257384403056 0 +32 13104 21.257384403056 0 +32 13115 21.257544403056 0 +32 13115 21.257544403056 0 +32 13139 21.293586163789 0 +32 13139 21.293586163789 0 +32 13154 21.293746163789 0 +32 13154 21.293746163789 0 +32 13180 21.343993609822 0 +32 13180 21.343993609822 0 +32 13195 21.344153609822 0 +32 13195 21.344153609822 0 +32 13226 21.514557003324 0 +32 13226 21.514557003324 0 +32 13233 21.514717003324 0 +32 13233 21.514717003324 0 +32 13267 21.524398905746 0 +32 13267 21.524398905746 0 +32 13274 21.524558905746 0 +32 13274 21.524558905746 0 +32 13295 21.531276162993 0 +32 13295 21.531276162993 2 +32 13296 21.531276162993 2 +32 13296 21.531276162993 0 +32 13299 21.531276162993 0 +32 13299 21.531276162993 0 +32 13307 21.531436162993 0 +32 13307 21.531436162993 0 +32 13345 21.557384401467 0 +32 13345 21.557384401467 0 +32 13356 21.557544401467 0 +32 13356 21.557544401467 0 +32 13380 21.593586163828 0 +32 13380 21.593586163828 0 +32 13395 21.593746163828 0 +32 13395 21.593746163828 0 +32 13421 21.643993614218 0 +32 13421 21.643993614218 0 +32 13436 21.644153614218 0 +32 13436 21.644153614218 0 +32 13467 21.814557018645 0 +32 13467 21.814557018645 0 +32 13474 21.814717018645 0 +32 13474 21.814717018645 0 +32 13508 21.82439890573 0 +32 13508 21.82439890573 0 +32 13515 21.82455890573 0 +32 13515 21.82455890573 0 +32 13536 21.831276162993 0 +32 13536 21.831276162993 2 +32 13537 21.831276162993 2 +32 13537 21.831276162993 0 +32 13540 21.831276162993 0 +32 13540 21.831276162993 0 +32 13548 21.831436162993 0 +32 13548 21.831436162993 0 +32 13586 21.857384399784 0 +32 13586 21.857384399784 0 +32 13597 21.857544399784 0 +32 13597 21.857544399784 0 +32 13621 21.893586163871 0 +32 13621 21.893586163871 0 +32 13636 21.893746163871 0 +32 13636 21.893746163871 0 +32 13662 21.943993619248 0 +32 13662 21.943993619248 0 +32 13677 21.944153619248 0 +32 13677 21.944153619248 0 +32 13708 22.114557034351 0 +32 13708 22.114557034351 0 +32 13715 22.114717034351 0 +32 13715 22.114717034351 0 +32 13749 22.124398905663 0 +32 13749 22.124398905663 0 +32 13756 22.124558905663 0 +32 13756 22.124558905663 0 +32 13777 22.131276162993 0 +32 13777 22.131276162993 2 +32 13778 22.131276162993 2 +32 13778 22.131276162993 0 +32 13781 22.131276162993 0 +32 13781 22.131276162993 0 +32 13789 22.131436162993 0 +32 13789 22.131436162993 0 +32 13827 22.157384398008 0 +32 13827 22.157384398008 0 +32 13838 22.157544398008 0 +32 13838 22.157544398008 0 +32 13862 22.193586163915 0 +32 13862 22.193586163915 0 +32 13877 22.193746163915 0 +32 13877 22.193746163915 0 +32 13903 22.243993624898 0 +32 13903 22.243993624898 0 +32 13918 22.244153624898 0 +32 13918 22.244153624898 0 +32 13949 22.414557050412 0 +32 13949 22.414557050412 0 +32 13956 22.414717050412 0 +32 13956 22.414717050412 0 +32 13990 22.424398905574 0 +32 13990 22.424398905574 0 +32 13997 22.424558905574 0 +32 13997 22.424558905574 0 +32 14018 22.431276162993 0 +32 14018 22.431276162993 2 +32 14019 22.431276162993 2 +32 14019 22.431276162993 0 +32 14022 22.431276162993 0 +32 14022 22.431276162993 0 +32 14030 22.431436162993 0 +32 14030 22.431436162993 0 +32 14068 22.45738439623 0 +32 14068 22.45738439623 0 +32 14079 22.45754439623 0 +32 14079 22.45754439623 0 +32 14103 22.493586164003 0 +32 14103 22.493586164003 0 +32 14118 22.493746164003 0 +32 14118 22.493746164003 0 +32 14144 22.543993631141 0 +32 14144 22.543993631141 0 +32 14159 22.544153631141 0 +32 14159 22.544153631141 0 +32 14190 22.714557066832 0 +32 14190 22.714557066832 0 +32 14197 22.714717066832 0 +32 14197 22.714717066832 0 +32 14231 22.724398905447 0 +32 14231 22.724398905447 0 +32 14238 22.724558905447 0 +32 14238 22.724558905447 0 +32 14259 22.731276162993 0 +32 14259 22.731276162993 2 +32 14260 22.731276162993 2 +32 14260 22.731276162993 0 +32 14263 22.731276162993 0 +32 14263 22.731276162993 0 +32 14271 22.731436162993 0 +32 14271 22.731436162993 0 +32 14309 22.757384394544 0 +32 14309 22.757384394544 0 +32 14320 22.757544394544 0 +32 14320 22.757544394544 0 +32 14344 22.793586164046 0 +32 14344 22.793586164046 0 +32 14359 22.793746164046 0 +32 14359 22.793746164046 0 +32 14385 22.843993638109 0 +32 14385 22.843993638109 0 +32 14400 22.844153638109 0 +32 14400 22.844153638109 0 +32 14431 23.014557083564 0 +32 14431 23.014557083564 0 +32 14438 23.014717083564 0 +32 14438 23.014717083564 0 +32 14472 23.024398905315 0 +32 14472 23.024398905315 0 +32 14479 23.024558905315 0 +32 14479 23.024558905315 0 +32 14500 23.031276162993 0 +32 14500 23.031276162993 2 +32 14501 23.031276162993 2 +32 14501 23.031276162993 0 +32 14504 23.031276162993 0 +32 14504 23.031276162993 0 +32 14512 23.031436162993 0 +32 14512 23.031436162993 0 +32 14550 23.057384392975 0 +32 14550 23.057384392975 0 +32 14561 23.057544392975 0 +32 14561 23.057544392975 0 +32 14585 23.093586164045 0 +32 14585 23.093586164045 0 +32 14600 23.093746164045 0 +32 14600 23.093746164045 0 +32 14626 23.143993645806 0 +32 14626 23.143993645806 0 +32 14641 23.144153645806 0 +32 14641 23.144153645806 0 +32 14672 23.314557100631 0 +32 14672 23.314557100631 0 +32 14679 23.314717100631 0 +32 14679 23.314717100631 0 +32 14713 23.324398905056 0 +32 14713 23.324398905056 0 +32 14720 23.324558905056 0 +32 14720 23.324558905056 0 +32 14741 23.331276162993 0 +32 14741 23.331276162993 2 +32 14742 23.331276162993 2 +32 14742 23.331276162993 0 +32 14745 23.331276162993 0 +32 14745 23.331276162993 0 +32 14753 23.331436162993 0 +32 14753 23.331436162993 0 +32 14791 23.357384391504 0 +32 14791 23.357384391504 0 +32 14802 23.357544391504 0 +32 14802 23.357544391504 0 +32 14826 23.393586164071 0 +32 14826 23.393586164071 0 +32 14841 23.393746164071 0 +32 14841 23.393746164071 0 +32 14867 23.443993653987 0 +32 14867 23.443993653987 0 +32 14882 23.444153653987 0 +32 14882 23.444153653987 0 +32 14913 23.614557118038 0 +32 14913 23.614557118038 0 +32 14920 23.614717118038 0 +32 14920 23.614717118038 0 +32 14954 23.624398904843 0 +32 14954 23.624398904843 0 +32 14961 23.624558904843 0 +32 14961 23.624558904843 0 +32 14982 23.631276162993 0 +32 14982 23.631276162993 2 +32 14983 23.631276162993 2 +32 14983 23.631276162993 0 +32 14986 23.631276162993 0 +32 14986 23.631276162993 0 +32 14994 23.631436162993 0 +32 14994 23.631436162993 0 +32 15032 23.657384390261 0 +32 15032 23.657384390261 0 +32 15043 23.657544390261 0 +32 15043 23.657544390261 0 +32 15067 23.693586164114 0 +32 15067 23.693586164114 0 +32 15082 23.693746164114 0 +32 15082 23.693746164114 0 +32 15108 23.743993657373 0 +32 15108 23.743993657373 0 +32 15123 23.744153657373 0 +32 15123 23.744153657373 0 +32 15154 23.914557135739 0 +32 15154 23.914557135739 0 +32 15161 23.914717135739 0 +32 15161 23.914717135739 0 +32 15195 23.924398904623 0 +32 15195 23.924398904623 0 +32 15202 23.924558904623 0 +32 15202 23.924558904623 0 +32 15223 23.931276162993 0 +32 15223 23.931276162993 2 +32 15224 23.931276162993 2 +32 15224 23.931276162993 0 +32 15227 23.931276162993 0 +32 15227 23.931276162993 0 +32 15235 23.931436162993 0 +32 15235 23.931436162993 0 +32 15273 23.957384389283 0 +32 15273 23.957384389283 0 +32 15284 23.957544389283 0 +32 15284 23.957544389283 0 +32 15308 23.993586164088 0 +32 15308 23.993586164088 0 +32 15323 23.993746164088 0 +32 15323 23.993746164088 0 +32 15349 24.043993663161 0 +32 15349 24.043993663161 0 +32 15364 24.044153663161 0 +32 15364 24.044153663161 0 +32 15395 24.214557153664 0 +32 15395 24.214557153664 0 +32 15402 24.214717153664 0 +32 15402 24.214717153664 0 +32 15436 24.224398904516 0 +32 15436 24.224398904516 0 +32 15443 24.224558904516 0 +32 15443 24.224558904516 0 +32 15464 24.231276162993 0 +32 15464 24.231276162993 2 +32 15465 24.231276162993 2 +32 15465 24.231276162993 0 +32 15468 24.231276162993 0 +32 15468 24.231276162993 0 +32 15476 24.231436162993 0 +32 15476 24.231436162993 0 +32 15515 24.257384388584 0 +32 15515 24.257384388584 0 +32 15530 24.257544388584 0 +32 15530 24.257544388584 0 +32 15549 24.293586163925 0 +32 15549 24.293586163925 0 +32 15564 24.293746163925 0 +32 15564 24.293746163925 0 +32 15590 24.343993674356 0 +32 15590 24.343993674356 0 +32 15605 24.344153674356 0 +32 15605 24.344153674356 0 +32 15636 24.51455717198 0 +32 15636 24.51455717198 0 +32 15643 24.51471717198 0 +32 15643 24.51471717198 0 +32 15677 24.52439890444 0 +32 15677 24.52439890444 0 +32 15684 24.52455890444 0 +32 15684 24.52455890444 0 +32 15705 24.531276162993 0 +32 15705 24.531276162993 2 +32 15706 24.531276162993 2 +32 15706 24.531276162993 0 +32 15709 24.531276162993 0 +32 15709 24.531276162993 0 +32 15717 24.531436162993 0 +32 15717 24.531436162993 0 +32 15756 24.557384388126 0 +32 15756 24.557384388126 0 +32 15771 24.557544388126 0 +32 15771 24.557544388126 0 +32 15790 24.59358616382 0 +32 15790 24.59358616382 0 +32 15805 24.59374616382 0 +32 15805 24.59374616382 0 +32 15831 24.643993686393 0 +32 15831 24.643993686393 0 +32 15846 24.644153686393 0 +32 15846 24.644153686393 0 +32 15877 24.814557190662 0 +32 15877 24.814557190662 0 +32 15884 24.814717190662 0 +32 15884 24.814717190662 0 +32 15918 24.824398904207 0 +32 15918 24.824398904207 0 +32 15925 24.824558904207 0 +32 15925 24.824558904207 0 +32 15946 24.831276162993 0 +32 15946 24.831276162993 2 +32 15947 24.831276162993 2 +32 15947 24.831276162993 0 +32 15950 24.831276162993 0 +32 15950 24.831276162993 0 +32 15958 24.831436162993 0 +32 15958 24.831436162993 0 +32 15997 24.857384387996 0 +32 15997 24.857384387996 0 +32 16012 24.857544387996 0 +32 16012 24.857544387996 0 +32 16031 24.893586163833 0 +32 16031 24.893586163833 0 +32 16046 24.893746163833 0 +32 16046 24.893746163833 0 +32 16072 24.943993699252 0 +32 16072 24.943993699252 0 +32 16087 24.944153699252 0 +32 16087 24.944153699252 0 +32 16118 25.114557209682 0 +32 16118 25.114557209682 0 +32 16125 25.114717209682 0 +32 16125 25.114717209682 0 +32 16159 25.124398903459 0 +32 16159 25.124398903459 0 +32 16166 25.124558903459 0 +32 16166 25.124558903459 0 +32 16187 25.131276162993 0 +32 16187 25.131276162993 2 +32 16188 25.131276162993 2 +32 16188 25.131276162993 0 +32 16191 25.131276162993 0 +32 16191 25.131276162993 0 +32 16199 25.131436162993 0 +32 16199 25.131436162993 0 +32 16238 25.15738438831 0 +32 16238 25.15738438831 0 +32 16253 25.15754438831 0 +32 16253 25.15754438831 0 +32 16272 25.19358616381 0 +32 16272 25.19358616381 0 +32 16287 25.19374616381 0 +32 16287 25.19374616381 0 +32 16313 25.243993712907 0 +32 16313 25.243993712907 0 +32 16328 25.244153712907 0 +32 16328 25.244153712907 0 +32 16359 25.414557228959 0 +32 16359 25.414557228959 0 +32 16366 25.414717228959 0 +32 16366 25.414717228959 0 +32 16400 25.424398902138 0 +32 16400 25.424398902138 0 +32 16407 25.424558902138 0 +32 16407 25.424558902138 0 +32 16428 25.431276162993 0 +32 16428 25.431276162993 2 +32 16429 25.431276162993 2 +32 16429 25.431276162993 0 +32 16432 25.431276162993 0 +32 16432 25.431276162993 0 +32 16440 25.431436162993 0 +32 16440 25.431436162993 0 +32 16479 25.457384389027 0 +32 16479 25.457384389027 0 +32 16494 25.457544389027 0 +32 16494 25.457544389027 0 +32 16513 25.493586163787 0 +32 16513 25.493586163787 0 +32 16528 25.493746163787 0 +32 16528 25.493746163787 0 +32 16554 25.543993727372 0 +32 16554 25.543993727372 0 +32 16569 25.544153727372 0 +32 16569 25.544153727372 0 +32 16601 25.714557248637 0 +32 16601 25.714557248637 0 +32 16612 25.714717248637 0 +32 16612 25.714717248637 0 +32 16641 25.724398900217 0 +32 16641 25.724398900217 0 +32 16648 25.724558900217 0 +32 16648 25.724558900217 0 +32 16669 25.731276162993 0 +32 16669 25.731276162993 2 +32 16670 25.731276162993 2 +32 16670 25.731276162993 0 +32 16673 25.731276162993 0 +32 16673 25.731276162993 0 +32 16681 25.731436162993 0 +32 16681 25.731436162993 0 +32 16720 25.757384390233 0 +32 16720 25.757384390233 0 +32 16735 25.757544390233 0 +32 16735 25.757544390233 0 +32 16754 25.793586163731 0 +32 16754 25.793586163731 0 +32 16769 25.793746163731 0 +32 16769 25.793746163731 0 +32 16795 25.843993742406 0 +32 16795 25.843993742406 0 +32 16810 25.844153742406 0 +32 16810 25.844153742406 0 +32 16842 26.014557267922 0 +32 16842 26.014557267922 0 +32 16853 26.014717267922 0 +32 16853 26.014717267922 0 +32 16882 26.024398899074 0 +32 16882 26.024398899074 0 +32 16889 26.024558899074 0 +32 16889 26.024558899074 0 +32 16910 26.031276162993 0 +32 16910 26.031276162993 2 +32 16911 26.031276162993 2 +32 16911 26.031276162993 0 +32 16914 26.031276162993 0 +32 16914 26.031276162993 0 +32 16922 26.031436162993 0 +32 16922 26.031436162993 0 +32 16961 26.057384392844 0 +32 16961 26.057384392844 0 +32 16976 26.057544392844 0 +32 16976 26.057544392844 0 +32 16995 26.093586162311 0 +32 16995 26.093586162311 0 +32 17010 26.093746162311 0 +32 17010 26.093746162311 0 +32 17036 26.1439937566 0 +32 17036 26.1439937566 0 +32 17051 26.1441537566 0 +32 17051 26.1441537566 0 +32 17083 26.314557286443 0 +32 17083 26.314557286443 0 +32 17094 26.314717286443 0 +32 17094 26.314717286443 0 +32 17123 26.324398899192 0 +32 17123 26.324398899192 0 +32 17130 26.324558899192 0 +32 17130 26.324558899192 0 +32 17151 26.331276162993 0 +32 17151 26.331276162993 2 +32 17152 26.331276162993 2 +32 17152 26.331276162993 0 +32 17155 26.331276162993 0 +32 17155 26.331276162993 0 +32 17163 26.331436162993 0 +32 17163 26.331436162993 0 +32 17202 26.357384397031 0 +32 17202 26.357384397031 0 +32 17217 26.357544397031 0 +32 17217 26.357544397031 0 +32 17236 26.39358615939 0 +32 17236 26.39358615939 0 +32 17251 26.39374615939 0 +32 17251 26.39374615939 0 +32 17277 26.443993769777 0 +32 17277 26.443993769777 0 +32 17292 26.444153769777 0 +32 17292 26.444153769777 0 +32 17324 26.614557304195 0 +32 17324 26.614557304195 0 +32 17335 26.614717304195 0 +32 17335 26.614717304195 0 +32 17364 26.624398900705 0 +32 17364 26.624398900705 0 +32 17371 26.624558900705 0 +32 17371 26.624558900705 0 +32 17392 26.631276162993 0 +32 17392 26.631276162993 2 +32 17393 26.631276162993 2 +32 17393 26.631276162993 0 +32 17396 26.631276162993 0 +32 17396 26.631276162993 0 +32 17404 26.631436162993 0 +32 17404 26.631436162993 0 +32 17443 26.657384402378 0 +32 17443 26.657384402378 0 +32 17458 26.657544402378 0 +32 17458 26.657544402378 0 +32 17477 26.693586155151 0 +32 17477 26.693586155151 0 +32 17492 26.693746155151 0 +32 17492 26.693746155151 0 +32 17518 26.743993781976 0 +32 17518 26.743993781976 0 +32 17533 26.744153781976 0 +32 17533 26.744153781976 0 +32 17565 26.914557321211 0 +32 17565 26.914557321211 0 +32 17576 26.914717321211 0 +32 17576 26.914717321211 0 +32 17605 26.924398903552 0 +32 17605 26.924398903552 0 +32 17612 26.924558903552 0 +32 17612 26.924558903552 0 +32 17633 26.931276162993 0 +32 17633 26.931276162993 2 +32 17634 26.931276162993 2 +32 17634 26.931276162993 0 +32 17637 26.931276162993 0 +32 17637 26.931276162993 0 +32 17645 26.931436162993 0 +32 17645 26.931436162993 0 +32 17684 26.957384408394 0 +32 17684 26.957384408394 0 +32 17699 26.957544408394 0 +32 17699 26.957544408394 0 +32 17718 26.993586149522 0 +32 17718 26.993586149522 0 +32 17733 26.993746149522 0 +32 17733 26.993746149522 0 +32 17759 27.0439937932 0 +32 17759 27.0439937932 0 +32 17774 27.0441537932 0 +32 17774 27.0441537932 0 +32 17806 27.214557337437 0 +32 17806 27.214557337437 0 +32 17817 27.214717337437 0 +32 17817 27.214717337437 0 +32 17842 27.224398907162 0 +32 17842 27.224398907162 0 +32 17849 27.224558907162 0 +32 17849 27.224558907162 0 +32 17866 27.231276162993 0 +32 17866 27.231276162993 2 +32 17867 27.231276162993 2 +32 17867 27.231276162993 0 +32 17870 27.231276162993 0 +32 17870 27.231276162993 0 +32 17878 27.231436162993 0 +32 17878 27.231436162993 0 +32 17917 27.257384414219 0 +32 17917 27.257384414219 0 +32 17932 27.257544414219 0 +32 17932 27.257544414219 0 +32 17951 27.293586142554 0 +32 17951 27.293586142554 0 +32 17966 27.293746142554 0 +32 17966 27.293746142554 0 +32 17992 27.343993803466 0 +32 17992 27.343993803466 0 +32 18007 27.344153803466 0 +32 18007 27.344153803466 0 +32 18039 27.514557353353 0 +32 18039 27.514557353353 0 +32 18050 27.514717353353 0 +32 18050 27.514717353353 0 +32 18075 27.524398910114 0 +32 18075 27.524398910114 0 +32 18082 27.524558910114 0 +32 18082 27.524558910114 0 +32 18099 27.531276162993 0 +32 18099 27.531276162993 2 +32 18100 27.531276162993 2 +32 18100 27.531276162993 0 +32 18103 27.531276162993 0 +32 18103 27.531276162993 0 +32 18111 27.531436162993 0 +32 18111 27.531436162993 0 +32 18150 27.557384419423 0 +32 18150 27.557384419423 0 +32 18165 27.557544419423 0 +32 18165 27.557544419423 0 +32 18184 27.593586134917 0 +32 18184 27.593586134917 0 +32 18199 27.593746134917 0 +32 18199 27.593746134917 0 +32 18225 27.643993814 0 +32 18225 27.643993814 0 +32 18240 27.644153814 0 +32 18240 27.644153814 0 +32 18272 27.814557366584 0 +32 18272 27.814557366584 0 +32 18283 27.814717366584 0 +32 18283 27.814717366584 0 +32 18308 27.824398911978 0 +32 18308 27.824398911978 0 +32 18315 27.824558911978 0 +32 18315 27.824558911978 0 +32 18332 27.831276162993 0 +32 18332 27.831276162993 2 +32 18333 27.831276162993 2 +32 18333 27.831276162993 0 +32 18336 27.831276162993 0 +32 18336 27.831276162993 0 +32 18344 27.831436162993 0 +32 18344 27.831436162993 0 +32 18383 27.857384421103 0 +32 18383 27.857384421103 0 +32 18398 27.857544421103 0 +32 18398 27.857544421103 0 +32 18417 27.893586127086 0 +32 18417 27.893586127086 0 +32 18432 27.893746127086 0 +32 18432 27.893746127086 0 +32 18458 27.943993821662 0 +32 18458 27.943993821662 0 +32 18473 27.944153821662 0 +32 18473 27.944153821662 0 +32 18505 28.114557372208 0 +32 18505 28.114557372208 0 +32 18516 28.114717372208 0 +32 18516 28.114717372208 0 +32 18541 28.124398921331 0 +32 18541 28.124398921331 0 +32 18548 28.124558921331 0 +32 18548 28.124558921331 0 +32 18565 28.131276162993 0 +32 18565 28.131276162993 2 +32 18566 28.131276162993 2 +32 18566 28.131276162993 0 +32 18569 28.131276162993 0 +32 18569 28.131276162993 0 +32 18577 28.131436162993 0 +32 18577 28.131436162993 0 +32 18616 28.157384422655 0 +32 18616 28.157384422655 0 +32 18631 28.157544422655 0 +32 18631 28.157544422655 0 +32 18650 28.193586110531 0 +32 18650 28.193586110531 0 +32 18665 28.193746110531 0 +32 18665 28.193746110531 0 +32 18691 28.243993818775 0 +32 18691 28.243993818775 0 +32 18706 28.244153818775 0 +32 18706 28.244153818775 0 +32 18738 28.414557379085 0 +32 18738 28.414557379085 0 +32 18749 28.414717379085 0 +32 18749 28.414717379085 0 +32 18774 28.424398936132 0 +32 18774 28.424398936132 0 +32 18781 28.424558936132 0 +32 18781 28.424558936132 0 +32 18798 28.431276162993 0 +32 18798 28.431276162993 2 +32 18799 28.431276162993 2 +32 18799 28.431276162993 0 +32 18802 28.431276162993 0 +32 18802 28.431276162993 0 +32 18810 28.431436162993 0 +32 18810 28.431436162993 0 +32 18849 28.457384430961 0 +32 18849 28.457384430961 0 +32 18864 28.457544430961 0 +32 18864 28.457544430961 0 +32 18883 28.493586087782 0 +32 18883 28.493586087782 0 +32 18898 28.493746087782 0 +32 18898 28.493746087782 0 +32 18924 28.543993814768 0 +32 18924 28.543993814768 0 +32 18939 28.544153814768 0 +32 18939 28.544153814768 0 +32 18971 28.714557386825 0 +32 18971 28.714557386825 0 +32 18982 28.714717386825 0 +32 18982 28.714717386825 0 +32 19007 28.724398950517 0 +32 19007 28.724398950517 0 +32 19014 28.724558950517 0 +32 19014 28.724558950517 0 +32 19031 28.731276162993 0 +32 19031 28.731276162993 2 +32 19032 28.731276162993 2 +32 19032 28.731276162993 0 +32 19035 28.731276162993 0 +32 19035 28.731276162993 0 +32 19043 28.731436162993 0 +32 19043 28.731436162993 0 +32 19082 28.757384440171 0 +32 19082 28.757384440171 0 +32 19097 28.757544440171 0 +32 19097 28.757544440171 0 +32 19115 28.793586063963 0 +32 19115 28.793586063963 0 +32 19126 28.793746063963 0 +32 19126 28.793746063963 0 +32 19157 28.843993810621 0 +32 19157 28.843993810621 0 +32 19172 28.844153810621 0 +32 19172 28.844153810621 0 +32 19204 29.014557394729 0 +32 19204 29.014557394729 0 +32 19215 29.014717394729 0 +32 19215 29.014717394729 0 +32 19240 29.024398956074 0 +32 19240 29.024398956074 0 +32 19247 29.024558956074 0 +32 19247 29.024558956074 0 +32 19264 29.031276162993 0 +32 19264 29.031276162993 2 +32 19265 29.031276162993 2 +32 19265 29.031276162993 0 +32 19268 29.031276162993 0 +32 19268 29.031276162993 0 +32 19276 29.031436162993 0 +32 19276 29.031436162993 0 +32 19340 29.093586039541 0 +32 19340 29.093586039541 0 +32 19351 29.093746039541 0 +32 19351 29.093746039541 0 +32 19382 29.143993806384 0 +32 19382 29.143993806384 0 +32 19397 29.144153806384 0 +32 19397 29.144153806384 0 +32 19430 29.314557402851 0 +32 19430 29.314557402851 0 +32 19445 29.314717402851 0 +32 19445 29.314717402851 0 +32 19465 29.324398958617 0 +32 19465 29.324398958617 0 +32 19472 29.324558958617 0 +32 19472 29.324558958617 0 +32 19489 29.331276162993 0 +32 19489 29.331276162993 2 +32 19490 29.331276162993 2 +32 19490 29.331276162993 0 +32 19493 29.331276162993 0 +32 19493 29.331276162993 0 +32 19501 29.331436162993 0 +32 19501 29.331436162993 0 +32 19565 29.393586014641 0 +32 19565 29.393586014641 0 +32 19576 29.393746014641 0 +32 19576 29.393746014641 0 +32 19607 29.443993802196 0 +32 19607 29.443993802196 0 +32 19622 29.444153802196 0 +32 19622 29.444153802196 0 +32 19655 29.614557411175 0 +32 19655 29.614557411175 0 +32 19670 29.614717411175 0 +32 19670 29.614717411175 0 +32 19690 29.624398960906 0 +32 19690 29.624398960906 0 +32 19697 29.624558960906 0 +32 19697 29.624558960906 0 +32 19714 29.631276162993 0 +32 19714 29.631276162993 2 +32 19715 29.631276162993 2 +32 19715 29.631276162993 0 +32 19718 29.631276162993 0 +32 19718 29.631276162993 0 +32 19726 29.631436162993 0 +32 19726 29.631436162993 0 +32 19790 29.6935859893 0 +32 19790 29.6935859893 0 +32 19801 29.6937459893 0 +32 19801 29.6937459893 0 +32 19832 29.74399379804 0 +32 19832 29.74399379804 0 +32 19847 29.74415379804 0 +32 19847 29.74415379804 0 +32 19880 29.914557419712 0 +32 19880 29.914557419712 0 +32 19895 29.914717419712 0 +32 19895 29.914717419712 0 +32 19915 29.924398963158 0 +32 19915 29.924398963158 0 +32 19922 29.924558963158 0 +32 19922 29.924558963158 0 +32 19939 29.931276162993 0 +32 19939 29.931276162993 2 +32 19940 29.931276162993 2 +32 19940 29.931276162993 0 +32 19943 29.931276162993 0 +32 19943 29.931276162993 0 +32 19951 29.931436162993 0 +32 19951 29.931436162993 0 +32 20015 29.993585963286 0 +32 20015 29.993585963286 0 +32 20026 29.993745963286 0 +32 20026 29.993745963286 0 +32 20057 30.04399379379 0 +32 20057 30.04399379379 0 +32 20072 30.04415379379 0 +32 20072 30.04415379379 0 +32 20105 30.214557428417 0 +32 20105 30.214557428417 0 +32 20120 30.214717428417 0 +32 20120 30.214717428417 0 +32 20140 30.224398965468 0 +32 20140 30.224398965468 0 +32 20147 30.224558965468 0 +32 20147 30.224558965468 0 +32 20164 30.231276162993 0 +32 20164 30.231276162993 2 +32 20165 30.231276162993 2 +32 20165 30.231276162993 0 +32 20168 30.231276162993 0 +32 20168 30.231276162993 0 +32 20176 30.231436162993 0 +32 20176 30.231436162993 0 +32 20240 30.293585936581 0 +32 20240 30.293585936581 0 +32 20251 30.293745936581 0 +32 20251 30.293745936581 0 +32 20282 30.343993789518 0 +32 20282 30.343993789518 0 +32 20297 30.344153789518 0 +32 20297 30.344153789518 0 +32 20331 30.514557437361 0 +32 20331 30.514557437361 0 +32 20350 30.514717437361 0 +32 20350 30.514717437361 0 +32 20365 30.524398967804 0 +32 20365 30.524398967804 0 +32 20372 30.524558967804 0 +32 20372 30.524558967804 0 +32 20389 30.531276162993 0 +32 20389 30.531276162993 2 +32 20390 30.531276162993 2 +32 20390 30.531276162993 0 +32 20393 30.531276162993 0 +32 20393 30.531276162993 0 +32 20401 30.531436162993 0 +32 20401 30.531436162993 0 +32 20465 30.59358590925 0 +32 20465 30.59358590925 0 +32 20476 30.59374590925 0 +32 20476 30.59374590925 0 +32 20507 30.643993785288 0 +32 20507 30.643993785288 0 +32 20522 30.644153785288 0 +32 20522 30.644153785288 0 +32 20555 30.814557446582 0 +32 20555 30.814557446582 0 +32 20570 30.814717446582 0 +32 20570 30.814717446582 0 +32 20590 30.824398970242 0 +32 20590 30.824398970242 0 +32 20597 30.824558970242 0 +32 20597 30.824558970242 0 +32 20614 30.831276162993 0 +32 20614 30.831276162993 2 +32 20615 30.831276162993 2 +32 20615 30.831276162993 0 +32 20618 30.831276162993 0 +32 20618 30.831276162993 0 +32 20626 30.831436162993 0 +32 20626 30.831436162993 0 +32 20690 30.89358588135 0 +32 20690 30.89358588135 0 +32 20701 30.89374588135 0 +32 20701 30.89374588135 0 +32 20732 30.94399378118 0 +32 20732 30.94399378118 0 +32 20747 30.94415378118 0 +32 20747 30.94415378118 0 +32 20780 31.114557456231 0 +32 20780 31.114557456231 0 +32 20795 31.114717456231 0 +32 20795 31.114717456231 0 +32 20815 31.124398972755 0 +32 20815 31.124398972755 0 +32 20822 31.124558972755 0 +32 20822 31.124558972755 0 +32 20843 31.131276162993 0 +32 20843 31.131276162993 2 +32 20844 31.131276162993 2 +32 20844 31.131276162993 0 +32 20847 31.131276162993 0 +32 20847 31.131276162993 0 +32 20855 31.131436162993 0 +32 20855 31.131436162993 0 +32 20918 31.193585853113 0 +32 20918 31.193585853113 0 +32 20925 31.193745853113 0 +32 20925 31.193745853113 0 +32 20965 31.243993777587 0 +32 20965 31.243993777587 0 +32 20980 31.244153777587 0 +32 20980 31.244153777587 0 +32 21013 31.414557466338 0 +32 21013 31.414557466338 0 +32 21028 31.414717466338 0 +32 21028 31.414717466338 0 +32 21048 31.424398975275 0 +32 21048 31.424398975275 0 +32 21055 31.424558975275 0 +32 21055 31.424558975275 0 +32 21076 31.431276162993 0 +32 21076 31.431276162993 2 +32 21077 31.431276162993 2 +32 21077 31.431276162993 0 +32 21080 31.431276162993 0 +32 21080 31.431276162993 0 +32 21088 31.431436162993 0 +32 21088 31.431436162993 0 +32 21151 31.493585824854 0 +32 21151 31.493585824854 0 +32 21158 31.493745824854 0 +32 21158 31.493745824854 0 +32 21198 31.543993774618 0 +32 21198 31.543993774618 0 +32 21213 31.544153774618 0 +32 21213 31.544153774618 0 +32 21246 31.714557476938 0 +32 21246 31.714557476938 0 +32 21261 31.714717476938 0 +32 21261 31.714717476938 0 +32 21281 31.724398977789 0 +32 21281 31.724398977789 0 +32 21288 31.724558977789 0 +32 21288 31.724558977789 0 +32 21309 31.731276162993 0 +32 21309 31.731276162993 2 +32 21310 31.731276162993 2 +32 21310 31.731276162993 0 +32 21313 31.731276162993 0 +32 21313 31.731276162993 0 +32 21321 31.731436162993 0 +32 21321 31.731436162993 0 +32 21384 31.793585796622 0 +32 21384 31.793585796622 0 +32 21391 31.793745796622 0 +32 21391 31.793745796622 0 +32 21431 31.843993772319 0 +32 21431 31.843993772319 0 +32 21446 31.844153772319 0 +32 21446 31.844153772319 0 +32 21479 32.014557487942 0 +32 21479 32.014557487942 0 +32 21494 32.014717487942 0 +32 21494 32.014717487942 0 +32 21514 32.024398980316 0 +32 21514 32.024398980316 0 +32 21521 32.024558980316 0 +32 21521 32.024558980316 0 +32 21542 32.031276162993 0 +32 21542 32.031276162993 2 +32 21543 32.031276162993 2 +32 21543 32.031276162993 0 +32 21546 32.031276162993 0 +32 21546 32.031276162993 0 +32 21554 32.031436162993 0 +32 21554 32.031436162993 0 +32 21617 32.093585768404 0 +32 21617 32.093585768404 0 +32 21624 32.093745768404 0 +32 21624 32.093745768404 0 +32 21664 32.143993770659 0 +32 21664 32.143993770659 0 +32 21679 32.144153770659 0 +32 21679 32.144153770659 0 +32 21712 32.314557499402 0 +32 21712 32.314557499402 0 +32 21727 32.314717499402 0 +32 21727 32.314717499402 0 +32 21747 32.324398982748 0 +32 21747 32.324398982748 0 +32 21754 32.324558982748 0 +32 21754 32.324558982748 0 +32 21775 32.331276162993 0 +32 21775 32.331276162993 2 +32 21776 32.331276162993 2 +32 21776 32.331276162993 0 +32 21779 32.331276162993 0 +32 21779 32.331276162993 0 +32 21787 32.331436162993 0 +32 21787 32.331436162993 0 +32 21850 32.393585740167 0 +32 21850 32.393585740167 0 +32 21857 32.393745740167 0 +32 21857 32.393745740167 0 +32 21897 32.443993769753 0 +32 21897 32.443993769753 0 +32 21912 32.444153769753 0 +32 21912 32.444153769753 0 +32 21945 32.614557511219 0 +32 21945 32.614557511219 0 +32 21960 32.614717511219 0 +32 21960 32.614717511219 0 +32 21980 32.624398985247 0 +32 21980 32.624398985247 0 +32 21987 32.624558985247 0 +32 21987 32.624558985247 0 +32 22008 32.631276162993 0 +32 22008 32.631276162993 2 +32 22009 32.631276162993 2 +32 22009 32.631276162993 0 +32 22012 32.631276162993 0 +32 22012 32.631276162993 0 +32 22020 32.631436162993 0 +32 22020 32.631436162993 0 +32 22083 32.693585711913 0 +32 22083 32.693585711913 0 +32 22090 32.693745711913 0 +32 22090 32.693745711913 0 +32 22130 32.74399376948 0 +32 22130 32.74399376948 0 +32 22145 32.74415376948 0 +32 22145 32.74415376948 0 +32 22178 32.914557523456 0 +32 22178 32.914557523456 0 +32 22193 32.914717523456 0 +32 22193 32.914717523456 0 +32 22213 32.924398987742 0 +32 22213 32.924398987742 0 +32 22220 32.924558987742 0 +32 22220 32.924558987742 0 +32 22241 32.931276162993 0 +32 22241 32.931276162993 2 +32 22242 32.931276162993 2 +32 22242 32.931276162993 0 +32 22245 32.931276162993 0 +32 22245 32.931276162993 0 +32 22253 32.931436162993 0 +32 22253 32.931436162993 0 +32 22316 32.993585683676 0 +32 22316 32.993585683676 0 +32 22323 32.993745683676 0 +32 22323 32.993745683676 0 +32 22363 33.043993769896 0 +32 22363 33.043993769896 0 +32 22378 33.044153769896 0 +32 22378 33.044153769896 0 +32 22411 33.214557536006 0 +32 22411 33.214557536006 0 +32 22426 33.214717536006 0 +32 22426 33.214717536006 0 +32 22446 33.224398990236 0 +32 22446 33.224398990236 0 +32 22453 33.224558990236 0 +32 22453 33.224558990236 0 +32 22474 33.231276162993 0 +32 22474 33.231276162993 2 +32 22475 33.231276162993 2 +32 22475 33.231276162993 0 +32 22478 33.231276162993 0 +32 22478 33.231276162993 0 +32 22486 33.231436162993 0 +32 22486 33.231436162993 0 +32 22549 33.293585655474 0 +32 22549 33.293585655474 0 +32 22556 33.293745655474 0 +32 22556 33.293745655474 0 +32 22596 33.343993770985 0 +32 22596 33.343993770985 0 +32 22611 33.344153770985 0 +32 22611 33.344153770985 0 +32 22644 33.514557548915 0 +32 22644 33.514557548915 0 +32 22659 33.514717548915 0 +32 22659 33.514717548915 0 +32 22679 33.524398992733 0 +32 22679 33.524398992733 0 +32 22686 33.524558992733 0 +32 22686 33.524558992733 0 +32 22707 33.531276162993 0 +32 22707 33.531276162993 2 +32 22708 33.531276162993 2 +32 22708 33.531276162993 0 +32 22711 33.531276162993 0 +32 22711 33.531276162993 0 +32 22719 33.531436162993 0 +32 22719 33.531436162993 0 +32 22782 33.593585627277 0 +32 22782 33.593585627277 0 +32 22789 33.593745627277 0 +32 22789 33.593745627277 0 +32 22829 33.643993772782 0 +32 22829 33.643993772782 0 +32 22844 33.644153772782 0 +32 22844 33.644153772782 0 +32 22877 33.814557562144 0 +32 22877 33.814557562144 0 +32 22892 33.814717562144 0 +32 22892 33.814717562144 0 +32 22908 33.82439899523 0 +32 22908 33.82439899523 0 +32 22915 33.82455899523 0 +32 22915 33.82455899523 0 +32 22936 33.831276162993 0 +32 22936 33.831276162993 2 +32 22937 33.831276162993 2 +32 22937 33.831276162993 0 +32 22940 33.831276162993 0 +32 22940 33.831276162993 0 +32 22948 33.831436162993 0 +32 22948 33.831436162993 0 +32 23011 33.893585599183 0 +32 23011 33.893585599183 0 +32 23018 33.893745599183 0 +32 23018 33.893745599183 0 +32 23052 33.943993775237 0 +32 23052 33.943993775237 0 +32 23062 33.944153775237 0 +32 23062 33.944153775237 0 +32 23118 34.124398997755 0 +32 23118 34.124398997755 0 +32 23124 34.124558997755 0 +32 23124 34.124558997755 0 +32 23140 34.131276162993 0 +32 23140 34.131276162993 2 +32 23141 34.131276162993 2 +32 23141 34.131276162993 0 +32 23144 34.131276162993 0 +32 23144 34.131276162993 0 +32 23151 34.131436162993 0 +32 23151 34.131436162993 0 +32 23210 34.243993778327 0 +32 23210 34.243993778327 0 +32 23220 34.244153778327 0 +32 23220 34.244153778327 0 +32 23276 34.424399000269 0 +32 23276 34.424399000269 0 +32 23282 34.424559000269 0 +32 23282 34.424559000269 0 +32 23298 34.431276162993 0 +32 23298 34.431276162993 2 +32 23299 34.431276162993 2 +32 23299 34.431276162993 0 +32 23302 34.431276162993 0 +32 23302 34.431276162993 0 +32 23309 34.431436162993 0 +32 23309 34.431436162993 0 +32 23368 34.543993782072 0 +32 23368 34.543993782072 0 +32 23378 34.544153782072 0 +32 23378 34.544153782072 0 +32 23434 34.724399002779 0 +32 23434 34.724399002779 0 +32 23440 34.724559002779 0 +32 23440 34.724559002779 0 +32 23456 34.731276162993 0 +32 23456 34.731276162993 2 +32 23457 34.731276162993 2 +32 23457 34.731276162993 0 +32 23460 34.731276162993 0 +32 23460 34.731276162993 0 +32 23467 34.731436162993 0 +32 23467 34.731436162993 0 +32 23526 34.843993786489 0 +32 23526 34.843993786489 0 +32 23536 34.844153786489 0 +32 23536 34.844153786489 0 +32 23592 35.02439900524 0 +32 23592 35.02439900524 0 +32 23598 35.02455900524 0 +32 23598 35.02455900524 0 +32 23614 35.031276162993 0 +32 23614 35.031276162993 2 +32 23615 35.031276162993 2 +32 23615 35.031276162993 0 +32 23618 35.031276162993 0 +32 23618 35.031276162993 0 +32 23625 35.031436162993 0 +32 23625 35.031436162993 0 +32 23684 35.143993791503 0 +32 23684 35.143993791503 0 +32 23694 35.144153791503 0 +32 23694 35.144153791503 0 +32 23754 35.32439900778 0 +32 23754 35.32439900778 0 +32 23760 35.32455900778 0 +32 23760 35.32455900778 0 +32 23776 35.331276162993 0 +32 23776 35.331276162993 2 +32 23777 35.331276162993 2 +32 23777 35.331276162993 0 +32 23780 35.331276162993 0 +32 23780 35.331276162993 0 +32 23787 35.331436162993 0 +32 23787 35.331436162993 0 +32 23850 35.443993797136 0 +32 23850 35.443993797136 0 +32 23860 35.444153797136 0 +32 23860 35.444153797136 0 +32 23920 35.624399010314 0 +32 23920 35.624399010314 0 +32 23926 35.624559010314 0 +32 23926 35.624559010314 0 +32 23942 35.631276162993 0 +32 23942 35.631276162993 2 +32 23943 35.631276162993 2 +32 23943 35.631276162993 0 +32 23946 35.631276162993 0 +32 23946 35.631276162993 0 +32 23953 35.631436162993 0 +32 23953 35.631436162993 0 +32 24016 35.743993803331 0 +32 24016 35.743993803331 0 +32 24026 35.744153803331 0 +32 24026 35.744153803331 0 +32 24086 35.924399012824 0 +32 24086 35.924399012824 0 +32 24092 35.924559012824 0 +32 24092 35.924559012824 0 +32 24108 35.931276162993 0 +32 24108 35.931276162993 2 +32 24109 35.931276162993 2 +32 24109 35.931276162993 0 +32 24112 35.931276162993 0 +32 24112 35.931276162993 0 +32 24119 35.931436162993 0 +32 24119 35.931436162993 0 +32 24182 36.043993810134 0 +32 24182 36.043993810134 0 +32 24192 36.044153810134 0 +32 24192 36.044153810134 0 +32 24252 36.224399015304 0 +32 24252 36.224399015304 0 +32 24258 36.224559015304 0 +32 24258 36.224559015304 0 +32 24274 36.231276162993 0 +32 24274 36.231276162993 2 +32 24275 36.231276162993 2 +32 24275 36.231276162993 0 +32 24278 36.231276162993 0 +32 24278 36.231276162993 0 +32 24285 36.231436162993 0 +32 24285 36.231436162993 0 +32 24348 36.343993817527 0 +32 24348 36.343993817527 0 +32 24358 36.344153817527 0 +32 24358 36.344153817527 0 +32 24418 36.524399017802 0 +32 24418 36.524399017802 0 +32 24424 36.524559017802 0 +32 24424 36.524559017802 0 +32 24440 36.531276162993 0 +32 24440 36.531276162993 2 +32 24441 36.531276162993 2 +32 24441 36.531276162993 0 +32 24444 36.531276162993 0 +32 24444 36.531276162993 0 +32 24451 36.531436162993 0 +32 24451 36.531436162993 0 +32 24514 36.643993825454 0 +32 24514 36.643993825454 0 +32 24524 36.644153825454 0 +32 24524 36.644153825454 0 +32 24584 36.824399020283 0 +32 24584 36.824399020283 0 +32 24590 36.824559020283 0 +32 24590 36.824559020283 0 +32 24606 36.831276162993 0 +32 24606 36.831276162993 2 +32 24607 36.831276162993 2 +32 24607 36.831276162993 0 +32 24610 36.831276162993 0 +32 24610 36.831276162993 0 +32 24617 36.831436162993 0 +32 24617 36.831436162993 0 +32 24680 36.943993833942 0 +32 24680 36.943993833942 0 +32 24690 36.944153833942 0 +32 24690 36.944153833942 0 +32 24750 37.124399022747 0 +32 24750 37.124399022747 0 +32 24756 37.124559022747 0 +32 24756 37.124559022747 0 +32 24772 37.131276162993 0 +32 24772 37.131276162993 2 +32 24773 37.131276162993 2 +32 24773 37.131276162993 0 +32 24776 37.131276162993 0 +32 24776 37.131276162993 0 +32 24783 37.131436162993 0 +32 24783 37.131436162993 0 +32 24847 37.243993841675 0 +32 24847 37.243993841675 0 +32 24861 37.244153841675 0 +32 24861 37.244153841675 0 +32 24916 37.424399025229 0 +32 24916 37.424399025229 0 +32 24922 37.424559025229 0 +32 24922 37.424559025229 0 +32 24938 37.431276162993 0 +32 24938 37.431276162993 2 +32 24939 37.431276162993 2 +32 24939 37.431276162993 0 +32 24942 37.431276162993 0 +32 24942 37.431276162993 0 +32 24949 37.431436162993 0 +32 24949 37.431436162993 0 +32 25013 37.54399384071 0 +32 25013 37.54399384071 0 +32 25027 37.54415384071 0 +32 25027 37.54415384071 0 +32 25082 37.724399027708 0 +32 25082 37.724399027708 0 +32 25088 37.724559027708 0 +32 25088 37.724559027708 0 +32 25104 37.731276162993 0 +32 25104 37.731276162993 2 +32 25105 37.731276162993 2 +32 25105 37.731276162993 0 +32 25108 37.731276162993 0 +32 25108 37.731276162993 0 +32 25115 37.731436162993 0 +32 25115 37.731436162993 0 +32 25179 37.843993832964 0 +32 25179 37.843993832964 0 +32 25193 37.844153832964 0 +32 25193 37.844153832964 0 +32 25248 38.024399030169 0 +32 25248 38.024399030169 0 +32 25254 38.024559030169 0 +32 25254 38.024559030169 0 +32 25270 38.031276162993 0 +32 25270 38.031276162993 2 +32 25271 38.031276162993 2 +32 25271 38.031276162993 0 +32 25274 38.031276162993 0 +32 25274 38.031276162993 0 +32 25281 38.031436162993 0 +32 25281 38.031436162993 0 +32 25345 38.143993825758 0 +32 25345 38.143993825758 0 +32 25359 38.144153825758 0 +32 25359 38.144153825758 0 +32 25414 38.324399032643 0 +32 25414 38.324399032643 0 +32 25420 38.324559032643 0 +32 25420 38.324559032643 0 +32 25436 38.331276162993 0 +32 25436 38.331276162993 2 +32 25437 38.331276162993 2 +32 25437 38.331276162993 0 +32 25440 38.331276162993 0 +32 25440 38.331276162993 0 +32 25447 38.331436162993 0 +32 25447 38.331436162993 0 +32 25511 38.44399381973 0 +32 25511 38.44399381973 0 +32 25525 38.44415381973 0 +32 25525 38.44415381973 0 +32 25580 38.624399035134 0 +32 25580 38.624399035134 0 +32 25586 38.624559035134 0 +32 25586 38.624559035134 0 +32 25602 38.631276162993 0 +32 25602 38.631276162993 2 +32 25603 38.631276162993 2 +32 25603 38.631276162993 0 +32 25606 38.631276162993 0 +32 25606 38.631276162993 0 +32 25613 38.631436162993 0 +32 25613 38.631436162993 0 +32 25677 38.743993814907 0 +32 25677 38.743993814907 0 +32 25691 38.744153814907 0 +32 25691 38.744153814907 0 +32 25746 38.924399037653 0 +32 25746 38.924399037653 0 +32 25752 38.924559037653 0 +32 25752 38.924559037653 0 +32 25768 38.931276162993 0 +32 25768 38.931276162993 2 +32 25769 38.931276162993 2 +32 25769 38.931276162993 0 +32 25772 38.931276162993 0 +32 25772 38.931276162993 0 +32 25779 38.931436162993 0 +32 25779 38.931436162993 0 +32 25843 39.043993811322 0 +32 25843 39.043993811322 0 +32 25857 39.044153811322 0 +32 25857 39.044153811322 0 +32 25912 39.224399040102 0 +32 25912 39.224399040102 0 +32 25918 39.224559040102 0 +32 25918 39.224559040102 0 +32 25934 39.231276162993 0 +32 25934 39.231276162993 2 +32 25935 39.231276162993 2 +32 25935 39.231276162993 0 +32 25938 39.231276162993 0 +32 25938 39.231276162993 0 +32 25945 39.231436162993 0 +32 25945 39.231436162993 0 +32 26009 39.343993808998 0 +32 26009 39.343993808998 0 +32 26023 39.344153808998 0 +32 26023 39.344153808998 0 +32 26078 39.524399042597 0 +32 26078 39.524399042597 0 +32 26084 39.524559042597 0 +32 26084 39.524559042597 0 +32 26100 39.531276162993 0 +32 26100 39.531276162993 2 +32 26101 39.531276162993 2 +32 26101 39.531276162993 0 +32 26104 39.531276162993 0 +32 26104 39.531276162993 0 +32 26111 39.531436162993 0 +32 26111 39.531436162993 0 +32 26175 39.643993807943 0 +32 26175 39.643993807943 0 +32 26189 39.644153807943 0 +32 26189 39.644153807943 0 +32 26244 39.824399045083 0 +32 26244 39.824399045083 0 +32 26250 39.824559045083 0 +32 26250 39.824559045083 0 +32 26266 39.831276162993 0 +32 26266 39.831276162993 2 +32 26267 39.831276162993 2 +32 26267 39.831276162993 0 +32 26270 39.831276162993 0 +32 26270 39.831276162993 0 +32 26277 39.831436162993 0 +32 26277 39.831436162993 0 +32 26341 39.943993808167 0 +32 26341 39.943993808167 0 +32 26355 39.944153808167 0 +32 26355 39.944153808167 0 +32 26410 40.124399047608 0 +32 26410 40.124399047608 0 +32 26416 40.124559047608 0 +32 26416 40.124559047608 0 +32 26432 40.131276162993 0 +32 26432 40.131276162993 2 +32 26433 40.131276162993 2 +32 26433 40.131276162993 0 +32 26436 40.131276162993 0 +32 26436 40.131276162993 0 +32 26443 40.131436162993 0 +32 26443 40.131436162993 0 +32 26507 40.243993809672 0 +32 26507 40.243993809672 0 +32 26521 40.244153809672 0 +32 26521 40.244153809672 0 +32 26576 40.424399050085 0 +32 26576 40.424399050085 0 +32 26582 40.424559050085 0 +32 26582 40.424559050085 0 +32 26598 40.431276162993 0 +32 26598 40.431276162993 2 +32 26599 40.431276162993 2 +32 26599 40.431276162993 0 +32 26602 40.431276162993 0 +32 26602 40.431276162993 0 +32 26609 40.431436162993 0 +32 26609 40.431436162993 0 +32 26673 40.543993812444 0 +32 26673 40.543993812444 0 +32 26687 40.544153812444 0 +32 26687 40.544153812444 0 +32 26742 40.72439905259 0 +32 26742 40.72439905259 0 +32 26748 40.72455905259 0 +32 26748 40.72455905259 0 +32 26768 40.731276162993 0 +32 26768 40.731276162993 2 +32 26769 40.731276162993 2 +32 26769 40.731276162993 0 +32 26772 40.731276162993 0 +32 26772 40.731276162993 0 +32 26779 40.731436162993 0 +32 26779 40.731436162993 0 +32 26843 40.843993816458 0 +32 26843 40.843993816458 0 +32 26857 40.844153816458 0 +32 26857 40.844153816458 0 +32 26916 41.024399055027 0 +32 26916 41.024399055027 0 +32 26922 41.024559055027 0 +32 26922 41.024559055027 0 +32 26942 41.031276162993 0 +32 26942 41.031276162993 2 +32 26943 41.031276162993 2 +32 26943 41.031276162993 0 +32 26946 41.031276162993 0 +32 26946 41.031276162993 0 +32 26953 41.031436162993 0 +32 26953 41.031436162993 0 +32 27017 41.143993821716 0 +32 27017 41.143993821716 0 +32 27031 41.144153821716 0 +32 27031 41.144153821716 0 +32 27090 41.324399057542 0 +32 27090 41.324399057542 0 +32 27096 41.324559057542 0 +32 27096 41.324559057542 0 +32 27116 41.331276162993 0 +32 27116 41.331276162993 2 +32 27117 41.331276162993 2 +32 27117 41.331276162993 0 +32 27120 41.331276162993 0 +32 27120 41.331276162993 0 +32 27127 41.331436162993 0 +32 27127 41.331436162993 0 +32 27191 41.443993828168 0 +32 27191 41.443993828168 0 +32 27205 41.444153828168 0 +32 27205 41.444153828168 0 +32 27264 41.62439906007 0 +32 27264 41.62439906007 0 +32 27270 41.62455906007 0 +32 27270 41.62455906007 0 +32 27290 41.631276162993 0 +32 27290 41.631276162993 2 +32 27291 41.631276162993 2 +32 27291 41.631276162993 0 +32 27294 41.631276162993 0 +32 27294 41.631276162993 0 +32 27301 41.631436162993 0 +32 27301 41.631436162993 0 +32 27365 41.743993835789 0 +32 27365 41.743993835789 0 +32 27379 41.744153835789 0 +32 27379 41.744153835789 0 +32 27438 41.924399062611 0 +32 27438 41.924399062611 0 +32 27444 41.924559062611 0 +32 27444 41.924559062611 0 +32 27464 41.931276162993 0 +32 27464 41.931276162993 2 +32 27465 41.931276162993 2 +32 27465 41.931276162993 0 +32 27468 41.931276162993 0 +32 27468 41.931276162993 0 +32 27475 41.931436162993 0 +32 27475 41.931436162993 0 +32 27539 42.043993844221 0 +32 27539 42.043993844221 0 +32 27553 42.044153844221 0 +32 27553 42.044153844221 0 +32 27612 42.224399065158 0 +32 27612 42.224399065158 0 +32 27618 42.224559065158 0 +32 27618 42.224559065158 0 +32 27638 42.231276162993 0 +32 27638 42.231276162993 2 +32 27639 42.231276162993 2 +32 27639 42.231276162993 0 +32 27642 42.231276162993 0 +32 27642 42.231276162993 0 +32 27649 42.231436162993 0 +32 27649 42.231436162993 0 +32 27714 42.343993853216 0 +32 27714 42.343993853216 0 +32 27732 42.344153853216 0 +32 27732 42.344153853216 0 +32 27786 42.524399067719 0 +32 27786 42.524399067719 0 +32 27792 42.524559067719 0 +32 27792 42.524559067719 0 +32 27812 42.531276162993 0 +32 27812 42.531276162993 2 +32 27813 42.531276162993 2 +32 27813 42.531276162993 0 +32 27816 42.531276162993 0 +32 27816 42.531276162993 0 +32 27823 42.531436162993 0 +32 27823 42.531436162993 0 +32 27888 42.643993862563 0 +32 27888 42.643993862563 0 +32 27906 42.644153862563 0 +32 27906 42.644153862563 0 +32 27960 42.824399070171 0 +32 27960 42.824399070171 0 +32 27966 42.824559070171 0 +32 27966 42.824559070171 0 +32 27986 42.831276162993 0 +32 27986 42.831276162993 2 +32 27987 42.831276162993 2 +32 27987 42.831276162993 0 +32 27990 42.831276162993 0 +32 27990 42.831276162993 0 +32 27997 42.831436162993 0 +32 27997 42.831436162993 0 +32 28062 42.943993872107 0 +32 28062 42.943993872107 0 +32 28080 42.944153872107 0 +32 28080 42.944153872107 0 +32 28134 43.124399072679 0 +32 28134 43.124399072679 0 +32 28140 43.124559072679 0 +32 28140 43.124559072679 0 +32 28160 43.131276162993 0 +32 28160 43.131276162993 2 +32 28161 43.131276162993 2 +32 28161 43.131276162993 0 +32 28164 43.131276162993 0 +32 28164 43.131276162993 0 +32 28171 43.131436162993 0 +32 28171 43.131436162993 0 +32 28236 43.243993881734 0 +32 28236 43.243993881734 0 +32 28254 43.244153881734 0 +32 28254 43.244153881734 0 +32 28308 43.424399075168 0 +32 28308 43.424399075168 0 +32 28314 43.424559075168 0 +32 28314 43.424559075168 0 +32 28334 43.431276162993 0 +32 28334 43.431276162993 2 +32 28335 43.431276162993 2 +32 28335 43.431276162993 0 +32 28338 43.431276162993 0 +32 28338 43.431276162993 0 +32 28345 43.431436162993 0 +32 28345 43.431436162993 0 +32 28410 43.543993891273 0 +32 28410 43.543993891273 0 +32 28428 43.544153891273 0 +32 28428 43.544153891273 0 +32 28482 43.724399077694 0 +32 28482 43.724399077694 0 +32 28488 43.724559077694 0 +32 28488 43.724559077694 0 +32 28508 43.731276162993 0 +32 28508 43.731276162993 2 +32 28509 43.731276162993 2 +32 28509 43.731276162993 0 +32 28512 43.731276162993 0 +32 28512 43.731276162993 0 +32 28519 43.731436162993 0 +32 28519 43.731436162993 0 +32 28584 43.843993900664 0 +32 28584 43.843993900664 0 +32 28602 43.844153900664 0 +32 28602 43.844153900664 0 +32 28656 44.024399080215 0 +32 28656 44.024399080215 0 +32 28662 44.024559080215 0 +32 28662 44.024559080215 0 +32 28682 44.031276162993 0 +32 28682 44.031276162993 2 +32 28683 44.031276162993 2 +32 28683 44.031276162993 0 +32 28686 44.031276162993 0 +32 28686 44.031276162993 0 +32 28693 44.031436162993 0 +32 28693 44.031436162993 0 +32 28758 44.143993909788 0 +32 28758 44.143993909788 0 +32 28776 44.144153909788 0 +32 28776 44.144153909788 0 +32 28830 44.324399082695 0 +32 28830 44.324399082695 0 +32 28836 44.324559082695 0 +32 28836 44.324559082695 0 +32 28856 44.331276162993 0 +32 28856 44.331276162993 2 +32 28857 44.331276162993 2 +32 28857 44.331276162993 0 +32 28860 44.331276162993 0 +32 28860 44.331276162993 0 +32 28867 44.331436162993 0 +32 28867 44.331436162993 0 +32 28996 44.624399085153 0 +32 28996 44.624399085153 0 +32 29002 44.624559085153 0 +32 29002 44.624559085153 0 +32 29022 44.631276162993 0 +32 29022 44.631276162993 2 +32 29023 44.631276162993 2 +32 29023 44.631276162993 0 +32 29026 44.631276162993 0 +32 29026 44.631276162993 0 +32 29033 44.631436162993 0 +32 29033 44.631436162993 0 +32 29162 44.924399087671 0 +32 29162 44.924399087671 0 +32 29168 44.924559087671 0 +32 29168 44.924559087671 0 +32 29188 44.931276162993 0 +32 29188 44.931276162993 2 +32 29189 44.931276162993 2 +32 29189 44.931276162993 0 +32 29192 44.931276162993 0 +32 29192 44.931276162993 0 +32 29199 44.931436162993 0 +32 29199 44.931436162993 0 +32 29328 45.224399090114 0 +32 29328 45.224399090114 0 +32 29334 45.224559090114 0 +32 29334 45.224559090114 0 +32 29354 45.231276162993 0 +32 29354 45.231276162993 2 +32 29355 45.231276162993 2 +32 29355 45.231276162993 0 +32 29358 45.231276162993 0 +32 29358 45.231276162993 0 +32 29365 45.231436162993 0 +32 29365 45.231436162993 0 +32 29494 45.524399092613 0 +32 29494 45.524399092613 0 +32 29500 45.524559092613 0 +32 29500 45.524559092613 0 +32 29520 45.531276162993 0 +32 29520 45.531276162993 2 +32 29521 45.531276162993 2 +32 29521 45.531276162993 0 +32 29524 45.531276162993 0 +32 29524 45.531276162993 0 +32 29531 45.531436162993 0 +32 29531 45.531436162993 0 +32 29660 45.824399095152 0 +32 29660 45.824399095152 0 +32 29666 45.824559095152 0 +32 29666 45.824559095152 0 +32 29686 45.831276162993 0 +32 29686 45.831276162993 2 +32 29687 45.831276162993 2 +32 29687 45.831276162993 0 +32 29690 45.831276162993 0 +32 29690 45.831276162993 0 +32 29697 45.831436162993 0 +32 29697 45.831436162993 0 +32 29826 46.124399098204 0 +32 29826 46.124399098204 0 +32 29832 46.124559098204 0 +32 29832 46.124559098204 0 +32 29852 46.131276162993 0 +32 29852 46.131276162993 2 +32 29853 46.131276162993 2 +32 29853 46.131276162993 0 +32 29856 46.131276162993 0 +32 29856 46.131276162993 0 +32 29863 46.131436162993 0 +32 29863 46.131436162993 0 +32 29992 46.424399105752 0 +32 29992 46.424399105752 0 +32 29998 46.424559105752 0 +32 29998 46.424559105752 0 +32 30018 46.431276162993 0 +32 30018 46.431276162993 2 +32 30019 46.431276162993 2 +32 30019 46.431276162993 0 +32 30022 46.431276162993 0 +32 30022 46.431276162993 0 +32 30029 46.431436162993 0 +32 30029 46.431436162993 0 +32 30158 46.724399119111 0 +32 30158 46.724399119111 0 +32 30164 46.724559119111 0 +32 30164 46.724559119111 0 +32 30184 46.731276162993 0 +32 30184 46.731276162993 2 +32 30185 46.731276162993 2 +32 30185 46.731276162993 0 +32 30188 46.731276162993 0 +32 30188 46.731276162993 0 +32 30195 46.731436162993 0 +32 30195 46.731436162993 0 +32 30324 47.02439913369 0 +32 30324 47.02439913369 0 +32 30330 47.02455913369 0 +32 30330 47.02455913369 0 +32 30350 47.031276162993 0 +32 30350 47.031276162993 2 +32 30351 47.031276162993 2 +32 30351 47.031276162993 0 +32 30354 47.031276162993 0 +32 30354 47.031276162993 0 +32 30361 47.031436162993 0 +32 30361 47.031436162993 0 +32 30490 47.3243991485 0 +32 30490 47.3243991485 0 +32 30496 47.3245591485 0 +32 30496 47.3245591485 0 +32 30516 47.331276162993 0 +32 30516 47.331276162993 2 +32 30517 47.331276162993 2 +32 30517 47.331276162993 0 +32 30520 47.331276162993 0 +32 30520 47.331276162993 0 +32 30527 47.331436162993 0 +32 30527 47.331436162993 0 +32 30656 47.624399163475 0 +32 30656 47.624399163475 0 +32 30662 47.624559163475 0 +32 30662 47.624559163475 0 +32 30682 47.631276162993 0 +32 30682 47.631276162993 2 +32 30683 47.631276162993 2 +32 30683 47.631276162993 0 +32 30686 47.631276162993 0 +32 30686 47.631276162993 0 +32 30693 47.631436162993 0 +32 30693 47.631436162993 0 +32 30823 47.924399178648 0 +32 30823 47.924399178648 0 +32 30833 47.924559178648 0 +32 30833 47.924559178648 0 +32 30848 47.931276162993 0 +32 30848 47.931276162993 2 +32 30849 47.931276162993 2 +32 30849 47.931276162993 0 +32 30852 47.931276162993 0 +32 30852 47.931276162993 0 +32 30859 47.931436162993 0 +32 30859 47.931436162993 0 +32 30990 48.224399193917 0 +32 30990 48.224399193917 0 +32 31004 48.224559193917 0 +32 31004 48.224559193917 0 +32 31014 48.231276162993 0 +32 31014 48.231276162993 2 +32 31015 48.231276162993 2 +32 31015 48.231276162993 0 +32 31018 48.231276162993 0 +32 31018 48.231276162993 0 +32 31025 48.231436162993 0 +32 31025 48.231436162993 0 +32 31156 48.524399209372 0 +32 31156 48.524399209372 0 +32 31170 48.524559209372 0 +32 31170 48.524559209372 0 +32 31180 48.531276162993 0 +32 31180 48.531276162993 2 +32 31181 48.531276162993 2 +32 31181 48.531276162993 0 +32 31184 48.531276162993 0 +32 31184 48.531276162993 0 +32 31191 48.531436162993 0 +32 31191 48.531436162993 0 +32 31322 48.824399224983 0 +32 31322 48.824399224983 0 +32 31336 48.824559224983 0 +32 31336 48.824559224983 0 +32 31346 48.831276162993 0 +32 31346 48.831276162993 2 +32 31347 48.831276162993 2 +32 31347 48.831276162993 0 +32 31350 48.831276162993 0 +32 31350 48.831276162993 0 +32 31357 48.831436162993 0 +32 31357 48.831436162993 0 +32 31488 49.124399240703 0 +32 31488 49.124399240703 0 +32 31502 49.124559240703 0 +32 31502 49.124559240703 0 +32 31512 49.131276162993 0 +32 31512 49.131276162993 2 +32 31513 49.131276162993 2 +32 31513 49.131276162993 0 +32 31516 49.131276162993 0 +32 31516 49.131276162993 0 +32 31523 49.131436162993 0 +32 31523 49.131436162993 0 +32 31654 49.424399256502 0 +32 31654 49.424399256502 0 +32 31668 49.424559256502 0 +32 31668 49.424559256502 0 +32 31678 49.431276162993 0 +32 31678 49.431276162993 2 +32 31679 49.431276162993 2 +32 31679 49.431276162993 0 +32 31682 49.431276162993 0 +32 31682 49.431276162993 0 +32 31689 49.431436162993 0 +32 31689 49.431436162993 0 +32 31820 49.724399261494 0 +32 31820 49.724399261494 0 +32 31834 49.724559261494 0 +32 31834 49.724559261494 0 +32 31844 49.731276162993 0 +32 31844 49.731276162993 2 +32 31845 49.731276162993 2 +32 31845 49.731276162993 0 +32 31848 49.731276162993 0 +32 31848 49.731276162993 0 +32 31855 49.731436162993 0 +32 31855 49.731436162993 0 +32 31986 50.02439926103 0 +32 31986 50.02439926103 0 +32 32000 50.02455926103 0 +32 32000 50.02455926103 0 +32 32010 50.031276162993 0 +32 32010 50.031276162993 2 +32 32011 50.031276162993 2 +32 32011 50.031276162993 0 +32 32014 50.031276162993 0 +32 32014 50.031276162993 0 +32 32021 50.031436162993 0 +32 32021 50.031436162993 0 +32 32152 50.324399260569 0 +32 32152 50.324399260569 0 +32 32166 50.324559260569 0 +32 32166 50.324559260569 0 +32 32176 50.331276162993 0 +32 32176 50.331276162993 2 +32 32177 50.331276162993 2 +32 32177 50.331276162993 0 +32 32180 50.331276162993 0 +32 32180 50.331276162993 0 +32 32187 50.331436162993 0 +32 32187 50.331436162993 0 +32 32318 50.624399260125 0 +32 32318 50.624399260125 0 +32 32332 50.624559260125 0 +32 32332 50.624559260125 0 +32 32342 50.631276162993 0 +32 32342 50.631276162993 2 +32 32343 50.631276162993 2 +32 32343 50.631276162993 0 +32 32346 50.631276162993 0 +32 32346 50.631276162993 0 +32 32353 50.631436162993 0 +32 32353 50.631436162993 0 +32 32484 50.924399259692 0 +32 32484 50.924399259692 0 +32 32498 50.924559259692 0 +32 32498 50.924559259692 0 +32 32508 50.931276162993 0 +32 32508 50.931276162993 2 +32 32509 50.931276162993 2 +32 32509 50.931276162993 0 +32 32512 50.931276162993 0 +32 32512 50.931276162993 0 +32 32519 50.931436162993 0 +32 32519 50.931436162993 0 +32 32646 51.224399259255 0 +32 32646 51.224399259255 0 +32 32660 51.224559259255 0 +32 32660 51.224559259255 0 +32 32670 51.231276162993 0 +32 32670 51.231276162993 2 +32 32671 51.231276162993 2 +32 32671 51.231276162993 0 +32 32674 51.231276162993 0 +32 32674 51.231276162993 0 +32 32681 51.231436162993 0 +32 32681 51.231436162993 0 +32 32804 51.524399258837 0 +32 32804 51.524399258837 0 +32 32818 51.524559258837 0 +32 32818 51.524559258837 0 +32 32828 51.531276162993 0 +32 32828 51.531276162993 2 +32 32829 51.531276162993 2 +32 32829 51.531276162993 0 +32 32832 51.531276162993 0 +32 32832 51.531276162993 0 +32 32839 51.531436162993 0 +32 32839 51.531436162993 0 +32 32865 51.557384429561 0 +32 32865 51.557384429561 0 +32 32879 51.557544429561 0 +32 32879 51.557544429561 0 +32 32970 51.824399258432 0 +32 32970 51.824399258432 0 +32 32984 51.824559258432 0 +32 32984 51.824559258432 0 +32 32994 51.831276162993 0 +32 32994 51.831276162993 2 +32 32995 51.831276162993 2 +32 32995 51.831276162993 0 +32 32998 51.831276162993 0 +32 32998 51.831276162993 0 +32 33005 51.831436162993 0 +32 33005 51.831436162993 0 +32 33031 51.857384410523 0 +32 33031 51.857384410523 0 +32 33045 51.857544410523 0 +32 33045 51.857544410523 0 +32 33136 52.124399258035 0 +32 33136 52.124399258035 0 +32 33150 52.124559258035 0 +32 33150 52.124559258035 0 +32 33160 52.131276162993 0 +32 33160 52.131276162993 2 +32 33161 52.131276162993 2 +32 33161 52.131276162993 0 +32 33164 52.131276162993 0 +32 33164 52.131276162993 0 +32 33171 52.131436162993 0 +32 33171 52.131436162993 0 +32 33197 52.157384391469 0 +32 33197 52.157384391469 0 +32 33211 52.157544391469 0 +32 33211 52.157544391469 0 +32 33302 52.424399257631 0 +32 33302 52.424399257631 0 +32 33316 52.424559257631 0 +32 33316 52.424559257631 0 +32 33326 52.431276162993 0 +32 33326 52.431276162993 2 +32 33327 52.431276162993 2 +32 33327 52.431276162993 0 +32 33330 52.431276162993 0 +32 33330 52.431276162993 0 +32 33337 52.431436162993 0 +32 33337 52.431436162993 0 +32 33363 52.45738437236 0 +32 33363 52.45738437236 0 +32 33377 52.45754437236 0 +32 33377 52.45754437236 0 +32 33468 52.724399257249 0 +32 33468 52.724399257249 0 +32 33482 52.724559257249 0 +32 33482 52.724559257249 0 +32 33492 52.731276162993 0 +32 33492 52.731276162993 2 +32 33493 52.731276162993 2 +32 33493 52.731276162993 0 +32 33496 52.731276162993 0 +32 33496 52.731276162993 0 +32 33503 52.731436162993 0 +32 33503 52.731436162993 0 +32 33529 52.75738435334 0 +32 33529 52.75738435334 0 +32 33543 52.75754435334 0 +32 33543 52.75754435334 0 +32 33634 53.024399256872 0 +32 33634 53.024399256872 0 +32 33648 53.024559256872 0 +32 33648 53.024559256872 0 +32 33658 53.031276162993 0 +32 33658 53.031276162993 2 +32 33659 53.031276162993 2 +32 33659 53.031276162993 0 +32 33662 53.031276162993 0 +32 33662 53.031276162993 0 +32 33669 53.031436162993 0 +32 33669 53.031436162993 0 +32 33695 53.057384334363 0 +32 33695 53.057384334363 0 +32 33709 53.057544334363 0 +32 33709 53.057544334363 0 +32 33776 53.324399256501 0 +32 33776 53.324399256501 0 +32 33789 53.324559256501 0 +32 33789 53.324559256501 0 +32 33797 53.331276162993 0 +32 33797 53.331276162993 2 +32 33798 53.331276162993 2 +32 33798 53.331276162993 0 +32 33801 53.331276162993 0 +32 33801 53.331276162993 0 +32 33807 53.331436162993 0 +32 33807 53.331436162993 0 +32 33832 53.357384316044 0 +32 33832 53.357384316044 0 +32 33845 53.357544316044 0 +32 33845 53.357544316044 0 +32 33903 53.624399256146 0 +32 33903 53.624399256146 0 +32 33916 53.624559256146 0 +32 33916 53.624559256146 0 +32 33924 53.631276162993 0 +32 33924 53.631276162993 2 +32 33925 53.631276162993 2 +32 33925 53.631276162993 0 +32 33928 53.631276162993 0 +32 33928 53.631276162993 0 +32 33934 53.631436162993 0 +32 33934 53.631436162993 0 +32 33959 53.657384298598 0 +32 33959 53.657384298598 0 +32 33972 53.657544298598 0 +32 33972 53.657544298598 0 +32 34030 53.924399255807 0 +32 34030 53.924399255807 0 +32 34043 53.924559255807 0 +32 34043 53.924559255807 0 +32 34051 53.931276162993 0 +32 34051 53.931276162993 2 +32 34052 53.931276162993 2 +32 34052 53.931276162993 0 +32 34055 53.931276162993 0 +32 34055 53.931276162993 0 +32 34061 53.931436162993 0 +32 34061 53.931436162993 0 +32 34086 53.95738428203 0 +32 34086 53.95738428203 0 +32 34099 53.95754428203 0 +32 34099 53.95754428203 0 +32 34157 54.224399255474 0 +32 34157 54.224399255474 0 +32 34170 54.224559255474 0 +32 34170 54.224559255474 0 +32 34178 54.231276162993 0 +32 34178 54.231276162993 2 +32 34179 54.231276162993 2 +32 34179 54.231276162993 0 +32 34182 54.231276162993 0 +32 34182 54.231276162993 0 +32 34188 54.231436162993 0 +32 34188 54.231436162993 0 +32 34213 54.257384266324 0 +32 34213 54.257384266324 0 +32 34226 54.257544266324 0 +32 34226 54.257544266324 0 +32 34284 54.52439925514 0 +32 34284 54.52439925514 0 +32 34297 54.52455925514 0 +32 34297 54.52455925514 0 +32 34305 54.531276162993 0 +32 34305 54.531276162993 2 +32 34306 54.531276162993 2 +32 34306 54.531276162993 0 +32 34309 54.531276162993 0 +32 34309 54.531276162993 0 +32 34315 54.531436162993 0 +32 34315 54.531436162993 0 +32 34340 54.557384251324 0 +32 34340 54.557384251324 0 +32 34353 54.557544251324 0 +32 34353 54.557544251324 0 +32 34411 54.824399254865 0 +32 34411 54.824399254865 0 +32 34424 54.824559254865 0 +32 34424 54.824559254865 0 +32 34432 54.831276162993 0 +32 34432 54.831276162993 2 +32 34433 54.831276162993 2 +32 34433 54.831276162993 0 +32 34436 54.831276162993 0 +32 34436 54.831276162993 0 +32 34442 54.831436162993 0 +32 34442 54.831436162993 0 +32 34467 54.857384236279 0 +32 34467 54.857384236279 0 +32 34480 54.857544236279 0 +32 34480 54.857544236279 0 +32 34538 55.124399254758 0 +32 34538 55.124399254758 0 +32 34551 55.124559254758 0 +32 34551 55.124559254758 0 +32 34559 55.131276162993 0 +32 34559 55.131276162993 2 +32 34560 55.131276162993 2 +32 34560 55.131276162993 0 +32 34563 55.131276162993 0 +32 34563 55.131276162993 0 +32 34569 55.131436162993 0 +32 34569 55.131436162993 0 +32 34594 55.157384221704 0 +32 34594 55.157384221704 0 +32 34607 55.157544221704 0 +32 34607 55.157544221704 0 +32 34665 55.424399254821 0 +32 34665 55.424399254821 0 +32 34678 55.424559254821 0 +32 34678 55.424559254821 0 +32 34686 55.431276162993 0 +32 34686 55.431276162993 2 +32 34687 55.431276162993 2 +32 34687 55.431276162993 0 +32 34690 55.431276162993 0 +32 34690 55.431276162993 0 +32 34696 55.431436162993 0 +32 34696 55.431436162993 0 +32 34721 55.45738420776 0 +32 34721 55.45738420776 0 +32 34734 55.45754420776 0 +32 34734 55.45754420776 0 +32 34792 55.724399255052 0 +32 34792 55.724399255052 0 +32 34805 55.724559255052 0 +32 34805 55.724559255052 0 +32 34813 55.731276162993 0 +32 34813 55.731276162993 2 +32 34814 55.731276162993 2 +32 34814 55.731276162993 0 +32 34817 55.731276162993 0 +32 34817 55.731276162993 0 +32 34823 55.731436162993 0 +32 34823 55.731436162993 0 +32 34848 55.757384194465 0 +32 34848 55.757384194465 0 +32 34861 55.757544194465 0 +32 34861 55.757544194465 0 +32 34919 56.024399255468 0 +32 34919 56.024399255468 0 +32 34932 56.024559255468 0 +32 34932 56.024559255468 0 +32 34940 56.031276162993 0 +32 34940 56.031276162993 2 +32 34941 56.031276162993 2 +32 34941 56.031276162993 0 +32 34944 56.031276162993 0 +32 34944 56.031276162993 0 +32 34950 56.031436162993 0 +32 34950 56.031436162993 0 +32 34975 56.05738418177 0 +32 34975 56.05738418177 0 +32 34988 56.05754418177 0 +32 34988 56.05754418177 0 +32 35046 56.324399256088 0 +32 35046 56.324399256088 0 +32 35059 56.324559256088 0 +32 35059 56.324559256088 0 +32 35067 56.331276162993 0 +32 35067 56.331276162993 2 +32 35068 56.331276162993 2 +32 35068 56.331276162993 0 +32 35071 56.331276162993 0 +32 35071 56.331276162993 0 +32 35077 56.331436162993 0 +32 35077 56.331436162993 0 +32 35102 56.357384169733 0 +32 35102 56.357384169733 0 +32 35115 56.357544169733 0 +32 35115 56.357544169733 0 +32 35170 56.624399256836 0 +32 35170 56.624399256836 0 +32 35178 56.624559256836 0 +32 35178 56.624559256836 0 +32 35186 56.631276162993 0 +32 35186 56.631276162993 2 +32 35187 56.631276162993 2 +32 35187 56.631276162993 0 +32 35190 56.631276162993 0 +32 35190 56.631276162993 0 +32 35195 56.631436162993 0 +32 35195 56.631436162993 0 +32 35218 56.657384157873 0 +32 35218 56.657384157873 0 +32 35226 56.657544157873 0 +32 35226 56.657544157873 0 +32 35254 56.924399261596 0 +32 35254 56.924399261596 0 +32 35262 56.924559261596 0 +32 35262 56.924559261596 0 +32 35270 56.931276162993 0 +32 35270 56.931276162993 2 +32 35271 56.931276162993 2 +32 35271 56.931276162993 0 +32 35274 56.931276162993 0 +32 35274 56.931276162993 0 +32 35279 56.931436162993 0 +32 35279 56.931436162993 0 +32 35302 56.957384148777 0 +32 35302 56.957384148777 0 +32 35310 56.957544148777 0 +32 35310 56.957544148777 0 +32 35338 57.224399269866 0 +32 35338 57.224399269866 0 +32 35346 57.224559269866 0 +32 35346 57.224559269866 0 +32 35354 57.231276162993 0 +32 35354 57.231276162993 2 +32 35355 57.231276162993 2 +32 35355 57.231276162993 0 +32 35358 57.231276162993 0 +32 35358 57.231276162993 0 +32 35363 57.231436162993 0 +32 35363 57.231436162993 0 +32 35386 57.257384147466 0 +32 35386 57.257384147466 0 +32 35394 57.257544147466 0 +32 35394 57.257544147466 0 +32 35422 57.524399274423 0 +32 35422 57.524399274423 0 +32 35430 57.524559274423 0 +32 35430 57.524559274423 0 +32 35438 57.531276162993 0 +32 35438 57.531276162993 2 +32 35439 57.531276162993 2 +32 35439 57.531276162993 0 +32 35442 57.531276162993 0 +32 35442 57.531276162993 0 +32 35447 57.531436162993 0 +32 35447 57.531436162993 0 +32 35469 57.557384146735 0 +32 35469 57.557384146735 0 +32 35473 57.557544146735 0 +32 35473 57.557544146735 0 +32 35506 57.824399278835 0 +32 35506 57.824399278835 0 +32 35514 57.824559278835 0 +32 35514 57.824559278835 0 +32 35522 57.831276162993 0 +32 35522 57.831276162993 2 +32 35523 57.831276162993 2 +32 35523 57.831276162993 0 +32 35526 57.831276162993 0 +32 35526 57.831276162993 0 +32 35531 57.831436162993 0 +32 35531 57.831436162993 0 +32 35553 57.857384146402 0 +32 35553 57.857384146402 0 +32 35557 57.857544146402 0 +32 35557 57.857544146402 0 +32 35590 58.124399283976 0 +32 35590 58.124399283976 0 +32 35598 58.124559283976 0 +32 35598 58.124559283976 0 +32 35606 58.131276162993 0 +32 35606 58.131276162993 2 +32 35607 58.131276162993 2 +32 35607 58.131276162993 0 +32 35610 58.131276162993 0 +32 35610 58.131276162993 0 +32 35615 58.131436162993 0 +32 35615 58.131436162993 0 +32 35637 58.157384147163 0 +32 35637 58.157384147163 0 +32 35641 58.157544147163 0 +32 35641 58.157544147163 0 +32 35674 58.424399289901 0 +32 35674 58.424399289901 0 +32 35682 58.424559289901 0 +32 35682 58.424559289901 0 +32 35690 58.431276162993 0 +32 35690 58.431276162993 2 +32 35691 58.431276162993 2 +32 35691 58.431276162993 0 +32 35694 58.431276162993 0 +32 35694 58.431276162993 0 +32 35699 58.431436162993 0 +32 35699 58.431436162993 0 +32 35721 58.457384148999 0 +32 35721 58.457384148999 0 +32 35725 58.457544148999 0 +32 35725 58.457544148999 0 +32 35758 58.724399296596 0 +32 35758 58.724399296596 0 +32 35766 58.724559296596 0 +32 35766 58.724559296596 0 +32 35774 58.731276162993 0 +32 35774 58.731276162993 2 +32 35775 58.731276162993 2 +32 35775 58.731276162993 0 +32 35778 58.731276162993 0 +32 35778 58.731276162993 0 +32 35783 58.731436162993 0 +32 35783 58.731436162993 0 +32 35805 58.757384151953 0 +32 35805 58.757384151953 0 +32 35809 58.757544151953 0 +32 35809 58.757544151953 0 +32 35842 59.024399304148 0 +32 35842 59.024399304148 0 +32 35850 59.024559304148 0 +32 35850 59.024559304148 0 +32 35858 59.031276162993 0 +32 35858 59.031276162993 2 +32 35859 59.031276162993 2 +32 35859 59.031276162993 0 +32 35862 59.031276162993 0 +32 35862 59.031276162993 0 +32 35867 59.031436162993 0 +32 35867 59.031436162993 0 +32 35889 59.057384156076 0 +32 35889 59.057384156076 0 +32 35893 59.057544156076 0 +32 35893 59.057544156076 0 +32 35926 59.324399312582 0 +32 35926 59.324399312582 0 +32 35934 59.324559312582 0 +32 35934 59.324559312582 0 +32 35942 59.331276162993 0 +32 35942 59.331276162993 2 +32 35943 59.331276162993 2 +32 35943 59.331276162993 0 +32 35946 59.331276162993 0 +32 35946 59.331276162993 0 +32 35951 59.331436162993 0 +32 35951 59.331436162993 0 +32 35973 59.357384161385 0 +32 35973 59.357384161385 0 +32 35977 59.357544161385 0 +32 35977 59.357544161385 0 +32 36010 59.624399321918 0 +32 36010 59.624399321918 0 +32 36018 59.624559321918 0 +32 36018 59.624559321918 0 +32 36026 59.631276162993 0 +32 36026 59.631276162993 2 +32 36027 59.631276162993 2 +32 36027 59.631276162993 0 +32 36030 59.631276162993 0 +32 36030 59.631276162993 0 +32 36035 59.631436162993 0 +32 36035 59.631436162993 0 +32 36057 59.657384167848 0 +32 36057 59.657384167848 0 +32 36061 59.657544167848 0 +32 36061 59.657544167848 0 +32 36094 59.924399332192 0 +32 36094 59.924399332192 0 +32 36102 59.924559332192 0 +32 36102 59.924559332192 0 +32 36110 59.931276162993 0 +32 36110 59.931276162993 2 +32 36111 59.931276162993 2 +32 36111 59.931276162993 0 +32 36114 59.931276162993 0 +32 36114 59.931276162993 0 +32 36119 59.931436162993 0 +32 36119 59.931436162993 0 +32 36141 59.957384175485 0 +32 36141 59.957384175485 0 +32 36145 59.957544175485 0 +32 36145 59.957544175485 0 +32 36190 60.231276162993 0 +32 36190 60.231276162993 2 +32 36191 60.231276162993 2 +32 36191 60.231276162993 0 +32 36194 60.231276162993 0 +32 36194 60.231276162993 0 +32 36199 60.231436162993 0 +32 36199 60.231436162993 0 +32 36217 60.257384184183 0 +32 36217 60.257384184183 0 +32 36221 60.257544184183 0 +32 36221 60.257544184183 0 +32 36266 60.531276162993 0 +32 36266 60.531276162993 2 +32 36267 60.531276162993 2 +32 36267 60.531276162993 0 +32 36270 60.531276162993 0 +32 36270 60.531276162993 0 +32 36275 60.531436162993 0 +32 36275 60.531436162993 0 +32 36293 60.557384193582 0 +32 36293 60.557384193582 0 +32 36297 60.557544193582 0 +32 36297 60.557544193582 0 +32 36342 60.831276162993 0 +32 36342 60.831276162993 2 +32 36343 60.831276162993 2 +32 36343 60.831276162993 0 +32 36346 60.831276162993 0 +32 36346 60.831276162993 0 +32 36351 60.831436162993 0 +32 36351 60.831436162993 0 +32 36369 60.857384203546 0 +32 36369 60.857384203546 0 +32 36373 60.857544203546 0 +32 36373 60.857544203546 0 +32 36418 61.131276162993 0 +32 36418 61.131276162993 2 +32 36419 61.131276162993 2 +32 36419 61.131276162993 0 +32 36422 61.131276162993 0 +32 36422 61.131276162993 0 +32 36427 61.131436162993 0 +32 36427 61.131436162993 0 +32 36445 61.157384214046 0 +32 36445 61.157384214046 0 +32 36449 61.157544214046 0 +32 36449 61.157544214046 0 +32 36494 61.431276162993 0 +32 36494 61.431276162993 2 +32 36495 61.431276162993 2 +32 36495 61.431276162993 0 +32 36498 61.431276162993 0 +32 36498 61.431276162993 0 +32 36503 61.431436162993 0 +32 36503 61.431436162993 0 +32 36521 61.457384224953 0 +32 36521 61.457384224953 0 +32 36525 61.457544224953 0 +32 36525 61.457544224953 0 +32 36570 61.731276162993 0 +32 36570 61.731276162993 2 +32 36571 61.731276162993 2 +32 36571 61.731276162993 0 +32 36574 61.731276162993 0 +32 36574 61.731276162993 0 +32 36579 61.731436162993 0 +32 36579 61.731436162993 0 +32 36597 61.757384236307 0 +32 36597 61.757384236307 0 +32 36601 61.757544236307 0 +32 36601 61.757544236307 0 +32 36646 62.031276162993 0 +32 36646 62.031276162993 2 +32 36647 62.031276162993 2 +32 36647 62.031276162993 0 +32 36650 62.031276162993 0 +32 36650 62.031276162993 0 +32 36655 62.031436162993 0 +32 36655 62.031436162993 0 +32 36673 62.057384248207 0 +32 36673 62.057384248207 0 +32 36677 62.057544248207 0 +32 36677 62.057544248207 0 +32 36722 62.331276162993 0 +32 36722 62.331276162993 2 +32 36723 62.331276162993 2 +32 36723 62.331276162993 0 +32 36726 62.331276162993 0 +32 36726 62.331276162993 0 +32 36731 62.331436162993 0 +32 36731 62.331436162993 0 +32 36749 62.357384260662 0 +32 36749 62.357384260662 0 +32 36753 62.357544260662 0 +32 36753 62.357544260662 0 +32 36798 62.631276162993 0 +32 36798 62.631276162993 2 +32 36799 62.631276162993 2 +32 36799 62.631276162993 0 +32 36802 62.631276162993 0 +32 36802 62.631276162993 0 +32 36807 62.631436162993 0 +32 36807 62.631436162993 0 +32 36825 62.657384273497 0 +32 36825 62.657384273497 0 +32 36829 62.657544273497 0 +32 36829 62.657544273497 0 +32 36874 62.931276162993 0 +32 36874 62.931276162993 2 +32 36875 62.931276162993 2 +32 36875 62.931276162993 0 +32 36878 62.931276162993 0 +32 36878 62.931276162993 0 +32 36883 62.931436162993 0 +32 36883 62.931436162993 0 +32 36901 62.957384286646 0 +32 36901 62.957384286646 0 +32 36905 62.957544286646 0 +32 36905 62.957544286646 0 +33 124 3.1 0 +33 124 3.1 0 +33 142 3.21455740282 0 +33 142 3.21455740282 0 +33 150 3.21471740282 0 +33 150 3.21471740282 0 +33 166 3.257384424448 0 +33 166 3.257384424448 0 +33 174 3.257544424448 0 +33 174 3.257544424448 0 +33 202 3.514557399314 0 +33 202 3.514557399314 0 +33 210 3.514717399314 0 +33 210 3.514717399314 0 +33 223 3.531276162993 0 +33 223 3.531276162993 0 +33 228 3.531436162993 0 +33 228 3.531436162993 0 +33 250 3.557384424342 0 +33 250 3.557384424342 0 +33 258 3.557544424342 0 +33 258 3.557544424342 0 +33 286 3.81455739499 0 +33 286 3.81455739499 0 +33 294 3.81471739499 0 +33 294 3.81471739499 0 +33 307 3.831276162993 0 +33 307 3.831276162993 0 +33 312 3.831436162993 0 +33 312 3.831436162993 0 +33 334 3.857384424025 0 +33 334 3.857384424025 0 +33 342 3.857544424025 0 +33 342 3.857544424025 0 +33 371 4.11455739006 0 +33 371 4.11455739006 0 +33 380 4.11471739006 0 +33 380 4.11471739006 0 +33 394 4.131276162993 0 +33 394 4.131276162993 0 +33 400 4.131436162993 0 +33 400 4.131436162993 0 +33 427 4.157384423703 0 +33 427 4.157384423703 0 +33 436 4.157544423703 0 +33 436 4.157544423703 0 +33 468 4.414557384462 0 +33 468 4.414557384462 0 +33 477 4.414717384462 0 +33 477 4.414717384462 0 +33 491 4.431276162993 0 +33 491 4.431276162993 0 +33 497 4.431436162993 0 +33 497 4.431436162993 0 +33 524 4.457384423373 0 +33 524 4.457384423373 0 +33 533 4.457544423373 0 +33 533 4.457544423373 0 +33 554 4.54399363691 0 +33 554 4.54399363691 0 +33 559 4.54415363691 0 +33 559 4.54415363691 0 +33 587 4.714557378402 0 +33 587 4.714557378402 0 +33 596 4.714717378402 0 +33 596 4.714717378402 0 +33 610 4.731276162993 0 +33 610 4.731276162993 0 +33 616 4.731436162993 0 +33 616 4.731436162993 0 +33 643 4.757384423069 0 +33 643 4.757384423069 0 +33 652 4.757544423069 0 +33 652 4.757544423069 0 +33 673 4.843993636799 0 +33 673 4.843993636799 0 +33 678 4.844153636799 0 +33 678 4.844153636799 0 +33 706 5.014557371745 0 +33 706 5.014557371745 0 +33 715 5.014717371745 0 +33 715 5.014717371745 0 +33 729 5.031276162993 0 +33 729 5.031276162993 0 +33 735 5.031436162993 0 +33 735 5.031436162993 0 +33 762 5.057384422748 0 +33 762 5.057384422748 0 +33 771 5.057544422748 0 +33 771 5.057544422748 0 +33 794 5.143993636284 0 +33 794 5.143993636284 0 +33 804 5.144153636284 0 +33 804 5.144153636284 0 +33 834 5.31455736441 0 +33 834 5.31455736441 0 +33 844 5.31471736441 0 +33 844 5.31471736441 0 +33 859 5.331276162993 0 +33 859 5.331276162993 0 +33 866 5.331436162993 0 +33 866 5.331436162993 0 +33 894 5.357384422438 0 +33 894 5.357384422438 0 +33 904 5.357544422438 0 +33 904 5.357544422438 0 +33 928 5.443993635357 0 +33 928 5.443993635357 0 +33 938 5.444153635357 0 +33 938 5.444153635357 0 +33 968 5.614557356527 0 +33 968 5.614557356527 0 +33 978 5.614717356527 0 +33 978 5.614717356527 0 +33 993 5.631276162993 0 +33 993 5.631276162993 0 +33 1000 5.631436162993 0 +33 1000 5.631436162993 0 +33 1028 5.657384422133 0 +33 1028 5.657384422133 0 +33 1038 5.657544422133 0 +33 1038 5.657544422133 0 +33 1086 5.743993634123 0 +33 1086 5.743993634123 0 +33 1096 5.744153634123 0 +33 1096 5.744153634123 0 +33 1126 5.914557347995 0 +33 1126 5.914557347995 0 +33 1136 5.914717347995 0 +33 1136 5.914717347995 0 +33 1151 5.931276162993 0 +33 1151 5.931276162993 0 +33 1158 5.931436162993 0 +33 1158 5.931436162993 0 +33 1186 5.957384421828 0 +33 1186 5.957384421828 0 +33 1196 5.957544421828 0 +33 1196 5.957544421828 0 +33 1244 6.043993632613 0 +33 1244 6.043993632613 0 +33 1254 6.044153632613 0 +33 1254 6.044153632613 0 +33 1287 6.214557338841 0 +33 1287 6.214557338841 0 +33 1302 6.214717338841 0 +33 1302 6.214717338841 0 +33 1317 6.231276162993 0 +33 1317 6.231276162993 0 +33 1325 6.231436162993 0 +33 1325 6.231436162993 0 +33 1359 6.257384421526 0 +33 1359 6.257384421526 0 +33 1374 6.257544421526 0 +33 1374 6.257544421526 0 +33 1425 6.343993630796 0 +33 1425 6.343993630796 0 +33 1436 6.344153630796 0 +33 1436 6.344153630796 0 +33 1470 6.514557329163 0 +33 1470 6.514557329163 0 +33 1485 6.514717329163 0 +33 1485 6.514717329163 0 +33 1502 6.524398906174 0 +33 1502 6.524398906174 0 +33 1513 6.524558906174 0 +33 1513 6.524558906174 0 +33 1533 6.531276162993 0 +33 1533 6.531276162993 0 +33 1541 6.531436162993 0 +33 1541 6.531436162993 0 +33 1576 6.557384421227 0 +33 1576 6.557384421227 0 +33 1591 6.557544421227 0 +33 1591 6.557544421227 0 +33 1642 6.643993628669 0 +33 1642 6.643993628669 0 +33 1653 6.644153628669 0 +33 1653 6.644153628669 0 +33 1687 6.81455731881 0 +33 1687 6.81455731881 0 +33 1702 6.81471731881 0 +33 1702 6.81471731881 0 +33 1719 6.824398906154 0 +33 1719 6.824398906154 0 +33 1730 6.824558906154 0 +33 1730 6.824558906154 0 +33 1750 6.831276162993 0 +33 1750 6.831276162993 0 +33 1758 6.831436162993 0 +33 1758 6.831436162993 0 +33 1793 6.857384420921 0 +33 1793 6.857384420921 0 +33 1808 6.857544420921 0 +33 1808 6.857544420921 0 +33 1859 6.943993626289 0 +33 1859 6.943993626289 0 +33 1870 6.944153626289 0 +33 1870 6.944153626289 0 +33 1904 7.114557307827 0 +33 1904 7.114557307827 0 +33 1919 7.114717307827 0 +33 1919 7.114717307827 0 +33 1936 7.124398906151 0 +33 1936 7.124398906151 0 +33 1947 7.124558906151 0 +33 1947 7.124558906151 0 +33 1967 7.131276162993 0 +33 1967 7.131276162993 0 +33 1975 7.131436162993 0 +33 1975 7.131436162993 0 +33 2010 7.157384420615 0 +33 2010 7.157384420615 0 +33 2025 7.157544420615 0 +33 2025 7.157544420615 0 +33 2076 7.243993623629 0 +33 2076 7.243993623629 0 +33 2087 7.244153623629 0 +33 2087 7.244153623629 0 +33 2121 7.414557296389 0 +33 2121 7.414557296389 0 +33 2136 7.414717296389 0 +33 2136 7.414717296389 0 +33 2153 7.424398906139 0 +33 2153 7.424398906139 0 +33 2164 7.424558906139 0 +33 2164 7.424558906139 0 +33 2184 7.431276162993 0 +33 2184 7.431276162993 0 +33 2192 7.431436162993 0 +33 2192 7.431436162993 0 +33 2227 7.45738442031 0 +33 2227 7.45738442031 0 +33 2242 7.45754442031 0 +33 2242 7.45754442031 0 +33 2293 7.543993620729 0 +33 2293 7.543993620729 0 +33 2304 7.544153620729 0 +33 2304 7.544153620729 0 +33 2338 7.714557284487 0 +33 2338 7.714557284487 0 +33 2353 7.714717284487 0 +33 2353 7.714717284487 0 +33 2370 7.72439890614 0 +33 2370 7.72439890614 0 +33 2381 7.72455890614 0 +33 2381 7.72455890614 0 +33 2401 7.731276162993 0 +33 2401 7.731276162993 0 +33 2409 7.731436162993 0 +33 2409 7.731436162993 0 +33 2444 7.757384420012 0 +33 2444 7.757384420012 0 +33 2459 7.757544420012 0 +33 2459 7.757544420012 0 +33 2510 7.843993617626 0 +33 2510 7.843993617626 0 +33 2521 7.844153617626 0 +33 2521 7.844153617626 0 +33 2555 8.014557271989 0 +33 2555 8.014557271989 0 +33 2570 8.014717271989 0 +33 2570 8.014717271989 0 +33 2587 8.024398906138 0 +33 2587 8.024398906138 0 +33 2598 8.024558906138 0 +33 2598 8.024558906138 0 +33 2618 8.031276162993 0 +33 2618 8.031276162993 0 +33 2626 8.031436162993 0 +33 2626 8.031436162993 0 +33 2661 8.057384419724 0 +33 2661 8.057384419724 0 +33 2676 8.057544419724 0 +33 2676 8.057544419724 0 +33 2727 8.143993614294 0 +33 2727 8.143993614294 0 +33 2738 8.144153614294 0 +33 2738 8.144153614294 0 +33 2772 8.314557258778 0 +33 2772 8.314557258778 0 +33 2787 8.314717258778 0 +33 2787 8.314717258778 0 +33 2804 8.324398906149 0 +33 2804 8.324398906149 0 +33 2815 8.324558906149 0 +33 2815 8.324558906149 0 +33 2839 8.331276162993 0 +33 2839 8.331276162993 0 +33 2847 8.331436162993 0 +33 2847 8.331436162993 0 +33 2882 8.357384419443 0 +33 2882 8.357384419443 0 +33 2897 8.357544419443 0 +33 2897 8.357544419443 0 +33 2948 8.443993610746 0 +33 2948 8.443993610746 0 +33 2959 8.444153610746 0 +33 2959 8.444153610746 0 +33 2997 8.614557244982 0 +33 2997 8.614557244982 0 +33 3012 8.614717244982 0 +33 3012 8.614717244982 0 +33 3029 8.624398906137 0 +33 3029 8.624398906137 0 +33 3040 8.624558906137 0 +33 3040 8.624558906137 0 +33 3064 8.631276162993 0 +33 3064 8.631276162993 0 +33 3072 8.631436162993 0 +33 3072 8.631436162993 0 +33 3107 8.657384419152 0 +33 3107 8.657384419152 0 +33 3122 8.657544419152 0 +33 3122 8.657544419152 0 +33 3173 8.74399360708 0 +33 3173 8.74399360708 0 +33 3184 8.74415360708 0 +33 3184 8.74415360708 0 +33 3221 8.91455723058 0 +33 3221 8.91455723058 0 +33 3232 8.91471723058 0 +33 3232 8.91471723058 0 +33 3254 8.924398906106 0 +33 3254 8.924398906106 0 +33 3265 8.924558906106 0 +33 3265 8.924558906106 0 +33 3289 8.931276162993 0 +33 3289 8.931276162993 0 +33 3297 8.931436162993 0 +33 3297 8.931436162993 0 +33 3332 8.957384418855 0 +33 3332 8.957384418855 0 +33 3347 8.957544418855 0 +33 3347 8.957544418855 0 +33 3398 9.043993603305 0 +33 3398 9.043993603305 0 +33 3409 9.044153603305 0 +33 3409 9.044153603305 0 +33 3446 9.214557215656 0 +33 3446 9.214557215656 0 +33 3457 9.214717215656 0 +33 3457 9.214717215656 0 +33 3479 9.224398906123 0 +33 3479 9.224398906123 0 +33 3490 9.224558906123 0 +33 3490 9.224558906123 0 +33 3514 9.231276162993 0 +33 3514 9.231276162993 0 +33 3522 9.231436162993 0 +33 3522 9.231436162993 0 +33 3557 9.257384418583 0 +33 3557 9.257384418583 0 +33 3572 9.257544418583 0 +33 3572 9.257544418583 0 +33 3623 9.343993599436 0 +33 3623 9.343993599436 0 +33 3634 9.344153599436 0 +33 3634 9.344153599436 0 +33 3671 9.514557200231 0 +33 3671 9.514557200231 0 +33 3682 9.514717200231 0 +33 3682 9.514717200231 0 +33 3704 9.524398906117 0 +33 3704 9.524398906117 0 +33 3715 9.524558906117 0 +33 3715 9.524558906117 0 +33 3739 9.531276162993 0 +33 3739 9.531276162993 0 +33 3747 9.531436162993 0 +33 3747 9.531436162993 0 +33 3782 9.557384418309 0 +33 3782 9.557384418309 0 +33 3797 9.557544418309 0 +33 3797 9.557544418309 0 +33 3848 9.643993595572 0 +33 3848 9.643993595572 0 +33 3859 9.644153595572 0 +33 3859 9.644153595572 0 +33 3896 9.814557184553 0 +33 3896 9.814557184553 0 +33 3907 9.814717184553 0 +33 3907 9.814717184553 0 +33 3929 9.824398906116 0 +33 3929 9.824398906116 0 +33 3940 9.824558906116 0 +33 3940 9.824558906116 0 +33 3964 9.831276162993 0 +33 3964 9.831276162993 0 +33 3972 9.831436162993 0 +33 3972 9.831436162993 0 +33 4007 9.857384418037 0 +33 4007 9.857384418037 0 +33 4022 9.857544418037 0 +33 4022 9.857544418037 0 +33 4073 9.943993591684 0 +33 4073 9.943993591684 0 +33 4084 9.944153591684 0 +33 4084 9.944153591684 0 +33 4121 10.114557168884 0 +33 4121 10.114557168884 0 +33 4132 10.114717168884 0 +33 4132 10.114717168884 0 +33 4154 10.124398906115 0 +33 4154 10.124398906115 0 +33 4165 10.124558906115 0 +33 4165 10.124558906115 0 +33 4189 10.131276162993 0 +33 4189 10.131276162993 0 +33 4197 10.131436162993 0 +33 4197 10.131436162993 0 +33 4232 10.15738441777 0 +33 4232 10.15738441777 0 +33 4247 10.15754441777 0 +33 4247 10.15754441777 0 +33 4298 10.243993587823 0 +33 4298 10.243993587823 0 +33 4309 10.244153587823 0 +33 4309 10.244153587823 0 +33 4346 10.414557153241 0 +33 4346 10.414557153241 0 +33 4357 10.414717153241 0 +33 4357 10.414717153241 0 +33 4379 10.424398906104 0 +33 4379 10.424398906104 0 +33 4390 10.424558906104 0 +33 4390 10.424558906104 0 +33 4414 10.431276162993 0 +33 4414 10.431276162993 0 +33 4422 10.431436162993 0 +33 4422 10.431436162993 0 +33 4457 10.457384417494 0 +33 4457 10.457384417494 0 +33 4472 10.457544417494 0 +33 4472 10.457544417494 0 +33 4523 10.543993584071 0 +33 4523 10.543993584071 0 +33 4534 10.544153584071 0 +33 4534 10.544153584071 0 +33 4575 10.7145571376 0 +33 4575 10.7145571376 0 +33 4586 10.7147171376 0 +33 4586 10.7147171376 0 +33 4612 10.724398906116 0 +33 4612 10.724398906116 0 +33 4623 10.724558906116 0 +33 4623 10.724558906116 0 +33 4647 10.731276162993 0 +33 4647 10.731276162993 0 +33 4655 10.731436162993 0 +33 4655 10.731436162993 0 +33 4690 10.757384417221 0 +33 4690 10.757384417221 0 +33 4705 10.757544417221 0 +33 4705 10.757544417221 0 +33 4756 10.843993580594 0 +33 4756 10.843993580594 0 +33 4767 10.844153580594 0 +33 4767 10.844153580594 0 +33 4808 11.014557121962 0 +33 4808 11.014557121962 0 +33 4819 11.014717121962 0 +33 4819 11.014717121962 0 +33 4845 11.024398906108 0 +33 4845 11.024398906108 0 +33 4856 11.024558906108 0 +33 4856 11.024558906108 0 +33 4880 11.031276162993 0 +33 4880 11.031276162993 0 +33 4888 11.031436162993 0 +33 4888 11.031436162993 0 +33 4923 11.057384416961 0 +33 4923 11.057384416961 0 +33 4938 11.057544416961 0 +33 4938 11.057544416961 0 +33 4989 11.1439935782 0 +33 4989 11.1439935782 0 +33 5000 11.1441535782 0 +33 5000 11.1441535782 0 +33 5041 11.314557106356 0 +33 5041 11.314557106356 0 +33 5052 11.314717106356 0 +33 5052 11.314717106356 0 +33 5078 11.324398906123 0 +33 5078 11.324398906123 0 +33 5089 11.324558906123 0 +33 5089 11.324558906123 0 +33 5113 11.331276162993 0 +33 5113 11.331276162993 0 +33 5121 11.331436162993 0 +33 5121 11.331436162993 0 +33 5156 11.357384416695 0 +33 5156 11.357384416695 0 +33 5171 11.357544416695 0 +33 5171 11.357544416695 0 +33 5189 11.393586261354 0 +33 5189 11.393586261354 0 +33 5200 11.393746261354 0 +33 5200 11.393746261354 0 +33 5222 11.443993576825 0 +33 5222 11.443993576825 0 +33 5233 11.444153576825 0 +33 5233 11.444153576825 0 +33 5274 11.614557090743 0 +33 5274 11.614557090743 0 +33 5285 11.614717090743 0 +33 5285 11.614717090743 0 +33 5311 11.624398906133 0 +33 5311 11.624398906133 0 +33 5322 11.624558906133 0 +33 5322 11.624558906133 0 +33 5346 11.631276162993 0 +33 5346 11.631276162993 0 +33 5354 11.631436162993 0 +33 5354 11.631436162993 0 +33 5393 11.657384416441 0 +33 5393 11.657384416441 0 +33 5408 11.657544416441 0 +33 5408 11.657544416441 0 +33 5426 11.693586259603 0 +33 5426 11.693586259603 0 +33 5437 11.693746259603 0 +33 5437 11.693746259603 0 +33 5463 11.743993576355 0 +33 5463 11.743993576355 0 +33 5474 11.744153576355 0 +33 5474 11.744153576355 0 +33 5515 11.914557075093 0 +33 5515 11.914557075093 0 +33 5526 11.914717075093 0 +33 5526 11.914717075093 0 +33 5552 11.924398906131 0 +33 5552 11.924398906131 0 +33 5563 11.924558906131 0 +33 5563 11.924558906131 0 +33 5587 11.931276162993 0 +33 5587 11.931276162993 0 +33 5595 11.931436162993 0 +33 5595 11.931436162993 0 +33 5634 11.957384416181 0 +33 5634 11.957384416181 0 +33 5649 11.957544416181 0 +33 5649 11.957544416181 0 +33 5667 11.993586257957 0 +33 5667 11.993586257957 0 +33 5678 11.993746257957 0 +33 5678 11.993746257957 0 +33 5704 12.043993576682 0 +33 5704 12.043993576682 0 +33 5715 12.044153576682 0 +33 5715 12.044153576682 0 +33 5756 12.214557059446 0 +33 5756 12.214557059446 0 +33 5767 12.214717059446 0 +33 5767 12.214717059446 0 +33 5793 12.22439890615 0 +33 5793 12.22439890615 0 +33 5804 12.22455890615 0 +33 5804 12.22455890615 0 +33 5828 12.231276162993 0 +33 5828 12.231276162993 0 +33 5836 12.231436162993 0 +33 5836 12.231436162993 0 +33 5875 12.25738441593 0 +33 5875 12.25738441593 0 +33 5890 12.25754441593 0 +33 5890 12.25754441593 0 +33 5908 12.293586256438 0 +33 5908 12.293586256438 0 +33 5919 12.293746256438 0 +33 5919 12.293746256438 0 +33 5945 12.343993577342 0 +33 5945 12.343993577342 0 +33 5956 12.344153577342 0 +33 5956 12.344153577342 0 +33 5997 12.514557043815 0 +33 5997 12.514557043815 0 +33 6008 12.514717043815 0 +33 6008 12.514717043815 0 +33 6034 12.524398906142 0 +33 6034 12.524398906142 0 +33 6045 12.524558906142 0 +33 6045 12.524558906142 0 +33 6069 12.531276162993 0 +33 6069 12.531276162993 0 +33 6077 12.531436162993 0 +33 6077 12.531436162993 0 +33 6116 12.557384415683 0 +33 6116 12.557384415683 0 +33 6131 12.557544415683 0 +33 6131 12.557544415683 0 +33 6149 12.593586255105 0 +33 6149 12.593586255105 0 +33 6160 12.593746255105 0 +33 6160 12.593746255105 0 +33 6186 12.643993578007 0 +33 6186 12.643993578007 0 +33 6197 12.644153578007 0 +33 6197 12.644153578007 0 +33 6238 12.814557028193 0 +33 6238 12.814557028193 0 +33 6249 12.814717028193 0 +33 6249 12.814717028193 0 +33 6275 12.824398906145 0 +33 6275 12.824398906145 0 +33 6286 12.824558906145 0 +33 6286 12.824558906145 0 +33 6310 12.831276162993 0 +33 6310 12.831276162993 0 +33 6318 12.831436162993 0 +33 6318 12.831436162993 0 +33 6357 12.857384415431 0 +33 6357 12.857384415431 0 +33 6372 12.857544415431 0 +33 6372 12.857544415431 0 +33 6390 12.893586254045 0 +33 6390 12.893586254045 0 +33 6401 12.893746254045 0 +33 6401 12.893746254045 0 +33 6427 12.943993578695 0 +33 6427 12.943993578695 0 +33 6438 12.944153578695 0 +33 6438 12.944153578695 0 +33 6479 13.114557012525 0 +33 6479 13.114557012525 0 +33 6490 13.114717012525 0 +33 6490 13.114717012525 0 +33 6516 13.124398906128 0 +33 6516 13.124398906128 0 +33 6527 13.124558906128 0 +33 6527 13.124558906128 0 +33 6551 13.131276162993 0 +33 6551 13.131276162993 0 +33 6559 13.131436162993 0 +33 6559 13.131436162993 0 +33 6598 13.157384415176 0 +33 6598 13.157384415176 0 +33 6613 13.157544415176 0 +33 6613 13.157544415176 0 +33 6631 13.193586253273 0 +33 6631 13.193586253273 0 +33 6642 13.193746253273 0 +33 6642 13.193746253273 0 +33 6668 13.243993579376 0 +33 6668 13.243993579376 0 +33 6679 13.244153579376 0 +33 6679 13.244153579376 0 +33 6720 13.414556996915 0 +33 6720 13.414556996915 0 +33 6731 13.414716996915 0 +33 6731 13.414716996915 0 +33 6757 13.424398906138 0 +33 6757 13.424398906138 0 +33 6768 13.424558906138 0 +33 6768 13.424558906138 0 +33 6792 13.431276162993 0 +33 6792 13.431276162993 0 +33 6800 13.431436162993 0 +33 6800 13.431436162993 0 +33 6839 13.45738441494 0 +33 6839 13.45738441494 0 +33 6854 13.45754441494 0 +33 6854 13.45754441494 0 +33 6872 13.493586252758 0 +33 6872 13.493586252758 0 +33 6883 13.493746252758 0 +33 6883 13.493746252758 0 +33 6909 13.543993580057 0 +33 6909 13.543993580057 0 +33 6920 13.544153580057 0 +33 6920 13.544153580057 0 +33 6961 13.714556981296 0 +33 6961 13.714556981296 0 +33 6972 13.714716981296 0 +33 6972 13.714716981296 0 +33 6998 13.724398906143 0 +33 6998 13.724398906143 0 +33 7009 13.724558906143 0 +33 7009 13.724558906143 0 +33 7033 13.731276162993 0 +33 7033 13.731276162993 0 +33 7041 13.731436162993 0 +33 7041 13.731436162993 0 +33 7080 13.75738441469 0 +33 7080 13.75738441469 0 +33 7095 13.75754441469 0 +33 7095 13.75754441469 0 +33 7113 13.793586252521 0 +33 7113 13.793586252521 0 +33 7124 13.793746252521 0 +33 7124 13.793746252521 0 +33 7150 13.843993580742 0 +33 7150 13.843993580742 0 +33 7161 13.844153580742 0 +33 7161 13.844153580742 0 +33 7201 14.014556965625 0 +33 7201 14.014556965625 0 +33 7208 14.014716965625 0 +33 7208 14.014716965625 0 +33 7239 14.024398906136 0 +33 7239 14.024398906136 0 +33 7250 14.024558906136 0 +33 7250 14.024558906136 0 +33 7274 14.031276162993 0 +33 7274 14.031276162993 0 +33 7282 14.031436162993 0 +33 7282 14.031436162993 0 +33 7321 14.057384414442 0 +33 7321 14.057384414442 0 +33 7336 14.057544414442 0 +33 7336 14.057544414442 0 +33 7354 14.093586252556 0 +33 7354 14.093586252556 0 +33 7365 14.093746252556 0 +33 7365 14.093746252556 0 +33 7391 14.143993581436 0 +33 7391 14.143993581436 0 +33 7402 14.144153581436 0 +33 7402 14.144153581436 0 +33 7442 14.314556950015 0 +33 7442 14.314556950015 0 +33 7449 14.314716950015 0 +33 7449 14.314716950015 0 +33 7480 14.324398906149 0 +33 7480 14.324398906149 0 +33 7491 14.324558906149 0 +33 7491 14.324558906149 0 +33 7515 14.331276162993 0 +33 7515 14.331276162993 0 +33 7523 14.331436162993 0 +33 7523 14.331436162993 0 +33 7562 14.357384414212 0 +33 7562 14.357384414212 0 +33 7577 14.357544414212 0 +33 7577 14.357544414212 0 +33 7595 14.393586252856 0 +33 7595 14.393586252856 0 +33 7606 14.393746252856 0 +33 7606 14.393746252856 0 +33 7632 14.443993582121 0 +33 7632 14.443993582121 0 +33 7643 14.444153582121 0 +33 7643 14.444153582121 0 +33 7683 14.614556934427 0 +33 7683 14.614556934427 0 +33 7690 14.614716934427 0 +33 7690 14.614716934427 0 +33 7721 14.624398906139 0 +33 7721 14.624398906139 0 +33 7732 14.624558906139 0 +33 7732 14.624558906139 0 +33 7756 14.631276162993 0 +33 7756 14.631276162993 0 +33 7764 14.631436162993 0 +33 7764 14.631436162993 0 +33 7803 14.657384413973 0 +33 7803 14.657384413973 0 +33 7818 14.657544413973 0 +33 7818 14.657544413973 0 +33 7836 14.693586253132 0 +33 7836 14.693586253132 0 +33 7847 14.693746253132 0 +33 7847 14.693746253132 0 +33 7873 14.743993582821 0 +33 7873 14.743993582821 0 +33 7884 14.744153582821 0 +33 7884 14.744153582821 0 +33 7924 14.914556918856 0 +33 7924 14.914556918856 0 +33 7931 14.914716918856 0 +33 7931 14.914716918856 0 +33 7962 14.924398906135 0 +33 7962 14.924398906135 0 +33 7973 14.924558906135 0 +33 7973 14.924558906135 0 +33 7997 14.931276162993 0 +33 7997 14.931276162993 0 +33 8005 14.931436162993 0 +33 8005 14.931436162993 0 +33 8044 14.957384413742 0 +33 8044 14.957384413742 0 +33 8059 14.957544413742 0 +33 8059 14.957544413742 0 +33 8077 14.993586247233 0 +33 8077 14.993586247233 0 +33 8088 14.993746247233 0 +33 8088 14.993746247233 0 +33 8114 15.043993583523 0 +33 8114 15.043993583523 0 +33 8125 15.044153583523 0 +33 8125 15.044153583523 0 +33 8165 15.214556903292 0 +33 8165 15.214556903292 0 +33 8172 15.214716903292 0 +33 8172 15.214716903292 0 +33 8203 15.22439890612 0 +33 8203 15.22439890612 0 +33 8214 15.22455890612 0 +33 8214 15.22455890612 0 +33 8238 15.231276162993 0 +33 8238 15.231276162993 0 +33 8246 15.231436162993 0 +33 8246 15.231436162993 0 +33 8285 15.257384413499 0 +33 8285 15.257384413499 0 +33 8300 15.257544413499 0 +33 8300 15.257544413499 0 +33 8318 15.293586234372 0 +33 8318 15.293586234372 0 +33 8329 15.293746234372 0 +33 8329 15.293746234372 0 +33 8355 15.343993584234 0 +33 8355 15.343993584234 0 +33 8366 15.344153584234 0 +33 8366 15.344153584234 0 +33 8406 15.514556887741 0 +33 8406 15.514556887741 0 +33 8413 15.514716887741 0 +33 8413 15.514716887741 0 +33 8444 15.524398906129 0 +33 8444 15.524398906129 0 +33 8455 15.524558906129 0 +33 8455 15.524558906129 0 +33 8479 15.531276162993 0 +33 8479 15.531276162993 0 +33 8487 15.531436162993 0 +33 8487 15.531436162993 0 +33 8526 15.557384413279 0 +33 8526 15.557384413279 0 +33 8541 15.557544413279 0 +33 8541 15.557544413279 0 +33 8559 15.59358622109 0 +33 8559 15.59358622109 0 +33 8570 15.59374622109 0 +33 8570 15.59374622109 0 +33 8596 15.643993584927 0 +33 8596 15.643993584927 0 +33 8607 15.644153584927 0 +33 8607 15.644153584927 0 +33 8647 15.814556872317 0 +33 8647 15.814556872317 0 +33 8654 15.814716872317 0 +33 8654 15.814716872317 0 +33 8685 15.82439890615 0 +33 8685 15.82439890615 0 +33 8696 15.82455890615 0 +33 8696 15.82455890615 0 +33 8720 15.831276162993 0 +33 8720 15.831276162993 0 +33 8728 15.831436162993 0 +33 8728 15.831436162993 0 +33 8767 15.857384413074 0 +33 8767 15.857384413074 0 +33 8782 15.857544413074 0 +33 8782 15.857544413074 0 +33 8800 15.893586207767 0 +33 8800 15.893586207767 0 +33 8811 15.893746207767 0 +33 8811 15.893746207767 0 +33 8837 15.943993585623 0 +33 8837 15.943993585623 0 +33 8848 15.944153585623 0 +33 8848 15.944153585623 0 +33 8888 16.114556856962 0 +33 8888 16.114556856962 0 +33 8895 16.114716856962 0 +33 8895 16.114716856962 0 +33 8930 16.124398906134 0 +33 8930 16.124398906134 0 +33 8941 16.124558906134 0 +33 8941 16.124558906134 0 +33 8965 16.131276162993 0 +33 8965 16.131276162993 0 +33 8973 16.131436162993 0 +33 8973 16.131436162993 0 +33 9012 16.157384412841 0 +33 9012 16.157384412841 0 +33 9027 16.157544412841 0 +33 9027 16.157544412841 0 +33 9045 16.19358619447 0 +33 9045 16.19358619447 0 +33 9056 16.19374619447 0 +33 9056 16.19374619447 0 +33 9086 16.243993586344 0 +33 9086 16.243993586344 0 +33 9097 16.244153586344 0 +33 9097 16.244153586344 0 +33 9137 16.414556841879 0 +33 9137 16.414556841879 0 +33 9144 16.414716841879 0 +33 9144 16.414716841879 0 +33 9179 16.42439890611 0 +33 9179 16.42439890611 0 +33 9190 16.42455890611 0 +33 9190 16.42455890611 0 +33 9214 16.431276162993 0 +33 9214 16.431276162993 0 +33 9222 16.431436162993 0 +33 9222 16.431436162993 0 +33 9261 16.457384412619 0 +33 9261 16.457384412619 0 +33 9276 16.457544412619 0 +33 9276 16.457544412619 0 +33 9294 16.493586182941 0 +33 9294 16.493586182941 0 +33 9305 16.493746182941 0 +33 9305 16.493746182941 0 +33 9335 16.543993587061 0 +33 9335 16.543993587061 0 +33 9346 16.544153587061 0 +33 9346 16.544153587061 0 +33 9386 16.714556827831 0 +33 9386 16.714556827831 0 +33 9393 16.714716827831 0 +33 9393 16.714716827831 0 +33 9428 16.72439890611 0 +33 9428 16.72439890611 0 +33 9439 16.72455890611 0 +33 9439 16.72455890611 0 +33 9463 16.731276162993 0 +33 9463 16.731276162993 0 +33 9471 16.731436162993 0 +33 9471 16.731436162993 0 +33 9510 16.757384412406 0 +33 9510 16.757384412406 0 +33 9525 16.757544412406 0 +33 9525 16.757544412406 0 +33 9543 16.793586174099 0 +33 9543 16.793586174099 0 +33 9554 16.793746174099 0 +33 9554 16.793746174099 0 +33 9584 16.843993587769 0 +33 9584 16.843993587769 0 +33 9595 16.844153587769 0 +33 9595 16.844153587769 0 +33 9635 17.01455682019 0 +33 9635 17.01455682019 0 +33 9642 17.01471682019 0 +33 9642 17.01471682019 0 +33 9676 17.024398906114 0 +33 9676 17.024398906114 0 +33 9683 17.024558906114 0 +33 9683 17.024558906114 0 +33 9712 17.031276162993 0 +33 9712 17.031276162993 0 +33 9720 17.031436162993 0 +33 9720 17.031436162993 0 +33 9759 17.057384412189 0 +33 9759 17.057384412189 0 +33 9774 17.057544412189 0 +33 9774 17.057544412189 0 +33 9793 17.093586167963 0 +33 9793 17.093586167963 0 +33 9808 17.093746167963 0 +33 9808 17.093746167963 0 +33 9834 17.143993588488 0 +33 9834 17.143993588488 0 +33 9849 17.144153588488 0 +33 9849 17.144153588488 0 +33 9884 17.314556829071 0 +33 9884 17.314556829071 0 +33 9891 17.314716829071 0 +33 9891 17.314716829071 0 +33 9925 17.324398906121 0 +33 9925 17.324398906121 0 +33 9932 17.324558906121 0 +33 9932 17.324558906121 0 +33 9961 17.331276162993 0 +33 9961 17.331276162993 0 +33 9969 17.331436162993 0 +33 9969 17.331436162993 0 +33 10007 17.357384411975 0 +33 10007 17.357384411975 0 +33 10018 17.357544411975 0 +33 10018 17.357544411975 0 +33 10042 17.393586164536 0 +33 10042 17.393586164536 0 +33 10057 17.393746164536 0 +33 10057 17.393746164536 0 +33 10083 17.44399358921 0 +33 10083 17.44399358921 0 +33 10098 17.44415358921 0 +33 10098 17.44415358921 0 +33 10133 17.614556843292 0 +33 10133 17.614556843292 0 +33 10140 17.614716843292 0 +33 10140 17.614716843292 0 +33 10174 17.624398906125 0 +33 10174 17.624398906125 0 +33 10181 17.624558906125 0 +33 10181 17.624558906125 0 +33 10210 17.631276162993 0 +33 10210 17.631276162993 0 +33 10218 17.631436162993 0 +33 10218 17.631436162993 0 +33 10256 17.657384411748 0 +33 10256 17.657384411748 0 +33 10267 17.657544411748 0 +33 10267 17.657544411748 0 +33 10291 17.693586163751 0 +33 10291 17.693586163751 0 +33 10306 17.693746163751 0 +33 10306 17.693746163751 0 +33 10332 17.743993589932 0 +33 10332 17.743993589932 0 +33 10347 17.744153589932 0 +33 10347 17.744153589932 0 +33 10382 17.914556858379 0 +33 10382 17.914556858379 0 +33 10389 17.914716858379 0 +33 10389 17.914716858379 0 +33 10419 17.924398906139 0 +33 10419 17.924398906139 0 +33 10426 17.924558906139 0 +33 10426 17.924558906139 0 +33 10455 17.931276162993 0 +33 10455 17.931276162993 0 +33 10463 17.931436162993 0 +33 10463 17.931436162993 0 +33 10501 17.957384411544 0 +33 10501 17.957384411544 0 +33 10512 17.957544411544 0 +33 10512 17.957544411544 0 +33 10532 17.993586163742 0 +33 10532 17.993586163742 0 +33 10547 17.993746163742 0 +33 10547 17.993746163742 0 +33 10573 18.043993590647 0 +33 10573 18.043993590647 0 +33 10588 18.044153590647 0 +33 10588 18.044153590647 0 +33 10623 18.214556873732 0 +33 10623 18.214556873732 0 +33 10630 18.214716873732 0 +33 10630 18.214716873732 0 +33 10660 18.22439890616 0 +33 10660 18.22439890616 0 +33 10667 18.22455890616 0 +33 10667 18.22455890616 0 +33 10692 18.231276162993 0 +33 10692 18.231276162993 0 +33 10700 18.231436162993 0 +33 10700 18.231436162993 0 +33 10738 18.257384411348 0 +33 10738 18.257384411348 0 +33 10749 18.257544411348 0 +33 10749 18.257544411348 0 +33 10769 18.29358616373 0 +33 10769 18.29358616373 0 +33 10784 18.29374616373 0 +33 10784 18.29374616373 0 +33 10810 18.343993591375 0 +33 10810 18.343993591375 0 +33 10825 18.344153591375 0 +33 10825 18.344153591375 0 +33 10856 18.514556889096 0 +33 10856 18.514556889096 0 +33 10863 18.514716889096 0 +33 10863 18.514716889096 0 +33 10893 18.524398906161 0 +33 10893 18.524398906161 0 +33 10900 18.524558906161 0 +33 10900 18.524558906161 0 +33 10925 18.531276162993 0 +33 10925 18.531276162993 0 +33 10933 18.531436162993 0 +33 10933 18.531436162993 0 +33 10971 18.557384411139 0 +33 10971 18.557384411139 0 +33 10982 18.557544411139 0 +33 10982 18.557544411139 0 +33 11002 18.593586163725 0 +33 11002 18.593586163725 0 +33 11017 18.593746163725 0 +33 11017 18.593746163725 0 +33 11043 18.64399359211 0 +33 11043 18.64399359211 0 +33 11058 18.64415359211 0 +33 11058 18.64415359211 0 +33 11089 18.814556899317 0 +33 11089 18.814556899317 0 +33 11096 18.814716899317 0 +33 11096 18.814716899317 0 +33 11126 18.824398906157 0 +33 11126 18.824398906157 0 +33 11133 18.824558906157 0 +33 11133 18.824558906157 0 +33 11158 18.831276162993 0 +33 11158 18.831276162993 0 +33 11166 18.831436162993 0 +33 11166 18.831436162993 0 +33 11204 18.857384410943 0 +33 11204 18.857384410943 0 +33 11215 18.857544410943 0 +33 11215 18.857544410943 0 +33 11235 18.893586163718 0 +33 11235 18.893586163718 0 +33 11250 18.893746163718 0 +33 11250 18.893746163718 0 +33 11276 18.943993592844 0 +33 11276 18.943993592844 0 +33 11291 18.944153592844 0 +33 11291 18.944153592844 0 +33 11322 19.114556905927 0 +33 11322 19.114556905927 0 +33 11329 19.114716905927 0 +33 11329 19.114716905927 0 +33 11359 19.124398906156 0 +33 11359 19.124398906156 0 +33 11366 19.124558906156 0 +33 11366 19.124558906156 0 +33 11391 19.131276162993 0 +33 11391 19.131276162993 0 +33 11399 19.131436162993 0 +33 11399 19.131436162993 0 +33 11437 19.157384410755 0 +33 11437 19.157384410755 0 +33 11448 19.157544410755 0 +33 11448 19.157544410755 0 +33 11468 19.193586163706 0 +33 11468 19.193586163706 0 +33 11483 19.193746163706 0 +33 11483 19.193746163706 0 +33 11509 19.243993593591 0 +33 11509 19.243993593591 0 +33 11524 19.244153593591 0 +33 11524 19.244153593591 0 +33 11555 19.414556913869 0 +33 11555 19.414556913869 0 +33 11562 19.414716913869 0 +33 11562 19.414716913869 0 +33 11592 19.424398906135 0 +33 11592 19.424398906135 0 +33 11599 19.424558906135 0 +33 11599 19.424558906135 0 +33 11624 19.431276162993 0 +33 11624 19.431276162993 0 +33 11632 19.431436162993 0 +33 11632 19.431436162993 0 +33 11670 19.457384410552 0 +33 11670 19.457384410552 0 +33 11681 19.457544410552 0 +33 11681 19.457544410552 0 +33 11701 19.49358616371 0 +33 11701 19.49358616371 0 +33 11716 19.49374616371 0 +33 11716 19.49374616371 0 +33 11742 19.543993594392 0 +33 11742 19.543993594392 0 +33 11757 19.544153594392 0 +33 11757 19.544153594392 0 +33 11788 19.714556923553 0 +33 11788 19.714556923553 0 +33 11795 19.714716923553 0 +33 11795 19.714716923553 0 +33 11825 19.724398906093 0 +33 11825 19.724398906093 0 +33 11832 19.724558906093 0 +33 11832 19.724558906093 0 +33 11857 19.731276162993 0 +33 11857 19.731276162993 0 +33 11865 19.731436162993 0 +33 11865 19.731436162993 0 +33 11903 19.757384409991 0 +33 11903 19.757384409991 0 +33 11914 19.757544409991 0 +33 11914 19.757544409991 0 +33 11934 19.793586163688 0 +33 11934 19.793586163688 0 +33 11949 19.793746163688 0 +33 11949 19.793746163688 0 +33 11975 19.843993595698 0 +33 11975 19.843993595698 0 +33 11990 19.844153595698 0 +33 11990 19.844153595698 0 +33 12021 20.014556934723 0 +33 12021 20.014556934723 0 +33 12028 20.014716934723 0 +33 12028 20.014716934723 0 +33 12062 20.024398905916 0 +33 12062 20.024398905916 0 +33 12069 20.024558905916 0 +33 12069 20.024558905916 0 +33 12094 20.031276162993 0 +33 12094 20.031276162993 0 +33 12102 20.031436162993 0 +33 12102 20.031436162993 0 +33 12140 20.057384408842 0 +33 12140 20.057384408842 0 +33 12151 20.057544408842 0 +33 12151 20.057544408842 0 +33 12175 20.0935861637 0 +33 12175 20.0935861637 0 +33 12190 20.0937461637 0 +33 12190 20.0937461637 0 +33 12216 20.143993597547 0 +33 12216 20.143993597547 0 +33 12231 20.144153597547 0 +33 12231 20.144153597547 0 +33 12262 20.314556946995 0 +33 12262 20.314556946995 0 +33 12269 20.314716946995 0 +33 12269 20.314716946995 0 +33 12303 20.324398905745 0 +33 12303 20.324398905745 0 +33 12310 20.324558905745 0 +33 12310 20.324558905745 0 +33 12335 20.331276162993 0 +33 12335 20.331276162993 0 +33 12343 20.331436162993 0 +33 12343 20.331436162993 0 +33 12381 20.357384407512 0 +33 12381 20.357384407512 0 +33 12392 20.357544407512 0 +33 12392 20.357544407512 0 +33 12416 20.393586163659 0 +33 12416 20.393586163659 0 +33 12431 20.393746163659 0 +33 12431 20.393746163659 0 +33 12457 20.443993599834 0 +33 12457 20.443993599834 0 +33 12472 20.444153599834 0 +33 12472 20.444153599834 0 +33 12503 20.614556960156 0 +33 12503 20.614556960156 0 +33 12510 20.614716960156 0 +33 12510 20.614716960156 0 +33 12544 20.624398905622 0 +33 12544 20.624398905622 0 +33 12551 20.624558905622 0 +33 12551 20.624558905622 0 +33 12576 20.631276162993 0 +33 12576 20.631276162993 0 +33 12584 20.631436162993 0 +33 12584 20.631436162993 0 +33 12622 20.6573844061 0 +33 12622 20.6573844061 0 +33 12633 20.6575444061 0 +33 12633 20.6575444061 0 +33 12657 20.693586163661 0 +33 12657 20.693586163661 0 +33 12672 20.693746163661 0 +33 12672 20.693746163661 0 +33 12698 20.743993602682 0 +33 12698 20.743993602682 0 +33 12713 20.744153602682 0 +33 12713 20.744153602682 0 +33 12744 20.914556974042 0 +33 12744 20.914556974042 0 +33 12751 20.914716974042 0 +33 12751 20.914716974042 0 +33 12785 20.924398905643 0 +33 12785 20.924398905643 0 +33 12792 20.924558905643 0 +33 12792 20.924558905643 0 +33 12817 20.931276162993 0 +33 12817 20.931276162993 0 +33 12825 20.931436162993 0 +33 12825 20.931436162993 0 +33 12863 20.957384404581 0 +33 12863 20.957384404581 0 +33 12874 20.957544404581 0 +33 12874 20.957544404581 0 +33 12898 20.993586163701 0 +33 12898 20.993586163701 0 +33 12913 20.993746163701 0 +33 12913 20.993746163701 0 +33 12939 21.043993605975 0 +33 12939 21.043993605975 0 +33 12954 21.044153605975 0 +33 12954 21.044153605975 0 +33 12985 21.214556988437 0 +33 12985 21.214556988437 0 +33 12992 21.214716988437 0 +33 12992 21.214716988437 0 +33 13026 21.22439890572 0 +33 13026 21.22439890572 0 +33 13033 21.22455890572 0 +33 13033 21.22455890572 0 +33 13058 21.231276162993 0 +33 13058 21.231276162993 0 +33 13066 21.231436162993 0 +33 13066 21.231436162993 0 +33 13104 21.257384403056 0 +33 13104 21.257384403056 0 +33 13115 21.257544403056 0 +33 13115 21.257544403056 0 +33 13139 21.293586163789 0 +33 13139 21.293586163789 0 +33 13154 21.293746163789 0 +33 13154 21.293746163789 0 +33 13180 21.343993609822 0 +33 13180 21.343993609822 0 +33 13195 21.344153609822 0 +33 13195 21.344153609822 0 +33 13226 21.514557003324 0 +33 13226 21.514557003324 0 +33 13233 21.514717003324 0 +33 13233 21.514717003324 0 +33 13267 21.524398905746 0 +33 13267 21.524398905746 0 +33 13274 21.524558905746 0 +33 13274 21.524558905746 0 +33 13299 21.531276162993 0 +33 13299 21.531276162993 0 +33 13307 21.531436162993 0 +33 13307 21.531436162993 0 +33 13345 21.557384401467 0 +33 13345 21.557384401467 0 +33 13356 21.557544401467 0 +33 13356 21.557544401467 0 +33 13380 21.593586163828 0 +33 13380 21.593586163828 0 +33 13395 21.593746163828 0 +33 13395 21.593746163828 0 +33 13421 21.643993614218 0 +33 13421 21.643993614218 0 +33 13436 21.644153614218 0 +33 13436 21.644153614218 0 +33 13467 21.814557018645 0 +33 13467 21.814557018645 0 +33 13474 21.814717018645 0 +33 13474 21.814717018645 0 +33 13508 21.82439890573 0 +33 13508 21.82439890573 0 +33 13515 21.82455890573 0 +33 13515 21.82455890573 0 +33 13540 21.831276162993 0 +33 13540 21.831276162993 0 +33 13548 21.831436162993 0 +33 13548 21.831436162993 0 +33 13586 21.857384399784 0 +33 13586 21.857384399784 0 +33 13597 21.857544399784 0 +33 13597 21.857544399784 0 +33 13621 21.893586163871 0 +33 13621 21.893586163871 0 +33 13636 21.893746163871 0 +33 13636 21.893746163871 0 +33 13662 21.943993619248 0 +33 13662 21.943993619248 0 +33 13677 21.944153619248 0 +33 13677 21.944153619248 0 +33 13708 22.114557034351 0 +33 13708 22.114557034351 0 +33 13715 22.114717034351 0 +33 13715 22.114717034351 0 +33 13749 22.124398905663 0 +33 13749 22.124398905663 0 +33 13756 22.124558905663 0 +33 13756 22.124558905663 0 +33 13781 22.131276162993 0 +33 13781 22.131276162993 0 +33 13789 22.131436162993 0 +33 13789 22.131436162993 0 +33 13827 22.157384398008 0 +33 13827 22.157384398008 0 +33 13838 22.157544398008 0 +33 13838 22.157544398008 0 +33 13862 22.193586163915 0 +33 13862 22.193586163915 0 +33 13877 22.193746163915 0 +33 13877 22.193746163915 0 +33 13903 22.243993624898 0 +33 13903 22.243993624898 0 +33 13918 22.244153624898 0 +33 13918 22.244153624898 0 +33 13949 22.414557050412 0 +33 13949 22.414557050412 0 +33 13956 22.414717050412 0 +33 13956 22.414717050412 0 +33 13990 22.424398905574 0 +33 13990 22.424398905574 0 +33 13997 22.424558905574 0 +33 13997 22.424558905574 0 +33 14022 22.431276162993 0 +33 14022 22.431276162993 0 +33 14030 22.431436162993 0 +33 14030 22.431436162993 0 +33 14068 22.45738439623 0 +33 14068 22.45738439623 0 +33 14079 22.45754439623 0 +33 14079 22.45754439623 0 +33 14103 22.493586164003 0 +33 14103 22.493586164003 0 +33 14118 22.493746164003 0 +33 14118 22.493746164003 0 +33 14144 22.543993631141 0 +33 14144 22.543993631141 0 +33 14159 22.544153631141 0 +33 14159 22.544153631141 0 +33 14190 22.714557066832 0 +33 14190 22.714557066832 0 +33 14197 22.714717066832 0 +33 14197 22.714717066832 0 +33 14231 22.724398905447 0 +33 14231 22.724398905447 0 +33 14238 22.724558905447 0 +33 14238 22.724558905447 0 +33 14263 22.731276162993 0 +33 14263 22.731276162993 0 +33 14271 22.731436162993 0 +33 14271 22.731436162993 0 +33 14309 22.757384394544 0 +33 14309 22.757384394544 0 +33 14320 22.757544394544 0 +33 14320 22.757544394544 0 +33 14344 22.793586164046 0 +33 14344 22.793586164046 0 +33 14359 22.793746164046 0 +33 14359 22.793746164046 0 +33 14385 22.843993638109 0 +33 14385 22.843993638109 0 +33 14400 22.844153638109 0 +33 14400 22.844153638109 0 +33 14431 23.014557083564 0 +33 14431 23.014557083564 0 +33 14438 23.014717083564 0 +33 14438 23.014717083564 0 +33 14472 23.024398905315 0 +33 14472 23.024398905315 0 +33 14479 23.024558905315 0 +33 14479 23.024558905315 0 +33 14504 23.031276162993 0 +33 14504 23.031276162993 0 +33 14512 23.031436162993 0 +33 14512 23.031436162993 0 +33 14550 23.057384392975 0 +33 14550 23.057384392975 0 +33 14561 23.057544392975 0 +33 14561 23.057544392975 0 +33 14585 23.093586164045 0 +33 14585 23.093586164045 0 +33 14600 23.093746164045 0 +33 14600 23.093746164045 0 +33 14626 23.143993645806 0 +33 14626 23.143993645806 0 +33 14641 23.144153645806 0 +33 14641 23.144153645806 0 +33 14672 23.314557100631 0 +33 14672 23.314557100631 0 +33 14679 23.314717100631 0 +33 14679 23.314717100631 0 +33 14713 23.324398905056 0 +33 14713 23.324398905056 0 +33 14720 23.324558905056 0 +33 14720 23.324558905056 0 +33 14745 23.331276162993 0 +33 14745 23.331276162993 0 +33 14753 23.331436162993 0 +33 14753 23.331436162993 0 +33 14791 23.357384391504 0 +33 14791 23.357384391504 0 +33 14802 23.357544391504 0 +33 14802 23.357544391504 0 +33 14826 23.393586164071 0 +33 14826 23.393586164071 0 +33 14841 23.393746164071 0 +33 14841 23.393746164071 0 +33 14867 23.443993653987 0 +33 14867 23.443993653987 0 +33 14882 23.444153653987 0 +33 14882 23.444153653987 0 +33 14913 23.614557118038 0 +33 14913 23.614557118038 0 +33 14920 23.614717118038 0 +33 14920 23.614717118038 0 +33 14954 23.624398904843 0 +33 14954 23.624398904843 0 +33 14961 23.624558904843 0 +33 14961 23.624558904843 0 +33 14986 23.631276162993 0 +33 14986 23.631276162993 0 +33 14994 23.631436162993 0 +33 14994 23.631436162993 0 +33 15032 23.657384390261 0 +33 15032 23.657384390261 0 +33 15043 23.657544390261 0 +33 15043 23.657544390261 0 +33 15067 23.693586164114 0 +33 15067 23.693586164114 0 +33 15082 23.693746164114 0 +33 15082 23.693746164114 0 +33 15108 23.743993657373 0 +33 15108 23.743993657373 0 +33 15123 23.744153657373 0 +33 15123 23.744153657373 0 +33 15154 23.914557135739 0 +33 15154 23.914557135739 0 +33 15161 23.914717135739 0 +33 15161 23.914717135739 0 +33 15195 23.924398904623 0 +33 15195 23.924398904623 0 +33 15202 23.924558904623 0 +33 15202 23.924558904623 0 +33 15227 23.931276162993 0 +33 15227 23.931276162993 0 +33 15235 23.931436162993 0 +33 15235 23.931436162993 0 +33 15273 23.957384389283 0 +33 15273 23.957384389283 0 +33 15284 23.957544389283 0 +33 15284 23.957544389283 0 +33 15308 23.993586164088 0 +33 15308 23.993586164088 0 +33 15323 23.993746164088 0 +33 15323 23.993746164088 0 +33 15349 24.043993663161 0 +33 15349 24.043993663161 0 +33 15364 24.044153663161 0 +33 15364 24.044153663161 0 +33 15395 24.214557153664 0 +33 15395 24.214557153664 0 +33 15402 24.214717153664 0 +33 15402 24.214717153664 0 +33 15436 24.224398904516 0 +33 15436 24.224398904516 0 +33 15443 24.224558904516 0 +33 15443 24.224558904516 0 +33 15468 24.231276162993 0 +33 15468 24.231276162993 0 +33 15476 24.231436162993 0 +33 15476 24.231436162993 0 +33 15515 24.257384388584 0 +33 15515 24.257384388584 0 +33 15530 24.257544388584 0 +33 15530 24.257544388584 0 +33 15549 24.293586163925 0 +33 15549 24.293586163925 0 +33 15564 24.293746163925 0 +33 15564 24.293746163925 0 +33 15590 24.343993674356 0 +33 15590 24.343993674356 0 +33 15605 24.344153674356 0 +33 15605 24.344153674356 0 +33 15636 24.51455717198 0 +33 15636 24.51455717198 0 +33 15643 24.51471717198 0 +33 15643 24.51471717198 0 +33 15677 24.52439890444 0 +33 15677 24.52439890444 0 +33 15684 24.52455890444 0 +33 15684 24.52455890444 0 +33 15709 24.531276162993 0 +33 15709 24.531276162993 0 +33 15717 24.531436162993 0 +33 15717 24.531436162993 0 +33 15756 24.557384388126 0 +33 15756 24.557384388126 0 +33 15771 24.557544388126 0 +33 15771 24.557544388126 0 +33 15790 24.59358616382 0 +33 15790 24.59358616382 0 +33 15805 24.59374616382 0 +33 15805 24.59374616382 0 +33 15831 24.643993686393 0 +33 15831 24.643993686393 0 +33 15846 24.644153686393 0 +33 15846 24.644153686393 0 +33 15877 24.814557190662 0 +33 15877 24.814557190662 0 +33 15884 24.814717190662 0 +33 15884 24.814717190662 0 +33 15918 24.824398904207 0 +33 15918 24.824398904207 0 +33 15925 24.824558904207 0 +33 15925 24.824558904207 0 +33 15950 24.831276162993 0 +33 15950 24.831276162993 0 +33 15958 24.831436162993 0 +33 15958 24.831436162993 0 +33 15997 24.857384387996 0 +33 15997 24.857384387996 0 +33 16012 24.857544387996 0 +33 16012 24.857544387996 0 +33 16031 24.893586163833 0 +33 16031 24.893586163833 0 +33 16046 24.893746163833 0 +33 16046 24.893746163833 0 +33 16072 24.943993699252 0 +33 16072 24.943993699252 0 +33 16087 24.944153699252 0 +33 16087 24.944153699252 0 +33 16118 25.114557209682 0 +33 16118 25.114557209682 0 +33 16125 25.114717209682 0 +33 16125 25.114717209682 0 +33 16159 25.124398903459 0 +33 16159 25.124398903459 0 +33 16166 25.124558903459 0 +33 16166 25.124558903459 0 +33 16191 25.131276162993 0 +33 16191 25.131276162993 0 +33 16199 25.131436162993 0 +33 16199 25.131436162993 0 +33 16238 25.15738438831 0 +33 16238 25.15738438831 0 +33 16253 25.15754438831 0 +33 16253 25.15754438831 0 +33 16272 25.19358616381 0 +33 16272 25.19358616381 0 +33 16287 25.19374616381 0 +33 16287 25.19374616381 0 +33 16313 25.243993712907 0 +33 16313 25.243993712907 0 +33 16328 25.244153712907 0 +33 16328 25.244153712907 0 +33 16359 25.414557228959 0 +33 16359 25.414557228959 0 +33 16366 25.414717228959 0 +33 16366 25.414717228959 0 +33 16400 25.424398902138 0 +33 16400 25.424398902138 0 +33 16407 25.424558902138 0 +33 16407 25.424558902138 0 +33 16432 25.431276162993 0 +33 16432 25.431276162993 0 +33 16440 25.431436162993 0 +33 16440 25.431436162993 0 +33 16479 25.457384389027 0 +33 16479 25.457384389027 0 +33 16494 25.457544389027 0 +33 16494 25.457544389027 0 +33 16513 25.493586163787 0 +33 16513 25.493586163787 0 +33 16528 25.493746163787 0 +33 16528 25.493746163787 0 +33 16554 25.543993727372 0 +33 16554 25.543993727372 0 +33 16569 25.544153727372 0 +33 16569 25.544153727372 0 +33 16601 25.714557248637 0 +33 16601 25.714557248637 0 +33 16612 25.714717248637 0 +33 16612 25.714717248637 0 +33 16641 25.724398900217 0 +33 16641 25.724398900217 0 +33 16648 25.724558900217 0 +33 16648 25.724558900217 0 +33 16673 25.731276162993 0 +33 16673 25.731276162993 0 +33 16681 25.731436162993 0 +33 16681 25.731436162993 0 +33 16720 25.757384390233 0 +33 16720 25.757384390233 0 +33 16735 25.757544390233 0 +33 16735 25.757544390233 0 +33 16754 25.793586163731 0 +33 16754 25.793586163731 0 +33 16769 25.793746163731 0 +33 16769 25.793746163731 0 +33 16795 25.843993742406 0 +33 16795 25.843993742406 0 +33 16810 25.844153742406 0 +33 16810 25.844153742406 0 +33 16842 26.014557267922 0 +33 16842 26.014557267922 0 +33 16853 26.014717267922 0 +33 16853 26.014717267922 0 +33 16882 26.024398899074 0 +33 16882 26.024398899074 0 +33 16889 26.024558899074 0 +33 16889 26.024558899074 0 +33 16914 26.031276162993 0 +33 16914 26.031276162993 0 +33 16922 26.031436162993 0 +33 16922 26.031436162993 0 +33 16961 26.057384392844 0 +33 16961 26.057384392844 0 +33 16976 26.057544392844 0 +33 16976 26.057544392844 0 +33 16995 26.093586162311 0 +33 16995 26.093586162311 0 +33 17010 26.093746162311 0 +33 17010 26.093746162311 0 +33 17036 26.1439937566 0 +33 17036 26.1439937566 0 +33 17051 26.1441537566 0 +33 17051 26.1441537566 0 +33 17083 26.314557286443 0 +33 17083 26.314557286443 0 +33 17094 26.314717286443 0 +33 17094 26.314717286443 0 +33 17123 26.324398899192 0 +33 17123 26.324398899192 0 +33 17130 26.324558899192 0 +33 17130 26.324558899192 0 +33 17155 26.331276162993 0 +33 17155 26.331276162993 0 +33 17163 26.331436162993 0 +33 17163 26.331436162993 0 +33 17202 26.357384397031 0 +33 17202 26.357384397031 0 +33 17217 26.357544397031 0 +33 17217 26.357544397031 0 +33 17236 26.39358615939 0 +33 17236 26.39358615939 0 +33 17251 26.39374615939 0 +33 17251 26.39374615939 0 +33 17277 26.443993769777 0 +33 17277 26.443993769777 0 +33 17292 26.444153769777 0 +33 17292 26.444153769777 0 +33 17324 26.614557304195 0 +33 17324 26.614557304195 0 +33 17335 26.614717304195 0 +33 17335 26.614717304195 0 +33 17364 26.624398900705 0 +33 17364 26.624398900705 0 +33 17371 26.624558900705 0 +33 17371 26.624558900705 0 +33 17396 26.631276162993 0 +33 17396 26.631276162993 0 +33 17404 26.631436162993 0 +33 17404 26.631436162993 0 +33 17443 26.657384402378 0 +33 17443 26.657384402378 0 +33 17458 26.657544402378 0 +33 17458 26.657544402378 0 +33 17477 26.693586155151 0 +33 17477 26.693586155151 0 +33 17492 26.693746155151 0 +33 17492 26.693746155151 0 +33 17518 26.743993781976 0 +33 17518 26.743993781976 0 +33 17533 26.744153781976 0 +33 17533 26.744153781976 0 +33 17565 26.914557321211 0 +33 17565 26.914557321211 0 +33 17576 26.914717321211 0 +33 17576 26.914717321211 0 +33 17605 26.924398903552 0 +33 17605 26.924398903552 0 +33 17612 26.924558903552 0 +33 17612 26.924558903552 0 +33 17637 26.931276162993 0 +33 17637 26.931276162993 0 +33 17645 26.931436162993 0 +33 17645 26.931436162993 0 +33 17684 26.957384408394 0 +33 17684 26.957384408394 0 +33 17699 26.957544408394 0 +33 17699 26.957544408394 0 +33 17718 26.993586149522 0 +33 17718 26.993586149522 0 +33 17733 26.993746149522 0 +33 17733 26.993746149522 0 +33 17759 27.0439937932 0 +33 17759 27.0439937932 0 +33 17774 27.0441537932 0 +33 17774 27.0441537932 0 +33 17806 27.214557337437 0 +33 17806 27.214557337437 0 +33 17817 27.214717337437 0 +33 17817 27.214717337437 0 +33 17842 27.224398907162 0 +33 17842 27.224398907162 0 +33 17849 27.224558907162 0 +33 17849 27.224558907162 0 +33 17870 27.231276162993 0 +33 17870 27.231276162993 0 +33 17878 27.231436162993 0 +33 17878 27.231436162993 0 +33 17917 27.257384414219 0 +33 17917 27.257384414219 0 +33 17932 27.257544414219 0 +33 17932 27.257544414219 0 +33 17951 27.293586142554 0 +33 17951 27.293586142554 0 +33 17966 27.293746142554 0 +33 17966 27.293746142554 0 +33 17992 27.343993803466 0 +33 17992 27.343993803466 0 +33 18007 27.344153803466 0 +33 18007 27.344153803466 0 +33 18039 27.514557353353 0 +33 18039 27.514557353353 0 +33 18050 27.514717353353 0 +33 18050 27.514717353353 0 +33 18075 27.524398910114 0 +33 18075 27.524398910114 0 +33 18082 27.524558910114 0 +33 18082 27.524558910114 0 +33 18103 27.531276162993 0 +33 18103 27.531276162993 0 +33 18111 27.531436162993 0 +33 18111 27.531436162993 0 +33 18150 27.557384419423 0 +33 18150 27.557384419423 0 +33 18165 27.557544419423 0 +33 18165 27.557544419423 0 +33 18184 27.593586134917 0 +33 18184 27.593586134917 0 +33 18199 27.593746134917 0 +33 18199 27.593746134917 0 +33 18225 27.643993814 0 +33 18225 27.643993814 0 +33 18240 27.644153814 0 +33 18240 27.644153814 0 +33 18272 27.814557366584 0 +33 18272 27.814557366584 0 +33 18283 27.814717366584 0 +33 18283 27.814717366584 0 +33 18308 27.824398911978 0 +33 18308 27.824398911978 0 +33 18315 27.824558911978 0 +33 18315 27.824558911978 0 +33 18336 27.831276162993 0 +33 18336 27.831276162993 0 +33 18344 27.831436162993 0 +33 18344 27.831436162993 0 +33 18383 27.857384421103 0 +33 18383 27.857384421103 0 +33 18398 27.857544421103 0 +33 18398 27.857544421103 0 +33 18417 27.893586127086 0 +33 18417 27.893586127086 0 +33 18432 27.893746127086 0 +33 18432 27.893746127086 0 +33 18458 27.943993821662 0 +33 18458 27.943993821662 0 +33 18473 27.944153821662 0 +33 18473 27.944153821662 0 +33 18505 28.114557372208 0 +33 18505 28.114557372208 0 +33 18516 28.114717372208 0 +33 18516 28.114717372208 0 +33 18541 28.124398921331 0 +33 18541 28.124398921331 0 +33 18548 28.124558921331 0 +33 18548 28.124558921331 0 +33 18569 28.131276162993 0 +33 18569 28.131276162993 0 +33 18577 28.131436162993 0 +33 18577 28.131436162993 0 +33 18616 28.157384422655 0 +33 18616 28.157384422655 0 +33 18631 28.157544422655 0 +33 18631 28.157544422655 0 +33 18650 28.193586110531 0 +33 18650 28.193586110531 0 +33 18665 28.193746110531 0 +33 18665 28.193746110531 0 +33 18691 28.243993818775 0 +33 18691 28.243993818775 0 +33 18706 28.244153818775 0 +33 18706 28.244153818775 0 +33 18738 28.414557379085 0 +33 18738 28.414557379085 0 +33 18749 28.414717379085 0 +33 18749 28.414717379085 0 +33 18774 28.424398936132 0 +33 18774 28.424398936132 0 +33 18781 28.424558936132 0 +33 18781 28.424558936132 0 +33 18802 28.431276162993 0 +33 18802 28.431276162993 0 +33 18810 28.431436162993 0 +33 18810 28.431436162993 0 +33 18849 28.457384430961 0 +33 18849 28.457384430961 0 +33 18864 28.457544430961 0 +33 18864 28.457544430961 0 +33 18883 28.493586087782 0 +33 18883 28.493586087782 0 +33 18898 28.493746087782 0 +33 18898 28.493746087782 0 +33 18924 28.543993814768 0 +33 18924 28.543993814768 0 +33 18939 28.544153814768 0 +33 18939 28.544153814768 0 +33 18971 28.714557386825 0 +33 18971 28.714557386825 0 +33 18982 28.714717386825 0 +33 18982 28.714717386825 0 +33 19007 28.724398950517 0 +33 19007 28.724398950517 0 +33 19014 28.724558950517 0 +33 19014 28.724558950517 0 +33 19035 28.731276162993 0 +33 19035 28.731276162993 0 +33 19043 28.731436162993 0 +33 19043 28.731436162993 0 +33 19082 28.757384440171 0 +33 19082 28.757384440171 0 +33 19097 28.757544440171 0 +33 19097 28.757544440171 0 +33 19115 28.793586063963 0 +33 19115 28.793586063963 0 +33 19126 28.793746063963 0 +33 19126 28.793746063963 0 +33 19157 28.843993810621 0 +33 19157 28.843993810621 0 +33 19172 28.844153810621 0 +33 19172 28.844153810621 0 +33 19204 29.014557394729 0 +33 19204 29.014557394729 0 +33 19215 29.014717394729 0 +33 19215 29.014717394729 0 +33 19240 29.024398956074 0 +33 19240 29.024398956074 0 +33 19247 29.024558956074 0 +33 19247 29.024558956074 0 +33 19268 29.031276162993 0 +33 19268 29.031276162993 0 +33 19276 29.031436162993 0 +33 19276 29.031436162993 0 +33 19340 29.093586039541 0 +33 19340 29.093586039541 0 +33 19351 29.093746039541 0 +33 19351 29.093746039541 0 +33 19382 29.143993806384 0 +33 19382 29.143993806384 0 +33 19397 29.144153806384 0 +33 19397 29.144153806384 0 +33 19430 29.314557402851 0 +33 19430 29.314557402851 0 +33 19445 29.314717402851 0 +33 19445 29.314717402851 0 +33 19465 29.324398958617 0 +33 19465 29.324398958617 0 +33 19472 29.324558958617 0 +33 19472 29.324558958617 0 +33 19493 29.331276162993 0 +33 19493 29.331276162993 0 +33 19501 29.331436162993 0 +33 19501 29.331436162993 0 +33 19565 29.393586014641 0 +33 19565 29.393586014641 0 +33 19576 29.393746014641 0 +33 19576 29.393746014641 0 +33 19607 29.443993802196 0 +33 19607 29.443993802196 0 +33 19622 29.444153802196 0 +33 19622 29.444153802196 0 +33 19655 29.614557411175 0 +33 19655 29.614557411175 0 +33 19670 29.614717411175 0 +33 19670 29.614717411175 0 +33 19690 29.624398960906 0 +33 19690 29.624398960906 0 +33 19697 29.624558960906 0 +33 19697 29.624558960906 0 +33 19718 29.631276162993 0 +33 19718 29.631276162993 0 +33 19726 29.631436162993 0 +33 19726 29.631436162993 0 +33 19790 29.6935859893 0 +33 19790 29.6935859893 0 +33 19801 29.6937459893 0 +33 19801 29.6937459893 0 +33 19832 29.74399379804 0 +33 19832 29.74399379804 0 +33 19847 29.74415379804 0 +33 19847 29.74415379804 0 +33 19880 29.914557419712 0 +33 19880 29.914557419712 0 +33 19895 29.914717419712 0 +33 19895 29.914717419712 0 +33 19915 29.924398963158 0 +33 19915 29.924398963158 0 +33 19922 29.924558963158 0 +33 19922 29.924558963158 0 +33 19943 29.931276162993 0 +33 19943 29.931276162993 0 +33 19951 29.931436162993 0 +33 19951 29.931436162993 0 +33 20015 29.993585963286 0 +33 20015 29.993585963286 0 +33 20026 29.993745963286 0 +33 20026 29.993745963286 0 +33 20057 30.04399379379 0 +33 20057 30.04399379379 0 +33 20072 30.04415379379 0 +33 20072 30.04415379379 0 +33 20105 30.214557428417 0 +33 20105 30.214557428417 0 +33 20120 30.214717428417 0 +33 20120 30.214717428417 0 +33 20140 30.224398965468 0 +33 20140 30.224398965468 0 +33 20147 30.224558965468 0 +33 20147 30.224558965468 0 +33 20168 30.231276162993 0 +33 20168 30.231276162993 0 +33 20176 30.231436162993 0 +33 20176 30.231436162993 0 +33 20240 30.293585936581 0 +33 20240 30.293585936581 0 +33 20251 30.293745936581 0 +33 20251 30.293745936581 0 +33 20282 30.343993789518 0 +33 20282 30.343993789518 0 +33 20297 30.344153789518 0 +33 20297 30.344153789518 0 +33 20331 30.514557437361 0 +33 20331 30.514557437361 0 +33 20350 30.514717437361 0 +33 20350 30.514717437361 0 +33 20365 30.524398967804 0 +33 20365 30.524398967804 0 +33 20372 30.524558967804 0 +33 20372 30.524558967804 0 +33 20393 30.531276162993 0 +33 20393 30.531276162993 0 +33 20401 30.531436162993 0 +33 20401 30.531436162993 0 +33 20465 30.59358590925 0 +33 20465 30.59358590925 0 +33 20476 30.59374590925 0 +33 20476 30.59374590925 0 +33 20507 30.643993785288 0 +33 20507 30.643993785288 0 +33 20522 30.644153785288 0 +33 20522 30.644153785288 0 +33 20555 30.814557446582 0 +33 20555 30.814557446582 0 +33 20570 30.814717446582 0 +33 20570 30.814717446582 0 +33 20590 30.824398970242 0 +33 20590 30.824398970242 0 +33 20597 30.824558970242 0 +33 20597 30.824558970242 0 +33 20618 30.831276162993 0 +33 20618 30.831276162993 0 +33 20626 30.831436162993 0 +33 20626 30.831436162993 0 +33 20690 30.89358588135 0 +33 20690 30.89358588135 0 +33 20701 30.89374588135 0 +33 20701 30.89374588135 0 +33 20732 30.94399378118 0 +33 20732 30.94399378118 0 +33 20747 30.94415378118 0 +33 20747 30.94415378118 0 +33 20780 31.114557456231 0 +33 20780 31.114557456231 0 +33 20795 31.114717456231 0 +33 20795 31.114717456231 0 +33 20815 31.124398972755 0 +33 20815 31.124398972755 0 +33 20822 31.124558972755 0 +33 20822 31.124558972755 0 +33 20847 31.131276162993 0 +33 20847 31.131276162993 0 +33 20855 31.131436162993 0 +33 20855 31.131436162993 0 +33 20918 31.193585853113 0 +33 20918 31.193585853113 0 +33 20925 31.193745853113 0 +33 20925 31.193745853113 0 +33 20965 31.243993777587 0 +33 20965 31.243993777587 0 +33 20980 31.244153777587 0 +33 20980 31.244153777587 0 +33 21013 31.414557466338 0 +33 21013 31.414557466338 0 +33 21028 31.414717466338 0 +33 21028 31.414717466338 0 +33 21048 31.424398975275 0 +33 21048 31.424398975275 0 +33 21055 31.424558975275 0 +33 21055 31.424558975275 0 +33 21080 31.431276162993 0 +33 21080 31.431276162993 0 +33 21088 31.431436162993 0 +33 21088 31.431436162993 0 +33 21151 31.493585824854 0 +33 21151 31.493585824854 0 +33 21158 31.493745824854 0 +33 21158 31.493745824854 0 +33 21198 31.543993774618 0 +33 21198 31.543993774618 0 +33 21213 31.544153774618 0 +33 21213 31.544153774618 0 +33 21246 31.714557476938 0 +33 21246 31.714557476938 0 +33 21261 31.714717476938 0 +33 21261 31.714717476938 0 +33 21281 31.724398977789 0 +33 21281 31.724398977789 0 +33 21288 31.724558977789 0 +33 21288 31.724558977789 0 +33 21313 31.731276162993 0 +33 21313 31.731276162993 0 +33 21321 31.731436162993 0 +33 21321 31.731436162993 0 +33 21384 31.793585796622 0 +33 21384 31.793585796622 0 +33 21391 31.793745796622 0 +33 21391 31.793745796622 0 +33 21431 31.843993772319 0 +33 21431 31.843993772319 0 +33 21446 31.844153772319 0 +33 21446 31.844153772319 0 +33 21479 32.014557487942 0 +33 21479 32.014557487942 0 +33 21494 32.014717487942 0 +33 21494 32.014717487942 0 +33 21514 32.024398980316 0 +33 21514 32.024398980316 0 +33 21521 32.024558980316 0 +33 21521 32.024558980316 0 +33 21546 32.031276162993 0 +33 21546 32.031276162993 0 +33 21554 32.031436162993 0 +33 21554 32.031436162993 0 +33 21617 32.093585768404 0 +33 21617 32.093585768404 0 +33 21624 32.093745768404 0 +33 21624 32.093745768404 0 +33 21664 32.143993770659 0 +33 21664 32.143993770659 0 +33 21679 32.144153770659 0 +33 21679 32.144153770659 0 +33 21712 32.314557499402 0 +33 21712 32.314557499402 0 +33 21727 32.314717499402 0 +33 21727 32.314717499402 0 +33 21747 32.324398982748 0 +33 21747 32.324398982748 0 +33 21754 32.324558982748 0 +33 21754 32.324558982748 0 +33 21779 32.331276162993 0 +33 21779 32.331276162993 0 +33 21787 32.331436162993 0 +33 21787 32.331436162993 0 +33 21850 32.393585740167 0 +33 21850 32.393585740167 0 +33 21857 32.393745740167 0 +33 21857 32.393745740167 0 +33 21897 32.443993769753 0 +33 21897 32.443993769753 0 +33 21912 32.444153769753 0 +33 21912 32.444153769753 0 +33 21945 32.614557511219 0 +33 21945 32.614557511219 0 +33 21960 32.614717511219 0 +33 21960 32.614717511219 0 +33 21980 32.624398985247 0 +33 21980 32.624398985247 0 +33 21987 32.624558985247 0 +33 21987 32.624558985247 0 +33 22012 32.631276162993 0 +33 22012 32.631276162993 0 +33 22020 32.631436162993 0 +33 22020 32.631436162993 0 +33 22083 32.693585711913 0 +33 22083 32.693585711913 0 +33 22090 32.693745711913 0 +33 22090 32.693745711913 0 +33 22130 32.74399376948 0 +33 22130 32.74399376948 0 +33 22145 32.74415376948 0 +33 22145 32.74415376948 0 +33 22178 32.914557523456 0 +33 22178 32.914557523456 0 +33 22193 32.914717523456 0 +33 22193 32.914717523456 0 +33 22213 32.924398987742 0 +33 22213 32.924398987742 0 +33 22220 32.924558987742 0 +33 22220 32.924558987742 0 +33 22245 32.931276162993 0 +33 22245 32.931276162993 0 +33 22253 32.931436162993 0 +33 22253 32.931436162993 0 +33 22316 32.993585683676 0 +33 22316 32.993585683676 0 +33 22323 32.993745683676 0 +33 22323 32.993745683676 0 +33 22363 33.043993769896 0 +33 22363 33.043993769896 0 +33 22378 33.044153769896 0 +33 22378 33.044153769896 0 +33 22411 33.214557536006 0 +33 22411 33.214557536006 0 +33 22426 33.214717536006 0 +33 22426 33.214717536006 0 +33 22446 33.224398990236 0 +33 22446 33.224398990236 0 +33 22453 33.224558990236 0 +33 22453 33.224558990236 0 +33 22478 33.231276162993 0 +33 22478 33.231276162993 0 +33 22486 33.231436162993 0 +33 22486 33.231436162993 0 +33 22549 33.293585655474 0 +33 22549 33.293585655474 0 +33 22556 33.293745655474 0 +33 22556 33.293745655474 0 +33 22596 33.343993770985 0 +33 22596 33.343993770985 0 +33 22611 33.344153770985 0 +33 22611 33.344153770985 0 +33 22644 33.514557548915 0 +33 22644 33.514557548915 0 +33 22659 33.514717548915 0 +33 22659 33.514717548915 0 +33 22679 33.524398992733 0 +33 22679 33.524398992733 0 +33 22686 33.524558992733 0 +33 22686 33.524558992733 0 +33 22711 33.531276162993 0 +33 22711 33.531276162993 0 +33 22719 33.531436162993 0 +33 22719 33.531436162993 0 +33 22782 33.593585627277 0 +33 22782 33.593585627277 0 +33 22789 33.593745627277 0 +33 22789 33.593745627277 0 +33 22829 33.643993772782 0 +33 22829 33.643993772782 0 +33 22844 33.644153772782 0 +33 22844 33.644153772782 0 +33 22877 33.814557562144 0 +33 22877 33.814557562144 0 +33 22892 33.814717562144 0 +33 22892 33.814717562144 0 +33 22908 33.82439899523 0 +33 22908 33.82439899523 0 +33 22915 33.82455899523 0 +33 22915 33.82455899523 0 +33 22940 33.831276162993 0 +33 22940 33.831276162993 0 +33 22948 33.831436162993 0 +33 22948 33.831436162993 0 +33 23011 33.893585599183 0 +33 23011 33.893585599183 0 +33 23018 33.893745599183 0 +33 23018 33.893745599183 0 +33 23052 33.943993775237 0 +33 23052 33.943993775237 0 +33 23062 33.944153775237 0 +33 23062 33.944153775237 0 +33 23118 34.124398997755 0 +33 23118 34.124398997755 0 +33 23124 34.124558997755 0 +33 23124 34.124558997755 0 +33 23144 34.131276162993 0 +33 23144 34.131276162993 0 +33 23151 34.131436162993 0 +33 23151 34.131436162993 0 +33 23210 34.243993778327 0 +33 23210 34.243993778327 0 +33 23220 34.244153778327 0 +33 23220 34.244153778327 0 +33 23276 34.424399000269 0 +33 23276 34.424399000269 0 +33 23282 34.424559000269 0 +33 23282 34.424559000269 0 +33 23302 34.431276162993 0 +33 23302 34.431276162993 0 +33 23309 34.431436162993 0 +33 23309 34.431436162993 0 +33 23368 34.543993782072 0 +33 23368 34.543993782072 0 +33 23378 34.544153782072 0 +33 23378 34.544153782072 0 +33 23434 34.724399002779 0 +33 23434 34.724399002779 0 +33 23440 34.724559002779 0 +33 23440 34.724559002779 0 +33 23460 34.731276162993 0 +33 23460 34.731276162993 0 +33 23467 34.731436162993 0 +33 23467 34.731436162993 0 +33 23526 34.843993786489 0 +33 23526 34.843993786489 0 +33 23536 34.844153786489 0 +33 23536 34.844153786489 0 +33 23592 35.02439900524 0 +33 23592 35.02439900524 0 +33 23598 35.02455900524 0 +33 23598 35.02455900524 0 +33 23618 35.031276162993 0 +33 23618 35.031276162993 0 +33 23625 35.031436162993 0 +33 23625 35.031436162993 0 +33 23684 35.143993791503 0 +33 23684 35.143993791503 0 +33 23694 35.144153791503 0 +33 23694 35.144153791503 0 +33 23754 35.32439900778 0 +33 23754 35.32439900778 0 +33 23760 35.32455900778 0 +33 23760 35.32455900778 0 +33 23780 35.331276162993 0 +33 23780 35.331276162993 0 +33 23787 35.331436162993 0 +33 23787 35.331436162993 0 +33 23850 35.443993797136 0 +33 23850 35.443993797136 0 +33 23860 35.444153797136 0 +33 23860 35.444153797136 0 +33 23920 35.624399010314 0 +33 23920 35.624399010314 0 +33 23926 35.624559010314 0 +33 23926 35.624559010314 0 +33 23946 35.631276162993 0 +33 23946 35.631276162993 0 +33 23953 35.631436162993 0 +33 23953 35.631436162993 0 +33 24016 35.743993803331 0 +33 24016 35.743993803331 0 +33 24026 35.744153803331 0 +33 24026 35.744153803331 0 +33 24086 35.924399012824 0 +33 24086 35.924399012824 0 +33 24092 35.924559012824 0 +33 24092 35.924559012824 0 +33 24112 35.931276162993 0 +33 24112 35.931276162993 0 +33 24119 35.931436162993 0 +33 24119 35.931436162993 0 +33 24182 36.043993810134 0 +33 24182 36.043993810134 0 +33 24192 36.044153810134 0 +33 24192 36.044153810134 0 +33 24252 36.224399015304 0 +33 24252 36.224399015304 0 +33 24258 36.224559015304 0 +33 24258 36.224559015304 0 +33 24278 36.231276162993 0 +33 24278 36.231276162993 0 +33 24285 36.231436162993 0 +33 24285 36.231436162993 0 +33 24348 36.343993817527 0 +33 24348 36.343993817527 0 +33 24358 36.344153817527 0 +33 24358 36.344153817527 0 +33 24418 36.524399017802 0 +33 24418 36.524399017802 0 +33 24424 36.524559017802 0 +33 24424 36.524559017802 0 +33 24444 36.531276162993 0 +33 24444 36.531276162993 0 +33 24451 36.531436162993 0 +33 24451 36.531436162993 0 +33 24514 36.643993825454 0 +33 24514 36.643993825454 0 +33 24524 36.644153825454 0 +33 24524 36.644153825454 0 +33 24584 36.824399020283 0 +33 24584 36.824399020283 0 +33 24590 36.824559020283 0 +33 24590 36.824559020283 0 +33 24610 36.831276162993 0 +33 24610 36.831276162993 0 +33 24617 36.831436162993 0 +33 24617 36.831436162993 0 +33 24680 36.943993833942 0 +33 24680 36.943993833942 0 +33 24690 36.944153833942 0 +33 24690 36.944153833942 0 +33 24750 37.124399022747 0 +33 24750 37.124399022747 0 +33 24756 37.124559022747 0 +33 24756 37.124559022747 0 +33 24776 37.131276162993 0 +33 24776 37.131276162993 0 +33 24783 37.131436162993 0 +33 24783 37.131436162993 0 +33 24847 37.243993841675 0 +33 24847 37.243993841675 0 +33 24861 37.244153841675 0 +33 24861 37.244153841675 0 +33 24916 37.424399025229 0 +33 24916 37.424399025229 0 +33 24922 37.424559025229 0 +33 24922 37.424559025229 0 +33 24942 37.431276162993 0 +33 24942 37.431276162993 0 +33 24949 37.431436162993 0 +33 24949 37.431436162993 0 +33 25013 37.54399384071 0 +33 25013 37.54399384071 0 +33 25027 37.54415384071 0 +33 25027 37.54415384071 0 +33 25082 37.724399027708 0 +33 25082 37.724399027708 0 +33 25088 37.724559027708 0 +33 25088 37.724559027708 0 +33 25108 37.731276162993 0 +33 25108 37.731276162993 0 +33 25115 37.731436162993 0 +33 25115 37.731436162993 0 +33 25179 37.843993832964 0 +33 25179 37.843993832964 0 +33 25193 37.844153832964 0 +33 25193 37.844153832964 0 +33 25248 38.024399030169 0 +33 25248 38.024399030169 0 +33 25254 38.024559030169 0 +33 25254 38.024559030169 0 +33 25274 38.031276162993 0 +33 25274 38.031276162993 0 +33 25281 38.031436162993 0 +33 25281 38.031436162993 0 +33 25345 38.143993825758 0 +33 25345 38.143993825758 0 +33 25359 38.144153825758 0 +33 25359 38.144153825758 0 +33 25414 38.324399032643 0 +33 25414 38.324399032643 0 +33 25420 38.324559032643 0 +33 25420 38.324559032643 0 +33 25440 38.331276162993 0 +33 25440 38.331276162993 0 +33 25447 38.331436162993 0 +33 25447 38.331436162993 0 +33 25511 38.44399381973 0 +33 25511 38.44399381973 0 +33 25525 38.44415381973 0 +33 25525 38.44415381973 0 +33 25580 38.624399035134 0 +33 25580 38.624399035134 0 +33 25586 38.624559035134 0 +33 25586 38.624559035134 0 +33 25606 38.631276162993 0 +33 25606 38.631276162993 0 +33 25613 38.631436162993 0 +33 25613 38.631436162993 0 +33 25677 38.743993814907 0 +33 25677 38.743993814907 0 +33 25691 38.744153814907 0 +33 25691 38.744153814907 0 +33 25746 38.924399037653 0 +33 25746 38.924399037653 0 +33 25752 38.924559037653 0 +33 25752 38.924559037653 0 +33 25772 38.931276162993 0 +33 25772 38.931276162993 0 +33 25779 38.931436162993 0 +33 25779 38.931436162993 0 +33 25843 39.043993811322 0 +33 25843 39.043993811322 0 +33 25857 39.044153811322 0 +33 25857 39.044153811322 0 +33 25912 39.224399040102 0 +33 25912 39.224399040102 0 +33 25918 39.224559040102 0 +33 25918 39.224559040102 0 +33 25938 39.231276162993 0 +33 25938 39.231276162993 0 +33 25945 39.231436162993 0 +33 25945 39.231436162993 0 +33 26009 39.343993808998 0 +33 26009 39.343993808998 0 +33 26023 39.344153808998 0 +33 26023 39.344153808998 0 +33 26078 39.524399042597 0 +33 26078 39.524399042597 0 +33 26084 39.524559042597 0 +33 26084 39.524559042597 0 +33 26104 39.531276162993 0 +33 26104 39.531276162993 0 +33 26111 39.531436162993 0 +33 26111 39.531436162993 0 +33 26175 39.643993807943 0 +33 26175 39.643993807943 0 +33 26189 39.644153807943 0 +33 26189 39.644153807943 0 +33 26244 39.824399045083 0 +33 26244 39.824399045083 0 +33 26250 39.824559045083 0 +33 26250 39.824559045083 0 +33 26270 39.831276162993 0 +33 26270 39.831276162993 0 +33 26277 39.831436162993 0 +33 26277 39.831436162993 0 +33 26341 39.943993808167 0 +33 26341 39.943993808167 0 +33 26355 39.944153808167 0 +33 26355 39.944153808167 0 +33 26410 40.124399047608 0 +33 26410 40.124399047608 0 +33 26416 40.124559047608 0 +33 26416 40.124559047608 0 +33 26436 40.131276162993 0 +33 26436 40.131276162993 0 +33 26443 40.131436162993 0 +33 26443 40.131436162993 0 +33 26507 40.243993809672 0 +33 26507 40.243993809672 0 +33 26521 40.244153809672 0 +33 26521 40.244153809672 0 +33 26576 40.424399050085 0 +33 26576 40.424399050085 0 +33 26582 40.424559050085 0 +33 26582 40.424559050085 0 +33 26602 40.431276162993 0 +33 26602 40.431276162993 0 +33 26609 40.431436162993 0 +33 26609 40.431436162993 0 +33 26673 40.543993812444 0 +33 26673 40.543993812444 0 +33 26687 40.544153812444 0 +33 26687 40.544153812444 0 +33 26742 40.72439905259 0 +33 26742 40.72439905259 0 +33 26748 40.72455905259 0 +33 26748 40.72455905259 0 +33 26772 40.731276162993 0 +33 26772 40.731276162993 0 +33 26779 40.731436162993 0 +33 26779 40.731436162993 0 +33 26843 40.843993816458 0 +33 26843 40.843993816458 0 +33 26857 40.844153816458 0 +33 26857 40.844153816458 0 +33 26916 41.024399055027 0 +33 26916 41.024399055027 0 +33 26922 41.024559055027 0 +33 26922 41.024559055027 0 +33 26946 41.031276162993 0 +33 26946 41.031276162993 0 +33 26953 41.031436162993 0 +33 26953 41.031436162993 0 +33 27017 41.143993821716 0 +33 27017 41.143993821716 0 +33 27031 41.144153821716 0 +33 27031 41.144153821716 0 +33 27090 41.324399057542 0 +33 27090 41.324399057542 0 +33 27096 41.324559057542 0 +33 27096 41.324559057542 0 +33 27120 41.331276162993 0 +33 27120 41.331276162993 0 +33 27127 41.331436162993 0 +33 27127 41.331436162993 0 +33 27191 41.443993828168 0 +33 27191 41.443993828168 0 +33 27205 41.444153828168 0 +33 27205 41.444153828168 0 +33 27264 41.62439906007 0 +33 27264 41.62439906007 0 +33 27270 41.62455906007 0 +33 27270 41.62455906007 0 +33 27294 41.631276162993 0 +33 27294 41.631276162993 0 +33 27301 41.631436162993 0 +33 27301 41.631436162993 0 +33 27365 41.743993835789 0 +33 27365 41.743993835789 0 +33 27379 41.744153835789 0 +33 27379 41.744153835789 0 +33 27438 41.924399062611 0 +33 27438 41.924399062611 0 +33 27444 41.924559062611 0 +33 27444 41.924559062611 0 +33 27468 41.931276162993 0 +33 27468 41.931276162993 0 +33 27475 41.931436162993 0 +33 27475 41.931436162993 0 +33 27539 42.043993844221 0 +33 27539 42.043993844221 0 +33 27553 42.044153844221 0 +33 27553 42.044153844221 0 +33 27612 42.224399065158 0 +33 27612 42.224399065158 0 +33 27618 42.224559065158 0 +33 27618 42.224559065158 0 +33 27642 42.231276162993 0 +33 27642 42.231276162993 0 +33 27649 42.231436162993 0 +33 27649 42.231436162993 0 +33 27714 42.343993853216 0 +33 27714 42.343993853216 0 +33 27732 42.344153853216 0 +33 27732 42.344153853216 0 +33 27786 42.524399067719 0 +33 27786 42.524399067719 0 +33 27792 42.524559067719 0 +33 27792 42.524559067719 0 +33 27816 42.531276162993 0 +33 27816 42.531276162993 0 +33 27823 42.531436162993 0 +33 27823 42.531436162993 0 +33 27888 42.643993862563 0 +33 27888 42.643993862563 0 +33 27906 42.644153862563 0 +33 27906 42.644153862563 0 +33 27960 42.824399070171 0 +33 27960 42.824399070171 0 +33 27966 42.824559070171 0 +33 27966 42.824559070171 0 +33 27990 42.831276162993 0 +33 27990 42.831276162993 0 +33 27997 42.831436162993 0 +33 27997 42.831436162993 0 +33 28062 42.943993872107 0 +33 28062 42.943993872107 0 +33 28080 42.944153872107 0 +33 28080 42.944153872107 0 +33 28134 43.124399072679 0 +33 28134 43.124399072679 0 +33 28140 43.124559072679 0 +33 28140 43.124559072679 0 +33 28164 43.131276162993 0 +33 28164 43.131276162993 0 +33 28171 43.131436162993 0 +33 28171 43.131436162993 0 +33 28236 43.243993881734 0 +33 28236 43.243993881734 0 +33 28254 43.244153881734 0 +33 28254 43.244153881734 0 +33 28308 43.424399075168 0 +33 28308 43.424399075168 0 +33 28314 43.424559075168 0 +33 28314 43.424559075168 0 +33 28338 43.431276162993 0 +33 28338 43.431276162993 0 +33 28345 43.431436162993 0 +33 28345 43.431436162993 0 +33 28410 43.543993891273 0 +33 28410 43.543993891273 0 +33 28428 43.544153891273 0 +33 28428 43.544153891273 0 +33 28482 43.724399077694 0 +33 28482 43.724399077694 0 +33 28488 43.724559077694 0 +33 28488 43.724559077694 0 +33 28512 43.731276162993 0 +33 28512 43.731276162993 0 +33 28519 43.731436162993 0 +33 28519 43.731436162993 0 +33 28584 43.843993900664 0 +33 28584 43.843993900664 0 +33 28602 43.844153900664 0 +33 28602 43.844153900664 0 +33 28656 44.024399080215 0 +33 28656 44.024399080215 0 +33 28662 44.024559080215 0 +33 28662 44.024559080215 0 +33 28686 44.031276162993 0 +33 28686 44.031276162993 0 +33 28693 44.031436162993 0 +33 28693 44.031436162993 0 +33 28758 44.143993909788 0 +33 28758 44.143993909788 0 +33 28776 44.144153909788 0 +33 28776 44.144153909788 0 +33 28830 44.324399082695 0 +33 28830 44.324399082695 0 +33 28836 44.324559082695 0 +33 28836 44.324559082695 0 +33 28860 44.331276162993 0 +33 28860 44.331276162993 0 +33 28867 44.331436162993 0 +33 28867 44.331436162993 0 +33 28996 44.624399085153 0 +33 28996 44.624399085153 0 +33 29002 44.624559085153 0 +33 29002 44.624559085153 0 +33 29026 44.631276162993 0 +33 29026 44.631276162993 0 +33 29033 44.631436162993 0 +33 29033 44.631436162993 0 +33 29162 44.924399087671 0 +33 29162 44.924399087671 0 +33 29168 44.924559087671 0 +33 29168 44.924559087671 0 +33 29192 44.931276162993 0 +33 29192 44.931276162993 0 +33 29199 44.931436162993 0 +33 29199 44.931436162993 0 +33 29328 45.224399090114 0 +33 29328 45.224399090114 0 +33 29334 45.224559090114 0 +33 29334 45.224559090114 0 +33 29358 45.231276162993 0 +33 29358 45.231276162993 0 +33 29365 45.231436162993 0 +33 29365 45.231436162993 0 +33 29494 45.524399092613 0 +33 29494 45.524399092613 0 +33 29500 45.524559092613 0 +33 29500 45.524559092613 0 +33 29524 45.531276162993 0 +33 29524 45.531276162993 0 +33 29531 45.531436162993 0 +33 29531 45.531436162993 0 +33 29660 45.824399095152 0 +33 29660 45.824399095152 0 +33 29666 45.824559095152 0 +33 29666 45.824559095152 0 +33 29690 45.831276162993 0 +33 29690 45.831276162993 0 +33 29697 45.831436162993 0 +33 29697 45.831436162993 0 +33 29826 46.124399098204 0 +33 29826 46.124399098204 0 +33 29832 46.124559098204 0 +33 29832 46.124559098204 0 +33 29856 46.131276162993 0 +33 29856 46.131276162993 0 +33 29863 46.131436162993 0 +33 29863 46.131436162993 0 +33 29992 46.424399105752 0 +33 29992 46.424399105752 0 +33 29998 46.424559105752 0 +33 29998 46.424559105752 0 +33 30022 46.431276162993 0 +33 30022 46.431276162993 0 +33 30029 46.431436162993 0 +33 30029 46.431436162993 0 +33 30158 46.724399119111 0 +33 30158 46.724399119111 0 +33 30164 46.724559119111 0 +33 30164 46.724559119111 0 +33 30188 46.731276162993 0 +33 30188 46.731276162993 0 +33 30195 46.731436162993 0 +33 30195 46.731436162993 0 +33 30324 47.02439913369 0 +33 30324 47.02439913369 0 +33 30330 47.02455913369 0 +33 30330 47.02455913369 0 +33 30354 47.031276162993 0 +33 30354 47.031276162993 0 +33 30361 47.031436162993 0 +33 30361 47.031436162993 0 +33 30490 47.3243991485 0 +33 30490 47.3243991485 0 +33 30496 47.3245591485 0 +33 30496 47.3245591485 0 +33 30520 47.331276162993 0 +33 30520 47.331276162993 0 +33 30527 47.331436162993 0 +33 30527 47.331436162993 0 +33 30656 47.624399163475 0 +33 30656 47.624399163475 0 +33 30662 47.624559163475 0 +33 30662 47.624559163475 0 +33 30686 47.631276162993 0 +33 30686 47.631276162993 0 +33 30693 47.631436162993 0 +33 30693 47.631436162993 0 +33 30823 47.924399178648 0 +33 30823 47.924399178648 0 +33 30833 47.924559178648 0 +33 30833 47.924559178648 0 +33 30852 47.931276162993 0 +33 30852 47.931276162993 0 +33 30859 47.931436162993 0 +33 30859 47.931436162993 0 +33 30990 48.224399193917 0 +33 30990 48.224399193917 0 +33 31004 48.224559193917 0 +33 31004 48.224559193917 0 +33 31018 48.231276162993 0 +33 31018 48.231276162993 0 +33 31025 48.231436162993 0 +33 31025 48.231436162993 0 +33 31156 48.524399209372 0 +33 31156 48.524399209372 0 +33 31170 48.524559209372 0 +33 31170 48.524559209372 0 +33 31184 48.531276162993 0 +33 31184 48.531276162993 0 +33 31191 48.531436162993 0 +33 31191 48.531436162993 0 +33 31322 48.824399224983 0 +33 31322 48.824399224983 0 +33 31336 48.824559224983 0 +33 31336 48.824559224983 0 +33 31350 48.831276162993 0 +33 31350 48.831276162993 0 +33 31357 48.831436162993 0 +33 31357 48.831436162993 0 +33 31488 49.124399240703 0 +33 31488 49.124399240703 0 +33 31502 49.124559240703 0 +33 31502 49.124559240703 0 +33 31516 49.131276162993 0 +33 31516 49.131276162993 0 +33 31523 49.131436162993 0 +33 31523 49.131436162993 0 +33 31654 49.424399256502 0 +33 31654 49.424399256502 0 +33 31668 49.424559256502 0 +33 31668 49.424559256502 0 +33 31682 49.431276162993 0 +33 31682 49.431276162993 0 +33 31689 49.431436162993 0 +33 31689 49.431436162993 0 +33 31820 49.724399261494 0 +33 31820 49.724399261494 0 +33 31834 49.724559261494 0 +33 31834 49.724559261494 0 +33 31848 49.731276162993 0 +33 31848 49.731276162993 0 +33 31855 49.731436162993 0 +33 31855 49.731436162993 0 +33 31986 50.02439926103 0 +33 31986 50.02439926103 0 +33 32000 50.02455926103 0 +33 32000 50.02455926103 0 +33 32014 50.031276162993 0 +33 32014 50.031276162993 0 +33 32021 50.031436162993 0 +33 32021 50.031436162993 0 +33 32152 50.324399260569 0 +33 32152 50.324399260569 0 +33 32166 50.324559260569 0 +33 32166 50.324559260569 0 +33 32180 50.331276162993 0 +33 32180 50.331276162993 0 +33 32187 50.331436162993 0 +33 32187 50.331436162993 0 +33 32318 50.624399260125 0 +33 32318 50.624399260125 0 +33 32332 50.624559260125 0 +33 32332 50.624559260125 0 +33 32346 50.631276162993 0 +33 32346 50.631276162993 0 +33 32353 50.631436162993 0 +33 32353 50.631436162993 0 +33 32484 50.924399259692 0 +33 32484 50.924399259692 0 +33 32498 50.924559259692 0 +33 32498 50.924559259692 0 +33 32512 50.931276162993 0 +33 32512 50.931276162993 0 +33 32519 50.931436162993 0 +33 32519 50.931436162993 0 +33 32646 51.224399259255 0 +33 32646 51.224399259255 0 +33 32660 51.224559259255 0 +33 32660 51.224559259255 0 +33 32674 51.231276162993 0 +33 32674 51.231276162993 0 +33 32681 51.231436162993 0 +33 32681 51.231436162993 0 +33 32804 51.524399258837 0 +33 32804 51.524399258837 0 +33 32818 51.524559258837 0 +33 32818 51.524559258837 0 +33 32832 51.531276162993 0 +33 32832 51.531276162993 0 +33 32839 51.531436162993 0 +33 32839 51.531436162993 0 +33 32865 51.557384429561 0 +33 32865 51.557384429561 0 +33 32879 51.557544429561 0 +33 32879 51.557544429561 0 +33 32970 51.824399258432 0 +33 32970 51.824399258432 0 +33 32984 51.824559258432 0 +33 32984 51.824559258432 0 +33 32998 51.831276162993 0 +33 32998 51.831276162993 0 +33 33005 51.831436162993 0 +33 33005 51.831436162993 0 +33 33031 51.857384410523 0 +33 33031 51.857384410523 0 +33 33045 51.857544410523 0 +33 33045 51.857544410523 0 +33 33136 52.124399258035 0 +33 33136 52.124399258035 0 +33 33150 52.124559258035 0 +33 33150 52.124559258035 0 +33 33164 52.131276162993 0 +33 33164 52.131276162993 0 +33 33171 52.131436162993 0 +33 33171 52.131436162993 0 +33 33197 52.157384391469 0 +33 33197 52.157384391469 0 +33 33211 52.157544391469 0 +33 33211 52.157544391469 0 +33 33302 52.424399257631 0 +33 33302 52.424399257631 0 +33 33316 52.424559257631 0 +33 33316 52.424559257631 0 +33 33330 52.431276162993 0 +33 33330 52.431276162993 0 +33 33337 52.431436162993 0 +33 33337 52.431436162993 0 +33 33363 52.45738437236 0 +33 33363 52.45738437236 0 +33 33377 52.45754437236 0 +33 33377 52.45754437236 0 +33 33468 52.724399257249 0 +33 33468 52.724399257249 0 +33 33482 52.724559257249 0 +33 33482 52.724559257249 0 +33 33496 52.731276162993 0 +33 33496 52.731276162993 0 +33 33503 52.731436162993 0 +33 33503 52.731436162993 0 +33 33529 52.75738435334 0 +33 33529 52.75738435334 0 +33 33543 52.75754435334 0 +33 33543 52.75754435334 0 +33 33634 53.024399256872 0 +33 33634 53.024399256872 0 +33 33648 53.024559256872 0 +33 33648 53.024559256872 0 +33 33662 53.031276162993 0 +33 33662 53.031276162993 0 +33 33669 53.031436162993 0 +33 33669 53.031436162993 0 +33 33695 53.057384334363 0 +33 33695 53.057384334363 0 +33 33709 53.057544334363 0 +33 33709 53.057544334363 0 +33 33776 53.324399256501 0 +33 33776 53.324399256501 0 +33 33789 53.324559256501 0 +33 33789 53.324559256501 0 +33 33801 53.331276162993 0 +33 33801 53.331276162993 0 +33 33807 53.331436162993 0 +33 33807 53.331436162993 0 +33 33832 53.357384316044 0 +33 33832 53.357384316044 0 +33 33845 53.357544316044 0 +33 33845 53.357544316044 0 +33 33903 53.624399256146 0 +33 33903 53.624399256146 0 +33 33916 53.624559256146 0 +33 33916 53.624559256146 0 +33 33928 53.631276162993 0 +33 33928 53.631276162993 0 +33 33934 53.631436162993 0 +33 33934 53.631436162993 0 +33 33959 53.657384298598 0 +33 33959 53.657384298598 0 +33 33972 53.657544298598 0 +33 33972 53.657544298598 0 +33 34030 53.924399255807 0 +33 34030 53.924399255807 0 +33 34043 53.924559255807 0 +33 34043 53.924559255807 0 +33 34055 53.931276162993 0 +33 34055 53.931276162993 0 +33 34061 53.931436162993 0 +33 34061 53.931436162993 0 +33 34086 53.95738428203 0 +33 34086 53.95738428203 0 +33 34099 53.95754428203 0 +33 34099 53.95754428203 0 +33 34157 54.224399255474 0 +33 34157 54.224399255474 0 +33 34170 54.224559255474 0 +33 34170 54.224559255474 0 +33 34182 54.231276162993 0 +33 34182 54.231276162993 0 +33 34188 54.231436162993 0 +33 34188 54.231436162993 0 +33 34213 54.257384266324 0 +33 34213 54.257384266324 0 +33 34226 54.257544266324 0 +33 34226 54.257544266324 0 +33 34284 54.52439925514 0 +33 34284 54.52439925514 0 +33 34297 54.52455925514 0 +33 34297 54.52455925514 0 +33 34309 54.531276162993 0 +33 34309 54.531276162993 0 +33 34315 54.531436162993 0 +33 34315 54.531436162993 0 +33 34340 54.557384251324 0 +33 34340 54.557384251324 0 +33 34353 54.557544251324 0 +33 34353 54.557544251324 0 +33 34411 54.824399254865 0 +33 34411 54.824399254865 0 +33 34424 54.824559254865 0 +33 34424 54.824559254865 0 +33 34436 54.831276162993 0 +33 34436 54.831276162993 0 +33 34442 54.831436162993 0 +33 34442 54.831436162993 0 +33 34467 54.857384236279 0 +33 34467 54.857384236279 0 +33 34480 54.857544236279 0 +33 34480 54.857544236279 0 +33 34538 55.124399254758 0 +33 34538 55.124399254758 0 +33 34551 55.124559254758 0 +33 34551 55.124559254758 0 +33 34563 55.131276162993 0 +33 34563 55.131276162993 0 +33 34569 55.131436162993 0 +33 34569 55.131436162993 0 +33 34594 55.157384221704 0 +33 34594 55.157384221704 0 +33 34607 55.157544221704 0 +33 34607 55.157544221704 0 +33 34665 55.424399254821 0 +33 34665 55.424399254821 0 +33 34678 55.424559254821 0 +33 34678 55.424559254821 0 +33 34690 55.431276162993 0 +33 34690 55.431276162993 0 +33 34696 55.431436162993 0 +33 34696 55.431436162993 0 +33 34721 55.45738420776 0 +33 34721 55.45738420776 0 +33 34734 55.45754420776 0 +33 34734 55.45754420776 0 +33 34792 55.724399255052 0 +33 34792 55.724399255052 0 +33 34805 55.724559255052 0 +33 34805 55.724559255052 0 +33 34817 55.731276162993 0 +33 34817 55.731276162993 0 +33 34823 55.731436162993 0 +33 34823 55.731436162993 0 +33 34848 55.757384194465 0 +33 34848 55.757384194465 0 +33 34861 55.757544194465 0 +33 34861 55.757544194465 0 +33 34919 56.024399255468 0 +33 34919 56.024399255468 0 +33 34932 56.024559255468 0 +33 34932 56.024559255468 0 +33 34944 56.031276162993 0 +33 34944 56.031276162993 0 +33 34950 56.031436162993 0 +33 34950 56.031436162993 0 +33 34975 56.05738418177 0 +33 34975 56.05738418177 0 +33 34988 56.05754418177 0 +33 34988 56.05754418177 0 +33 35046 56.324399256088 0 +33 35046 56.324399256088 0 +33 35059 56.324559256088 0 +33 35059 56.324559256088 0 +33 35071 56.331276162993 0 +33 35071 56.331276162993 0 +33 35077 56.331436162993 0 +33 35077 56.331436162993 0 +33 35102 56.357384169733 0 +33 35102 56.357384169733 0 +33 35115 56.357544169733 0 +33 35115 56.357544169733 0 +33 35170 56.624399256836 0 +33 35170 56.624399256836 0 +33 35178 56.624559256836 0 +33 35178 56.624559256836 0 +33 35190 56.631276162993 0 +33 35190 56.631276162993 0 +33 35195 56.631436162993 0 +33 35195 56.631436162993 0 +33 35218 56.657384157873 0 +33 35218 56.657384157873 0 +33 35226 56.657544157873 0 +33 35226 56.657544157873 0 +33 35254 56.924399261596 0 +33 35254 56.924399261596 0 +33 35262 56.924559261596 0 +33 35262 56.924559261596 0 +33 35274 56.931276162993 0 +33 35274 56.931276162993 0 +33 35279 56.931436162993 0 +33 35279 56.931436162993 0 +33 35302 56.957384148777 0 +33 35302 56.957384148777 0 +33 35310 56.957544148777 0 +33 35310 56.957544148777 0 +33 35338 57.224399269866 0 +33 35338 57.224399269866 0 +33 35346 57.224559269866 0 +33 35346 57.224559269866 0 +33 35358 57.231276162993 0 +33 35358 57.231276162993 0 +33 35363 57.231436162993 0 +33 35363 57.231436162993 0 +33 35386 57.257384147466 0 +33 35386 57.257384147466 0 +33 35394 57.257544147466 0 +33 35394 57.257544147466 0 +33 35422 57.524399274423 0 +33 35422 57.524399274423 0 +33 35430 57.524559274423 0 +33 35430 57.524559274423 0 +33 35442 57.531276162993 0 +33 35442 57.531276162993 0 +33 35447 57.531436162993 0 +33 35447 57.531436162993 0 +33 35469 57.557384146735 0 +33 35469 57.557384146735 0 +33 35473 57.557544146735 0 +33 35473 57.557544146735 0 +33 35506 57.824399278835 0 +33 35506 57.824399278835 0 +33 35514 57.824559278835 0 +33 35514 57.824559278835 0 +33 35526 57.831276162993 0 +33 35526 57.831276162993 0 +33 35531 57.831436162993 0 +33 35531 57.831436162993 0 +33 35553 57.857384146402 0 +33 35553 57.857384146402 0 +33 35557 57.857544146402 0 +33 35557 57.857544146402 0 +33 35590 58.124399283976 0 +33 35590 58.124399283976 0 +33 35598 58.124559283976 0 +33 35598 58.124559283976 0 +33 35610 58.131276162993 0 +33 35610 58.131276162993 0 +33 35615 58.131436162993 0 +33 35615 58.131436162993 0 +33 35637 58.157384147163 0 +33 35637 58.157384147163 0 +33 35641 58.157544147163 0 +33 35641 58.157544147163 0 +33 35674 58.424399289901 0 +33 35674 58.424399289901 0 +33 35682 58.424559289901 0 +33 35682 58.424559289901 0 +33 35694 58.431276162993 0 +33 35694 58.431276162993 0 +33 35699 58.431436162993 0 +33 35699 58.431436162993 0 +33 35721 58.457384148999 0 +33 35721 58.457384148999 0 +33 35725 58.457544148999 0 +33 35725 58.457544148999 0 +33 35758 58.724399296596 0 +33 35758 58.724399296596 0 +33 35766 58.724559296596 0 +33 35766 58.724559296596 0 +33 35778 58.731276162993 0 +33 35778 58.731276162993 0 +33 35783 58.731436162993 0 +33 35783 58.731436162993 0 +33 35805 58.757384151953 0 +33 35805 58.757384151953 0 +33 35809 58.757544151953 0 +33 35809 58.757544151953 0 +33 35842 59.024399304148 0 +33 35842 59.024399304148 0 +33 35850 59.024559304148 0 +33 35850 59.024559304148 0 +33 35862 59.031276162993 0 +33 35862 59.031276162993 0 +33 35867 59.031436162993 0 +33 35867 59.031436162993 0 +33 35889 59.057384156076 0 +33 35889 59.057384156076 0 +33 35893 59.057544156076 0 +33 35893 59.057544156076 0 +33 35926 59.324399312582 0 +33 35926 59.324399312582 0 +33 35934 59.324559312582 0 +33 35934 59.324559312582 0 +33 35946 59.331276162993 0 +33 35946 59.331276162993 0 +33 35951 59.331436162993 0 +33 35951 59.331436162993 0 +33 35973 59.357384161385 0 +33 35973 59.357384161385 0 +33 35977 59.357544161385 0 +33 35977 59.357544161385 0 +33 36010 59.624399321918 0 +33 36010 59.624399321918 0 +33 36018 59.624559321918 0 +33 36018 59.624559321918 0 +33 36030 59.631276162993 0 +33 36030 59.631276162993 0 +33 36035 59.631436162993 0 +33 36035 59.631436162993 0 +33 36057 59.657384167848 0 +33 36057 59.657384167848 0 +33 36061 59.657544167848 0 +33 36061 59.657544167848 0 +33 36094 59.924399332192 0 +33 36094 59.924399332192 0 +33 36102 59.924559332192 0 +33 36102 59.924559332192 0 +33 36114 59.931276162993 0 +33 36114 59.931276162993 0 +33 36119 59.931436162993 0 +33 36119 59.931436162993 0 +33 36141 59.957384175485 0 +33 36141 59.957384175485 0 +33 36145 59.957544175485 0 +33 36145 59.957544175485 0 +33 36194 60.231276162993 0 +33 36194 60.231276162993 0 +33 36199 60.231436162993 0 +33 36199 60.231436162993 0 +33 36217 60.257384184183 0 +33 36217 60.257384184183 0 +33 36221 60.257544184183 0 +33 36221 60.257544184183 0 +33 36270 60.531276162993 0 +33 36270 60.531276162993 0 +33 36275 60.531436162993 0 +33 36275 60.531436162993 0 +33 36293 60.557384193582 0 +33 36293 60.557384193582 0 +33 36297 60.557544193582 0 +33 36297 60.557544193582 0 +33 36346 60.831276162993 0 +33 36346 60.831276162993 0 +33 36351 60.831436162993 0 +33 36351 60.831436162993 0 +33 36369 60.857384203546 0 +33 36369 60.857384203546 0 +33 36373 60.857544203546 0 +33 36373 60.857544203546 0 +33 36422 61.131276162993 0 +33 36422 61.131276162993 0 +33 36427 61.131436162993 0 +33 36427 61.131436162993 0 +33 36445 61.157384214046 0 +33 36445 61.157384214046 0 +33 36449 61.157544214046 0 +33 36449 61.157544214046 0 +33 36498 61.431276162993 0 +33 36498 61.431276162993 0 +33 36503 61.431436162993 0 +33 36503 61.431436162993 0 +33 36521 61.457384224953 0 +33 36521 61.457384224953 0 +33 36525 61.457544224953 0 +33 36525 61.457544224953 0 +33 36574 61.731276162993 0 +33 36574 61.731276162993 0 +33 36579 61.731436162993 0 +33 36579 61.731436162993 0 +33 36597 61.757384236307 0 +33 36597 61.757384236307 0 +33 36601 61.757544236307 0 +33 36601 61.757544236307 0 +33 36650 62.031276162993 0 +33 36650 62.031276162993 0 +33 36655 62.031436162993 0 +33 36655 62.031436162993 0 +33 36673 62.057384248207 0 +33 36673 62.057384248207 0 +33 36677 62.057544248207 0 +33 36677 62.057544248207 0 +33 36726 62.331276162993 0 +33 36726 62.331276162993 0 +33 36731 62.331436162993 0 +33 36731 62.331436162993 0 +33 36749 62.357384260662 0 +33 36749 62.357384260662 0 +33 36753 62.357544260662 0 +33 36753 62.357544260662 0 +33 36802 62.631276162993 0 +33 36802 62.631276162993 0 +33 36807 62.631436162993 0 +33 36807 62.631436162993 0 +33 36825 62.657384273497 0 +33 36825 62.657384273497 0 +33 36829 62.657544273497 0 +33 36829 62.657544273497 0 +33 36878 62.931276162993 0 +33 36878 62.931276162993 0 +33 36883 62.931436162993 0 +33 36883 62.931436162993 0 +33 36901 62.957384286646 0 +33 36901 62.957384286646 0 +33 36905 62.957544286646 0 +33 36905 62.957544286646 0 +34 151 3.21471740282 82 +34 175 3.257544424448 82 +34 211 3.514717399314 82 +34 259 3.557544424342 82 +34 295 3.81471739499 82 +34 343 3.857544424025 82 +34 381 4.11471739006 82 +34 437 4.157544423703 82 +34 478 4.414717384462 82 +34 534 4.457544423373 82 +34 560 4.54415363691 82 +34 597 4.714717378402 82 +34 653 4.757544423069 82 +34 679 4.844153636799 82 +34 716 5.014717371745 82 +34 772 5.057544422748 82 +34 805 5.144153636284 82 +34 845 5.31471736441 82 +34 905 5.357544422438 82 +34 939 5.444153635357 82 +34 979 5.614717356527 82 +34 1039 5.657544422133 82 +34 1097 5.744153634123 82 +34 1137 5.914717347995 82 +34 1197 5.957544421828 82 +34 1255 6.044153632613 82 +34 1303 6.214717338841 82 +34 1375 6.257544421526 82 +34 1437 6.344153630796 82 +34 1486 6.514717329163 82 +34 1514 6.524558906174 82 +34 1592 6.557544421227 82 +34 1654 6.644153628669 82 +34 1703 6.81471731881 82 +34 1731 6.824558906154 82 +34 1809 6.857544420921 82 +34 1871 6.944153626289 82 +34 1920 7.114717307827 82 +34 1948 7.124558906151 82 +34 2026 7.157544420615 82 +34 2088 7.244153623629 82 +34 2137 7.414717296389 82 +34 2165 7.424558906139 82 +34 2243 7.45754442031 82 +34 2305 7.544153620729 82 +34 2354 7.714717284487 82 +34 2382 7.72455890614 82 +34 2460 7.757544420012 82 +34 2522 7.844153617626 82 +34 2571 8.014717271989 82 +34 2599 8.024558906138 82 +34 2677 8.057544419724 82 +34 2739 8.144153614294 82 +34 2788 8.314717258778 82 +34 2816 8.324558906149 82 +34 2898 8.357544419443 82 +34 2960 8.444153610746 82 +34 3013 8.614717244982 82 +34 3041 8.624558906137 82 +34 3123 8.657544419152 82 +34 3185 8.74415360708 82 +34 3233 8.91471723058 82 +34 3266 8.924558906106 82 +34 3348 8.957544418855 82 +34 3410 9.044153603305 82 +34 3458 9.214717215656 82 +34 3491 9.224558906123 82 +34 3573 9.257544418583 82 +34 3635 9.344153599436 82 +34 3683 9.514717200231 82 +34 3716 9.524558906117 82 +34 3798 9.557544418309 82 +34 3860 9.644153595572 82 +34 3908 9.814717184553 82 +34 3941 9.824558906116 82 +34 4023 9.857544418037 82 +34 4085 9.944153591684 82 +34 4133 10.114717168884 82 +34 4166 10.124558906115 82 +34 4248 10.15754441777 82 +34 4310 10.244153587823 82 +34 4358 10.414717153241 82 +34 4391 10.424558906104 82 +34 4473 10.457544417494 82 +34 4535 10.544153584071 82 +34 4587 10.7147171376 82 +34 4624 10.724558906116 82 +34 4706 10.757544417221 82 +34 4768 10.844153580594 82 +34 4820 11.014717121962 82 +34 4857 11.024558906108 82 +34 4939 11.057544416961 82 +34 5001 11.1441535782 82 +34 5053 11.314717106356 82 +34 5090 11.324558906123 82 +34 5172 11.357544416695 82 +34 5234 11.444153576825 82 +34 5286 11.614717090743 82 +34 5323 11.624558906133 82 +34 5409 11.657544416441 82 +34 5438 11.693746259603 82 +34 5475 11.744153576355 82 +34 5527 11.914717075093 82 +34 5564 11.924558906131 82 +34 5650 11.957544416181 82 +34 5679 11.993746257957 82 +34 5716 12.044153576682 82 +34 5768 12.214717059446 82 +34 5805 12.22455890615 82 +34 5891 12.25754441593 82 +34 5920 12.293746256438 82 +34 5957 12.344153577342 82 +34 6009 12.514717043815 82 +34 6046 12.524558906142 82 +34 6132 12.557544415683 82 +34 6161 12.593746255105 82 +34 6198 12.644153578007 82 +34 6250 12.814717028193 82 +34 6287 12.824558906145 82 +34 6373 12.857544415431 82 +34 6402 12.893746254045 82 +34 6439 12.944153578695 82 +34 6491 13.114717012525 82 +34 6528 13.124558906128 82 +34 6614 13.157544415176 82 +34 6643 13.193746253273 82 +34 6680 13.244153579376 82 +34 6732 13.414716996915 82 +34 6769 13.424558906138 82 +34 6855 13.45754441494 82 +34 6884 13.493746252758 82 +34 6921 13.544153580057 82 +34 6973 13.714716981296 82 +34 7010 13.724558906143 82 +34 7096 13.75754441469 82 +34 7125 13.793746252521 82 +34 7162 13.844153580742 82 +34 7209 14.014716965625 82 +34 7251 14.024558906136 82 +34 7337 14.057544414442 82 +34 7366 14.093746252556 82 +34 7403 14.144153581436 82 +34 7450 14.314716950015 82 +34 7492 14.324558906149 82 +34 7578 14.357544414212 82 +34 7607 14.393746252856 82 +34 7644 14.444153582121 82 +34 7691 14.614716934427 82 +34 7733 14.624558906139 82 +34 7819 14.657544413973 82 +34 7848 14.693746253132 82 +34 7885 14.744153582821 82 +34 7932 14.914716918856 82 +34 7974 14.924558906135 82 +34 8060 14.957544413742 82 +34 8089 14.993746247233 82 +34 8126 15.044153583523 82 +34 8173 15.214716903292 82 +34 8215 15.22455890612 82 +34 8301 15.257544413499 82 +34 8330 15.293746234372 82 +34 8367 15.344153584234 82 +34 8414 15.514716887741 82 +34 8456 15.524558906129 82 +34 8542 15.557544413279 82 +34 8571 15.59374622109 82 +34 8608 15.644153584927 82 +34 8655 15.814716872317 82 +34 8697 15.82455890615 82 +34 8783 15.857544413074 82 +34 8812 15.893746207767 82 +34 8849 15.944153585623 82 +34 8896 16.114716856962 82 +34 8942 16.124558906134 82 +34 9028 16.157544412841 82 +34 9057 16.19374619447 82 +34 9098 16.244153586344 82 +34 9145 16.414716841879 82 +34 9191 16.42455890611 82 +34 9277 16.457544412619 82 +34 9306 16.493746182941 82 +34 9347 16.544153587061 82 +34 9394 16.714716827831 82 +34 9440 16.72455890611 82 +34 9526 16.757544412406 82 +34 9555 16.793746174099 82 +34 9596 16.844153587769 82 +34 9643 17.01471682019 82 +34 9684 17.024558906114 82 +34 9775 17.057544412189 82 +34 9809 17.093746167963 82 +34 9850 17.144153588488 82 +34 9892 17.314716829071 82 +34 9933 17.324558906121 82 +34 10019 17.357544411975 82 +34 10058 17.393746164536 82 +34 10099 17.44415358921 82 +34 10141 17.614716843292 82 +34 10182 17.624558906125 82 +34 10268 17.657544411748 82 +34 10307 17.693746163751 82 +34 10348 17.744153589932 82 +34 10390 17.914716858379 82 +34 10427 17.924558906139 82 +34 10513 17.957544411544 82 +34 10548 17.993746163742 82 +34 10589 18.044153590647 82 +34 10631 18.214716873732 82 +34 10668 18.22455890616 82 +34 10750 18.257544411348 82 +34 10785 18.29374616373 82 +34 10826 18.344153591375 82 +34 10864 18.514716889096 82 +34 10901 18.524558906161 82 +34 10983 18.557544411139 82 +34 11018 18.593746163725 82 +34 11059 18.64415359211 82 +34 11097 18.814716899317 82 +34 11134 18.824558906157 82 +34 11216 18.857544410943 82 +34 11251 18.893746163718 82 +34 11292 18.944153592844 82 +34 11330 19.114716905927 82 +34 11367 19.124558906156 82 +34 11449 19.157544410755 82 +34 11484 19.193746163706 82 +34 11525 19.244153593591 82 +34 11563 19.414716913869 82 +34 11600 19.424558906135 82 +34 11682 19.457544410552 82 +34 11717 19.49374616371 82 +34 11758 19.544153594392 82 +34 11796 19.714716923553 82 +34 11833 19.724558906093 82 +34 11915 19.757544409991 82 +34 11950 19.793746163688 82 +34 11991 19.844153595698 82 +34 12029 20.014716934723 82 +34 12070 20.024558905916 82 +34 12152 20.057544408842 82 +34 12191 20.0937461637 82 +34 12232 20.144153597547 82 +34 12270 20.314716946995 82 +34 12311 20.324558905745 82 +34 12393 20.357544407512 82 +34 12432 20.393746163659 82 +34 12473 20.444153599834 82 +34 12511 20.614716960156 82 +34 12552 20.624558905622 82 +34 12634 20.6575444061 82 +34 12673 20.693746163661 82 +34 12714 20.744153602682 82 +34 12752 20.914716974042 82 +34 12793 20.924558905643 82 +34 12875 20.957544404581 82 +34 12914 20.993746163701 82 +34 12955 21.044153605975 82 +34 12993 21.214716988437 82 +34 13034 21.22455890572 82 +34 13116 21.257544403056 82 +34 13155 21.293746163789 82 +34 13196 21.344153609822 82 +34 13234 21.514717003324 82 +34 13275 21.524558905746 82 +34 13357 21.557544401467 82 +34 13396 21.593746163828 82 +34 13437 21.644153614218 82 +34 13475 21.814717018645 82 +34 13516 21.82455890573 82 +34 13598 21.857544399784 82 +34 13637 21.893746163871 82 +34 13678 21.944153619248 82 +34 13716 22.114717034351 82 +34 13757 22.124558905663 82 +34 13839 22.157544398008 82 +34 13878 22.193746163915 82 +34 13919 22.244153624898 82 +34 13957 22.414717050412 82 +34 13998 22.424558905574 82 +34 14080 22.45754439623 82 +34 14119 22.493746164003 82 +34 14160 22.544153631141 82 +34 14198 22.714717066832 82 +34 14239 22.724558905447 82 +34 14321 22.757544394544 82 +34 14360 22.793746164046 82 +34 14401 22.844153638109 82 +34 14439 23.014717083564 82 +34 14480 23.024558905315 82 +34 14562 23.057544392975 82 +34 14601 23.093746164045 82 +34 14642 23.144153645806 82 +34 14680 23.314717100631 82 +34 14721 23.324558905056 82 +34 14803 23.357544391504 82 +34 14842 23.393746164071 82 +34 14883 23.444153653987 82 +34 14921 23.614717118038 82 +34 14962 23.624558904843 82 +34 15044 23.657544390261 82 +34 15083 23.693746164114 82 +34 15124 23.744153657373 82 +34 15162 23.914717135739 82 +34 15203 23.924558904623 82 +34 15285 23.957544389283 82 +34 15324 23.993746164088 82 +34 15365 24.044153663161 82 +34 15403 24.214717153664 82 +34 15444 24.224558904516 82 +34 15531 24.257544388584 82 +34 15565 24.293746163925 82 +34 15606 24.344153674356 82 +34 15644 24.51471717198 82 +34 15685 24.52455890444 82 +34 15772 24.557544388126 82 +34 15806 24.59374616382 82 +34 15847 24.644153686393 82 +34 15885 24.814717190662 82 +34 15926 24.824558904207 82 +34 16013 24.857544387996 82 +34 16047 24.893746163833 82 +34 16088 24.944153699252 82 +34 16126 25.114717209682 82 +34 16167 25.124558903459 82 +34 16254 25.15754438831 82 +34 16288 25.19374616381 82 +34 16329 25.244153712907 82 +34 16367 25.414717228959 82 +34 16408 25.424558902138 82 +34 16495 25.457544389027 82 +34 16529 25.493746163787 82 +34 16570 25.544153727372 82 +34 16613 25.714717248637 82 +34 16649 25.724558900217 82 +34 16736 25.757544390233 82 +34 16770 25.793746163731 82 +34 16811 25.844153742406 82 +34 16854 26.014717267922 82 +34 16890 26.024558899074 82 +34 16977 26.057544392844 82 +34 17011 26.093746162311 82 +34 17052 26.1441537566 82 +34 17095 26.314717286443 82 +34 17131 26.324558899192 82 +34 17218 26.357544397031 82 +34 17252 26.39374615939 82 +34 17293 26.444153769777 82 +34 17336 26.614717304195 82 +34 17372 26.624558900705 82 +34 17459 26.657544402378 82 +34 17493 26.693746155151 82 +34 17534 26.744153781976 82 +34 17577 26.914717321211 82 +34 17613 26.924558903552 82 +34 17700 26.957544408394 82 +34 17734 26.993746149522 82 +34 17775 27.0441537932 82 +34 17818 27.214717337437 82 +34 17850 27.224558907162 82 +34 17933 27.257544414219 82 +34 17967 27.293746142554 82 +34 18008 27.344153803466 82 +34 18051 27.514717353353 82 +34 18083 27.524558910114 82 +34 18166 27.557544419423 82 +34 18200 27.593746134917 82 +34 18241 27.644153814 82 +34 18284 27.814717366584 82 +34 18316 27.824558911978 82 +34 18399 27.857544421103 82 +34 18433 27.893746127086 82 +34 18474 27.944153821662 82 +34 18517 28.114717372208 82 +34 18549 28.124558921331 82 +34 18632 28.157544422655 82 +34 18666 28.193746110531 82 +34 18707 28.244153818775 82 +34 18750 28.414717379085 82 +34 18782 28.424558936132 82 +34 18865 28.457544430961 82 +34 18899 28.493746087782 82 +34 18940 28.544153814768 82 +34 18983 28.714717386825 82 +34 19015 28.724558950517 82 +34 19098 28.757544440171 82 +34 19127 28.793746063963 82 +34 19173 28.844153810621 82 +34 19216 29.014717394729 82 +34 19248 29.024558956074 82 +34 19352 29.093746039541 82 +34 19398 29.144153806384 82 +34 19446 29.314717402851 82 +34 19473 29.324558958617 82 +34 19577 29.393746014641 82 +34 19623 29.444153802196 82 +34 19671 29.614717411175 82 +34 19698 29.624558960906 82 +34 19802 29.6937459893 82 +34 19848 29.74415379804 82 +34 19896 29.914717419712 82 +34 19923 29.924558963158 82 +34 20027 29.993745963286 82 +34 20073 30.04415379379 82 +34 20121 30.214717428417 82 +34 20148 30.224558965468 82 +34 20252 30.293745936581 82 +34 20298 30.344153789518 82 +34 20351 30.514717437361 82 +34 20373 30.524558967804 82 +34 20477 30.59374590925 82 +34 20523 30.644153785288 82 +34 20571 30.814717446582 82 +34 20598 30.824558970242 82 +34 20702 30.89374588135 82 +34 20748 30.94415378118 82 +34 20796 31.114717456231 82 +34 20823 31.124558972755 82 +34 20926 31.193745853113 82 +34 20981 31.244153777587 82 +34 21029 31.414717466338 82 +34 21056 31.424558975275 82 +34 21159 31.493745824854 82 +34 21214 31.544153774618 82 +34 21262 31.714717476938 82 +34 21289 31.724558977789 82 +34 21392 31.793745796622 82 +34 21447 31.844153772319 82 +34 21495 32.014717487942 82 +34 21522 32.024558980316 82 +34 21625 32.093745768404 82 +34 21680 32.144153770659 82 +34 21728 32.314717499402 82 +34 21755 32.324558982748 82 +34 21858 32.393745740167 82 +34 21913 32.444153769753 82 +34 21961 32.614717511219 82 +34 21988 32.624558985247 82 +34 22091 32.693745711913 82 +34 22146 32.74415376948 82 +34 22194 32.914717523456 82 +34 22221 32.924558987742 82 +34 22324 32.993745683676 82 +34 22379 33.044153769896 82 +34 22427 33.214717536006 82 +34 22454 33.224558990236 82 +34 22557 33.293745655474 82 +34 22612 33.344153770985 82 +34 22660 33.514717548915 82 +34 22687 33.524558992733 82 +34 22790 33.593745627277 82 +34 22845 33.644153772782 82 +34 22893 33.814717562144 82 +34 22916 33.82455899523 82 +34 23019 33.893745599183 82 +34 23063 33.944153775237 82 +34 23125 34.124558997755 82 +34 23221 34.244153778327 82 +34 23283 34.424559000269 82 +34 23379 34.544153782072 82 +34 23441 34.724559002779 82 +34 23537 34.844153786489 82 +34 23599 35.02455900524 82 +34 23695 35.144153791503 82 +34 23761 35.32455900778 82 +34 23861 35.444153797136 82 +34 23927 35.624559010314 82 +34 24027 35.744153803331 82 +34 24093 35.924559012824 82 +34 24193 36.044153810134 82 +34 24259 36.224559015304 82 +34 24359 36.344153817527 82 +34 24425 36.524559017802 82 +34 24525 36.644153825454 82 +34 24591 36.824559020283 82 +34 24691 36.944153833942 82 +34 24757 37.124559022747 82 +34 24862 37.244153841675 82 +34 24923 37.424559025229 82 +34 25028 37.54415384071 82 +34 25089 37.724559027708 82 +34 25194 37.844153832964 82 +34 25255 38.024559030169 82 +34 25360 38.144153825758 82 +34 25421 38.324559032643 82 +34 25526 38.44415381973 82 +34 25587 38.624559035134 82 +34 25692 38.744153814907 82 +34 25753 38.924559037653 82 +34 25858 39.044153811322 82 +34 25919 39.224559040102 82 +34 26024 39.344153808998 82 +34 26085 39.524559042597 82 +34 26190 39.644153807943 82 +34 26251 39.824559045083 82 +34 26356 39.944153808167 82 +34 26417 40.124559047608 82 +34 26522 40.244153809672 82 +34 26583 40.424559050085 82 +34 26688 40.544153812444 82 +34 26749 40.72455905259 82 +34 26858 40.844153816458 82 +34 26923 41.024559055027 82 +34 27032 41.144153821716 82 +34 27097 41.324559057542 82 +34 27206 41.444153828168 82 +34 27271 41.62455906007 82 +34 27380 41.744153835789 82 +34 27445 41.924559062611 82 +34 27554 42.044153844221 82 +34 27619 42.224559065158 82 +34 27733 42.344153853216 82 +34 27793 42.524559067719 82 +34 27907 42.644153862563 82 +34 27967 42.824559070171 82 +34 28081 42.944153872107 82 +34 28141 43.124559072679 82 +34 28255 43.244153881734 82 +34 28315 43.424559075168 82 +34 28429 43.544153891273 82 +34 28489 43.724559077694 82 +34 28603 43.844153900664 82 +34 28663 44.024559080215 82 +34 28777 44.144153909788 82 +34 28837 44.324559082695 82 +34 29003 44.624559085153 82 +34 29169 44.924559087671 82 +34 29335 45.224559090114 82 +34 29501 45.524559092613 82 +34 29667 45.824559095152 82 +34 29833 46.124559098204 82 +34 29999 46.424559105752 82 +34 30165 46.724559119111 82 +34 30331 47.02455913369 82 +34 30497 47.3245591485 82 +34 30663 47.624559163475 82 +34 30834 47.924559178648 82 +34 31005 48.224559193917 82 +34 31171 48.524559209372 82 +34 31337 48.824559224983 82 +34 31503 49.124559240703 82 +34 31669 49.424559256502 82 +34 31835 49.724559261494 82 +34 32001 50.02455926103 82 +34 32167 50.324559260569 82 +34 32333 50.624559260125 82 +34 32499 50.924559259692 82 +34 32661 51.224559259255 82 +34 32819 51.524559258837 82 +34 32880 51.557544429561 82 +34 32985 51.824559258432 82 +34 33046 51.857544410523 82 +34 33151 52.124559258035 82 +34 33212 52.157544391469 82 +34 33317 52.424559257631 82 +34 33378 52.45754437236 82 +34 33483 52.724559257249 82 +34 33544 52.75754435334 82 +34 33649 53.024559256872 82 +34 33710 53.057544334363 82 +34 33790 53.324559256501 82 +34 33846 53.357544316044 82 +34 33917 53.624559256146 82 +34 33973 53.657544298598 82 +34 34044 53.924559255807 82 +34 34100 53.95754428203 82 +34 34171 54.224559255474 82 +34 34227 54.257544266324 82 +34 34298 54.52455925514 82 +34 34354 54.557544251324 82 +34 34425 54.824559254865 82 +34 34481 54.857544236279 82 +34 34552 55.124559254758 82 +34 34608 55.157544221704 82 +34 34679 55.424559254821 82 +34 34735 55.45754420776 82 +34 34806 55.724559255052 82 +34 34862 55.757544194465 82 +34 34933 56.024559255468 82 +34 34989 56.05754418177 82 +34 35060 56.324559256088 82 +34 35116 56.357544169733 82 +34 35179 56.624559256836 82 +34 35227 56.657544157873 82 +34 35263 56.924559261596 82 +34 35311 56.957544148777 82 +34 35347 57.224559269866 82 +34 35395 57.257544147466 82 +34 35431 57.524559274423 82 +34 35474 57.557544146735 82 +34 35515 57.824559278835 82 +34 35558 57.857544146402 82 +34 35599 58.124559283976 82 +34 35642 58.157544147163 82 +34 35683 58.424559289901 82 +34 35726 58.457544148999 82 +34 35767 58.724559296596 82 +34 35810 58.757544151953 82 +34 35851 59.024559304148 82 +34 35894 59.057544156076 82 +34 35935 59.324559312582 82 +34 35978 59.357544161385 82 +34 36019 59.624559321918 82 +34 36062 59.657544167848 82 +34 36103 59.924559332192 82 +34 36146 59.957544175485 82 +34 36222 60.257544184183 82 +34 36298 60.557544193582 82 +34 36374 60.857544203546 82 +34 36450 61.157544214046 82 +34 36526 61.457544224953 82 +34 36602 61.757544236307 82 +34 36678 62.057544248207 82 +34 36754 62.357544260662 82 +34 36830 62.657544273497 82 +34 36906 62.957544286646 82 +35 151 3.21471740282 82 +35 175 3.257544424448 82 +35 211 3.514717399314 82 +35 259 3.557544424342 82 +35 295 3.81471739499 82 +35 343 3.857544424025 82 +35 381 4.11471739006 82 +35 437 4.157544423703 82 +35 478 4.414717384462 82 +35 534 4.457544423373 82 +35 560 4.54415363691 82 +35 597 4.714717378402 82 +35 653 4.757544423069 82 +35 679 4.844153636799 82 +35 716 5.014717371745 82 +35 772 5.057544422748 82 +35 805 5.144153636284 82 +35 845 5.31471736441 82 +35 905 5.357544422438 82 +35 939 5.444153635357 82 +35 979 5.614717356527 82 +35 1039 5.657544422133 82 +35 1097 5.744153634123 82 +35 1137 5.914717347995 82 +35 1197 5.957544421828 82 +35 1255 6.044153632613 82 +35 1303 6.214717338841 82 +35 1375 6.257544421526 82 +35 1437 6.344153630796 82 +35 1486 6.514717329163 82 +35 1514 6.524558906174 82 +35 1592 6.557544421227 82 +35 1654 6.644153628669 82 +35 1703 6.81471731881 82 +35 1731 6.824558906154 82 +35 1809 6.857544420921 82 +35 1871 6.944153626289 82 +35 1920 7.114717307827 82 +35 1948 7.124558906151 82 +35 2026 7.157544420615 82 +35 2088 7.244153623629 82 +35 2137 7.414717296389 82 +35 2165 7.424558906139 82 +35 2243 7.45754442031 82 +35 2305 7.544153620729 82 +35 2354 7.714717284487 82 +35 2382 7.72455890614 82 +35 2460 7.757544420012 82 +35 2522 7.844153617626 82 +35 2571 8.014717271989 82 +35 2599 8.024558906138 82 +35 2677 8.057544419724 82 +35 2739 8.144153614294 82 +35 2788 8.314717258778 82 +35 2816 8.324558906149 82 +35 2898 8.357544419443 82 +35 2960 8.444153610746 82 +35 3013 8.614717244982 82 +35 3041 8.624558906137 82 +35 3123 8.657544419152 82 +35 3185 8.74415360708 82 +35 3233 8.91471723058 82 +35 3266 8.924558906106 82 +35 3348 8.957544418855 82 +35 3410 9.044153603305 82 +35 3458 9.214717215656 82 +35 3491 9.224558906123 82 +35 3573 9.257544418583 82 +35 3635 9.344153599436 82 +35 3683 9.514717200231 82 +35 3716 9.524558906117 82 +35 3798 9.557544418309 82 +35 3860 9.644153595572 82 +35 3908 9.814717184553 82 +35 3941 9.824558906116 82 +35 4023 9.857544418037 82 +35 4085 9.944153591684 82 +35 4133 10.114717168884 82 +35 4166 10.124558906115 82 +35 4248 10.15754441777 82 +35 4310 10.244153587823 82 +35 4358 10.414717153241 82 +35 4391 10.424558906104 82 +35 4473 10.457544417494 82 +35 4535 10.544153584071 82 +35 4587 10.7147171376 82 +35 4624 10.724558906116 82 +35 4706 10.757544417221 82 +35 4768 10.844153580594 82 +35 4820 11.014717121962 82 +35 4857 11.024558906108 82 +35 4939 11.057544416961 82 +35 5001 11.1441535782 82 +35 5053 11.314717106356 82 +35 5090 11.324558906123 82 +35 5172 11.357544416695 82 +35 5234 11.444153576825 82 +35 5286 11.614717090743 82 +35 5323 11.624558906133 82 +35 5409 11.657544416441 82 +35 5438 11.693746259603 82 +35 5475 11.744153576355 82 +35 5527 11.914717075093 82 +35 5564 11.924558906131 82 +35 5650 11.957544416181 82 +35 5679 11.993746257957 82 +35 5716 12.044153576682 82 +35 5768 12.214717059446 82 +35 5805 12.22455890615 82 +35 5891 12.25754441593 82 +35 5920 12.293746256438 82 +35 5957 12.344153577342 82 +35 6009 12.514717043815 82 +35 6046 12.524558906142 82 +35 6132 12.557544415683 82 +35 6161 12.593746255105 82 +35 6198 12.644153578007 82 +35 6250 12.814717028193 82 +35 6287 12.824558906145 82 +35 6373 12.857544415431 82 +35 6402 12.893746254045 82 +35 6439 12.944153578695 82 +35 6491 13.114717012525 82 +35 6528 13.124558906128 82 +35 6614 13.157544415176 82 +35 6643 13.193746253273 82 +35 6680 13.244153579376 82 +35 6732 13.414716996915 82 +35 6769 13.424558906138 82 +35 6855 13.45754441494 82 +35 6884 13.493746252758 82 +35 6921 13.544153580057 82 +35 6973 13.714716981296 82 +35 7010 13.724558906143 82 +35 7096 13.75754441469 82 +35 7125 13.793746252521 82 +35 7162 13.844153580742 82 +35 7209 14.014716965625 82 +35 7251 14.024558906136 82 +35 7337 14.057544414442 82 +35 7366 14.093746252556 82 +35 7403 14.144153581436 82 +35 7450 14.314716950015 82 +35 7492 14.324558906149 82 +35 7578 14.357544414212 82 +35 7607 14.393746252856 82 +35 7644 14.444153582121 82 +35 7691 14.614716934427 82 +35 7733 14.624558906139 82 +35 7819 14.657544413973 82 +35 7848 14.693746253132 82 +35 7885 14.744153582821 82 +35 7932 14.914716918856 82 +35 7974 14.924558906135 82 +35 8060 14.957544413742 82 +35 8089 14.993746247233 82 +35 8126 15.044153583523 82 +35 8173 15.214716903292 82 +35 8215 15.22455890612 82 +35 8301 15.257544413499 82 +35 8330 15.293746234372 82 +35 8367 15.344153584234 82 +35 8414 15.514716887741 82 +35 8456 15.524558906129 82 +35 8542 15.557544413279 82 +35 8571 15.59374622109 82 +35 8608 15.644153584927 82 +35 8655 15.814716872317 82 +35 8697 15.82455890615 82 +35 8783 15.857544413074 82 +35 8812 15.893746207767 82 +35 8849 15.944153585623 82 +35 8896 16.114716856962 82 +35 8942 16.124558906134 82 +35 9028 16.157544412841 82 +35 9057 16.19374619447 82 +35 9098 16.244153586344 82 +35 9145 16.414716841879 82 +35 9191 16.42455890611 82 +35 9277 16.457544412619 82 +35 9306 16.493746182941 82 +35 9347 16.544153587061 82 +35 9394 16.714716827831 82 +35 9440 16.72455890611 82 +35 9526 16.757544412406 82 +35 9555 16.793746174099 82 +35 9596 16.844153587769 82 +35 9643 17.01471682019 82 +35 9684 17.024558906114 82 +35 9775 17.057544412189 82 +35 9809 17.093746167963 82 +35 9850 17.144153588488 82 +35 9892 17.314716829071 82 +35 9933 17.324558906121 82 +35 10019 17.357544411975 82 +35 10058 17.393746164536 82 +35 10099 17.44415358921 82 +35 10141 17.614716843292 82 +35 10182 17.624558906125 82 +35 10268 17.657544411748 82 +35 10307 17.693746163751 82 +35 10348 17.744153589932 82 +35 10390 17.914716858379 82 +35 10427 17.924558906139 82 +35 10513 17.957544411544 82 +35 10548 17.993746163742 82 +35 10589 18.044153590647 82 +35 10631 18.214716873732 82 +35 10668 18.22455890616 82 +35 10750 18.257544411348 82 +35 10785 18.29374616373 82 +35 10826 18.344153591375 82 +35 10864 18.514716889096 82 +35 10901 18.524558906161 82 +35 10983 18.557544411139 82 +35 11018 18.593746163725 82 +35 11059 18.64415359211 82 +35 11097 18.814716899317 82 +35 11134 18.824558906157 82 +35 11216 18.857544410943 82 +35 11251 18.893746163718 82 +35 11292 18.944153592844 82 +35 11330 19.114716905927 82 +35 11367 19.124558906156 82 +35 11449 19.157544410755 82 +35 11484 19.193746163706 82 +35 11525 19.244153593591 82 +35 11563 19.414716913869 82 +35 11600 19.424558906135 82 +35 11682 19.457544410552 82 +35 11717 19.49374616371 82 +35 11758 19.544153594392 82 +35 11796 19.714716923553 82 +35 11833 19.724558906093 82 +35 11915 19.757544409991 82 +35 11950 19.793746163688 82 +35 11991 19.844153595698 82 +35 12029 20.014716934723 82 +35 12070 20.024558905916 82 +35 12152 20.057544408842 82 +35 12191 20.0937461637 82 +35 12232 20.144153597547 82 +35 12270 20.314716946995 82 +35 12311 20.324558905745 82 +35 12393 20.357544407512 82 +35 12432 20.393746163659 82 +35 12473 20.444153599834 82 +35 12511 20.614716960156 82 +35 12552 20.624558905622 82 +35 12634 20.6575444061 82 +35 12673 20.693746163661 82 +35 12714 20.744153602682 82 +35 12752 20.914716974042 82 +35 12793 20.924558905643 82 +35 12875 20.957544404581 82 +35 12914 20.993746163701 82 +35 12955 21.044153605975 82 +35 12993 21.214716988437 82 +35 13034 21.22455890572 82 +35 13116 21.257544403056 82 +35 13155 21.293746163789 82 +35 13196 21.344153609822 82 +35 13234 21.514717003324 82 +35 13275 21.524558905746 82 +35 13357 21.557544401467 82 +35 13396 21.593746163828 82 +35 13437 21.644153614218 82 +35 13475 21.814717018645 82 +35 13516 21.82455890573 82 +35 13598 21.857544399784 82 +35 13637 21.893746163871 82 +35 13678 21.944153619248 82 +35 13716 22.114717034351 82 +35 13757 22.124558905663 82 +35 13839 22.157544398008 82 +35 13878 22.193746163915 82 +35 13919 22.244153624898 82 +35 13957 22.414717050412 82 +35 13998 22.424558905574 82 +35 14080 22.45754439623 82 +35 14119 22.493746164003 82 +35 14160 22.544153631141 82 +35 14198 22.714717066832 82 +35 14239 22.724558905447 82 +35 14321 22.757544394544 82 +35 14360 22.793746164046 82 +35 14401 22.844153638109 82 +35 14439 23.014717083564 82 +35 14480 23.024558905315 82 +35 14562 23.057544392975 82 +35 14601 23.093746164045 82 +35 14642 23.144153645806 82 +35 14680 23.314717100631 82 +35 14721 23.324558905056 82 +35 14803 23.357544391504 82 +35 14842 23.393746164071 82 +35 14883 23.444153653987 82 +35 14921 23.614717118038 82 +35 14962 23.624558904843 82 +35 15044 23.657544390261 82 +35 15083 23.693746164114 82 +35 15124 23.744153657373 82 +35 15162 23.914717135739 82 +35 15203 23.924558904623 82 +35 15285 23.957544389283 82 +35 15324 23.993746164088 82 +35 15365 24.044153663161 82 +35 15403 24.214717153664 82 +35 15444 24.224558904516 82 +35 15531 24.257544388584 82 +35 15565 24.293746163925 82 +35 15606 24.344153674356 82 +35 15644 24.51471717198 82 +35 15685 24.52455890444 82 +35 15772 24.557544388126 82 +35 15806 24.59374616382 82 +35 15847 24.644153686393 82 +35 15885 24.814717190662 82 +35 15926 24.824558904207 82 +35 16013 24.857544387996 82 +35 16047 24.893746163833 82 +35 16088 24.944153699252 82 +35 16126 25.114717209682 82 +35 16167 25.124558903459 82 +35 16254 25.15754438831 82 +35 16288 25.19374616381 82 +35 16329 25.244153712907 82 +35 16367 25.414717228959 82 +35 16408 25.424558902138 82 +35 16495 25.457544389027 82 +35 16529 25.493746163787 82 +35 16570 25.544153727372 82 +35 16613 25.714717248637 82 +35 16649 25.724558900217 82 +35 16736 25.757544390233 82 +35 16770 25.793746163731 82 +35 16811 25.844153742406 82 +35 16854 26.014717267922 82 +35 16890 26.024558899074 82 +35 16977 26.057544392844 82 +35 17011 26.093746162311 82 +35 17052 26.1441537566 82 +35 17095 26.314717286443 82 +35 17131 26.324558899192 82 +35 17218 26.357544397031 82 +35 17252 26.39374615939 82 +35 17293 26.444153769777 82 +35 17336 26.614717304195 82 +35 17372 26.624558900705 82 +35 17459 26.657544402378 82 +35 17493 26.693746155151 82 +35 17534 26.744153781976 82 +35 17577 26.914717321211 82 +35 17613 26.924558903552 82 +35 17700 26.957544408394 82 +35 17734 26.993746149522 82 +35 17775 27.0441537932 82 +35 17818 27.214717337437 82 +35 17850 27.224558907162 82 +35 17933 27.257544414219 82 +35 17967 27.293746142554 82 +35 18008 27.344153803466 82 +35 18051 27.514717353353 82 +35 18083 27.524558910114 82 +35 18166 27.557544419423 82 +35 18200 27.593746134917 82 +35 18241 27.644153814 82 +35 18284 27.814717366584 82 +35 18316 27.824558911978 82 +35 18399 27.857544421103 82 +35 18433 27.893746127086 82 +35 18474 27.944153821662 82 +35 18517 28.114717372208 82 +35 18549 28.124558921331 82 +35 18632 28.157544422655 82 +35 18666 28.193746110531 82 +35 18707 28.244153818775 82 +35 18750 28.414717379085 82 +35 18782 28.424558936132 82 +35 18865 28.457544430961 82 +35 18899 28.493746087782 82 +35 18940 28.544153814768 82 +35 18983 28.714717386825 82 +35 19015 28.724558950517 82 +35 19098 28.757544440171 82 +35 19127 28.793746063963 82 +35 19173 28.844153810621 82 +35 19216 29.014717394729 82 +35 19248 29.024558956074 82 +35 19352 29.093746039541 82 +35 19398 29.144153806384 82 +35 19446 29.314717402851 82 +35 19473 29.324558958617 82 +35 19577 29.393746014641 82 +35 19623 29.444153802196 82 +35 19671 29.614717411175 82 +35 19698 29.624558960906 82 +35 19802 29.6937459893 82 +35 19848 29.74415379804 82 +35 19896 29.914717419712 82 +35 19923 29.924558963158 82 +35 20027 29.993745963286 82 +35 20073 30.04415379379 82 +35 20121 30.214717428417 82 +35 20148 30.224558965468 82 +35 20252 30.293745936581 82 +35 20298 30.344153789518 82 +35 20351 30.514717437361 82 +35 20373 30.524558967804 82 +35 20477 30.59374590925 82 +35 20523 30.644153785288 82 +35 20571 30.814717446582 82 +35 20598 30.824558970242 82 +35 20702 30.89374588135 82 +35 20748 30.94415378118 82 +35 20796 31.114717456231 82 +35 20823 31.124558972755 82 +35 20926 31.193745853113 82 +35 20981 31.244153777587 82 +35 21029 31.414717466338 82 +35 21056 31.424558975275 82 +35 21159 31.493745824854 82 +35 21214 31.544153774618 82 +35 21262 31.714717476938 82 +35 21289 31.724558977789 82 +35 21392 31.793745796622 82 +35 21447 31.844153772319 82 +35 21495 32.014717487942 82 +35 21522 32.024558980316 82 +35 21625 32.093745768404 82 +35 21680 32.144153770659 82 +35 21728 32.314717499402 82 +35 21755 32.324558982748 82 +35 21858 32.393745740167 82 +35 21913 32.444153769753 82 +35 21961 32.614717511219 82 +35 21988 32.624558985247 82 +35 22091 32.693745711913 82 +35 22146 32.74415376948 82 +35 22194 32.914717523456 82 +35 22221 32.924558987742 82 +35 22324 32.993745683676 82 +35 22379 33.044153769896 82 +35 22427 33.214717536006 82 +35 22454 33.224558990236 82 +35 22557 33.293745655474 82 +35 22612 33.344153770985 82 +35 22660 33.514717548915 82 +35 22687 33.524558992733 82 +35 22790 33.593745627277 82 +35 22845 33.644153772782 82 +35 22893 33.814717562144 82 +35 22916 33.82455899523 82 +35 23019 33.893745599183 82 +35 23063 33.944153775237 82 +35 23125 34.124558997755 82 +35 23221 34.244153778327 82 +35 23283 34.424559000269 82 +35 23379 34.544153782072 82 +35 23441 34.724559002779 82 +35 23537 34.844153786489 82 +35 23599 35.02455900524 82 +35 23695 35.144153791503 82 +35 23761 35.32455900778 82 +35 23861 35.444153797136 82 +35 23927 35.624559010314 82 +35 24027 35.744153803331 82 +35 24093 35.924559012824 82 +35 24193 36.044153810134 82 +35 24259 36.224559015304 82 +35 24359 36.344153817527 82 +35 24425 36.524559017802 82 +35 24525 36.644153825454 82 +35 24591 36.824559020283 82 +35 24691 36.944153833942 82 +35 24757 37.124559022747 82 +35 24862 37.244153841675 82 +35 24923 37.424559025229 82 +35 25028 37.54415384071 82 +35 25089 37.724559027708 82 +35 25194 37.844153832964 82 +35 25255 38.024559030169 82 +35 25360 38.144153825758 82 +35 25421 38.324559032643 82 +35 25526 38.44415381973 82 +35 25587 38.624559035134 82 +35 25692 38.744153814907 82 +35 25753 38.924559037653 82 +35 25858 39.044153811322 82 +35 25919 39.224559040102 82 +35 26024 39.344153808998 82 +35 26085 39.524559042597 82 +35 26190 39.644153807943 82 +35 26251 39.824559045083 82 +35 26356 39.944153808167 82 +35 26417 40.124559047608 82 +35 26522 40.244153809672 82 +35 26583 40.424559050085 82 +35 26688 40.544153812444 82 +35 26749 40.72455905259 82 +35 26858 40.844153816458 82 +35 26923 41.024559055027 82 +35 27032 41.144153821716 82 +35 27097 41.324559057542 82 +35 27206 41.444153828168 82 +35 27271 41.62455906007 82 +35 27380 41.744153835789 82 +35 27445 41.924559062611 82 +35 27554 42.044153844221 82 +35 27619 42.224559065158 82 +35 27733 42.344153853216 82 +35 27793 42.524559067719 82 +35 27907 42.644153862563 82 +35 27967 42.824559070171 82 +35 28081 42.944153872107 82 +35 28141 43.124559072679 82 +35 28255 43.244153881734 82 +35 28315 43.424559075168 82 +35 28429 43.544153891273 82 +35 28489 43.724559077694 82 +35 28603 43.844153900664 82 +35 28663 44.024559080215 82 +35 28777 44.144153909788 82 +35 28837 44.324559082695 82 +35 29003 44.624559085153 82 +35 29169 44.924559087671 82 +35 29335 45.224559090114 82 +35 29501 45.524559092613 82 +35 29667 45.824559095152 82 +35 29833 46.124559098204 82 +35 29999 46.424559105752 82 +35 30165 46.724559119111 82 +35 30331 47.02455913369 82 +35 30497 47.3245591485 82 +35 30663 47.624559163475 82 +35 30834 47.924559178648 82 +35 31005 48.224559193917 82 +35 31171 48.524559209372 82 +35 31337 48.824559224983 82 +35 31503 49.124559240703 82 +35 31669 49.424559256502 82 +35 31835 49.724559261494 82 +35 32001 50.02455926103 82 +35 32167 50.324559260569 82 +35 32333 50.624559260125 82 +35 32499 50.924559259692 82 +35 32661 51.224559259255 82 +35 32819 51.524559258837 82 +35 32880 51.557544429561 82 +35 32985 51.824559258432 82 +35 33046 51.857544410523 82 +35 33151 52.124559258035 82 +35 33212 52.157544391469 82 +35 33317 52.424559257631 82 +35 33378 52.45754437236 82 +35 33483 52.724559257249 82 +35 33544 52.75754435334 82 +35 33649 53.024559256872 82 +35 33710 53.057544334363 82 +35 33790 53.324559256501 82 +35 33846 53.357544316044 82 +35 33917 53.624559256146 82 +35 33973 53.657544298598 82 +35 34044 53.924559255807 82 +35 34100 53.95754428203 82 +35 34171 54.224559255474 82 +35 34227 54.257544266324 82 +35 34298 54.52455925514 82 +35 34354 54.557544251324 82 +35 34425 54.824559254865 82 +35 34481 54.857544236279 82 +35 34552 55.124559254758 82 +35 34608 55.157544221704 82 +35 34679 55.424559254821 82 +35 34735 55.45754420776 82 +35 34806 55.724559255052 82 +35 34862 55.757544194465 82 +35 34933 56.024559255468 82 +35 34989 56.05754418177 82 +35 35060 56.324559256088 82 +35 35116 56.357544169733 82 +35 35179 56.624559256836 82 +35 35227 56.657544157873 82 +35 35263 56.924559261596 82 +35 35311 56.957544148777 82 +35 35347 57.224559269866 82 +35 35395 57.257544147466 82 +35 35431 57.524559274423 82 +35 35474 57.557544146735 82 +35 35515 57.824559278835 82 +35 35558 57.857544146402 82 +35 35599 58.124559283976 82 +35 35642 58.157544147163 82 +35 35683 58.424559289901 82 +35 35726 58.457544148999 82 +35 35767 58.724559296596 82 +35 35810 58.757544151953 82 +35 35851 59.024559304148 82 +35 35894 59.057544156076 82 +35 35935 59.324559312582 82 +35 35978 59.357544161385 82 +35 36019 59.624559321918 82 +35 36062 59.657544167848 82 +35 36103 59.924559332192 82 +35 36146 59.957544175485 82 +35 36222 60.257544184183 82 +35 36298 60.557544193582 82 +35 36374 60.857544203546 82 +35 36450 61.157544214046 82 +35 36526 61.457544224953 82 +35 36602 61.757544236307 82 +35 36678 62.057544248207 82 +35 36754 62.357544260662 82 +35 36830 62.657544273497 82 +35 36906 62.957544286646 82 +36 219 3.531276162993 82 +36 303 3.831276162993 82 +36 390 4.131276162993 82 +36 487 4.431276162993 82 +36 606 4.731276162993 82 +36 725 5.031276162993 82 +36 855 5.331276162993 82 +36 989 5.631276162993 82 +36 1147 5.931276162993 82 +36 1313 6.231276162993 82 +36 1529 6.531276162993 82 +36 1746 6.831276162993 82 +36 1963 7.131276162993 82 +36 2180 7.431276162993 82 +36 2397 7.731276162993 82 +36 2614 8.031276162993 82 +36 2835 8.331276162993 82 +36 3060 8.631276162993 82 +36 3285 8.931276162993 82 +36 3510 9.231276162993 82 +36 3735 9.531276162993 82 +36 3960 9.831276162993 82 +36 4185 10.131276162993 82 +36 4410 10.431276162993 82 +36 4643 10.731276162993 82 +36 4876 11.031276162993 82 +36 5109 11.331276162993 82 +36 5342 11.631276162993 82 +36 5583 11.931276162993 82 +36 5824 12.231276162993 82 +36 6065 12.531276162993 82 +36 6306 12.831276162993 82 +36 6547 13.131276162993 82 +36 6788 13.431276162993 82 +36 7029 13.731276162993 82 +36 7270 14.031276162993 82 +36 7511 14.331276162993 82 +36 7752 14.631276162993 82 +36 7993 14.931276162993 82 +36 8234 15.231276162993 82 +36 8475 15.531276162993 82 +36 8716 15.831276162993 82 +36 8961 16.131276162993 82 +36 9210 16.431276162993 82 +36 9459 16.731276162993 82 +36 9708 17.031276162993 82 +36 9957 17.331276162993 82 +36 10206 17.631276162993 82 +36 10451 17.931276162993 82 +36 10688 18.231276162993 82 +36 10921 18.531276162993 82 +36 11154 18.831276162993 82 +36 11387 19.131276162993 82 +36 11620 19.431276162993 82 +36 11853 19.731276162993 82 +36 12090 20.031276162993 82 +36 12331 20.331276162993 82 +36 12572 20.631276162993 82 +36 12813 20.931276162993 82 +36 13054 21.231276162993 82 +36 13295 21.531276162993 82 +36 13536 21.831276162993 82 +36 13777 22.131276162993 82 +36 14018 22.431276162993 82 +36 14259 22.731276162993 82 +36 14500 23.031276162993 82 +36 14741 23.331276162993 82 +36 14982 23.631276162993 82 +36 15223 23.931276162993 82 +36 15464 24.231276162993 82 +36 15705 24.531276162993 82 +36 15946 24.831276162993 82 +36 16187 25.131276162993 82 +36 16428 25.431276162993 82 +36 16669 25.731276162993 82 +36 16910 26.031276162993 82 +36 17151 26.331276162993 82 +36 17392 26.631276162993 82 +36 17633 26.931276162993 82 +36 17866 27.231276162993 82 +36 18099 27.531276162993 82 +36 18332 27.831276162993 82 +36 18565 28.131276162993 82 +36 18798 28.431276162993 82 +36 19031 28.731276162993 82 +36 19264 29.031276162993 82 +36 19489 29.331276162993 82 +36 19714 29.631276162993 82 +36 19939 29.931276162993 82 +36 20164 30.231276162993 82 +36 20389 30.531276162993 82 +36 20614 30.831276162993 82 +36 20843 31.131276162993 82 +36 21076 31.431276162993 82 +36 21309 31.731276162993 82 +36 21542 32.031276162993 82 +36 21775 32.331276162993 82 +36 22008 32.631276162993 82 +36 22241 32.931276162993 82 +36 22474 33.231276162993 82 +36 22707 33.531276162993 82 +36 22936 33.831276162993 82 +36 23140 34.131276162993 82 +36 23298 34.431276162993 82 +36 23456 34.731276162993 82 +36 23614 35.031276162993 82 +36 23776 35.331276162993 82 +36 23942 35.631276162993 82 +36 24108 35.931276162993 82 +36 24274 36.231276162993 82 +36 24440 36.531276162993 82 +36 24606 36.831276162993 82 +36 24772 37.131276162993 82 +36 24938 37.431276162993 82 +36 25104 37.731276162993 82 +36 25270 38.031276162993 82 +36 25436 38.331276162993 82 +36 25602 38.631276162993 82 +36 25768 38.931276162993 82 +36 25934 39.231276162993 82 +36 26100 39.531276162993 82 +36 26266 39.831276162993 82 +36 26432 40.131276162993 82 +36 26598 40.431276162993 82 +36 26768 40.731276162993 82 +36 26942 41.031276162993 82 +36 27116 41.331276162993 82 +36 27290 41.631276162993 82 +36 27464 41.931276162993 82 +36 27638 42.231276162993 82 +36 27812 42.531276162993 82 +36 27986 42.831276162993 82 +36 28160 43.131276162993 82 +36 28334 43.431276162993 82 +36 28508 43.731276162993 82 +36 28682 44.031276162993 82 +36 28856 44.331276162993 82 +36 29022 44.631276162993 82 +36 29188 44.931276162993 82 +36 29354 45.231276162993 82 +36 29520 45.531276162993 82 +36 29686 45.831276162993 82 +36 29852 46.131276162993 82 +36 30018 46.431276162993 82 +36 30184 46.731276162993 82 +36 30350 47.031276162993 82 +36 30516 47.331276162993 82 +36 30682 47.631276162993 82 +36 30848 47.931276162993 82 +36 31014 48.231276162993 82 +36 31180 48.531276162993 82 +36 31346 48.831276162993 82 +36 31512 49.131276162993 82 +36 31678 49.431276162993 82 +36 31844 49.731276162993 82 +36 32010 50.031276162993 82 +36 32176 50.331276162993 82 +36 32342 50.631276162993 82 +36 32508 50.931276162993 82 +36 32670 51.231276162993 82 +36 32828 51.531276162993 82 +36 32994 51.831276162993 82 +36 33160 52.131276162993 82 +36 33326 52.431276162993 82 +36 33492 52.731276162993 82 +36 33658 53.031276162993 82 +36 33797 53.331276162993 82 +36 33924 53.631276162993 82 +36 34051 53.931276162993 82 +36 34178 54.231276162993 82 +36 34305 54.531276162993 82 +36 34432 54.831276162993 82 +36 34559 55.131276162993 82 +36 34686 55.431276162993 82 +36 34813 55.731276162993 82 +36 34940 56.031276162993 82 +36 35067 56.331276162993 82 +36 35186 56.631276162993 82 +36 35270 56.931276162993 82 +36 35354 57.231276162993 82 +36 35438 57.531276162993 82 +36 35522 57.831276162993 82 +36 35606 58.131276162993 82 +36 35690 58.431276162993 82 +36 35774 58.731276162993 82 +36 35858 59.031276162993 82 +36 35942 59.331276162993 82 +36 36026 59.631276162993 82 +36 36110 59.931276162993 82 +36 36190 60.231276162993 82 +36 36266 60.531276162993 82 +36 36342 60.831276162993 82 +36 36418 61.131276162993 82 +36 36494 61.431276162993 82 +36 36570 61.731276162993 82 +36 36646 62.031276162993 82 +36 36722 62.331276162993 82 +36 36798 62.631276162993 82 +36 36874 62.931276162993 82 +37 222 3.531276162993 82 +37 306 3.831276162993 82 +37 393 4.131276162993 82 +37 490 4.431276162993 82 +37 609 4.731276162993 82 +37 728 5.031276162993 82 +37 858 5.331276162993 82 +37 992 5.631276162993 82 +37 1150 5.931276162993 82 +37 1316 6.231276162993 82 +37 1532 6.531276162993 82 +37 1749 6.831276162993 82 +37 1966 7.131276162993 82 +37 2183 7.431276162993 82 +37 2400 7.731276162993 82 +37 2617 8.031276162993 82 +37 2838 8.331276162993 82 +37 3063 8.631276162993 82 +37 3288 8.931276162993 82 +37 3513 9.231276162993 82 +37 3738 9.531276162993 82 +37 3963 9.831276162993 82 +37 4188 10.131276162993 82 +37 4413 10.431276162993 82 +37 4646 10.731276162993 82 +37 4879 11.031276162993 82 +37 5112 11.331276162993 82 +37 5345 11.631276162993 82 +37 5586 11.931276162993 82 +37 5827 12.231276162993 82 +37 6068 12.531276162993 82 +37 6309 12.831276162993 82 +37 6550 13.131276162993 82 +37 6791 13.431276162993 82 +37 7032 13.731276162993 82 +37 7273 14.031276162993 82 +37 7514 14.331276162993 82 +37 7755 14.631276162993 82 +37 7996 14.931276162993 82 +37 8237 15.231276162993 82 +37 8478 15.531276162993 82 +37 8719 15.831276162993 82 +37 8964 16.131276162993 82 +37 9213 16.431276162993 82 +37 9462 16.731276162993 82 +37 9711 17.031276162993 82 +37 9960 17.331276162993 82 +37 10209 17.631276162993 82 +37 10454 17.931276162993 82 +37 10691 18.231276162993 82 +37 10924 18.531276162993 82 +37 11157 18.831276162993 82 +37 11390 19.131276162993 82 +37 11623 19.431276162993 82 +37 11856 19.731276162993 82 +37 12093 20.031276162993 82 +37 12334 20.331276162993 82 +37 12575 20.631276162993 82 +37 12816 20.931276162993 82 +37 13057 21.231276162993 82 +37 13298 21.531276162993 82 +37 13539 21.831276162993 82 +37 13780 22.131276162993 82 +37 14021 22.431276162993 82 +37 14262 22.731276162993 82 +37 14503 23.031276162993 82 +37 14744 23.331276162993 82 +37 14985 23.631276162993 82 +37 15226 23.931276162993 82 +37 15467 24.231276162993 82 +37 15708 24.531276162993 82 +37 15949 24.831276162993 82 +37 16190 25.131276162993 82 +37 16431 25.431276162993 82 +37 16672 25.731276162993 82 +37 16913 26.031276162993 82 +37 17154 26.331276162993 82 +37 17395 26.631276162993 82 +37 17636 26.931276162993 82 +37 17869 27.231276162993 82 +37 18102 27.531276162993 82 +37 18335 27.831276162993 82 +37 18568 28.131276162993 82 +37 18801 28.431276162993 82 +37 19034 28.731276162993 82 +37 19267 29.031276162993 82 +37 19492 29.331276162993 82 +37 19717 29.631276162993 82 +37 19942 29.931276162993 82 +37 20167 30.231276162993 82 +37 20392 30.531276162993 82 +37 20617 30.831276162993 82 +37 20846 31.131276162993 82 +37 21079 31.431276162993 82 +37 21312 31.731276162993 82 +37 21545 32.031276162993 82 +37 21778 32.331276162993 82 +37 22011 32.631276162993 82 +37 22244 32.931276162993 82 +37 22477 33.231276162993 82 +37 22710 33.531276162993 82 +37 22939 33.831276162993 82 +37 23143 34.131276162993 82 +37 23301 34.431276162993 82 +37 23459 34.731276162993 82 +37 23617 35.031276162993 82 +37 23779 35.331276162993 82 +37 23945 35.631276162993 82 +37 24111 35.931276162993 82 +37 24277 36.231276162993 82 +37 24443 36.531276162993 82 +37 24609 36.831276162993 82 +37 24775 37.131276162993 82 +37 24941 37.431276162993 82 +37 25107 37.731276162993 82 +37 25273 38.031276162993 82 +37 25439 38.331276162993 82 +37 25605 38.631276162993 82 +37 25771 38.931276162993 82 +37 25937 39.231276162993 82 +37 26103 39.531276162993 82 +37 26269 39.831276162993 82 +37 26435 40.131276162993 82 +37 26601 40.431276162993 82 +37 26771 40.731276162993 82 +37 26945 41.031276162993 82 +37 27119 41.331276162993 82 +37 27293 41.631276162993 82 +37 27467 41.931276162993 82 +37 27641 42.231276162993 82 +37 27815 42.531276162993 82 +37 27989 42.831276162993 82 +37 28163 43.131276162993 82 +37 28337 43.431276162993 82 +37 28511 43.731276162993 82 +37 28685 44.031276162993 82 +37 28859 44.331276162993 82 +37 29025 44.631276162993 82 +37 29191 44.931276162993 82 +37 29357 45.231276162993 82 +37 29523 45.531276162993 82 +37 29689 45.831276162993 82 +37 29855 46.131276162993 82 +37 30021 46.431276162993 82 +37 30187 46.731276162993 82 +37 30353 47.031276162993 82 +37 30519 47.331276162993 82 +37 30685 47.631276162993 82 +37 30851 47.931276162993 82 +37 31017 48.231276162993 82 +37 31183 48.531276162993 82 +37 31349 48.831276162993 82 +37 31515 49.131276162993 82 +37 31681 49.431276162993 82 +37 31847 49.731276162993 82 +37 32013 50.031276162993 82 +37 32179 50.331276162993 82 +37 32345 50.631276162993 82 +37 32511 50.931276162993 82 +37 32673 51.231276162993 82 +37 32831 51.531276162993 82 +37 32997 51.831276162993 82 +37 33163 52.131276162993 82 +37 33329 52.431276162993 82 +37 33495 52.731276162993 82 +37 33661 53.031276162993 82 +37 33800 53.331276162993 82 +37 33927 53.631276162993 82 +37 34054 53.931276162993 82 +37 34181 54.231276162993 82 +37 34308 54.531276162993 82 +37 34435 54.831276162993 82 +37 34562 55.131276162993 82 +37 34689 55.431276162993 82 +37 34816 55.731276162993 82 +37 34943 56.031276162993 82 +37 35070 56.331276162993 82 +37 35189 56.631276162993 82 +37 35273 56.931276162993 82 +37 35357 57.231276162993 82 +37 35441 57.531276162993 82 +37 35525 57.831276162993 82 +37 35609 58.131276162993 82 +37 35693 58.431276162993 82 +37 35777 58.731276162993 82 +37 35861 59.031276162993 82 +37 35945 59.331276162993 82 +37 36029 59.631276162993 82 +37 36113 59.931276162993 82 +37 36193 60.231276162993 82 +37 36269 60.531276162993 82 +37 36345 60.831276162993 82 +37 36421 61.131276162993 82 +37 36497 61.431276162993 82 +37 36573 61.731276162993 82 +37 36649 62.031276162993 82 +37 36725 62.331276162993 82 +37 36801 62.631276162993 82 +37 36877 62.931276162993 82 +38 223 3.531276162993 1 +38 224 3.531276162993 2 +38 227 3.531436162993 1 +38 228 3.531436162993 0 +38 307 3.831276162993 1 +38 308 3.831276162993 2 +38 311 3.831436162993 1 +38 312 3.831436162993 0 +38 394 4.131276162993 1 +38 395 4.131276162993 2 +38 399 4.131436162993 1 +38 400 4.131436162993 0 +38 491 4.431276162993 1 +38 492 4.431276162993 2 +38 496 4.431436162993 1 +38 497 4.431436162993 0 +38 610 4.731276162993 1 +38 611 4.731276162993 2 +38 615 4.731436162993 1 +38 616 4.731436162993 0 +38 729 5.031276162993 1 +38 730 5.031276162993 2 +38 734 5.031436162993 1 +38 735 5.031436162993 0 +38 859 5.331276162993 1 +38 860 5.331276162993 2 +38 865 5.331436162993 1 +38 866 5.331436162993 0 +38 993 5.631276162993 1 +38 994 5.631276162993 2 +38 999 5.631436162993 1 +38 1000 5.631436162993 0 +38 1151 5.931276162993 1 +38 1152 5.931276162993 2 +38 1157 5.931436162993 1 +38 1158 5.931436162993 0 +38 1317 6.231276162993 1 +38 1318 6.231276162993 2 +38 1324 6.231436162993 1 +38 1325 6.231436162993 0 +38 1533 6.531276162993 1 +38 1534 6.531276162993 2 +38 1540 6.531436162993 1 +38 1541 6.531436162993 0 +38 1750 6.831276162993 1 +38 1751 6.831276162993 2 +38 1757 6.831436162993 1 +38 1758 6.831436162993 0 +38 1967 7.131276162993 1 +38 1968 7.131276162993 2 +38 1974 7.131436162993 1 +38 1975 7.131436162993 0 +38 2184 7.431276162993 1 +38 2185 7.431276162993 2 +38 2191 7.431436162993 1 +38 2192 7.431436162993 0 +38 2401 7.731276162993 1 +38 2402 7.731276162993 2 +38 2408 7.731436162993 1 +38 2409 7.731436162993 0 +38 2618 8.031276162993 1 +38 2619 8.031276162993 2 +38 2625 8.031436162993 1 +38 2626 8.031436162993 0 +38 2839 8.331276162993 1 +38 2840 8.331276162993 2 +38 2846 8.331436162993 1 +38 2847 8.331436162993 0 +38 3064 8.631276162993 1 +38 3065 8.631276162993 2 +38 3071 8.631436162993 1 +38 3072 8.631436162993 0 +38 3289 8.931276162993 1 +38 3290 8.931276162993 2 +38 3296 8.931436162993 1 +38 3297 8.931436162993 0 +38 3514 9.231276162993 1 +38 3515 9.231276162993 2 +38 3521 9.231436162993 1 +38 3522 9.231436162993 0 +38 3739 9.531276162993 1 +38 3740 9.531276162993 2 +38 3746 9.531436162993 1 +38 3747 9.531436162993 0 +38 3964 9.831276162993 1 +38 3965 9.831276162993 2 +38 3971 9.831436162993 1 +38 3972 9.831436162993 0 +38 4189 10.131276162993 1 +38 4190 10.131276162993 2 +38 4196 10.131436162993 1 +38 4197 10.131436162993 0 +38 4414 10.431276162993 1 +38 4415 10.431276162993 2 +38 4421 10.431436162993 1 +38 4422 10.431436162993 0 +38 4647 10.731276162993 1 +38 4648 10.731276162993 2 +38 4654 10.731436162993 1 +38 4655 10.731436162993 0 +38 4880 11.031276162993 1 +38 4881 11.031276162993 2 +38 4887 11.031436162993 1 +38 4888 11.031436162993 0 +38 5113 11.331276162993 1 +38 5114 11.331276162993 2 +38 5120 11.331436162993 1 +38 5121 11.331436162993 0 +38 5346 11.631276162993 1 +38 5347 11.631276162993 2 +38 5353 11.631436162993 1 +38 5354 11.631436162993 0 +38 5587 11.931276162993 1 +38 5588 11.931276162993 2 +38 5594 11.931436162993 1 +38 5595 11.931436162993 0 +38 5828 12.231276162993 1 +38 5829 12.231276162993 2 +38 5835 12.231436162993 1 +38 5836 12.231436162993 0 +38 6069 12.531276162993 1 +38 6070 12.531276162993 2 +38 6076 12.531436162993 1 +38 6077 12.531436162993 0 +38 6310 12.831276162993 1 +38 6311 12.831276162993 2 +38 6317 12.831436162993 1 +38 6318 12.831436162993 0 +38 6551 13.131276162993 1 +38 6552 13.131276162993 2 +38 6558 13.131436162993 1 +38 6559 13.131436162993 0 +38 6792 13.431276162993 1 +38 6793 13.431276162993 2 +38 6799 13.431436162993 1 +38 6800 13.431436162993 0 +38 7033 13.731276162993 1 +38 7034 13.731276162993 2 +38 7040 13.731436162993 1 +38 7041 13.731436162993 0 +38 7274 14.031276162993 1 +38 7275 14.031276162993 2 +38 7281 14.031436162993 1 +38 7282 14.031436162993 0 +38 7515 14.331276162993 1 +38 7516 14.331276162993 2 +38 7522 14.331436162993 1 +38 7523 14.331436162993 0 +38 7756 14.631276162993 1 +38 7757 14.631276162993 2 +38 7763 14.631436162993 1 +38 7764 14.631436162993 0 +38 7997 14.931276162993 1 +38 7998 14.931276162993 2 +38 8004 14.931436162993 1 +38 8005 14.931436162993 0 +38 8238 15.231276162993 1 +38 8239 15.231276162993 2 +38 8245 15.231436162993 1 +38 8246 15.231436162993 0 +38 8479 15.531276162993 1 +38 8480 15.531276162993 2 +38 8486 15.531436162993 1 +38 8487 15.531436162993 0 +38 8720 15.831276162993 1 +38 8721 15.831276162993 2 +38 8727 15.831436162993 1 +38 8728 15.831436162993 0 +38 8965 16.131276162993 1 +38 8966 16.131276162993 2 +38 8972 16.131436162993 1 +38 8973 16.131436162993 0 +38 9214 16.431276162993 1 +38 9215 16.431276162993 2 +38 9221 16.431436162993 1 +38 9222 16.431436162993 0 +38 9463 16.731276162993 1 +38 9464 16.731276162993 2 +38 9470 16.731436162993 1 +38 9471 16.731436162993 0 +38 9712 17.031276162993 1 +38 9713 17.031276162993 2 +38 9719 17.031436162993 1 +38 9720 17.031436162993 0 +38 9961 17.331276162993 1 +38 9962 17.331276162993 2 +38 9968 17.331436162993 1 +38 9969 17.331436162993 0 +38 10210 17.631276162993 1 +38 10211 17.631276162993 2 +38 10217 17.631436162993 1 +38 10218 17.631436162993 0 +38 10455 17.931276162993 1 +38 10456 17.931276162993 2 +38 10462 17.931436162993 1 +38 10463 17.931436162993 0 +38 10692 18.231276162993 1 +38 10693 18.231276162993 2 +38 10699 18.231436162993 1 +38 10700 18.231436162993 0 +38 10925 18.531276162993 1 +38 10926 18.531276162993 2 +38 10932 18.531436162993 1 +38 10933 18.531436162993 0 +38 11158 18.831276162993 1 +38 11159 18.831276162993 2 +38 11165 18.831436162993 1 +38 11166 18.831436162993 0 +38 11391 19.131276162993 1 +38 11392 19.131276162993 2 +38 11398 19.131436162993 1 +38 11399 19.131436162993 0 +38 11624 19.431276162993 1 +38 11625 19.431276162993 2 +38 11631 19.431436162993 1 +38 11632 19.431436162993 0 +38 11857 19.731276162993 1 +38 11858 19.731276162993 2 +38 11864 19.731436162993 1 +38 11865 19.731436162993 0 +38 12094 20.031276162993 1 +38 12095 20.031276162993 2 +38 12101 20.031436162993 1 +38 12102 20.031436162993 0 +38 12335 20.331276162993 1 +38 12336 20.331276162993 2 +38 12342 20.331436162993 1 +38 12343 20.331436162993 0 +38 12576 20.631276162993 1 +38 12577 20.631276162993 2 +38 12583 20.631436162993 1 +38 12584 20.631436162993 0 +38 12817 20.931276162993 1 +38 12818 20.931276162993 2 +38 12824 20.931436162993 1 +38 12825 20.931436162993 0 +38 13058 21.231276162993 1 +38 13059 21.231276162993 2 +38 13065 21.231436162993 1 +38 13066 21.231436162993 0 +38 13299 21.531276162993 1 +38 13300 21.531276162993 2 +38 13306 21.531436162993 1 +38 13307 21.531436162993 0 +38 13540 21.831276162993 1 +38 13541 21.831276162993 2 +38 13547 21.831436162993 1 +38 13548 21.831436162993 0 +38 13781 22.131276162993 1 +38 13782 22.131276162993 2 +38 13788 22.131436162993 1 +38 13789 22.131436162993 0 +38 14022 22.431276162993 1 +38 14023 22.431276162993 2 +38 14029 22.431436162993 1 +38 14030 22.431436162993 0 +38 14263 22.731276162993 1 +38 14264 22.731276162993 2 +38 14270 22.731436162993 1 +38 14271 22.731436162993 0 +38 14504 23.031276162993 1 +38 14505 23.031276162993 2 +38 14511 23.031436162993 1 +38 14512 23.031436162993 0 +38 14745 23.331276162993 1 +38 14746 23.331276162993 2 +38 14752 23.331436162993 1 +38 14753 23.331436162993 0 +38 14986 23.631276162993 1 +38 14987 23.631276162993 2 +38 14993 23.631436162993 1 +38 14994 23.631436162993 0 +38 15227 23.931276162993 1 +38 15228 23.931276162993 2 +38 15234 23.931436162993 1 +38 15235 23.931436162993 0 +38 15468 24.231276162993 1 +38 15469 24.231276162993 2 +38 15475 24.231436162993 1 +38 15476 24.231436162993 0 +38 15709 24.531276162993 1 +38 15710 24.531276162993 2 +38 15716 24.531436162993 1 +38 15717 24.531436162993 0 +38 15950 24.831276162993 1 +38 15951 24.831276162993 2 +38 15957 24.831436162993 1 +38 15958 24.831436162993 0 +38 16191 25.131276162993 1 +38 16192 25.131276162993 2 +38 16198 25.131436162993 1 +38 16199 25.131436162993 0 +38 16432 25.431276162993 1 +38 16433 25.431276162993 2 +38 16439 25.431436162993 1 +38 16440 25.431436162993 0 +38 16673 25.731276162993 1 +38 16674 25.731276162993 2 +38 16680 25.731436162993 1 +38 16681 25.731436162993 0 +38 16914 26.031276162993 1 +38 16915 26.031276162993 2 +38 16921 26.031436162993 1 +38 16922 26.031436162993 0 +38 17155 26.331276162993 1 +38 17156 26.331276162993 2 +38 17162 26.331436162993 1 +38 17163 26.331436162993 0 +38 17396 26.631276162993 1 +38 17397 26.631276162993 2 +38 17403 26.631436162993 1 +38 17404 26.631436162993 0 +38 17637 26.931276162993 1 +38 17638 26.931276162993 2 +38 17644 26.931436162993 1 +38 17645 26.931436162993 0 +38 17870 27.231276162993 1 +38 17871 27.231276162993 2 +38 17877 27.231436162993 1 +38 17878 27.231436162993 0 +38 18103 27.531276162993 1 +38 18104 27.531276162993 2 +38 18110 27.531436162993 1 +38 18111 27.531436162993 0 +38 18336 27.831276162993 1 +38 18337 27.831276162993 2 +38 18343 27.831436162993 1 +38 18344 27.831436162993 0 +38 18569 28.131276162993 1 +38 18570 28.131276162993 2 +38 18576 28.131436162993 1 +38 18577 28.131436162993 0 +38 18802 28.431276162993 1 +38 18803 28.431276162993 2 +38 18809 28.431436162993 1 +38 18810 28.431436162993 0 +38 19035 28.731276162993 1 +38 19036 28.731276162993 2 +38 19042 28.731436162993 1 +38 19043 28.731436162993 0 +38 19268 29.031276162993 1 +38 19269 29.031276162993 2 +38 19275 29.031436162993 1 +38 19276 29.031436162993 0 +38 19493 29.331276162993 1 +38 19494 29.331276162993 2 +38 19500 29.331436162993 1 +38 19501 29.331436162993 0 +38 19718 29.631276162993 1 +38 19719 29.631276162993 2 +38 19725 29.631436162993 1 +38 19726 29.631436162993 0 +38 19943 29.931276162993 1 +38 19944 29.931276162993 2 +38 19950 29.931436162993 1 +38 19951 29.931436162993 0 +38 20168 30.231276162993 1 +38 20169 30.231276162993 2 +38 20175 30.231436162993 1 +38 20176 30.231436162993 0 +38 20393 30.531276162993 1 +38 20394 30.531276162993 2 +38 20400 30.531436162993 1 +38 20401 30.531436162993 0 +38 20618 30.831276162993 1 +38 20619 30.831276162993 2 +38 20625 30.831436162993 1 +38 20626 30.831436162993 0 +38 20847 31.131276162993 1 +38 20848 31.131276162993 2 +38 20854 31.131436162993 1 +38 20855 31.131436162993 0 +38 21080 31.431276162993 1 +38 21081 31.431276162993 2 +38 21087 31.431436162993 1 +38 21088 31.431436162993 0 +38 21313 31.731276162993 1 +38 21314 31.731276162993 2 +38 21320 31.731436162993 1 +38 21321 31.731436162993 0 +38 21546 32.031276162993 1 +38 21547 32.031276162993 2 +38 21553 32.031436162993 1 +38 21554 32.031436162993 0 +38 21779 32.331276162993 1 +38 21780 32.331276162993 2 +38 21786 32.331436162993 1 +38 21787 32.331436162993 0 +38 22012 32.631276162993 1 +38 22013 32.631276162993 2 +38 22019 32.631436162993 1 +38 22020 32.631436162993 0 +38 22245 32.931276162993 1 +38 22246 32.931276162993 2 +38 22252 32.931436162993 1 +38 22253 32.931436162993 0 +38 22478 33.231276162993 1 +38 22479 33.231276162993 2 +38 22485 33.231436162993 1 +38 22486 33.231436162993 0 +38 22711 33.531276162993 1 +38 22712 33.531276162993 2 +38 22718 33.531436162993 1 +38 22719 33.531436162993 0 +38 22940 33.831276162993 1 +38 22941 33.831276162993 2 +38 22947 33.831436162993 1 +38 22948 33.831436162993 0 +38 23144 34.131276162993 1 +38 23145 34.131276162993 2 +38 23150 34.131436162993 1 +38 23151 34.131436162993 0 +38 23302 34.431276162993 1 +38 23303 34.431276162993 2 +38 23308 34.431436162993 1 +38 23309 34.431436162993 0 +38 23460 34.731276162993 1 +38 23461 34.731276162993 2 +38 23466 34.731436162993 1 +38 23467 34.731436162993 0 +38 23618 35.031276162993 1 +38 23619 35.031276162993 2 +38 23624 35.031436162993 1 +38 23625 35.031436162993 0 +38 23780 35.331276162993 1 +38 23781 35.331276162993 2 +38 23786 35.331436162993 1 +38 23787 35.331436162993 0 +38 23946 35.631276162993 1 +38 23947 35.631276162993 2 +38 23952 35.631436162993 1 +38 23953 35.631436162993 0 +38 24112 35.931276162993 1 +38 24113 35.931276162993 2 +38 24118 35.931436162993 1 +38 24119 35.931436162993 0 +38 24278 36.231276162993 1 +38 24279 36.231276162993 2 +38 24284 36.231436162993 1 +38 24285 36.231436162993 0 +38 24444 36.531276162993 1 +38 24445 36.531276162993 2 +38 24450 36.531436162993 1 +38 24451 36.531436162993 0 +38 24610 36.831276162993 1 +38 24611 36.831276162993 2 +38 24616 36.831436162993 1 +38 24617 36.831436162993 0 +38 24776 37.131276162993 1 +38 24777 37.131276162993 2 +38 24782 37.131436162993 1 +38 24783 37.131436162993 0 +38 24942 37.431276162993 1 +38 24943 37.431276162993 2 +38 24948 37.431436162993 1 +38 24949 37.431436162993 0 +38 25108 37.731276162993 1 +38 25109 37.731276162993 2 +38 25114 37.731436162993 1 +38 25115 37.731436162993 0 +38 25274 38.031276162993 1 +38 25275 38.031276162993 2 +38 25280 38.031436162993 1 +38 25281 38.031436162993 0 +38 25440 38.331276162993 1 +38 25441 38.331276162993 2 +38 25446 38.331436162993 1 +38 25447 38.331436162993 0 +38 25606 38.631276162993 1 +38 25607 38.631276162993 2 +38 25612 38.631436162993 1 +38 25613 38.631436162993 0 +38 25772 38.931276162993 1 +38 25773 38.931276162993 2 +38 25778 38.931436162993 1 +38 25779 38.931436162993 0 +38 25938 39.231276162993 1 +38 25939 39.231276162993 2 +38 25944 39.231436162993 1 +38 25945 39.231436162993 0 +38 26104 39.531276162993 1 +38 26105 39.531276162993 2 +38 26110 39.531436162993 1 +38 26111 39.531436162993 0 +38 26270 39.831276162993 1 +38 26271 39.831276162993 2 +38 26276 39.831436162993 1 +38 26277 39.831436162993 0 +38 26436 40.131276162993 1 +38 26437 40.131276162993 2 +38 26442 40.131436162993 1 +38 26443 40.131436162993 0 +38 26602 40.431276162993 1 +38 26603 40.431276162993 2 +38 26608 40.431436162993 1 +38 26609 40.431436162993 0 +38 26772 40.731276162993 1 +38 26773 40.731276162993 2 +38 26778 40.731436162993 1 +38 26779 40.731436162993 0 +38 26946 41.031276162993 1 +38 26947 41.031276162993 2 +38 26952 41.031436162993 1 +38 26953 41.031436162993 0 +38 27120 41.331276162993 1 +38 27121 41.331276162993 2 +38 27126 41.331436162993 1 +38 27127 41.331436162993 0 +38 27294 41.631276162993 1 +38 27295 41.631276162993 2 +38 27300 41.631436162993 1 +38 27301 41.631436162993 0 +38 27468 41.931276162993 1 +38 27469 41.931276162993 2 +38 27474 41.931436162993 1 +38 27475 41.931436162993 0 +38 27642 42.231276162993 1 +38 27643 42.231276162993 2 +38 27648 42.231436162993 1 +38 27649 42.231436162993 0 +38 27816 42.531276162993 1 +38 27817 42.531276162993 2 +38 27822 42.531436162993 1 +38 27823 42.531436162993 0 +38 27990 42.831276162993 1 +38 27991 42.831276162993 2 +38 27996 42.831436162993 1 +38 27997 42.831436162993 0 +38 28164 43.131276162993 1 +38 28165 43.131276162993 2 +38 28170 43.131436162993 1 +38 28171 43.131436162993 0 +38 28338 43.431276162993 1 +38 28339 43.431276162993 2 +38 28344 43.431436162993 1 +38 28345 43.431436162993 0 +38 28512 43.731276162993 1 +38 28513 43.731276162993 2 +38 28518 43.731436162993 1 +38 28519 43.731436162993 0 +38 28686 44.031276162993 1 +38 28687 44.031276162993 2 +38 28692 44.031436162993 1 +38 28693 44.031436162993 0 +38 28860 44.331276162993 1 +38 28861 44.331276162993 2 +38 28866 44.331436162993 1 +38 28867 44.331436162993 0 +38 29026 44.631276162993 1 +38 29027 44.631276162993 2 +38 29032 44.631436162993 1 +38 29033 44.631436162993 0 +38 29192 44.931276162993 1 +38 29193 44.931276162993 2 +38 29198 44.931436162993 1 +38 29199 44.931436162993 0 +38 29358 45.231276162993 1 +38 29359 45.231276162993 2 +38 29364 45.231436162993 1 +38 29365 45.231436162993 0 +38 29524 45.531276162993 1 +38 29525 45.531276162993 2 +38 29530 45.531436162993 1 +38 29531 45.531436162993 0 +38 29690 45.831276162993 1 +38 29691 45.831276162993 2 +38 29696 45.831436162993 1 +38 29697 45.831436162993 0 +38 29856 46.131276162993 1 +38 29857 46.131276162993 2 +38 29862 46.131436162993 1 +38 29863 46.131436162993 0 +38 30022 46.431276162993 1 +38 30023 46.431276162993 2 +38 30028 46.431436162993 1 +38 30029 46.431436162993 0 +38 30188 46.731276162993 1 +38 30189 46.731276162993 2 +38 30194 46.731436162993 1 +38 30195 46.731436162993 0 +38 30354 47.031276162993 1 +38 30355 47.031276162993 2 +38 30360 47.031436162993 1 +38 30361 47.031436162993 0 +38 30520 47.331276162993 1 +38 30521 47.331276162993 2 +38 30526 47.331436162993 1 +38 30527 47.331436162993 0 +38 30686 47.631276162993 1 +38 30687 47.631276162993 2 +38 30692 47.631436162993 1 +38 30693 47.631436162993 0 +38 30852 47.931276162993 1 +38 30853 47.931276162993 2 +38 30858 47.931436162993 1 +38 30859 47.931436162993 0 +38 31018 48.231276162993 1 +38 31019 48.231276162993 2 +38 31024 48.231436162993 1 +38 31025 48.231436162993 0 +38 31184 48.531276162993 1 +38 31185 48.531276162993 2 +38 31190 48.531436162993 1 +38 31191 48.531436162993 0 +38 31350 48.831276162993 1 +38 31351 48.831276162993 2 +38 31356 48.831436162993 1 +38 31357 48.831436162993 0 +38 31516 49.131276162993 1 +38 31517 49.131276162993 2 +38 31522 49.131436162993 1 +38 31523 49.131436162993 0 +38 31682 49.431276162993 1 +38 31683 49.431276162993 2 +38 31688 49.431436162993 1 +38 31689 49.431436162993 0 +38 31848 49.731276162993 1 +38 31849 49.731276162993 2 +38 31854 49.731436162993 1 +38 31855 49.731436162993 0 +38 32014 50.031276162993 1 +38 32015 50.031276162993 2 +38 32020 50.031436162993 1 +38 32021 50.031436162993 0 +38 32180 50.331276162993 1 +38 32181 50.331276162993 2 +38 32186 50.331436162993 1 +38 32187 50.331436162993 0 +38 32346 50.631276162993 1 +38 32347 50.631276162993 2 +38 32352 50.631436162993 1 +38 32353 50.631436162993 0 +38 32512 50.931276162993 1 +38 32513 50.931276162993 2 +38 32518 50.931436162993 1 +38 32519 50.931436162993 0 +38 32674 51.231276162993 1 +38 32675 51.231276162993 2 +38 32680 51.231436162993 1 +38 32681 51.231436162993 0 +38 32832 51.531276162993 1 +38 32833 51.531276162993 2 +38 32838 51.531436162993 1 +38 32839 51.531436162993 0 +38 32998 51.831276162993 1 +38 32999 51.831276162993 2 +38 33004 51.831436162993 1 +38 33005 51.831436162993 0 +38 33164 52.131276162993 1 +38 33165 52.131276162993 2 +38 33170 52.131436162993 1 +38 33171 52.131436162993 0 +38 33330 52.431276162993 1 +38 33331 52.431276162993 2 +38 33336 52.431436162993 1 +38 33337 52.431436162993 0 +38 33496 52.731276162993 1 +38 33497 52.731276162993 2 +38 33502 52.731436162993 1 +38 33503 52.731436162993 0 +38 33662 53.031276162993 1 +38 33663 53.031276162993 2 +38 33668 53.031436162993 1 +38 33669 53.031436162993 0 +38 33801 53.331276162993 1 +38 33802 53.331276162993 2 +38 33806 53.331436162993 1 +38 33807 53.331436162993 0 +38 33928 53.631276162993 1 +38 33929 53.631276162993 2 +38 33933 53.631436162993 1 +38 33934 53.631436162993 0 +38 34055 53.931276162993 1 +38 34056 53.931276162993 2 +38 34060 53.931436162993 1 +38 34061 53.931436162993 0 +38 34182 54.231276162993 1 +38 34183 54.231276162993 2 +38 34187 54.231436162993 1 +38 34188 54.231436162993 0 +38 34309 54.531276162993 1 +38 34310 54.531276162993 2 +38 34314 54.531436162993 1 +38 34315 54.531436162993 0 +38 34436 54.831276162993 1 +38 34437 54.831276162993 2 +38 34441 54.831436162993 1 +38 34442 54.831436162993 0 +38 34563 55.131276162993 1 +38 34564 55.131276162993 2 +38 34568 55.131436162993 1 +38 34569 55.131436162993 0 +38 34690 55.431276162993 1 +38 34691 55.431276162993 2 +38 34695 55.431436162993 1 +38 34696 55.431436162993 0 +38 34817 55.731276162993 1 +38 34818 55.731276162993 2 +38 34822 55.731436162993 1 +38 34823 55.731436162993 0 +38 34944 56.031276162993 1 +38 34945 56.031276162993 2 +38 34949 56.031436162993 1 +38 34950 56.031436162993 0 +38 35071 56.331276162993 1 +38 35072 56.331276162993 2 +38 35076 56.331436162993 1 +38 35077 56.331436162993 0 +38 35190 56.631276162993 1 +38 35191 56.631276162993 2 +38 35194 56.631436162993 1 +38 35195 56.631436162993 0 +38 35274 56.931276162993 1 +38 35275 56.931276162993 2 +38 35278 56.931436162993 1 +38 35279 56.931436162993 0 +38 35358 57.231276162993 1 +38 35359 57.231276162993 2 +38 35362 57.231436162993 1 +38 35363 57.231436162993 0 +38 35442 57.531276162993 1 +38 35443 57.531276162993 2 +38 35446 57.531436162993 1 +38 35447 57.531436162993 0 +38 35526 57.831276162993 1 +38 35527 57.831276162993 2 +38 35530 57.831436162993 1 +38 35531 57.831436162993 0 +38 35610 58.131276162993 1 +38 35611 58.131276162993 2 +38 35614 58.131436162993 1 +38 35615 58.131436162993 0 +38 35694 58.431276162993 1 +38 35695 58.431276162993 2 +38 35698 58.431436162993 1 +38 35699 58.431436162993 0 +38 35778 58.731276162993 1 +38 35779 58.731276162993 2 +38 35782 58.731436162993 1 +38 35783 58.731436162993 0 +38 35862 59.031276162993 1 +38 35863 59.031276162993 2 +38 35866 59.031436162993 1 +38 35867 59.031436162993 0 +38 35946 59.331276162993 1 +38 35947 59.331276162993 2 +38 35950 59.331436162993 1 +38 35951 59.331436162993 0 +38 36030 59.631276162993 1 +38 36031 59.631276162993 2 +38 36034 59.631436162993 1 +38 36035 59.631436162993 0 +38 36114 59.931276162993 1 +38 36115 59.931276162993 2 +38 36118 59.931436162993 1 +38 36119 59.931436162993 0 +38 36194 60.231276162993 1 +38 36195 60.231276162993 2 +38 36198 60.231436162993 1 +38 36199 60.231436162993 0 +38 36270 60.531276162993 1 +38 36271 60.531276162993 2 +38 36274 60.531436162993 1 +38 36275 60.531436162993 0 +38 36346 60.831276162993 1 +38 36347 60.831276162993 2 +38 36350 60.831436162993 1 +38 36351 60.831436162993 0 +38 36422 61.131276162993 1 +38 36423 61.131276162993 2 +38 36426 61.131436162993 1 +38 36427 61.131436162993 0 +38 36498 61.431276162993 1 +38 36499 61.431276162993 2 +38 36502 61.431436162993 1 +38 36503 61.431436162993 0 +38 36574 61.731276162993 1 +38 36575 61.731276162993 2 +38 36578 61.731436162993 1 +38 36579 61.731436162993 0 +38 36650 62.031276162993 1 +38 36651 62.031276162993 2 +38 36654 62.031436162993 1 +38 36655 62.031436162993 0 +38 36726 62.331276162993 1 +38 36727 62.331276162993 2 +38 36730 62.331436162993 1 +38 36731 62.331436162993 0 +38 36802 62.631276162993 1 +38 36803 62.631276162993 2 +38 36806 62.631436162993 1 +38 36807 62.631436162993 0 +38 36878 62.931276162993 1 +38 36879 62.931276162993 2 +38 36882 62.931436162993 1 +38 36883 62.931436162993 0 +65 1262 6.1 0 +65 1262 6.1 2 +65 1499 6.524398582336 3 +65 1507 6.524558582336 2 +65 1716 6.824398582336 3 +65 1724 6.824558582336 2 +65 1933 7.124398582336 3 +65 1941 7.124558582336 2 +65 2150 7.424398582336 3 +65 2158 7.424558582336 2 +65 2367 7.724398582336 3 +65 2375 7.724558582336 2 +65 2584 8.024398582336 3 +65 2592 8.024558582336 2 +65 2801 8.324398582336 3 +65 2809 8.324558582336 2 +65 3026 8.624398582336 3 +65 3034 8.624558582336 2 +65 3251 8.924398582336 3 +65 3259 8.924558582336 2 +65 3476 9.224398582336 3 +65 3484 9.224558582336 2 +65 3701 9.524398582336 3 +65 3709 9.524558582336 2 +65 3926 9.824398582336 3 +65 3934 9.824558582336 2 +65 4151 10.124398582336 3 +65 4159 10.124558582336 2 +65 4376 10.424398582336 3 +65 4384 10.424558582336 2 +65 4609 10.724398582336 3 +65 4617 10.724558582336 2 +65 4842 11.024398582336 3 +65 4850 11.024558582336 2 +65 5075 11.324398582336 3 +65 5083 11.324558582336 2 +65 5308 11.624398582336 3 +65 5316 11.624558582336 2 +65 5549 11.924398582336 3 +65 5557 11.924558582336 2 +65 5790 12.224398582336 3 +65 5798 12.224558582336 2 +65 6031 12.524398582336 3 +65 6039 12.524558582336 2 +65 6272 12.824398582336 3 +65 6280 12.824558582336 2 +65 6513 13.124398582336 3 +65 6521 13.124558582336 2 +65 6754 13.424398582336 3 +65 6762 13.424558582336 2 +65 6995 13.724398582336 3 +65 7003 13.724558582336 2 +65 7236 14.024398582336 3 +65 7244 14.024558582336 2 +65 7477 14.324398582336 3 +65 7485 14.324558582336 2 +65 7718 14.624398582336 3 +65 7726 14.624558582336 2 +65 7959 14.924398582336 3 +65 7967 14.924558582336 2 +65 8200 15.224398582336 3 +65 8208 15.224558582336 2 +65 8441 15.524398582336 3 +65 8449 15.524558582336 2 +65 8682 15.824398582336 3 +65 8690 15.824558582336 2 +65 8927 16.124398582336 3 +65 8935 16.124558582336 2 +65 9176 16.424398582336 3 +65 9184 16.424558582336 2 +65 9425 16.724398582336 3 +65 9433 16.724558582336 2 +65 9674 17.024398582336 3 +65 9682 17.024558582336 2 +65 9923 17.324398582336 3 +65 9931 17.324558582336 2 +65 10172 17.624398582336 3 +65 10180 17.624558582336 2 +65 10417 17.924398582336 3 +65 10425 17.924558582336 2 +65 10658 18.224398582336 3 +65 10666 18.224558582336 2 +65 10891 18.524398582336 3 +65 10899 18.524558582336 2 +65 11124 18.824398582336 3 +65 11132 18.824558582336 2 +65 11357 19.124398582336 3 +65 11365 19.124558582336 2 +65 11590 19.424398582336 3 +65 11598 19.424558582336 2 +65 11823 19.724398582336 3 +65 11831 19.724558582336 2 +65 12060 20.024398582336 3 +65 12068 20.024558582336 2 +65 12301 20.324398582336 3 +65 12309 20.324558582336 2 +65 12542 20.624398582336 3 +65 12550 20.624558582336 2 +65 12783 20.924398582336 3 +65 12791 20.924558582336 2 +65 13024 21.224398582336 3 +65 13032 21.224558582336 2 +65 13265 21.524398582336 3 +65 13273 21.524558582336 2 +65 13506 21.824398582336 3 +65 13514 21.824558582336 2 +65 13747 22.124398582336 3 +65 13755 22.124558582336 2 +65 13988 22.424398582336 3 +65 13996 22.424558582336 2 +65 14229 22.724398582336 3 +65 14237 22.724558582336 2 +65 14470 23.024398582336 3 +65 14478 23.024558582336 2 +65 14711 23.324398582336 3 +65 14719 23.324558582336 2 +65 14952 23.624398582336 3 +65 14960 23.624558582336 2 +65 15193 23.924398582336 3 +65 15201 23.924558582336 2 +65 15434 24.224398582336 3 +65 15442 24.224558582336 2 +65 15675 24.524398582336 3 +65 15683 24.524558582336 2 +65 15916 24.824398582336 3 +65 15924 24.824558582336 2 +65 16157 25.124398582336 3 +65 16165 25.124558582336 2 +65 16398 25.424398582336 3 +65 16406 25.424558582336 2 +65 16639 25.724398582336 3 +65 16647 25.724558582336 2 +65 16880 26.024398582336 3 +65 16888 26.024558582336 2 +65 17121 26.324398582336 3 +65 17129 26.324558582336 2 +65 17362 26.624398582336 3 +65 17370 26.624558582336 2 +65 17603 26.924398582336 3 +65 17611 26.924558582336 2 +65 17840 27.224398582336 3 +65 17848 27.224558582336 2 +65 18073 27.524398582336 3 +65 18081 27.524558582336 2 +65 18306 27.824398582336 3 +65 18314 27.824558582336 2 +65 18539 28.124398582336 3 +65 18547 28.124558582336 2 +65 18772 28.424398582336 3 +65 18780 28.424558582336 2 +65 19005 28.724398582336 3 +65 19013 28.724558582336 2 +65 19238 29.024398582336 3 +65 19246 29.024558582336 2 +65 19463 29.324398582336 3 +65 19471 29.324558582336 2 +65 19688 29.624398582336 3 +65 19696 29.624558582336 2 +65 19913 29.924398582336 3 +65 19921 29.924558582336 2 +65 20138 30.224398582336 3 +65 20146 30.224558582336 2 +65 20363 30.524398582336 3 +65 20371 30.524558582336 2 +65 20588 30.824398582336 3 +65 20596 30.824558582336 2 +65 20813 31.124398582336 3 +65 20821 31.124558582336 2 +65 21046 31.424398582336 3 +65 21054 31.424558582336 2 +65 21279 31.724398582336 3 +65 21287 31.724558582336 2 +65 21512 32.024398582336 3 +65 21520 32.024558582336 2 +65 21745 32.324398582336 3 +65 21753 32.324558582336 2 +65 21978 32.624398582336 3 +65 21986 32.624558582336 2 +65 22211 32.924398582336 3 +65 22219 32.924558582336 2 +65 22444 33.224398582336 3 +65 22452 33.224558582336 2 +65 22677 33.524398582336 3 +65 22685 33.524558582336 2 +65 22906 33.824398582336 3 +65 22914 33.824558582336 2 +65 23116 34.124398582336 3 +65 23123 34.124558582336 2 +65 23274 34.424398582336 3 +65 23281 34.424558582336 2 +65 23432 34.724398582336 3 +65 23439 34.724558582336 2 +65 23590 35.024398582336 3 +65 23597 35.024558582336 2 +65 23752 35.324398582336 3 +65 23759 35.324558582336 2 +65 23918 35.624398582336 3 +65 23925 35.624558582336 2 +65 24084 35.924398582336 3 +65 24091 35.924558582336 2 +65 24250 36.224398582336 3 +65 24257 36.224558582336 2 +65 24416 36.524398582336 3 +65 24423 36.524558582336 2 +65 24582 36.824398582336 3 +65 24589 36.824558582336 2 +65 24748 37.124398582336 3 +65 24755 37.124558582336 2 +65 24914 37.424398582336 3 +65 24921 37.424558582336 2 +65 25080 37.724398582336 3 +65 25087 37.724558582336 2 +65 25246 38.024398582336 3 +65 25253 38.024558582336 2 +65 25412 38.324398582336 3 +65 25419 38.324558582336 2 +65 25578 38.624398582336 3 +65 25585 38.624558582336 2 +65 25744 38.924398582336 3 +65 25751 38.924558582336 2 +65 25910 39.224398582336 3 +65 25917 39.224558582336 2 +65 26076 39.524398582336 3 +65 26083 39.524558582336 2 +65 26242 39.824398582336 3 +65 26249 39.824558582336 2 +65 26408 40.124398582336 3 +65 26415 40.124558582336 2 +65 26574 40.424398582336 3 +65 26581 40.424558582336 2 +65 26740 40.724398582336 3 +65 26747 40.724558582336 2 +65 26914 41.024398582336 3 +65 26921 41.024558582336 2 +65 27088 41.324398582336 3 +65 27095 41.324558582336 2 +65 27262 41.624398582336 3 +65 27269 41.624558582336 2 +65 27436 41.924398582336 3 +65 27443 41.924558582336 2 +65 27610 42.224398582336 3 +65 27617 42.224558582336 2 +65 27784 42.524398582336 3 +65 27791 42.524558582336 2 +65 27958 42.824398582336 3 +65 27965 42.824558582336 2 +65 28132 43.124398582336 3 +65 28139 43.124558582336 2 +65 28306 43.424398582336 3 +65 28313 43.424558582336 2 +65 28480 43.724398582336 3 +65 28487 43.724558582336 2 +65 28654 44.024398582336 3 +65 28661 44.024558582336 2 +65 28828 44.324398582336 3 +65 28835 44.324558582336 2 +65 28994 44.624398582336 3 +65 29001 44.624558582336 2 +65 29160 44.924398582336 3 +65 29167 44.924558582336 2 +65 29326 45.224398582336 3 +65 29333 45.224558582336 2 +65 29492 45.524398582336 3 +65 29499 45.524558582336 2 +65 29658 45.824398582336 3 +65 29665 45.824558582336 2 +65 29824 46.124398582336 3 +65 29831 46.124558582336 2 +65 29990 46.424398582336 3 +65 29997 46.424558582336 2 +65 30156 46.724398582336 3 +65 30163 46.724558582336 2 +65 30322 47.024398582336 3 +65 30329 47.024558582336 2 +65 30488 47.324398582336 3 +65 30495 47.324558582336 2 +65 30654 47.624398582336 3 +65 30661 47.624558582336 2 +65 30820 47.924398582336 3 +65 30827 47.924558582336 2 +65 30986 48.224398582336 3 +65 30993 48.224558582336 2 +65 31152 48.524398582336 3 +65 31159 48.524558582336 2 +65 31318 48.824398582336 3 +65 31325 48.824558582336 2 +65 31484 49.124398582336 3 +65 31491 49.124558582336 2 +65 31650 49.424398582336 3 +65 31657 49.424558582336 2 +65 31816 49.724398582336 3 +65 31823 49.724558582336 2 +65 31982 50.024398582336 3 +65 31989 50.024558582336 2 +65 32148 50.324398582336 3 +65 32155 50.324558582336 2 +65 32314 50.624398582336 3 +65 32321 50.624558582336 2 +65 32480 50.924398582336 3 +65 32487 50.924558582336 2 +65 32642 51.224398582336 3 +65 32649 51.224558582336 2 +65 32800 51.524398582336 3 +65 32807 51.524558582336 2 +65 32966 51.824398582336 3 +65 32973 51.824558582336 2 +65 33132 52.124398582336 3 +65 33139 52.124558582336 2 +65 33298 52.424398582336 3 +65 33305 52.424558582336 2 +65 33464 52.724398582336 3 +65 33471 52.724558582336 2 +65 33630 53.024398582336 3 +65 33637 53.024558582336 2 +65 33772 53.324398582336 3 +65 33778 53.324558582336 2 +65 33899 53.624398582336 3 +65 33905 53.624558582336 2 +65 34026 53.924398582336 3 +65 34032 53.924558582336 2 +65 34153 54.224398582336 3 +65 34159 54.224558582336 2 +65 34280 54.524398582336 3 +65 34286 54.524558582336 2 +65 34407 54.824398582336 3 +65 34413 54.824558582336 2 +65 34534 55.124398582336 3 +65 34540 55.124558582336 2 +65 34661 55.424398582336 3 +65 34667 55.424558582336 2 +65 34788 55.724398582336 3 +65 34794 55.724558582336 2 +65 34915 56.024398582336 3 +65 34921 56.024558582336 2 +65 35042 56.324398582336 3 +65 35048 56.324558582336 2 +65 35167 56.624398582336 3 +65 35172 56.624558582336 2 +65 35251 56.924398582336 3 +65 35256 56.924558582336 2 +65 35335 57.224398582336 3 +65 35340 57.224558582336 2 +65 35419 57.524398582336 3 +65 35424 57.524558582336 2 +65 35503 57.824398582336 3 +65 35508 57.824558582336 2 +65 35587 58.124398582336 3 +65 35592 58.124558582336 2 +65 35671 58.424398582336 3 +65 35676 58.424558582336 2 +65 35755 58.724398582336 3 +65 35760 58.724558582336 2 +65 35839 59.024398582336 3 +65 35844 59.024558582336 2 +65 35923 59.324398582336 3 +65 35928 59.324558582336 2 +65 36007 59.624398582336 3 +65 36012 59.624558582336 2 +65 36091 59.924398582336 3 +65 36096 59.924558582336 2 +65 36175 60.224398582336 3 +65 36180 60.224558582336 2 +65 36251 60.524398582336 3 +65 36256 60.524558582336 2 +65 36327 60.824398582336 3 +65 36332 60.824558582336 2 +65 36403 61.124398582336 3 +65 36408 61.124558582336 2 +65 36479 61.424398582336 3 +65 36484 61.424558582336 2 +65 36555 61.724398582336 3 +65 36560 61.724558582336 2 +65 36631 62.024398582336 3 +65 36636 62.024558582336 2 +65 36707 62.324398582336 3 +65 36712 62.324558582336 2 +65 36783 62.624398582336 3 +65 36788 62.624558582336 2 +65 36859 62.924398582336 3 +65 36864 62.924558582336 2 +66 1262 6.1 180 +67 1262 6.1 1 +67 1285 6.214557014941 3 +67 1292 6.214717014941 1 +67 1319 6.231276487063 3 +67 1326 6.231436487063 1 +67 1358 6.257384178941 3 +67 1369 6.257544178941 1 +67 1468 6.514557005507 3 +67 1475 6.514717005507 1 +67 1499 6.524398582336 0 +67 1507 6.524558582336 1 +67 1535 6.531276486831 3 +67 1542 6.531436486831 1 +67 1575 6.557384179276 3 +67 1586 6.557544179276 1 +67 1685 6.814556995188 3 +67 1692 6.814716995188 1 +67 1716 6.824398582336 0 +67 1724 6.824558582336 1 +67 1752 6.831276486811 3 +67 1759 6.831436486811 1 +67 1792 6.857384179479 3 +67 1803 6.857544179479 1 +67 1902 7.114556984223 3 +67 1909 7.114716984223 1 +67 1933 7.124398582336 0 +67 1941 7.124558582336 1 +67 1969 7.131276486808 3 +67 1976 7.131436486808 1 +67 2009 7.157384179668 3 +67 2020 7.157544179668 1 +67 2119 7.414556972819 3 +67 2126 7.414716972819 1 +67 2150 7.424398582336 0 +67 2158 7.424558582336 1 +67 2186 7.431276486796 3 +67 2193 7.431436486796 1 +67 2226 7.45738417987 3 +67 2237 7.45754417987 1 +67 2336 7.714556960939 3 +67 2343 7.714716960939 1 +67 2367 7.724398582336 0 +67 2375 7.724558582336 1 +67 2403 7.731276486797 3 +67 2410 7.731436486797 1 +67 2443 7.757384180075 3 +67 2454 7.757544180075 1 +67 2553 8.014556948475 3 +67 2560 8.014716948475 1 +67 2584 8.024398582336 0 +67 2592 8.024558582336 1 +67 2620 8.031276486795 3 +67 2627 8.031436486795 1 +67 2660 8.057384180287 3 +67 2671 8.057544180287 1 +67 2728 8.143993909962 2 +67 2743 8.144153909962 1 +67 2770 8.314556935291 3 +67 2777 8.314716935291 1 +67 2801 8.324398582336 0 +67 2809 8.324558582336 1 +67 2841 8.331276486806 3 +67 2848 8.331436486806 1 +67 2881 8.3573841805 3 +67 2892 8.3575441805 1 +67 2949 8.443993908226 3 +67 2964 8.444153908226 1 +67 2995 8.61455692156 3 +67 3002 8.61471692156 1 +67 3026 8.624398582336 0 +67 3034 8.624558582336 1 +67 3066 8.631276486794 3 +67 3073 8.631436486794 1 +67 3106 8.657384180719 3 +67 3117 8.657544180719 1 +67 3174 8.743993906406 3 +67 3189 8.744153906406 1 +67 3220 8.914556907259 3 +67 3227 8.914716907259 1 +67 3251 8.924398582336 0 +67 3259 8.924558582336 1 +67 3291 8.931276486763 3 +67 3298 8.931436486763 1 +67 3331 8.957384180943 3 +67 3342 8.957544180943 1 +67 3399 9.04399390454 3 +67 3414 9.04415390454 1 +67 3445 9.214556892419 3 +67 3452 9.214716892419 1 +67 3476 9.224398582336 0 +67 3484 9.224558582336 1 +67 3516 9.23127648678 3 +67 3523 9.23143648678 1 +67 3556 9.257384181166 3 +67 3567 9.257544181166 1 +67 3624 9.343993902652 3 +67 3639 9.344153902652 1 +67 3670 9.514556877151 3 +67 3677 9.514716877151 1 +67 3701 9.524398582336 0 +67 3709 9.524558582336 1 +67 3741 9.531276486774 3 +67 3748 9.531436486774 1 +67 3781 9.557384181399 3 +67 3792 9.557544181399 1 +67 3849 9.643993900772 3 +67 3864 9.644153900772 1 +67 3895 9.814556861723 3 +67 3902 9.814716861723 1 +67 3926 9.824398582336 0 +67 3934 9.824558582336 1 +67 3966 9.831276486773 3 +67 3973 9.831436486773 1 +67 4006 9.857384181638 3 +67 4017 9.857544181638 1 +67 4074 9.943993898897 3 +67 4089 9.944153898897 1 +67 4120 10.114556846518 3 +67 4127 10.114716846518 1 +67 4151 10.124398582336 0 +67 4159 10.124558582336 1 +67 4191 10.131276486772 3 +67 4198 10.131436486772 1 +67 4231 10.157384181883 3 +67 4242 10.157544181883 1 +67 4299 10.243993897044 3 +67 4314 10.244153897044 1 +67 4345 10.414556831999 3 +67 4352 10.414716831999 1 +67 4376 10.424398582336 0 +67 4384 10.424558582336 1 +67 4416 10.431276486761 3 +67 4423 10.431436486761 1 +67 4456 10.457384182119 3 +67 4467 10.457544182119 1 +67 4524 10.54399389528 3 +67 4539 10.54415389528 1 +67 4574 10.714556820945 3 +67 4581 10.714716820945 1 +67 4609 10.724398582336 0 +67 4617 10.724558582336 1 +67 4649 10.731276486773 3 +67 4656 10.731436486773 1 +67 4689 10.757384182346 3 +67 4700 10.757544182346 1 +67 4758 10.843993893701 3 +67 4777 10.844153893701 1 +67 4807 11.014556825169 3 +67 4814 11.014716825169 1 +67 4842 11.024398582336 0 +67 4850 11.024558582336 1 +67 4883 11.031276486765 3 +67 4894 11.031436486765 1 +67 4922 11.057384182606 3 +67 4933 11.057544182606 1 +67 4991 11.14399389274 3 +67 5010 11.14415389274 1 +67 5040 11.31455683863 3 +67 5047 11.31471683863 1 +67 5075 11.324398582336 0 +67 5083 11.324558582336 1 +67 5116 11.33127648678 3 +67 5127 11.33143648678 1 +67 5154 11.35738418284 3 +67 5161 11.35754418284 1 +67 5224 11.443993892392 3 +67 5243 11.444153892392 1 +67 5273 11.614556853551 3 +67 5280 11.614716853551 1 +67 5308 11.624398582336 0 +67 5316 11.624558582336 1 +67 5349 11.63127648679 3 +67 5360 11.63143648679 1 +67 5391 11.65738418309 3 +67 5398 11.65754418309 1 +67 5465 11.74399389255 3 +67 5484 11.74415389255 1 +67 5514 11.914556868865 3 +67 5521 11.914716868865 1 +67 5549 11.924398582336 0 +67 5557 11.924558582336 1 +67 5590 11.931276486788 3 +67 5601 11.931436486788 1 +67 5632 11.957384183349 3 +67 5639 11.957544183349 1 +67 5706 12.043993893167 3 +67 5725 12.044153893167 1 +67 5755 12.214556884343 3 +67 5762 12.214716884343 1 +67 5790 12.224398582336 0 +67 5798 12.224558582336 1 +67 5831 12.231276486807 3 +67 5842 12.231436486807 1 +67 5873 12.257384183599 3 +67 5880 12.257544183599 1 +67 5947 12.343993893974 3 +67 5966 12.344153893974 1 +67 5996 12.514556899849 3 +67 6003 12.514716899849 1 +67 6031 12.524398582336 0 +67 6039 12.524558582336 1 +67 6072 12.531276486799 3 +67 6083 12.531436486799 1 +67 6114 12.557384183875 3 +67 6121 12.557544183875 1 +67 6188 12.643993894778 3 +67 6207 12.644153894778 1 +67 6237 12.814556915398 3 +67 6244 12.814716915398 1 +67 6272 12.824398582336 0 +67 6280 12.824558582336 1 +67 6313 12.831276486802 3 +67 6324 12.831436486802 1 +67 6355 12.857384184139 3 +67 6362 12.857544184139 1 +67 6429 12.943993895594 3 +67 6448 12.944153895594 1 +67 6478 13.114556930999 3 +67 6485 13.114716930999 1 +67 6513 13.124398582336 0 +67 6521 13.124558582336 1 +67 6554 13.131276486785 3 +67 6565 13.131436486785 1 +67 6596 13.157384184416 3 +67 6603 13.157544184416 1 +67 6670 13.243993896412 3 +67 6689 13.244153896412 1 +67 6719 13.41455694659 3 +67 6726 13.41471694659 1 +67 6754 13.424398582336 0 +67 6762 13.424558582336 1 +67 6795 13.431276486795 3 +67 6806 13.431436486795 1 +67 6837 13.457384184698 3 +67 6844 13.457544184698 1 +67 6911 13.543993897233 3 +67 6930 13.544153897233 1 +67 6960 13.714556962198 3 +67 6967 13.714716962198 1 +67 6995 13.724398582336 0 +67 7003 13.724558582336 1 +67 7036 13.7312764868 3 +67 7047 13.7314364868 1 +67 7078 13.757384184966 3 +67 7085 13.757544184966 1 +67 7152 13.843993898057 3 +67 7171 13.844153898057 1 +67 7202 14.014556977862 3 +67 7213 14.014716977862 1 +67 7236 14.024398582336 0 +67 7244 14.024558582336 1 +67 7277 14.031276486793 3 +67 7288 14.031436486793 1 +67 7319 14.057384185242 3 +67 7326 14.057544185242 1 +67 7393 14.14399389887 3 +67 7412 14.14415389887 1 +67 7443 14.314556993496 3 +67 7454 14.314716993496 1 +67 7477 14.324398582336 0 +67 7485 14.324558582336 1 +67 7518 14.331276486806 3 +67 7529 14.331436486806 1 +67 7560 14.357384185527 3 +67 7567 14.357544185527 1 +67 7634 14.443993899694 3 +67 7653 14.444153899694 1 +67 7684 14.614557009101 3 +67 7695 14.614717009101 1 +67 7718 14.624398582336 0 +67 7726 14.624558582336 1 +67 7759 14.631276486796 3 +67 7770 14.631436486796 1 +67 7801 14.657384185824 3 +67 7808 14.657544185824 1 +67 7875 14.743993900511 3 +67 7894 14.744153900511 1 +67 7925 14.914557024712 3 +67 7936 14.914717024712 1 +67 7959 14.924398582336 0 +67 7967 14.924558582336 1 +67 8000 14.931276486792 3 +67 8011 14.931436486792 1 +67 8042 14.957384186118 3 +67 8049 14.957544186118 1 +67 8116 15.043993901332 3 +67 8135 15.044153901332 1 +67 8166 15.214557040331 3 +67 8177 15.214717040331 1 +67 8200 15.224398582336 0 +67 8208 15.224558582336 1 +67 8241 15.231276486777 3 +67 8252 15.231436486777 1 +67 8283 15.257384186413 3 +67 8290 15.257544186413 1 +67 8357 15.343993902158 3 +67 8376 15.344153902158 1 +67 8407 15.514557055996 3 +67 8418 15.514717055996 1 +67 8441 15.524398582336 0 +67 8449 15.524558582336 1 +67 8482 15.531276486786 3 +67 8493 15.531436486786 1 +67 8524 15.557384186718 3 +67 8531 15.557544186718 1 +67 8598 15.643993902982 3 +67 8617 15.644153902982 1 +67 8648 15.81455707161 3 +67 8659 15.81471707161 1 +67 8682 15.824398582336 0 +67 8690 15.824558582336 1 +67 8723 15.831276486807 3 +67 8734 15.831436486807 1 +67 8765 15.857384187027 3 +67 8772 15.857544187027 1 +67 8839 15.943993903822 3 +67 8858 15.944153903822 1 +67 8889 16.11455708724 3 +67 8900 16.11471708724 1 +67 8927 16.124398582336 0 +67 8935 16.124558582336 1 +67 8968 16.131276486791 3 +67 8979 16.131436486791 1 +67 9010 16.157384187335 3 +67 9017 16.157544187335 1 +67 9088 16.243993904634 3 +67 9107 16.244153904634 1 +67 9138 16.414557102881 3 +67 9149 16.414717102881 1 +67 9176 16.424398582336 0 +67 9184 16.424558582336 1 +67 9217 16.431276486767 3 +67 9228 16.431436486767 1 +67 9259 16.45738418766 3 +67 9266 16.45754418766 1 +67 9337 16.543993905451 3 +67 9356 16.544153905451 1 +67 9387 16.714557118536 3 +67 9398 16.714717118536 1 +67 9425 16.724398582336 0 +67 9433 16.724558582336 1 +67 9466 16.731276486767 3 +67 9477 16.731436486767 1 +67 9508 16.757384187976 3 +67 9515 16.757544187976 1 +67 9586 16.843993906273 3 +67 9605 16.844153906273 1 +67 9636 17.014557134175 3 +67 9647 17.014717134175 1 +67 9674 17.024398582336 0 +67 9682 17.024558582336 1 +67 9715 17.031276486771 3 +67 9726 17.031436486771 1 +67 9757 17.057384188287 3 +67 9764 17.057544188287 1 +67 9835 17.143993907123 3 +67 9854 17.144153907123 1 +67 9885 17.314557149858 3 +67 9896 17.314717149858 1 +67 9923 17.324398582336 0 +67 9931 17.324558582336 1 +67 9964 17.331276486778 3 +67 9975 17.331436486778 1 +67 10006 17.357384188603 3 +67 10013 17.357544188603 1 +67 10084 17.443993907967 3 +67 10103 17.444153907967 1 +67 10134 17.614557165512 3 +67 10145 17.614717165512 1 +67 10172 17.624398582336 0 +67 10180 17.624558582336 1 +67 10213 17.631276486782 3 +67 10224 17.631436486782 1 +67 10255 17.657384188908 3 +67 10262 17.657544188908 1 +67 10333 17.74399390881 3 +67 10352 17.74415390881 1 +67 10383 17.914557181155 3 +67 10394 17.914717181155 1 +67 10417 17.924398582336 0 +67 10425 17.924558582336 1 +67 10458 17.931276486796 3 +67 10469 17.931436486796 1 +67 10500 17.957384189225 3 +67 10507 17.957544189225 1 +67 10574 18.04399390965 3 +67 10593 18.04415390965 1 +67 10625 18.214557196811 3 +67 10640 18.214717196811 1 +67 10658 18.224398582336 0 +67 10666 18.224558582336 1 +67 10695 18.231276486817 3 +67 10706 18.231436486817 1 +67 10737 18.257384189554 3 +67 10744 18.257544189554 1 +67 10811 18.343993910503 2 +67 10830 18.344153910503 1 +67 10858 18.514557211927 3 +67 10873 18.514717211927 1 +67 10891 18.524398582336 0 +67 10899 18.524558582336 1 +67 10928 18.531276486818 3 +67 10939 18.531436486818 1 +67 10970 18.557384189884 3 +67 10977 18.557544189884 1 +67 11091 18.814557220024 3 +67 11106 18.814717220024 1 +67 11124 18.824398582336 0 +67 11132 18.824558582336 1 +67 11161 18.831276486814 3 +67 11172 18.831436486814 1 +67 11203 18.857384190227 3 +67 11210 18.857544190227 1 +67 11324 19.11455722262 3 +67 11339 19.11471722262 1 +67 11357 19.124398582336 0 +67 11365 19.124558582336 1 +67 11394 19.131276486813 3 +67 11405 19.131436486813 1 +67 11436 19.157384190586 3 +67 11443 19.157544190586 1 +67 11557 19.414557225292 3 +67 11572 19.414717225292 1 +67 11590 19.424398582336 0 +67 11598 19.424558582336 1 +67 11627 19.431276486792 3 +67 11638 19.431436486792 1 +67 11669 19.457384190936 3 +67 11676 19.457544190936 1 +67 11790 19.714557228908 3 +67 11805 19.714717228908 1 +67 11823 19.724398582336 0 +67 11831 19.724558582336 1 +67 11860 19.73127648675 3 +67 11871 19.73143648675 1 +67 11902 19.757384191083 3 +67 11909 19.757544191083 1 +67 12023 20.014557233572 3 +67 12038 20.014717233572 1 +67 12060 20.024398582336 0 +67 12068 20.024558582336 1 +67 12097 20.031276486573 3 +67 12108 20.031436486573 1 +67 12139 20.057384190919 3 +67 12146 20.057544190919 1 +67 12264 20.314557239262 3 +67 12279 20.314717239262 1 +67 12301 20.324398582336 0 +67 12309 20.324558582336 1 +67 12338 20.331276486402 3 +67 12349 20.331436486402 1 +67 12380 20.35738419086 3 +67 12387 20.35754419086 1 +67 12505 20.614557246038 3 +67 12520 20.614717246038 1 +67 12542 20.624398582336 0 +67 12550 20.624558582336 1 +67 12579 20.631276486279 3 +67 12590 20.631436486279 1 +67 12621 20.657384191065 3 +67 12628 20.657544191065 1 +67 12746 20.914557253923 3 +67 12761 20.914717253923 1 +67 12783 20.924398582336 0 +67 12791 20.924558582336 1 +67 12820 20.9312764863 3 +67 12831 20.9314364863 1 +67 12862 20.957384191416 3 +67 12869 20.957544191416 1 +67 12987 21.214557262739 3 +67 13002 21.214717262739 1 +67 13024 21.224398582336 0 +67 13032 21.224558582336 1 +67 13061 21.231276486377 3 +67 13072 21.231436486377 1 +67 13103 21.257384192086 3 +67 13110 21.257544192086 1 +67 13228 21.514557272413 3 +67 13243 21.514717272413 1 +67 13265 21.524398582336 0 +67 13273 21.524558582336 1 +67 13302 21.531276486403 3 +67 13313 21.531436486403 1 +67 13344 21.557384193076 3 +67 13351 21.557544193076 1 +67 13469 21.814557282935 3 +67 13484 21.814717282935 1 +67 13506 21.824398582336 0 +67 13514 21.824558582336 1 +67 13543 21.831276486387 3 +67 13554 21.831436486387 1 +67 13585 21.85738419435 3 +67 13592 21.85754419435 1 +67 13710 22.114557294257 3 +67 13725 22.114717294257 1 +67 13747 22.124398582336 0 +67 13755 22.124558582336 1 +67 13784 22.13127648632 3 +67 13795 22.13143648632 1 +67 13826 22.15738419591 3 +67 13833 22.15754419591 1 +67 13951 22.414557306336 3 +67 13966 22.414717306336 1 +67 13988 22.424398582336 0 +67 13996 22.424558582336 1 +67 14025 22.431276486231 3 +67 14036 22.431436486231 1 +67 14067 22.457384197834 3 +67 14074 22.457544197834 1 +67 14192 22.714557319146 3 +67 14207 22.714717319146 1 +67 14229 22.724398582336 0 +67 14237 22.724558582336 1 +67 14266 22.731276486104 3 +67 14277 22.731436486104 1 +67 14308 22.75738420026 3 +67 14315 22.75754420026 1 +67 14433 23.014557332675 3 +67 14448 23.014717332675 1 +67 14470 23.024398582336 0 +67 14478 23.024558582336 1 +67 14507 23.031276485972 3 +67 14518 23.031436485972 1 +67 14549 23.057384203204 3 +67 14556 23.057544203204 1 +67 14674 23.314557346848 3 +67 14689 23.314717346848 1 +67 14711 23.324398582336 0 +67 14719 23.324558582336 1 +67 14748 23.331276485713 3 +67 14759 23.331436485713 1 +67 14790 23.357384206722 3 +67 14797 23.357544206722 1 +67 14915 23.614557361743 3 +67 14930 23.614717361743 1 +67 14952 23.624398582336 0 +67 14960 23.624558582336 1 +67 14989 23.6312764855 3 +67 15000 23.6314364855 1 +67 15031 23.657384210857 3 +67 15038 23.657544210857 1 +67 15157 23.914557377256 3 +67 15176 23.914717377256 1 +67 15193 23.924398582336 0 +67 15201 23.924558582336 1 +67 15229 23.93127648528 3 +67 15236 23.93143648528 1 +67 15272 23.95738421565 3 +67 15279 23.95754421565 1 +67 15398 24.214557393408 3 +67 15417 24.214717393408 1 +67 15434 24.224398582336 0 +67 15442 24.224558582336 1 +67 15470 24.231276485173 3 +67 15477 24.231436485173 1 +67 15513 24.257384221045 3 +67 15520 24.257544221045 1 +67 15639 24.514557410256 3 +67 15658 24.514717410256 1 +67 15675 24.524398582336 0 +67 15683 24.524558582336 1 +67 15711 24.531276485097 3 +67 15718 24.531436485097 1 +67 15754 24.55738422706 3 +67 15761 24.55754422706 1 +67 15880 24.814557427619 3 +67 15899 24.814717427619 1 +67 15916 24.824398582336 0 +67 15924 24.824558582336 1 +67 15952 24.831276484864 3 +67 15959 24.831436484864 1 +67 15995 24.857384233855 3 +67 16002 24.857544233855 1 +67 16121 25.114557445125 3 +67 16140 25.114717445125 1 +67 16157 25.124398582336 0 +67 16165 25.124558582336 1 +67 16193 25.131276484116 3 +67 16200 25.131436484116 1 +67 16236 25.15738424158 3 +67 16243 25.15754424158 1 +67 16362 25.414557462649 3 +67 16381 25.414717462649 1 +67 16398 25.424398582336 0 +67 16406 25.424558582336 1 +67 16434 25.431276482795 3 +67 16441 25.431436482795 1 +67 16477 25.457384250111 3 +67 16484 25.457544250111 1 +67 16603 25.714557480245 3 +67 16622 25.714717480245 1 +67 16639 25.724398582336 0 +67 16647 25.724558582336 1 +67 16675 25.731276480874 3 +67 16682 25.731436480874 1 +67 16718 25.757384259482 3 +67 16725 25.757544259482 1 +67 16844 26.014557497945 3 +67 16863 26.014717497945 1 +67 16880 26.024398582336 0 +67 16888 26.024558582336 1 +67 16916 26.031276479731 3 +67 16923 26.031436479731 1 +67 16959 26.057384269815 3 +67 16966 26.057544269815 1 +67 17086 26.314557515616 3 +67 17109 26.314717515616 1 +67 17121 26.324398582336 0 +67 17129 26.324558582336 1 +67 17157 26.331276479849 3 +67 17164 26.331436479849 1 +67 17200 26.357384280927 3 +67 17207 26.357544280927 1 +67 17327 26.614557533368 3 +67 17350 26.614717533368 1 +67 17362 26.624398582336 0 +67 17370 26.624558582336 1 +67 17398 26.631276481362 3 +67 17405 26.631436481362 1 +67 17441 26.657384292372 3 +67 17448 26.657544292372 1 +67 17568 26.914557551168 3 +67 17591 26.914717551168 1 +67 17603 26.924398582336 0 +67 17611 26.924558582336 1 +67 17639 26.931276484209 3 +67 17646 26.931436484209 1 +67 17682 26.957384303661 3 +67 17689 26.957544303661 1 +67 17809 27.214557568504 2 +67 17832 27.214717568504 1 +67 17840 27.224398582336 0 +67 17848 27.224558582336 1 +67 17872 27.231276487819 3 +67 17879 27.231436487819 1 +67 17915 27.257384313921 3 +67 17922 27.257544313921 1 +67 18073 27.524398582336 0 +67 18081 27.524558582336 1 +67 18105 27.531276490771 3 +67 18112 27.531436490771 1 +67 18148 27.557384323167 3 +67 18155 27.557544323167 1 +67 18306 27.824398582336 0 +67 18314 27.824558582336 1 +67 18338 27.831276492635 3 +67 18345 27.831436492635 1 +67 18381 27.857384331293 3 +67 18388 27.857544331293 1 +67 18539 28.124398582336 0 +67 18547 28.124558582336 1 +67 18571 28.131276501988 3 +67 18578 28.131436501988 1 +67 18614 28.15738433818 3 +67 18621 28.15754433818 1 +67 18772 28.424398582336 0 +67 18780 28.424558582336 1 +67 18804 28.431276516789 3 +67 18811 28.431436516789 1 +67 18847 28.45738434442 3 +67 18854 28.45754434442 1 +67 19005 28.724398582336 0 +67 19013 28.724558582336 1 +67 19037 28.731276531174 3 +67 19044 28.731436531174 1 +67 19080 28.757384346246 3 +67 19087 28.757544346246 1 +67 19238 29.024398582336 0 +67 19246 29.024558582336 1 +67 19270 29.031276536731 3 +67 19277 29.031436536731 1 +67 19309 29.057384347069 3 +67 19316 29.057544347069 1 +67 19463 29.324398582336 0 +67 19471 29.324558582336 1 +67 19495 29.331276539274 3 +67 19502 29.331436539274 1 +67 19535 29.357384351202 3 +67 19546 29.357544351202 1 +67 19688 29.624398582336 0 +67 19696 29.624558582336 1 +67 19720 29.631276541563 3 +67 19727 29.631436541563 1 +67 19760 29.657384352581 3 +67 19771 29.657544352581 1 +67 19913 29.924398582336 0 +67 19921 29.924558582336 1 +67 19945 29.931276543815 3 +67 19952 29.931436543815 1 +67 19985 29.957384353115 3 +67 19996 29.957544353115 1 +67 20138 30.224398582336 0 +67 20146 30.224558582336 1 +67 20170 30.231276546125 3 +67 20177 30.231436546125 1 +67 20210 30.257384353112 3 +67 20221 30.257544353112 1 +67 20363 30.524398582336 0 +67 20371 30.524558582336 1 +67 20395 30.531276548461 3 +67 20402 30.531436548461 1 +67 20435 30.55738435311 3 +67 20446 30.55754435311 1 +67 20588 30.824398582336 0 +67 20596 30.824558582336 1 +67 20621 30.831276550899 3 +67 20632 30.831436550899 1 +67 20660 30.857384353107 3 +67 20671 30.857544353107 1 +67 20813 31.124398582336 0 +67 20821 31.124558582336 1 +67 20850 31.131276553412 3 +67 20861 31.131436553412 1 +67 20889 31.157384353102 3 +67 20900 31.157544353102 1 +67 20921 31.193586243446 3 +67 20940 31.193746243446 1 +67 21046 31.424398582336 0 +67 21054 31.424558582336 1 +67 21083 31.431276555932 3 +67 21094 31.431436555932 1 +67 21122 31.457384353095 3 +67 21133 31.457544353095 1 +67 21154 31.493586217696 3 +67 21173 31.493746217696 1 +67 21279 31.724398582336 0 +67 21287 31.724558582336 1 +67 21316 31.731276558446 3 +67 21327 31.731436558446 1 +67 21355 31.757384353088 3 +67 21366 31.757544353088 1 +67 21387 31.793586191964 3 +67 21406 31.793746191964 1 +67 21512 32.024398582336 0 +67 21520 32.024558582336 1 +67 21549 32.031276560973 3 +67 21560 32.031436560973 1 +67 21588 32.057384353084 3 +67 21599 32.057544353084 1 +67 21619 32.093586166255 3 +67 21634 32.093746166255 1 +67 21745 32.324398582336 0 +67 21753 32.324558582336 1 +67 21782 32.331276563405 3 +67 21793 32.331436563405 1 +67 21821 32.357384353083 3 +67 21832 32.357544353083 1 +67 21852 32.393586140428 3 +67 21867 32.393746140428 1 +67 21978 32.624398582336 0 +67 21986 32.624558582336 1 +67 22015 32.631276565904 3 +67 22026 32.631436565904 1 +67 22054 32.657384353086 3 +67 22065 32.657544353086 1 +67 22085 32.693586114644 3 +67 22100 32.693746114644 1 +67 22211 32.924398582336 0 +67 22219 32.924558582336 1 +67 22248 32.931276568399 3 +67 22259 32.931436568399 1 +67 22287 32.957384353093 3 +67 22298 32.957544353093 1 +67 22318 32.993586088864 3 +67 22333 32.993746088864 1 +67 22444 33.224398582336 0 +67 22452 33.224558582336 1 +67 22481 33.231276570893 3 +67 22492 33.231436570893 1 +67 22520 33.257384353102 3 +67 22531 33.257544353102 1 +67 22551 33.293586063102 3 +67 22566 33.293746063102 1 +67 22677 33.524398582336 0 +67 22685 33.524558582336 1 +67 22714 33.53127657339 3 +67 22725 33.53143657339 1 +67 22753 33.557384353115 3 +67 22764 33.557544353115 1 +67 22783 33.593586037322 3 +67 22794 33.593746037322 1 +67 22906 33.824398582336 0 +67 22914 33.824558582336 1 +67 22943 33.831276575887 3 +67 22954 33.831436575887 1 +67 22982 33.857384353132 3 +67 22993 33.857544353132 1 +67 23012 33.893586011596 3 +67 23023 33.893746011596 1 +67 23116 34.124398582336 0 +67 23123 34.124558582336 1 +67 23146 34.131276578412 3 +67 23152 34.131436578412 1 +67 23176 34.157384353151 3 +67 23186 34.157544353151 1 +67 23274 34.424398582336 0 +67 23281 34.424558582336 1 +67 23304 34.431276580926 3 +67 23310 34.431436580926 1 +67 23334 34.457384353173 3 +67 23344 34.457544353173 1 +67 23432 34.724398582336 0 +67 23439 34.724558582336 1 +67 23462 34.731276583436 3 +67 23468 34.731436583436 1 +67 23492 34.757384353199 3 +67 23502 34.757544353199 1 +67 23590 35.024398582336 0 +67 23597 35.024558582336 1 +67 23620 35.031276585897 3 +67 23626 35.031436585897 1 +67 23650 35.057384353228 3 +67 23660 35.057544353228 1 +67 23752 35.324398582336 0 +67 23759 35.324558582336 1 +67 23782 35.331276588437 3 +67 23788 35.331436588437 1 +67 23812 35.357384353251 3 +67 23822 35.357544353251 1 +67 23918 35.624398582336 0 +67 23925 35.624558582336 1 +67 23948 35.631276590971 3 +67 23954 35.631436590971 1 +67 23978 35.657384353247 3 +67 23988 35.657544353247 1 +67 24084 35.924398582336 0 +67 24091 35.924558582336 1 +67 24114 35.931276593481 3 +67 24120 35.931436593481 1 +67 24144 35.957384353214 3 +67 24154 35.957544353214 1 +67 24250 36.224398582336 0 +67 24257 36.224558582336 1 +67 24280 36.231276595961 3 +67 24286 36.231436595961 1 +67 24310 36.257384353163 3 +67 24320 36.257544353163 1 +67 24416 36.524398582336 0 +67 24423 36.524558582336 1 +67 24446 36.531276598459 3 +67 24452 36.531436598459 1 +67 24476 36.557384353111 3 +67 24486 36.557544353111 1 +67 24582 36.824398582336 0 +67 24589 36.824558582336 1 +67 24612 36.83127660094 3 +67 24618 36.83143660094 1 +67 24642 36.857384353084 3 +67 24652 36.857544353084 1 +67 24748 37.124398582336 0 +67 24755 37.124558582336 1 +67 24778 37.131276603404 3 +67 24784 37.131436603404 1 +67 24808 37.15738435309 3 +67 24818 37.15754435309 1 +67 24914 37.424398582336 0 +67 24921 37.424558582336 1 +67 24944 37.431276605886 3 +67 24950 37.431436605886 1 +67 24974 37.457384353113 3 +67 24984 37.457544353113 1 +67 25080 37.724398582336 0 +67 25087 37.724558582336 1 +67 25110 37.731276608365 3 +67 25116 37.731436608365 1 +67 25141 37.757384353145 3 +67 25155 37.757544353145 1 +67 25246 38.024398582336 0 +67 25253 38.024558582336 1 +67 25276 38.031276610826 3 +67 25282 38.031436610826 1 +67 25307 38.057384353181 3 +67 25321 38.057544353181 1 +67 25412 38.324398582336 0 +67 25419 38.324558582336 1 +67 25442 38.3312766133 3 +67 25448 38.3314366133 1 +67 25473 38.357384353213 3 +67 25487 38.357544353213 1 +67 25578 38.624398582336 0 +67 25585 38.624558582336 1 +67 25608 38.631276615791 3 +67 25614 38.631436615791 1 +67 25639 38.657384353237 3 +67 25653 38.657544353237 1 +67 25744 38.924398582336 0 +67 25751 38.924558582336 1 +67 25774 38.93127661831 3 +67 25780 38.93143661831 1 +67 25805 38.95738435325 3 +67 25819 38.95754435325 1 +67 25910 39.224398582336 0 +67 25917 39.224558582336 1 +67 25940 39.231276620759 3 +67 25946 39.231436620759 1 +67 25971 39.257384353248 3 +67 25985 39.257544353248 1 +67 26076 39.524398582336 0 +67 26083 39.524558582336 1 +67 26106 39.531276623254 3 +67 26112 39.531436623254 1 +67 26137 39.557384353232 3 +67 26151 39.557544353232 1 +67 26242 39.824398582336 0 +67 26249 39.824558582336 1 +67 26272 39.83127662574 3 +67 26278 39.83143662574 1 +67 26303 39.857384353205 3 +67 26317 39.857544353205 1 +67 26408 40.124398582336 0 +67 26415 40.124558582336 1 +67 26438 40.131276628265 3 +67 26444 40.131436628265 1 +67 26469 40.157384353178 3 +67 26483 40.157544353178 1 +67 26574 40.424398582336 0 +67 26581 40.424558582336 1 +67 26604 40.431276630742 3 +67 26610 40.431436630742 1 +67 26635 40.457384353154 3 +67 26649 40.457544353154 1 +67 26740 40.724398582336 0 +67 26747 40.724558582336 1 +67 26774 40.731276633247 3 +67 26780 40.731436633247 1 +67 26805 40.757384353134 3 +67 26819 40.757544353134 1 +67 26844 40.843993902315 3 +67 26862 40.844153902315 1 +67 26914 41.024398582336 0 +67 26921 41.024558582336 1 +67 26948 41.031276635684 3 +67 26954 41.031436635684 1 +67 26979 41.057384353117 3 +67 26993 41.057544353117 1 +67 27018 41.143993889795 3 +67 27036 41.144153889795 1 +67 27088 41.324398582336 0 +67 27095 41.324558582336 1 +67 27122 41.331276638199 3 +67 27128 41.331436638199 1 +67 27153 41.357384353104 3 +67 27167 41.357544353104 1 +67 27192 41.443993878047 3 +67 27210 41.444153878047 1 +67 27262 41.624398582336 0 +67 27269 41.624558582336 1 +67 27296 41.631276640727 3 +67 27302 41.631436640727 1 +67 27327 41.657384353094 3 +67 27341 41.657544353094 1 +67 27366 41.743993867126 3 +67 27384 41.744153867126 1 +67 27436 41.924398582336 0 +67 27443 41.924558582336 1 +67 27470 41.931276643268 3 +67 27476 41.931436643268 1 +67 27501 41.957384353087 3 +67 27515 41.957544353087 1 +67 27540 42.043993857353 3 +67 27558 42.044153857353 1 +67 27610 42.224398582336 0 +67 27617 42.224558582336 1 +67 27644 42.231276645815 3 +67 27650 42.231436645815 1 +67 27675 42.257384353084 3 +67 27689 42.257544353084 1 +67 27713 42.343993848849 3 +67 27727 42.344153848849 1 +67 27784 42.524398582336 0 +67 27791 42.524558582336 1 +67 27818 42.531276648376 3 +67 27824 42.531436648376 1 +67 27849 42.557384353084 3 +67 27863 42.557544353084 1 +67 27887 42.643993841477 3 +67 27901 42.644153841477 1 +67 27958 42.824398582336 0 +67 27965 42.824558582336 1 +67 27992 42.831276650828 3 +67 27998 42.831436650828 1 +67 28023 42.857384353087 3 +67 28037 42.857544353087 1 +67 28061 42.943993835169 3 +67 28075 42.944153835169 1 +67 28132 43.124398582336 0 +67 28139 43.124558582336 1 +67 28166 43.131276653336 3 +67 28172 43.131436653336 1 +67 28197 43.157384353094 3 +67 28211 43.157544353094 1 +67 28235 43.243993829822 3 +67 28249 43.244153829822 1 +67 28306 43.424398582336 0 +67 28313 43.424558582336 1 +67 28340 43.431276655825 3 +67 28346 43.431436655825 1 +67 28371 43.457384353104 3 +67 28385 43.457544353104 1 +67 28409 43.543993825335 3 +67 28423 43.544153825335 1 +67 28480 43.724398582336 0 +67 28487 43.724558582336 1 +67 28514 43.731276658351 3 +67 28520 43.731436658351 1 +67 28545 43.757384353117 3 +67 28559 43.757544353117 1 +67 28583 43.84399382162 3 +67 28597 43.84415382162 1 +67 28654 44.024398582336 0 +67 28661 44.024558582336 1 +67 28688 44.031276660872 3 +67 28694 44.031436660872 1 +67 28719 44.057384353134 3 +67 28733 44.057544353134 1 +67 28757 44.143993818568 3 +67 28771 44.144153818568 1 +67 28828 44.324398582336 0 +67 28835 44.324558582336 1 +67 28862 44.331276663352 3 +67 28868 44.331436663352 1 +67 28889 44.357384353142 3 +67 28903 44.357544353142 1 +67 28927 44.443993816103 3 +67 28941 44.444153816103 1 +67 28994 44.624398582336 0 +67 29001 44.624558582336 1 +67 29028 44.63127666581 3 +67 29034 44.63143666581 1 +67 29055 44.657384353131 3 +67 29069 44.657544353131 1 +67 29093 44.743993814138 3 +67 29107 44.744153814138 1 +67 29160 44.924398582336 0 +67 29167 44.924558582336 1 +67 29194 44.931276668328 3 +67 29200 44.931436668328 1 +67 29221 44.957384353109 3 +67 29235 44.957544353109 1 +67 29259 45.043993812593 3 +67 29273 45.044153812593 1 +67 29326 45.224398582336 0 +67 29333 45.224558582336 1 +67 29360 45.231276670771 3 +67 29366 45.231436670771 1 +67 29387 45.257384353088 3 +67 29401 45.257544353088 1 +67 29425 45.343993811321 3 +67 29439 45.344153811321 1 +67 29492 45.524398582336 0 +67 29499 45.524558582336 1 +67 29526 45.53127667327 3 +67 29532 45.53143667327 1 +67 29553 45.557384353087 3 +67 29567 45.557544353087 1 +67 29591 45.643993810247 3 +67 29605 45.644153810247 1 +67 29658 45.824398582336 0 +67 29665 45.824558582336 1 +67 29692 45.831276675809 3 +67 29698 45.831436675809 1 +67 29719 45.857384353099 3 +67 29733 45.857544353099 1 +67 29757 45.94399380881 3 +67 29771 45.94415380881 1 +67 29824 46.124398582336 0 +67 29831 46.124558582336 1 +67 29858 46.131276678861 3 +67 29864 46.131436678861 1 +67 29885 46.157384350237 3 +67 29899 46.157544350237 1 +67 29922 46.243993803699 3 +67 29932 46.244153803699 1 +67 29990 46.424398582336 0 +67 29997 46.424558582336 1 +67 30024 46.431276686409 3 +67 30030 46.431436686409 1 +67 30051 46.457384341327 3 +67 30065 46.457544341327 1 +67 30088 46.543993792983 3 +67 30098 46.544153792983 1 +67 30156 46.724398582336 0 +67 30163 46.724558582336 1 +67 30190 46.731276699768 3 +67 30196 46.731436699768 1 +67 30216 46.757384329816 3 +67 30226 46.757544329816 1 +67 30254 46.843993781596 3 +67 30264 46.844153781596 1 +67 30322 47.024398582336 0 +67 30329 47.024558582336 1 +67 30356 47.031276714347 3 +67 30362 47.031436714347 1 +67 30382 47.057384318309 3 +67 30392 47.057544318309 1 +67 30420 47.143993770247 3 +67 30430 47.144153770247 1 +67 30488 47.324398582336 0 +67 30495 47.324558582336 1 +67 30522 47.331276729157 3 +67 30528 47.331436729157 1 +67 30548 47.357384306963 3 +67 30558 47.357544306963 1 +67 30586 47.443993758984 3 +67 30596 47.444153758984 1 +67 30654 47.624398582336 0 +67 30661 47.624558582336 1 +67 30688 47.631276744132 3 +67 30694 47.631436744132 1 +67 30714 47.657384295839 3 +67 30724 47.657544295839 1 +67 30752 47.743993747807 3 +67 30762 47.744153747807 1 +67 30820 47.924398582336 0 +67 30827 47.924558582336 1 +67 30854 47.931276759305 3 +67 30860 47.931436759305 1 +67 30880 47.957384284957 3 +67 30890 47.957544284957 1 +67 30918 48.043993736723 3 +67 30928 48.044153736723 1 +67 30986 48.224398582336 0 +67 30993 48.224558582336 1 +67 31020 48.231276774574 3 +67 31026 48.231436774574 1 +67 31046 48.257384274373 3 +67 31056 48.257544274373 1 +67 31084 48.343993727328 3 +67 31094 48.344153727328 1 +67 31152 48.524398582336 0 +67 31159 48.524558582336 1 +67 31186 48.531276790029 3 +67 31192 48.531436790029 1 +67 31212 48.557384264097 3 +67 31222 48.557544264097 1 +67 31250 48.6439937182 3 +67 31260 48.6441537182 1 +67 31318 48.824398582336 0 +67 31325 48.824558582336 1 +67 31352 48.83127680564 3 +67 31358 48.83143680564 1 +67 31378 48.85738425419 3 +67 31388 48.85754425419 1 +67 31416 48.943993710675 3 +67 31426 48.944153710675 1 +67 31484 49.124398582336 0 +67 31491 49.124558582336 1 +67 31518 49.13127682136 3 +67 31524 49.13143682136 1 +67 31544 49.157384244721 3 +67 31554 49.157544244721 1 +67 31582 49.243993704337 3 +67 31592 49.244153704337 1 +67 31650 49.424398582336 0 +67 31657 49.424558582336 1 +67 31684 49.431276837159 3 +67 31690 49.431436837159 1 +67 31710 49.457384235618 3 +67 31720 49.457544235618 1 +67 31748 49.543993699244 3 +67 31758 49.544153699244 1 +67 31816 49.724398582336 0 +67 31823 49.724558582336 1 +67 31850 49.731276842151 3 +67 31856 49.731436842151 1 +67 31876 49.757384226909 3 +67 31886 49.757544226909 1 +67 31914 49.843993694931 3 +67 31924 49.844153694931 1 +67 31982 50.024398582336 0 +67 31989 50.024558582336 1 +67 32016 50.031276841687 3 +67 32022 50.031436841687 1 +67 32042 50.057384218616 3 +67 32052 50.057544218616 1 +67 32080 50.143993691243 3 +67 32090 50.144153691243 1 +67 32148 50.324398582336 0 +67 32155 50.324558582336 1 +67 32182 50.331276841226 3 +67 32188 50.331436841226 1 +67 32208 50.3573842108 3 +67 32218 50.3575442108 1 +67 32246 50.443993688083 3 +67 32256 50.444153688083 1 +67 32314 50.624398582336 0 +67 32321 50.624558582336 1 +67 32348 50.631276840782 3 +67 32354 50.631436840782 1 +67 32374 50.657384203419 3 +67 32384 50.657544203419 1 +67 32412 50.743993685542 3 +67 32422 50.744153685542 1 +67 32480 50.924398582336 0 +67 32487 50.924558582336 1 +67 32514 50.931276840349 3 +67 32520 50.931436840349 1 +67 32540 50.957384196502 3 +67 32550 50.957544196502 1 +67 32578 51.043993683597 3 +67 32588 51.044153683597 1 +67 32642 51.224398582336 0 +67 32649 51.224558582336 1 +67 32676 51.231276839912 3 +67 32682 51.231436839912 1 +67 32702 51.257384190124 3 +67 32712 51.257544190124 1 +67 32736 51.343993682284 3 +67 32746 51.344153682284 1 +67 32800 51.524398582336 0 +67 32807 51.524558582336 1 +67 32834 51.531276839494 3 +67 32840 51.531436839494 1 +67 32864 51.557384184246 3 +67 32874 51.557544184246 1 +67 32902 51.643993681524 3 +67 32912 51.644153681524 1 +67 32966 51.824398582336 0 +67 32973 51.824558582336 1 +67 33000 51.831276839089 3 +67 33006 51.831436839089 1 +67 33030 51.857384178906 3 +67 33040 51.857544178906 1 +67 33068 51.943993681491 3 +67 33078 51.944153681491 1 +67 33132 52.124398582336 0 +67 33139 52.124558582336 1 +67 33166 52.131276838692 3 +67 33172 52.131436838692 1 +67 33196 52.157384174145 3 +67 33206 52.157544174145 1 +67 33234 52.243993682011 3 +67 33244 52.244153682011 1 +67 33298 52.424398582336 0 +67 33305 52.424558582336 1 +67 33332 52.431276838288 3 +67 33338 52.431436838288 1 +67 33362 52.457384169983 3 +67 33372 52.457544169983 1 +67 33400 52.543993683051 3 +67 33410 52.544153683051 1 +67 33464 52.724398582336 0 +67 33471 52.724558582336 1 +67 33499 52.731276837906 3 +67 33509 52.731436837906 1 +67 33528 52.757384166374 3 +67 33538 52.757544166374 1 +67 33566 52.843993684615 3 +67 33576 52.844153684615 1 +67 33630 53.024398582336 0 +67 33637 53.024558582336 1 +67 33665 53.031276837529 3 +67 33675 53.031436837529 1 +67 33694 53.057384163324 3 +67 33704 53.057544163324 1 +67 33732 53.143993686732 3 +67 33742 53.144153686732 1 +67 33772 53.324398582336 0 +67 33778 53.324558582336 1 +67 33804 53.331276837158 3 +67 33813 53.331436837158 1 +67 33831 53.357384160285 3 +67 33840 53.357544160285 1 +67 33866 53.44399368936 3 +67 33875 53.44415368936 1 +67 33899 53.624398582336 0 +67 33905 53.624558582336 1 +67 33931 53.631276836803 3 +67 33940 53.631436836803 1 +67 33958 53.657384156982 3 +67 33967 53.657544156982 1 +67 33993 53.743993692655 3 +67 34002 53.744153692655 1 +67 34026 53.924398582336 0 +67 34032 53.924558582336 1 +67 34058 53.931276836464 3 +67 34067 53.931436836464 1 +67 34085 53.95738415332 3 +67 34094 53.95754415332 1 +67 34120 54.043993696094 3 +67 34129 54.044153696094 1 +67 34153 54.224398582336 0 +67 34159 54.224558582336 1 +67 34185 54.231276836131 3 +67 34194 54.231436836131 1 +67 34212 54.257384149235 3 +67 34221 54.257544149235 1 +67 34247 54.343993699619 3 +67 34256 54.344153699619 1 +67 34280 54.524398582336 0 +67 34286 54.524558582336 1 +67 34312 54.531276835797 3 +67 34321 54.531436835797 1 +67 34339 54.557384144828 3 +67 34348 54.557544144828 1 +67 34374 54.643993703131 3 +67 34383 54.644153703131 1 +67 34407 54.824398582336 0 +67 34413 54.824558582336 1 +67 34439 54.831276835522 3 +67 34448 54.831436835522 1 +67 34466 54.85738414112 3 +67 34475 54.85754414112 1 +67 34501 54.943993706647 3 +67 34510 54.944153706647 1 +67 34534 55.124398582336 0 +67 34540 55.124558582336 1 +67 34566 55.131276835415 3 +67 34575 55.131436835415 1 +67 34593 55.15738413831 3 +67 34602 55.15754413831 1 +67 34628 55.243993710085 3 +67 34637 55.244153710085 1 +67 34661 55.424398582336 0 +67 34667 55.424558582336 1 +67 34693 55.431276835478 3 +67 34702 55.431436835478 1 +67 34720 55.45738413635 3 +67 34729 55.45754413635 1 +67 34755 55.543993713581 3 +67 34764 55.544153713581 1 +67 34788 55.724398582336 0 +67 34794 55.724558582336 1 +67 34820 55.731276835709 3 +67 34829 55.731436835709 1 +67 34847 55.757384135289 3 +67 34856 55.757544135289 1 +67 34882 55.843993717083 3 +67 34891 55.844153717083 1 +67 34915 56.024398582336 0 +67 34921 56.024558582336 1 +67 34947 56.031276836125 3 +67 34956 56.031436836125 1 +67 34974 56.057384135209 3 +67 34983 56.057544135209 1 +67 35009 56.143993720633 3 +67 35018 56.144153720633 1 +67 35042 56.324398582336 0 +67 35048 56.324558582336 1 +67 35074 56.331276836745 3 +67 35083 56.331436836745 1 +67 35100 56.357384136092 3 +67 35105 56.357544136092 1 +67 35136 56.443993724089 3 +67 35145 56.444153724089 1 +67 35167 56.624398582336 0 +67 35172 56.624558582336 1 +67 35193 56.631276837493 3 +67 35201 56.631436837493 1 +67 35217 56.657384137925 3 +67 35221 56.657544137925 1 +67 35251 56.924398582336 0 +67 35256 56.924558582336 1 +67 35277 56.931276842253 3 +67 35285 56.931436842253 1 +67 35301 56.957384140796 3 +67 35305 56.957544140796 1 +67 35335 57.224398582336 0 +67 35340 57.224558582336 1 +67 35361 57.231276850523 3 +67 35369 57.231436850523 1 +67 35385 57.257384144754 3 +67 35389 57.257544144754 1 +67 35419 57.524398582336 0 +67 35424 57.524558582336 1 +67 35445 57.53127685508 3 +67 35453 57.53143685508 1 +67 35470 57.557384149775 3 +67 35478 57.557544149775 1 +67 35503 57.824398582336 0 +67 35508 57.824558582336 1 +67 35529 57.831276859492 3 +67 35537 57.831436859492 1 +67 35554 57.857384155686 3 +67 35562 57.857544155686 1 +67 35587 58.124398582336 0 +67 35592 58.124558582336 1 +67 35613 58.131276864633 3 +67 35621 58.131436864633 1 +67 35638 58.157384162109 3 +67 35646 58.157544162109 1 +67 35671 58.424398582336 0 +67 35676 58.424558582336 1 +67 35697 58.431276870558 3 +67 35705 58.431436870558 1 +67 35722 58.457384169083 3 +67 35730 58.457544169083 1 +67 35755 58.724398582336 0 +67 35760 58.724558582336 1 +67 35781 58.731276877253 3 +67 35789 58.731436877253 1 +67 35806 58.757384176569 3 +67 35814 58.757544176569 1 +67 35839 59.024398582336 0 +67 35844 59.024558582336 1 +67 35865 59.031276884805 3 +67 35873 59.031436884805 1 +67 35890 59.057384184524 3 +67 35898 59.057544184524 1 +67 35923 59.324398582336 0 +67 35928 59.324558582336 1 +67 35949 59.331276893239 3 +67 35957 59.331436893239 1 +67 35974 59.357384192972 3 +67 35982 59.357544192972 1 +67 36007 59.624398582336 0 +67 36012 59.624558582336 1 +67 36033 59.631276902575 3 +67 36041 59.631436902575 1 +67 36058 59.657384201866 3 +67 36066 59.657544201866 1 +67 36091 59.924398582336 0 +67 36096 59.924558582336 1 +67 36117 59.931276912849 3 +67 36125 59.931436912849 1 +67 36142 59.957384211172 3 +67 36150 59.957544211172 1 +67 36175 60.224398582336 0 +67 36180 60.224558582336 1 +67 36218 60.257384220865 3 +67 36226 60.257544220865 1 +67 36251 60.524398582336 0 +67 36256 60.524558582336 1 +67 36294 60.557384230953 3 +67 36302 60.557544230953 1 +67 36327 60.824398582336 0 +67 36332 60.824558582336 1 +67 36370 60.857384241392 3 +67 36378 60.857544241392 1 +67 36403 61.124398582336 0 +67 36408 61.124558582336 1 +67 36446 61.157384252127 3 +67 36454 61.157544252127 1 +67 36479 61.424398582336 0 +67 36484 61.424558582336 1 +67 36522 61.45738426323 3 +67 36530 61.45754426323 1 +67 36555 61.724398582336 0 +67 36560 61.724558582336 1 +67 36598 61.757384274635 3 +67 36606 61.757544274635 1 +67 36631 62.024398582336 0 +67 36636 62.024558582336 1 +67 36674 62.057384285728 3 +67 36682 62.057544285728 1 +67 36707 62.324398582336 0 +67 36712 62.324558582336 1 +67 36750 62.357384295767 3 +67 36758 62.357544295767 1 +67 36783 62.624398582336 0 +67 36788 62.624558582336 1 +67 36826 62.657384304708 3 +67 36834 62.657544304708 1 +67 36859 62.924398582336 0 +67 36864 62.924558582336 1 +67 36902 62.957384312531 3 +67 36910 62.957544312531 1 +68 1262 6.1 0 +68 1262 6.1 0 +68 1285 6.214557014941 0 +68 1285 6.214557014941 0 +68 1292 6.214717014941 0 +68 1292 6.214717014941 0 +68 1319 6.231276487063 0 +68 1319 6.231276487063 0 +68 1326 6.231436487063 0 +68 1326 6.231436487063 0 +68 1358 6.257384178941 0 +68 1358 6.257384178941 0 +68 1369 6.257544178941 0 +68 1369 6.257544178941 0 +68 1468 6.514557005507 0 +68 1468 6.514557005507 0 +68 1475 6.514717005507 0 +68 1475 6.514717005507 0 +68 1499 6.524398582336 0 +68 1499 6.524398582336 0 +68 1507 6.524558582336 0 +68 1507 6.524558582336 0 +68 1535 6.531276486831 0 +68 1535 6.531276486831 0 +68 1542 6.531436486831 0 +68 1542 6.531436486831 0 +68 1575 6.557384179276 0 +68 1575 6.557384179276 0 +68 1586 6.557544179276 0 +68 1586 6.557544179276 0 +68 1685 6.814556995188 0 +68 1685 6.814556995188 0 +68 1692 6.814716995188 0 +68 1692 6.814716995188 0 +68 1716 6.824398582336 0 +68 1716 6.824398582336 0 +68 1724 6.824558582336 0 +68 1724 6.824558582336 0 +68 1752 6.831276486811 0 +68 1752 6.831276486811 0 +68 1759 6.831436486811 0 +68 1759 6.831436486811 0 +68 1792 6.857384179479 0 +68 1792 6.857384179479 0 +68 1803 6.857544179479 0 +68 1803 6.857544179479 0 +68 1902 7.114556984223 0 +68 1902 7.114556984223 0 +68 1909 7.114716984223 0 +68 1909 7.114716984223 0 +68 1933 7.124398582336 0 +68 1933 7.124398582336 0 +68 1941 7.124558582336 0 +68 1941 7.124558582336 0 +68 1969 7.131276486808 0 +68 1969 7.131276486808 0 +68 1976 7.131436486808 0 +68 1976 7.131436486808 0 +68 2009 7.157384179668 0 +68 2009 7.157384179668 0 +68 2020 7.157544179668 0 +68 2020 7.157544179668 0 +68 2119 7.414556972819 0 +68 2119 7.414556972819 0 +68 2126 7.414716972819 0 +68 2126 7.414716972819 0 +68 2150 7.424398582336 0 +68 2150 7.424398582336 0 +68 2158 7.424558582336 0 +68 2158 7.424558582336 0 +68 2186 7.431276486796 0 +68 2186 7.431276486796 0 +68 2193 7.431436486796 0 +68 2193 7.431436486796 0 +68 2226 7.45738417987 0 +68 2226 7.45738417987 0 +68 2237 7.45754417987 0 +68 2237 7.45754417987 0 +68 2336 7.714556960939 0 +68 2336 7.714556960939 0 +68 2343 7.714716960939 0 +68 2343 7.714716960939 0 +68 2367 7.724398582336 0 +68 2367 7.724398582336 0 +68 2375 7.724558582336 0 +68 2375 7.724558582336 0 +68 2403 7.731276486797 0 +68 2403 7.731276486797 0 +68 2410 7.731436486797 0 +68 2410 7.731436486797 0 +68 2443 7.757384180075 0 +68 2443 7.757384180075 0 +68 2454 7.757544180075 0 +68 2454 7.757544180075 0 +68 2553 8.014556948475 0 +68 2553 8.014556948475 0 +68 2560 8.014716948475 0 +68 2560 8.014716948475 0 +68 2584 8.024398582336 0 +68 2584 8.024398582336 0 +68 2592 8.024558582336 0 +68 2592 8.024558582336 0 +68 2620 8.031276486795 0 +68 2620 8.031276486795 0 +68 2627 8.031436486795 0 +68 2627 8.031436486795 0 +68 2660 8.057384180287 0 +68 2660 8.057384180287 0 +68 2671 8.057544180287 0 +68 2671 8.057544180287 0 +68 2728 8.143993909962 0 +68 2728 8.143993909962 0 +68 2743 8.144153909962 0 +68 2743 8.144153909962 0 +68 2770 8.314556935291 0 +68 2770 8.314556935291 0 +68 2777 8.314716935291 0 +68 2777 8.314716935291 0 +68 2801 8.324398582336 0 +68 2801 8.324398582336 0 +68 2809 8.324558582336 0 +68 2809 8.324558582336 0 +68 2841 8.331276486806 0 +68 2841 8.331276486806 0 +68 2848 8.331436486806 0 +68 2848 8.331436486806 0 +68 2881 8.3573841805 0 +68 2881 8.3573841805 0 +68 2892 8.3575441805 0 +68 2892 8.3575441805 0 +68 2949 8.443993908226 0 +68 2949 8.443993908226 0 +68 2964 8.444153908226 0 +68 2964 8.444153908226 0 +68 2995 8.61455692156 0 +68 2995 8.61455692156 0 +68 3002 8.61471692156 0 +68 3002 8.61471692156 0 +68 3026 8.624398582336 0 +68 3026 8.624398582336 0 +68 3034 8.624558582336 0 +68 3034 8.624558582336 0 +68 3066 8.631276486794 0 +68 3066 8.631276486794 0 +68 3073 8.631436486794 0 +68 3073 8.631436486794 0 +68 3106 8.657384180719 0 +68 3106 8.657384180719 0 +68 3117 8.657544180719 0 +68 3117 8.657544180719 0 +68 3174 8.743993906406 0 +68 3174 8.743993906406 0 +68 3189 8.744153906406 0 +68 3189 8.744153906406 0 +68 3220 8.914556907259 0 +68 3220 8.914556907259 0 +68 3227 8.914716907259 0 +68 3227 8.914716907259 0 +68 3251 8.924398582336 0 +68 3251 8.924398582336 0 +68 3259 8.924558582336 0 +68 3259 8.924558582336 0 +68 3291 8.931276486763 0 +68 3291 8.931276486763 0 +68 3298 8.931436486763 0 +68 3298 8.931436486763 0 +68 3331 8.957384180943 0 +68 3331 8.957384180943 0 +68 3342 8.957544180943 0 +68 3342 8.957544180943 0 +68 3399 9.04399390454 0 +68 3399 9.04399390454 0 +68 3414 9.04415390454 0 +68 3414 9.04415390454 0 +68 3445 9.214556892419 0 +68 3445 9.214556892419 0 +68 3452 9.214716892419 0 +68 3452 9.214716892419 0 +68 3476 9.224398582336 0 +68 3476 9.224398582336 0 +68 3484 9.224558582336 0 +68 3484 9.224558582336 0 +68 3516 9.23127648678 0 +68 3516 9.23127648678 0 +68 3523 9.23143648678 0 +68 3523 9.23143648678 0 +68 3556 9.257384181166 0 +68 3556 9.257384181166 0 +68 3567 9.257544181166 0 +68 3567 9.257544181166 0 +68 3624 9.343993902652 0 +68 3624 9.343993902652 0 +68 3639 9.344153902652 0 +68 3639 9.344153902652 0 +68 3670 9.514556877151 0 +68 3670 9.514556877151 0 +68 3677 9.514716877151 0 +68 3677 9.514716877151 0 +68 3701 9.524398582336 0 +68 3701 9.524398582336 0 +68 3709 9.524558582336 0 +68 3709 9.524558582336 0 +68 3741 9.531276486774 0 +68 3741 9.531276486774 0 +68 3748 9.531436486774 0 +68 3748 9.531436486774 0 +68 3781 9.557384181399 0 +68 3781 9.557384181399 0 +68 3792 9.557544181399 0 +68 3792 9.557544181399 0 +68 3849 9.643993900772 0 +68 3849 9.643993900772 0 +68 3864 9.644153900772 0 +68 3864 9.644153900772 0 +68 3895 9.814556861723 0 +68 3895 9.814556861723 0 +68 3902 9.814716861723 0 +68 3902 9.814716861723 0 +68 3926 9.824398582336 0 +68 3926 9.824398582336 0 +68 3934 9.824558582336 0 +68 3934 9.824558582336 0 +68 3966 9.831276486773 0 +68 3966 9.831276486773 0 +68 3973 9.831436486773 0 +68 3973 9.831436486773 0 +68 4006 9.857384181638 0 +68 4006 9.857384181638 0 +68 4017 9.857544181638 0 +68 4017 9.857544181638 0 +68 4074 9.943993898897 0 +68 4074 9.943993898897 0 +68 4089 9.944153898897 0 +68 4089 9.944153898897 0 +68 4120 10.114556846518 0 +68 4120 10.114556846518 0 +68 4127 10.114716846518 0 +68 4127 10.114716846518 0 +68 4151 10.124398582336 0 +68 4151 10.124398582336 0 +68 4159 10.124558582336 0 +68 4159 10.124558582336 0 +68 4191 10.131276486772 0 +68 4191 10.131276486772 0 +68 4198 10.131436486772 0 +68 4198 10.131436486772 0 +68 4231 10.157384181883 0 +68 4231 10.157384181883 0 +68 4242 10.157544181883 0 +68 4242 10.157544181883 0 +68 4299 10.243993897044 0 +68 4299 10.243993897044 0 +68 4314 10.244153897044 0 +68 4314 10.244153897044 0 +68 4345 10.414556831999 0 +68 4345 10.414556831999 0 +68 4352 10.414716831999 0 +68 4352 10.414716831999 0 +68 4376 10.424398582336 0 +68 4376 10.424398582336 0 +68 4384 10.424558582336 0 +68 4384 10.424558582336 0 +68 4416 10.431276486761 0 +68 4416 10.431276486761 0 +68 4423 10.431436486761 0 +68 4423 10.431436486761 0 +68 4456 10.457384182119 0 +68 4456 10.457384182119 0 +68 4467 10.457544182119 0 +68 4467 10.457544182119 0 +68 4524 10.54399389528 0 +68 4524 10.54399389528 0 +68 4539 10.54415389528 0 +68 4539 10.54415389528 0 +68 4574 10.714556820945 0 +68 4574 10.714556820945 0 +68 4581 10.714716820945 0 +68 4581 10.714716820945 0 +68 4609 10.724398582336 0 +68 4609 10.724398582336 0 +68 4617 10.724558582336 0 +68 4617 10.724558582336 0 +68 4649 10.731276486773 0 +68 4649 10.731276486773 0 +68 4656 10.731436486773 0 +68 4656 10.731436486773 0 +68 4689 10.757384182346 0 +68 4689 10.757384182346 0 +68 4700 10.757544182346 0 +68 4700 10.757544182346 0 +68 4758 10.843993893701 0 +68 4758 10.843993893701 0 +68 4777 10.844153893701 0 +68 4777 10.844153893701 0 +68 4807 11.014556825169 0 +68 4807 11.014556825169 0 +68 4814 11.014716825169 0 +68 4814 11.014716825169 0 +68 4842 11.024398582336 0 +68 4842 11.024398582336 0 +68 4850 11.024558582336 0 +68 4850 11.024558582336 0 +68 4883 11.031276486765 0 +68 4883 11.031276486765 0 +68 4894 11.031436486765 0 +68 4894 11.031436486765 0 +68 4922 11.057384182606 0 +68 4922 11.057384182606 0 +68 4933 11.057544182606 0 +68 4933 11.057544182606 0 +68 4991 11.14399389274 0 +68 4991 11.14399389274 0 +68 5010 11.14415389274 0 +68 5010 11.14415389274 0 +68 5040 11.31455683863 0 +68 5040 11.31455683863 0 +68 5047 11.31471683863 0 +68 5047 11.31471683863 0 +68 5075 11.324398582336 0 +68 5075 11.324398582336 0 +68 5083 11.324558582336 0 +68 5083 11.324558582336 0 +68 5116 11.33127648678 0 +68 5116 11.33127648678 0 +68 5127 11.33143648678 0 +68 5127 11.33143648678 0 +68 5154 11.35738418284 0 +68 5154 11.35738418284 0 +68 5161 11.35754418284 0 +68 5161 11.35754418284 0 +68 5224 11.443993892392 0 +68 5224 11.443993892392 0 +68 5243 11.444153892392 0 +68 5243 11.444153892392 0 +68 5273 11.614556853551 0 +68 5273 11.614556853551 0 +68 5280 11.614716853551 0 +68 5280 11.614716853551 0 +68 5308 11.624398582336 0 +68 5308 11.624398582336 0 +68 5316 11.624558582336 0 +68 5316 11.624558582336 0 +68 5349 11.63127648679 0 +68 5349 11.63127648679 0 +68 5360 11.63143648679 0 +68 5360 11.63143648679 0 +68 5391 11.65738418309 0 +68 5391 11.65738418309 0 +68 5398 11.65754418309 0 +68 5398 11.65754418309 0 +68 5465 11.74399389255 0 +68 5465 11.74399389255 0 +68 5484 11.74415389255 0 +68 5484 11.74415389255 0 +68 5514 11.914556868865 0 +68 5514 11.914556868865 0 +68 5521 11.914716868865 0 +68 5521 11.914716868865 0 +68 5549 11.924398582336 0 +68 5549 11.924398582336 0 +68 5557 11.924558582336 0 +68 5557 11.924558582336 0 +68 5590 11.931276486788 0 +68 5590 11.931276486788 0 +68 5601 11.931436486788 0 +68 5601 11.931436486788 0 +68 5632 11.957384183349 0 +68 5632 11.957384183349 0 +68 5639 11.957544183349 0 +68 5639 11.957544183349 0 +68 5706 12.043993893167 0 +68 5706 12.043993893167 0 +68 5725 12.044153893167 0 +68 5725 12.044153893167 0 +68 5755 12.214556884343 0 +68 5755 12.214556884343 0 +68 5762 12.214716884343 0 +68 5762 12.214716884343 0 +68 5790 12.224398582336 0 +68 5790 12.224398582336 0 +68 5798 12.224558582336 0 +68 5798 12.224558582336 0 +68 5831 12.231276486807 0 +68 5831 12.231276486807 0 +68 5842 12.231436486807 0 +68 5842 12.231436486807 0 +68 5873 12.257384183599 0 +68 5873 12.257384183599 0 +68 5880 12.257544183599 0 +68 5880 12.257544183599 0 +68 5947 12.343993893974 0 +68 5947 12.343993893974 0 +68 5966 12.344153893974 0 +68 5966 12.344153893974 0 +68 5996 12.514556899849 0 +68 5996 12.514556899849 0 +68 6003 12.514716899849 0 +68 6003 12.514716899849 0 +68 6031 12.524398582336 0 +68 6031 12.524398582336 0 +68 6039 12.524558582336 0 +68 6039 12.524558582336 0 +68 6072 12.531276486799 0 +68 6072 12.531276486799 0 +68 6083 12.531436486799 0 +68 6083 12.531436486799 0 +68 6114 12.557384183875 0 +68 6114 12.557384183875 0 +68 6121 12.557544183875 0 +68 6121 12.557544183875 0 +68 6188 12.643993894778 0 +68 6188 12.643993894778 0 +68 6207 12.644153894778 0 +68 6207 12.644153894778 0 +68 6237 12.814556915398 0 +68 6237 12.814556915398 0 +68 6244 12.814716915398 0 +68 6244 12.814716915398 0 +68 6272 12.824398582336 0 +68 6272 12.824398582336 0 +68 6280 12.824558582336 0 +68 6280 12.824558582336 0 +68 6313 12.831276486802 0 +68 6313 12.831276486802 0 +68 6324 12.831436486802 0 +68 6324 12.831436486802 0 +68 6355 12.857384184139 0 +68 6355 12.857384184139 0 +68 6362 12.857544184139 0 +68 6362 12.857544184139 0 +68 6429 12.943993895594 0 +68 6429 12.943993895594 0 +68 6448 12.944153895594 0 +68 6448 12.944153895594 0 +68 6478 13.114556930999 0 +68 6478 13.114556930999 0 +68 6485 13.114716930999 0 +68 6485 13.114716930999 0 +68 6513 13.124398582336 0 +68 6513 13.124398582336 0 +68 6521 13.124558582336 0 +68 6521 13.124558582336 0 +68 6554 13.131276486785 0 +68 6554 13.131276486785 0 +68 6565 13.131436486785 0 +68 6565 13.131436486785 0 +68 6596 13.157384184416 0 +68 6596 13.157384184416 0 +68 6603 13.157544184416 0 +68 6603 13.157544184416 0 +68 6670 13.243993896412 0 +68 6670 13.243993896412 0 +68 6689 13.244153896412 0 +68 6689 13.244153896412 0 +68 6719 13.41455694659 0 +68 6719 13.41455694659 0 +68 6726 13.41471694659 0 +68 6726 13.41471694659 0 +68 6754 13.424398582336 0 +68 6754 13.424398582336 0 +68 6762 13.424558582336 0 +68 6762 13.424558582336 0 +68 6795 13.431276486795 0 +68 6795 13.431276486795 0 +68 6806 13.431436486795 0 +68 6806 13.431436486795 0 +68 6837 13.457384184698 0 +68 6837 13.457384184698 0 +68 6844 13.457544184698 0 +68 6844 13.457544184698 0 +68 6911 13.543993897233 0 +68 6911 13.543993897233 0 +68 6930 13.544153897233 0 +68 6930 13.544153897233 0 +68 6960 13.714556962198 0 +68 6960 13.714556962198 0 +68 6967 13.714716962198 0 +68 6967 13.714716962198 0 +68 6995 13.724398582336 0 +68 6995 13.724398582336 0 +68 7003 13.724558582336 0 +68 7003 13.724558582336 0 +68 7036 13.7312764868 0 +68 7036 13.7312764868 0 +68 7047 13.7314364868 0 +68 7047 13.7314364868 0 +68 7078 13.757384184966 0 +68 7078 13.757384184966 0 +68 7085 13.757544184966 0 +68 7085 13.757544184966 0 +68 7152 13.843993898057 0 +68 7152 13.843993898057 0 +68 7171 13.844153898057 0 +68 7171 13.844153898057 0 +68 7202 14.014556977862 0 +68 7202 14.014556977862 0 +68 7213 14.014716977862 0 +68 7213 14.014716977862 0 +68 7236 14.024398582336 0 +68 7236 14.024398582336 0 +68 7244 14.024558582336 0 +68 7244 14.024558582336 0 +68 7277 14.031276486793 0 +68 7277 14.031276486793 0 +68 7288 14.031436486793 0 +68 7288 14.031436486793 0 +68 7319 14.057384185242 0 +68 7319 14.057384185242 0 +68 7326 14.057544185242 0 +68 7326 14.057544185242 0 +68 7393 14.14399389887 0 +68 7393 14.14399389887 0 +68 7412 14.14415389887 0 +68 7412 14.14415389887 0 +68 7443 14.314556993496 0 +68 7443 14.314556993496 0 +68 7454 14.314716993496 0 +68 7454 14.314716993496 0 +68 7477 14.324398582336 0 +68 7477 14.324398582336 0 +68 7485 14.324558582336 0 +68 7485 14.324558582336 0 +68 7518 14.331276486806 0 +68 7518 14.331276486806 0 +68 7529 14.331436486806 0 +68 7529 14.331436486806 0 +68 7560 14.357384185527 0 +68 7560 14.357384185527 0 +68 7567 14.357544185527 0 +68 7567 14.357544185527 0 +68 7634 14.443993899694 0 +68 7634 14.443993899694 0 +68 7653 14.444153899694 0 +68 7653 14.444153899694 0 +68 7684 14.614557009101 0 +68 7684 14.614557009101 0 +68 7695 14.614717009101 0 +68 7695 14.614717009101 0 +68 7718 14.624398582336 0 +68 7718 14.624398582336 0 +68 7726 14.624558582336 0 +68 7726 14.624558582336 0 +68 7759 14.631276486796 0 +68 7759 14.631276486796 0 +68 7770 14.631436486796 0 +68 7770 14.631436486796 0 +68 7801 14.657384185824 0 +68 7801 14.657384185824 0 +68 7808 14.657544185824 0 +68 7808 14.657544185824 0 +68 7875 14.743993900511 0 +68 7875 14.743993900511 0 +68 7894 14.744153900511 0 +68 7894 14.744153900511 0 +68 7925 14.914557024712 0 +68 7925 14.914557024712 0 +68 7936 14.914717024712 0 +68 7936 14.914717024712 0 +68 7959 14.924398582336 0 +68 7959 14.924398582336 0 +68 7967 14.924558582336 0 +68 7967 14.924558582336 0 +68 8000 14.931276486792 0 +68 8000 14.931276486792 0 +68 8011 14.931436486792 0 +68 8011 14.931436486792 0 +68 8042 14.957384186118 0 +68 8042 14.957384186118 0 +68 8049 14.957544186118 0 +68 8049 14.957544186118 0 +68 8116 15.043993901332 0 +68 8116 15.043993901332 0 +68 8135 15.044153901332 0 +68 8135 15.044153901332 0 +68 8166 15.214557040331 0 +68 8166 15.214557040331 0 +68 8177 15.214717040331 0 +68 8177 15.214717040331 0 +68 8200 15.224398582336 0 +68 8200 15.224398582336 0 +68 8208 15.224558582336 0 +68 8208 15.224558582336 0 +68 8241 15.231276486777 0 +68 8241 15.231276486777 0 +68 8252 15.231436486777 0 +68 8252 15.231436486777 0 +68 8283 15.257384186413 0 +68 8283 15.257384186413 0 +68 8290 15.257544186413 0 +68 8290 15.257544186413 0 +68 8357 15.343993902158 0 +68 8357 15.343993902158 0 +68 8376 15.344153902158 0 +68 8376 15.344153902158 0 +68 8407 15.514557055996 0 +68 8407 15.514557055996 0 +68 8418 15.514717055996 0 +68 8418 15.514717055996 0 +68 8441 15.524398582336 0 +68 8441 15.524398582336 0 +68 8449 15.524558582336 0 +68 8449 15.524558582336 0 +68 8482 15.531276486786 0 +68 8482 15.531276486786 0 +68 8493 15.531436486786 0 +68 8493 15.531436486786 0 +68 8524 15.557384186718 0 +68 8524 15.557384186718 0 +68 8531 15.557544186718 0 +68 8531 15.557544186718 0 +68 8598 15.643993902982 0 +68 8598 15.643993902982 0 +68 8617 15.644153902982 0 +68 8617 15.644153902982 0 +68 8648 15.81455707161 0 +68 8648 15.81455707161 0 +68 8659 15.81471707161 0 +68 8659 15.81471707161 0 +68 8682 15.824398582336 0 +68 8682 15.824398582336 0 +68 8690 15.824558582336 0 +68 8690 15.824558582336 0 +68 8723 15.831276486807 0 +68 8723 15.831276486807 0 +68 8734 15.831436486807 0 +68 8734 15.831436486807 0 +68 8765 15.857384187027 0 +68 8765 15.857384187027 0 +68 8772 15.857544187027 0 +68 8772 15.857544187027 0 +68 8839 15.943993903822 0 +68 8839 15.943993903822 0 +68 8858 15.944153903822 0 +68 8858 15.944153903822 0 +68 8889 16.11455708724 0 +68 8889 16.11455708724 0 +68 8900 16.11471708724 0 +68 8900 16.11471708724 0 +68 8927 16.124398582336 0 +68 8927 16.124398582336 0 +68 8935 16.124558582336 0 +68 8935 16.124558582336 0 +68 8968 16.131276486791 0 +68 8968 16.131276486791 0 +68 8979 16.131436486791 0 +68 8979 16.131436486791 0 +68 9010 16.157384187335 0 +68 9010 16.157384187335 0 +68 9017 16.157544187335 0 +68 9017 16.157544187335 0 +68 9088 16.243993904634 0 +68 9088 16.243993904634 0 +68 9107 16.244153904634 0 +68 9107 16.244153904634 0 +68 9138 16.414557102881 0 +68 9138 16.414557102881 0 +68 9149 16.414717102881 0 +68 9149 16.414717102881 0 +68 9176 16.424398582336 0 +68 9176 16.424398582336 0 +68 9184 16.424558582336 0 +68 9184 16.424558582336 0 +68 9217 16.431276486767 0 +68 9217 16.431276486767 0 +68 9228 16.431436486767 0 +68 9228 16.431436486767 0 +68 9259 16.45738418766 0 +68 9259 16.45738418766 0 +68 9266 16.45754418766 0 +68 9266 16.45754418766 0 +68 9337 16.543993905451 0 +68 9337 16.543993905451 0 +68 9356 16.544153905451 0 +68 9356 16.544153905451 0 +68 9387 16.714557118536 0 +68 9387 16.714557118536 0 +68 9398 16.714717118536 0 +68 9398 16.714717118536 0 +68 9425 16.724398582336 0 +68 9425 16.724398582336 0 +68 9433 16.724558582336 0 +68 9433 16.724558582336 0 +68 9466 16.731276486767 0 +68 9466 16.731276486767 0 +68 9477 16.731436486767 0 +68 9477 16.731436486767 0 +68 9508 16.757384187976 0 +68 9508 16.757384187976 0 +68 9515 16.757544187976 0 +68 9515 16.757544187976 0 +68 9586 16.843993906273 0 +68 9586 16.843993906273 0 +68 9605 16.844153906273 0 +68 9605 16.844153906273 0 +68 9636 17.014557134175 0 +68 9636 17.014557134175 0 +68 9647 17.014717134175 0 +68 9647 17.014717134175 0 +68 9674 17.024398582336 0 +68 9674 17.024398582336 0 +68 9682 17.024558582336 0 +68 9682 17.024558582336 0 +68 9715 17.031276486771 0 +68 9715 17.031276486771 0 +68 9726 17.031436486771 0 +68 9726 17.031436486771 0 +68 9757 17.057384188287 0 +68 9757 17.057384188287 0 +68 9764 17.057544188287 0 +68 9764 17.057544188287 0 +68 9835 17.143993907123 0 +68 9835 17.143993907123 0 +68 9854 17.144153907123 0 +68 9854 17.144153907123 0 +68 9885 17.314557149858 0 +68 9885 17.314557149858 0 +68 9896 17.314717149858 0 +68 9896 17.314717149858 0 +68 9923 17.324398582336 0 +68 9923 17.324398582336 0 +68 9931 17.324558582336 0 +68 9931 17.324558582336 0 +68 9964 17.331276486778 0 +68 9964 17.331276486778 0 +68 9975 17.331436486778 0 +68 9975 17.331436486778 0 +68 10006 17.357384188603 0 +68 10006 17.357384188603 0 +68 10013 17.357544188603 0 +68 10013 17.357544188603 0 +68 10084 17.443993907967 0 +68 10084 17.443993907967 0 +68 10103 17.444153907967 0 +68 10103 17.444153907967 0 +68 10134 17.614557165512 0 +68 10134 17.614557165512 0 +68 10145 17.614717165512 0 +68 10145 17.614717165512 0 +68 10172 17.624398582336 0 +68 10172 17.624398582336 0 +68 10180 17.624558582336 0 +68 10180 17.624558582336 0 +68 10213 17.631276486782 0 +68 10213 17.631276486782 0 +68 10224 17.631436486782 0 +68 10224 17.631436486782 0 +68 10255 17.657384188908 0 +68 10255 17.657384188908 0 +68 10262 17.657544188908 0 +68 10262 17.657544188908 0 +68 10333 17.74399390881 0 +68 10333 17.74399390881 0 +68 10352 17.74415390881 0 +68 10352 17.74415390881 0 +68 10383 17.914557181155 0 +68 10383 17.914557181155 0 +68 10394 17.914717181155 0 +68 10394 17.914717181155 0 +68 10417 17.924398582336 0 +68 10417 17.924398582336 0 +68 10425 17.924558582336 0 +68 10425 17.924558582336 0 +68 10458 17.931276486796 0 +68 10458 17.931276486796 0 +68 10469 17.931436486796 0 +68 10469 17.931436486796 0 +68 10500 17.957384189225 0 +68 10500 17.957384189225 0 +68 10507 17.957544189225 0 +68 10507 17.957544189225 0 +68 10574 18.04399390965 0 +68 10574 18.04399390965 0 +68 10593 18.04415390965 0 +68 10593 18.04415390965 0 +68 10625 18.214557196811 0 +68 10625 18.214557196811 0 +68 10640 18.214717196811 0 +68 10640 18.214717196811 0 +68 10658 18.224398582336 0 +68 10658 18.224398582336 0 +68 10666 18.224558582336 0 +68 10666 18.224558582336 0 +68 10695 18.231276486817 0 +68 10695 18.231276486817 0 +68 10706 18.231436486817 0 +68 10706 18.231436486817 0 +68 10737 18.257384189554 0 +68 10737 18.257384189554 0 +68 10744 18.257544189554 0 +68 10744 18.257544189554 0 +68 10811 18.343993910503 0 +68 10811 18.343993910503 0 +68 10830 18.344153910503 0 +68 10830 18.344153910503 0 +68 10858 18.514557211927 0 +68 10858 18.514557211927 0 +68 10873 18.514717211927 0 +68 10873 18.514717211927 0 +68 10891 18.524398582336 0 +68 10891 18.524398582336 0 +68 10899 18.524558582336 0 +68 10899 18.524558582336 0 +68 10928 18.531276486818 0 +68 10928 18.531276486818 0 +68 10939 18.531436486818 0 +68 10939 18.531436486818 0 +68 10970 18.557384189884 0 +68 10970 18.557384189884 0 +68 10977 18.557544189884 0 +68 10977 18.557544189884 0 +68 11091 18.814557220024 0 +68 11091 18.814557220024 0 +68 11106 18.814717220024 0 +68 11106 18.814717220024 0 +68 11124 18.824398582336 0 +68 11124 18.824398582336 0 +68 11132 18.824558582336 0 +68 11132 18.824558582336 0 +68 11161 18.831276486814 0 +68 11161 18.831276486814 0 +68 11172 18.831436486814 0 +68 11172 18.831436486814 0 +68 11203 18.857384190227 0 +68 11203 18.857384190227 0 +68 11210 18.857544190227 0 +68 11210 18.857544190227 0 +68 11324 19.11455722262 0 +68 11324 19.11455722262 0 +68 11339 19.11471722262 0 +68 11339 19.11471722262 0 +68 11357 19.124398582336 0 +68 11357 19.124398582336 0 +68 11365 19.124558582336 0 +68 11365 19.124558582336 0 +68 11394 19.131276486813 0 +68 11394 19.131276486813 0 +68 11405 19.131436486813 0 +68 11405 19.131436486813 0 +68 11436 19.157384190586 0 +68 11436 19.157384190586 0 +68 11443 19.157544190586 0 +68 11443 19.157544190586 0 +68 11557 19.414557225292 0 +68 11557 19.414557225292 0 +68 11572 19.414717225292 0 +68 11572 19.414717225292 0 +68 11590 19.424398582336 0 +68 11590 19.424398582336 0 +68 11598 19.424558582336 0 +68 11598 19.424558582336 0 +68 11627 19.431276486792 0 +68 11627 19.431276486792 0 +68 11638 19.431436486792 0 +68 11638 19.431436486792 0 +68 11669 19.457384190936 0 +68 11669 19.457384190936 0 +68 11676 19.457544190936 0 +68 11676 19.457544190936 0 +68 11790 19.714557228908 0 +68 11790 19.714557228908 0 +68 11805 19.714717228908 0 +68 11805 19.714717228908 0 +68 11823 19.724398582336 0 +68 11823 19.724398582336 0 +68 11831 19.724558582336 0 +68 11831 19.724558582336 0 +68 11860 19.73127648675 0 +68 11860 19.73127648675 0 +68 11871 19.73143648675 0 +68 11871 19.73143648675 0 +68 11902 19.757384191083 0 +68 11902 19.757384191083 0 +68 11909 19.757544191083 0 +68 11909 19.757544191083 0 +68 12023 20.014557233572 0 +68 12023 20.014557233572 0 +68 12038 20.014717233572 0 +68 12038 20.014717233572 0 +68 12060 20.024398582336 0 +68 12060 20.024398582336 0 +68 12068 20.024558582336 0 +68 12068 20.024558582336 0 +68 12097 20.031276486573 0 +68 12097 20.031276486573 0 +68 12108 20.031436486573 0 +68 12108 20.031436486573 0 +68 12139 20.057384190919 0 +68 12139 20.057384190919 0 +68 12146 20.057544190919 0 +68 12146 20.057544190919 0 +68 12264 20.314557239262 0 +68 12264 20.314557239262 0 +68 12279 20.314717239262 0 +68 12279 20.314717239262 0 +68 12301 20.324398582336 0 +68 12301 20.324398582336 0 +68 12309 20.324558582336 0 +68 12309 20.324558582336 0 +68 12338 20.331276486402 0 +68 12338 20.331276486402 0 +68 12349 20.331436486402 0 +68 12349 20.331436486402 0 +68 12380 20.35738419086 0 +68 12380 20.35738419086 0 +68 12387 20.35754419086 0 +68 12387 20.35754419086 0 +68 12505 20.614557246038 0 +68 12505 20.614557246038 0 +68 12520 20.614717246038 0 +68 12520 20.614717246038 0 +68 12542 20.624398582336 0 +68 12542 20.624398582336 0 +68 12550 20.624558582336 0 +68 12550 20.624558582336 0 +68 12579 20.631276486279 0 +68 12579 20.631276486279 0 +68 12590 20.631436486279 0 +68 12590 20.631436486279 0 +68 12621 20.657384191065 0 +68 12621 20.657384191065 0 +68 12628 20.657544191065 0 +68 12628 20.657544191065 0 +68 12746 20.914557253923 0 +68 12746 20.914557253923 0 +68 12761 20.914717253923 0 +68 12761 20.914717253923 0 +68 12783 20.924398582336 0 +68 12783 20.924398582336 0 +68 12791 20.924558582336 0 +68 12791 20.924558582336 0 +68 12820 20.9312764863 0 +68 12820 20.9312764863 0 +68 12831 20.9314364863 0 +68 12831 20.9314364863 0 +68 12862 20.957384191416 0 +68 12862 20.957384191416 0 +68 12869 20.957544191416 0 +68 12869 20.957544191416 0 +68 12987 21.214557262739 0 +68 12987 21.214557262739 0 +68 13002 21.214717262739 0 +68 13002 21.214717262739 0 +68 13024 21.224398582336 0 +68 13024 21.224398582336 0 +68 13032 21.224558582336 0 +68 13032 21.224558582336 0 +68 13061 21.231276486377 0 +68 13061 21.231276486377 0 +68 13072 21.231436486377 0 +68 13072 21.231436486377 0 +68 13103 21.257384192086 0 +68 13103 21.257384192086 0 +68 13110 21.257544192086 0 +68 13110 21.257544192086 0 +68 13228 21.514557272413 0 +68 13228 21.514557272413 0 +68 13243 21.514717272413 0 +68 13243 21.514717272413 0 +68 13265 21.524398582336 0 +68 13265 21.524398582336 0 +68 13273 21.524558582336 0 +68 13273 21.524558582336 0 +68 13302 21.531276486403 0 +68 13302 21.531276486403 0 +68 13313 21.531436486403 0 +68 13313 21.531436486403 0 +68 13344 21.557384193076 0 +68 13344 21.557384193076 0 +68 13351 21.557544193076 0 +68 13351 21.557544193076 0 +68 13469 21.814557282935 0 +68 13469 21.814557282935 0 +68 13484 21.814717282935 0 +68 13484 21.814717282935 0 +68 13506 21.824398582336 0 +68 13506 21.824398582336 0 +68 13514 21.824558582336 0 +68 13514 21.824558582336 0 +68 13543 21.831276486387 0 +68 13543 21.831276486387 0 +68 13554 21.831436486387 0 +68 13554 21.831436486387 0 +68 13585 21.85738419435 0 +68 13585 21.85738419435 0 +68 13592 21.85754419435 0 +68 13592 21.85754419435 0 +68 13710 22.114557294257 0 +68 13710 22.114557294257 0 +68 13725 22.114717294257 0 +68 13725 22.114717294257 0 +68 13747 22.124398582336 0 +68 13747 22.124398582336 0 +68 13755 22.124558582336 0 +68 13755 22.124558582336 0 +68 13784 22.13127648632 0 +68 13784 22.13127648632 0 +68 13795 22.13143648632 0 +68 13795 22.13143648632 0 +68 13826 22.15738419591 0 +68 13826 22.15738419591 0 +68 13833 22.15754419591 0 +68 13833 22.15754419591 0 +68 13951 22.414557306336 0 +68 13951 22.414557306336 0 +68 13966 22.414717306336 0 +68 13966 22.414717306336 0 +68 13988 22.424398582336 0 +68 13988 22.424398582336 0 +68 13996 22.424558582336 0 +68 13996 22.424558582336 0 +68 14025 22.431276486231 0 +68 14025 22.431276486231 0 +68 14036 22.431436486231 0 +68 14036 22.431436486231 0 +68 14067 22.457384197834 0 +68 14067 22.457384197834 0 +68 14074 22.457544197834 0 +68 14074 22.457544197834 0 +68 14192 22.714557319146 0 +68 14192 22.714557319146 0 +68 14207 22.714717319146 0 +68 14207 22.714717319146 0 +68 14229 22.724398582336 0 +68 14229 22.724398582336 0 +68 14237 22.724558582336 0 +68 14237 22.724558582336 0 +68 14266 22.731276486104 0 +68 14266 22.731276486104 0 +68 14277 22.731436486104 0 +68 14277 22.731436486104 0 +68 14308 22.75738420026 0 +68 14308 22.75738420026 0 +68 14315 22.75754420026 0 +68 14315 22.75754420026 0 +68 14433 23.014557332675 0 +68 14433 23.014557332675 0 +68 14448 23.014717332675 0 +68 14448 23.014717332675 0 +68 14470 23.024398582336 0 +68 14470 23.024398582336 0 +68 14478 23.024558582336 0 +68 14478 23.024558582336 0 +68 14507 23.031276485972 0 +68 14507 23.031276485972 0 +68 14518 23.031436485972 0 +68 14518 23.031436485972 0 +68 14549 23.057384203204 0 +68 14549 23.057384203204 0 +68 14556 23.057544203204 0 +68 14556 23.057544203204 0 +68 14674 23.314557346848 0 +68 14674 23.314557346848 0 +68 14689 23.314717346848 0 +68 14689 23.314717346848 0 +68 14711 23.324398582336 0 +68 14711 23.324398582336 0 +68 14719 23.324558582336 0 +68 14719 23.324558582336 0 +68 14748 23.331276485713 0 +68 14748 23.331276485713 0 +68 14759 23.331436485713 0 +68 14759 23.331436485713 0 +68 14790 23.357384206722 0 +68 14790 23.357384206722 0 +68 14797 23.357544206722 0 +68 14797 23.357544206722 0 +68 14915 23.614557361743 0 +68 14915 23.614557361743 0 +68 14930 23.614717361743 0 +68 14930 23.614717361743 0 +68 14952 23.624398582336 0 +68 14952 23.624398582336 0 +68 14960 23.624558582336 0 +68 14960 23.624558582336 0 +68 14989 23.6312764855 0 +68 14989 23.6312764855 0 +68 15000 23.6314364855 0 +68 15000 23.6314364855 0 +68 15031 23.657384210857 0 +68 15031 23.657384210857 0 +68 15038 23.657544210857 0 +68 15038 23.657544210857 0 +68 15157 23.914557377256 0 +68 15157 23.914557377256 0 +68 15176 23.914717377256 0 +68 15176 23.914717377256 0 +68 15193 23.924398582336 0 +68 15193 23.924398582336 0 +68 15201 23.924558582336 0 +68 15201 23.924558582336 0 +68 15229 23.93127648528 0 +68 15229 23.93127648528 0 +68 15236 23.93143648528 0 +68 15236 23.93143648528 0 +68 15272 23.95738421565 0 +68 15272 23.95738421565 0 +68 15279 23.95754421565 0 +68 15279 23.95754421565 0 +68 15398 24.214557393408 0 +68 15398 24.214557393408 0 +68 15417 24.214717393408 0 +68 15417 24.214717393408 0 +68 15434 24.224398582336 0 +68 15434 24.224398582336 0 +68 15442 24.224558582336 0 +68 15442 24.224558582336 0 +68 15470 24.231276485173 0 +68 15470 24.231276485173 0 +68 15477 24.231436485173 0 +68 15477 24.231436485173 0 +68 15513 24.257384221045 0 +68 15513 24.257384221045 0 +68 15520 24.257544221045 0 +68 15520 24.257544221045 0 +68 15639 24.514557410256 0 +68 15639 24.514557410256 0 +68 15658 24.514717410256 0 +68 15658 24.514717410256 0 +68 15675 24.524398582336 0 +68 15675 24.524398582336 0 +68 15683 24.524558582336 0 +68 15683 24.524558582336 0 +68 15711 24.531276485097 0 +68 15711 24.531276485097 0 +68 15718 24.531436485097 0 +68 15718 24.531436485097 0 +68 15754 24.55738422706 0 +68 15754 24.55738422706 0 +68 15761 24.55754422706 0 +68 15761 24.55754422706 0 +68 15880 24.814557427619 0 +68 15880 24.814557427619 0 +68 15899 24.814717427619 0 +68 15899 24.814717427619 0 +68 15916 24.824398582336 0 +68 15916 24.824398582336 0 +68 15924 24.824558582336 0 +68 15924 24.824558582336 0 +68 15952 24.831276484864 0 +68 15952 24.831276484864 0 +68 15959 24.831436484864 0 +68 15959 24.831436484864 0 +68 15995 24.857384233855 0 +68 15995 24.857384233855 0 +68 16002 24.857544233855 0 +68 16002 24.857544233855 0 +68 16121 25.114557445125 0 +68 16121 25.114557445125 0 +68 16140 25.114717445125 0 +68 16140 25.114717445125 0 +68 16157 25.124398582336 0 +68 16157 25.124398582336 0 +68 16165 25.124558582336 0 +68 16165 25.124558582336 0 +68 16193 25.131276484116 0 +68 16193 25.131276484116 0 +68 16200 25.131436484116 0 +68 16200 25.131436484116 0 +68 16236 25.15738424158 0 +68 16236 25.15738424158 0 +68 16243 25.15754424158 0 +68 16243 25.15754424158 0 +68 16362 25.414557462649 0 +68 16362 25.414557462649 0 +68 16381 25.414717462649 0 +68 16381 25.414717462649 0 +68 16398 25.424398582336 0 +68 16398 25.424398582336 0 +68 16406 25.424558582336 0 +68 16406 25.424558582336 0 +68 16434 25.431276482795 0 +68 16434 25.431276482795 0 +68 16441 25.431436482795 0 +68 16441 25.431436482795 0 +68 16477 25.457384250111 0 +68 16477 25.457384250111 0 +68 16484 25.457544250111 0 +68 16484 25.457544250111 0 +68 16603 25.714557480245 0 +68 16603 25.714557480245 0 +68 16622 25.714717480245 0 +68 16622 25.714717480245 0 +68 16639 25.724398582336 0 +68 16639 25.724398582336 0 +68 16647 25.724558582336 0 +68 16647 25.724558582336 0 +68 16675 25.731276480874 0 +68 16675 25.731276480874 0 +68 16682 25.731436480874 0 +68 16682 25.731436480874 0 +68 16718 25.757384259482 0 +68 16718 25.757384259482 0 +68 16725 25.757544259482 0 +68 16725 25.757544259482 0 +68 16844 26.014557497945 0 +68 16844 26.014557497945 0 +68 16863 26.014717497945 0 +68 16863 26.014717497945 0 +68 16880 26.024398582336 0 +68 16880 26.024398582336 0 +68 16888 26.024558582336 0 +68 16888 26.024558582336 0 +68 16916 26.031276479731 0 +68 16916 26.031276479731 0 +68 16923 26.031436479731 0 +68 16923 26.031436479731 0 +68 16959 26.057384269815 0 +68 16959 26.057384269815 0 +68 16966 26.057544269815 0 +68 16966 26.057544269815 0 +68 17086 26.314557515616 0 +68 17086 26.314557515616 0 +68 17109 26.314717515616 0 +68 17109 26.314717515616 0 +68 17121 26.324398582336 0 +68 17121 26.324398582336 0 +68 17129 26.324558582336 0 +68 17129 26.324558582336 0 +68 17157 26.331276479849 0 +68 17157 26.331276479849 0 +68 17164 26.331436479849 0 +68 17164 26.331436479849 0 +68 17200 26.357384280927 0 +68 17200 26.357384280927 0 +68 17207 26.357544280927 0 +68 17207 26.357544280927 0 +68 17327 26.614557533368 0 +68 17327 26.614557533368 0 +68 17350 26.614717533368 0 +68 17350 26.614717533368 0 +68 17362 26.624398582336 0 +68 17362 26.624398582336 0 +68 17370 26.624558582336 0 +68 17370 26.624558582336 0 +68 17398 26.631276481362 0 +68 17398 26.631276481362 0 +68 17405 26.631436481362 0 +68 17405 26.631436481362 0 +68 17441 26.657384292372 0 +68 17441 26.657384292372 0 +68 17448 26.657544292372 0 +68 17448 26.657544292372 0 +68 17568 26.914557551168 0 +68 17568 26.914557551168 0 +68 17591 26.914717551168 0 +68 17591 26.914717551168 0 +68 17603 26.924398582336 0 +68 17603 26.924398582336 0 +68 17611 26.924558582336 0 +68 17611 26.924558582336 0 +68 17639 26.931276484209 0 +68 17639 26.931276484209 0 +68 17646 26.931436484209 0 +68 17646 26.931436484209 0 +68 17682 26.957384303661 0 +68 17682 26.957384303661 0 +68 17689 26.957544303661 0 +68 17689 26.957544303661 0 +68 17809 27.214557568504 0 +68 17809 27.214557568504 0 +68 17832 27.214717568504 0 +68 17832 27.214717568504 0 +68 17840 27.224398582336 0 +68 17840 27.224398582336 0 +68 17848 27.224558582336 0 +68 17848 27.224558582336 0 +68 17872 27.231276487819 0 +68 17872 27.231276487819 0 +68 17879 27.231436487819 0 +68 17879 27.231436487819 0 +68 17915 27.257384313921 0 +68 17915 27.257384313921 0 +68 17922 27.257544313921 0 +68 17922 27.257544313921 0 +68 18073 27.524398582336 0 +68 18073 27.524398582336 0 +68 18081 27.524558582336 0 +68 18081 27.524558582336 0 +68 18105 27.531276490771 0 +68 18105 27.531276490771 0 +68 18112 27.531436490771 0 +68 18112 27.531436490771 0 +68 18148 27.557384323167 0 +68 18148 27.557384323167 0 +68 18155 27.557544323167 0 +68 18155 27.557544323167 0 +68 18306 27.824398582336 0 +68 18306 27.824398582336 0 +68 18314 27.824558582336 0 +68 18314 27.824558582336 0 +68 18338 27.831276492635 0 +68 18338 27.831276492635 0 +68 18345 27.831436492635 0 +68 18345 27.831436492635 0 +68 18381 27.857384331293 0 +68 18381 27.857384331293 0 +68 18388 27.857544331293 0 +68 18388 27.857544331293 0 +68 18539 28.124398582336 0 +68 18539 28.124398582336 0 +68 18547 28.124558582336 0 +68 18547 28.124558582336 0 +68 18571 28.131276501988 0 +68 18571 28.131276501988 0 +68 18578 28.131436501988 0 +68 18578 28.131436501988 0 +68 18614 28.15738433818 0 +68 18614 28.15738433818 0 +68 18621 28.15754433818 0 +68 18621 28.15754433818 0 +68 18772 28.424398582336 0 +68 18772 28.424398582336 0 +68 18780 28.424558582336 0 +68 18780 28.424558582336 0 +68 18804 28.431276516789 0 +68 18804 28.431276516789 0 +68 18811 28.431436516789 0 +68 18811 28.431436516789 0 +68 18847 28.45738434442 0 +68 18847 28.45738434442 0 +68 18854 28.45754434442 0 +68 18854 28.45754434442 0 +68 19005 28.724398582336 0 +68 19005 28.724398582336 0 +68 19013 28.724558582336 0 +68 19013 28.724558582336 0 +68 19037 28.731276531174 0 +68 19037 28.731276531174 0 +68 19044 28.731436531174 0 +68 19044 28.731436531174 0 +68 19080 28.757384346246 0 +68 19080 28.757384346246 0 +68 19087 28.757544346246 0 +68 19087 28.757544346246 0 +68 19238 29.024398582336 0 +68 19238 29.024398582336 0 +68 19246 29.024558582336 0 +68 19246 29.024558582336 0 +68 19270 29.031276536731 0 +68 19270 29.031276536731 0 +68 19277 29.031436536731 0 +68 19277 29.031436536731 0 +68 19309 29.057384347069 0 +68 19309 29.057384347069 0 +68 19316 29.057544347069 0 +68 19316 29.057544347069 0 +68 19463 29.324398582336 0 +68 19463 29.324398582336 0 +68 19471 29.324558582336 0 +68 19471 29.324558582336 0 +68 19495 29.331276539274 0 +68 19495 29.331276539274 0 +68 19502 29.331436539274 0 +68 19502 29.331436539274 0 +68 19535 29.357384351202 0 +68 19535 29.357384351202 0 +68 19546 29.357544351202 0 +68 19546 29.357544351202 0 +68 19688 29.624398582336 0 +68 19688 29.624398582336 0 +68 19696 29.624558582336 0 +68 19696 29.624558582336 0 +68 19720 29.631276541563 0 +68 19720 29.631276541563 0 +68 19727 29.631436541563 0 +68 19727 29.631436541563 0 +68 19760 29.657384352581 0 +68 19760 29.657384352581 0 +68 19771 29.657544352581 0 +68 19771 29.657544352581 0 +68 19913 29.924398582336 0 +68 19913 29.924398582336 0 +68 19921 29.924558582336 0 +68 19921 29.924558582336 0 +68 19945 29.931276543815 0 +68 19945 29.931276543815 0 +68 19952 29.931436543815 0 +68 19952 29.931436543815 0 +68 19985 29.957384353115 0 +68 19985 29.957384353115 0 +68 19996 29.957544353115 0 +68 19996 29.957544353115 0 +68 20138 30.224398582336 0 +68 20138 30.224398582336 0 +68 20146 30.224558582336 0 +68 20146 30.224558582336 0 +68 20170 30.231276546125 0 +68 20170 30.231276546125 0 +68 20177 30.231436546125 0 +68 20177 30.231436546125 0 +68 20210 30.257384353112 0 +68 20210 30.257384353112 0 +68 20221 30.257544353112 0 +68 20221 30.257544353112 0 +68 20363 30.524398582336 0 +68 20363 30.524398582336 0 +68 20371 30.524558582336 0 +68 20371 30.524558582336 0 +68 20395 30.531276548461 0 +68 20395 30.531276548461 0 +68 20402 30.531436548461 0 +68 20402 30.531436548461 0 +68 20435 30.55738435311 0 +68 20435 30.55738435311 0 +68 20446 30.55754435311 0 +68 20446 30.55754435311 0 +68 20588 30.824398582336 0 +68 20588 30.824398582336 0 +68 20596 30.824558582336 0 +68 20596 30.824558582336 0 +68 20621 30.831276550899 0 +68 20621 30.831276550899 0 +68 20632 30.831436550899 0 +68 20632 30.831436550899 0 +68 20660 30.857384353107 0 +68 20660 30.857384353107 0 +68 20671 30.857544353107 0 +68 20671 30.857544353107 0 +68 20813 31.124398582336 0 +68 20813 31.124398582336 0 +68 20821 31.124558582336 0 +68 20821 31.124558582336 0 +68 20850 31.131276553412 0 +68 20850 31.131276553412 0 +68 20861 31.131436553412 0 +68 20861 31.131436553412 0 +68 20889 31.157384353102 0 +68 20889 31.157384353102 0 +68 20900 31.157544353102 0 +68 20900 31.157544353102 0 +68 20921 31.193586243446 0 +68 20921 31.193586243446 0 +68 20940 31.193746243446 0 +68 20940 31.193746243446 0 +68 21046 31.424398582336 0 +68 21046 31.424398582336 0 +68 21054 31.424558582336 0 +68 21054 31.424558582336 0 +68 21083 31.431276555932 0 +68 21083 31.431276555932 0 +68 21094 31.431436555932 0 +68 21094 31.431436555932 0 +68 21122 31.457384353095 0 +68 21122 31.457384353095 0 +68 21133 31.457544353095 0 +68 21133 31.457544353095 0 +68 21154 31.493586217696 0 +68 21154 31.493586217696 0 +68 21173 31.493746217696 0 +68 21173 31.493746217696 0 +68 21279 31.724398582336 0 +68 21279 31.724398582336 0 +68 21287 31.724558582336 0 +68 21287 31.724558582336 0 +68 21316 31.731276558446 0 +68 21316 31.731276558446 0 +68 21327 31.731436558446 0 +68 21327 31.731436558446 0 +68 21355 31.757384353088 0 +68 21355 31.757384353088 0 +68 21366 31.757544353088 0 +68 21366 31.757544353088 0 +68 21387 31.793586191964 0 +68 21387 31.793586191964 0 +68 21406 31.793746191964 0 +68 21406 31.793746191964 0 +68 21512 32.024398582336 0 +68 21512 32.024398582336 0 +68 21520 32.024558582336 0 +68 21520 32.024558582336 0 +68 21549 32.031276560973 0 +68 21549 32.031276560973 0 +68 21560 32.031436560973 0 +68 21560 32.031436560973 0 +68 21588 32.057384353084 0 +68 21588 32.057384353084 0 +68 21599 32.057544353084 0 +68 21599 32.057544353084 0 +68 21619 32.093586166255 0 +68 21619 32.093586166255 0 +68 21634 32.093746166255 0 +68 21634 32.093746166255 0 +68 21745 32.324398582336 0 +68 21745 32.324398582336 0 +68 21753 32.324558582336 0 +68 21753 32.324558582336 0 +68 21782 32.331276563405 0 +68 21782 32.331276563405 0 +68 21793 32.331436563405 0 +68 21793 32.331436563405 0 +68 21821 32.357384353083 0 +68 21821 32.357384353083 0 +68 21832 32.357544353083 0 +68 21832 32.357544353083 0 +68 21852 32.393586140428 0 +68 21852 32.393586140428 0 +68 21867 32.393746140428 0 +68 21867 32.393746140428 0 +68 21978 32.624398582336 0 +68 21978 32.624398582336 0 +68 21986 32.624558582336 0 +68 21986 32.624558582336 0 +68 22015 32.631276565904 0 +68 22015 32.631276565904 0 +68 22026 32.631436565904 0 +68 22026 32.631436565904 0 +68 22054 32.657384353086 0 +68 22054 32.657384353086 0 +68 22065 32.657544353086 0 +68 22065 32.657544353086 0 +68 22085 32.693586114644 0 +68 22085 32.693586114644 0 +68 22100 32.693746114644 0 +68 22100 32.693746114644 0 +68 22211 32.924398582336 0 +68 22211 32.924398582336 0 +68 22219 32.924558582336 0 +68 22219 32.924558582336 0 +68 22248 32.931276568399 0 +68 22248 32.931276568399 0 +68 22259 32.931436568399 0 +68 22259 32.931436568399 0 +68 22287 32.957384353093 0 +68 22287 32.957384353093 0 +68 22298 32.957544353093 0 +68 22298 32.957544353093 0 +68 22318 32.993586088864 0 +68 22318 32.993586088864 0 +68 22333 32.993746088864 0 +68 22333 32.993746088864 0 +68 22444 33.224398582336 0 +68 22444 33.224398582336 0 +68 22452 33.224558582336 0 +68 22452 33.224558582336 0 +68 22481 33.231276570893 0 +68 22481 33.231276570893 0 +68 22492 33.231436570893 0 +68 22492 33.231436570893 0 +68 22520 33.257384353102 0 +68 22520 33.257384353102 0 +68 22531 33.257544353102 0 +68 22531 33.257544353102 0 +68 22551 33.293586063102 0 +68 22551 33.293586063102 0 +68 22566 33.293746063102 0 +68 22566 33.293746063102 0 +68 22677 33.524398582336 0 +68 22677 33.524398582336 0 +68 22685 33.524558582336 0 +68 22685 33.524558582336 0 +68 22714 33.53127657339 0 +68 22714 33.53127657339 0 +68 22725 33.53143657339 0 +68 22725 33.53143657339 0 +68 22753 33.557384353115 0 +68 22753 33.557384353115 0 +68 22764 33.557544353115 0 +68 22764 33.557544353115 0 +68 22783 33.593586037322 0 +68 22783 33.593586037322 0 +68 22794 33.593746037322 0 +68 22794 33.593746037322 0 +68 22906 33.824398582336 0 +68 22906 33.824398582336 0 +68 22914 33.824558582336 0 +68 22914 33.824558582336 0 +68 22943 33.831276575887 0 +68 22943 33.831276575887 0 +68 22954 33.831436575887 0 +68 22954 33.831436575887 0 +68 22982 33.857384353132 0 +68 22982 33.857384353132 0 +68 22993 33.857544353132 0 +68 22993 33.857544353132 0 +68 23012 33.893586011596 0 +68 23012 33.893586011596 0 +68 23023 33.893746011596 0 +68 23023 33.893746011596 0 +68 23116 34.124398582336 0 +68 23116 34.124398582336 0 +68 23123 34.124558582336 0 +68 23123 34.124558582336 0 +68 23146 34.131276578412 0 +68 23146 34.131276578412 0 +68 23152 34.131436578412 0 +68 23152 34.131436578412 0 +68 23176 34.157384353151 0 +68 23176 34.157384353151 0 +68 23186 34.157544353151 0 +68 23186 34.157544353151 0 +68 23274 34.424398582336 0 +68 23274 34.424398582336 0 +68 23281 34.424558582336 0 +68 23281 34.424558582336 0 +68 23304 34.431276580926 0 +68 23304 34.431276580926 0 +68 23310 34.431436580926 0 +68 23310 34.431436580926 0 +68 23334 34.457384353173 0 +68 23334 34.457384353173 0 +68 23344 34.457544353173 0 +68 23344 34.457544353173 0 +68 23432 34.724398582336 0 +68 23432 34.724398582336 0 +68 23439 34.724558582336 0 +68 23439 34.724558582336 0 +68 23462 34.731276583436 0 +68 23462 34.731276583436 0 +68 23468 34.731436583436 0 +68 23468 34.731436583436 0 +68 23492 34.757384353199 0 +68 23492 34.757384353199 0 +68 23502 34.757544353199 0 +68 23502 34.757544353199 0 +68 23590 35.024398582336 0 +68 23590 35.024398582336 0 +68 23597 35.024558582336 0 +68 23597 35.024558582336 0 +68 23620 35.031276585897 0 +68 23620 35.031276585897 0 +68 23626 35.031436585897 0 +68 23626 35.031436585897 0 +68 23650 35.057384353228 0 +68 23650 35.057384353228 0 +68 23660 35.057544353228 0 +68 23660 35.057544353228 0 +68 23752 35.324398582336 0 +68 23752 35.324398582336 0 +68 23759 35.324558582336 0 +68 23759 35.324558582336 0 +68 23782 35.331276588437 0 +68 23782 35.331276588437 0 +68 23788 35.331436588437 0 +68 23788 35.331436588437 0 +68 23812 35.357384353251 0 +68 23812 35.357384353251 0 +68 23822 35.357544353251 0 +68 23822 35.357544353251 0 +68 23918 35.624398582336 0 +68 23918 35.624398582336 0 +68 23925 35.624558582336 0 +68 23925 35.624558582336 0 +68 23948 35.631276590971 0 +68 23948 35.631276590971 0 +68 23954 35.631436590971 0 +68 23954 35.631436590971 0 +68 23978 35.657384353247 0 +68 23978 35.657384353247 0 +68 23988 35.657544353247 0 +68 23988 35.657544353247 0 +68 24084 35.924398582336 0 +68 24084 35.924398582336 0 +68 24091 35.924558582336 0 +68 24091 35.924558582336 0 +68 24114 35.931276593481 0 +68 24114 35.931276593481 0 +68 24120 35.931436593481 0 +68 24120 35.931436593481 0 +68 24144 35.957384353214 0 +68 24144 35.957384353214 0 +68 24154 35.957544353214 0 +68 24154 35.957544353214 0 +68 24250 36.224398582336 0 +68 24250 36.224398582336 0 +68 24257 36.224558582336 0 +68 24257 36.224558582336 0 +68 24280 36.231276595961 0 +68 24280 36.231276595961 0 +68 24286 36.231436595961 0 +68 24286 36.231436595961 0 +68 24310 36.257384353163 0 +68 24310 36.257384353163 0 +68 24320 36.257544353163 0 +68 24320 36.257544353163 0 +68 24416 36.524398582336 0 +68 24416 36.524398582336 0 +68 24423 36.524558582336 0 +68 24423 36.524558582336 0 +68 24446 36.531276598459 0 +68 24446 36.531276598459 0 +68 24452 36.531436598459 0 +68 24452 36.531436598459 0 +68 24476 36.557384353111 0 +68 24476 36.557384353111 0 +68 24486 36.557544353111 0 +68 24486 36.557544353111 0 +68 24582 36.824398582336 0 +68 24582 36.824398582336 0 +68 24589 36.824558582336 0 +68 24589 36.824558582336 0 +68 24612 36.83127660094 0 +68 24612 36.83127660094 0 +68 24618 36.83143660094 0 +68 24618 36.83143660094 0 +68 24642 36.857384353084 0 +68 24642 36.857384353084 0 +68 24652 36.857544353084 0 +68 24652 36.857544353084 0 +68 24748 37.124398582336 0 +68 24748 37.124398582336 0 +68 24755 37.124558582336 0 +68 24755 37.124558582336 0 +68 24778 37.131276603404 0 +68 24778 37.131276603404 0 +68 24784 37.131436603404 0 +68 24784 37.131436603404 0 +68 24808 37.15738435309 0 +68 24808 37.15738435309 0 +68 24818 37.15754435309 0 +68 24818 37.15754435309 0 +68 24914 37.424398582336 0 +68 24914 37.424398582336 0 +68 24921 37.424558582336 0 +68 24921 37.424558582336 0 +68 24944 37.431276605886 0 +68 24944 37.431276605886 0 +68 24950 37.431436605886 0 +68 24950 37.431436605886 0 +68 24974 37.457384353113 0 +68 24974 37.457384353113 0 +68 24984 37.457544353113 0 +68 24984 37.457544353113 0 +68 25080 37.724398582336 0 +68 25080 37.724398582336 0 +68 25087 37.724558582336 0 +68 25087 37.724558582336 0 +68 25110 37.731276608365 0 +68 25110 37.731276608365 0 +68 25116 37.731436608365 0 +68 25116 37.731436608365 0 +68 25141 37.757384353145 0 +68 25141 37.757384353145 0 +68 25155 37.757544353145 0 +68 25155 37.757544353145 0 +68 25246 38.024398582336 0 +68 25246 38.024398582336 0 +68 25253 38.024558582336 0 +68 25253 38.024558582336 0 +68 25276 38.031276610826 0 +68 25276 38.031276610826 0 +68 25282 38.031436610826 0 +68 25282 38.031436610826 0 +68 25307 38.057384353181 0 +68 25307 38.057384353181 0 +68 25321 38.057544353181 0 +68 25321 38.057544353181 0 +68 25412 38.324398582336 0 +68 25412 38.324398582336 0 +68 25419 38.324558582336 0 +68 25419 38.324558582336 0 +68 25442 38.3312766133 0 +68 25442 38.3312766133 0 +68 25448 38.3314366133 0 +68 25448 38.3314366133 0 +68 25473 38.357384353213 0 +68 25473 38.357384353213 0 +68 25487 38.357544353213 0 +68 25487 38.357544353213 0 +68 25578 38.624398582336 0 +68 25578 38.624398582336 0 +68 25585 38.624558582336 0 +68 25585 38.624558582336 0 +68 25608 38.631276615791 0 +68 25608 38.631276615791 0 +68 25614 38.631436615791 0 +68 25614 38.631436615791 0 +68 25639 38.657384353237 0 +68 25639 38.657384353237 0 +68 25653 38.657544353237 0 +68 25653 38.657544353237 0 +68 25744 38.924398582336 0 +68 25744 38.924398582336 0 +68 25751 38.924558582336 0 +68 25751 38.924558582336 0 +68 25774 38.93127661831 0 +68 25774 38.93127661831 0 +68 25780 38.93143661831 0 +68 25780 38.93143661831 0 +68 25805 38.95738435325 0 +68 25805 38.95738435325 0 +68 25819 38.95754435325 0 +68 25819 38.95754435325 0 +68 25910 39.224398582336 0 +68 25910 39.224398582336 0 +68 25917 39.224558582336 0 +68 25917 39.224558582336 0 +68 25940 39.231276620759 0 +68 25940 39.231276620759 0 +68 25946 39.231436620759 0 +68 25946 39.231436620759 0 +68 25971 39.257384353248 0 +68 25971 39.257384353248 0 +68 25985 39.257544353248 0 +68 25985 39.257544353248 0 +68 26076 39.524398582336 0 +68 26076 39.524398582336 0 +68 26083 39.524558582336 0 +68 26083 39.524558582336 0 +68 26106 39.531276623254 0 +68 26106 39.531276623254 0 +68 26112 39.531436623254 0 +68 26112 39.531436623254 0 +68 26137 39.557384353232 0 +68 26137 39.557384353232 0 +68 26151 39.557544353232 0 +68 26151 39.557544353232 0 +68 26242 39.824398582336 0 +68 26242 39.824398582336 0 +68 26249 39.824558582336 0 +68 26249 39.824558582336 0 +68 26272 39.83127662574 0 +68 26272 39.83127662574 0 +68 26278 39.83143662574 0 +68 26278 39.83143662574 0 +68 26303 39.857384353205 0 +68 26303 39.857384353205 0 +68 26317 39.857544353205 0 +68 26317 39.857544353205 0 +68 26408 40.124398582336 0 +68 26408 40.124398582336 0 +68 26415 40.124558582336 0 +68 26415 40.124558582336 0 +68 26438 40.131276628265 0 +68 26438 40.131276628265 0 +68 26444 40.131436628265 0 +68 26444 40.131436628265 0 +68 26469 40.157384353178 0 +68 26469 40.157384353178 0 +68 26483 40.157544353178 0 +68 26483 40.157544353178 0 +68 26574 40.424398582336 0 +68 26574 40.424398582336 0 +68 26581 40.424558582336 0 +68 26581 40.424558582336 0 +68 26604 40.431276630742 0 +68 26604 40.431276630742 0 +68 26610 40.431436630742 0 +68 26610 40.431436630742 0 +68 26635 40.457384353154 0 +68 26635 40.457384353154 0 +68 26649 40.457544353154 0 +68 26649 40.457544353154 0 +68 26740 40.724398582336 0 +68 26740 40.724398582336 0 +68 26747 40.724558582336 0 +68 26747 40.724558582336 0 +68 26774 40.731276633247 0 +68 26774 40.731276633247 0 +68 26780 40.731436633247 0 +68 26780 40.731436633247 0 +68 26805 40.757384353134 0 +68 26805 40.757384353134 0 +68 26819 40.757544353134 0 +68 26819 40.757544353134 0 +68 26844 40.843993902315 0 +68 26844 40.843993902315 0 +68 26862 40.844153902315 0 +68 26862 40.844153902315 0 +68 26914 41.024398582336 0 +68 26914 41.024398582336 0 +68 26921 41.024558582336 0 +68 26921 41.024558582336 0 +68 26948 41.031276635684 0 +68 26948 41.031276635684 0 +68 26954 41.031436635684 0 +68 26954 41.031436635684 0 +68 26979 41.057384353117 0 +68 26979 41.057384353117 0 +68 26993 41.057544353117 0 +68 26993 41.057544353117 0 +68 27018 41.143993889795 0 +68 27018 41.143993889795 0 +68 27036 41.144153889795 0 +68 27036 41.144153889795 0 +68 27088 41.324398582336 0 +68 27088 41.324398582336 0 +68 27095 41.324558582336 0 +68 27095 41.324558582336 0 +68 27122 41.331276638199 0 +68 27122 41.331276638199 0 +68 27128 41.331436638199 0 +68 27128 41.331436638199 0 +68 27153 41.357384353104 0 +68 27153 41.357384353104 0 +68 27167 41.357544353104 0 +68 27167 41.357544353104 0 +68 27192 41.443993878047 0 +68 27192 41.443993878047 0 +68 27210 41.444153878047 0 +68 27210 41.444153878047 0 +68 27262 41.624398582336 0 +68 27262 41.624398582336 0 +68 27269 41.624558582336 0 +68 27269 41.624558582336 0 +68 27296 41.631276640727 0 +68 27296 41.631276640727 0 +68 27302 41.631436640727 0 +68 27302 41.631436640727 0 +68 27327 41.657384353094 0 +68 27327 41.657384353094 0 +68 27341 41.657544353094 0 +68 27341 41.657544353094 0 +68 27366 41.743993867126 0 +68 27366 41.743993867126 0 +68 27384 41.744153867126 0 +68 27384 41.744153867126 0 +68 27436 41.924398582336 0 +68 27436 41.924398582336 0 +68 27443 41.924558582336 0 +68 27443 41.924558582336 0 +68 27470 41.931276643268 0 +68 27470 41.931276643268 0 +68 27476 41.931436643268 0 +68 27476 41.931436643268 0 +68 27501 41.957384353087 0 +68 27501 41.957384353087 0 +68 27515 41.957544353087 0 +68 27515 41.957544353087 0 +68 27540 42.043993857353 0 +68 27540 42.043993857353 0 +68 27558 42.044153857353 0 +68 27558 42.044153857353 0 +68 27610 42.224398582336 0 +68 27610 42.224398582336 0 +68 27617 42.224558582336 0 +68 27617 42.224558582336 0 +68 27644 42.231276645815 0 +68 27644 42.231276645815 0 +68 27650 42.231436645815 0 +68 27650 42.231436645815 0 +68 27675 42.257384353084 0 +68 27675 42.257384353084 0 +68 27689 42.257544353084 0 +68 27689 42.257544353084 0 +68 27713 42.343993848849 0 +68 27713 42.343993848849 0 +68 27727 42.344153848849 0 +68 27727 42.344153848849 0 +68 27784 42.524398582336 0 +68 27784 42.524398582336 0 +68 27791 42.524558582336 0 +68 27791 42.524558582336 0 +68 27818 42.531276648376 0 +68 27818 42.531276648376 0 +68 27824 42.531436648376 0 +68 27824 42.531436648376 0 +68 27849 42.557384353084 0 +68 27849 42.557384353084 0 +68 27863 42.557544353084 0 +68 27863 42.557544353084 0 +68 27887 42.643993841477 0 +68 27887 42.643993841477 0 +68 27901 42.644153841477 0 +68 27901 42.644153841477 0 +68 27958 42.824398582336 0 +68 27958 42.824398582336 0 +68 27965 42.824558582336 0 +68 27965 42.824558582336 0 +68 27992 42.831276650828 0 +68 27992 42.831276650828 0 +68 27998 42.831436650828 0 +68 27998 42.831436650828 0 +68 28023 42.857384353087 0 +68 28023 42.857384353087 0 +68 28037 42.857544353087 0 +68 28037 42.857544353087 0 +68 28061 42.943993835169 0 +68 28061 42.943993835169 0 +68 28075 42.944153835169 0 +68 28075 42.944153835169 0 +68 28132 43.124398582336 0 +68 28132 43.124398582336 0 +68 28139 43.124558582336 0 +68 28139 43.124558582336 0 +68 28166 43.131276653336 0 +68 28166 43.131276653336 0 +68 28172 43.131436653336 0 +68 28172 43.131436653336 0 +68 28197 43.157384353094 0 +68 28197 43.157384353094 0 +68 28211 43.157544353094 0 +68 28211 43.157544353094 0 +68 28235 43.243993829822 0 +68 28235 43.243993829822 0 +68 28249 43.244153829822 0 +68 28249 43.244153829822 0 +68 28306 43.424398582336 0 +68 28306 43.424398582336 0 +68 28313 43.424558582336 0 +68 28313 43.424558582336 0 +68 28340 43.431276655825 0 +68 28340 43.431276655825 0 +68 28346 43.431436655825 0 +68 28346 43.431436655825 0 +68 28371 43.457384353104 0 +68 28371 43.457384353104 0 +68 28385 43.457544353104 0 +68 28385 43.457544353104 0 +68 28409 43.543993825335 0 +68 28409 43.543993825335 0 +68 28423 43.544153825335 0 +68 28423 43.544153825335 0 +68 28480 43.724398582336 0 +68 28480 43.724398582336 0 +68 28487 43.724558582336 0 +68 28487 43.724558582336 0 +68 28514 43.731276658351 0 +68 28514 43.731276658351 0 +68 28520 43.731436658351 0 +68 28520 43.731436658351 0 +68 28545 43.757384353117 0 +68 28545 43.757384353117 0 +68 28559 43.757544353117 0 +68 28559 43.757544353117 0 +68 28583 43.84399382162 0 +68 28583 43.84399382162 0 +68 28597 43.84415382162 0 +68 28597 43.84415382162 0 +68 28654 44.024398582336 0 +68 28654 44.024398582336 0 +68 28661 44.024558582336 0 +68 28661 44.024558582336 0 +68 28688 44.031276660872 0 +68 28688 44.031276660872 0 +68 28694 44.031436660872 0 +68 28694 44.031436660872 0 +68 28719 44.057384353134 0 +68 28719 44.057384353134 0 +68 28733 44.057544353134 0 +68 28733 44.057544353134 0 +68 28757 44.143993818568 0 +68 28757 44.143993818568 0 +68 28771 44.144153818568 0 +68 28771 44.144153818568 0 +68 28828 44.324398582336 0 +68 28828 44.324398582336 0 +68 28835 44.324558582336 0 +68 28835 44.324558582336 0 +68 28862 44.331276663352 0 +68 28862 44.331276663352 0 +68 28868 44.331436663352 0 +68 28868 44.331436663352 0 +68 28889 44.357384353142 0 +68 28889 44.357384353142 0 +68 28903 44.357544353142 0 +68 28903 44.357544353142 0 +68 28927 44.443993816103 0 +68 28927 44.443993816103 0 +68 28941 44.444153816103 0 +68 28941 44.444153816103 0 +68 28994 44.624398582336 0 +68 28994 44.624398582336 0 +68 29001 44.624558582336 0 +68 29001 44.624558582336 0 +68 29028 44.63127666581 0 +68 29028 44.63127666581 0 +68 29034 44.63143666581 0 +68 29034 44.63143666581 0 +68 29055 44.657384353131 0 +68 29055 44.657384353131 0 +68 29069 44.657544353131 0 +68 29069 44.657544353131 0 +68 29093 44.743993814138 0 +68 29093 44.743993814138 0 +68 29107 44.744153814138 0 +68 29107 44.744153814138 0 +68 29160 44.924398582336 0 +68 29160 44.924398582336 0 +68 29167 44.924558582336 0 +68 29167 44.924558582336 0 +68 29194 44.931276668328 0 +68 29194 44.931276668328 0 +68 29200 44.931436668328 0 +68 29200 44.931436668328 0 +68 29221 44.957384353109 0 +68 29221 44.957384353109 0 +68 29235 44.957544353109 0 +68 29235 44.957544353109 0 +68 29259 45.043993812593 0 +68 29259 45.043993812593 0 +68 29273 45.044153812593 0 +68 29273 45.044153812593 0 +68 29326 45.224398582336 0 +68 29326 45.224398582336 0 +68 29333 45.224558582336 0 +68 29333 45.224558582336 0 +68 29360 45.231276670771 0 +68 29360 45.231276670771 0 +68 29366 45.231436670771 0 +68 29366 45.231436670771 0 +68 29387 45.257384353088 0 +68 29387 45.257384353088 0 +68 29401 45.257544353088 0 +68 29401 45.257544353088 0 +68 29425 45.343993811321 0 +68 29425 45.343993811321 0 +68 29439 45.344153811321 0 +68 29439 45.344153811321 0 +68 29492 45.524398582336 0 +68 29492 45.524398582336 0 +68 29499 45.524558582336 0 +68 29499 45.524558582336 0 +68 29526 45.53127667327 0 +68 29526 45.53127667327 0 +68 29532 45.53143667327 0 +68 29532 45.53143667327 0 +68 29553 45.557384353087 0 +68 29553 45.557384353087 0 +68 29567 45.557544353087 0 +68 29567 45.557544353087 0 +68 29591 45.643993810247 0 +68 29591 45.643993810247 0 +68 29605 45.644153810247 0 +68 29605 45.644153810247 0 +68 29658 45.824398582336 0 +68 29658 45.824398582336 0 +68 29665 45.824558582336 0 +68 29665 45.824558582336 0 +68 29692 45.831276675809 0 +68 29692 45.831276675809 0 +68 29698 45.831436675809 0 +68 29698 45.831436675809 0 +68 29719 45.857384353099 0 +68 29719 45.857384353099 0 +68 29733 45.857544353099 0 +68 29733 45.857544353099 0 +68 29757 45.94399380881 0 +68 29757 45.94399380881 0 +68 29771 45.94415380881 0 +68 29771 45.94415380881 0 +68 29824 46.124398582336 0 +68 29824 46.124398582336 0 +68 29831 46.124558582336 0 +68 29831 46.124558582336 0 +68 29858 46.131276678861 0 +68 29858 46.131276678861 0 +68 29864 46.131436678861 0 +68 29864 46.131436678861 0 +68 29885 46.157384350237 0 +68 29885 46.157384350237 0 +68 29899 46.157544350237 0 +68 29899 46.157544350237 0 +68 29922 46.243993803699 0 +68 29922 46.243993803699 0 +68 29932 46.244153803699 0 +68 29932 46.244153803699 0 +68 29990 46.424398582336 0 +68 29990 46.424398582336 0 +68 29997 46.424558582336 0 +68 29997 46.424558582336 0 +68 30024 46.431276686409 0 +68 30024 46.431276686409 0 +68 30030 46.431436686409 0 +68 30030 46.431436686409 0 +68 30051 46.457384341327 0 +68 30051 46.457384341327 0 +68 30065 46.457544341327 0 +68 30065 46.457544341327 0 +68 30088 46.543993792983 0 +68 30088 46.543993792983 0 +68 30098 46.544153792983 0 +68 30098 46.544153792983 0 +68 30156 46.724398582336 0 +68 30156 46.724398582336 0 +68 30163 46.724558582336 0 +68 30163 46.724558582336 0 +68 30190 46.731276699768 0 +68 30190 46.731276699768 0 +68 30196 46.731436699768 0 +68 30196 46.731436699768 0 +68 30216 46.757384329816 0 +68 30216 46.757384329816 0 +68 30226 46.757544329816 0 +68 30226 46.757544329816 0 +68 30254 46.843993781596 0 +68 30254 46.843993781596 0 +68 30264 46.844153781596 0 +68 30264 46.844153781596 0 +68 30322 47.024398582336 0 +68 30322 47.024398582336 0 +68 30329 47.024558582336 0 +68 30329 47.024558582336 0 +68 30356 47.031276714347 0 +68 30356 47.031276714347 0 +68 30362 47.031436714347 0 +68 30362 47.031436714347 0 +68 30382 47.057384318309 0 +68 30382 47.057384318309 0 +68 30392 47.057544318309 0 +68 30392 47.057544318309 0 +68 30420 47.143993770247 0 +68 30420 47.143993770247 0 +68 30430 47.144153770247 0 +68 30430 47.144153770247 0 +68 30488 47.324398582336 0 +68 30488 47.324398582336 0 +68 30495 47.324558582336 0 +68 30495 47.324558582336 0 +68 30522 47.331276729157 0 +68 30522 47.331276729157 0 +68 30528 47.331436729157 0 +68 30528 47.331436729157 0 +68 30548 47.357384306963 0 +68 30548 47.357384306963 0 +68 30558 47.357544306963 0 +68 30558 47.357544306963 0 +68 30586 47.443993758984 0 +68 30586 47.443993758984 0 +68 30596 47.444153758984 0 +68 30596 47.444153758984 0 +68 30654 47.624398582336 0 +68 30654 47.624398582336 0 +68 30661 47.624558582336 0 +68 30661 47.624558582336 0 +68 30688 47.631276744132 0 +68 30688 47.631276744132 0 +68 30694 47.631436744132 0 +68 30694 47.631436744132 0 +68 30714 47.657384295839 0 +68 30714 47.657384295839 0 +68 30724 47.657544295839 0 +68 30724 47.657544295839 0 +68 30752 47.743993747807 0 +68 30752 47.743993747807 0 +68 30762 47.744153747807 0 +68 30762 47.744153747807 0 +68 30820 47.924398582336 0 +68 30820 47.924398582336 0 +68 30827 47.924558582336 0 +68 30827 47.924558582336 0 +68 30854 47.931276759305 0 +68 30854 47.931276759305 0 +68 30860 47.931436759305 0 +68 30860 47.931436759305 0 +68 30880 47.957384284957 0 +68 30880 47.957384284957 0 +68 30890 47.957544284957 0 +68 30890 47.957544284957 0 +68 30918 48.043993736723 0 +68 30918 48.043993736723 0 +68 30928 48.044153736723 0 +68 30928 48.044153736723 0 +68 30986 48.224398582336 0 +68 30986 48.224398582336 0 +68 30993 48.224558582336 0 +68 30993 48.224558582336 0 +68 31020 48.231276774574 0 +68 31020 48.231276774574 0 +68 31026 48.231436774574 0 +68 31026 48.231436774574 0 +68 31046 48.257384274373 0 +68 31046 48.257384274373 0 +68 31056 48.257544274373 0 +68 31056 48.257544274373 0 +68 31084 48.343993727328 0 +68 31084 48.343993727328 0 +68 31094 48.344153727328 0 +68 31094 48.344153727328 0 +68 31152 48.524398582336 0 +68 31152 48.524398582336 0 +68 31159 48.524558582336 0 +68 31159 48.524558582336 0 +68 31186 48.531276790029 0 +68 31186 48.531276790029 0 +68 31192 48.531436790029 0 +68 31192 48.531436790029 0 +68 31212 48.557384264097 0 +68 31212 48.557384264097 0 +68 31222 48.557544264097 0 +68 31222 48.557544264097 0 +68 31250 48.6439937182 0 +68 31250 48.6439937182 0 +68 31260 48.6441537182 0 +68 31260 48.6441537182 0 +68 31318 48.824398582336 0 +68 31318 48.824398582336 0 +68 31325 48.824558582336 0 +68 31325 48.824558582336 0 +68 31352 48.83127680564 0 +68 31352 48.83127680564 0 +68 31358 48.83143680564 0 +68 31358 48.83143680564 0 +68 31378 48.85738425419 0 +68 31378 48.85738425419 0 +68 31388 48.85754425419 0 +68 31388 48.85754425419 0 +68 31416 48.943993710675 0 +68 31416 48.943993710675 0 +68 31426 48.944153710675 0 +68 31426 48.944153710675 0 +68 31484 49.124398582336 0 +68 31484 49.124398582336 0 +68 31491 49.124558582336 0 +68 31491 49.124558582336 0 +68 31518 49.13127682136 0 +68 31518 49.13127682136 0 +68 31524 49.13143682136 0 +68 31524 49.13143682136 0 +68 31544 49.157384244721 0 +68 31544 49.157384244721 0 +68 31554 49.157544244721 0 +68 31554 49.157544244721 0 +68 31582 49.243993704337 0 +68 31582 49.243993704337 0 +68 31592 49.244153704337 0 +68 31592 49.244153704337 0 +68 31650 49.424398582336 0 +68 31650 49.424398582336 0 +68 31657 49.424558582336 0 +68 31657 49.424558582336 0 +68 31684 49.431276837159 0 +68 31684 49.431276837159 0 +68 31690 49.431436837159 0 +68 31690 49.431436837159 0 +68 31710 49.457384235618 0 +68 31710 49.457384235618 0 +68 31720 49.457544235618 0 +68 31720 49.457544235618 0 +68 31748 49.543993699244 0 +68 31748 49.543993699244 0 +68 31758 49.544153699244 0 +68 31758 49.544153699244 0 +68 31816 49.724398582336 0 +68 31816 49.724398582336 0 +68 31823 49.724558582336 0 +68 31823 49.724558582336 0 +68 31850 49.731276842151 0 +68 31850 49.731276842151 0 +68 31856 49.731436842151 0 +68 31856 49.731436842151 0 +68 31876 49.757384226909 0 +68 31876 49.757384226909 0 +68 31886 49.757544226909 0 +68 31886 49.757544226909 0 +68 31914 49.843993694931 0 +68 31914 49.843993694931 0 +68 31924 49.844153694931 0 +68 31924 49.844153694931 0 +68 31982 50.024398582336 0 +68 31982 50.024398582336 0 +68 31989 50.024558582336 0 +68 31989 50.024558582336 0 +68 32016 50.031276841687 0 +68 32016 50.031276841687 0 +68 32022 50.031436841687 0 +68 32022 50.031436841687 0 +68 32042 50.057384218616 0 +68 32042 50.057384218616 0 +68 32052 50.057544218616 0 +68 32052 50.057544218616 0 +68 32080 50.143993691243 0 +68 32080 50.143993691243 0 +68 32090 50.144153691243 0 +68 32090 50.144153691243 0 +68 32148 50.324398582336 0 +68 32148 50.324398582336 0 +68 32155 50.324558582336 0 +68 32155 50.324558582336 0 +68 32182 50.331276841226 0 +68 32182 50.331276841226 0 +68 32188 50.331436841226 0 +68 32188 50.331436841226 0 +68 32208 50.3573842108 0 +68 32208 50.3573842108 0 +68 32218 50.3575442108 0 +68 32218 50.3575442108 0 +68 32246 50.443993688083 0 +68 32246 50.443993688083 0 +68 32256 50.444153688083 0 +68 32256 50.444153688083 0 +68 32314 50.624398582336 0 +68 32314 50.624398582336 0 +68 32321 50.624558582336 0 +68 32321 50.624558582336 0 +68 32348 50.631276840782 0 +68 32348 50.631276840782 0 +68 32354 50.631436840782 0 +68 32354 50.631436840782 0 +68 32374 50.657384203419 0 +68 32374 50.657384203419 0 +68 32384 50.657544203419 0 +68 32384 50.657544203419 0 +68 32412 50.743993685542 0 +68 32412 50.743993685542 0 +68 32422 50.744153685542 0 +68 32422 50.744153685542 0 +68 32480 50.924398582336 0 +68 32480 50.924398582336 0 +68 32487 50.924558582336 0 +68 32487 50.924558582336 0 +68 32514 50.931276840349 0 +68 32514 50.931276840349 0 +68 32520 50.931436840349 0 +68 32520 50.931436840349 0 +68 32540 50.957384196502 0 +68 32540 50.957384196502 0 +68 32550 50.957544196502 0 +68 32550 50.957544196502 0 +68 32578 51.043993683597 0 +68 32578 51.043993683597 0 +68 32588 51.044153683597 0 +68 32588 51.044153683597 0 +68 32642 51.224398582336 0 +68 32642 51.224398582336 0 +68 32649 51.224558582336 0 +68 32649 51.224558582336 0 +68 32676 51.231276839912 0 +68 32676 51.231276839912 0 +68 32682 51.231436839912 0 +68 32682 51.231436839912 0 +68 32702 51.257384190124 0 +68 32702 51.257384190124 0 +68 32712 51.257544190124 0 +68 32712 51.257544190124 0 +68 32736 51.343993682284 0 +68 32736 51.343993682284 0 +68 32746 51.344153682284 0 +68 32746 51.344153682284 0 +68 32800 51.524398582336 0 +68 32800 51.524398582336 0 +68 32807 51.524558582336 0 +68 32807 51.524558582336 0 +68 32834 51.531276839494 0 +68 32834 51.531276839494 0 +68 32840 51.531436839494 0 +68 32840 51.531436839494 0 +68 32864 51.557384184246 0 +68 32864 51.557384184246 0 +68 32874 51.557544184246 0 +68 32874 51.557544184246 0 +68 32902 51.643993681524 0 +68 32902 51.643993681524 0 +68 32912 51.644153681524 0 +68 32912 51.644153681524 0 +68 32966 51.824398582336 0 +68 32966 51.824398582336 0 +68 32973 51.824558582336 0 +68 32973 51.824558582336 0 +68 33000 51.831276839089 0 +68 33000 51.831276839089 0 +68 33006 51.831436839089 0 +68 33006 51.831436839089 0 +68 33030 51.857384178906 0 +68 33030 51.857384178906 0 +68 33040 51.857544178906 0 +68 33040 51.857544178906 0 +68 33068 51.943993681491 0 +68 33068 51.943993681491 0 +68 33078 51.944153681491 0 +68 33078 51.944153681491 0 +68 33132 52.124398582336 0 +68 33132 52.124398582336 0 +68 33139 52.124558582336 0 +68 33139 52.124558582336 0 +68 33166 52.131276838692 0 +68 33166 52.131276838692 0 +68 33172 52.131436838692 0 +68 33172 52.131436838692 0 +68 33196 52.157384174145 0 +68 33196 52.157384174145 0 +68 33206 52.157544174145 0 +68 33206 52.157544174145 0 +68 33234 52.243993682011 0 +68 33234 52.243993682011 0 +68 33244 52.244153682011 0 +68 33244 52.244153682011 0 +68 33298 52.424398582336 0 +68 33298 52.424398582336 0 +68 33305 52.424558582336 0 +68 33305 52.424558582336 0 +68 33332 52.431276838288 0 +68 33332 52.431276838288 0 +68 33338 52.431436838288 0 +68 33338 52.431436838288 0 +68 33362 52.457384169983 0 +68 33362 52.457384169983 0 +68 33372 52.457544169983 0 +68 33372 52.457544169983 0 +68 33400 52.543993683051 0 +68 33400 52.543993683051 0 +68 33410 52.544153683051 0 +68 33410 52.544153683051 0 +68 33464 52.724398582336 0 +68 33464 52.724398582336 0 +68 33471 52.724558582336 0 +68 33471 52.724558582336 0 +68 33499 52.731276837906 0 +68 33499 52.731276837906 0 +68 33509 52.731436837906 0 +68 33509 52.731436837906 0 +68 33528 52.757384166374 0 +68 33528 52.757384166374 0 +68 33538 52.757544166374 0 +68 33538 52.757544166374 0 +68 33566 52.843993684615 0 +68 33566 52.843993684615 0 +68 33576 52.844153684615 0 +68 33576 52.844153684615 0 +68 33630 53.024398582336 0 +68 33630 53.024398582336 0 +68 33637 53.024558582336 0 +68 33637 53.024558582336 0 +68 33665 53.031276837529 0 +68 33665 53.031276837529 0 +68 33675 53.031436837529 0 +68 33675 53.031436837529 0 +68 33694 53.057384163324 0 +68 33694 53.057384163324 0 +68 33704 53.057544163324 0 +68 33704 53.057544163324 0 +68 33732 53.143993686732 0 +68 33732 53.143993686732 0 +68 33742 53.144153686732 0 +68 33742 53.144153686732 0 +68 33772 53.324398582336 0 +68 33772 53.324398582336 0 +68 33778 53.324558582336 0 +68 33778 53.324558582336 0 +68 33804 53.331276837158 0 +68 33804 53.331276837158 0 +68 33813 53.331436837158 0 +68 33813 53.331436837158 0 +68 33831 53.357384160285 0 +68 33831 53.357384160285 0 +68 33840 53.357544160285 0 +68 33840 53.357544160285 0 +68 33866 53.44399368936 0 +68 33866 53.44399368936 0 +68 33875 53.44415368936 0 +68 33875 53.44415368936 0 +68 33899 53.624398582336 0 +68 33899 53.624398582336 0 +68 33905 53.624558582336 0 +68 33905 53.624558582336 0 +68 33931 53.631276836803 0 +68 33931 53.631276836803 0 +68 33940 53.631436836803 0 +68 33940 53.631436836803 0 +68 33958 53.657384156982 0 +68 33958 53.657384156982 0 +68 33967 53.657544156982 0 +68 33967 53.657544156982 0 +68 33993 53.743993692655 0 +68 33993 53.743993692655 0 +68 34002 53.744153692655 0 +68 34002 53.744153692655 0 +68 34026 53.924398582336 0 +68 34026 53.924398582336 0 +68 34032 53.924558582336 0 +68 34032 53.924558582336 0 +68 34058 53.931276836464 0 +68 34058 53.931276836464 0 +68 34067 53.931436836464 0 +68 34067 53.931436836464 0 +68 34085 53.95738415332 0 +68 34085 53.95738415332 0 +68 34094 53.95754415332 0 +68 34094 53.95754415332 0 +68 34120 54.043993696094 0 +68 34120 54.043993696094 0 +68 34129 54.044153696094 0 +68 34129 54.044153696094 0 +68 34153 54.224398582336 0 +68 34153 54.224398582336 0 +68 34159 54.224558582336 0 +68 34159 54.224558582336 0 +68 34185 54.231276836131 0 +68 34185 54.231276836131 0 +68 34194 54.231436836131 0 +68 34194 54.231436836131 0 +68 34212 54.257384149235 0 +68 34212 54.257384149235 0 +68 34221 54.257544149235 0 +68 34221 54.257544149235 0 +68 34247 54.343993699619 0 +68 34247 54.343993699619 0 +68 34256 54.344153699619 0 +68 34256 54.344153699619 0 +68 34280 54.524398582336 0 +68 34280 54.524398582336 0 +68 34286 54.524558582336 0 +68 34286 54.524558582336 0 +68 34312 54.531276835797 0 +68 34312 54.531276835797 0 +68 34321 54.531436835797 0 +68 34321 54.531436835797 0 +68 34339 54.557384144828 0 +68 34339 54.557384144828 0 +68 34348 54.557544144828 0 +68 34348 54.557544144828 0 +68 34374 54.643993703131 0 +68 34374 54.643993703131 0 +68 34383 54.644153703131 0 +68 34383 54.644153703131 0 +68 34407 54.824398582336 0 +68 34407 54.824398582336 0 +68 34413 54.824558582336 0 +68 34413 54.824558582336 0 +68 34439 54.831276835522 0 +68 34439 54.831276835522 0 +68 34448 54.831436835522 0 +68 34448 54.831436835522 0 +68 34466 54.85738414112 0 +68 34466 54.85738414112 0 +68 34475 54.85754414112 0 +68 34475 54.85754414112 0 +68 34501 54.943993706647 0 +68 34501 54.943993706647 0 +68 34510 54.944153706647 0 +68 34510 54.944153706647 0 +68 34534 55.124398582336 0 +68 34534 55.124398582336 0 +68 34540 55.124558582336 0 +68 34540 55.124558582336 0 +68 34566 55.131276835415 0 +68 34566 55.131276835415 0 +68 34575 55.131436835415 0 +68 34575 55.131436835415 0 +68 34593 55.15738413831 0 +68 34593 55.15738413831 0 +68 34602 55.15754413831 0 +68 34602 55.15754413831 0 +68 34628 55.243993710085 0 +68 34628 55.243993710085 0 +68 34637 55.244153710085 0 +68 34637 55.244153710085 0 +68 34661 55.424398582336 0 +68 34661 55.424398582336 0 +68 34667 55.424558582336 0 +68 34667 55.424558582336 0 +68 34693 55.431276835478 0 +68 34693 55.431276835478 0 +68 34702 55.431436835478 0 +68 34702 55.431436835478 0 +68 34720 55.45738413635 0 +68 34720 55.45738413635 0 +68 34729 55.45754413635 0 +68 34729 55.45754413635 0 +68 34755 55.543993713581 0 +68 34755 55.543993713581 0 +68 34764 55.544153713581 0 +68 34764 55.544153713581 0 +68 34788 55.724398582336 0 +68 34788 55.724398582336 0 +68 34794 55.724558582336 0 +68 34794 55.724558582336 0 +68 34820 55.731276835709 0 +68 34820 55.731276835709 0 +68 34829 55.731436835709 0 +68 34829 55.731436835709 0 +68 34847 55.757384135289 0 +68 34847 55.757384135289 0 +68 34856 55.757544135289 0 +68 34856 55.757544135289 0 +68 34882 55.843993717083 0 +68 34882 55.843993717083 0 +68 34891 55.844153717083 0 +68 34891 55.844153717083 0 +68 34915 56.024398582336 0 +68 34915 56.024398582336 0 +68 34921 56.024558582336 0 +68 34921 56.024558582336 0 +68 34947 56.031276836125 0 +68 34947 56.031276836125 0 +68 34956 56.031436836125 0 +68 34956 56.031436836125 0 +68 34974 56.057384135209 0 +68 34974 56.057384135209 0 +68 34983 56.057544135209 0 +68 34983 56.057544135209 0 +68 35009 56.143993720633 0 +68 35009 56.143993720633 0 +68 35018 56.144153720633 0 +68 35018 56.144153720633 0 +68 35042 56.324398582336 0 +68 35042 56.324398582336 0 +68 35048 56.324558582336 0 +68 35048 56.324558582336 0 +68 35074 56.331276836745 0 +68 35074 56.331276836745 0 +68 35083 56.331436836745 0 +68 35083 56.331436836745 0 +68 35100 56.357384136092 0 +68 35100 56.357384136092 0 +68 35105 56.357544136092 0 +68 35105 56.357544136092 0 +68 35136 56.443993724089 0 +68 35136 56.443993724089 0 +68 35145 56.444153724089 0 +68 35145 56.444153724089 0 +68 35167 56.624398582336 0 +68 35167 56.624398582336 0 +68 35172 56.624558582336 0 +68 35172 56.624558582336 0 +68 35193 56.631276837493 0 +68 35193 56.631276837493 0 +68 35201 56.631436837493 0 +68 35201 56.631436837493 0 +68 35217 56.657384137925 0 +68 35217 56.657384137925 0 +68 35221 56.657544137925 0 +68 35221 56.657544137925 0 +68 35251 56.924398582336 0 +68 35251 56.924398582336 0 +68 35256 56.924558582336 0 +68 35256 56.924558582336 0 +68 35277 56.931276842253 0 +68 35277 56.931276842253 0 +68 35285 56.931436842253 0 +68 35285 56.931436842253 0 +68 35301 56.957384140796 0 +68 35301 56.957384140796 0 +68 35305 56.957544140796 0 +68 35305 56.957544140796 0 +68 35335 57.224398582336 0 +68 35335 57.224398582336 0 +68 35340 57.224558582336 0 +68 35340 57.224558582336 0 +68 35361 57.231276850523 0 +68 35361 57.231276850523 0 +68 35369 57.231436850523 0 +68 35369 57.231436850523 0 +68 35385 57.257384144754 0 +68 35385 57.257384144754 0 +68 35389 57.257544144754 0 +68 35389 57.257544144754 0 +68 35419 57.524398582336 0 +68 35419 57.524398582336 0 +68 35424 57.524558582336 0 +68 35424 57.524558582336 0 +68 35445 57.53127685508 0 +68 35445 57.53127685508 0 +68 35453 57.53143685508 0 +68 35453 57.53143685508 0 +68 35470 57.557384149775 0 +68 35470 57.557384149775 0 +68 35478 57.557544149775 0 +68 35478 57.557544149775 0 +68 35503 57.824398582336 0 +68 35503 57.824398582336 0 +68 35508 57.824558582336 0 +68 35508 57.824558582336 0 +68 35529 57.831276859492 0 +68 35529 57.831276859492 0 +68 35537 57.831436859492 0 +68 35537 57.831436859492 0 +68 35554 57.857384155686 0 +68 35554 57.857384155686 0 +68 35562 57.857544155686 0 +68 35562 57.857544155686 0 +68 35587 58.124398582336 0 +68 35587 58.124398582336 0 +68 35592 58.124558582336 0 +68 35592 58.124558582336 0 +68 35613 58.131276864633 0 +68 35613 58.131276864633 0 +68 35621 58.131436864633 0 +68 35621 58.131436864633 0 +68 35638 58.157384162109 0 +68 35638 58.157384162109 0 +68 35646 58.157544162109 0 +68 35646 58.157544162109 0 +68 35671 58.424398582336 0 +68 35671 58.424398582336 0 +68 35676 58.424558582336 0 +68 35676 58.424558582336 0 +68 35697 58.431276870558 0 +68 35697 58.431276870558 0 +68 35705 58.431436870558 0 +68 35705 58.431436870558 0 +68 35722 58.457384169083 0 +68 35722 58.457384169083 0 +68 35730 58.457544169083 0 +68 35730 58.457544169083 0 +68 35755 58.724398582336 0 +68 35755 58.724398582336 0 +68 35760 58.724558582336 0 +68 35760 58.724558582336 0 +68 35781 58.731276877253 0 +68 35781 58.731276877253 0 +68 35789 58.731436877253 0 +68 35789 58.731436877253 0 +68 35806 58.757384176569 0 +68 35806 58.757384176569 0 +68 35814 58.757544176569 0 +68 35814 58.757544176569 0 +68 35839 59.024398582336 0 +68 35839 59.024398582336 0 +68 35844 59.024558582336 0 +68 35844 59.024558582336 0 +68 35865 59.031276884805 0 +68 35865 59.031276884805 0 +68 35873 59.031436884805 0 +68 35873 59.031436884805 0 +68 35890 59.057384184524 0 +68 35890 59.057384184524 0 +68 35898 59.057544184524 0 +68 35898 59.057544184524 0 +68 35923 59.324398582336 0 +68 35923 59.324398582336 0 +68 35928 59.324558582336 0 +68 35928 59.324558582336 0 +68 35949 59.331276893239 0 +68 35949 59.331276893239 0 +68 35957 59.331436893239 0 +68 35957 59.331436893239 0 +68 35974 59.357384192972 0 +68 35974 59.357384192972 0 +68 35982 59.357544192972 0 +68 35982 59.357544192972 0 +68 36007 59.624398582336 0 +68 36007 59.624398582336 0 +68 36012 59.624558582336 0 +68 36012 59.624558582336 0 +68 36033 59.631276902575 0 +68 36033 59.631276902575 0 +68 36041 59.631436902575 0 +68 36041 59.631436902575 0 +68 36058 59.657384201866 0 +68 36058 59.657384201866 0 +68 36066 59.657544201866 0 +68 36066 59.657544201866 0 +68 36091 59.924398582336 0 +68 36091 59.924398582336 0 +68 36096 59.924558582336 0 +68 36096 59.924558582336 0 +68 36117 59.931276912849 0 +68 36117 59.931276912849 0 +68 36125 59.931436912849 0 +68 36125 59.931436912849 0 +68 36142 59.957384211172 0 +68 36142 59.957384211172 0 +68 36150 59.957544211172 0 +68 36150 59.957544211172 0 +68 36175 60.224398582336 0 +68 36175 60.224398582336 0 +68 36180 60.224558582336 0 +68 36180 60.224558582336 0 +68 36218 60.257384220865 0 +68 36218 60.257384220865 0 +68 36226 60.257544220865 0 +68 36226 60.257544220865 0 +68 36251 60.524398582336 0 +68 36251 60.524398582336 0 +68 36256 60.524558582336 0 +68 36256 60.524558582336 0 +68 36294 60.557384230953 0 +68 36294 60.557384230953 0 +68 36302 60.557544230953 0 +68 36302 60.557544230953 0 +68 36327 60.824398582336 0 +68 36327 60.824398582336 0 +68 36332 60.824558582336 0 +68 36332 60.824558582336 0 +68 36370 60.857384241392 0 +68 36370 60.857384241392 0 +68 36378 60.857544241392 0 +68 36378 60.857544241392 0 +68 36403 61.124398582336 0 +68 36403 61.124398582336 0 +68 36408 61.124558582336 0 +68 36408 61.124558582336 0 +68 36446 61.157384252127 0 +68 36446 61.157384252127 0 +68 36454 61.157544252127 0 +68 36454 61.157544252127 0 +68 36479 61.424398582336 0 +68 36479 61.424398582336 0 +68 36484 61.424558582336 0 +68 36484 61.424558582336 0 +68 36522 61.45738426323 0 +68 36522 61.45738426323 0 +68 36530 61.45754426323 0 +68 36530 61.45754426323 0 +68 36555 61.724398582336 0 +68 36555 61.724398582336 0 +68 36560 61.724558582336 0 +68 36560 61.724558582336 0 +68 36598 61.757384274635 0 +68 36598 61.757384274635 0 +68 36606 61.757544274635 0 +68 36606 61.757544274635 0 +68 36631 62.024398582336 0 +68 36631 62.024398582336 0 +68 36636 62.024558582336 0 +68 36636 62.024558582336 0 +68 36674 62.057384285728 0 +68 36674 62.057384285728 0 +68 36682 62.057544285728 0 +68 36682 62.057544285728 0 +68 36707 62.324398582336 0 +68 36707 62.324398582336 0 +68 36712 62.324558582336 0 +68 36712 62.324558582336 0 +68 36750 62.357384295767 0 +68 36750 62.357384295767 0 +68 36758 62.357544295767 0 +68 36758 62.357544295767 0 +68 36783 62.624398582336 0 +68 36783 62.624398582336 0 +68 36788 62.624558582336 0 +68 36788 62.624558582336 0 +68 36826 62.657384304708 0 +68 36826 62.657384304708 0 +68 36834 62.657544304708 0 +68 36834 62.657544304708 0 +68 36859 62.924398582336 0 +68 36859 62.924398582336 0 +68 36864 62.924558582336 0 +68 36864 62.924558582336 0 +68 36902 62.957384312531 0 +68 36902 62.957384312531 0 +68 36910 62.957544312531 0 +68 36910 62.957544312531 0 +69 1262 6.1 0 +69 1262 6.1 0 +69 1285 6.214557014941 0 +69 1285 6.214557014941 0 +69 1292 6.214717014941 0 +69 1292 6.214717014941 0 +69 1319 6.231276487063 0 +69 1319 6.231276487063 0 +69 1326 6.231436487063 0 +69 1326 6.231436487063 0 +69 1358 6.257384178941 0 +69 1358 6.257384178941 0 +69 1369 6.257544178941 0 +69 1369 6.257544178941 0 +69 1468 6.514557005507 0 +69 1468 6.514557005507 0 +69 1475 6.514717005507 0 +69 1475 6.514717005507 0 +69 1499 6.524398582336 0 +69 1499 6.524398582336 0 +69 1507 6.524558582336 0 +69 1507 6.524558582336 0 +69 1535 6.531276486831 0 +69 1535 6.531276486831 0 +69 1542 6.531436486831 0 +69 1542 6.531436486831 0 +69 1575 6.557384179276 0 +69 1575 6.557384179276 0 +69 1586 6.557544179276 0 +69 1586 6.557544179276 0 +69 1685 6.814556995188 0 +69 1685 6.814556995188 0 +69 1692 6.814716995188 0 +69 1692 6.814716995188 0 +69 1716 6.824398582336 0 +69 1716 6.824398582336 0 +69 1724 6.824558582336 0 +69 1724 6.824558582336 0 +69 1752 6.831276486811 0 +69 1752 6.831276486811 0 +69 1759 6.831436486811 0 +69 1759 6.831436486811 0 +69 1792 6.857384179479 0 +69 1792 6.857384179479 0 +69 1803 6.857544179479 0 +69 1803 6.857544179479 0 +69 1902 7.114556984223 0 +69 1902 7.114556984223 0 +69 1909 7.114716984223 0 +69 1909 7.114716984223 0 +69 1933 7.124398582336 0 +69 1933 7.124398582336 0 +69 1941 7.124558582336 0 +69 1941 7.124558582336 0 +69 1969 7.131276486808 0 +69 1969 7.131276486808 0 +69 1976 7.131436486808 0 +69 1976 7.131436486808 0 +69 2009 7.157384179668 0 +69 2009 7.157384179668 0 +69 2020 7.157544179668 0 +69 2020 7.157544179668 0 +69 2119 7.414556972819 0 +69 2119 7.414556972819 0 +69 2126 7.414716972819 0 +69 2126 7.414716972819 0 +69 2150 7.424398582336 0 +69 2150 7.424398582336 0 +69 2158 7.424558582336 0 +69 2158 7.424558582336 0 +69 2186 7.431276486796 0 +69 2186 7.431276486796 0 +69 2193 7.431436486796 0 +69 2193 7.431436486796 0 +69 2226 7.45738417987 0 +69 2226 7.45738417987 0 +69 2237 7.45754417987 0 +69 2237 7.45754417987 0 +69 2336 7.714556960939 0 +69 2336 7.714556960939 0 +69 2343 7.714716960939 0 +69 2343 7.714716960939 0 +69 2367 7.724398582336 0 +69 2367 7.724398582336 0 +69 2375 7.724558582336 0 +69 2375 7.724558582336 0 +69 2403 7.731276486797 0 +69 2403 7.731276486797 0 +69 2410 7.731436486797 0 +69 2410 7.731436486797 0 +69 2443 7.757384180075 0 +69 2443 7.757384180075 0 +69 2454 7.757544180075 0 +69 2454 7.757544180075 0 +69 2553 8.014556948475 0 +69 2553 8.014556948475 0 +69 2560 8.014716948475 0 +69 2560 8.014716948475 0 +69 2584 8.024398582336 0 +69 2584 8.024398582336 0 +69 2592 8.024558582336 0 +69 2592 8.024558582336 0 +69 2620 8.031276486795 0 +69 2620 8.031276486795 0 +69 2627 8.031436486795 0 +69 2627 8.031436486795 0 +69 2660 8.057384180287 0 +69 2660 8.057384180287 0 +69 2671 8.057544180287 0 +69 2671 8.057544180287 0 +69 2728 8.143993909962 0 +69 2728 8.143993909962 0 +69 2743 8.144153909962 0 +69 2743 8.144153909962 0 +69 2770 8.314556935291 0 +69 2770 8.314556935291 0 +69 2777 8.314716935291 0 +69 2777 8.314716935291 0 +69 2801 8.324398582336 0 +69 2801 8.324398582336 0 +69 2809 8.324558582336 0 +69 2809 8.324558582336 0 +69 2841 8.331276486806 0 +69 2841 8.331276486806 0 +69 2848 8.331436486806 0 +69 2848 8.331436486806 0 +69 2881 8.3573841805 0 +69 2881 8.3573841805 0 +69 2892 8.3575441805 0 +69 2892 8.3575441805 0 +69 2949 8.443993908226 0 +69 2949 8.443993908226 0 +69 2964 8.444153908226 0 +69 2964 8.444153908226 0 +69 2995 8.61455692156 0 +69 2995 8.61455692156 0 +69 3002 8.61471692156 0 +69 3002 8.61471692156 0 +69 3026 8.624398582336 0 +69 3026 8.624398582336 0 +69 3034 8.624558582336 0 +69 3034 8.624558582336 0 +69 3066 8.631276486794 0 +69 3066 8.631276486794 0 +69 3073 8.631436486794 0 +69 3073 8.631436486794 0 +69 3106 8.657384180719 0 +69 3106 8.657384180719 0 +69 3117 8.657544180719 0 +69 3117 8.657544180719 0 +69 3174 8.743993906406 0 +69 3174 8.743993906406 0 +69 3189 8.744153906406 0 +69 3189 8.744153906406 0 +69 3220 8.914556907259 0 +69 3220 8.914556907259 0 +69 3227 8.914716907259 0 +69 3227 8.914716907259 0 +69 3251 8.924398582336 0 +69 3251 8.924398582336 0 +69 3259 8.924558582336 0 +69 3259 8.924558582336 0 +69 3291 8.931276486763 0 +69 3291 8.931276486763 0 +69 3298 8.931436486763 0 +69 3298 8.931436486763 0 +69 3331 8.957384180943 0 +69 3331 8.957384180943 0 +69 3342 8.957544180943 0 +69 3342 8.957544180943 0 +69 3399 9.04399390454 0 +69 3399 9.04399390454 0 +69 3414 9.04415390454 0 +69 3414 9.04415390454 0 +69 3445 9.214556892419 0 +69 3445 9.214556892419 0 +69 3452 9.214716892419 0 +69 3452 9.214716892419 0 +69 3476 9.224398582336 0 +69 3476 9.224398582336 0 +69 3484 9.224558582336 0 +69 3484 9.224558582336 0 +69 3516 9.23127648678 0 +69 3516 9.23127648678 0 +69 3523 9.23143648678 0 +69 3523 9.23143648678 0 +69 3556 9.257384181166 0 +69 3556 9.257384181166 0 +69 3567 9.257544181166 0 +69 3567 9.257544181166 0 +69 3624 9.343993902652 0 +69 3624 9.343993902652 0 +69 3639 9.344153902652 0 +69 3639 9.344153902652 0 +69 3670 9.514556877151 0 +69 3670 9.514556877151 0 +69 3677 9.514716877151 0 +69 3677 9.514716877151 0 +69 3701 9.524398582336 0 +69 3701 9.524398582336 0 +69 3709 9.524558582336 0 +69 3709 9.524558582336 0 +69 3741 9.531276486774 0 +69 3741 9.531276486774 0 +69 3748 9.531436486774 0 +69 3748 9.531436486774 0 +69 3781 9.557384181399 0 +69 3781 9.557384181399 0 +69 3792 9.557544181399 0 +69 3792 9.557544181399 0 +69 3849 9.643993900772 0 +69 3849 9.643993900772 0 +69 3864 9.644153900772 0 +69 3864 9.644153900772 0 +69 3895 9.814556861723 0 +69 3895 9.814556861723 0 +69 3902 9.814716861723 0 +69 3902 9.814716861723 0 +69 3926 9.824398582336 0 +69 3926 9.824398582336 0 +69 3934 9.824558582336 0 +69 3934 9.824558582336 0 +69 3966 9.831276486773 0 +69 3966 9.831276486773 0 +69 3973 9.831436486773 0 +69 3973 9.831436486773 0 +69 4006 9.857384181638 0 +69 4006 9.857384181638 0 +69 4017 9.857544181638 0 +69 4017 9.857544181638 0 +69 4074 9.943993898897 0 +69 4074 9.943993898897 0 +69 4089 9.944153898897 0 +69 4089 9.944153898897 0 +69 4120 10.114556846518 0 +69 4120 10.114556846518 0 +69 4127 10.114716846518 0 +69 4127 10.114716846518 0 +69 4151 10.124398582336 0 +69 4151 10.124398582336 0 +69 4159 10.124558582336 0 +69 4159 10.124558582336 0 +69 4191 10.131276486772 0 +69 4191 10.131276486772 0 +69 4198 10.131436486772 0 +69 4198 10.131436486772 0 +69 4231 10.157384181883 0 +69 4231 10.157384181883 0 +69 4242 10.157544181883 0 +69 4242 10.157544181883 0 +69 4299 10.243993897044 0 +69 4299 10.243993897044 0 +69 4314 10.244153897044 0 +69 4314 10.244153897044 0 +69 4345 10.414556831999 0 +69 4345 10.414556831999 0 +69 4352 10.414716831999 0 +69 4352 10.414716831999 0 +69 4376 10.424398582336 0 +69 4376 10.424398582336 0 +69 4384 10.424558582336 0 +69 4384 10.424558582336 0 +69 4416 10.431276486761 0 +69 4416 10.431276486761 0 +69 4423 10.431436486761 0 +69 4423 10.431436486761 0 +69 4456 10.457384182119 0 +69 4456 10.457384182119 0 +69 4467 10.457544182119 0 +69 4467 10.457544182119 0 +69 4524 10.54399389528 0 +69 4524 10.54399389528 0 +69 4539 10.54415389528 0 +69 4539 10.54415389528 0 +69 4574 10.714556820945 0 +69 4574 10.714556820945 0 +69 4581 10.714716820945 0 +69 4581 10.714716820945 0 +69 4609 10.724398582336 0 +69 4609 10.724398582336 0 +69 4617 10.724558582336 0 +69 4617 10.724558582336 0 +69 4649 10.731276486773 0 +69 4649 10.731276486773 0 +69 4656 10.731436486773 0 +69 4656 10.731436486773 0 +69 4689 10.757384182346 0 +69 4689 10.757384182346 0 +69 4700 10.757544182346 0 +69 4700 10.757544182346 0 +69 4758 10.843993893701 0 +69 4758 10.843993893701 0 +69 4777 10.844153893701 0 +69 4777 10.844153893701 0 +69 4807 11.014556825169 0 +69 4807 11.014556825169 0 +69 4814 11.014716825169 0 +69 4814 11.014716825169 0 +69 4842 11.024398582336 0 +69 4842 11.024398582336 0 +69 4850 11.024558582336 0 +69 4850 11.024558582336 0 +69 4883 11.031276486765 0 +69 4883 11.031276486765 0 +69 4894 11.031436486765 0 +69 4894 11.031436486765 0 +69 4922 11.057384182606 0 +69 4922 11.057384182606 0 +69 4933 11.057544182606 0 +69 4933 11.057544182606 0 +69 4991 11.14399389274 0 +69 4991 11.14399389274 0 +69 5010 11.14415389274 0 +69 5010 11.14415389274 0 +69 5040 11.31455683863 0 +69 5040 11.31455683863 0 +69 5047 11.31471683863 0 +69 5047 11.31471683863 0 +69 5075 11.324398582336 0 +69 5075 11.324398582336 0 +69 5083 11.324558582336 0 +69 5083 11.324558582336 0 +69 5116 11.33127648678 0 +69 5116 11.33127648678 0 +69 5127 11.33143648678 0 +69 5127 11.33143648678 0 +69 5154 11.35738418284 0 +69 5154 11.35738418284 0 +69 5161 11.35754418284 0 +69 5161 11.35754418284 0 +69 5224 11.443993892392 0 +69 5224 11.443993892392 0 +69 5243 11.444153892392 0 +69 5243 11.444153892392 0 +69 5273 11.614556853551 0 +69 5273 11.614556853551 0 +69 5280 11.614716853551 0 +69 5280 11.614716853551 0 +69 5308 11.624398582336 0 +69 5308 11.624398582336 0 +69 5316 11.624558582336 0 +69 5316 11.624558582336 0 +69 5349 11.63127648679 0 +69 5349 11.63127648679 0 +69 5360 11.63143648679 0 +69 5360 11.63143648679 0 +69 5391 11.65738418309 0 +69 5391 11.65738418309 0 +69 5398 11.65754418309 0 +69 5398 11.65754418309 0 +69 5465 11.74399389255 0 +69 5465 11.74399389255 0 +69 5484 11.74415389255 0 +69 5484 11.74415389255 0 +69 5514 11.914556868865 0 +69 5514 11.914556868865 0 +69 5521 11.914716868865 0 +69 5521 11.914716868865 0 +69 5549 11.924398582336 0 +69 5549 11.924398582336 0 +69 5557 11.924558582336 0 +69 5557 11.924558582336 0 +69 5590 11.931276486788 0 +69 5590 11.931276486788 0 +69 5601 11.931436486788 0 +69 5601 11.931436486788 0 +69 5632 11.957384183349 0 +69 5632 11.957384183349 0 +69 5639 11.957544183349 0 +69 5639 11.957544183349 0 +69 5706 12.043993893167 0 +69 5706 12.043993893167 0 +69 5725 12.044153893167 0 +69 5725 12.044153893167 0 +69 5755 12.214556884343 0 +69 5755 12.214556884343 0 +69 5762 12.214716884343 0 +69 5762 12.214716884343 0 +69 5790 12.224398582336 0 +69 5790 12.224398582336 0 +69 5798 12.224558582336 0 +69 5798 12.224558582336 0 +69 5831 12.231276486807 0 +69 5831 12.231276486807 0 +69 5842 12.231436486807 0 +69 5842 12.231436486807 0 +69 5873 12.257384183599 0 +69 5873 12.257384183599 0 +69 5880 12.257544183599 0 +69 5880 12.257544183599 0 +69 5947 12.343993893974 0 +69 5947 12.343993893974 0 +69 5966 12.344153893974 0 +69 5966 12.344153893974 0 +69 5996 12.514556899849 0 +69 5996 12.514556899849 0 +69 6003 12.514716899849 0 +69 6003 12.514716899849 0 +69 6031 12.524398582336 0 +69 6031 12.524398582336 0 +69 6039 12.524558582336 0 +69 6039 12.524558582336 0 +69 6072 12.531276486799 0 +69 6072 12.531276486799 0 +69 6083 12.531436486799 0 +69 6083 12.531436486799 0 +69 6114 12.557384183875 0 +69 6114 12.557384183875 0 +69 6121 12.557544183875 0 +69 6121 12.557544183875 0 +69 6188 12.643993894778 0 +69 6188 12.643993894778 0 +69 6207 12.644153894778 0 +69 6207 12.644153894778 0 +69 6237 12.814556915398 0 +69 6237 12.814556915398 0 +69 6244 12.814716915398 0 +69 6244 12.814716915398 0 +69 6272 12.824398582336 0 +69 6272 12.824398582336 0 +69 6280 12.824558582336 0 +69 6280 12.824558582336 0 +69 6313 12.831276486802 0 +69 6313 12.831276486802 0 +69 6324 12.831436486802 0 +69 6324 12.831436486802 0 +69 6355 12.857384184139 0 +69 6355 12.857384184139 0 +69 6362 12.857544184139 0 +69 6362 12.857544184139 0 +69 6429 12.943993895594 0 +69 6429 12.943993895594 0 +69 6448 12.944153895594 0 +69 6448 12.944153895594 0 +69 6478 13.114556930999 0 +69 6478 13.114556930999 0 +69 6485 13.114716930999 0 +69 6485 13.114716930999 0 +69 6513 13.124398582336 0 +69 6513 13.124398582336 0 +69 6521 13.124558582336 0 +69 6521 13.124558582336 0 +69 6554 13.131276486785 0 +69 6554 13.131276486785 0 +69 6565 13.131436486785 0 +69 6565 13.131436486785 0 +69 6596 13.157384184416 0 +69 6596 13.157384184416 0 +69 6603 13.157544184416 0 +69 6603 13.157544184416 0 +69 6670 13.243993896412 0 +69 6670 13.243993896412 0 +69 6689 13.244153896412 0 +69 6689 13.244153896412 0 +69 6719 13.41455694659 0 +69 6719 13.41455694659 0 +69 6726 13.41471694659 0 +69 6726 13.41471694659 0 +69 6754 13.424398582336 0 +69 6754 13.424398582336 0 +69 6762 13.424558582336 0 +69 6762 13.424558582336 0 +69 6795 13.431276486795 0 +69 6795 13.431276486795 0 +69 6806 13.431436486795 0 +69 6806 13.431436486795 0 +69 6837 13.457384184698 0 +69 6837 13.457384184698 0 +69 6844 13.457544184698 0 +69 6844 13.457544184698 0 +69 6911 13.543993897233 0 +69 6911 13.543993897233 0 +69 6930 13.544153897233 0 +69 6930 13.544153897233 0 +69 6960 13.714556962198 0 +69 6960 13.714556962198 0 +69 6967 13.714716962198 0 +69 6967 13.714716962198 0 +69 6995 13.724398582336 0 +69 6995 13.724398582336 0 +69 7003 13.724558582336 0 +69 7003 13.724558582336 0 +69 7036 13.7312764868 0 +69 7036 13.7312764868 0 +69 7047 13.7314364868 0 +69 7047 13.7314364868 0 +69 7078 13.757384184966 0 +69 7078 13.757384184966 0 +69 7085 13.757544184966 0 +69 7085 13.757544184966 0 +69 7152 13.843993898057 0 +69 7152 13.843993898057 0 +69 7171 13.844153898057 0 +69 7171 13.844153898057 0 +69 7202 14.014556977862 0 +69 7202 14.014556977862 0 +69 7213 14.014716977862 0 +69 7213 14.014716977862 0 +69 7236 14.024398582336 0 +69 7236 14.024398582336 0 +69 7244 14.024558582336 0 +69 7244 14.024558582336 0 +69 7277 14.031276486793 0 +69 7277 14.031276486793 0 +69 7288 14.031436486793 0 +69 7288 14.031436486793 0 +69 7319 14.057384185242 0 +69 7319 14.057384185242 0 +69 7326 14.057544185242 0 +69 7326 14.057544185242 0 +69 7393 14.14399389887 0 +69 7393 14.14399389887 0 +69 7412 14.14415389887 0 +69 7412 14.14415389887 0 +69 7443 14.314556993496 0 +69 7443 14.314556993496 0 +69 7454 14.314716993496 0 +69 7454 14.314716993496 0 +69 7477 14.324398582336 0 +69 7477 14.324398582336 0 +69 7485 14.324558582336 0 +69 7485 14.324558582336 0 +69 7518 14.331276486806 0 +69 7518 14.331276486806 0 +69 7529 14.331436486806 0 +69 7529 14.331436486806 0 +69 7560 14.357384185527 0 +69 7560 14.357384185527 0 +69 7567 14.357544185527 0 +69 7567 14.357544185527 0 +69 7634 14.443993899694 0 +69 7634 14.443993899694 0 +69 7653 14.444153899694 0 +69 7653 14.444153899694 0 +69 7684 14.614557009101 0 +69 7684 14.614557009101 0 +69 7695 14.614717009101 0 +69 7695 14.614717009101 0 +69 7718 14.624398582336 0 +69 7718 14.624398582336 0 +69 7726 14.624558582336 0 +69 7726 14.624558582336 0 +69 7759 14.631276486796 0 +69 7759 14.631276486796 0 +69 7770 14.631436486796 0 +69 7770 14.631436486796 0 +69 7801 14.657384185824 0 +69 7801 14.657384185824 0 +69 7808 14.657544185824 0 +69 7808 14.657544185824 0 +69 7875 14.743993900511 0 +69 7875 14.743993900511 0 +69 7894 14.744153900511 0 +69 7894 14.744153900511 0 +69 7925 14.914557024712 0 +69 7925 14.914557024712 0 +69 7936 14.914717024712 0 +69 7936 14.914717024712 0 +69 7959 14.924398582336 0 +69 7959 14.924398582336 0 +69 7967 14.924558582336 0 +69 7967 14.924558582336 0 +69 8000 14.931276486792 0 +69 8000 14.931276486792 0 +69 8011 14.931436486792 0 +69 8011 14.931436486792 0 +69 8042 14.957384186118 0 +69 8042 14.957384186118 0 +69 8049 14.957544186118 0 +69 8049 14.957544186118 0 +69 8116 15.043993901332 0 +69 8116 15.043993901332 0 +69 8135 15.044153901332 0 +69 8135 15.044153901332 0 +69 8166 15.214557040331 0 +69 8166 15.214557040331 0 +69 8177 15.214717040331 0 +69 8177 15.214717040331 0 +69 8200 15.224398582336 0 +69 8200 15.224398582336 0 +69 8208 15.224558582336 0 +69 8208 15.224558582336 0 +69 8241 15.231276486777 0 +69 8241 15.231276486777 0 +69 8252 15.231436486777 0 +69 8252 15.231436486777 0 +69 8283 15.257384186413 0 +69 8283 15.257384186413 0 +69 8290 15.257544186413 0 +69 8290 15.257544186413 0 +69 8357 15.343993902158 0 +69 8357 15.343993902158 0 +69 8376 15.344153902158 0 +69 8376 15.344153902158 0 +69 8407 15.514557055996 0 +69 8407 15.514557055996 0 +69 8418 15.514717055996 0 +69 8418 15.514717055996 0 +69 8441 15.524398582336 0 +69 8441 15.524398582336 0 +69 8449 15.524558582336 0 +69 8449 15.524558582336 0 +69 8482 15.531276486786 0 +69 8482 15.531276486786 0 +69 8493 15.531436486786 0 +69 8493 15.531436486786 0 +69 8524 15.557384186718 0 +69 8524 15.557384186718 0 +69 8531 15.557544186718 0 +69 8531 15.557544186718 0 +69 8598 15.643993902982 0 +69 8598 15.643993902982 0 +69 8617 15.644153902982 0 +69 8617 15.644153902982 0 +69 8648 15.81455707161 0 +69 8648 15.81455707161 0 +69 8659 15.81471707161 0 +69 8659 15.81471707161 0 +69 8682 15.824398582336 0 +69 8682 15.824398582336 0 +69 8690 15.824558582336 0 +69 8690 15.824558582336 0 +69 8723 15.831276486807 0 +69 8723 15.831276486807 0 +69 8734 15.831436486807 0 +69 8734 15.831436486807 0 +69 8765 15.857384187027 0 +69 8765 15.857384187027 0 +69 8772 15.857544187027 0 +69 8772 15.857544187027 0 +69 8839 15.943993903822 0 +69 8839 15.943993903822 0 +69 8858 15.944153903822 0 +69 8858 15.944153903822 0 +69 8889 16.11455708724 0 +69 8889 16.11455708724 0 +69 8900 16.11471708724 0 +69 8900 16.11471708724 0 +69 8927 16.124398582336 0 +69 8927 16.124398582336 0 +69 8935 16.124558582336 0 +69 8935 16.124558582336 0 +69 8968 16.131276486791 0 +69 8968 16.131276486791 0 +69 8979 16.131436486791 0 +69 8979 16.131436486791 0 +69 9010 16.157384187335 0 +69 9010 16.157384187335 0 +69 9017 16.157544187335 0 +69 9017 16.157544187335 0 +69 9088 16.243993904634 0 +69 9088 16.243993904634 0 +69 9107 16.244153904634 0 +69 9107 16.244153904634 0 +69 9138 16.414557102881 0 +69 9138 16.414557102881 0 +69 9149 16.414717102881 0 +69 9149 16.414717102881 0 +69 9176 16.424398582336 0 +69 9176 16.424398582336 0 +69 9184 16.424558582336 0 +69 9184 16.424558582336 0 +69 9217 16.431276486767 0 +69 9217 16.431276486767 0 +69 9228 16.431436486767 0 +69 9228 16.431436486767 0 +69 9259 16.45738418766 0 +69 9259 16.45738418766 0 +69 9266 16.45754418766 0 +69 9266 16.45754418766 0 +69 9337 16.543993905451 0 +69 9337 16.543993905451 0 +69 9356 16.544153905451 0 +69 9356 16.544153905451 0 +69 9387 16.714557118536 0 +69 9387 16.714557118536 0 +69 9398 16.714717118536 0 +69 9398 16.714717118536 0 +69 9425 16.724398582336 0 +69 9425 16.724398582336 0 +69 9433 16.724558582336 0 +69 9433 16.724558582336 0 +69 9466 16.731276486767 0 +69 9466 16.731276486767 0 +69 9477 16.731436486767 0 +69 9477 16.731436486767 0 +69 9508 16.757384187976 0 +69 9508 16.757384187976 0 +69 9515 16.757544187976 0 +69 9515 16.757544187976 0 +69 9586 16.843993906273 0 +69 9586 16.843993906273 0 +69 9605 16.844153906273 0 +69 9605 16.844153906273 0 +69 9636 17.014557134175 0 +69 9636 17.014557134175 0 +69 9647 17.014717134175 0 +69 9647 17.014717134175 0 +69 9674 17.024398582336 0 +69 9674 17.024398582336 0 +69 9682 17.024558582336 0 +69 9682 17.024558582336 0 +69 9715 17.031276486771 0 +69 9715 17.031276486771 0 +69 9726 17.031436486771 0 +69 9726 17.031436486771 0 +69 9757 17.057384188287 0 +69 9757 17.057384188287 0 +69 9764 17.057544188287 0 +69 9764 17.057544188287 0 +69 9835 17.143993907123 0 +69 9835 17.143993907123 0 +69 9854 17.144153907123 0 +69 9854 17.144153907123 0 +69 9885 17.314557149858 0 +69 9885 17.314557149858 0 +69 9896 17.314717149858 0 +69 9896 17.314717149858 0 +69 9923 17.324398582336 0 +69 9923 17.324398582336 0 +69 9931 17.324558582336 0 +69 9931 17.324558582336 0 +69 9964 17.331276486778 0 +69 9964 17.331276486778 0 +69 9975 17.331436486778 0 +69 9975 17.331436486778 0 +69 10006 17.357384188603 0 +69 10006 17.357384188603 0 +69 10013 17.357544188603 0 +69 10013 17.357544188603 0 +69 10084 17.443993907967 0 +69 10084 17.443993907967 0 +69 10103 17.444153907967 0 +69 10103 17.444153907967 0 +69 10134 17.614557165512 0 +69 10134 17.614557165512 0 +69 10145 17.614717165512 0 +69 10145 17.614717165512 0 +69 10172 17.624398582336 0 +69 10172 17.624398582336 0 +69 10180 17.624558582336 0 +69 10180 17.624558582336 0 +69 10213 17.631276486782 0 +69 10213 17.631276486782 0 +69 10224 17.631436486782 0 +69 10224 17.631436486782 0 +69 10255 17.657384188908 0 +69 10255 17.657384188908 0 +69 10262 17.657544188908 0 +69 10262 17.657544188908 0 +69 10333 17.74399390881 0 +69 10333 17.74399390881 0 +69 10352 17.74415390881 0 +69 10352 17.74415390881 0 +69 10383 17.914557181155 0 +69 10383 17.914557181155 0 +69 10394 17.914717181155 0 +69 10394 17.914717181155 0 +69 10417 17.924398582336 0 +69 10417 17.924398582336 0 +69 10425 17.924558582336 0 +69 10425 17.924558582336 0 +69 10458 17.931276486796 0 +69 10458 17.931276486796 0 +69 10469 17.931436486796 0 +69 10469 17.931436486796 0 +69 10500 17.957384189225 0 +69 10500 17.957384189225 0 +69 10507 17.957544189225 0 +69 10507 17.957544189225 0 +69 10574 18.04399390965 0 +69 10574 18.04399390965 0 +69 10593 18.04415390965 0 +69 10593 18.04415390965 0 +69 10625 18.214557196811 0 +69 10625 18.214557196811 0 +69 10640 18.214717196811 0 +69 10640 18.214717196811 0 +69 10658 18.224398582336 0 +69 10658 18.224398582336 0 +69 10666 18.224558582336 0 +69 10666 18.224558582336 0 +69 10695 18.231276486817 0 +69 10695 18.231276486817 0 +69 10706 18.231436486817 0 +69 10706 18.231436486817 0 +69 10737 18.257384189554 0 +69 10737 18.257384189554 0 +69 10744 18.257544189554 0 +69 10744 18.257544189554 0 +69 10811 18.343993910503 0 +69 10811 18.343993910503 0 +69 10830 18.344153910503 0 +69 10830 18.344153910503 0 +69 10858 18.514557211927 0 +69 10858 18.514557211927 0 +69 10873 18.514717211927 0 +69 10873 18.514717211927 0 +69 10891 18.524398582336 0 +69 10891 18.524398582336 0 +69 10899 18.524558582336 0 +69 10899 18.524558582336 0 +69 10928 18.531276486818 0 +69 10928 18.531276486818 0 +69 10939 18.531436486818 0 +69 10939 18.531436486818 0 +69 10970 18.557384189884 0 +69 10970 18.557384189884 0 +69 10977 18.557544189884 0 +69 10977 18.557544189884 0 +69 11091 18.814557220024 0 +69 11091 18.814557220024 0 +69 11106 18.814717220024 0 +69 11106 18.814717220024 0 +69 11124 18.824398582336 0 +69 11124 18.824398582336 0 +69 11132 18.824558582336 0 +69 11132 18.824558582336 0 +69 11161 18.831276486814 0 +69 11161 18.831276486814 0 +69 11172 18.831436486814 0 +69 11172 18.831436486814 0 +69 11203 18.857384190227 0 +69 11203 18.857384190227 0 +69 11210 18.857544190227 0 +69 11210 18.857544190227 0 +69 11324 19.11455722262 0 +69 11324 19.11455722262 0 +69 11339 19.11471722262 0 +69 11339 19.11471722262 0 +69 11357 19.124398582336 0 +69 11357 19.124398582336 0 +69 11365 19.124558582336 0 +69 11365 19.124558582336 0 +69 11394 19.131276486813 0 +69 11394 19.131276486813 0 +69 11405 19.131436486813 0 +69 11405 19.131436486813 0 +69 11436 19.157384190586 0 +69 11436 19.157384190586 0 +69 11443 19.157544190586 0 +69 11443 19.157544190586 0 +69 11557 19.414557225292 0 +69 11557 19.414557225292 0 +69 11572 19.414717225292 0 +69 11572 19.414717225292 0 +69 11590 19.424398582336 0 +69 11590 19.424398582336 0 +69 11598 19.424558582336 0 +69 11598 19.424558582336 0 +69 11627 19.431276486792 0 +69 11627 19.431276486792 0 +69 11638 19.431436486792 0 +69 11638 19.431436486792 0 +69 11669 19.457384190936 0 +69 11669 19.457384190936 0 +69 11676 19.457544190936 0 +69 11676 19.457544190936 0 +69 11790 19.714557228908 0 +69 11790 19.714557228908 0 +69 11805 19.714717228908 0 +69 11805 19.714717228908 0 +69 11823 19.724398582336 0 +69 11823 19.724398582336 0 +69 11831 19.724558582336 0 +69 11831 19.724558582336 0 +69 11860 19.73127648675 0 +69 11860 19.73127648675 0 +69 11871 19.73143648675 0 +69 11871 19.73143648675 0 +69 11902 19.757384191083 0 +69 11902 19.757384191083 0 +69 11909 19.757544191083 0 +69 11909 19.757544191083 0 +69 12023 20.014557233572 0 +69 12023 20.014557233572 0 +69 12038 20.014717233572 0 +69 12038 20.014717233572 0 +69 12060 20.024398582336 0 +69 12060 20.024398582336 0 +69 12068 20.024558582336 0 +69 12068 20.024558582336 0 +69 12097 20.031276486573 0 +69 12097 20.031276486573 0 +69 12108 20.031436486573 0 +69 12108 20.031436486573 0 +69 12139 20.057384190919 0 +69 12139 20.057384190919 0 +69 12146 20.057544190919 0 +69 12146 20.057544190919 0 +69 12264 20.314557239262 0 +69 12264 20.314557239262 0 +69 12279 20.314717239262 0 +69 12279 20.314717239262 0 +69 12301 20.324398582336 0 +69 12301 20.324398582336 0 +69 12309 20.324558582336 0 +69 12309 20.324558582336 0 +69 12338 20.331276486402 0 +69 12338 20.331276486402 0 +69 12349 20.331436486402 0 +69 12349 20.331436486402 0 +69 12380 20.35738419086 0 +69 12380 20.35738419086 0 +69 12387 20.35754419086 0 +69 12387 20.35754419086 0 +69 12505 20.614557246038 0 +69 12505 20.614557246038 0 +69 12520 20.614717246038 0 +69 12520 20.614717246038 0 +69 12542 20.624398582336 0 +69 12542 20.624398582336 0 +69 12550 20.624558582336 0 +69 12550 20.624558582336 0 +69 12579 20.631276486279 0 +69 12579 20.631276486279 0 +69 12590 20.631436486279 0 +69 12590 20.631436486279 0 +69 12621 20.657384191065 0 +69 12621 20.657384191065 0 +69 12628 20.657544191065 0 +69 12628 20.657544191065 0 +69 12746 20.914557253923 0 +69 12746 20.914557253923 0 +69 12761 20.914717253923 0 +69 12761 20.914717253923 0 +69 12783 20.924398582336 0 +69 12783 20.924398582336 0 +69 12791 20.924558582336 0 +69 12791 20.924558582336 0 +69 12820 20.9312764863 0 +69 12820 20.9312764863 0 +69 12831 20.9314364863 0 +69 12831 20.9314364863 0 +69 12862 20.957384191416 0 +69 12862 20.957384191416 0 +69 12869 20.957544191416 0 +69 12869 20.957544191416 0 +69 12987 21.214557262739 0 +69 12987 21.214557262739 0 +69 13002 21.214717262739 0 +69 13002 21.214717262739 0 +69 13024 21.224398582336 0 +69 13024 21.224398582336 0 +69 13032 21.224558582336 0 +69 13032 21.224558582336 0 +69 13061 21.231276486377 0 +69 13061 21.231276486377 0 +69 13072 21.231436486377 0 +69 13072 21.231436486377 0 +69 13103 21.257384192086 0 +69 13103 21.257384192086 0 +69 13110 21.257544192086 0 +69 13110 21.257544192086 0 +69 13228 21.514557272413 0 +69 13228 21.514557272413 0 +69 13243 21.514717272413 0 +69 13243 21.514717272413 0 +69 13265 21.524398582336 0 +69 13265 21.524398582336 0 +69 13273 21.524558582336 0 +69 13273 21.524558582336 0 +69 13302 21.531276486403 0 +69 13302 21.531276486403 0 +69 13313 21.531436486403 0 +69 13313 21.531436486403 0 +69 13344 21.557384193076 0 +69 13344 21.557384193076 0 +69 13351 21.557544193076 0 +69 13351 21.557544193076 0 +69 13469 21.814557282935 0 +69 13469 21.814557282935 0 +69 13484 21.814717282935 0 +69 13484 21.814717282935 0 +69 13506 21.824398582336 0 +69 13506 21.824398582336 0 +69 13514 21.824558582336 0 +69 13514 21.824558582336 0 +69 13543 21.831276486387 0 +69 13543 21.831276486387 0 +69 13554 21.831436486387 0 +69 13554 21.831436486387 0 +69 13585 21.85738419435 0 +69 13585 21.85738419435 0 +69 13592 21.85754419435 0 +69 13592 21.85754419435 0 +69 13710 22.114557294257 0 +69 13710 22.114557294257 0 +69 13725 22.114717294257 0 +69 13725 22.114717294257 0 +69 13747 22.124398582336 0 +69 13747 22.124398582336 0 +69 13755 22.124558582336 0 +69 13755 22.124558582336 0 +69 13784 22.13127648632 0 +69 13784 22.13127648632 0 +69 13795 22.13143648632 0 +69 13795 22.13143648632 0 +69 13826 22.15738419591 0 +69 13826 22.15738419591 0 +69 13833 22.15754419591 0 +69 13833 22.15754419591 0 +69 13951 22.414557306336 0 +69 13951 22.414557306336 0 +69 13966 22.414717306336 0 +69 13966 22.414717306336 0 +69 13988 22.424398582336 0 +69 13988 22.424398582336 0 +69 13996 22.424558582336 0 +69 13996 22.424558582336 0 +69 14025 22.431276486231 0 +69 14025 22.431276486231 0 +69 14036 22.431436486231 0 +69 14036 22.431436486231 0 +69 14067 22.457384197834 0 +69 14067 22.457384197834 0 +69 14074 22.457544197834 0 +69 14074 22.457544197834 0 +69 14192 22.714557319146 0 +69 14192 22.714557319146 0 +69 14207 22.714717319146 0 +69 14207 22.714717319146 0 +69 14229 22.724398582336 0 +69 14229 22.724398582336 0 +69 14237 22.724558582336 0 +69 14237 22.724558582336 0 +69 14266 22.731276486104 0 +69 14266 22.731276486104 0 +69 14277 22.731436486104 0 +69 14277 22.731436486104 0 +69 14308 22.75738420026 0 +69 14308 22.75738420026 0 +69 14315 22.75754420026 0 +69 14315 22.75754420026 0 +69 14433 23.014557332675 0 +69 14433 23.014557332675 0 +69 14448 23.014717332675 0 +69 14448 23.014717332675 0 +69 14470 23.024398582336 0 +69 14470 23.024398582336 0 +69 14478 23.024558582336 0 +69 14478 23.024558582336 0 +69 14507 23.031276485972 0 +69 14507 23.031276485972 0 +69 14518 23.031436485972 0 +69 14518 23.031436485972 0 +69 14549 23.057384203204 0 +69 14549 23.057384203204 0 +69 14556 23.057544203204 0 +69 14556 23.057544203204 0 +69 14674 23.314557346848 0 +69 14674 23.314557346848 0 +69 14689 23.314717346848 0 +69 14689 23.314717346848 0 +69 14711 23.324398582336 0 +69 14711 23.324398582336 0 +69 14719 23.324558582336 0 +69 14719 23.324558582336 0 +69 14748 23.331276485713 0 +69 14748 23.331276485713 0 +69 14759 23.331436485713 0 +69 14759 23.331436485713 0 +69 14790 23.357384206722 0 +69 14790 23.357384206722 0 +69 14797 23.357544206722 0 +69 14797 23.357544206722 0 +69 14915 23.614557361743 0 +69 14915 23.614557361743 0 +69 14930 23.614717361743 0 +69 14930 23.614717361743 0 +69 14952 23.624398582336 0 +69 14952 23.624398582336 0 +69 14960 23.624558582336 0 +69 14960 23.624558582336 0 +69 14989 23.6312764855 0 +69 14989 23.6312764855 0 +69 15000 23.6314364855 0 +69 15000 23.6314364855 0 +69 15031 23.657384210857 0 +69 15031 23.657384210857 0 +69 15038 23.657544210857 0 +69 15038 23.657544210857 0 +69 15157 23.914557377256 0 +69 15157 23.914557377256 0 +69 15176 23.914717377256 0 +69 15176 23.914717377256 0 +69 15193 23.924398582336 0 +69 15193 23.924398582336 0 +69 15201 23.924558582336 0 +69 15201 23.924558582336 0 +69 15229 23.93127648528 0 +69 15229 23.93127648528 0 +69 15236 23.93143648528 0 +69 15236 23.93143648528 0 +69 15272 23.95738421565 0 +69 15272 23.95738421565 0 +69 15279 23.95754421565 0 +69 15279 23.95754421565 0 +69 15398 24.214557393408 0 +69 15398 24.214557393408 0 +69 15417 24.214717393408 0 +69 15417 24.214717393408 0 +69 15434 24.224398582336 0 +69 15434 24.224398582336 0 +69 15442 24.224558582336 0 +69 15442 24.224558582336 0 +69 15470 24.231276485173 0 +69 15470 24.231276485173 0 +69 15477 24.231436485173 0 +69 15477 24.231436485173 0 +69 15513 24.257384221045 0 +69 15513 24.257384221045 0 +69 15520 24.257544221045 0 +69 15520 24.257544221045 0 +69 15639 24.514557410256 0 +69 15639 24.514557410256 0 +69 15658 24.514717410256 0 +69 15658 24.514717410256 0 +69 15675 24.524398582336 0 +69 15675 24.524398582336 0 +69 15683 24.524558582336 0 +69 15683 24.524558582336 0 +69 15711 24.531276485097 0 +69 15711 24.531276485097 0 +69 15718 24.531436485097 0 +69 15718 24.531436485097 0 +69 15754 24.55738422706 0 +69 15754 24.55738422706 0 +69 15761 24.55754422706 0 +69 15761 24.55754422706 0 +69 15880 24.814557427619 0 +69 15880 24.814557427619 0 +69 15899 24.814717427619 0 +69 15899 24.814717427619 0 +69 15916 24.824398582336 0 +69 15916 24.824398582336 0 +69 15924 24.824558582336 0 +69 15924 24.824558582336 0 +69 15952 24.831276484864 0 +69 15952 24.831276484864 0 +69 15959 24.831436484864 0 +69 15959 24.831436484864 0 +69 15995 24.857384233855 0 +69 15995 24.857384233855 0 +69 16002 24.857544233855 0 +69 16002 24.857544233855 0 +69 16121 25.114557445125 0 +69 16121 25.114557445125 0 +69 16140 25.114717445125 0 +69 16140 25.114717445125 0 +69 16157 25.124398582336 0 +69 16157 25.124398582336 0 +69 16165 25.124558582336 0 +69 16165 25.124558582336 0 +69 16193 25.131276484116 0 +69 16193 25.131276484116 0 +69 16200 25.131436484116 0 +69 16200 25.131436484116 0 +69 16236 25.15738424158 0 +69 16236 25.15738424158 0 +69 16243 25.15754424158 0 +69 16243 25.15754424158 0 +69 16362 25.414557462649 0 +69 16362 25.414557462649 0 +69 16381 25.414717462649 0 +69 16381 25.414717462649 0 +69 16398 25.424398582336 0 +69 16398 25.424398582336 0 +69 16406 25.424558582336 0 +69 16406 25.424558582336 0 +69 16434 25.431276482795 0 +69 16434 25.431276482795 0 +69 16441 25.431436482795 0 +69 16441 25.431436482795 0 +69 16477 25.457384250111 0 +69 16477 25.457384250111 0 +69 16484 25.457544250111 0 +69 16484 25.457544250111 0 +69 16603 25.714557480245 0 +69 16603 25.714557480245 0 +69 16622 25.714717480245 0 +69 16622 25.714717480245 0 +69 16639 25.724398582336 0 +69 16639 25.724398582336 0 +69 16647 25.724558582336 0 +69 16647 25.724558582336 0 +69 16675 25.731276480874 0 +69 16675 25.731276480874 0 +69 16682 25.731436480874 0 +69 16682 25.731436480874 0 +69 16718 25.757384259482 0 +69 16718 25.757384259482 0 +69 16725 25.757544259482 0 +69 16725 25.757544259482 0 +69 16844 26.014557497945 0 +69 16844 26.014557497945 0 +69 16863 26.014717497945 0 +69 16863 26.014717497945 0 +69 16880 26.024398582336 0 +69 16880 26.024398582336 0 +69 16888 26.024558582336 0 +69 16888 26.024558582336 0 +69 16916 26.031276479731 0 +69 16916 26.031276479731 0 +69 16923 26.031436479731 0 +69 16923 26.031436479731 0 +69 16959 26.057384269815 0 +69 16959 26.057384269815 0 +69 16966 26.057544269815 0 +69 16966 26.057544269815 0 +69 17086 26.314557515616 0 +69 17086 26.314557515616 0 +69 17109 26.314717515616 0 +69 17109 26.314717515616 0 +69 17121 26.324398582336 0 +69 17121 26.324398582336 0 +69 17129 26.324558582336 0 +69 17129 26.324558582336 0 +69 17157 26.331276479849 0 +69 17157 26.331276479849 0 +69 17164 26.331436479849 0 +69 17164 26.331436479849 0 +69 17200 26.357384280927 0 +69 17200 26.357384280927 0 +69 17207 26.357544280927 0 +69 17207 26.357544280927 0 +69 17327 26.614557533368 0 +69 17327 26.614557533368 0 +69 17350 26.614717533368 0 +69 17350 26.614717533368 0 +69 17362 26.624398582336 0 +69 17362 26.624398582336 0 +69 17370 26.624558582336 0 +69 17370 26.624558582336 0 +69 17398 26.631276481362 0 +69 17398 26.631276481362 0 +69 17405 26.631436481362 0 +69 17405 26.631436481362 0 +69 17441 26.657384292372 0 +69 17441 26.657384292372 0 +69 17448 26.657544292372 0 +69 17448 26.657544292372 0 +69 17568 26.914557551168 0 +69 17568 26.914557551168 0 +69 17591 26.914717551168 0 +69 17591 26.914717551168 0 +69 17603 26.924398582336 0 +69 17603 26.924398582336 0 +69 17611 26.924558582336 0 +69 17611 26.924558582336 0 +69 17639 26.931276484209 0 +69 17639 26.931276484209 0 +69 17646 26.931436484209 0 +69 17646 26.931436484209 0 +69 17682 26.957384303661 0 +69 17682 26.957384303661 0 +69 17689 26.957544303661 0 +69 17689 26.957544303661 0 +69 17809 27.214557568504 0 +69 17809 27.214557568504 0 +69 17832 27.214717568504 0 +69 17832 27.214717568504 0 +69 17840 27.224398582336 0 +69 17840 27.224398582336 0 +69 17848 27.224558582336 0 +69 17848 27.224558582336 0 +69 17872 27.231276487819 0 +69 17872 27.231276487819 0 +69 17879 27.231436487819 0 +69 17879 27.231436487819 0 +69 17915 27.257384313921 0 +69 17915 27.257384313921 0 +69 17922 27.257544313921 0 +69 17922 27.257544313921 0 +69 18073 27.524398582336 0 +69 18073 27.524398582336 0 +69 18081 27.524558582336 0 +69 18081 27.524558582336 0 +69 18105 27.531276490771 0 +69 18105 27.531276490771 0 +69 18112 27.531436490771 0 +69 18112 27.531436490771 0 +69 18148 27.557384323167 0 +69 18148 27.557384323167 0 +69 18155 27.557544323167 0 +69 18155 27.557544323167 0 +69 18306 27.824398582336 0 +69 18306 27.824398582336 0 +69 18314 27.824558582336 0 +69 18314 27.824558582336 0 +69 18338 27.831276492635 0 +69 18338 27.831276492635 0 +69 18345 27.831436492635 0 +69 18345 27.831436492635 0 +69 18381 27.857384331293 0 +69 18381 27.857384331293 0 +69 18388 27.857544331293 0 +69 18388 27.857544331293 0 +69 18539 28.124398582336 0 +69 18539 28.124398582336 0 +69 18547 28.124558582336 0 +69 18547 28.124558582336 0 +69 18571 28.131276501988 0 +69 18571 28.131276501988 0 +69 18578 28.131436501988 0 +69 18578 28.131436501988 0 +69 18614 28.15738433818 0 +69 18614 28.15738433818 0 +69 18621 28.15754433818 0 +69 18621 28.15754433818 0 +69 18772 28.424398582336 0 +69 18772 28.424398582336 0 +69 18780 28.424558582336 0 +69 18780 28.424558582336 0 +69 18804 28.431276516789 0 +69 18804 28.431276516789 0 +69 18811 28.431436516789 0 +69 18811 28.431436516789 0 +69 18847 28.45738434442 0 +69 18847 28.45738434442 0 +69 18854 28.45754434442 0 +69 18854 28.45754434442 0 +69 19005 28.724398582336 0 +69 19005 28.724398582336 0 +69 19013 28.724558582336 0 +69 19013 28.724558582336 0 +69 19037 28.731276531174 0 +69 19037 28.731276531174 0 +69 19044 28.731436531174 0 +69 19044 28.731436531174 0 +69 19080 28.757384346246 0 +69 19080 28.757384346246 0 +69 19087 28.757544346246 0 +69 19087 28.757544346246 0 +69 19238 29.024398582336 0 +69 19238 29.024398582336 0 +69 19246 29.024558582336 0 +69 19246 29.024558582336 0 +69 19270 29.031276536731 0 +69 19270 29.031276536731 0 +69 19277 29.031436536731 0 +69 19277 29.031436536731 0 +69 19309 29.057384347069 0 +69 19309 29.057384347069 0 +69 19316 29.057544347069 0 +69 19316 29.057544347069 0 +69 19463 29.324398582336 0 +69 19463 29.324398582336 0 +69 19471 29.324558582336 0 +69 19471 29.324558582336 0 +69 19495 29.331276539274 0 +69 19495 29.331276539274 0 +69 19502 29.331436539274 0 +69 19502 29.331436539274 0 +69 19535 29.357384351202 0 +69 19535 29.357384351202 0 +69 19546 29.357544351202 0 +69 19546 29.357544351202 0 +69 19688 29.624398582336 0 +69 19688 29.624398582336 0 +69 19696 29.624558582336 0 +69 19696 29.624558582336 0 +69 19720 29.631276541563 0 +69 19720 29.631276541563 0 +69 19727 29.631436541563 0 +69 19727 29.631436541563 0 +69 19760 29.657384352581 0 +69 19760 29.657384352581 0 +69 19771 29.657544352581 0 +69 19771 29.657544352581 0 +69 19913 29.924398582336 0 +69 19913 29.924398582336 0 +69 19921 29.924558582336 0 +69 19921 29.924558582336 0 +69 19945 29.931276543815 0 +69 19945 29.931276543815 0 +69 19952 29.931436543815 0 +69 19952 29.931436543815 0 +69 19985 29.957384353115 0 +69 19985 29.957384353115 0 +69 19996 29.957544353115 0 +69 19996 29.957544353115 0 +69 20138 30.224398582336 0 +69 20138 30.224398582336 0 +69 20146 30.224558582336 0 +69 20146 30.224558582336 0 +69 20170 30.231276546125 0 +69 20170 30.231276546125 0 +69 20177 30.231436546125 0 +69 20177 30.231436546125 0 +69 20210 30.257384353112 0 +69 20210 30.257384353112 0 +69 20221 30.257544353112 0 +69 20221 30.257544353112 0 +69 20363 30.524398582336 0 +69 20363 30.524398582336 0 +69 20371 30.524558582336 0 +69 20371 30.524558582336 0 +69 20395 30.531276548461 0 +69 20395 30.531276548461 0 +69 20402 30.531436548461 0 +69 20402 30.531436548461 0 +69 20435 30.55738435311 0 +69 20435 30.55738435311 0 +69 20446 30.55754435311 0 +69 20446 30.55754435311 0 +69 20588 30.824398582336 0 +69 20588 30.824398582336 0 +69 20596 30.824558582336 0 +69 20596 30.824558582336 0 +69 20621 30.831276550899 0 +69 20621 30.831276550899 0 +69 20632 30.831436550899 0 +69 20632 30.831436550899 0 +69 20660 30.857384353107 0 +69 20660 30.857384353107 0 +69 20671 30.857544353107 0 +69 20671 30.857544353107 0 +69 20813 31.124398582336 0 +69 20813 31.124398582336 0 +69 20821 31.124558582336 0 +69 20821 31.124558582336 0 +69 20850 31.131276553412 0 +69 20850 31.131276553412 0 +69 20861 31.131436553412 0 +69 20861 31.131436553412 0 +69 20889 31.157384353102 0 +69 20889 31.157384353102 0 +69 20900 31.157544353102 0 +69 20900 31.157544353102 0 +69 20921 31.193586243446 0 +69 20921 31.193586243446 0 +69 20940 31.193746243446 0 +69 20940 31.193746243446 0 +69 21046 31.424398582336 0 +69 21046 31.424398582336 0 +69 21054 31.424558582336 0 +69 21054 31.424558582336 0 +69 21083 31.431276555932 0 +69 21083 31.431276555932 0 +69 21094 31.431436555932 0 +69 21094 31.431436555932 0 +69 21122 31.457384353095 0 +69 21122 31.457384353095 0 +69 21133 31.457544353095 0 +69 21133 31.457544353095 0 +69 21154 31.493586217696 0 +69 21154 31.493586217696 0 +69 21173 31.493746217696 0 +69 21173 31.493746217696 0 +69 21279 31.724398582336 0 +69 21279 31.724398582336 0 +69 21287 31.724558582336 0 +69 21287 31.724558582336 0 +69 21316 31.731276558446 0 +69 21316 31.731276558446 0 +69 21327 31.731436558446 0 +69 21327 31.731436558446 0 +69 21355 31.757384353088 0 +69 21355 31.757384353088 0 +69 21366 31.757544353088 0 +69 21366 31.757544353088 0 +69 21387 31.793586191964 0 +69 21387 31.793586191964 0 +69 21406 31.793746191964 0 +69 21406 31.793746191964 0 +69 21512 32.024398582336 0 +69 21512 32.024398582336 0 +69 21520 32.024558582336 0 +69 21520 32.024558582336 0 +69 21549 32.031276560973 0 +69 21549 32.031276560973 0 +69 21560 32.031436560973 0 +69 21560 32.031436560973 0 +69 21588 32.057384353084 0 +69 21588 32.057384353084 0 +69 21599 32.057544353084 0 +69 21599 32.057544353084 0 +69 21619 32.093586166255 0 +69 21619 32.093586166255 0 +69 21634 32.093746166255 0 +69 21634 32.093746166255 0 +69 21745 32.324398582336 0 +69 21745 32.324398582336 0 +69 21753 32.324558582336 0 +69 21753 32.324558582336 0 +69 21782 32.331276563405 0 +69 21782 32.331276563405 0 +69 21793 32.331436563405 0 +69 21793 32.331436563405 0 +69 21821 32.357384353083 0 +69 21821 32.357384353083 0 +69 21832 32.357544353083 0 +69 21832 32.357544353083 0 +69 21852 32.393586140428 0 +69 21852 32.393586140428 0 +69 21867 32.393746140428 0 +69 21867 32.393746140428 0 +69 21978 32.624398582336 0 +69 21978 32.624398582336 0 +69 21986 32.624558582336 0 +69 21986 32.624558582336 0 +69 22015 32.631276565904 0 +69 22015 32.631276565904 0 +69 22026 32.631436565904 0 +69 22026 32.631436565904 0 +69 22054 32.657384353086 0 +69 22054 32.657384353086 0 +69 22065 32.657544353086 0 +69 22065 32.657544353086 0 +69 22085 32.693586114644 0 +69 22085 32.693586114644 0 +69 22100 32.693746114644 0 +69 22100 32.693746114644 0 +69 22211 32.924398582336 0 +69 22211 32.924398582336 0 +69 22219 32.924558582336 0 +69 22219 32.924558582336 0 +69 22248 32.931276568399 0 +69 22248 32.931276568399 0 +69 22259 32.931436568399 0 +69 22259 32.931436568399 0 +69 22287 32.957384353093 0 +69 22287 32.957384353093 0 +69 22298 32.957544353093 0 +69 22298 32.957544353093 0 +69 22318 32.993586088864 0 +69 22318 32.993586088864 0 +69 22333 32.993746088864 0 +69 22333 32.993746088864 0 +69 22444 33.224398582336 0 +69 22444 33.224398582336 0 +69 22452 33.224558582336 0 +69 22452 33.224558582336 0 +69 22481 33.231276570893 0 +69 22481 33.231276570893 0 +69 22492 33.231436570893 0 +69 22492 33.231436570893 0 +69 22520 33.257384353102 0 +69 22520 33.257384353102 0 +69 22531 33.257544353102 0 +69 22531 33.257544353102 0 +69 22551 33.293586063102 0 +69 22551 33.293586063102 0 +69 22566 33.293746063102 0 +69 22566 33.293746063102 0 +69 22677 33.524398582336 0 +69 22677 33.524398582336 0 +69 22685 33.524558582336 0 +69 22685 33.524558582336 0 +69 22714 33.53127657339 0 +69 22714 33.53127657339 0 +69 22725 33.53143657339 0 +69 22725 33.53143657339 0 +69 22753 33.557384353115 0 +69 22753 33.557384353115 0 +69 22764 33.557544353115 0 +69 22764 33.557544353115 0 +69 22783 33.593586037322 0 +69 22783 33.593586037322 0 +69 22794 33.593746037322 0 +69 22794 33.593746037322 0 +69 22906 33.824398582336 0 +69 22906 33.824398582336 0 +69 22914 33.824558582336 0 +69 22914 33.824558582336 0 +69 22943 33.831276575887 0 +69 22943 33.831276575887 0 +69 22954 33.831436575887 0 +69 22954 33.831436575887 0 +69 22982 33.857384353132 0 +69 22982 33.857384353132 0 +69 22993 33.857544353132 0 +69 22993 33.857544353132 0 +69 23012 33.893586011596 0 +69 23012 33.893586011596 0 +69 23023 33.893746011596 0 +69 23023 33.893746011596 0 +69 23116 34.124398582336 0 +69 23116 34.124398582336 0 +69 23123 34.124558582336 0 +69 23123 34.124558582336 0 +69 23146 34.131276578412 0 +69 23146 34.131276578412 0 +69 23152 34.131436578412 0 +69 23152 34.131436578412 0 +69 23176 34.157384353151 0 +69 23176 34.157384353151 0 +69 23186 34.157544353151 0 +69 23186 34.157544353151 0 +69 23274 34.424398582336 0 +69 23274 34.424398582336 0 +69 23281 34.424558582336 0 +69 23281 34.424558582336 0 +69 23304 34.431276580926 0 +69 23304 34.431276580926 0 +69 23310 34.431436580926 0 +69 23310 34.431436580926 0 +69 23334 34.457384353173 0 +69 23334 34.457384353173 0 +69 23344 34.457544353173 0 +69 23344 34.457544353173 0 +69 23432 34.724398582336 0 +69 23432 34.724398582336 0 +69 23439 34.724558582336 0 +69 23439 34.724558582336 0 +69 23462 34.731276583436 0 +69 23462 34.731276583436 0 +69 23468 34.731436583436 0 +69 23468 34.731436583436 0 +69 23492 34.757384353199 0 +69 23492 34.757384353199 0 +69 23502 34.757544353199 0 +69 23502 34.757544353199 0 +69 23590 35.024398582336 0 +69 23590 35.024398582336 0 +69 23597 35.024558582336 0 +69 23597 35.024558582336 0 +69 23620 35.031276585897 0 +69 23620 35.031276585897 0 +69 23626 35.031436585897 0 +69 23626 35.031436585897 0 +69 23650 35.057384353228 0 +69 23650 35.057384353228 0 +69 23660 35.057544353228 0 +69 23660 35.057544353228 0 +69 23752 35.324398582336 0 +69 23752 35.324398582336 0 +69 23759 35.324558582336 0 +69 23759 35.324558582336 0 +69 23782 35.331276588437 0 +69 23782 35.331276588437 0 +69 23788 35.331436588437 0 +69 23788 35.331436588437 0 +69 23812 35.357384353251 0 +69 23812 35.357384353251 0 +69 23822 35.357544353251 0 +69 23822 35.357544353251 0 +69 23918 35.624398582336 0 +69 23918 35.624398582336 0 +69 23925 35.624558582336 0 +69 23925 35.624558582336 0 +69 23948 35.631276590971 0 +69 23948 35.631276590971 0 +69 23954 35.631436590971 0 +69 23954 35.631436590971 0 +69 23978 35.657384353247 0 +69 23978 35.657384353247 0 +69 23988 35.657544353247 0 +69 23988 35.657544353247 0 +69 24084 35.924398582336 0 +69 24084 35.924398582336 0 +69 24091 35.924558582336 0 +69 24091 35.924558582336 0 +69 24114 35.931276593481 0 +69 24114 35.931276593481 0 +69 24120 35.931436593481 0 +69 24120 35.931436593481 0 +69 24144 35.957384353214 0 +69 24144 35.957384353214 0 +69 24154 35.957544353214 0 +69 24154 35.957544353214 0 +69 24250 36.224398582336 0 +69 24250 36.224398582336 0 +69 24257 36.224558582336 0 +69 24257 36.224558582336 0 +69 24280 36.231276595961 0 +69 24280 36.231276595961 0 +69 24286 36.231436595961 0 +69 24286 36.231436595961 0 +69 24310 36.257384353163 0 +69 24310 36.257384353163 0 +69 24320 36.257544353163 0 +69 24320 36.257544353163 0 +69 24416 36.524398582336 0 +69 24416 36.524398582336 0 +69 24423 36.524558582336 0 +69 24423 36.524558582336 0 +69 24446 36.531276598459 0 +69 24446 36.531276598459 0 +69 24452 36.531436598459 0 +69 24452 36.531436598459 0 +69 24476 36.557384353111 0 +69 24476 36.557384353111 0 +69 24486 36.557544353111 0 +69 24486 36.557544353111 0 +69 24582 36.824398582336 0 +69 24582 36.824398582336 0 +69 24589 36.824558582336 0 +69 24589 36.824558582336 0 +69 24612 36.83127660094 0 +69 24612 36.83127660094 0 +69 24618 36.83143660094 0 +69 24618 36.83143660094 0 +69 24642 36.857384353084 0 +69 24642 36.857384353084 0 +69 24652 36.857544353084 0 +69 24652 36.857544353084 0 +69 24748 37.124398582336 0 +69 24748 37.124398582336 0 +69 24755 37.124558582336 0 +69 24755 37.124558582336 0 +69 24778 37.131276603404 0 +69 24778 37.131276603404 0 +69 24784 37.131436603404 0 +69 24784 37.131436603404 0 +69 24808 37.15738435309 0 +69 24808 37.15738435309 0 +69 24818 37.15754435309 0 +69 24818 37.15754435309 0 +69 24914 37.424398582336 0 +69 24914 37.424398582336 0 +69 24921 37.424558582336 0 +69 24921 37.424558582336 0 +69 24944 37.431276605886 0 +69 24944 37.431276605886 0 +69 24950 37.431436605886 0 +69 24950 37.431436605886 0 +69 24974 37.457384353113 0 +69 24974 37.457384353113 0 +69 24984 37.457544353113 0 +69 24984 37.457544353113 0 +69 25080 37.724398582336 0 +69 25080 37.724398582336 0 +69 25087 37.724558582336 0 +69 25087 37.724558582336 0 +69 25110 37.731276608365 0 +69 25110 37.731276608365 0 +69 25116 37.731436608365 0 +69 25116 37.731436608365 0 +69 25141 37.757384353145 0 +69 25141 37.757384353145 0 +69 25155 37.757544353145 0 +69 25155 37.757544353145 0 +69 25246 38.024398582336 0 +69 25246 38.024398582336 0 +69 25253 38.024558582336 0 +69 25253 38.024558582336 0 +69 25276 38.031276610826 0 +69 25276 38.031276610826 0 +69 25282 38.031436610826 0 +69 25282 38.031436610826 0 +69 25307 38.057384353181 0 +69 25307 38.057384353181 0 +69 25321 38.057544353181 0 +69 25321 38.057544353181 0 +69 25412 38.324398582336 0 +69 25412 38.324398582336 0 +69 25419 38.324558582336 0 +69 25419 38.324558582336 0 +69 25442 38.3312766133 0 +69 25442 38.3312766133 0 +69 25448 38.3314366133 0 +69 25448 38.3314366133 0 +69 25473 38.357384353213 0 +69 25473 38.357384353213 0 +69 25487 38.357544353213 0 +69 25487 38.357544353213 0 +69 25578 38.624398582336 0 +69 25578 38.624398582336 0 +69 25585 38.624558582336 0 +69 25585 38.624558582336 0 +69 25608 38.631276615791 0 +69 25608 38.631276615791 0 +69 25614 38.631436615791 0 +69 25614 38.631436615791 0 +69 25639 38.657384353237 0 +69 25639 38.657384353237 0 +69 25653 38.657544353237 0 +69 25653 38.657544353237 0 +69 25744 38.924398582336 0 +69 25744 38.924398582336 0 +69 25751 38.924558582336 0 +69 25751 38.924558582336 0 +69 25774 38.93127661831 0 +69 25774 38.93127661831 0 +69 25780 38.93143661831 0 +69 25780 38.93143661831 0 +69 25805 38.95738435325 0 +69 25805 38.95738435325 0 +69 25819 38.95754435325 0 +69 25819 38.95754435325 0 +69 25910 39.224398582336 0 +69 25910 39.224398582336 0 +69 25917 39.224558582336 0 +69 25917 39.224558582336 0 +69 25940 39.231276620759 0 +69 25940 39.231276620759 0 +69 25946 39.231436620759 0 +69 25946 39.231436620759 0 +69 25971 39.257384353248 0 +69 25971 39.257384353248 0 +69 25985 39.257544353248 0 +69 25985 39.257544353248 0 +69 26076 39.524398582336 0 +69 26076 39.524398582336 0 +69 26083 39.524558582336 0 +69 26083 39.524558582336 0 +69 26106 39.531276623254 0 +69 26106 39.531276623254 0 +69 26112 39.531436623254 0 +69 26112 39.531436623254 0 +69 26137 39.557384353232 0 +69 26137 39.557384353232 0 +69 26151 39.557544353232 0 +69 26151 39.557544353232 0 +69 26242 39.824398582336 0 +69 26242 39.824398582336 0 +69 26249 39.824558582336 0 +69 26249 39.824558582336 0 +69 26272 39.83127662574 0 +69 26272 39.83127662574 0 +69 26278 39.83143662574 0 +69 26278 39.83143662574 0 +69 26303 39.857384353205 0 +69 26303 39.857384353205 0 +69 26317 39.857544353205 0 +69 26317 39.857544353205 0 +69 26408 40.124398582336 0 +69 26408 40.124398582336 0 +69 26415 40.124558582336 0 +69 26415 40.124558582336 0 +69 26438 40.131276628265 0 +69 26438 40.131276628265 0 +69 26444 40.131436628265 0 +69 26444 40.131436628265 0 +69 26469 40.157384353178 0 +69 26469 40.157384353178 0 +69 26483 40.157544353178 0 +69 26483 40.157544353178 0 +69 26574 40.424398582336 0 +69 26574 40.424398582336 0 +69 26581 40.424558582336 0 +69 26581 40.424558582336 0 +69 26604 40.431276630742 0 +69 26604 40.431276630742 0 +69 26610 40.431436630742 0 +69 26610 40.431436630742 0 +69 26635 40.457384353154 0 +69 26635 40.457384353154 0 +69 26649 40.457544353154 0 +69 26649 40.457544353154 0 +69 26740 40.724398582336 0 +69 26740 40.724398582336 0 +69 26747 40.724558582336 0 +69 26747 40.724558582336 0 +69 26774 40.731276633247 0 +69 26774 40.731276633247 0 +69 26780 40.731436633247 0 +69 26780 40.731436633247 0 +69 26805 40.757384353134 0 +69 26805 40.757384353134 0 +69 26819 40.757544353134 0 +69 26819 40.757544353134 0 +69 26844 40.843993902315 0 +69 26844 40.843993902315 0 +69 26862 40.844153902315 0 +69 26862 40.844153902315 0 +69 26914 41.024398582336 0 +69 26914 41.024398582336 0 +69 26921 41.024558582336 0 +69 26921 41.024558582336 0 +69 26948 41.031276635684 0 +69 26948 41.031276635684 0 +69 26954 41.031436635684 0 +69 26954 41.031436635684 0 +69 26979 41.057384353117 0 +69 26979 41.057384353117 0 +69 26993 41.057544353117 0 +69 26993 41.057544353117 0 +69 27018 41.143993889795 0 +69 27018 41.143993889795 0 +69 27036 41.144153889795 0 +69 27036 41.144153889795 0 +69 27088 41.324398582336 0 +69 27088 41.324398582336 0 +69 27095 41.324558582336 0 +69 27095 41.324558582336 0 +69 27122 41.331276638199 0 +69 27122 41.331276638199 0 +69 27128 41.331436638199 0 +69 27128 41.331436638199 0 +69 27153 41.357384353104 0 +69 27153 41.357384353104 0 +69 27167 41.357544353104 0 +69 27167 41.357544353104 0 +69 27192 41.443993878047 0 +69 27192 41.443993878047 0 +69 27210 41.444153878047 0 +69 27210 41.444153878047 0 +69 27262 41.624398582336 0 +69 27262 41.624398582336 0 +69 27269 41.624558582336 0 +69 27269 41.624558582336 0 +69 27296 41.631276640727 0 +69 27296 41.631276640727 0 +69 27302 41.631436640727 0 +69 27302 41.631436640727 0 +69 27327 41.657384353094 0 +69 27327 41.657384353094 0 +69 27341 41.657544353094 0 +69 27341 41.657544353094 0 +69 27366 41.743993867126 0 +69 27366 41.743993867126 0 +69 27384 41.744153867126 0 +69 27384 41.744153867126 0 +69 27436 41.924398582336 0 +69 27436 41.924398582336 0 +69 27443 41.924558582336 0 +69 27443 41.924558582336 0 +69 27470 41.931276643268 0 +69 27470 41.931276643268 0 +69 27476 41.931436643268 0 +69 27476 41.931436643268 0 +69 27501 41.957384353087 0 +69 27501 41.957384353087 0 +69 27515 41.957544353087 0 +69 27515 41.957544353087 0 +69 27540 42.043993857353 0 +69 27540 42.043993857353 0 +69 27558 42.044153857353 0 +69 27558 42.044153857353 0 +69 27610 42.224398582336 0 +69 27610 42.224398582336 0 +69 27617 42.224558582336 0 +69 27617 42.224558582336 0 +69 27644 42.231276645815 0 +69 27644 42.231276645815 0 +69 27650 42.231436645815 0 +69 27650 42.231436645815 0 +69 27675 42.257384353084 0 +69 27675 42.257384353084 0 +69 27689 42.257544353084 0 +69 27689 42.257544353084 0 +69 27713 42.343993848849 0 +69 27713 42.343993848849 0 +69 27727 42.344153848849 0 +69 27727 42.344153848849 0 +69 27784 42.524398582336 0 +69 27784 42.524398582336 0 +69 27791 42.524558582336 0 +69 27791 42.524558582336 0 +69 27818 42.531276648376 0 +69 27818 42.531276648376 0 +69 27824 42.531436648376 0 +69 27824 42.531436648376 0 +69 27849 42.557384353084 0 +69 27849 42.557384353084 0 +69 27863 42.557544353084 0 +69 27863 42.557544353084 0 +69 27887 42.643993841477 0 +69 27887 42.643993841477 0 +69 27901 42.644153841477 0 +69 27901 42.644153841477 0 +69 27958 42.824398582336 0 +69 27958 42.824398582336 0 +69 27965 42.824558582336 0 +69 27965 42.824558582336 0 +69 27992 42.831276650828 0 +69 27992 42.831276650828 0 +69 27998 42.831436650828 0 +69 27998 42.831436650828 0 +69 28023 42.857384353087 0 +69 28023 42.857384353087 0 +69 28037 42.857544353087 0 +69 28037 42.857544353087 0 +69 28061 42.943993835169 0 +69 28061 42.943993835169 0 +69 28075 42.944153835169 0 +69 28075 42.944153835169 0 +69 28132 43.124398582336 0 +69 28132 43.124398582336 0 +69 28139 43.124558582336 0 +69 28139 43.124558582336 0 +69 28166 43.131276653336 0 +69 28166 43.131276653336 0 +69 28172 43.131436653336 0 +69 28172 43.131436653336 0 +69 28197 43.157384353094 0 +69 28197 43.157384353094 0 +69 28211 43.157544353094 0 +69 28211 43.157544353094 0 +69 28235 43.243993829822 0 +69 28235 43.243993829822 0 +69 28249 43.244153829822 0 +69 28249 43.244153829822 0 +69 28306 43.424398582336 0 +69 28306 43.424398582336 0 +69 28313 43.424558582336 0 +69 28313 43.424558582336 0 +69 28340 43.431276655825 0 +69 28340 43.431276655825 0 +69 28346 43.431436655825 0 +69 28346 43.431436655825 0 +69 28371 43.457384353104 0 +69 28371 43.457384353104 0 +69 28385 43.457544353104 0 +69 28385 43.457544353104 0 +69 28409 43.543993825335 0 +69 28409 43.543993825335 0 +69 28423 43.544153825335 0 +69 28423 43.544153825335 0 +69 28480 43.724398582336 0 +69 28480 43.724398582336 0 +69 28487 43.724558582336 0 +69 28487 43.724558582336 0 +69 28514 43.731276658351 0 +69 28514 43.731276658351 0 +69 28520 43.731436658351 0 +69 28520 43.731436658351 0 +69 28545 43.757384353117 0 +69 28545 43.757384353117 0 +69 28559 43.757544353117 0 +69 28559 43.757544353117 0 +69 28583 43.84399382162 0 +69 28583 43.84399382162 0 +69 28597 43.84415382162 0 +69 28597 43.84415382162 0 +69 28654 44.024398582336 0 +69 28654 44.024398582336 0 +69 28661 44.024558582336 0 +69 28661 44.024558582336 0 +69 28688 44.031276660872 0 +69 28688 44.031276660872 0 +69 28694 44.031436660872 0 +69 28694 44.031436660872 0 +69 28719 44.057384353134 0 +69 28719 44.057384353134 0 +69 28733 44.057544353134 0 +69 28733 44.057544353134 0 +69 28757 44.143993818568 0 +69 28757 44.143993818568 0 +69 28771 44.144153818568 0 +69 28771 44.144153818568 0 +69 28828 44.324398582336 0 +69 28828 44.324398582336 0 +69 28835 44.324558582336 0 +69 28835 44.324558582336 0 +69 28862 44.331276663352 0 +69 28862 44.331276663352 0 +69 28868 44.331436663352 0 +69 28868 44.331436663352 0 +69 28889 44.357384353142 0 +69 28889 44.357384353142 0 +69 28903 44.357544353142 0 +69 28903 44.357544353142 0 +69 28927 44.443993816103 0 +69 28927 44.443993816103 0 +69 28941 44.444153816103 0 +69 28941 44.444153816103 0 +69 28994 44.624398582336 0 +69 28994 44.624398582336 0 +69 29001 44.624558582336 0 +69 29001 44.624558582336 0 +69 29028 44.63127666581 0 +69 29028 44.63127666581 0 +69 29034 44.63143666581 0 +69 29034 44.63143666581 0 +69 29055 44.657384353131 0 +69 29055 44.657384353131 0 +69 29069 44.657544353131 0 +69 29069 44.657544353131 0 +69 29093 44.743993814138 0 +69 29093 44.743993814138 0 +69 29107 44.744153814138 0 +69 29107 44.744153814138 0 +69 29160 44.924398582336 0 +69 29160 44.924398582336 0 +69 29167 44.924558582336 0 +69 29167 44.924558582336 0 +69 29194 44.931276668328 0 +69 29194 44.931276668328 0 +69 29200 44.931436668328 0 +69 29200 44.931436668328 0 +69 29221 44.957384353109 0 +69 29221 44.957384353109 0 +69 29235 44.957544353109 0 +69 29235 44.957544353109 0 +69 29259 45.043993812593 0 +69 29259 45.043993812593 0 +69 29273 45.044153812593 0 +69 29273 45.044153812593 0 +69 29326 45.224398582336 0 +69 29326 45.224398582336 0 +69 29333 45.224558582336 0 +69 29333 45.224558582336 0 +69 29360 45.231276670771 0 +69 29360 45.231276670771 0 +69 29366 45.231436670771 0 +69 29366 45.231436670771 0 +69 29387 45.257384353088 0 +69 29387 45.257384353088 0 +69 29401 45.257544353088 0 +69 29401 45.257544353088 0 +69 29425 45.343993811321 0 +69 29425 45.343993811321 0 +69 29439 45.344153811321 0 +69 29439 45.344153811321 0 +69 29492 45.524398582336 0 +69 29492 45.524398582336 0 +69 29499 45.524558582336 0 +69 29499 45.524558582336 0 +69 29526 45.53127667327 0 +69 29526 45.53127667327 0 +69 29532 45.53143667327 0 +69 29532 45.53143667327 0 +69 29553 45.557384353087 0 +69 29553 45.557384353087 0 +69 29567 45.557544353087 0 +69 29567 45.557544353087 0 +69 29591 45.643993810247 0 +69 29591 45.643993810247 0 +69 29605 45.644153810247 0 +69 29605 45.644153810247 0 +69 29658 45.824398582336 0 +69 29658 45.824398582336 0 +69 29665 45.824558582336 0 +69 29665 45.824558582336 0 +69 29692 45.831276675809 0 +69 29692 45.831276675809 0 +69 29698 45.831436675809 0 +69 29698 45.831436675809 0 +69 29719 45.857384353099 0 +69 29719 45.857384353099 0 +69 29733 45.857544353099 0 +69 29733 45.857544353099 0 +69 29757 45.94399380881 0 +69 29757 45.94399380881 0 +69 29771 45.94415380881 0 +69 29771 45.94415380881 0 +69 29824 46.124398582336 0 +69 29824 46.124398582336 0 +69 29831 46.124558582336 0 +69 29831 46.124558582336 0 +69 29858 46.131276678861 0 +69 29858 46.131276678861 0 +69 29864 46.131436678861 0 +69 29864 46.131436678861 0 +69 29885 46.157384350237 0 +69 29885 46.157384350237 0 +69 29899 46.157544350237 0 +69 29899 46.157544350237 0 +69 29922 46.243993803699 0 +69 29922 46.243993803699 0 +69 29932 46.244153803699 0 +69 29932 46.244153803699 0 +69 29990 46.424398582336 0 +69 29990 46.424398582336 0 +69 29997 46.424558582336 0 +69 29997 46.424558582336 0 +69 30024 46.431276686409 0 +69 30024 46.431276686409 0 +69 30030 46.431436686409 0 +69 30030 46.431436686409 0 +69 30051 46.457384341327 0 +69 30051 46.457384341327 0 +69 30065 46.457544341327 0 +69 30065 46.457544341327 0 +69 30088 46.543993792983 0 +69 30088 46.543993792983 0 +69 30098 46.544153792983 0 +69 30098 46.544153792983 0 +69 30156 46.724398582336 0 +69 30156 46.724398582336 0 +69 30163 46.724558582336 0 +69 30163 46.724558582336 0 +69 30190 46.731276699768 0 +69 30190 46.731276699768 0 +69 30196 46.731436699768 0 +69 30196 46.731436699768 0 +69 30216 46.757384329816 0 +69 30216 46.757384329816 0 +69 30226 46.757544329816 0 +69 30226 46.757544329816 0 +69 30254 46.843993781596 0 +69 30254 46.843993781596 0 +69 30264 46.844153781596 0 +69 30264 46.844153781596 0 +69 30322 47.024398582336 0 +69 30322 47.024398582336 0 +69 30329 47.024558582336 0 +69 30329 47.024558582336 0 +69 30356 47.031276714347 0 +69 30356 47.031276714347 0 +69 30362 47.031436714347 0 +69 30362 47.031436714347 0 +69 30382 47.057384318309 0 +69 30382 47.057384318309 0 +69 30392 47.057544318309 0 +69 30392 47.057544318309 0 +69 30420 47.143993770247 0 +69 30420 47.143993770247 0 +69 30430 47.144153770247 0 +69 30430 47.144153770247 0 +69 30488 47.324398582336 0 +69 30488 47.324398582336 0 +69 30495 47.324558582336 0 +69 30495 47.324558582336 0 +69 30522 47.331276729157 0 +69 30522 47.331276729157 0 +69 30528 47.331436729157 0 +69 30528 47.331436729157 0 +69 30548 47.357384306963 0 +69 30548 47.357384306963 0 +69 30558 47.357544306963 0 +69 30558 47.357544306963 0 +69 30586 47.443993758984 0 +69 30586 47.443993758984 0 +69 30596 47.444153758984 0 +69 30596 47.444153758984 0 +69 30654 47.624398582336 0 +69 30654 47.624398582336 0 +69 30661 47.624558582336 0 +69 30661 47.624558582336 0 +69 30688 47.631276744132 0 +69 30688 47.631276744132 0 +69 30694 47.631436744132 0 +69 30694 47.631436744132 0 +69 30714 47.657384295839 0 +69 30714 47.657384295839 0 +69 30724 47.657544295839 0 +69 30724 47.657544295839 0 +69 30752 47.743993747807 0 +69 30752 47.743993747807 0 +69 30762 47.744153747807 0 +69 30762 47.744153747807 0 +69 30820 47.924398582336 0 +69 30820 47.924398582336 0 +69 30827 47.924558582336 0 +69 30827 47.924558582336 0 +69 30854 47.931276759305 0 +69 30854 47.931276759305 0 +69 30860 47.931436759305 0 +69 30860 47.931436759305 0 +69 30880 47.957384284957 0 +69 30880 47.957384284957 0 +69 30890 47.957544284957 0 +69 30890 47.957544284957 0 +69 30918 48.043993736723 0 +69 30918 48.043993736723 0 +69 30928 48.044153736723 0 +69 30928 48.044153736723 0 +69 30986 48.224398582336 0 +69 30986 48.224398582336 0 +69 30993 48.224558582336 0 +69 30993 48.224558582336 0 +69 31020 48.231276774574 0 +69 31020 48.231276774574 0 +69 31026 48.231436774574 0 +69 31026 48.231436774574 0 +69 31046 48.257384274373 0 +69 31046 48.257384274373 0 +69 31056 48.257544274373 0 +69 31056 48.257544274373 0 +69 31084 48.343993727328 0 +69 31084 48.343993727328 0 +69 31094 48.344153727328 0 +69 31094 48.344153727328 0 +69 31152 48.524398582336 0 +69 31152 48.524398582336 0 +69 31159 48.524558582336 0 +69 31159 48.524558582336 0 +69 31186 48.531276790029 0 +69 31186 48.531276790029 0 +69 31192 48.531436790029 0 +69 31192 48.531436790029 0 +69 31212 48.557384264097 0 +69 31212 48.557384264097 0 +69 31222 48.557544264097 0 +69 31222 48.557544264097 0 +69 31250 48.6439937182 0 +69 31250 48.6439937182 0 +69 31260 48.6441537182 0 +69 31260 48.6441537182 0 +69 31318 48.824398582336 0 +69 31318 48.824398582336 0 +69 31325 48.824558582336 0 +69 31325 48.824558582336 0 +69 31352 48.83127680564 0 +69 31352 48.83127680564 0 +69 31358 48.83143680564 0 +69 31358 48.83143680564 0 +69 31378 48.85738425419 0 +69 31378 48.85738425419 0 +69 31388 48.85754425419 0 +69 31388 48.85754425419 0 +69 31416 48.943993710675 0 +69 31416 48.943993710675 0 +69 31426 48.944153710675 0 +69 31426 48.944153710675 0 +69 31484 49.124398582336 0 +69 31484 49.124398582336 0 +69 31491 49.124558582336 0 +69 31491 49.124558582336 0 +69 31518 49.13127682136 0 +69 31518 49.13127682136 0 +69 31524 49.13143682136 0 +69 31524 49.13143682136 0 +69 31544 49.157384244721 0 +69 31544 49.157384244721 0 +69 31554 49.157544244721 0 +69 31554 49.157544244721 0 +69 31582 49.243993704337 0 +69 31582 49.243993704337 0 +69 31592 49.244153704337 0 +69 31592 49.244153704337 0 +69 31650 49.424398582336 0 +69 31650 49.424398582336 0 +69 31657 49.424558582336 0 +69 31657 49.424558582336 0 +69 31684 49.431276837159 0 +69 31684 49.431276837159 0 +69 31690 49.431436837159 0 +69 31690 49.431436837159 0 +69 31710 49.457384235618 0 +69 31710 49.457384235618 0 +69 31720 49.457544235618 0 +69 31720 49.457544235618 0 +69 31748 49.543993699244 0 +69 31748 49.543993699244 0 +69 31758 49.544153699244 0 +69 31758 49.544153699244 0 +69 31816 49.724398582336 0 +69 31816 49.724398582336 0 +69 31823 49.724558582336 0 +69 31823 49.724558582336 0 +69 31850 49.731276842151 0 +69 31850 49.731276842151 0 +69 31856 49.731436842151 0 +69 31856 49.731436842151 0 +69 31876 49.757384226909 0 +69 31876 49.757384226909 0 +69 31886 49.757544226909 0 +69 31886 49.757544226909 0 +69 31914 49.843993694931 0 +69 31914 49.843993694931 0 +69 31924 49.844153694931 0 +69 31924 49.844153694931 0 +69 31982 50.024398582336 0 +69 31982 50.024398582336 0 +69 31989 50.024558582336 0 +69 31989 50.024558582336 0 +69 32016 50.031276841687 0 +69 32016 50.031276841687 0 +69 32022 50.031436841687 0 +69 32022 50.031436841687 0 +69 32042 50.057384218616 0 +69 32042 50.057384218616 0 +69 32052 50.057544218616 0 +69 32052 50.057544218616 0 +69 32080 50.143993691243 0 +69 32080 50.143993691243 0 +69 32090 50.144153691243 0 +69 32090 50.144153691243 0 +69 32148 50.324398582336 0 +69 32148 50.324398582336 0 +69 32155 50.324558582336 0 +69 32155 50.324558582336 0 +69 32182 50.331276841226 0 +69 32182 50.331276841226 0 +69 32188 50.331436841226 0 +69 32188 50.331436841226 0 +69 32208 50.3573842108 0 +69 32208 50.3573842108 0 +69 32218 50.3575442108 0 +69 32218 50.3575442108 0 +69 32246 50.443993688083 0 +69 32246 50.443993688083 0 +69 32256 50.444153688083 0 +69 32256 50.444153688083 0 +69 32314 50.624398582336 0 +69 32314 50.624398582336 0 +69 32321 50.624558582336 0 +69 32321 50.624558582336 0 +69 32348 50.631276840782 0 +69 32348 50.631276840782 0 +69 32354 50.631436840782 0 +69 32354 50.631436840782 0 +69 32374 50.657384203419 0 +69 32374 50.657384203419 0 +69 32384 50.657544203419 0 +69 32384 50.657544203419 0 +69 32412 50.743993685542 0 +69 32412 50.743993685542 0 +69 32422 50.744153685542 0 +69 32422 50.744153685542 0 +69 32480 50.924398582336 0 +69 32480 50.924398582336 0 +69 32487 50.924558582336 0 +69 32487 50.924558582336 0 +69 32514 50.931276840349 0 +69 32514 50.931276840349 0 +69 32520 50.931436840349 0 +69 32520 50.931436840349 0 +69 32540 50.957384196502 0 +69 32540 50.957384196502 0 +69 32550 50.957544196502 0 +69 32550 50.957544196502 0 +69 32578 51.043993683597 0 +69 32578 51.043993683597 0 +69 32588 51.044153683597 0 +69 32588 51.044153683597 0 +69 32642 51.224398582336 0 +69 32642 51.224398582336 0 +69 32649 51.224558582336 0 +69 32649 51.224558582336 0 +69 32676 51.231276839912 0 +69 32676 51.231276839912 0 +69 32682 51.231436839912 0 +69 32682 51.231436839912 0 +69 32702 51.257384190124 0 +69 32702 51.257384190124 0 +69 32712 51.257544190124 0 +69 32712 51.257544190124 0 +69 32736 51.343993682284 0 +69 32736 51.343993682284 0 +69 32746 51.344153682284 0 +69 32746 51.344153682284 0 +69 32800 51.524398582336 0 +69 32800 51.524398582336 0 +69 32807 51.524558582336 0 +69 32807 51.524558582336 0 +69 32834 51.531276839494 0 +69 32834 51.531276839494 0 +69 32840 51.531436839494 0 +69 32840 51.531436839494 0 +69 32864 51.557384184246 0 +69 32864 51.557384184246 0 +69 32874 51.557544184246 0 +69 32874 51.557544184246 0 +69 32902 51.643993681524 0 +69 32902 51.643993681524 0 +69 32912 51.644153681524 0 +69 32912 51.644153681524 0 +69 32966 51.824398582336 0 +69 32966 51.824398582336 0 +69 32973 51.824558582336 0 +69 32973 51.824558582336 0 +69 33000 51.831276839089 0 +69 33000 51.831276839089 0 +69 33006 51.831436839089 0 +69 33006 51.831436839089 0 +69 33030 51.857384178906 0 +69 33030 51.857384178906 0 +69 33040 51.857544178906 0 +69 33040 51.857544178906 0 +69 33068 51.943993681491 0 +69 33068 51.943993681491 0 +69 33078 51.944153681491 0 +69 33078 51.944153681491 0 +69 33132 52.124398582336 0 +69 33132 52.124398582336 0 +69 33139 52.124558582336 0 +69 33139 52.124558582336 0 +69 33166 52.131276838692 0 +69 33166 52.131276838692 0 +69 33172 52.131436838692 0 +69 33172 52.131436838692 0 +69 33196 52.157384174145 0 +69 33196 52.157384174145 0 +69 33206 52.157544174145 0 +69 33206 52.157544174145 0 +69 33234 52.243993682011 0 +69 33234 52.243993682011 0 +69 33244 52.244153682011 0 +69 33244 52.244153682011 0 +69 33298 52.424398582336 0 +69 33298 52.424398582336 0 +69 33305 52.424558582336 0 +69 33305 52.424558582336 0 +69 33332 52.431276838288 0 +69 33332 52.431276838288 0 +69 33338 52.431436838288 0 +69 33338 52.431436838288 0 +69 33362 52.457384169983 0 +69 33362 52.457384169983 0 +69 33372 52.457544169983 0 +69 33372 52.457544169983 0 +69 33400 52.543993683051 0 +69 33400 52.543993683051 0 +69 33410 52.544153683051 0 +69 33410 52.544153683051 0 +69 33464 52.724398582336 0 +69 33464 52.724398582336 0 +69 33471 52.724558582336 0 +69 33471 52.724558582336 0 +69 33499 52.731276837906 0 +69 33499 52.731276837906 0 +69 33509 52.731436837906 0 +69 33509 52.731436837906 0 +69 33528 52.757384166374 0 +69 33528 52.757384166374 0 +69 33538 52.757544166374 0 +69 33538 52.757544166374 0 +69 33566 52.843993684615 0 +69 33566 52.843993684615 0 +69 33576 52.844153684615 0 +69 33576 52.844153684615 0 +69 33630 53.024398582336 0 +69 33630 53.024398582336 0 +69 33637 53.024558582336 0 +69 33637 53.024558582336 0 +69 33665 53.031276837529 0 +69 33665 53.031276837529 0 +69 33675 53.031436837529 0 +69 33675 53.031436837529 0 +69 33694 53.057384163324 0 +69 33694 53.057384163324 0 +69 33704 53.057544163324 0 +69 33704 53.057544163324 0 +69 33732 53.143993686732 0 +69 33732 53.143993686732 0 +69 33742 53.144153686732 0 +69 33742 53.144153686732 0 +69 33772 53.324398582336 0 +69 33772 53.324398582336 0 +69 33778 53.324558582336 0 +69 33778 53.324558582336 0 +69 33804 53.331276837158 0 +69 33804 53.331276837158 0 +69 33813 53.331436837158 0 +69 33813 53.331436837158 0 +69 33831 53.357384160285 0 +69 33831 53.357384160285 0 +69 33840 53.357544160285 0 +69 33840 53.357544160285 0 +69 33866 53.44399368936 0 +69 33866 53.44399368936 0 +69 33875 53.44415368936 0 +69 33875 53.44415368936 0 +69 33899 53.624398582336 0 +69 33899 53.624398582336 0 +69 33905 53.624558582336 0 +69 33905 53.624558582336 0 +69 33931 53.631276836803 0 +69 33931 53.631276836803 0 +69 33940 53.631436836803 0 +69 33940 53.631436836803 0 +69 33958 53.657384156982 0 +69 33958 53.657384156982 0 +69 33967 53.657544156982 0 +69 33967 53.657544156982 0 +69 33993 53.743993692655 0 +69 33993 53.743993692655 0 +69 34002 53.744153692655 0 +69 34002 53.744153692655 0 +69 34026 53.924398582336 0 +69 34026 53.924398582336 0 +69 34032 53.924558582336 0 +69 34032 53.924558582336 0 +69 34058 53.931276836464 0 +69 34058 53.931276836464 0 +69 34067 53.931436836464 0 +69 34067 53.931436836464 0 +69 34085 53.95738415332 0 +69 34085 53.95738415332 0 +69 34094 53.95754415332 0 +69 34094 53.95754415332 0 +69 34120 54.043993696094 0 +69 34120 54.043993696094 0 +69 34129 54.044153696094 0 +69 34129 54.044153696094 0 +69 34153 54.224398582336 0 +69 34153 54.224398582336 0 +69 34159 54.224558582336 0 +69 34159 54.224558582336 0 +69 34185 54.231276836131 0 +69 34185 54.231276836131 0 +69 34194 54.231436836131 0 +69 34194 54.231436836131 0 +69 34212 54.257384149235 0 +69 34212 54.257384149235 0 +69 34221 54.257544149235 0 +69 34221 54.257544149235 0 +69 34247 54.343993699619 0 +69 34247 54.343993699619 0 +69 34256 54.344153699619 0 +69 34256 54.344153699619 0 +69 34280 54.524398582336 0 +69 34280 54.524398582336 0 +69 34286 54.524558582336 0 +69 34286 54.524558582336 0 +69 34312 54.531276835797 0 +69 34312 54.531276835797 0 +69 34321 54.531436835797 0 +69 34321 54.531436835797 0 +69 34339 54.557384144828 0 +69 34339 54.557384144828 0 +69 34348 54.557544144828 0 +69 34348 54.557544144828 0 +69 34374 54.643993703131 0 +69 34374 54.643993703131 0 +69 34383 54.644153703131 0 +69 34383 54.644153703131 0 +69 34407 54.824398582336 0 +69 34407 54.824398582336 0 +69 34413 54.824558582336 0 +69 34413 54.824558582336 0 +69 34439 54.831276835522 0 +69 34439 54.831276835522 0 +69 34448 54.831436835522 0 +69 34448 54.831436835522 0 +69 34466 54.85738414112 0 +69 34466 54.85738414112 0 +69 34475 54.85754414112 0 +69 34475 54.85754414112 0 +69 34501 54.943993706647 0 +69 34501 54.943993706647 0 +69 34510 54.944153706647 0 +69 34510 54.944153706647 0 +69 34534 55.124398582336 0 +69 34534 55.124398582336 0 +69 34540 55.124558582336 0 +69 34540 55.124558582336 0 +69 34566 55.131276835415 0 +69 34566 55.131276835415 0 +69 34575 55.131436835415 0 +69 34575 55.131436835415 0 +69 34593 55.15738413831 0 +69 34593 55.15738413831 0 +69 34602 55.15754413831 0 +69 34602 55.15754413831 0 +69 34628 55.243993710085 0 +69 34628 55.243993710085 0 +69 34637 55.244153710085 0 +69 34637 55.244153710085 0 +69 34661 55.424398582336 0 +69 34661 55.424398582336 0 +69 34667 55.424558582336 0 +69 34667 55.424558582336 0 +69 34693 55.431276835478 0 +69 34693 55.431276835478 0 +69 34702 55.431436835478 0 +69 34702 55.431436835478 0 +69 34720 55.45738413635 0 +69 34720 55.45738413635 0 +69 34729 55.45754413635 0 +69 34729 55.45754413635 0 +69 34755 55.543993713581 0 +69 34755 55.543993713581 0 +69 34764 55.544153713581 0 +69 34764 55.544153713581 0 +69 34788 55.724398582336 0 +69 34788 55.724398582336 0 +69 34794 55.724558582336 0 +69 34794 55.724558582336 0 +69 34820 55.731276835709 0 +69 34820 55.731276835709 0 +69 34829 55.731436835709 0 +69 34829 55.731436835709 0 +69 34847 55.757384135289 0 +69 34847 55.757384135289 0 +69 34856 55.757544135289 0 +69 34856 55.757544135289 0 +69 34882 55.843993717083 0 +69 34882 55.843993717083 0 +69 34891 55.844153717083 0 +69 34891 55.844153717083 0 +69 34915 56.024398582336 0 +69 34915 56.024398582336 0 +69 34921 56.024558582336 0 +69 34921 56.024558582336 0 +69 34947 56.031276836125 0 +69 34947 56.031276836125 0 +69 34956 56.031436836125 0 +69 34956 56.031436836125 0 +69 34974 56.057384135209 0 +69 34974 56.057384135209 0 +69 34983 56.057544135209 0 +69 34983 56.057544135209 0 +69 35009 56.143993720633 0 +69 35009 56.143993720633 0 +69 35018 56.144153720633 0 +69 35018 56.144153720633 0 +69 35042 56.324398582336 0 +69 35042 56.324398582336 0 +69 35048 56.324558582336 0 +69 35048 56.324558582336 0 +69 35074 56.331276836745 0 +69 35074 56.331276836745 0 +69 35083 56.331436836745 0 +69 35083 56.331436836745 0 +69 35100 56.357384136092 0 +69 35100 56.357384136092 0 +69 35105 56.357544136092 0 +69 35105 56.357544136092 0 +69 35136 56.443993724089 0 +69 35136 56.443993724089 0 +69 35145 56.444153724089 0 +69 35145 56.444153724089 0 +69 35167 56.624398582336 0 +69 35167 56.624398582336 0 +69 35172 56.624558582336 0 +69 35172 56.624558582336 0 +69 35193 56.631276837493 0 +69 35193 56.631276837493 0 +69 35201 56.631436837493 0 +69 35201 56.631436837493 0 +69 35217 56.657384137925 0 +69 35217 56.657384137925 0 +69 35221 56.657544137925 0 +69 35221 56.657544137925 0 +69 35251 56.924398582336 0 +69 35251 56.924398582336 0 +69 35256 56.924558582336 0 +69 35256 56.924558582336 0 +69 35277 56.931276842253 0 +69 35277 56.931276842253 0 +69 35285 56.931436842253 0 +69 35285 56.931436842253 0 +69 35301 56.957384140796 0 +69 35301 56.957384140796 0 +69 35305 56.957544140796 0 +69 35305 56.957544140796 0 +69 35335 57.224398582336 0 +69 35335 57.224398582336 0 +69 35340 57.224558582336 0 +69 35340 57.224558582336 0 +69 35361 57.231276850523 0 +69 35361 57.231276850523 0 +69 35369 57.231436850523 0 +69 35369 57.231436850523 0 +69 35385 57.257384144754 0 +69 35385 57.257384144754 0 +69 35389 57.257544144754 0 +69 35389 57.257544144754 0 +69 35419 57.524398582336 0 +69 35419 57.524398582336 0 +69 35424 57.524558582336 0 +69 35424 57.524558582336 0 +69 35445 57.53127685508 0 +69 35445 57.53127685508 0 +69 35453 57.53143685508 0 +69 35453 57.53143685508 0 +69 35470 57.557384149775 0 +69 35470 57.557384149775 0 +69 35478 57.557544149775 0 +69 35478 57.557544149775 0 +69 35503 57.824398582336 0 +69 35503 57.824398582336 0 +69 35508 57.824558582336 0 +69 35508 57.824558582336 0 +69 35529 57.831276859492 0 +69 35529 57.831276859492 0 +69 35537 57.831436859492 0 +69 35537 57.831436859492 0 +69 35554 57.857384155686 0 +69 35554 57.857384155686 0 +69 35562 57.857544155686 0 +69 35562 57.857544155686 0 +69 35587 58.124398582336 0 +69 35587 58.124398582336 0 +69 35592 58.124558582336 0 +69 35592 58.124558582336 0 +69 35613 58.131276864633 0 +69 35613 58.131276864633 0 +69 35621 58.131436864633 0 +69 35621 58.131436864633 0 +69 35638 58.157384162109 0 +69 35638 58.157384162109 0 +69 35646 58.157544162109 0 +69 35646 58.157544162109 0 +69 35671 58.424398582336 0 +69 35671 58.424398582336 0 +69 35676 58.424558582336 0 +69 35676 58.424558582336 0 +69 35697 58.431276870558 0 +69 35697 58.431276870558 0 +69 35705 58.431436870558 0 +69 35705 58.431436870558 0 +69 35722 58.457384169083 0 +69 35722 58.457384169083 0 +69 35730 58.457544169083 0 +69 35730 58.457544169083 0 +69 35755 58.724398582336 0 +69 35755 58.724398582336 0 +69 35760 58.724558582336 0 +69 35760 58.724558582336 0 +69 35781 58.731276877253 0 +69 35781 58.731276877253 0 +69 35789 58.731436877253 0 +69 35789 58.731436877253 0 +69 35806 58.757384176569 0 +69 35806 58.757384176569 0 +69 35814 58.757544176569 0 +69 35814 58.757544176569 0 +69 35839 59.024398582336 0 +69 35839 59.024398582336 0 +69 35844 59.024558582336 0 +69 35844 59.024558582336 0 +69 35865 59.031276884805 0 +69 35865 59.031276884805 0 +69 35873 59.031436884805 0 +69 35873 59.031436884805 0 +69 35890 59.057384184524 0 +69 35890 59.057384184524 0 +69 35898 59.057544184524 0 +69 35898 59.057544184524 0 +69 35923 59.324398582336 0 +69 35923 59.324398582336 0 +69 35928 59.324558582336 0 +69 35928 59.324558582336 0 +69 35949 59.331276893239 0 +69 35949 59.331276893239 0 +69 35957 59.331436893239 0 +69 35957 59.331436893239 0 +69 35974 59.357384192972 0 +69 35974 59.357384192972 0 +69 35982 59.357544192972 0 +69 35982 59.357544192972 0 +69 36007 59.624398582336 0 +69 36007 59.624398582336 0 +69 36012 59.624558582336 0 +69 36012 59.624558582336 0 +69 36033 59.631276902575 0 +69 36033 59.631276902575 0 +69 36041 59.631436902575 0 +69 36041 59.631436902575 0 +69 36058 59.657384201866 0 +69 36058 59.657384201866 0 +69 36066 59.657544201866 0 +69 36066 59.657544201866 0 +69 36091 59.924398582336 0 +69 36091 59.924398582336 0 +69 36096 59.924558582336 0 +69 36096 59.924558582336 0 +69 36117 59.931276912849 0 +69 36117 59.931276912849 0 +69 36125 59.931436912849 0 +69 36125 59.931436912849 0 +69 36142 59.957384211172 0 +69 36142 59.957384211172 0 +69 36150 59.957544211172 0 +69 36150 59.957544211172 0 +69 36175 60.224398582336 0 +69 36175 60.224398582336 0 +69 36180 60.224558582336 0 +69 36180 60.224558582336 0 +69 36218 60.257384220865 0 +69 36218 60.257384220865 0 +69 36226 60.257544220865 0 +69 36226 60.257544220865 0 +69 36251 60.524398582336 0 +69 36251 60.524398582336 0 +69 36256 60.524558582336 0 +69 36256 60.524558582336 0 +69 36294 60.557384230953 0 +69 36294 60.557384230953 0 +69 36302 60.557544230953 0 +69 36302 60.557544230953 0 +69 36327 60.824398582336 0 +69 36327 60.824398582336 0 +69 36332 60.824558582336 0 +69 36332 60.824558582336 0 +69 36370 60.857384241392 0 +69 36370 60.857384241392 0 +69 36378 60.857544241392 0 +69 36378 60.857544241392 0 +69 36403 61.124398582336 0 +69 36403 61.124398582336 0 +69 36408 61.124558582336 0 +69 36408 61.124558582336 0 +69 36446 61.157384252127 0 +69 36446 61.157384252127 0 +69 36454 61.157544252127 0 +69 36454 61.157544252127 0 +69 36479 61.424398582336 0 +69 36479 61.424398582336 0 +69 36484 61.424558582336 0 +69 36484 61.424558582336 0 +69 36522 61.45738426323 0 +69 36522 61.45738426323 0 +69 36530 61.45754426323 0 +69 36530 61.45754426323 0 +69 36555 61.724398582336 0 +69 36555 61.724398582336 0 +69 36560 61.724558582336 0 +69 36560 61.724558582336 0 +69 36598 61.757384274635 0 +69 36598 61.757384274635 0 +69 36606 61.757544274635 0 +69 36606 61.757544274635 0 +69 36631 62.024398582336 0 +69 36631 62.024398582336 0 +69 36636 62.024558582336 0 +69 36636 62.024558582336 0 +69 36674 62.057384285728 0 +69 36674 62.057384285728 0 +69 36682 62.057544285728 0 +69 36682 62.057544285728 0 +69 36707 62.324398582336 0 +69 36707 62.324398582336 0 +69 36712 62.324558582336 0 +69 36712 62.324558582336 0 +69 36750 62.357384295767 0 +69 36750 62.357384295767 0 +69 36758 62.357544295767 0 +69 36758 62.357544295767 0 +69 36783 62.624398582336 0 +69 36783 62.624398582336 0 +69 36788 62.624558582336 0 +69 36788 62.624558582336 0 +69 36826 62.657384304708 0 +69 36826 62.657384304708 0 +69 36834 62.657544304708 0 +69 36834 62.657544304708 0 +69 36859 62.924398582336 0 +69 36859 62.924398582336 0 +69 36864 62.924558582336 0 +69 36864 62.924558582336 0 +69 36902 62.957384312531 0 +69 36902 62.957384312531 0 +69 36910 62.957544312531 0 +69 36910 62.957544312531 0 +70 1262 6.1 0 +70 1262 6.1 0 +70 1285 6.214557014941 0 +70 1285 6.214557014941 0 +70 1292 6.214717014941 0 +70 1292 6.214717014941 0 +70 1319 6.231276487063 0 +70 1319 6.231276487063 0 +70 1326 6.231436487063 0 +70 1326 6.231436487063 0 +70 1358 6.257384178941 0 +70 1358 6.257384178941 0 +70 1369 6.257544178941 0 +70 1369 6.257544178941 0 +70 1468 6.514557005507 0 +70 1468 6.514557005507 0 +70 1475 6.514717005507 0 +70 1475 6.514717005507 0 +70 1499 6.524398582336 0 +70 1499 6.524398582336 0 +70 1507 6.524558582336 0 +70 1507 6.524558582336 0 +70 1535 6.531276486831 0 +70 1535 6.531276486831 0 +70 1542 6.531436486831 0 +70 1542 6.531436486831 0 +70 1575 6.557384179276 0 +70 1575 6.557384179276 0 +70 1586 6.557544179276 0 +70 1586 6.557544179276 0 +70 1685 6.814556995188 0 +70 1685 6.814556995188 0 +70 1692 6.814716995188 0 +70 1692 6.814716995188 0 +70 1716 6.824398582336 0 +70 1716 6.824398582336 0 +70 1724 6.824558582336 0 +70 1724 6.824558582336 0 +70 1752 6.831276486811 0 +70 1752 6.831276486811 0 +70 1759 6.831436486811 0 +70 1759 6.831436486811 0 +70 1792 6.857384179479 0 +70 1792 6.857384179479 0 +70 1803 6.857544179479 0 +70 1803 6.857544179479 0 +70 1902 7.114556984223 0 +70 1902 7.114556984223 0 +70 1909 7.114716984223 0 +70 1909 7.114716984223 0 +70 1933 7.124398582336 0 +70 1933 7.124398582336 0 +70 1941 7.124558582336 0 +70 1941 7.124558582336 0 +70 1969 7.131276486808 0 +70 1969 7.131276486808 0 +70 1976 7.131436486808 0 +70 1976 7.131436486808 0 +70 2009 7.157384179668 0 +70 2009 7.157384179668 0 +70 2020 7.157544179668 0 +70 2020 7.157544179668 0 +70 2119 7.414556972819 0 +70 2119 7.414556972819 0 +70 2126 7.414716972819 0 +70 2126 7.414716972819 0 +70 2150 7.424398582336 0 +70 2150 7.424398582336 0 +70 2158 7.424558582336 0 +70 2158 7.424558582336 0 +70 2186 7.431276486796 0 +70 2186 7.431276486796 0 +70 2193 7.431436486796 0 +70 2193 7.431436486796 0 +70 2226 7.45738417987 0 +70 2226 7.45738417987 0 +70 2237 7.45754417987 0 +70 2237 7.45754417987 0 +70 2336 7.714556960939 0 +70 2336 7.714556960939 0 +70 2343 7.714716960939 0 +70 2343 7.714716960939 0 +70 2367 7.724398582336 0 +70 2367 7.724398582336 0 +70 2375 7.724558582336 0 +70 2375 7.724558582336 0 +70 2403 7.731276486797 0 +70 2403 7.731276486797 0 +70 2410 7.731436486797 0 +70 2410 7.731436486797 0 +70 2443 7.757384180075 0 +70 2443 7.757384180075 0 +70 2454 7.757544180075 0 +70 2454 7.757544180075 0 +70 2553 8.014556948475 0 +70 2553 8.014556948475 0 +70 2560 8.014716948475 0 +70 2560 8.014716948475 0 +70 2584 8.024398582336 0 +70 2584 8.024398582336 0 +70 2592 8.024558582336 0 +70 2592 8.024558582336 0 +70 2620 8.031276486795 0 +70 2620 8.031276486795 0 +70 2627 8.031436486795 0 +70 2627 8.031436486795 0 +70 2660 8.057384180287 0 +70 2660 8.057384180287 0 +70 2671 8.057544180287 0 +70 2671 8.057544180287 0 +70 2728 8.143993909962 0 +70 2728 8.143993909962 0 +70 2743 8.144153909962 0 +70 2743 8.144153909962 0 +70 2770 8.314556935291 0 +70 2770 8.314556935291 0 +70 2777 8.314716935291 0 +70 2777 8.314716935291 0 +70 2801 8.324398582336 0 +70 2801 8.324398582336 0 +70 2809 8.324558582336 0 +70 2809 8.324558582336 0 +70 2841 8.331276486806 0 +70 2841 8.331276486806 0 +70 2848 8.331436486806 0 +70 2848 8.331436486806 0 +70 2881 8.3573841805 0 +70 2881 8.3573841805 0 +70 2892 8.3575441805 0 +70 2892 8.3575441805 0 +70 2949 8.443993908226 0 +70 2949 8.443993908226 0 +70 2964 8.444153908226 0 +70 2964 8.444153908226 0 +70 2995 8.61455692156 0 +70 2995 8.61455692156 0 +70 3002 8.61471692156 0 +70 3002 8.61471692156 0 +70 3026 8.624398582336 0 +70 3026 8.624398582336 0 +70 3034 8.624558582336 0 +70 3034 8.624558582336 0 +70 3066 8.631276486794 0 +70 3066 8.631276486794 0 +70 3073 8.631436486794 0 +70 3073 8.631436486794 0 +70 3106 8.657384180719 0 +70 3106 8.657384180719 0 +70 3117 8.657544180719 0 +70 3117 8.657544180719 0 +70 3174 8.743993906406 0 +70 3174 8.743993906406 0 +70 3189 8.744153906406 0 +70 3189 8.744153906406 0 +70 3220 8.914556907259 0 +70 3220 8.914556907259 0 +70 3227 8.914716907259 0 +70 3227 8.914716907259 0 +70 3251 8.924398582336 0 +70 3251 8.924398582336 0 +70 3259 8.924558582336 0 +70 3259 8.924558582336 0 +70 3291 8.931276486763 0 +70 3291 8.931276486763 0 +70 3298 8.931436486763 0 +70 3298 8.931436486763 0 +70 3331 8.957384180943 0 +70 3331 8.957384180943 0 +70 3342 8.957544180943 0 +70 3342 8.957544180943 0 +70 3399 9.04399390454 0 +70 3399 9.04399390454 0 +70 3414 9.04415390454 0 +70 3414 9.04415390454 0 +70 3445 9.214556892419 0 +70 3445 9.214556892419 0 +70 3452 9.214716892419 0 +70 3452 9.214716892419 0 +70 3476 9.224398582336 0 +70 3476 9.224398582336 0 +70 3484 9.224558582336 0 +70 3484 9.224558582336 0 +70 3516 9.23127648678 0 +70 3516 9.23127648678 0 +70 3523 9.23143648678 0 +70 3523 9.23143648678 0 +70 3556 9.257384181166 0 +70 3556 9.257384181166 0 +70 3567 9.257544181166 0 +70 3567 9.257544181166 0 +70 3624 9.343993902652 0 +70 3624 9.343993902652 0 +70 3639 9.344153902652 0 +70 3639 9.344153902652 0 +70 3670 9.514556877151 0 +70 3670 9.514556877151 0 +70 3677 9.514716877151 0 +70 3677 9.514716877151 0 +70 3701 9.524398582336 0 +70 3701 9.524398582336 0 +70 3709 9.524558582336 0 +70 3709 9.524558582336 0 +70 3741 9.531276486774 0 +70 3741 9.531276486774 0 +70 3748 9.531436486774 0 +70 3748 9.531436486774 0 +70 3781 9.557384181399 0 +70 3781 9.557384181399 0 +70 3792 9.557544181399 0 +70 3792 9.557544181399 0 +70 3849 9.643993900772 0 +70 3849 9.643993900772 0 +70 3864 9.644153900772 0 +70 3864 9.644153900772 0 +70 3895 9.814556861723 0 +70 3895 9.814556861723 0 +70 3902 9.814716861723 0 +70 3902 9.814716861723 0 +70 3926 9.824398582336 0 +70 3926 9.824398582336 0 +70 3934 9.824558582336 0 +70 3934 9.824558582336 0 +70 3966 9.831276486773 0 +70 3966 9.831276486773 0 +70 3973 9.831436486773 0 +70 3973 9.831436486773 0 +70 4006 9.857384181638 0 +70 4006 9.857384181638 0 +70 4017 9.857544181638 0 +70 4017 9.857544181638 0 +70 4074 9.943993898897 0 +70 4074 9.943993898897 0 +70 4089 9.944153898897 0 +70 4089 9.944153898897 0 +70 4120 10.114556846518 0 +70 4120 10.114556846518 0 +70 4127 10.114716846518 0 +70 4127 10.114716846518 0 +70 4151 10.124398582336 0 +70 4151 10.124398582336 0 +70 4159 10.124558582336 0 +70 4159 10.124558582336 0 +70 4191 10.131276486772 0 +70 4191 10.131276486772 0 +70 4198 10.131436486772 0 +70 4198 10.131436486772 0 +70 4231 10.157384181883 0 +70 4231 10.157384181883 0 +70 4242 10.157544181883 0 +70 4242 10.157544181883 0 +70 4299 10.243993897044 0 +70 4299 10.243993897044 0 +70 4314 10.244153897044 0 +70 4314 10.244153897044 0 +70 4345 10.414556831999 0 +70 4345 10.414556831999 0 +70 4352 10.414716831999 0 +70 4352 10.414716831999 0 +70 4376 10.424398582336 0 +70 4376 10.424398582336 0 +70 4384 10.424558582336 0 +70 4384 10.424558582336 0 +70 4416 10.431276486761 0 +70 4416 10.431276486761 0 +70 4423 10.431436486761 0 +70 4423 10.431436486761 0 +70 4456 10.457384182119 0 +70 4456 10.457384182119 0 +70 4467 10.457544182119 0 +70 4467 10.457544182119 0 +70 4524 10.54399389528 0 +70 4524 10.54399389528 0 +70 4539 10.54415389528 0 +70 4539 10.54415389528 0 +70 4574 10.714556820945 0 +70 4574 10.714556820945 0 +70 4581 10.714716820945 0 +70 4581 10.714716820945 0 +70 4609 10.724398582336 0 +70 4609 10.724398582336 0 +70 4617 10.724558582336 0 +70 4617 10.724558582336 0 +70 4649 10.731276486773 0 +70 4649 10.731276486773 0 +70 4656 10.731436486773 0 +70 4656 10.731436486773 0 +70 4689 10.757384182346 0 +70 4689 10.757384182346 0 +70 4700 10.757544182346 0 +70 4700 10.757544182346 0 +70 4758 10.843993893701 0 +70 4758 10.843993893701 0 +70 4777 10.844153893701 0 +70 4777 10.844153893701 0 +70 4807 11.014556825169 0 +70 4807 11.014556825169 0 +70 4814 11.014716825169 0 +70 4814 11.014716825169 0 +70 4842 11.024398582336 0 +70 4842 11.024398582336 0 +70 4850 11.024558582336 0 +70 4850 11.024558582336 0 +70 4883 11.031276486765 0 +70 4883 11.031276486765 0 +70 4894 11.031436486765 0 +70 4894 11.031436486765 0 +70 4922 11.057384182606 0 +70 4922 11.057384182606 0 +70 4933 11.057544182606 0 +70 4933 11.057544182606 0 +70 4991 11.14399389274 0 +70 4991 11.14399389274 0 +70 5010 11.14415389274 0 +70 5010 11.14415389274 0 +70 5040 11.31455683863 0 +70 5040 11.31455683863 0 +70 5047 11.31471683863 0 +70 5047 11.31471683863 0 +70 5075 11.324398582336 0 +70 5075 11.324398582336 0 +70 5083 11.324558582336 0 +70 5083 11.324558582336 0 +70 5116 11.33127648678 0 +70 5116 11.33127648678 0 +70 5127 11.33143648678 0 +70 5127 11.33143648678 0 +70 5154 11.35738418284 0 +70 5154 11.35738418284 0 +70 5161 11.35754418284 0 +70 5161 11.35754418284 0 +70 5224 11.443993892392 0 +70 5224 11.443993892392 0 +70 5243 11.444153892392 0 +70 5243 11.444153892392 0 +70 5273 11.614556853551 0 +70 5273 11.614556853551 0 +70 5280 11.614716853551 0 +70 5280 11.614716853551 0 +70 5308 11.624398582336 0 +70 5308 11.624398582336 0 +70 5316 11.624558582336 0 +70 5316 11.624558582336 0 +70 5349 11.63127648679 0 +70 5349 11.63127648679 0 +70 5360 11.63143648679 0 +70 5360 11.63143648679 0 +70 5391 11.65738418309 0 +70 5391 11.65738418309 0 +70 5398 11.65754418309 0 +70 5398 11.65754418309 0 +70 5465 11.74399389255 0 +70 5465 11.74399389255 0 +70 5484 11.74415389255 0 +70 5484 11.74415389255 0 +70 5514 11.914556868865 0 +70 5514 11.914556868865 0 +70 5521 11.914716868865 0 +70 5521 11.914716868865 0 +70 5549 11.924398582336 0 +70 5549 11.924398582336 0 +70 5557 11.924558582336 0 +70 5557 11.924558582336 0 +70 5590 11.931276486788 0 +70 5590 11.931276486788 0 +70 5601 11.931436486788 0 +70 5601 11.931436486788 0 +70 5632 11.957384183349 0 +70 5632 11.957384183349 0 +70 5639 11.957544183349 0 +70 5639 11.957544183349 0 +70 5706 12.043993893167 0 +70 5706 12.043993893167 0 +70 5725 12.044153893167 0 +70 5725 12.044153893167 0 +70 5755 12.214556884343 0 +70 5755 12.214556884343 0 +70 5762 12.214716884343 0 +70 5762 12.214716884343 0 +70 5790 12.224398582336 0 +70 5790 12.224398582336 0 +70 5798 12.224558582336 0 +70 5798 12.224558582336 0 +70 5831 12.231276486807 0 +70 5831 12.231276486807 0 +70 5842 12.231436486807 0 +70 5842 12.231436486807 0 +70 5873 12.257384183599 0 +70 5873 12.257384183599 0 +70 5880 12.257544183599 0 +70 5880 12.257544183599 0 +70 5947 12.343993893974 0 +70 5947 12.343993893974 0 +70 5966 12.344153893974 0 +70 5966 12.344153893974 0 +70 5996 12.514556899849 0 +70 5996 12.514556899849 0 +70 6003 12.514716899849 0 +70 6003 12.514716899849 0 +70 6031 12.524398582336 0 +70 6031 12.524398582336 0 +70 6039 12.524558582336 0 +70 6039 12.524558582336 0 +70 6072 12.531276486799 0 +70 6072 12.531276486799 0 +70 6083 12.531436486799 0 +70 6083 12.531436486799 0 +70 6114 12.557384183875 0 +70 6114 12.557384183875 0 +70 6121 12.557544183875 0 +70 6121 12.557544183875 0 +70 6188 12.643993894778 0 +70 6188 12.643993894778 0 +70 6207 12.644153894778 0 +70 6207 12.644153894778 0 +70 6237 12.814556915398 0 +70 6237 12.814556915398 0 +70 6244 12.814716915398 0 +70 6244 12.814716915398 0 +70 6272 12.824398582336 0 +70 6272 12.824398582336 0 +70 6280 12.824558582336 0 +70 6280 12.824558582336 0 +70 6313 12.831276486802 0 +70 6313 12.831276486802 0 +70 6324 12.831436486802 0 +70 6324 12.831436486802 0 +70 6355 12.857384184139 0 +70 6355 12.857384184139 0 +70 6362 12.857544184139 0 +70 6362 12.857544184139 0 +70 6429 12.943993895594 0 +70 6429 12.943993895594 0 +70 6448 12.944153895594 0 +70 6448 12.944153895594 0 +70 6478 13.114556930999 0 +70 6478 13.114556930999 0 +70 6485 13.114716930999 0 +70 6485 13.114716930999 0 +70 6513 13.124398582336 0 +70 6513 13.124398582336 0 +70 6521 13.124558582336 0 +70 6521 13.124558582336 0 +70 6554 13.131276486785 0 +70 6554 13.131276486785 0 +70 6565 13.131436486785 0 +70 6565 13.131436486785 0 +70 6596 13.157384184416 0 +70 6596 13.157384184416 0 +70 6603 13.157544184416 0 +70 6603 13.157544184416 0 +70 6670 13.243993896412 0 +70 6670 13.243993896412 0 +70 6689 13.244153896412 0 +70 6689 13.244153896412 0 +70 6719 13.41455694659 0 +70 6719 13.41455694659 0 +70 6726 13.41471694659 0 +70 6726 13.41471694659 0 +70 6754 13.424398582336 0 +70 6754 13.424398582336 0 +70 6762 13.424558582336 0 +70 6762 13.424558582336 0 +70 6795 13.431276486795 0 +70 6795 13.431276486795 0 +70 6806 13.431436486795 0 +70 6806 13.431436486795 0 +70 6837 13.457384184698 0 +70 6837 13.457384184698 0 +70 6844 13.457544184698 0 +70 6844 13.457544184698 0 +70 6911 13.543993897233 0 +70 6911 13.543993897233 0 +70 6930 13.544153897233 0 +70 6930 13.544153897233 0 +70 6960 13.714556962198 0 +70 6960 13.714556962198 0 +70 6967 13.714716962198 0 +70 6967 13.714716962198 0 +70 6995 13.724398582336 0 +70 6995 13.724398582336 0 +70 7003 13.724558582336 0 +70 7003 13.724558582336 0 +70 7036 13.7312764868 0 +70 7036 13.7312764868 0 +70 7047 13.7314364868 0 +70 7047 13.7314364868 0 +70 7078 13.757384184966 0 +70 7078 13.757384184966 0 +70 7085 13.757544184966 0 +70 7085 13.757544184966 0 +70 7152 13.843993898057 0 +70 7152 13.843993898057 0 +70 7171 13.844153898057 0 +70 7171 13.844153898057 0 +70 7202 14.014556977862 0 +70 7202 14.014556977862 0 +70 7213 14.014716977862 0 +70 7213 14.014716977862 0 +70 7236 14.024398582336 0 +70 7236 14.024398582336 0 +70 7244 14.024558582336 0 +70 7244 14.024558582336 0 +70 7277 14.031276486793 0 +70 7277 14.031276486793 0 +70 7288 14.031436486793 0 +70 7288 14.031436486793 0 +70 7319 14.057384185242 0 +70 7319 14.057384185242 0 +70 7326 14.057544185242 0 +70 7326 14.057544185242 0 +70 7393 14.14399389887 0 +70 7393 14.14399389887 0 +70 7412 14.14415389887 0 +70 7412 14.14415389887 0 +70 7443 14.314556993496 0 +70 7443 14.314556993496 0 +70 7454 14.314716993496 0 +70 7454 14.314716993496 0 +70 7477 14.324398582336 0 +70 7477 14.324398582336 0 +70 7485 14.324558582336 0 +70 7485 14.324558582336 0 +70 7518 14.331276486806 0 +70 7518 14.331276486806 0 +70 7529 14.331436486806 0 +70 7529 14.331436486806 0 +70 7560 14.357384185527 0 +70 7560 14.357384185527 0 +70 7567 14.357544185527 0 +70 7567 14.357544185527 0 +70 7634 14.443993899694 0 +70 7634 14.443993899694 0 +70 7653 14.444153899694 0 +70 7653 14.444153899694 0 +70 7684 14.614557009101 0 +70 7684 14.614557009101 0 +70 7695 14.614717009101 0 +70 7695 14.614717009101 0 +70 7718 14.624398582336 0 +70 7718 14.624398582336 0 +70 7726 14.624558582336 0 +70 7726 14.624558582336 0 +70 7759 14.631276486796 0 +70 7759 14.631276486796 0 +70 7770 14.631436486796 0 +70 7770 14.631436486796 0 +70 7801 14.657384185824 0 +70 7801 14.657384185824 0 +70 7808 14.657544185824 0 +70 7808 14.657544185824 0 +70 7875 14.743993900511 0 +70 7875 14.743993900511 0 +70 7894 14.744153900511 0 +70 7894 14.744153900511 0 +70 7925 14.914557024712 0 +70 7925 14.914557024712 0 +70 7936 14.914717024712 0 +70 7936 14.914717024712 0 +70 7959 14.924398582336 0 +70 7959 14.924398582336 0 +70 7967 14.924558582336 0 +70 7967 14.924558582336 0 +70 8000 14.931276486792 0 +70 8000 14.931276486792 0 +70 8011 14.931436486792 0 +70 8011 14.931436486792 0 +70 8042 14.957384186118 0 +70 8042 14.957384186118 0 +70 8049 14.957544186118 0 +70 8049 14.957544186118 0 +70 8116 15.043993901332 0 +70 8116 15.043993901332 0 +70 8135 15.044153901332 0 +70 8135 15.044153901332 0 +70 8166 15.214557040331 0 +70 8166 15.214557040331 0 +70 8177 15.214717040331 0 +70 8177 15.214717040331 0 +70 8200 15.224398582336 0 +70 8200 15.224398582336 0 +70 8208 15.224558582336 0 +70 8208 15.224558582336 0 +70 8241 15.231276486777 0 +70 8241 15.231276486777 0 +70 8252 15.231436486777 0 +70 8252 15.231436486777 0 +70 8283 15.257384186413 0 +70 8283 15.257384186413 0 +70 8290 15.257544186413 0 +70 8290 15.257544186413 0 +70 8357 15.343993902158 0 +70 8357 15.343993902158 0 +70 8376 15.344153902158 0 +70 8376 15.344153902158 0 +70 8407 15.514557055996 0 +70 8407 15.514557055996 0 +70 8418 15.514717055996 0 +70 8418 15.514717055996 0 +70 8441 15.524398582336 0 +70 8441 15.524398582336 0 +70 8449 15.524558582336 0 +70 8449 15.524558582336 0 +70 8482 15.531276486786 0 +70 8482 15.531276486786 0 +70 8493 15.531436486786 0 +70 8493 15.531436486786 0 +70 8524 15.557384186718 0 +70 8524 15.557384186718 0 +70 8531 15.557544186718 0 +70 8531 15.557544186718 0 +70 8598 15.643993902982 0 +70 8598 15.643993902982 0 +70 8617 15.644153902982 0 +70 8617 15.644153902982 0 +70 8648 15.81455707161 0 +70 8648 15.81455707161 0 +70 8659 15.81471707161 0 +70 8659 15.81471707161 0 +70 8682 15.824398582336 0 +70 8682 15.824398582336 0 +70 8690 15.824558582336 0 +70 8690 15.824558582336 0 +70 8723 15.831276486807 0 +70 8723 15.831276486807 0 +70 8734 15.831436486807 0 +70 8734 15.831436486807 0 +70 8765 15.857384187027 0 +70 8765 15.857384187027 0 +70 8772 15.857544187027 0 +70 8772 15.857544187027 0 +70 8839 15.943993903822 0 +70 8839 15.943993903822 0 +70 8858 15.944153903822 0 +70 8858 15.944153903822 0 +70 8889 16.11455708724 0 +70 8889 16.11455708724 0 +70 8900 16.11471708724 0 +70 8900 16.11471708724 0 +70 8927 16.124398582336 0 +70 8927 16.124398582336 0 +70 8935 16.124558582336 0 +70 8935 16.124558582336 0 +70 8968 16.131276486791 0 +70 8968 16.131276486791 0 +70 8979 16.131436486791 0 +70 8979 16.131436486791 0 +70 9010 16.157384187335 0 +70 9010 16.157384187335 0 +70 9017 16.157544187335 0 +70 9017 16.157544187335 0 +70 9088 16.243993904634 0 +70 9088 16.243993904634 0 +70 9107 16.244153904634 0 +70 9107 16.244153904634 0 +70 9138 16.414557102881 0 +70 9138 16.414557102881 0 +70 9149 16.414717102881 0 +70 9149 16.414717102881 0 +70 9176 16.424398582336 0 +70 9176 16.424398582336 0 +70 9184 16.424558582336 0 +70 9184 16.424558582336 0 +70 9217 16.431276486767 0 +70 9217 16.431276486767 0 +70 9228 16.431436486767 0 +70 9228 16.431436486767 0 +70 9259 16.45738418766 0 +70 9259 16.45738418766 0 +70 9266 16.45754418766 0 +70 9266 16.45754418766 0 +70 9337 16.543993905451 0 +70 9337 16.543993905451 0 +70 9356 16.544153905451 0 +70 9356 16.544153905451 0 +70 9387 16.714557118536 0 +70 9387 16.714557118536 0 +70 9398 16.714717118536 0 +70 9398 16.714717118536 0 +70 9425 16.724398582336 0 +70 9425 16.724398582336 0 +70 9433 16.724558582336 0 +70 9433 16.724558582336 0 +70 9466 16.731276486767 0 +70 9466 16.731276486767 0 +70 9477 16.731436486767 0 +70 9477 16.731436486767 0 +70 9508 16.757384187976 0 +70 9508 16.757384187976 0 +70 9515 16.757544187976 0 +70 9515 16.757544187976 0 +70 9586 16.843993906273 0 +70 9586 16.843993906273 0 +70 9605 16.844153906273 0 +70 9605 16.844153906273 0 +70 9636 17.014557134175 0 +70 9636 17.014557134175 0 +70 9647 17.014717134175 0 +70 9647 17.014717134175 0 +70 9674 17.024398582336 0 +70 9674 17.024398582336 0 +70 9682 17.024558582336 0 +70 9682 17.024558582336 0 +70 9715 17.031276486771 0 +70 9715 17.031276486771 0 +70 9726 17.031436486771 0 +70 9726 17.031436486771 0 +70 9757 17.057384188287 0 +70 9757 17.057384188287 0 +70 9764 17.057544188287 0 +70 9764 17.057544188287 0 +70 9835 17.143993907123 0 +70 9835 17.143993907123 0 +70 9854 17.144153907123 0 +70 9854 17.144153907123 0 +70 9885 17.314557149858 0 +70 9885 17.314557149858 0 +70 9896 17.314717149858 0 +70 9896 17.314717149858 0 +70 9923 17.324398582336 0 +70 9923 17.324398582336 0 +70 9931 17.324558582336 0 +70 9931 17.324558582336 0 +70 9964 17.331276486778 0 +70 9964 17.331276486778 0 +70 9975 17.331436486778 0 +70 9975 17.331436486778 0 +70 10006 17.357384188603 0 +70 10006 17.357384188603 0 +70 10013 17.357544188603 0 +70 10013 17.357544188603 0 +70 10084 17.443993907967 0 +70 10084 17.443993907967 0 +70 10103 17.444153907967 0 +70 10103 17.444153907967 0 +70 10134 17.614557165512 0 +70 10134 17.614557165512 0 +70 10145 17.614717165512 0 +70 10145 17.614717165512 0 +70 10172 17.624398582336 0 +70 10172 17.624398582336 0 +70 10180 17.624558582336 0 +70 10180 17.624558582336 0 +70 10213 17.631276486782 0 +70 10213 17.631276486782 0 +70 10224 17.631436486782 0 +70 10224 17.631436486782 0 +70 10255 17.657384188908 0 +70 10255 17.657384188908 0 +70 10262 17.657544188908 0 +70 10262 17.657544188908 0 +70 10333 17.74399390881 0 +70 10333 17.74399390881 0 +70 10352 17.74415390881 0 +70 10352 17.74415390881 0 +70 10383 17.914557181155 0 +70 10383 17.914557181155 0 +70 10394 17.914717181155 0 +70 10394 17.914717181155 0 +70 10417 17.924398582336 0 +70 10417 17.924398582336 0 +70 10425 17.924558582336 0 +70 10425 17.924558582336 0 +70 10458 17.931276486796 0 +70 10458 17.931276486796 0 +70 10469 17.931436486796 0 +70 10469 17.931436486796 0 +70 10500 17.957384189225 0 +70 10500 17.957384189225 0 +70 10507 17.957544189225 0 +70 10507 17.957544189225 0 +70 10574 18.04399390965 0 +70 10574 18.04399390965 0 +70 10593 18.04415390965 0 +70 10593 18.04415390965 0 +70 10625 18.214557196811 0 +70 10625 18.214557196811 0 +70 10640 18.214717196811 0 +70 10640 18.214717196811 0 +70 10658 18.224398582336 0 +70 10658 18.224398582336 0 +70 10666 18.224558582336 0 +70 10666 18.224558582336 0 +70 10695 18.231276486817 0 +70 10695 18.231276486817 0 +70 10706 18.231436486817 0 +70 10706 18.231436486817 0 +70 10737 18.257384189554 0 +70 10737 18.257384189554 0 +70 10744 18.257544189554 0 +70 10744 18.257544189554 0 +70 10811 18.343993910503 0 +70 10811 18.343993910503 0 +70 10830 18.344153910503 0 +70 10830 18.344153910503 0 +70 10858 18.514557211927 0 +70 10858 18.514557211927 0 +70 10873 18.514717211927 0 +70 10873 18.514717211927 0 +70 10891 18.524398582336 0 +70 10891 18.524398582336 0 +70 10899 18.524558582336 0 +70 10899 18.524558582336 0 +70 10928 18.531276486818 0 +70 10928 18.531276486818 0 +70 10939 18.531436486818 0 +70 10939 18.531436486818 0 +70 10970 18.557384189884 0 +70 10970 18.557384189884 0 +70 10977 18.557544189884 0 +70 10977 18.557544189884 0 +70 11091 18.814557220024 0 +70 11091 18.814557220024 0 +70 11106 18.814717220024 0 +70 11106 18.814717220024 0 +70 11124 18.824398582336 0 +70 11124 18.824398582336 0 +70 11132 18.824558582336 0 +70 11132 18.824558582336 0 +70 11161 18.831276486814 0 +70 11161 18.831276486814 0 +70 11172 18.831436486814 0 +70 11172 18.831436486814 0 +70 11203 18.857384190227 0 +70 11203 18.857384190227 0 +70 11210 18.857544190227 0 +70 11210 18.857544190227 0 +70 11324 19.11455722262 0 +70 11324 19.11455722262 0 +70 11339 19.11471722262 0 +70 11339 19.11471722262 0 +70 11357 19.124398582336 0 +70 11357 19.124398582336 0 +70 11365 19.124558582336 0 +70 11365 19.124558582336 0 +70 11394 19.131276486813 0 +70 11394 19.131276486813 0 +70 11405 19.131436486813 0 +70 11405 19.131436486813 0 +70 11436 19.157384190586 0 +70 11436 19.157384190586 0 +70 11443 19.157544190586 0 +70 11443 19.157544190586 0 +70 11557 19.414557225292 0 +70 11557 19.414557225292 0 +70 11572 19.414717225292 0 +70 11572 19.414717225292 0 +70 11590 19.424398582336 0 +70 11590 19.424398582336 0 +70 11598 19.424558582336 0 +70 11598 19.424558582336 0 +70 11627 19.431276486792 0 +70 11627 19.431276486792 0 +70 11638 19.431436486792 0 +70 11638 19.431436486792 0 +70 11669 19.457384190936 0 +70 11669 19.457384190936 0 +70 11676 19.457544190936 0 +70 11676 19.457544190936 0 +70 11790 19.714557228908 0 +70 11790 19.714557228908 0 +70 11805 19.714717228908 0 +70 11805 19.714717228908 0 +70 11823 19.724398582336 0 +70 11823 19.724398582336 0 +70 11831 19.724558582336 0 +70 11831 19.724558582336 0 +70 11860 19.73127648675 0 +70 11860 19.73127648675 0 +70 11871 19.73143648675 0 +70 11871 19.73143648675 0 +70 11902 19.757384191083 0 +70 11902 19.757384191083 0 +70 11909 19.757544191083 0 +70 11909 19.757544191083 0 +70 12023 20.014557233572 0 +70 12023 20.014557233572 0 +70 12038 20.014717233572 0 +70 12038 20.014717233572 0 +70 12060 20.024398582336 0 +70 12060 20.024398582336 0 +70 12068 20.024558582336 0 +70 12068 20.024558582336 0 +70 12097 20.031276486573 0 +70 12097 20.031276486573 0 +70 12108 20.031436486573 0 +70 12108 20.031436486573 0 +70 12139 20.057384190919 0 +70 12139 20.057384190919 0 +70 12146 20.057544190919 0 +70 12146 20.057544190919 0 +70 12264 20.314557239262 0 +70 12264 20.314557239262 0 +70 12279 20.314717239262 0 +70 12279 20.314717239262 0 +70 12301 20.324398582336 0 +70 12301 20.324398582336 0 +70 12309 20.324558582336 0 +70 12309 20.324558582336 0 +70 12338 20.331276486402 0 +70 12338 20.331276486402 0 +70 12349 20.331436486402 0 +70 12349 20.331436486402 0 +70 12380 20.35738419086 0 +70 12380 20.35738419086 0 +70 12387 20.35754419086 0 +70 12387 20.35754419086 0 +70 12505 20.614557246038 0 +70 12505 20.614557246038 0 +70 12520 20.614717246038 0 +70 12520 20.614717246038 0 +70 12542 20.624398582336 0 +70 12542 20.624398582336 0 +70 12550 20.624558582336 0 +70 12550 20.624558582336 0 +70 12579 20.631276486279 0 +70 12579 20.631276486279 0 +70 12590 20.631436486279 0 +70 12590 20.631436486279 0 +70 12621 20.657384191065 0 +70 12621 20.657384191065 0 +70 12628 20.657544191065 0 +70 12628 20.657544191065 0 +70 12746 20.914557253923 0 +70 12746 20.914557253923 0 +70 12761 20.914717253923 0 +70 12761 20.914717253923 0 +70 12783 20.924398582336 0 +70 12783 20.924398582336 0 +70 12791 20.924558582336 0 +70 12791 20.924558582336 0 +70 12820 20.9312764863 0 +70 12820 20.9312764863 0 +70 12831 20.9314364863 0 +70 12831 20.9314364863 0 +70 12862 20.957384191416 0 +70 12862 20.957384191416 0 +70 12869 20.957544191416 0 +70 12869 20.957544191416 0 +70 12987 21.214557262739 0 +70 12987 21.214557262739 0 +70 13002 21.214717262739 0 +70 13002 21.214717262739 0 +70 13024 21.224398582336 0 +70 13024 21.224398582336 0 +70 13032 21.224558582336 0 +70 13032 21.224558582336 0 +70 13061 21.231276486377 0 +70 13061 21.231276486377 0 +70 13072 21.231436486377 0 +70 13072 21.231436486377 0 +70 13103 21.257384192086 0 +70 13103 21.257384192086 0 +70 13110 21.257544192086 0 +70 13110 21.257544192086 0 +70 13228 21.514557272413 0 +70 13228 21.514557272413 0 +70 13243 21.514717272413 0 +70 13243 21.514717272413 0 +70 13265 21.524398582336 0 +70 13265 21.524398582336 0 +70 13273 21.524558582336 0 +70 13273 21.524558582336 0 +70 13302 21.531276486403 0 +70 13302 21.531276486403 0 +70 13313 21.531436486403 0 +70 13313 21.531436486403 0 +70 13344 21.557384193076 0 +70 13344 21.557384193076 0 +70 13351 21.557544193076 0 +70 13351 21.557544193076 0 +70 13469 21.814557282935 0 +70 13469 21.814557282935 0 +70 13484 21.814717282935 0 +70 13484 21.814717282935 0 +70 13506 21.824398582336 0 +70 13506 21.824398582336 0 +70 13514 21.824558582336 0 +70 13514 21.824558582336 0 +70 13543 21.831276486387 0 +70 13543 21.831276486387 0 +70 13554 21.831436486387 0 +70 13554 21.831436486387 0 +70 13585 21.85738419435 0 +70 13585 21.85738419435 0 +70 13592 21.85754419435 0 +70 13592 21.85754419435 0 +70 13710 22.114557294257 0 +70 13710 22.114557294257 0 +70 13725 22.114717294257 0 +70 13725 22.114717294257 0 +70 13747 22.124398582336 0 +70 13747 22.124398582336 0 +70 13755 22.124558582336 0 +70 13755 22.124558582336 0 +70 13784 22.13127648632 0 +70 13784 22.13127648632 0 +70 13795 22.13143648632 0 +70 13795 22.13143648632 0 +70 13826 22.15738419591 0 +70 13826 22.15738419591 0 +70 13833 22.15754419591 0 +70 13833 22.15754419591 0 +70 13951 22.414557306336 0 +70 13951 22.414557306336 0 +70 13966 22.414717306336 0 +70 13966 22.414717306336 0 +70 13988 22.424398582336 0 +70 13988 22.424398582336 0 +70 13996 22.424558582336 0 +70 13996 22.424558582336 0 +70 14025 22.431276486231 0 +70 14025 22.431276486231 0 +70 14036 22.431436486231 0 +70 14036 22.431436486231 0 +70 14067 22.457384197834 0 +70 14067 22.457384197834 0 +70 14074 22.457544197834 0 +70 14074 22.457544197834 0 +70 14192 22.714557319146 0 +70 14192 22.714557319146 0 +70 14207 22.714717319146 0 +70 14207 22.714717319146 0 +70 14229 22.724398582336 0 +70 14229 22.724398582336 0 +70 14237 22.724558582336 0 +70 14237 22.724558582336 0 +70 14266 22.731276486104 0 +70 14266 22.731276486104 0 +70 14277 22.731436486104 0 +70 14277 22.731436486104 0 +70 14308 22.75738420026 0 +70 14308 22.75738420026 0 +70 14315 22.75754420026 0 +70 14315 22.75754420026 0 +70 14433 23.014557332675 0 +70 14433 23.014557332675 0 +70 14448 23.014717332675 0 +70 14448 23.014717332675 0 +70 14470 23.024398582336 0 +70 14470 23.024398582336 0 +70 14478 23.024558582336 0 +70 14478 23.024558582336 0 +70 14507 23.031276485972 0 +70 14507 23.031276485972 0 +70 14518 23.031436485972 0 +70 14518 23.031436485972 0 +70 14549 23.057384203204 0 +70 14549 23.057384203204 0 +70 14556 23.057544203204 0 +70 14556 23.057544203204 0 +70 14674 23.314557346848 0 +70 14674 23.314557346848 0 +70 14689 23.314717346848 0 +70 14689 23.314717346848 0 +70 14711 23.324398582336 0 +70 14711 23.324398582336 0 +70 14719 23.324558582336 0 +70 14719 23.324558582336 0 +70 14748 23.331276485713 0 +70 14748 23.331276485713 0 +70 14759 23.331436485713 0 +70 14759 23.331436485713 0 +70 14790 23.357384206722 0 +70 14790 23.357384206722 0 +70 14797 23.357544206722 0 +70 14797 23.357544206722 0 +70 14915 23.614557361743 0 +70 14915 23.614557361743 0 +70 14930 23.614717361743 0 +70 14930 23.614717361743 0 +70 14952 23.624398582336 0 +70 14952 23.624398582336 0 +70 14960 23.624558582336 0 +70 14960 23.624558582336 0 +70 14989 23.6312764855 0 +70 14989 23.6312764855 0 +70 15000 23.6314364855 0 +70 15000 23.6314364855 0 +70 15031 23.657384210857 0 +70 15031 23.657384210857 0 +70 15038 23.657544210857 0 +70 15038 23.657544210857 0 +70 15157 23.914557377256 0 +70 15157 23.914557377256 0 +70 15176 23.914717377256 0 +70 15176 23.914717377256 0 +70 15193 23.924398582336 0 +70 15193 23.924398582336 0 +70 15201 23.924558582336 0 +70 15201 23.924558582336 0 +70 15229 23.93127648528 0 +70 15229 23.93127648528 0 +70 15236 23.93143648528 0 +70 15236 23.93143648528 0 +70 15272 23.95738421565 0 +70 15272 23.95738421565 0 +70 15279 23.95754421565 0 +70 15279 23.95754421565 0 +70 15398 24.214557393408 0 +70 15398 24.214557393408 0 +70 15417 24.214717393408 0 +70 15417 24.214717393408 0 +70 15434 24.224398582336 0 +70 15434 24.224398582336 0 +70 15442 24.224558582336 0 +70 15442 24.224558582336 0 +70 15470 24.231276485173 0 +70 15470 24.231276485173 0 +70 15477 24.231436485173 0 +70 15477 24.231436485173 0 +70 15513 24.257384221045 0 +70 15513 24.257384221045 0 +70 15520 24.257544221045 0 +70 15520 24.257544221045 0 +70 15639 24.514557410256 0 +70 15639 24.514557410256 0 +70 15658 24.514717410256 0 +70 15658 24.514717410256 0 +70 15675 24.524398582336 0 +70 15675 24.524398582336 0 +70 15683 24.524558582336 0 +70 15683 24.524558582336 0 +70 15711 24.531276485097 0 +70 15711 24.531276485097 0 +70 15718 24.531436485097 0 +70 15718 24.531436485097 0 +70 15754 24.55738422706 0 +70 15754 24.55738422706 0 +70 15761 24.55754422706 0 +70 15761 24.55754422706 0 +70 15880 24.814557427619 0 +70 15880 24.814557427619 0 +70 15899 24.814717427619 0 +70 15899 24.814717427619 0 +70 15916 24.824398582336 0 +70 15916 24.824398582336 0 +70 15924 24.824558582336 0 +70 15924 24.824558582336 0 +70 15952 24.831276484864 0 +70 15952 24.831276484864 0 +70 15959 24.831436484864 0 +70 15959 24.831436484864 0 +70 15995 24.857384233855 0 +70 15995 24.857384233855 0 +70 16002 24.857544233855 0 +70 16002 24.857544233855 0 +70 16121 25.114557445125 0 +70 16121 25.114557445125 0 +70 16140 25.114717445125 0 +70 16140 25.114717445125 0 +70 16157 25.124398582336 0 +70 16157 25.124398582336 0 +70 16165 25.124558582336 0 +70 16165 25.124558582336 0 +70 16193 25.131276484116 0 +70 16193 25.131276484116 0 +70 16200 25.131436484116 0 +70 16200 25.131436484116 0 +70 16236 25.15738424158 0 +70 16236 25.15738424158 0 +70 16243 25.15754424158 0 +70 16243 25.15754424158 0 +70 16362 25.414557462649 0 +70 16362 25.414557462649 0 +70 16381 25.414717462649 0 +70 16381 25.414717462649 0 +70 16398 25.424398582336 0 +70 16398 25.424398582336 0 +70 16406 25.424558582336 0 +70 16406 25.424558582336 0 +70 16434 25.431276482795 0 +70 16434 25.431276482795 0 +70 16441 25.431436482795 0 +70 16441 25.431436482795 0 +70 16477 25.457384250111 0 +70 16477 25.457384250111 0 +70 16484 25.457544250111 0 +70 16484 25.457544250111 0 +70 16603 25.714557480245 0 +70 16603 25.714557480245 0 +70 16622 25.714717480245 0 +70 16622 25.714717480245 0 +70 16639 25.724398582336 0 +70 16639 25.724398582336 0 +70 16647 25.724558582336 0 +70 16647 25.724558582336 0 +70 16675 25.731276480874 0 +70 16675 25.731276480874 0 +70 16682 25.731436480874 0 +70 16682 25.731436480874 0 +70 16718 25.757384259482 0 +70 16718 25.757384259482 0 +70 16725 25.757544259482 0 +70 16725 25.757544259482 0 +70 16844 26.014557497945 0 +70 16844 26.014557497945 0 +70 16863 26.014717497945 0 +70 16863 26.014717497945 0 +70 16880 26.024398582336 0 +70 16880 26.024398582336 0 +70 16888 26.024558582336 0 +70 16888 26.024558582336 0 +70 16916 26.031276479731 0 +70 16916 26.031276479731 0 +70 16923 26.031436479731 0 +70 16923 26.031436479731 0 +70 16959 26.057384269815 0 +70 16959 26.057384269815 0 +70 16966 26.057544269815 0 +70 16966 26.057544269815 0 +70 17086 26.314557515616 0 +70 17086 26.314557515616 0 +70 17109 26.314717515616 0 +70 17109 26.314717515616 0 +70 17121 26.324398582336 0 +70 17121 26.324398582336 0 +70 17129 26.324558582336 0 +70 17129 26.324558582336 0 +70 17157 26.331276479849 0 +70 17157 26.331276479849 0 +70 17164 26.331436479849 0 +70 17164 26.331436479849 0 +70 17200 26.357384280927 0 +70 17200 26.357384280927 0 +70 17207 26.357544280927 0 +70 17207 26.357544280927 0 +70 17327 26.614557533368 0 +70 17327 26.614557533368 0 +70 17350 26.614717533368 0 +70 17350 26.614717533368 0 +70 17362 26.624398582336 0 +70 17362 26.624398582336 0 +70 17370 26.624558582336 0 +70 17370 26.624558582336 0 +70 17398 26.631276481362 0 +70 17398 26.631276481362 0 +70 17405 26.631436481362 0 +70 17405 26.631436481362 0 +70 17441 26.657384292372 0 +70 17441 26.657384292372 0 +70 17448 26.657544292372 0 +70 17448 26.657544292372 0 +70 17568 26.914557551168 0 +70 17568 26.914557551168 0 +70 17591 26.914717551168 0 +70 17591 26.914717551168 0 +70 17603 26.924398582336 0 +70 17603 26.924398582336 0 +70 17611 26.924558582336 0 +70 17611 26.924558582336 0 +70 17639 26.931276484209 0 +70 17639 26.931276484209 0 +70 17646 26.931436484209 0 +70 17646 26.931436484209 0 +70 17682 26.957384303661 0 +70 17682 26.957384303661 0 +70 17689 26.957544303661 0 +70 17689 26.957544303661 0 +70 17809 27.214557568504 0 +70 17809 27.214557568504 0 +70 17832 27.214717568504 0 +70 17832 27.214717568504 0 +70 17840 27.224398582336 0 +70 17840 27.224398582336 0 +70 17848 27.224558582336 0 +70 17848 27.224558582336 0 +70 17872 27.231276487819 0 +70 17872 27.231276487819 0 +70 17879 27.231436487819 0 +70 17879 27.231436487819 0 +70 17915 27.257384313921 0 +70 17915 27.257384313921 0 +70 17922 27.257544313921 0 +70 17922 27.257544313921 0 +70 18073 27.524398582336 0 +70 18073 27.524398582336 0 +70 18081 27.524558582336 0 +70 18081 27.524558582336 0 +70 18105 27.531276490771 0 +70 18105 27.531276490771 0 +70 18112 27.531436490771 0 +70 18112 27.531436490771 0 +70 18148 27.557384323167 0 +70 18148 27.557384323167 0 +70 18155 27.557544323167 0 +70 18155 27.557544323167 0 +70 18306 27.824398582336 0 +70 18306 27.824398582336 0 +70 18314 27.824558582336 0 +70 18314 27.824558582336 0 +70 18338 27.831276492635 0 +70 18338 27.831276492635 0 +70 18345 27.831436492635 0 +70 18345 27.831436492635 0 +70 18381 27.857384331293 0 +70 18381 27.857384331293 0 +70 18388 27.857544331293 0 +70 18388 27.857544331293 0 +70 18539 28.124398582336 0 +70 18539 28.124398582336 0 +70 18547 28.124558582336 0 +70 18547 28.124558582336 0 +70 18571 28.131276501988 0 +70 18571 28.131276501988 0 +70 18578 28.131436501988 0 +70 18578 28.131436501988 0 +70 18614 28.15738433818 0 +70 18614 28.15738433818 0 +70 18621 28.15754433818 0 +70 18621 28.15754433818 0 +70 18772 28.424398582336 0 +70 18772 28.424398582336 0 +70 18780 28.424558582336 0 +70 18780 28.424558582336 0 +70 18804 28.431276516789 0 +70 18804 28.431276516789 0 +70 18811 28.431436516789 0 +70 18811 28.431436516789 0 +70 18847 28.45738434442 0 +70 18847 28.45738434442 0 +70 18854 28.45754434442 0 +70 18854 28.45754434442 0 +70 19005 28.724398582336 0 +70 19005 28.724398582336 0 +70 19013 28.724558582336 0 +70 19013 28.724558582336 0 +70 19037 28.731276531174 0 +70 19037 28.731276531174 0 +70 19044 28.731436531174 0 +70 19044 28.731436531174 0 +70 19080 28.757384346246 0 +70 19080 28.757384346246 0 +70 19087 28.757544346246 0 +70 19087 28.757544346246 0 +70 19238 29.024398582336 0 +70 19238 29.024398582336 0 +70 19246 29.024558582336 0 +70 19246 29.024558582336 0 +70 19270 29.031276536731 0 +70 19270 29.031276536731 0 +70 19277 29.031436536731 0 +70 19277 29.031436536731 0 +70 19309 29.057384347069 0 +70 19309 29.057384347069 0 +70 19316 29.057544347069 0 +70 19316 29.057544347069 0 +70 19463 29.324398582336 0 +70 19463 29.324398582336 0 +70 19471 29.324558582336 0 +70 19471 29.324558582336 0 +70 19495 29.331276539274 0 +70 19495 29.331276539274 0 +70 19502 29.331436539274 0 +70 19502 29.331436539274 0 +70 19535 29.357384351202 0 +70 19535 29.357384351202 0 +70 19546 29.357544351202 0 +70 19546 29.357544351202 0 +70 19688 29.624398582336 0 +70 19688 29.624398582336 0 +70 19696 29.624558582336 0 +70 19696 29.624558582336 0 +70 19720 29.631276541563 0 +70 19720 29.631276541563 0 +70 19727 29.631436541563 0 +70 19727 29.631436541563 0 +70 19760 29.657384352581 0 +70 19760 29.657384352581 0 +70 19771 29.657544352581 0 +70 19771 29.657544352581 0 +70 19913 29.924398582336 0 +70 19913 29.924398582336 0 +70 19921 29.924558582336 0 +70 19921 29.924558582336 0 +70 19945 29.931276543815 0 +70 19945 29.931276543815 0 +70 19952 29.931436543815 0 +70 19952 29.931436543815 0 +70 19985 29.957384353115 0 +70 19985 29.957384353115 0 +70 19996 29.957544353115 0 +70 19996 29.957544353115 0 +70 20138 30.224398582336 0 +70 20138 30.224398582336 0 +70 20146 30.224558582336 0 +70 20146 30.224558582336 0 +70 20170 30.231276546125 0 +70 20170 30.231276546125 0 +70 20177 30.231436546125 0 +70 20177 30.231436546125 0 +70 20210 30.257384353112 0 +70 20210 30.257384353112 0 +70 20221 30.257544353112 0 +70 20221 30.257544353112 0 +70 20363 30.524398582336 0 +70 20363 30.524398582336 0 +70 20371 30.524558582336 0 +70 20371 30.524558582336 0 +70 20395 30.531276548461 0 +70 20395 30.531276548461 0 +70 20402 30.531436548461 0 +70 20402 30.531436548461 0 +70 20435 30.55738435311 0 +70 20435 30.55738435311 0 +70 20446 30.55754435311 0 +70 20446 30.55754435311 0 +70 20588 30.824398582336 0 +70 20588 30.824398582336 0 +70 20596 30.824558582336 0 +70 20596 30.824558582336 0 +70 20621 30.831276550899 0 +70 20621 30.831276550899 0 +70 20632 30.831436550899 0 +70 20632 30.831436550899 0 +70 20660 30.857384353107 0 +70 20660 30.857384353107 0 +70 20671 30.857544353107 0 +70 20671 30.857544353107 0 +70 20813 31.124398582336 0 +70 20813 31.124398582336 0 +70 20821 31.124558582336 0 +70 20821 31.124558582336 0 +70 20850 31.131276553412 0 +70 20850 31.131276553412 0 +70 20861 31.131436553412 0 +70 20861 31.131436553412 0 +70 20889 31.157384353102 0 +70 20889 31.157384353102 0 +70 20900 31.157544353102 0 +70 20900 31.157544353102 0 +70 20921 31.193586243446 0 +70 20921 31.193586243446 0 +70 20940 31.193746243446 0 +70 20940 31.193746243446 0 +70 21046 31.424398582336 0 +70 21046 31.424398582336 0 +70 21054 31.424558582336 0 +70 21054 31.424558582336 0 +70 21083 31.431276555932 0 +70 21083 31.431276555932 0 +70 21094 31.431436555932 0 +70 21094 31.431436555932 0 +70 21122 31.457384353095 0 +70 21122 31.457384353095 0 +70 21133 31.457544353095 0 +70 21133 31.457544353095 0 +70 21154 31.493586217696 0 +70 21154 31.493586217696 0 +70 21173 31.493746217696 0 +70 21173 31.493746217696 0 +70 21279 31.724398582336 0 +70 21279 31.724398582336 0 +70 21287 31.724558582336 0 +70 21287 31.724558582336 0 +70 21316 31.731276558446 0 +70 21316 31.731276558446 0 +70 21327 31.731436558446 0 +70 21327 31.731436558446 0 +70 21355 31.757384353088 0 +70 21355 31.757384353088 0 +70 21366 31.757544353088 0 +70 21366 31.757544353088 0 +70 21387 31.793586191964 0 +70 21387 31.793586191964 0 +70 21406 31.793746191964 0 +70 21406 31.793746191964 0 +70 21512 32.024398582336 0 +70 21512 32.024398582336 0 +70 21520 32.024558582336 0 +70 21520 32.024558582336 0 +70 21549 32.031276560973 0 +70 21549 32.031276560973 0 +70 21560 32.031436560973 0 +70 21560 32.031436560973 0 +70 21588 32.057384353084 0 +70 21588 32.057384353084 0 +70 21599 32.057544353084 0 +70 21599 32.057544353084 0 +70 21619 32.093586166255 0 +70 21619 32.093586166255 0 +70 21634 32.093746166255 0 +70 21634 32.093746166255 0 +70 21745 32.324398582336 0 +70 21745 32.324398582336 0 +70 21753 32.324558582336 0 +70 21753 32.324558582336 0 +70 21782 32.331276563405 0 +70 21782 32.331276563405 0 +70 21793 32.331436563405 0 +70 21793 32.331436563405 0 +70 21821 32.357384353083 0 +70 21821 32.357384353083 0 +70 21832 32.357544353083 0 +70 21832 32.357544353083 0 +70 21852 32.393586140428 0 +70 21852 32.393586140428 0 +70 21867 32.393746140428 0 +70 21867 32.393746140428 0 +70 21978 32.624398582336 0 +70 21978 32.624398582336 0 +70 21986 32.624558582336 0 +70 21986 32.624558582336 0 +70 22015 32.631276565904 0 +70 22015 32.631276565904 0 +70 22026 32.631436565904 0 +70 22026 32.631436565904 0 +70 22054 32.657384353086 0 +70 22054 32.657384353086 0 +70 22065 32.657544353086 0 +70 22065 32.657544353086 0 +70 22085 32.693586114644 0 +70 22085 32.693586114644 0 +70 22100 32.693746114644 0 +70 22100 32.693746114644 0 +70 22211 32.924398582336 0 +70 22211 32.924398582336 0 +70 22219 32.924558582336 0 +70 22219 32.924558582336 0 +70 22248 32.931276568399 0 +70 22248 32.931276568399 0 +70 22259 32.931436568399 0 +70 22259 32.931436568399 0 +70 22287 32.957384353093 0 +70 22287 32.957384353093 0 +70 22298 32.957544353093 0 +70 22298 32.957544353093 0 +70 22318 32.993586088864 0 +70 22318 32.993586088864 0 +70 22333 32.993746088864 0 +70 22333 32.993746088864 0 +70 22444 33.224398582336 0 +70 22444 33.224398582336 0 +70 22452 33.224558582336 0 +70 22452 33.224558582336 0 +70 22481 33.231276570893 0 +70 22481 33.231276570893 0 +70 22492 33.231436570893 0 +70 22492 33.231436570893 0 +70 22520 33.257384353102 0 +70 22520 33.257384353102 0 +70 22531 33.257544353102 0 +70 22531 33.257544353102 0 +70 22551 33.293586063102 0 +70 22551 33.293586063102 0 +70 22566 33.293746063102 0 +70 22566 33.293746063102 0 +70 22677 33.524398582336 0 +70 22677 33.524398582336 0 +70 22685 33.524558582336 0 +70 22685 33.524558582336 0 +70 22714 33.53127657339 0 +70 22714 33.53127657339 0 +70 22725 33.53143657339 0 +70 22725 33.53143657339 0 +70 22753 33.557384353115 0 +70 22753 33.557384353115 0 +70 22764 33.557544353115 0 +70 22764 33.557544353115 0 +70 22783 33.593586037322 0 +70 22783 33.593586037322 0 +70 22794 33.593746037322 0 +70 22794 33.593746037322 0 +70 22906 33.824398582336 0 +70 22906 33.824398582336 0 +70 22914 33.824558582336 0 +70 22914 33.824558582336 0 +70 22943 33.831276575887 0 +70 22943 33.831276575887 0 +70 22954 33.831436575887 0 +70 22954 33.831436575887 0 +70 22982 33.857384353132 0 +70 22982 33.857384353132 0 +70 22993 33.857544353132 0 +70 22993 33.857544353132 0 +70 23012 33.893586011596 0 +70 23012 33.893586011596 0 +70 23023 33.893746011596 0 +70 23023 33.893746011596 0 +70 23116 34.124398582336 0 +70 23116 34.124398582336 0 +70 23123 34.124558582336 0 +70 23123 34.124558582336 0 +70 23146 34.131276578412 0 +70 23146 34.131276578412 0 +70 23152 34.131436578412 0 +70 23152 34.131436578412 0 +70 23176 34.157384353151 0 +70 23176 34.157384353151 0 +70 23186 34.157544353151 0 +70 23186 34.157544353151 0 +70 23274 34.424398582336 0 +70 23274 34.424398582336 0 +70 23281 34.424558582336 0 +70 23281 34.424558582336 0 +70 23304 34.431276580926 0 +70 23304 34.431276580926 0 +70 23310 34.431436580926 0 +70 23310 34.431436580926 0 +70 23334 34.457384353173 0 +70 23334 34.457384353173 0 +70 23344 34.457544353173 0 +70 23344 34.457544353173 0 +70 23432 34.724398582336 0 +70 23432 34.724398582336 0 +70 23439 34.724558582336 0 +70 23439 34.724558582336 0 +70 23462 34.731276583436 0 +70 23462 34.731276583436 0 +70 23468 34.731436583436 0 +70 23468 34.731436583436 0 +70 23492 34.757384353199 0 +70 23492 34.757384353199 0 +70 23502 34.757544353199 0 +70 23502 34.757544353199 0 +70 23590 35.024398582336 0 +70 23590 35.024398582336 0 +70 23597 35.024558582336 0 +70 23597 35.024558582336 0 +70 23620 35.031276585897 0 +70 23620 35.031276585897 0 +70 23626 35.031436585897 0 +70 23626 35.031436585897 0 +70 23650 35.057384353228 0 +70 23650 35.057384353228 0 +70 23660 35.057544353228 0 +70 23660 35.057544353228 0 +70 23752 35.324398582336 0 +70 23752 35.324398582336 0 +70 23759 35.324558582336 0 +70 23759 35.324558582336 0 +70 23782 35.331276588437 0 +70 23782 35.331276588437 0 +70 23788 35.331436588437 0 +70 23788 35.331436588437 0 +70 23812 35.357384353251 0 +70 23812 35.357384353251 0 +70 23822 35.357544353251 0 +70 23822 35.357544353251 0 +70 23918 35.624398582336 0 +70 23918 35.624398582336 0 +70 23925 35.624558582336 0 +70 23925 35.624558582336 0 +70 23948 35.631276590971 0 +70 23948 35.631276590971 0 +70 23954 35.631436590971 0 +70 23954 35.631436590971 0 +70 23978 35.657384353247 0 +70 23978 35.657384353247 0 +70 23988 35.657544353247 0 +70 23988 35.657544353247 0 +70 24084 35.924398582336 0 +70 24084 35.924398582336 0 +70 24091 35.924558582336 0 +70 24091 35.924558582336 0 +70 24114 35.931276593481 0 +70 24114 35.931276593481 0 +70 24120 35.931436593481 0 +70 24120 35.931436593481 0 +70 24144 35.957384353214 0 +70 24144 35.957384353214 0 +70 24154 35.957544353214 0 +70 24154 35.957544353214 0 +70 24250 36.224398582336 0 +70 24250 36.224398582336 0 +70 24257 36.224558582336 0 +70 24257 36.224558582336 0 +70 24280 36.231276595961 0 +70 24280 36.231276595961 0 +70 24286 36.231436595961 0 +70 24286 36.231436595961 0 +70 24310 36.257384353163 0 +70 24310 36.257384353163 0 +70 24320 36.257544353163 0 +70 24320 36.257544353163 0 +70 24416 36.524398582336 0 +70 24416 36.524398582336 0 +70 24423 36.524558582336 0 +70 24423 36.524558582336 0 +70 24446 36.531276598459 0 +70 24446 36.531276598459 0 +70 24452 36.531436598459 0 +70 24452 36.531436598459 0 +70 24476 36.557384353111 0 +70 24476 36.557384353111 0 +70 24486 36.557544353111 0 +70 24486 36.557544353111 0 +70 24582 36.824398582336 0 +70 24582 36.824398582336 0 +70 24589 36.824558582336 0 +70 24589 36.824558582336 0 +70 24612 36.83127660094 0 +70 24612 36.83127660094 0 +70 24618 36.83143660094 0 +70 24618 36.83143660094 0 +70 24642 36.857384353084 0 +70 24642 36.857384353084 0 +70 24652 36.857544353084 0 +70 24652 36.857544353084 0 +70 24748 37.124398582336 0 +70 24748 37.124398582336 0 +70 24755 37.124558582336 0 +70 24755 37.124558582336 0 +70 24778 37.131276603404 0 +70 24778 37.131276603404 0 +70 24784 37.131436603404 0 +70 24784 37.131436603404 0 +70 24808 37.15738435309 0 +70 24808 37.15738435309 0 +70 24818 37.15754435309 0 +70 24818 37.15754435309 0 +70 24914 37.424398582336 0 +70 24914 37.424398582336 0 +70 24921 37.424558582336 0 +70 24921 37.424558582336 0 +70 24944 37.431276605886 0 +70 24944 37.431276605886 0 +70 24950 37.431436605886 0 +70 24950 37.431436605886 0 +70 24974 37.457384353113 0 +70 24974 37.457384353113 0 +70 24984 37.457544353113 0 +70 24984 37.457544353113 0 +70 25080 37.724398582336 0 +70 25080 37.724398582336 0 +70 25087 37.724558582336 0 +70 25087 37.724558582336 0 +70 25110 37.731276608365 0 +70 25110 37.731276608365 0 +70 25116 37.731436608365 0 +70 25116 37.731436608365 0 +70 25141 37.757384353145 0 +70 25141 37.757384353145 0 +70 25155 37.757544353145 0 +70 25155 37.757544353145 0 +70 25246 38.024398582336 0 +70 25246 38.024398582336 0 +70 25253 38.024558582336 0 +70 25253 38.024558582336 0 +70 25276 38.031276610826 0 +70 25276 38.031276610826 0 +70 25282 38.031436610826 0 +70 25282 38.031436610826 0 +70 25307 38.057384353181 0 +70 25307 38.057384353181 0 +70 25321 38.057544353181 0 +70 25321 38.057544353181 0 +70 25412 38.324398582336 0 +70 25412 38.324398582336 0 +70 25419 38.324558582336 0 +70 25419 38.324558582336 0 +70 25442 38.3312766133 0 +70 25442 38.3312766133 0 +70 25448 38.3314366133 0 +70 25448 38.3314366133 0 +70 25473 38.357384353213 0 +70 25473 38.357384353213 0 +70 25487 38.357544353213 0 +70 25487 38.357544353213 0 +70 25578 38.624398582336 0 +70 25578 38.624398582336 0 +70 25585 38.624558582336 0 +70 25585 38.624558582336 0 +70 25608 38.631276615791 0 +70 25608 38.631276615791 0 +70 25614 38.631436615791 0 +70 25614 38.631436615791 0 +70 25639 38.657384353237 0 +70 25639 38.657384353237 0 +70 25653 38.657544353237 0 +70 25653 38.657544353237 0 +70 25744 38.924398582336 0 +70 25744 38.924398582336 0 +70 25751 38.924558582336 0 +70 25751 38.924558582336 0 +70 25774 38.93127661831 0 +70 25774 38.93127661831 0 +70 25780 38.93143661831 0 +70 25780 38.93143661831 0 +70 25805 38.95738435325 0 +70 25805 38.95738435325 0 +70 25819 38.95754435325 0 +70 25819 38.95754435325 0 +70 25910 39.224398582336 0 +70 25910 39.224398582336 0 +70 25917 39.224558582336 0 +70 25917 39.224558582336 0 +70 25940 39.231276620759 0 +70 25940 39.231276620759 0 +70 25946 39.231436620759 0 +70 25946 39.231436620759 0 +70 25971 39.257384353248 0 +70 25971 39.257384353248 0 +70 25985 39.257544353248 0 +70 25985 39.257544353248 0 +70 26076 39.524398582336 0 +70 26076 39.524398582336 0 +70 26083 39.524558582336 0 +70 26083 39.524558582336 0 +70 26106 39.531276623254 0 +70 26106 39.531276623254 0 +70 26112 39.531436623254 0 +70 26112 39.531436623254 0 +70 26137 39.557384353232 0 +70 26137 39.557384353232 0 +70 26151 39.557544353232 0 +70 26151 39.557544353232 0 +70 26242 39.824398582336 0 +70 26242 39.824398582336 0 +70 26249 39.824558582336 0 +70 26249 39.824558582336 0 +70 26272 39.83127662574 0 +70 26272 39.83127662574 0 +70 26278 39.83143662574 0 +70 26278 39.83143662574 0 +70 26303 39.857384353205 0 +70 26303 39.857384353205 0 +70 26317 39.857544353205 0 +70 26317 39.857544353205 0 +70 26408 40.124398582336 0 +70 26408 40.124398582336 0 +70 26415 40.124558582336 0 +70 26415 40.124558582336 0 +70 26438 40.131276628265 0 +70 26438 40.131276628265 0 +70 26444 40.131436628265 0 +70 26444 40.131436628265 0 +70 26469 40.157384353178 0 +70 26469 40.157384353178 0 +70 26483 40.157544353178 0 +70 26483 40.157544353178 0 +70 26574 40.424398582336 0 +70 26574 40.424398582336 0 +70 26581 40.424558582336 0 +70 26581 40.424558582336 0 +70 26604 40.431276630742 0 +70 26604 40.431276630742 0 +70 26610 40.431436630742 0 +70 26610 40.431436630742 0 +70 26635 40.457384353154 0 +70 26635 40.457384353154 0 +70 26649 40.457544353154 0 +70 26649 40.457544353154 0 +70 26740 40.724398582336 0 +70 26740 40.724398582336 0 +70 26747 40.724558582336 0 +70 26747 40.724558582336 0 +70 26774 40.731276633247 0 +70 26774 40.731276633247 0 +70 26780 40.731436633247 0 +70 26780 40.731436633247 0 +70 26805 40.757384353134 0 +70 26805 40.757384353134 0 +70 26819 40.757544353134 0 +70 26819 40.757544353134 0 +70 26844 40.843993902315 0 +70 26844 40.843993902315 0 +70 26862 40.844153902315 0 +70 26862 40.844153902315 0 +70 26914 41.024398582336 0 +70 26914 41.024398582336 0 +70 26921 41.024558582336 0 +70 26921 41.024558582336 0 +70 26948 41.031276635684 0 +70 26948 41.031276635684 0 +70 26954 41.031436635684 0 +70 26954 41.031436635684 0 +70 26979 41.057384353117 0 +70 26979 41.057384353117 0 +70 26993 41.057544353117 0 +70 26993 41.057544353117 0 +70 27018 41.143993889795 0 +70 27018 41.143993889795 0 +70 27036 41.144153889795 0 +70 27036 41.144153889795 0 +70 27088 41.324398582336 0 +70 27088 41.324398582336 0 +70 27095 41.324558582336 0 +70 27095 41.324558582336 0 +70 27122 41.331276638199 0 +70 27122 41.331276638199 0 +70 27128 41.331436638199 0 +70 27128 41.331436638199 0 +70 27153 41.357384353104 0 +70 27153 41.357384353104 0 +70 27167 41.357544353104 0 +70 27167 41.357544353104 0 +70 27192 41.443993878047 0 +70 27192 41.443993878047 0 +70 27210 41.444153878047 0 +70 27210 41.444153878047 0 +70 27262 41.624398582336 0 +70 27262 41.624398582336 0 +70 27269 41.624558582336 0 +70 27269 41.624558582336 0 +70 27296 41.631276640727 0 +70 27296 41.631276640727 0 +70 27302 41.631436640727 0 +70 27302 41.631436640727 0 +70 27327 41.657384353094 0 +70 27327 41.657384353094 0 +70 27341 41.657544353094 0 +70 27341 41.657544353094 0 +70 27366 41.743993867126 0 +70 27366 41.743993867126 0 +70 27384 41.744153867126 0 +70 27384 41.744153867126 0 +70 27436 41.924398582336 0 +70 27436 41.924398582336 0 +70 27443 41.924558582336 0 +70 27443 41.924558582336 0 +70 27470 41.931276643268 0 +70 27470 41.931276643268 0 +70 27476 41.931436643268 0 +70 27476 41.931436643268 0 +70 27501 41.957384353087 0 +70 27501 41.957384353087 0 +70 27515 41.957544353087 0 +70 27515 41.957544353087 0 +70 27540 42.043993857353 0 +70 27540 42.043993857353 0 +70 27558 42.044153857353 0 +70 27558 42.044153857353 0 +70 27610 42.224398582336 0 +70 27610 42.224398582336 0 +70 27617 42.224558582336 0 +70 27617 42.224558582336 0 +70 27644 42.231276645815 0 +70 27644 42.231276645815 0 +70 27650 42.231436645815 0 +70 27650 42.231436645815 0 +70 27675 42.257384353084 0 +70 27675 42.257384353084 0 +70 27689 42.257544353084 0 +70 27689 42.257544353084 0 +70 27713 42.343993848849 0 +70 27713 42.343993848849 0 +70 27727 42.344153848849 0 +70 27727 42.344153848849 0 +70 27784 42.524398582336 0 +70 27784 42.524398582336 0 +70 27791 42.524558582336 0 +70 27791 42.524558582336 0 +70 27818 42.531276648376 0 +70 27818 42.531276648376 0 +70 27824 42.531436648376 0 +70 27824 42.531436648376 0 +70 27849 42.557384353084 0 +70 27849 42.557384353084 0 +70 27863 42.557544353084 0 +70 27863 42.557544353084 0 +70 27887 42.643993841477 0 +70 27887 42.643993841477 0 +70 27901 42.644153841477 0 +70 27901 42.644153841477 0 +70 27958 42.824398582336 0 +70 27958 42.824398582336 0 +70 27965 42.824558582336 0 +70 27965 42.824558582336 0 +70 27992 42.831276650828 0 +70 27992 42.831276650828 0 +70 27998 42.831436650828 0 +70 27998 42.831436650828 0 +70 28023 42.857384353087 0 +70 28023 42.857384353087 0 +70 28037 42.857544353087 0 +70 28037 42.857544353087 0 +70 28061 42.943993835169 0 +70 28061 42.943993835169 0 +70 28075 42.944153835169 0 +70 28075 42.944153835169 0 +70 28132 43.124398582336 0 +70 28132 43.124398582336 0 +70 28139 43.124558582336 0 +70 28139 43.124558582336 0 +70 28166 43.131276653336 0 +70 28166 43.131276653336 0 +70 28172 43.131436653336 0 +70 28172 43.131436653336 0 +70 28197 43.157384353094 0 +70 28197 43.157384353094 0 +70 28211 43.157544353094 0 +70 28211 43.157544353094 0 +70 28235 43.243993829822 0 +70 28235 43.243993829822 0 +70 28249 43.244153829822 0 +70 28249 43.244153829822 0 +70 28306 43.424398582336 0 +70 28306 43.424398582336 0 +70 28313 43.424558582336 0 +70 28313 43.424558582336 0 +70 28340 43.431276655825 0 +70 28340 43.431276655825 0 +70 28346 43.431436655825 0 +70 28346 43.431436655825 0 +70 28371 43.457384353104 0 +70 28371 43.457384353104 0 +70 28385 43.457544353104 0 +70 28385 43.457544353104 0 +70 28409 43.543993825335 0 +70 28409 43.543993825335 0 +70 28423 43.544153825335 0 +70 28423 43.544153825335 0 +70 28480 43.724398582336 0 +70 28480 43.724398582336 0 +70 28487 43.724558582336 0 +70 28487 43.724558582336 0 +70 28514 43.731276658351 0 +70 28514 43.731276658351 0 +70 28520 43.731436658351 0 +70 28520 43.731436658351 0 +70 28545 43.757384353117 0 +70 28545 43.757384353117 0 +70 28559 43.757544353117 0 +70 28559 43.757544353117 0 +70 28583 43.84399382162 0 +70 28583 43.84399382162 0 +70 28597 43.84415382162 0 +70 28597 43.84415382162 0 +70 28654 44.024398582336 0 +70 28654 44.024398582336 0 +70 28661 44.024558582336 0 +70 28661 44.024558582336 0 +70 28688 44.031276660872 0 +70 28688 44.031276660872 0 +70 28694 44.031436660872 0 +70 28694 44.031436660872 0 +70 28719 44.057384353134 0 +70 28719 44.057384353134 0 +70 28733 44.057544353134 0 +70 28733 44.057544353134 0 +70 28757 44.143993818568 0 +70 28757 44.143993818568 0 +70 28771 44.144153818568 0 +70 28771 44.144153818568 0 +70 28828 44.324398582336 0 +70 28828 44.324398582336 0 +70 28835 44.324558582336 0 +70 28835 44.324558582336 0 +70 28862 44.331276663352 0 +70 28862 44.331276663352 0 +70 28868 44.331436663352 0 +70 28868 44.331436663352 0 +70 28889 44.357384353142 0 +70 28889 44.357384353142 0 +70 28903 44.357544353142 0 +70 28903 44.357544353142 0 +70 28927 44.443993816103 0 +70 28927 44.443993816103 0 +70 28941 44.444153816103 0 +70 28941 44.444153816103 0 +70 28994 44.624398582336 0 +70 28994 44.624398582336 0 +70 29001 44.624558582336 0 +70 29001 44.624558582336 0 +70 29028 44.63127666581 0 +70 29028 44.63127666581 0 +70 29034 44.63143666581 0 +70 29034 44.63143666581 0 +70 29055 44.657384353131 0 +70 29055 44.657384353131 0 +70 29069 44.657544353131 0 +70 29069 44.657544353131 0 +70 29093 44.743993814138 0 +70 29093 44.743993814138 0 +70 29107 44.744153814138 0 +70 29107 44.744153814138 0 +70 29160 44.924398582336 0 +70 29160 44.924398582336 0 +70 29167 44.924558582336 0 +70 29167 44.924558582336 0 +70 29194 44.931276668328 0 +70 29194 44.931276668328 0 +70 29200 44.931436668328 0 +70 29200 44.931436668328 0 +70 29221 44.957384353109 0 +70 29221 44.957384353109 0 +70 29235 44.957544353109 0 +70 29235 44.957544353109 0 +70 29259 45.043993812593 0 +70 29259 45.043993812593 0 +70 29273 45.044153812593 0 +70 29273 45.044153812593 0 +70 29326 45.224398582336 0 +70 29326 45.224398582336 0 +70 29333 45.224558582336 0 +70 29333 45.224558582336 0 +70 29360 45.231276670771 0 +70 29360 45.231276670771 0 +70 29366 45.231436670771 0 +70 29366 45.231436670771 0 +70 29387 45.257384353088 0 +70 29387 45.257384353088 0 +70 29401 45.257544353088 0 +70 29401 45.257544353088 0 +70 29425 45.343993811321 0 +70 29425 45.343993811321 0 +70 29439 45.344153811321 0 +70 29439 45.344153811321 0 +70 29492 45.524398582336 0 +70 29492 45.524398582336 0 +70 29499 45.524558582336 0 +70 29499 45.524558582336 0 +70 29526 45.53127667327 0 +70 29526 45.53127667327 0 +70 29532 45.53143667327 0 +70 29532 45.53143667327 0 +70 29553 45.557384353087 0 +70 29553 45.557384353087 0 +70 29567 45.557544353087 0 +70 29567 45.557544353087 0 +70 29591 45.643993810247 0 +70 29591 45.643993810247 0 +70 29605 45.644153810247 0 +70 29605 45.644153810247 0 +70 29658 45.824398582336 0 +70 29658 45.824398582336 0 +70 29665 45.824558582336 0 +70 29665 45.824558582336 0 +70 29692 45.831276675809 0 +70 29692 45.831276675809 0 +70 29698 45.831436675809 0 +70 29698 45.831436675809 0 +70 29719 45.857384353099 0 +70 29719 45.857384353099 0 +70 29733 45.857544353099 0 +70 29733 45.857544353099 0 +70 29757 45.94399380881 0 +70 29757 45.94399380881 0 +70 29771 45.94415380881 0 +70 29771 45.94415380881 0 +70 29824 46.124398582336 0 +70 29824 46.124398582336 0 +70 29831 46.124558582336 0 +70 29831 46.124558582336 0 +70 29858 46.131276678861 0 +70 29858 46.131276678861 0 +70 29864 46.131436678861 0 +70 29864 46.131436678861 0 +70 29885 46.157384350237 0 +70 29885 46.157384350237 0 +70 29899 46.157544350237 0 +70 29899 46.157544350237 0 +70 29922 46.243993803699 0 +70 29922 46.243993803699 0 +70 29932 46.244153803699 0 +70 29932 46.244153803699 0 +70 29990 46.424398582336 0 +70 29990 46.424398582336 0 +70 29997 46.424558582336 0 +70 29997 46.424558582336 0 +70 30024 46.431276686409 0 +70 30024 46.431276686409 0 +70 30030 46.431436686409 0 +70 30030 46.431436686409 0 +70 30051 46.457384341327 0 +70 30051 46.457384341327 0 +70 30065 46.457544341327 0 +70 30065 46.457544341327 0 +70 30088 46.543993792983 0 +70 30088 46.543993792983 0 +70 30098 46.544153792983 0 +70 30098 46.544153792983 0 +70 30156 46.724398582336 0 +70 30156 46.724398582336 0 +70 30163 46.724558582336 0 +70 30163 46.724558582336 0 +70 30190 46.731276699768 0 +70 30190 46.731276699768 0 +70 30196 46.731436699768 0 +70 30196 46.731436699768 0 +70 30216 46.757384329816 0 +70 30216 46.757384329816 0 +70 30226 46.757544329816 0 +70 30226 46.757544329816 0 +70 30254 46.843993781596 0 +70 30254 46.843993781596 0 +70 30264 46.844153781596 0 +70 30264 46.844153781596 0 +70 30322 47.024398582336 0 +70 30322 47.024398582336 0 +70 30329 47.024558582336 0 +70 30329 47.024558582336 0 +70 30356 47.031276714347 0 +70 30356 47.031276714347 0 +70 30362 47.031436714347 0 +70 30362 47.031436714347 0 +70 30382 47.057384318309 0 +70 30382 47.057384318309 0 +70 30392 47.057544318309 0 +70 30392 47.057544318309 0 +70 30420 47.143993770247 0 +70 30420 47.143993770247 0 +70 30430 47.144153770247 0 +70 30430 47.144153770247 0 +70 30488 47.324398582336 0 +70 30488 47.324398582336 0 +70 30495 47.324558582336 0 +70 30495 47.324558582336 0 +70 30522 47.331276729157 0 +70 30522 47.331276729157 0 +70 30528 47.331436729157 0 +70 30528 47.331436729157 0 +70 30548 47.357384306963 0 +70 30548 47.357384306963 0 +70 30558 47.357544306963 0 +70 30558 47.357544306963 0 +70 30586 47.443993758984 0 +70 30586 47.443993758984 0 +70 30596 47.444153758984 0 +70 30596 47.444153758984 0 +70 30654 47.624398582336 0 +70 30654 47.624398582336 0 +70 30661 47.624558582336 0 +70 30661 47.624558582336 0 +70 30688 47.631276744132 0 +70 30688 47.631276744132 0 +70 30694 47.631436744132 0 +70 30694 47.631436744132 0 +70 30714 47.657384295839 0 +70 30714 47.657384295839 0 +70 30724 47.657544295839 0 +70 30724 47.657544295839 0 +70 30752 47.743993747807 0 +70 30752 47.743993747807 0 +70 30762 47.744153747807 0 +70 30762 47.744153747807 0 +70 30820 47.924398582336 0 +70 30820 47.924398582336 0 +70 30827 47.924558582336 0 +70 30827 47.924558582336 0 +70 30854 47.931276759305 0 +70 30854 47.931276759305 0 +70 30860 47.931436759305 0 +70 30860 47.931436759305 0 +70 30880 47.957384284957 0 +70 30880 47.957384284957 0 +70 30890 47.957544284957 0 +70 30890 47.957544284957 0 +70 30918 48.043993736723 0 +70 30918 48.043993736723 0 +70 30928 48.044153736723 0 +70 30928 48.044153736723 0 +70 30986 48.224398582336 0 +70 30986 48.224398582336 0 +70 30993 48.224558582336 0 +70 30993 48.224558582336 0 +70 31020 48.231276774574 0 +70 31020 48.231276774574 0 +70 31026 48.231436774574 0 +70 31026 48.231436774574 0 +70 31046 48.257384274373 0 +70 31046 48.257384274373 0 +70 31056 48.257544274373 0 +70 31056 48.257544274373 0 +70 31084 48.343993727328 0 +70 31084 48.343993727328 0 +70 31094 48.344153727328 0 +70 31094 48.344153727328 0 +70 31152 48.524398582336 0 +70 31152 48.524398582336 0 +70 31159 48.524558582336 0 +70 31159 48.524558582336 0 +70 31186 48.531276790029 0 +70 31186 48.531276790029 0 +70 31192 48.531436790029 0 +70 31192 48.531436790029 0 +70 31212 48.557384264097 0 +70 31212 48.557384264097 0 +70 31222 48.557544264097 0 +70 31222 48.557544264097 0 +70 31250 48.6439937182 0 +70 31250 48.6439937182 0 +70 31260 48.6441537182 0 +70 31260 48.6441537182 0 +70 31318 48.824398582336 0 +70 31318 48.824398582336 0 +70 31325 48.824558582336 0 +70 31325 48.824558582336 0 +70 31352 48.83127680564 0 +70 31352 48.83127680564 0 +70 31358 48.83143680564 0 +70 31358 48.83143680564 0 +70 31378 48.85738425419 0 +70 31378 48.85738425419 0 +70 31388 48.85754425419 0 +70 31388 48.85754425419 0 +70 31416 48.943993710675 0 +70 31416 48.943993710675 0 +70 31426 48.944153710675 0 +70 31426 48.944153710675 0 +70 31484 49.124398582336 0 +70 31484 49.124398582336 0 +70 31491 49.124558582336 0 +70 31491 49.124558582336 0 +70 31518 49.13127682136 0 +70 31518 49.13127682136 0 +70 31524 49.13143682136 0 +70 31524 49.13143682136 0 +70 31544 49.157384244721 0 +70 31544 49.157384244721 0 +70 31554 49.157544244721 0 +70 31554 49.157544244721 0 +70 31582 49.243993704337 0 +70 31582 49.243993704337 0 +70 31592 49.244153704337 0 +70 31592 49.244153704337 0 +70 31650 49.424398582336 0 +70 31650 49.424398582336 0 +70 31657 49.424558582336 0 +70 31657 49.424558582336 0 +70 31684 49.431276837159 0 +70 31684 49.431276837159 0 +70 31690 49.431436837159 0 +70 31690 49.431436837159 0 +70 31710 49.457384235618 0 +70 31710 49.457384235618 0 +70 31720 49.457544235618 0 +70 31720 49.457544235618 0 +70 31748 49.543993699244 0 +70 31748 49.543993699244 0 +70 31758 49.544153699244 0 +70 31758 49.544153699244 0 +70 31816 49.724398582336 0 +70 31816 49.724398582336 0 +70 31823 49.724558582336 0 +70 31823 49.724558582336 0 +70 31850 49.731276842151 0 +70 31850 49.731276842151 0 +70 31856 49.731436842151 0 +70 31856 49.731436842151 0 +70 31876 49.757384226909 0 +70 31876 49.757384226909 0 +70 31886 49.757544226909 0 +70 31886 49.757544226909 0 +70 31914 49.843993694931 0 +70 31914 49.843993694931 0 +70 31924 49.844153694931 0 +70 31924 49.844153694931 0 +70 31982 50.024398582336 0 +70 31982 50.024398582336 0 +70 31989 50.024558582336 0 +70 31989 50.024558582336 0 +70 32016 50.031276841687 0 +70 32016 50.031276841687 0 +70 32022 50.031436841687 0 +70 32022 50.031436841687 0 +70 32042 50.057384218616 0 +70 32042 50.057384218616 0 +70 32052 50.057544218616 0 +70 32052 50.057544218616 0 +70 32080 50.143993691243 0 +70 32080 50.143993691243 0 +70 32090 50.144153691243 0 +70 32090 50.144153691243 0 +70 32148 50.324398582336 0 +70 32148 50.324398582336 0 +70 32155 50.324558582336 0 +70 32155 50.324558582336 0 +70 32182 50.331276841226 0 +70 32182 50.331276841226 0 +70 32188 50.331436841226 0 +70 32188 50.331436841226 0 +70 32208 50.3573842108 0 +70 32208 50.3573842108 0 +70 32218 50.3575442108 0 +70 32218 50.3575442108 0 +70 32246 50.443993688083 0 +70 32246 50.443993688083 0 +70 32256 50.444153688083 0 +70 32256 50.444153688083 0 +70 32314 50.624398582336 0 +70 32314 50.624398582336 0 +70 32321 50.624558582336 0 +70 32321 50.624558582336 0 +70 32348 50.631276840782 0 +70 32348 50.631276840782 0 +70 32354 50.631436840782 0 +70 32354 50.631436840782 0 +70 32374 50.657384203419 0 +70 32374 50.657384203419 0 +70 32384 50.657544203419 0 +70 32384 50.657544203419 0 +70 32412 50.743993685542 0 +70 32412 50.743993685542 0 +70 32422 50.744153685542 0 +70 32422 50.744153685542 0 +70 32480 50.924398582336 0 +70 32480 50.924398582336 0 +70 32487 50.924558582336 0 +70 32487 50.924558582336 0 +70 32514 50.931276840349 0 +70 32514 50.931276840349 0 +70 32520 50.931436840349 0 +70 32520 50.931436840349 0 +70 32540 50.957384196502 0 +70 32540 50.957384196502 0 +70 32550 50.957544196502 0 +70 32550 50.957544196502 0 +70 32578 51.043993683597 0 +70 32578 51.043993683597 0 +70 32588 51.044153683597 0 +70 32588 51.044153683597 0 +70 32642 51.224398582336 0 +70 32642 51.224398582336 0 +70 32649 51.224558582336 0 +70 32649 51.224558582336 0 +70 32676 51.231276839912 0 +70 32676 51.231276839912 0 +70 32682 51.231436839912 0 +70 32682 51.231436839912 0 +70 32702 51.257384190124 0 +70 32702 51.257384190124 0 +70 32712 51.257544190124 0 +70 32712 51.257544190124 0 +70 32736 51.343993682284 0 +70 32736 51.343993682284 0 +70 32746 51.344153682284 0 +70 32746 51.344153682284 0 +70 32800 51.524398582336 0 +70 32800 51.524398582336 0 +70 32807 51.524558582336 0 +70 32807 51.524558582336 0 +70 32834 51.531276839494 0 +70 32834 51.531276839494 0 +70 32840 51.531436839494 0 +70 32840 51.531436839494 0 +70 32864 51.557384184246 0 +70 32864 51.557384184246 0 +70 32874 51.557544184246 0 +70 32874 51.557544184246 0 +70 32902 51.643993681524 0 +70 32902 51.643993681524 0 +70 32912 51.644153681524 0 +70 32912 51.644153681524 0 +70 32966 51.824398582336 0 +70 32966 51.824398582336 0 +70 32973 51.824558582336 0 +70 32973 51.824558582336 0 +70 33000 51.831276839089 0 +70 33000 51.831276839089 0 +70 33006 51.831436839089 0 +70 33006 51.831436839089 0 +70 33030 51.857384178906 0 +70 33030 51.857384178906 0 +70 33040 51.857544178906 0 +70 33040 51.857544178906 0 +70 33068 51.943993681491 0 +70 33068 51.943993681491 0 +70 33078 51.944153681491 0 +70 33078 51.944153681491 0 +70 33132 52.124398582336 0 +70 33132 52.124398582336 0 +70 33139 52.124558582336 0 +70 33139 52.124558582336 0 +70 33166 52.131276838692 0 +70 33166 52.131276838692 0 +70 33172 52.131436838692 0 +70 33172 52.131436838692 0 +70 33196 52.157384174145 0 +70 33196 52.157384174145 0 +70 33206 52.157544174145 0 +70 33206 52.157544174145 0 +70 33234 52.243993682011 0 +70 33234 52.243993682011 0 +70 33244 52.244153682011 0 +70 33244 52.244153682011 0 +70 33298 52.424398582336 0 +70 33298 52.424398582336 0 +70 33305 52.424558582336 0 +70 33305 52.424558582336 0 +70 33332 52.431276838288 0 +70 33332 52.431276838288 0 +70 33338 52.431436838288 0 +70 33338 52.431436838288 0 +70 33362 52.457384169983 0 +70 33362 52.457384169983 0 +70 33372 52.457544169983 0 +70 33372 52.457544169983 0 +70 33400 52.543993683051 0 +70 33400 52.543993683051 0 +70 33410 52.544153683051 0 +70 33410 52.544153683051 0 +70 33464 52.724398582336 0 +70 33464 52.724398582336 0 +70 33471 52.724558582336 0 +70 33471 52.724558582336 0 +70 33499 52.731276837906 0 +70 33499 52.731276837906 0 +70 33509 52.731436837906 0 +70 33509 52.731436837906 0 +70 33528 52.757384166374 0 +70 33528 52.757384166374 0 +70 33538 52.757544166374 0 +70 33538 52.757544166374 0 +70 33566 52.843993684615 0 +70 33566 52.843993684615 0 +70 33576 52.844153684615 0 +70 33576 52.844153684615 0 +70 33630 53.024398582336 0 +70 33630 53.024398582336 0 +70 33637 53.024558582336 0 +70 33637 53.024558582336 0 +70 33665 53.031276837529 0 +70 33665 53.031276837529 0 +70 33675 53.031436837529 0 +70 33675 53.031436837529 0 +70 33694 53.057384163324 0 +70 33694 53.057384163324 0 +70 33704 53.057544163324 0 +70 33704 53.057544163324 0 +70 33732 53.143993686732 0 +70 33732 53.143993686732 0 +70 33742 53.144153686732 0 +70 33742 53.144153686732 0 +70 33772 53.324398582336 0 +70 33772 53.324398582336 0 +70 33778 53.324558582336 0 +70 33778 53.324558582336 0 +70 33804 53.331276837158 0 +70 33804 53.331276837158 0 +70 33813 53.331436837158 0 +70 33813 53.331436837158 0 +70 33831 53.357384160285 0 +70 33831 53.357384160285 0 +70 33840 53.357544160285 0 +70 33840 53.357544160285 0 +70 33866 53.44399368936 0 +70 33866 53.44399368936 0 +70 33875 53.44415368936 0 +70 33875 53.44415368936 0 +70 33899 53.624398582336 0 +70 33899 53.624398582336 0 +70 33905 53.624558582336 0 +70 33905 53.624558582336 0 +70 33931 53.631276836803 0 +70 33931 53.631276836803 0 +70 33940 53.631436836803 0 +70 33940 53.631436836803 0 +70 33958 53.657384156982 0 +70 33958 53.657384156982 0 +70 33967 53.657544156982 0 +70 33967 53.657544156982 0 +70 33993 53.743993692655 0 +70 33993 53.743993692655 0 +70 34002 53.744153692655 0 +70 34002 53.744153692655 0 +70 34026 53.924398582336 0 +70 34026 53.924398582336 0 +70 34032 53.924558582336 0 +70 34032 53.924558582336 0 +70 34058 53.931276836464 0 +70 34058 53.931276836464 0 +70 34067 53.931436836464 0 +70 34067 53.931436836464 0 +70 34085 53.95738415332 0 +70 34085 53.95738415332 0 +70 34094 53.95754415332 0 +70 34094 53.95754415332 0 +70 34120 54.043993696094 0 +70 34120 54.043993696094 0 +70 34129 54.044153696094 0 +70 34129 54.044153696094 0 +70 34153 54.224398582336 0 +70 34153 54.224398582336 0 +70 34159 54.224558582336 0 +70 34159 54.224558582336 0 +70 34185 54.231276836131 0 +70 34185 54.231276836131 0 +70 34194 54.231436836131 0 +70 34194 54.231436836131 0 +70 34212 54.257384149235 0 +70 34212 54.257384149235 0 +70 34221 54.257544149235 0 +70 34221 54.257544149235 0 +70 34247 54.343993699619 0 +70 34247 54.343993699619 0 +70 34256 54.344153699619 0 +70 34256 54.344153699619 0 +70 34280 54.524398582336 0 +70 34280 54.524398582336 0 +70 34286 54.524558582336 0 +70 34286 54.524558582336 0 +70 34312 54.531276835797 0 +70 34312 54.531276835797 0 +70 34321 54.531436835797 0 +70 34321 54.531436835797 0 +70 34339 54.557384144828 0 +70 34339 54.557384144828 0 +70 34348 54.557544144828 0 +70 34348 54.557544144828 0 +70 34374 54.643993703131 0 +70 34374 54.643993703131 0 +70 34383 54.644153703131 0 +70 34383 54.644153703131 0 +70 34407 54.824398582336 0 +70 34407 54.824398582336 0 +70 34413 54.824558582336 0 +70 34413 54.824558582336 0 +70 34439 54.831276835522 0 +70 34439 54.831276835522 0 +70 34448 54.831436835522 0 +70 34448 54.831436835522 0 +70 34466 54.85738414112 0 +70 34466 54.85738414112 0 +70 34475 54.85754414112 0 +70 34475 54.85754414112 0 +70 34501 54.943993706647 0 +70 34501 54.943993706647 0 +70 34510 54.944153706647 0 +70 34510 54.944153706647 0 +70 34534 55.124398582336 0 +70 34534 55.124398582336 0 +70 34540 55.124558582336 0 +70 34540 55.124558582336 0 +70 34566 55.131276835415 0 +70 34566 55.131276835415 0 +70 34575 55.131436835415 0 +70 34575 55.131436835415 0 +70 34593 55.15738413831 0 +70 34593 55.15738413831 0 +70 34602 55.15754413831 0 +70 34602 55.15754413831 0 +70 34628 55.243993710085 0 +70 34628 55.243993710085 0 +70 34637 55.244153710085 0 +70 34637 55.244153710085 0 +70 34661 55.424398582336 0 +70 34661 55.424398582336 0 +70 34667 55.424558582336 0 +70 34667 55.424558582336 0 +70 34693 55.431276835478 0 +70 34693 55.431276835478 0 +70 34702 55.431436835478 0 +70 34702 55.431436835478 0 +70 34720 55.45738413635 0 +70 34720 55.45738413635 0 +70 34729 55.45754413635 0 +70 34729 55.45754413635 0 +70 34755 55.543993713581 0 +70 34755 55.543993713581 0 +70 34764 55.544153713581 0 +70 34764 55.544153713581 0 +70 34788 55.724398582336 0 +70 34788 55.724398582336 0 +70 34794 55.724558582336 0 +70 34794 55.724558582336 0 +70 34820 55.731276835709 0 +70 34820 55.731276835709 0 +70 34829 55.731436835709 0 +70 34829 55.731436835709 0 +70 34847 55.757384135289 0 +70 34847 55.757384135289 0 +70 34856 55.757544135289 0 +70 34856 55.757544135289 0 +70 34882 55.843993717083 0 +70 34882 55.843993717083 0 +70 34891 55.844153717083 0 +70 34891 55.844153717083 0 +70 34915 56.024398582336 0 +70 34915 56.024398582336 0 +70 34921 56.024558582336 0 +70 34921 56.024558582336 0 +70 34947 56.031276836125 0 +70 34947 56.031276836125 0 +70 34956 56.031436836125 0 +70 34956 56.031436836125 0 +70 34974 56.057384135209 0 +70 34974 56.057384135209 0 +70 34983 56.057544135209 0 +70 34983 56.057544135209 0 +70 35009 56.143993720633 0 +70 35009 56.143993720633 0 +70 35018 56.144153720633 0 +70 35018 56.144153720633 0 +70 35042 56.324398582336 0 +70 35042 56.324398582336 0 +70 35048 56.324558582336 0 +70 35048 56.324558582336 0 +70 35074 56.331276836745 0 +70 35074 56.331276836745 0 +70 35083 56.331436836745 0 +70 35083 56.331436836745 0 +70 35100 56.357384136092 0 +70 35100 56.357384136092 0 +70 35105 56.357544136092 0 +70 35105 56.357544136092 0 +70 35136 56.443993724089 0 +70 35136 56.443993724089 0 +70 35145 56.444153724089 0 +70 35145 56.444153724089 0 +70 35167 56.624398582336 0 +70 35167 56.624398582336 0 +70 35172 56.624558582336 0 +70 35172 56.624558582336 0 +70 35193 56.631276837493 0 +70 35193 56.631276837493 0 +70 35201 56.631436837493 0 +70 35201 56.631436837493 0 +70 35217 56.657384137925 0 +70 35217 56.657384137925 0 +70 35221 56.657544137925 0 +70 35221 56.657544137925 0 +70 35251 56.924398582336 0 +70 35251 56.924398582336 0 +70 35256 56.924558582336 0 +70 35256 56.924558582336 0 +70 35277 56.931276842253 0 +70 35277 56.931276842253 0 +70 35285 56.931436842253 0 +70 35285 56.931436842253 0 +70 35301 56.957384140796 0 +70 35301 56.957384140796 0 +70 35305 56.957544140796 0 +70 35305 56.957544140796 0 +70 35335 57.224398582336 0 +70 35335 57.224398582336 0 +70 35340 57.224558582336 0 +70 35340 57.224558582336 0 +70 35361 57.231276850523 0 +70 35361 57.231276850523 0 +70 35369 57.231436850523 0 +70 35369 57.231436850523 0 +70 35385 57.257384144754 0 +70 35385 57.257384144754 0 +70 35389 57.257544144754 0 +70 35389 57.257544144754 0 +70 35419 57.524398582336 0 +70 35419 57.524398582336 0 +70 35424 57.524558582336 0 +70 35424 57.524558582336 0 +70 35445 57.53127685508 0 +70 35445 57.53127685508 0 +70 35453 57.53143685508 0 +70 35453 57.53143685508 0 +70 35470 57.557384149775 0 +70 35470 57.557384149775 0 +70 35478 57.557544149775 0 +70 35478 57.557544149775 0 +70 35503 57.824398582336 0 +70 35503 57.824398582336 0 +70 35508 57.824558582336 0 +70 35508 57.824558582336 0 +70 35529 57.831276859492 0 +70 35529 57.831276859492 0 +70 35537 57.831436859492 0 +70 35537 57.831436859492 0 +70 35554 57.857384155686 0 +70 35554 57.857384155686 0 +70 35562 57.857544155686 0 +70 35562 57.857544155686 0 +70 35587 58.124398582336 0 +70 35587 58.124398582336 0 +70 35592 58.124558582336 0 +70 35592 58.124558582336 0 +70 35613 58.131276864633 0 +70 35613 58.131276864633 0 +70 35621 58.131436864633 0 +70 35621 58.131436864633 0 +70 35638 58.157384162109 0 +70 35638 58.157384162109 0 +70 35646 58.157544162109 0 +70 35646 58.157544162109 0 +70 35671 58.424398582336 0 +70 35671 58.424398582336 0 +70 35676 58.424558582336 0 +70 35676 58.424558582336 0 +70 35697 58.431276870558 0 +70 35697 58.431276870558 0 +70 35705 58.431436870558 0 +70 35705 58.431436870558 0 +70 35722 58.457384169083 0 +70 35722 58.457384169083 0 +70 35730 58.457544169083 0 +70 35730 58.457544169083 0 +70 35755 58.724398582336 0 +70 35755 58.724398582336 0 +70 35760 58.724558582336 0 +70 35760 58.724558582336 0 +70 35781 58.731276877253 0 +70 35781 58.731276877253 0 +70 35789 58.731436877253 0 +70 35789 58.731436877253 0 +70 35806 58.757384176569 0 +70 35806 58.757384176569 0 +70 35814 58.757544176569 0 +70 35814 58.757544176569 0 +70 35839 59.024398582336 0 +70 35839 59.024398582336 0 +70 35844 59.024558582336 0 +70 35844 59.024558582336 0 +70 35865 59.031276884805 0 +70 35865 59.031276884805 0 +70 35873 59.031436884805 0 +70 35873 59.031436884805 0 +70 35890 59.057384184524 0 +70 35890 59.057384184524 0 +70 35898 59.057544184524 0 +70 35898 59.057544184524 0 +70 35923 59.324398582336 0 +70 35923 59.324398582336 0 +70 35928 59.324558582336 0 +70 35928 59.324558582336 0 +70 35949 59.331276893239 0 +70 35949 59.331276893239 0 +70 35957 59.331436893239 0 +70 35957 59.331436893239 0 +70 35974 59.357384192972 0 +70 35974 59.357384192972 0 +70 35982 59.357544192972 0 +70 35982 59.357544192972 0 +70 36007 59.624398582336 0 +70 36007 59.624398582336 0 +70 36012 59.624558582336 0 +70 36012 59.624558582336 0 +70 36033 59.631276902575 0 +70 36033 59.631276902575 0 +70 36041 59.631436902575 0 +70 36041 59.631436902575 0 +70 36058 59.657384201866 0 +70 36058 59.657384201866 0 +70 36066 59.657544201866 0 +70 36066 59.657544201866 0 +70 36091 59.924398582336 0 +70 36091 59.924398582336 0 +70 36096 59.924558582336 0 +70 36096 59.924558582336 0 +70 36117 59.931276912849 0 +70 36117 59.931276912849 0 +70 36125 59.931436912849 0 +70 36125 59.931436912849 0 +70 36142 59.957384211172 0 +70 36142 59.957384211172 0 +70 36150 59.957544211172 0 +70 36150 59.957544211172 0 +70 36175 60.224398582336 0 +70 36175 60.224398582336 0 +70 36180 60.224558582336 0 +70 36180 60.224558582336 0 +70 36218 60.257384220865 0 +70 36218 60.257384220865 0 +70 36226 60.257544220865 0 +70 36226 60.257544220865 0 +70 36251 60.524398582336 0 +70 36251 60.524398582336 0 +70 36256 60.524558582336 0 +70 36256 60.524558582336 0 +70 36294 60.557384230953 0 +70 36294 60.557384230953 0 +70 36302 60.557544230953 0 +70 36302 60.557544230953 0 +70 36327 60.824398582336 0 +70 36327 60.824398582336 0 +70 36332 60.824558582336 0 +70 36332 60.824558582336 0 +70 36370 60.857384241392 0 +70 36370 60.857384241392 0 +70 36378 60.857544241392 0 +70 36378 60.857544241392 0 +70 36403 61.124398582336 0 +70 36403 61.124398582336 0 +70 36408 61.124558582336 0 +70 36408 61.124558582336 0 +70 36446 61.157384252127 0 +70 36446 61.157384252127 0 +70 36454 61.157544252127 0 +70 36454 61.157544252127 0 +70 36479 61.424398582336 0 +70 36479 61.424398582336 0 +70 36484 61.424558582336 0 +70 36484 61.424558582336 0 +70 36522 61.45738426323 0 +70 36522 61.45738426323 0 +70 36530 61.45754426323 0 +70 36530 61.45754426323 0 +70 36555 61.724398582336 0 +70 36555 61.724398582336 0 +70 36560 61.724558582336 0 +70 36560 61.724558582336 0 +70 36598 61.757384274635 0 +70 36598 61.757384274635 0 +70 36606 61.757544274635 0 +70 36606 61.757544274635 0 +70 36631 62.024398582336 0 +70 36631 62.024398582336 0 +70 36636 62.024558582336 0 +70 36636 62.024558582336 0 +70 36674 62.057384285728 0 +70 36674 62.057384285728 0 +70 36682 62.057544285728 0 +70 36682 62.057544285728 0 +70 36707 62.324398582336 0 +70 36707 62.324398582336 0 +70 36712 62.324558582336 0 +70 36712 62.324558582336 0 +70 36750 62.357384295767 0 +70 36750 62.357384295767 0 +70 36758 62.357544295767 0 +70 36758 62.357544295767 0 +70 36783 62.624398582336 0 +70 36783 62.624398582336 0 +70 36788 62.624558582336 0 +70 36788 62.624558582336 0 +70 36826 62.657384304708 0 +70 36826 62.657384304708 0 +70 36834 62.657544304708 0 +70 36834 62.657544304708 0 +70 36859 62.924398582336 0 +70 36859 62.924398582336 0 +70 36864 62.924558582336 0 +70 36864 62.924558582336 0 +70 36902 62.957384312531 0 +70 36902 62.957384312531 0 +70 36910 62.957544312531 0 +70 36910 62.957544312531 0 +71 1262 6.1 0 +71 1262 6.1 0 +71 1285 6.214557014941 0 +71 1285 6.214557014941 0 +71 1292 6.214717014941 0 +71 1292 6.214717014941 0 +71 1319 6.231276487063 0 +71 1319 6.231276487063 0 +71 1326 6.231436487063 0 +71 1326 6.231436487063 0 +71 1358 6.257384178941 0 +71 1358 6.257384178941 0 +71 1369 6.257544178941 0 +71 1369 6.257544178941 0 +71 1468 6.514557005507 0 +71 1468 6.514557005507 0 +71 1475 6.514717005507 0 +71 1475 6.514717005507 0 +71 1495 6.524398582336 0 +71 1495 6.524398582336 2 +71 1496 6.524398582336 2 +71 1496 6.524398582336 0 +71 1499 6.524398582336 0 +71 1499 6.524398582336 0 +71 1507 6.524558582336 0 +71 1507 6.524558582336 0 +71 1535 6.531276486831 0 +71 1535 6.531276486831 0 +71 1542 6.531436486831 0 +71 1542 6.531436486831 0 +71 1575 6.557384179276 0 +71 1575 6.557384179276 0 +71 1586 6.557544179276 0 +71 1586 6.557544179276 0 +71 1685 6.814556995188 0 +71 1685 6.814556995188 0 +71 1692 6.814716995188 0 +71 1692 6.814716995188 0 +71 1712 6.824398582336 0 +71 1712 6.824398582336 2 +71 1713 6.824398582336 2 +71 1713 6.824398582336 0 +71 1716 6.824398582336 0 +71 1716 6.824398582336 0 +71 1724 6.824558582336 0 +71 1724 6.824558582336 0 +71 1752 6.831276486811 0 +71 1752 6.831276486811 0 +71 1759 6.831436486811 0 +71 1759 6.831436486811 0 +71 1792 6.857384179479 0 +71 1792 6.857384179479 0 +71 1803 6.857544179479 0 +71 1803 6.857544179479 0 +71 1902 7.114556984223 0 +71 1902 7.114556984223 0 +71 1909 7.114716984223 0 +71 1909 7.114716984223 0 +71 1929 7.124398582336 0 +71 1929 7.124398582336 2 +71 1930 7.124398582336 2 +71 1930 7.124398582336 0 +71 1933 7.124398582336 0 +71 1933 7.124398582336 0 +71 1941 7.124558582336 0 +71 1941 7.124558582336 0 +71 1969 7.131276486808 0 +71 1969 7.131276486808 0 +71 1976 7.131436486808 0 +71 1976 7.131436486808 0 +71 2009 7.157384179668 0 +71 2009 7.157384179668 0 +71 2020 7.157544179668 0 +71 2020 7.157544179668 0 +71 2119 7.414556972819 0 +71 2119 7.414556972819 0 +71 2126 7.414716972819 0 +71 2126 7.414716972819 0 +71 2146 7.424398582336 0 +71 2146 7.424398582336 2 +71 2147 7.424398582336 2 +71 2147 7.424398582336 0 +71 2150 7.424398582336 0 +71 2150 7.424398582336 0 +71 2158 7.424558582336 0 +71 2158 7.424558582336 0 +71 2186 7.431276486796 0 +71 2186 7.431276486796 0 +71 2193 7.431436486796 0 +71 2193 7.431436486796 0 +71 2226 7.45738417987 0 +71 2226 7.45738417987 0 +71 2237 7.45754417987 0 +71 2237 7.45754417987 0 +71 2336 7.714556960939 0 +71 2336 7.714556960939 0 +71 2343 7.714716960939 0 +71 2343 7.714716960939 0 +71 2363 7.724398582336 0 +71 2363 7.724398582336 2 +71 2364 7.724398582336 2 +71 2364 7.724398582336 0 +71 2367 7.724398582336 0 +71 2367 7.724398582336 0 +71 2375 7.724558582336 0 +71 2375 7.724558582336 0 +71 2403 7.731276486797 0 +71 2403 7.731276486797 0 +71 2410 7.731436486797 0 +71 2410 7.731436486797 0 +71 2443 7.757384180075 0 +71 2443 7.757384180075 0 +71 2454 7.757544180075 0 +71 2454 7.757544180075 0 +71 2553 8.014556948475 0 +71 2553 8.014556948475 0 +71 2560 8.014716948475 0 +71 2560 8.014716948475 0 +71 2580 8.024398582336 0 +71 2580 8.024398582336 2 +71 2581 8.024398582336 2 +71 2581 8.024398582336 0 +71 2584 8.024398582336 0 +71 2584 8.024398582336 0 +71 2592 8.024558582336 0 +71 2592 8.024558582336 0 +71 2620 8.031276486795 0 +71 2620 8.031276486795 0 +71 2627 8.031436486795 0 +71 2627 8.031436486795 0 +71 2660 8.057384180287 0 +71 2660 8.057384180287 0 +71 2671 8.057544180287 0 +71 2671 8.057544180287 0 +71 2728 8.143993909962 0 +71 2728 8.143993909962 0 +71 2743 8.144153909962 0 +71 2743 8.144153909962 0 +71 2770 8.314556935291 0 +71 2770 8.314556935291 0 +71 2777 8.314716935291 0 +71 2777 8.314716935291 0 +71 2797 8.324398582336 0 +71 2797 8.324398582336 2 +71 2798 8.324398582336 2 +71 2798 8.324398582336 0 +71 2801 8.324398582336 0 +71 2801 8.324398582336 0 +71 2809 8.324558582336 0 +71 2809 8.324558582336 0 +71 2841 8.331276486806 0 +71 2841 8.331276486806 0 +71 2848 8.331436486806 0 +71 2848 8.331436486806 0 +71 2881 8.3573841805 0 +71 2881 8.3573841805 0 +71 2892 8.3575441805 0 +71 2892 8.3575441805 0 +71 2949 8.443993908226 0 +71 2949 8.443993908226 0 +71 2964 8.444153908226 0 +71 2964 8.444153908226 0 +71 2995 8.61455692156 0 +71 2995 8.61455692156 0 +71 3002 8.61471692156 0 +71 3002 8.61471692156 0 +71 3022 8.624398582336 0 +71 3022 8.624398582336 2 +71 3023 8.624398582336 2 +71 3023 8.624398582336 0 +71 3026 8.624398582336 0 +71 3026 8.624398582336 0 +71 3034 8.624558582336 0 +71 3034 8.624558582336 0 +71 3066 8.631276486794 0 +71 3066 8.631276486794 0 +71 3073 8.631436486794 0 +71 3073 8.631436486794 0 +71 3106 8.657384180719 0 +71 3106 8.657384180719 0 +71 3117 8.657544180719 0 +71 3117 8.657544180719 0 +71 3174 8.743993906406 0 +71 3174 8.743993906406 0 +71 3189 8.744153906406 0 +71 3189 8.744153906406 0 +71 3220 8.914556907259 0 +71 3220 8.914556907259 0 +71 3227 8.914716907259 0 +71 3227 8.914716907259 0 +71 3247 8.924398582336 0 +71 3247 8.924398582336 2 +71 3248 8.924398582336 2 +71 3248 8.924398582336 0 +71 3251 8.924398582336 0 +71 3251 8.924398582336 0 +71 3259 8.924558582336 0 +71 3259 8.924558582336 0 +71 3291 8.931276486763 0 +71 3291 8.931276486763 0 +71 3298 8.931436486763 0 +71 3298 8.931436486763 0 +71 3331 8.957384180943 0 +71 3331 8.957384180943 0 +71 3342 8.957544180943 0 +71 3342 8.957544180943 0 +71 3399 9.04399390454 0 +71 3399 9.04399390454 0 +71 3414 9.04415390454 0 +71 3414 9.04415390454 0 +71 3445 9.214556892419 0 +71 3445 9.214556892419 0 +71 3452 9.214716892419 0 +71 3452 9.214716892419 0 +71 3472 9.224398582336 0 +71 3472 9.224398582336 2 +71 3473 9.224398582336 2 +71 3473 9.224398582336 0 +71 3476 9.224398582336 0 +71 3476 9.224398582336 0 +71 3484 9.224558582336 0 +71 3484 9.224558582336 0 +71 3516 9.23127648678 0 +71 3516 9.23127648678 0 +71 3523 9.23143648678 0 +71 3523 9.23143648678 0 +71 3556 9.257384181166 0 +71 3556 9.257384181166 0 +71 3567 9.257544181166 0 +71 3567 9.257544181166 0 +71 3624 9.343993902652 0 +71 3624 9.343993902652 0 +71 3639 9.344153902652 0 +71 3639 9.344153902652 0 +71 3670 9.514556877151 0 +71 3670 9.514556877151 0 +71 3677 9.514716877151 0 +71 3677 9.514716877151 0 +71 3697 9.524398582336 0 +71 3697 9.524398582336 2 +71 3698 9.524398582336 2 +71 3698 9.524398582336 0 +71 3701 9.524398582336 0 +71 3701 9.524398582336 0 +71 3709 9.524558582336 0 +71 3709 9.524558582336 0 +71 3741 9.531276486774 0 +71 3741 9.531276486774 0 +71 3748 9.531436486774 0 +71 3748 9.531436486774 0 +71 3781 9.557384181399 0 +71 3781 9.557384181399 0 +71 3792 9.557544181399 0 +71 3792 9.557544181399 0 +71 3849 9.643993900772 0 +71 3849 9.643993900772 0 +71 3864 9.644153900772 0 +71 3864 9.644153900772 0 +71 3895 9.814556861723 0 +71 3895 9.814556861723 0 +71 3902 9.814716861723 0 +71 3902 9.814716861723 0 +71 3922 9.824398582336 0 +71 3922 9.824398582336 2 +71 3923 9.824398582336 2 +71 3923 9.824398582336 0 +71 3926 9.824398582336 0 +71 3926 9.824398582336 0 +71 3934 9.824558582336 0 +71 3934 9.824558582336 0 +71 3966 9.831276486773 0 +71 3966 9.831276486773 0 +71 3973 9.831436486773 0 +71 3973 9.831436486773 0 +71 4006 9.857384181638 0 +71 4006 9.857384181638 0 +71 4017 9.857544181638 0 +71 4017 9.857544181638 0 +71 4074 9.943993898897 0 +71 4074 9.943993898897 0 +71 4089 9.944153898897 0 +71 4089 9.944153898897 0 +71 4120 10.114556846518 0 +71 4120 10.114556846518 0 +71 4127 10.114716846518 0 +71 4127 10.114716846518 0 +71 4147 10.124398582336 0 +71 4147 10.124398582336 2 +71 4148 10.124398582336 2 +71 4148 10.124398582336 0 +71 4151 10.124398582336 0 +71 4151 10.124398582336 0 +71 4159 10.124558582336 0 +71 4159 10.124558582336 0 +71 4191 10.131276486772 0 +71 4191 10.131276486772 0 +71 4198 10.131436486772 0 +71 4198 10.131436486772 0 +71 4231 10.157384181883 0 +71 4231 10.157384181883 0 +71 4242 10.157544181883 0 +71 4242 10.157544181883 0 +71 4299 10.243993897044 0 +71 4299 10.243993897044 0 +71 4314 10.244153897044 0 +71 4314 10.244153897044 0 +71 4345 10.414556831999 0 +71 4345 10.414556831999 0 +71 4352 10.414716831999 0 +71 4352 10.414716831999 0 +71 4372 10.424398582336 0 +71 4372 10.424398582336 2 +71 4373 10.424398582336 2 +71 4373 10.424398582336 0 +71 4376 10.424398582336 0 +71 4376 10.424398582336 0 +71 4384 10.424558582336 0 +71 4384 10.424558582336 0 +71 4416 10.431276486761 0 +71 4416 10.431276486761 0 +71 4423 10.431436486761 0 +71 4423 10.431436486761 0 +71 4456 10.457384182119 0 +71 4456 10.457384182119 0 +71 4467 10.457544182119 0 +71 4467 10.457544182119 0 +71 4524 10.54399389528 0 +71 4524 10.54399389528 0 +71 4539 10.54415389528 0 +71 4539 10.54415389528 0 +71 4574 10.714556820945 0 +71 4574 10.714556820945 0 +71 4581 10.714716820945 0 +71 4581 10.714716820945 0 +71 4605 10.724398582336 0 +71 4605 10.724398582336 2 +71 4606 10.724398582336 2 +71 4606 10.724398582336 0 +71 4609 10.724398582336 0 +71 4609 10.724398582336 0 +71 4617 10.724558582336 0 +71 4617 10.724558582336 0 +71 4649 10.731276486773 0 +71 4649 10.731276486773 0 +71 4656 10.731436486773 0 +71 4656 10.731436486773 0 +71 4689 10.757384182346 0 +71 4689 10.757384182346 0 +71 4700 10.757544182346 0 +71 4700 10.757544182346 0 +71 4758 10.843993893701 0 +71 4758 10.843993893701 0 +71 4777 10.844153893701 0 +71 4777 10.844153893701 0 +71 4807 11.014556825169 0 +71 4807 11.014556825169 0 +71 4814 11.014716825169 0 +71 4814 11.014716825169 0 +71 4838 11.024398582336 0 +71 4838 11.024398582336 2 +71 4839 11.024398582336 2 +71 4839 11.024398582336 0 +71 4842 11.024398582336 0 +71 4842 11.024398582336 0 +71 4850 11.024558582336 0 +71 4850 11.024558582336 0 +71 4883 11.031276486765 0 +71 4883 11.031276486765 0 +71 4894 11.031436486765 0 +71 4894 11.031436486765 0 +71 4922 11.057384182606 0 +71 4922 11.057384182606 0 +71 4933 11.057544182606 0 +71 4933 11.057544182606 0 +71 4991 11.14399389274 0 +71 4991 11.14399389274 0 +71 5010 11.14415389274 0 +71 5010 11.14415389274 0 +71 5040 11.31455683863 0 +71 5040 11.31455683863 0 +71 5047 11.31471683863 0 +71 5047 11.31471683863 0 +71 5071 11.324398582336 0 +71 5071 11.324398582336 2 +71 5072 11.324398582336 2 +71 5072 11.324398582336 0 +71 5075 11.324398582336 0 +71 5075 11.324398582336 0 +71 5083 11.324558582336 0 +71 5083 11.324558582336 0 +71 5116 11.33127648678 0 +71 5116 11.33127648678 0 +71 5127 11.33143648678 0 +71 5127 11.33143648678 0 +71 5154 11.35738418284 0 +71 5154 11.35738418284 0 +71 5161 11.35754418284 0 +71 5161 11.35754418284 0 +71 5224 11.443993892392 0 +71 5224 11.443993892392 0 +71 5243 11.444153892392 0 +71 5243 11.444153892392 0 +71 5273 11.614556853551 0 +71 5273 11.614556853551 0 +71 5280 11.614716853551 0 +71 5280 11.614716853551 0 +71 5304 11.624398582336 0 +71 5304 11.624398582336 2 +71 5305 11.624398582336 2 +71 5305 11.624398582336 0 +71 5308 11.624398582336 0 +71 5308 11.624398582336 0 +71 5316 11.624558582336 0 +71 5316 11.624558582336 0 +71 5349 11.63127648679 0 +71 5349 11.63127648679 0 +71 5360 11.63143648679 0 +71 5360 11.63143648679 0 +71 5391 11.65738418309 0 +71 5391 11.65738418309 0 +71 5398 11.65754418309 0 +71 5398 11.65754418309 0 +71 5465 11.74399389255 0 +71 5465 11.74399389255 0 +71 5484 11.74415389255 0 +71 5484 11.74415389255 0 +71 5514 11.914556868865 0 +71 5514 11.914556868865 0 +71 5521 11.914716868865 0 +71 5521 11.914716868865 0 +71 5545 11.924398582336 0 +71 5545 11.924398582336 2 +71 5546 11.924398582336 2 +71 5546 11.924398582336 0 +71 5549 11.924398582336 0 +71 5549 11.924398582336 0 +71 5557 11.924558582336 0 +71 5557 11.924558582336 0 +71 5590 11.931276486788 0 +71 5590 11.931276486788 0 +71 5601 11.931436486788 0 +71 5601 11.931436486788 0 +71 5632 11.957384183349 0 +71 5632 11.957384183349 0 +71 5639 11.957544183349 0 +71 5639 11.957544183349 0 +71 5706 12.043993893167 0 +71 5706 12.043993893167 0 +71 5725 12.044153893167 0 +71 5725 12.044153893167 0 +71 5755 12.214556884343 0 +71 5755 12.214556884343 0 +71 5762 12.214716884343 0 +71 5762 12.214716884343 0 +71 5786 12.224398582336 0 +71 5786 12.224398582336 2 +71 5787 12.224398582336 2 +71 5787 12.224398582336 0 +71 5790 12.224398582336 0 +71 5790 12.224398582336 0 +71 5798 12.224558582336 0 +71 5798 12.224558582336 0 +71 5831 12.231276486807 0 +71 5831 12.231276486807 0 +71 5842 12.231436486807 0 +71 5842 12.231436486807 0 +71 5873 12.257384183599 0 +71 5873 12.257384183599 0 +71 5880 12.257544183599 0 +71 5880 12.257544183599 0 +71 5947 12.343993893974 0 +71 5947 12.343993893974 0 +71 5966 12.344153893974 0 +71 5966 12.344153893974 0 +71 5996 12.514556899849 0 +71 5996 12.514556899849 0 +71 6003 12.514716899849 0 +71 6003 12.514716899849 0 +71 6027 12.524398582336 0 +71 6027 12.524398582336 2 +71 6028 12.524398582336 2 +71 6028 12.524398582336 0 +71 6031 12.524398582336 0 +71 6031 12.524398582336 0 +71 6039 12.524558582336 0 +71 6039 12.524558582336 0 +71 6072 12.531276486799 0 +71 6072 12.531276486799 0 +71 6083 12.531436486799 0 +71 6083 12.531436486799 0 +71 6114 12.557384183875 0 +71 6114 12.557384183875 0 +71 6121 12.557544183875 0 +71 6121 12.557544183875 0 +71 6188 12.643993894778 0 +71 6188 12.643993894778 0 +71 6207 12.644153894778 0 +71 6207 12.644153894778 0 +71 6237 12.814556915398 0 +71 6237 12.814556915398 0 +71 6244 12.814716915398 0 +71 6244 12.814716915398 0 +71 6268 12.824398582336 0 +71 6268 12.824398582336 2 +71 6269 12.824398582336 2 +71 6269 12.824398582336 0 +71 6272 12.824398582336 0 +71 6272 12.824398582336 0 +71 6280 12.824558582336 0 +71 6280 12.824558582336 0 +71 6313 12.831276486802 0 +71 6313 12.831276486802 0 +71 6324 12.831436486802 0 +71 6324 12.831436486802 0 +71 6355 12.857384184139 0 +71 6355 12.857384184139 0 +71 6362 12.857544184139 0 +71 6362 12.857544184139 0 +71 6429 12.943993895594 0 +71 6429 12.943993895594 0 +71 6448 12.944153895594 0 +71 6448 12.944153895594 0 +71 6478 13.114556930999 0 +71 6478 13.114556930999 0 +71 6485 13.114716930999 0 +71 6485 13.114716930999 0 +71 6509 13.124398582336 0 +71 6509 13.124398582336 2 +71 6510 13.124398582336 2 +71 6510 13.124398582336 0 +71 6513 13.124398582336 0 +71 6513 13.124398582336 0 +71 6521 13.124558582336 0 +71 6521 13.124558582336 0 +71 6554 13.131276486785 0 +71 6554 13.131276486785 0 +71 6565 13.131436486785 0 +71 6565 13.131436486785 0 +71 6596 13.157384184416 0 +71 6596 13.157384184416 0 +71 6603 13.157544184416 0 +71 6603 13.157544184416 0 +71 6670 13.243993896412 0 +71 6670 13.243993896412 0 +71 6689 13.244153896412 0 +71 6689 13.244153896412 0 +71 6719 13.41455694659 0 +71 6719 13.41455694659 0 +71 6726 13.41471694659 0 +71 6726 13.41471694659 0 +71 6750 13.424398582336 0 +71 6750 13.424398582336 2 +71 6751 13.424398582336 2 +71 6751 13.424398582336 0 +71 6754 13.424398582336 0 +71 6754 13.424398582336 0 +71 6762 13.424558582336 0 +71 6762 13.424558582336 0 +71 6795 13.431276486795 0 +71 6795 13.431276486795 0 +71 6806 13.431436486795 0 +71 6806 13.431436486795 0 +71 6837 13.457384184698 0 +71 6837 13.457384184698 0 +71 6844 13.457544184698 0 +71 6844 13.457544184698 0 +71 6911 13.543993897233 0 +71 6911 13.543993897233 0 +71 6930 13.544153897233 0 +71 6930 13.544153897233 0 +71 6960 13.714556962198 0 +71 6960 13.714556962198 0 +71 6967 13.714716962198 0 +71 6967 13.714716962198 0 +71 6991 13.724398582336 0 +71 6991 13.724398582336 2 +71 6992 13.724398582336 2 +71 6992 13.724398582336 0 +71 6995 13.724398582336 0 +71 6995 13.724398582336 0 +71 7003 13.724558582336 0 +71 7003 13.724558582336 0 +71 7036 13.7312764868 0 +71 7036 13.7312764868 0 +71 7047 13.7314364868 0 +71 7047 13.7314364868 0 +71 7078 13.757384184966 0 +71 7078 13.757384184966 0 +71 7085 13.757544184966 0 +71 7085 13.757544184966 0 +71 7152 13.843993898057 0 +71 7152 13.843993898057 0 +71 7171 13.844153898057 0 +71 7171 13.844153898057 0 +71 7202 14.014556977862 0 +71 7202 14.014556977862 0 +71 7213 14.014716977862 0 +71 7213 14.014716977862 0 +71 7232 14.024398582336 0 +71 7232 14.024398582336 2 +71 7233 14.024398582336 2 +71 7233 14.024398582336 0 +71 7236 14.024398582336 0 +71 7236 14.024398582336 0 +71 7244 14.024558582336 0 +71 7244 14.024558582336 0 +71 7277 14.031276486793 0 +71 7277 14.031276486793 0 +71 7288 14.031436486793 0 +71 7288 14.031436486793 0 +71 7319 14.057384185242 0 +71 7319 14.057384185242 0 +71 7326 14.057544185242 0 +71 7326 14.057544185242 0 +71 7393 14.14399389887 0 +71 7393 14.14399389887 0 +71 7412 14.14415389887 0 +71 7412 14.14415389887 0 +71 7443 14.314556993496 0 +71 7443 14.314556993496 0 +71 7454 14.314716993496 0 +71 7454 14.314716993496 0 +71 7473 14.324398582336 0 +71 7473 14.324398582336 2 +71 7474 14.324398582336 2 +71 7474 14.324398582336 0 +71 7477 14.324398582336 0 +71 7477 14.324398582336 0 +71 7485 14.324558582336 0 +71 7485 14.324558582336 0 +71 7518 14.331276486806 0 +71 7518 14.331276486806 0 +71 7529 14.331436486806 0 +71 7529 14.331436486806 0 +71 7560 14.357384185527 0 +71 7560 14.357384185527 0 +71 7567 14.357544185527 0 +71 7567 14.357544185527 0 +71 7634 14.443993899694 0 +71 7634 14.443993899694 0 +71 7653 14.444153899694 0 +71 7653 14.444153899694 0 +71 7684 14.614557009101 0 +71 7684 14.614557009101 0 +71 7695 14.614717009101 0 +71 7695 14.614717009101 0 +71 7714 14.624398582336 0 +71 7714 14.624398582336 2 +71 7715 14.624398582336 2 +71 7715 14.624398582336 0 +71 7718 14.624398582336 0 +71 7718 14.624398582336 0 +71 7726 14.624558582336 0 +71 7726 14.624558582336 0 +71 7759 14.631276486796 0 +71 7759 14.631276486796 0 +71 7770 14.631436486796 0 +71 7770 14.631436486796 0 +71 7801 14.657384185824 0 +71 7801 14.657384185824 0 +71 7808 14.657544185824 0 +71 7808 14.657544185824 0 +71 7875 14.743993900511 0 +71 7875 14.743993900511 0 +71 7894 14.744153900511 0 +71 7894 14.744153900511 0 +71 7925 14.914557024712 0 +71 7925 14.914557024712 0 +71 7936 14.914717024712 0 +71 7936 14.914717024712 0 +71 7955 14.924398582336 0 +71 7955 14.924398582336 2 +71 7956 14.924398582336 2 +71 7956 14.924398582336 0 +71 7959 14.924398582336 0 +71 7959 14.924398582336 0 +71 7967 14.924558582336 0 +71 7967 14.924558582336 0 +71 8000 14.931276486792 0 +71 8000 14.931276486792 0 +71 8011 14.931436486792 0 +71 8011 14.931436486792 0 +71 8042 14.957384186118 0 +71 8042 14.957384186118 0 +71 8049 14.957544186118 0 +71 8049 14.957544186118 0 +71 8116 15.043993901332 0 +71 8116 15.043993901332 0 +71 8135 15.044153901332 0 +71 8135 15.044153901332 0 +71 8166 15.214557040331 0 +71 8166 15.214557040331 0 +71 8177 15.214717040331 0 +71 8177 15.214717040331 0 +71 8196 15.224398582336 0 +71 8196 15.224398582336 2 +71 8197 15.224398582336 2 +71 8197 15.224398582336 0 +71 8200 15.224398582336 0 +71 8200 15.224398582336 0 +71 8208 15.224558582336 0 +71 8208 15.224558582336 0 +71 8241 15.231276486777 0 +71 8241 15.231276486777 0 +71 8252 15.231436486777 0 +71 8252 15.231436486777 0 +71 8283 15.257384186413 0 +71 8283 15.257384186413 0 +71 8290 15.257544186413 0 +71 8290 15.257544186413 0 +71 8357 15.343993902158 0 +71 8357 15.343993902158 0 +71 8376 15.344153902158 0 +71 8376 15.344153902158 0 +71 8407 15.514557055996 0 +71 8407 15.514557055996 0 +71 8418 15.514717055996 0 +71 8418 15.514717055996 0 +71 8437 15.524398582336 0 +71 8437 15.524398582336 2 +71 8438 15.524398582336 2 +71 8438 15.524398582336 0 +71 8441 15.524398582336 0 +71 8441 15.524398582336 0 +71 8449 15.524558582336 0 +71 8449 15.524558582336 0 +71 8482 15.531276486786 0 +71 8482 15.531276486786 0 +71 8493 15.531436486786 0 +71 8493 15.531436486786 0 +71 8524 15.557384186718 0 +71 8524 15.557384186718 0 +71 8531 15.557544186718 0 +71 8531 15.557544186718 0 +71 8598 15.643993902982 0 +71 8598 15.643993902982 0 +71 8617 15.644153902982 0 +71 8617 15.644153902982 0 +71 8648 15.81455707161 0 +71 8648 15.81455707161 0 +71 8659 15.81471707161 0 +71 8659 15.81471707161 0 +71 8678 15.824398582336 0 +71 8678 15.824398582336 2 +71 8679 15.824398582336 2 +71 8679 15.824398582336 0 +71 8682 15.824398582336 0 +71 8682 15.824398582336 0 +71 8690 15.824558582336 0 +71 8690 15.824558582336 0 +71 8723 15.831276486807 0 +71 8723 15.831276486807 0 +71 8734 15.831436486807 0 +71 8734 15.831436486807 0 +71 8765 15.857384187027 0 +71 8765 15.857384187027 0 +71 8772 15.857544187027 0 +71 8772 15.857544187027 0 +71 8839 15.943993903822 0 +71 8839 15.943993903822 0 +71 8858 15.944153903822 0 +71 8858 15.944153903822 0 +71 8889 16.11455708724 0 +71 8889 16.11455708724 0 +71 8900 16.11471708724 0 +71 8900 16.11471708724 0 +71 8923 16.124398582336 0 +71 8923 16.124398582336 2 +71 8924 16.124398582336 2 +71 8924 16.124398582336 0 +71 8927 16.124398582336 0 +71 8927 16.124398582336 0 +71 8935 16.124558582336 0 +71 8935 16.124558582336 0 +71 8968 16.131276486791 0 +71 8968 16.131276486791 0 +71 8979 16.131436486791 0 +71 8979 16.131436486791 0 +71 9010 16.157384187335 0 +71 9010 16.157384187335 0 +71 9017 16.157544187335 0 +71 9017 16.157544187335 0 +71 9088 16.243993904634 0 +71 9088 16.243993904634 0 +71 9107 16.244153904634 0 +71 9107 16.244153904634 0 +71 9138 16.414557102881 0 +71 9138 16.414557102881 0 +71 9149 16.414717102881 0 +71 9149 16.414717102881 0 +71 9172 16.424398582336 0 +71 9172 16.424398582336 2 +71 9173 16.424398582336 2 +71 9173 16.424398582336 0 +71 9176 16.424398582336 0 +71 9176 16.424398582336 0 +71 9184 16.424558582336 0 +71 9184 16.424558582336 0 +71 9217 16.431276486767 0 +71 9217 16.431276486767 0 +71 9228 16.431436486767 0 +71 9228 16.431436486767 0 +71 9259 16.45738418766 0 +71 9259 16.45738418766 0 +71 9266 16.45754418766 0 +71 9266 16.45754418766 0 +71 9337 16.543993905451 0 +71 9337 16.543993905451 0 +71 9356 16.544153905451 0 +71 9356 16.544153905451 0 +71 9387 16.714557118536 0 +71 9387 16.714557118536 0 +71 9398 16.714717118536 0 +71 9398 16.714717118536 0 +71 9421 16.724398582336 0 +71 9421 16.724398582336 2 +71 9422 16.724398582336 2 +71 9422 16.724398582336 0 +71 9425 16.724398582336 0 +71 9425 16.724398582336 0 +71 9433 16.724558582336 0 +71 9433 16.724558582336 0 +71 9466 16.731276486767 0 +71 9466 16.731276486767 0 +71 9477 16.731436486767 0 +71 9477 16.731436486767 0 +71 9508 16.757384187976 0 +71 9508 16.757384187976 0 +71 9515 16.757544187976 0 +71 9515 16.757544187976 0 +71 9586 16.843993906273 0 +71 9586 16.843993906273 0 +71 9605 16.844153906273 0 +71 9605 16.844153906273 0 +71 9636 17.014557134175 0 +71 9636 17.014557134175 0 +71 9647 17.014717134175 0 +71 9647 17.014717134175 0 +71 9670 17.024398582336 0 +71 9670 17.024398582336 2 +71 9671 17.024398582336 2 +71 9671 17.024398582336 0 +71 9674 17.024398582336 0 +71 9674 17.024398582336 0 +71 9682 17.024558582336 0 +71 9682 17.024558582336 0 +71 9715 17.031276486771 0 +71 9715 17.031276486771 0 +71 9726 17.031436486771 0 +71 9726 17.031436486771 0 +71 9757 17.057384188287 0 +71 9757 17.057384188287 0 +71 9764 17.057544188287 0 +71 9764 17.057544188287 0 +71 9835 17.143993907123 0 +71 9835 17.143993907123 0 +71 9854 17.144153907123 0 +71 9854 17.144153907123 0 +71 9885 17.314557149858 0 +71 9885 17.314557149858 0 +71 9896 17.314717149858 0 +71 9896 17.314717149858 0 +71 9919 17.324398582336 0 +71 9919 17.324398582336 2 +71 9920 17.324398582336 2 +71 9920 17.324398582336 0 +71 9923 17.324398582336 0 +71 9923 17.324398582336 0 +71 9931 17.324558582336 0 +71 9931 17.324558582336 0 +71 9964 17.331276486778 0 +71 9964 17.331276486778 0 +71 9975 17.331436486778 0 +71 9975 17.331436486778 0 +71 10006 17.357384188603 0 +71 10006 17.357384188603 0 +71 10013 17.357544188603 0 +71 10013 17.357544188603 0 +71 10084 17.443993907967 0 +71 10084 17.443993907967 0 +71 10103 17.444153907967 0 +71 10103 17.444153907967 0 +71 10134 17.614557165512 0 +71 10134 17.614557165512 0 +71 10145 17.614717165512 0 +71 10145 17.614717165512 0 +71 10168 17.624398582336 0 +71 10168 17.624398582336 2 +71 10169 17.624398582336 2 +71 10169 17.624398582336 0 +71 10172 17.624398582336 0 +71 10172 17.624398582336 0 +71 10180 17.624558582336 0 +71 10180 17.624558582336 0 +71 10213 17.631276486782 0 +71 10213 17.631276486782 0 +71 10224 17.631436486782 0 +71 10224 17.631436486782 0 +71 10255 17.657384188908 0 +71 10255 17.657384188908 0 +71 10262 17.657544188908 0 +71 10262 17.657544188908 0 +71 10333 17.74399390881 0 +71 10333 17.74399390881 0 +71 10352 17.74415390881 0 +71 10352 17.74415390881 0 +71 10383 17.914557181155 0 +71 10383 17.914557181155 0 +71 10394 17.914717181155 0 +71 10394 17.914717181155 0 +71 10413 17.924398582336 0 +71 10413 17.924398582336 2 +71 10414 17.924398582336 2 +71 10414 17.924398582336 0 +71 10417 17.924398582336 0 +71 10417 17.924398582336 0 +71 10425 17.924558582336 0 +71 10425 17.924558582336 0 +71 10458 17.931276486796 0 +71 10458 17.931276486796 0 +71 10469 17.931436486796 0 +71 10469 17.931436486796 0 +71 10500 17.957384189225 0 +71 10500 17.957384189225 0 +71 10507 17.957544189225 0 +71 10507 17.957544189225 0 +71 10574 18.04399390965 0 +71 10574 18.04399390965 0 +71 10593 18.04415390965 0 +71 10593 18.04415390965 0 +71 10625 18.214557196811 0 +71 10625 18.214557196811 0 +71 10640 18.214717196811 0 +71 10640 18.214717196811 0 +71 10654 18.224398582336 0 +71 10654 18.224398582336 2 +71 10655 18.224398582336 2 +71 10655 18.224398582336 0 +71 10658 18.224398582336 0 +71 10658 18.224398582336 0 +71 10666 18.224558582336 0 +71 10666 18.224558582336 0 +71 10695 18.231276486817 0 +71 10695 18.231276486817 0 +71 10706 18.231436486817 0 +71 10706 18.231436486817 0 +71 10737 18.257384189554 0 +71 10737 18.257384189554 0 +71 10744 18.257544189554 0 +71 10744 18.257544189554 0 +71 10811 18.343993910503 0 +71 10811 18.343993910503 0 +71 10830 18.344153910503 0 +71 10830 18.344153910503 0 +71 10858 18.514557211927 0 +71 10858 18.514557211927 0 +71 10873 18.514717211927 0 +71 10873 18.514717211927 0 +71 10887 18.524398582336 0 +71 10887 18.524398582336 2 +71 10888 18.524398582336 2 +71 10888 18.524398582336 0 +71 10891 18.524398582336 0 +71 10891 18.524398582336 0 +71 10899 18.524558582336 0 +71 10899 18.524558582336 0 +71 10928 18.531276486818 0 +71 10928 18.531276486818 0 +71 10939 18.531436486818 0 +71 10939 18.531436486818 0 +71 10970 18.557384189884 0 +71 10970 18.557384189884 0 +71 10977 18.557544189884 0 +71 10977 18.557544189884 0 +71 11091 18.814557220024 0 +71 11091 18.814557220024 0 +71 11106 18.814717220024 0 +71 11106 18.814717220024 0 +71 11120 18.824398582336 0 +71 11120 18.824398582336 2 +71 11121 18.824398582336 2 +71 11121 18.824398582336 0 +71 11124 18.824398582336 0 +71 11124 18.824398582336 0 +71 11132 18.824558582336 0 +71 11132 18.824558582336 0 +71 11161 18.831276486814 0 +71 11161 18.831276486814 0 +71 11172 18.831436486814 0 +71 11172 18.831436486814 0 +71 11203 18.857384190227 0 +71 11203 18.857384190227 0 +71 11210 18.857544190227 0 +71 11210 18.857544190227 0 +71 11324 19.11455722262 0 +71 11324 19.11455722262 0 +71 11339 19.11471722262 0 +71 11339 19.11471722262 0 +71 11353 19.124398582336 0 +71 11353 19.124398582336 2 +71 11354 19.124398582336 2 +71 11354 19.124398582336 0 +71 11357 19.124398582336 0 +71 11357 19.124398582336 0 +71 11365 19.124558582336 0 +71 11365 19.124558582336 0 +71 11394 19.131276486813 0 +71 11394 19.131276486813 0 +71 11405 19.131436486813 0 +71 11405 19.131436486813 0 +71 11436 19.157384190586 0 +71 11436 19.157384190586 0 +71 11443 19.157544190586 0 +71 11443 19.157544190586 0 +71 11557 19.414557225292 0 +71 11557 19.414557225292 0 +71 11572 19.414717225292 0 +71 11572 19.414717225292 0 +71 11586 19.424398582336 0 +71 11586 19.424398582336 2 +71 11587 19.424398582336 2 +71 11587 19.424398582336 0 +71 11590 19.424398582336 0 +71 11590 19.424398582336 0 +71 11598 19.424558582336 0 +71 11598 19.424558582336 0 +71 11627 19.431276486792 0 +71 11627 19.431276486792 0 +71 11638 19.431436486792 0 +71 11638 19.431436486792 0 +71 11669 19.457384190936 0 +71 11669 19.457384190936 0 +71 11676 19.457544190936 0 +71 11676 19.457544190936 0 +71 11790 19.714557228908 0 +71 11790 19.714557228908 0 +71 11805 19.714717228908 0 +71 11805 19.714717228908 0 +71 11819 19.724398582336 0 +71 11819 19.724398582336 2 +71 11820 19.724398582336 2 +71 11820 19.724398582336 0 +71 11823 19.724398582336 0 +71 11823 19.724398582336 0 +71 11831 19.724558582336 0 +71 11831 19.724558582336 0 +71 11860 19.73127648675 0 +71 11860 19.73127648675 0 +71 11871 19.73143648675 0 +71 11871 19.73143648675 0 +71 11902 19.757384191083 0 +71 11902 19.757384191083 0 +71 11909 19.757544191083 0 +71 11909 19.757544191083 0 +71 12023 20.014557233572 0 +71 12023 20.014557233572 0 +71 12038 20.014717233572 0 +71 12038 20.014717233572 0 +71 12056 20.024398582336 0 +71 12056 20.024398582336 2 +71 12057 20.024398582336 2 +71 12057 20.024398582336 0 +71 12060 20.024398582336 0 +71 12060 20.024398582336 0 +71 12068 20.024558582336 0 +71 12068 20.024558582336 0 +71 12097 20.031276486573 0 +71 12097 20.031276486573 0 +71 12108 20.031436486573 0 +71 12108 20.031436486573 0 +71 12139 20.057384190919 0 +71 12139 20.057384190919 0 +71 12146 20.057544190919 0 +71 12146 20.057544190919 0 +71 12264 20.314557239262 0 +71 12264 20.314557239262 0 +71 12279 20.314717239262 0 +71 12279 20.314717239262 0 +71 12297 20.324398582336 0 +71 12297 20.324398582336 2 +71 12298 20.324398582336 2 +71 12298 20.324398582336 0 +71 12301 20.324398582336 0 +71 12301 20.324398582336 0 +71 12309 20.324558582336 0 +71 12309 20.324558582336 0 +71 12338 20.331276486402 0 +71 12338 20.331276486402 0 +71 12349 20.331436486402 0 +71 12349 20.331436486402 0 +71 12380 20.35738419086 0 +71 12380 20.35738419086 0 +71 12387 20.35754419086 0 +71 12387 20.35754419086 0 +71 12505 20.614557246038 0 +71 12505 20.614557246038 0 +71 12520 20.614717246038 0 +71 12520 20.614717246038 0 +71 12538 20.624398582336 0 +71 12538 20.624398582336 2 +71 12539 20.624398582336 2 +71 12539 20.624398582336 0 +71 12542 20.624398582336 0 +71 12542 20.624398582336 0 +71 12550 20.624558582336 0 +71 12550 20.624558582336 0 +71 12579 20.631276486279 0 +71 12579 20.631276486279 0 +71 12590 20.631436486279 0 +71 12590 20.631436486279 0 +71 12621 20.657384191065 0 +71 12621 20.657384191065 0 +71 12628 20.657544191065 0 +71 12628 20.657544191065 0 +71 12746 20.914557253923 0 +71 12746 20.914557253923 0 +71 12761 20.914717253923 0 +71 12761 20.914717253923 0 +71 12779 20.924398582336 0 +71 12779 20.924398582336 2 +71 12780 20.924398582336 2 +71 12780 20.924398582336 0 +71 12783 20.924398582336 0 +71 12783 20.924398582336 0 +71 12791 20.924558582336 0 +71 12791 20.924558582336 0 +71 12820 20.9312764863 0 +71 12820 20.9312764863 0 +71 12831 20.9314364863 0 +71 12831 20.9314364863 0 +71 12862 20.957384191416 0 +71 12862 20.957384191416 0 +71 12869 20.957544191416 0 +71 12869 20.957544191416 0 +71 12987 21.214557262739 0 +71 12987 21.214557262739 0 +71 13002 21.214717262739 0 +71 13002 21.214717262739 0 +71 13020 21.224398582336 0 +71 13020 21.224398582336 2 +71 13021 21.224398582336 2 +71 13021 21.224398582336 0 +71 13024 21.224398582336 0 +71 13024 21.224398582336 0 +71 13032 21.224558582336 0 +71 13032 21.224558582336 0 +71 13061 21.231276486377 0 +71 13061 21.231276486377 0 +71 13072 21.231436486377 0 +71 13072 21.231436486377 0 +71 13103 21.257384192086 0 +71 13103 21.257384192086 0 +71 13110 21.257544192086 0 +71 13110 21.257544192086 0 +71 13228 21.514557272413 0 +71 13228 21.514557272413 0 +71 13243 21.514717272413 0 +71 13243 21.514717272413 0 +71 13261 21.524398582336 0 +71 13261 21.524398582336 2 +71 13262 21.524398582336 2 +71 13262 21.524398582336 0 +71 13265 21.524398582336 0 +71 13265 21.524398582336 0 +71 13273 21.524558582336 0 +71 13273 21.524558582336 0 +71 13302 21.531276486403 0 +71 13302 21.531276486403 0 +71 13313 21.531436486403 0 +71 13313 21.531436486403 0 +71 13344 21.557384193076 0 +71 13344 21.557384193076 0 +71 13351 21.557544193076 0 +71 13351 21.557544193076 0 +71 13469 21.814557282935 0 +71 13469 21.814557282935 0 +71 13484 21.814717282935 0 +71 13484 21.814717282935 0 +71 13502 21.824398582336 0 +71 13502 21.824398582336 2 +71 13503 21.824398582336 2 +71 13503 21.824398582336 0 +71 13506 21.824398582336 0 +71 13506 21.824398582336 0 +71 13514 21.824558582336 0 +71 13514 21.824558582336 0 +71 13543 21.831276486387 0 +71 13543 21.831276486387 0 +71 13554 21.831436486387 0 +71 13554 21.831436486387 0 +71 13585 21.85738419435 0 +71 13585 21.85738419435 0 +71 13592 21.85754419435 0 +71 13592 21.85754419435 0 +71 13710 22.114557294257 0 +71 13710 22.114557294257 0 +71 13725 22.114717294257 0 +71 13725 22.114717294257 0 +71 13743 22.124398582336 0 +71 13743 22.124398582336 2 +71 13744 22.124398582336 2 +71 13744 22.124398582336 0 +71 13747 22.124398582336 0 +71 13747 22.124398582336 0 +71 13755 22.124558582336 0 +71 13755 22.124558582336 0 +71 13784 22.13127648632 0 +71 13784 22.13127648632 0 +71 13795 22.13143648632 0 +71 13795 22.13143648632 0 +71 13826 22.15738419591 0 +71 13826 22.15738419591 0 +71 13833 22.15754419591 0 +71 13833 22.15754419591 0 +71 13951 22.414557306336 0 +71 13951 22.414557306336 0 +71 13966 22.414717306336 0 +71 13966 22.414717306336 0 +71 13984 22.424398582336 0 +71 13984 22.424398582336 2 +71 13985 22.424398582336 2 +71 13985 22.424398582336 0 +71 13988 22.424398582336 0 +71 13988 22.424398582336 0 +71 13996 22.424558582336 0 +71 13996 22.424558582336 0 +71 14025 22.431276486231 0 +71 14025 22.431276486231 0 +71 14036 22.431436486231 0 +71 14036 22.431436486231 0 +71 14067 22.457384197834 0 +71 14067 22.457384197834 0 +71 14074 22.457544197834 0 +71 14074 22.457544197834 0 +71 14192 22.714557319146 0 +71 14192 22.714557319146 0 +71 14207 22.714717319146 0 +71 14207 22.714717319146 0 +71 14225 22.724398582336 0 +71 14225 22.724398582336 2 +71 14226 22.724398582336 2 +71 14226 22.724398582336 0 +71 14229 22.724398582336 0 +71 14229 22.724398582336 0 +71 14237 22.724558582336 0 +71 14237 22.724558582336 0 +71 14266 22.731276486104 0 +71 14266 22.731276486104 0 +71 14277 22.731436486104 0 +71 14277 22.731436486104 0 +71 14308 22.75738420026 0 +71 14308 22.75738420026 0 +71 14315 22.75754420026 0 +71 14315 22.75754420026 0 +71 14433 23.014557332675 0 +71 14433 23.014557332675 0 +71 14448 23.014717332675 0 +71 14448 23.014717332675 0 +71 14466 23.024398582336 0 +71 14466 23.024398582336 2 +71 14467 23.024398582336 2 +71 14467 23.024398582336 0 +71 14470 23.024398582336 0 +71 14470 23.024398582336 0 +71 14478 23.024558582336 0 +71 14478 23.024558582336 0 +71 14507 23.031276485972 0 +71 14507 23.031276485972 0 +71 14518 23.031436485972 0 +71 14518 23.031436485972 0 +71 14549 23.057384203204 0 +71 14549 23.057384203204 0 +71 14556 23.057544203204 0 +71 14556 23.057544203204 0 +71 14674 23.314557346848 0 +71 14674 23.314557346848 0 +71 14689 23.314717346848 0 +71 14689 23.314717346848 0 +71 14707 23.324398582336 0 +71 14707 23.324398582336 2 +71 14708 23.324398582336 2 +71 14708 23.324398582336 0 +71 14711 23.324398582336 0 +71 14711 23.324398582336 0 +71 14719 23.324558582336 0 +71 14719 23.324558582336 0 +71 14748 23.331276485713 0 +71 14748 23.331276485713 0 +71 14759 23.331436485713 0 +71 14759 23.331436485713 0 +71 14790 23.357384206722 0 +71 14790 23.357384206722 0 +71 14797 23.357544206722 0 +71 14797 23.357544206722 0 +71 14915 23.614557361743 0 +71 14915 23.614557361743 0 +71 14930 23.614717361743 0 +71 14930 23.614717361743 0 +71 14948 23.624398582336 0 +71 14948 23.624398582336 2 +71 14949 23.624398582336 2 +71 14949 23.624398582336 0 +71 14952 23.624398582336 0 +71 14952 23.624398582336 0 +71 14960 23.624558582336 0 +71 14960 23.624558582336 0 +71 14989 23.6312764855 0 +71 14989 23.6312764855 0 +71 15000 23.6314364855 0 +71 15000 23.6314364855 0 +71 15031 23.657384210857 0 +71 15031 23.657384210857 0 +71 15038 23.657544210857 0 +71 15038 23.657544210857 0 +71 15157 23.914557377256 0 +71 15157 23.914557377256 0 +71 15176 23.914717377256 0 +71 15176 23.914717377256 0 +71 15189 23.924398582336 0 +71 15189 23.924398582336 2 +71 15190 23.924398582336 2 +71 15190 23.924398582336 0 +71 15193 23.924398582336 0 +71 15193 23.924398582336 0 +71 15201 23.924558582336 0 +71 15201 23.924558582336 0 +71 15229 23.93127648528 0 +71 15229 23.93127648528 0 +71 15236 23.93143648528 0 +71 15236 23.93143648528 0 +71 15272 23.95738421565 0 +71 15272 23.95738421565 0 +71 15279 23.95754421565 0 +71 15279 23.95754421565 0 +71 15398 24.214557393408 0 +71 15398 24.214557393408 0 +71 15417 24.214717393408 0 +71 15417 24.214717393408 0 +71 15430 24.224398582336 0 +71 15430 24.224398582336 2 +71 15431 24.224398582336 2 +71 15431 24.224398582336 0 +71 15434 24.224398582336 0 +71 15434 24.224398582336 0 +71 15442 24.224558582336 0 +71 15442 24.224558582336 0 +71 15470 24.231276485173 0 +71 15470 24.231276485173 0 +71 15477 24.231436485173 0 +71 15477 24.231436485173 0 +71 15513 24.257384221045 0 +71 15513 24.257384221045 0 +71 15520 24.257544221045 0 +71 15520 24.257544221045 0 +71 15639 24.514557410256 0 +71 15639 24.514557410256 0 +71 15658 24.514717410256 0 +71 15658 24.514717410256 0 +71 15671 24.524398582336 0 +71 15671 24.524398582336 2 +71 15672 24.524398582336 2 +71 15672 24.524398582336 0 +71 15675 24.524398582336 0 +71 15675 24.524398582336 0 +71 15683 24.524558582336 0 +71 15683 24.524558582336 0 +71 15711 24.531276485097 0 +71 15711 24.531276485097 0 +71 15718 24.531436485097 0 +71 15718 24.531436485097 0 +71 15754 24.55738422706 0 +71 15754 24.55738422706 0 +71 15761 24.55754422706 0 +71 15761 24.55754422706 0 +71 15880 24.814557427619 0 +71 15880 24.814557427619 0 +71 15899 24.814717427619 0 +71 15899 24.814717427619 0 +71 15912 24.824398582336 0 +71 15912 24.824398582336 2 +71 15913 24.824398582336 2 +71 15913 24.824398582336 0 +71 15916 24.824398582336 0 +71 15916 24.824398582336 0 +71 15924 24.824558582336 0 +71 15924 24.824558582336 0 +71 15952 24.831276484864 0 +71 15952 24.831276484864 0 +71 15959 24.831436484864 0 +71 15959 24.831436484864 0 +71 15995 24.857384233855 0 +71 15995 24.857384233855 0 +71 16002 24.857544233855 0 +71 16002 24.857544233855 0 +71 16121 25.114557445125 0 +71 16121 25.114557445125 0 +71 16140 25.114717445125 0 +71 16140 25.114717445125 0 +71 16153 25.124398582336 0 +71 16153 25.124398582336 2 +71 16154 25.124398582336 2 +71 16154 25.124398582336 0 +71 16157 25.124398582336 0 +71 16157 25.124398582336 0 +71 16165 25.124558582336 0 +71 16165 25.124558582336 0 +71 16193 25.131276484116 0 +71 16193 25.131276484116 0 +71 16200 25.131436484116 0 +71 16200 25.131436484116 0 +71 16236 25.15738424158 0 +71 16236 25.15738424158 0 +71 16243 25.15754424158 0 +71 16243 25.15754424158 0 +71 16362 25.414557462649 0 +71 16362 25.414557462649 0 +71 16381 25.414717462649 0 +71 16381 25.414717462649 0 +71 16394 25.424398582336 0 +71 16394 25.424398582336 2 +71 16395 25.424398582336 2 +71 16395 25.424398582336 0 +71 16398 25.424398582336 0 +71 16398 25.424398582336 0 +71 16406 25.424558582336 0 +71 16406 25.424558582336 0 +71 16434 25.431276482795 0 +71 16434 25.431276482795 0 +71 16441 25.431436482795 0 +71 16441 25.431436482795 0 +71 16477 25.457384250111 0 +71 16477 25.457384250111 0 +71 16484 25.457544250111 0 +71 16484 25.457544250111 0 +71 16603 25.714557480245 0 +71 16603 25.714557480245 0 +71 16622 25.714717480245 0 +71 16622 25.714717480245 0 +71 16635 25.724398582336 0 +71 16635 25.724398582336 2 +71 16636 25.724398582336 2 +71 16636 25.724398582336 0 +71 16639 25.724398582336 0 +71 16639 25.724398582336 0 +71 16647 25.724558582336 0 +71 16647 25.724558582336 0 +71 16675 25.731276480874 0 +71 16675 25.731276480874 0 +71 16682 25.731436480874 0 +71 16682 25.731436480874 0 +71 16718 25.757384259482 0 +71 16718 25.757384259482 0 +71 16725 25.757544259482 0 +71 16725 25.757544259482 0 +71 16844 26.014557497945 0 +71 16844 26.014557497945 0 +71 16863 26.014717497945 0 +71 16863 26.014717497945 0 +71 16876 26.024398582336 0 +71 16876 26.024398582336 2 +71 16877 26.024398582336 2 +71 16877 26.024398582336 0 +71 16880 26.024398582336 0 +71 16880 26.024398582336 0 +71 16888 26.024558582336 0 +71 16888 26.024558582336 0 +71 16916 26.031276479731 0 +71 16916 26.031276479731 0 +71 16923 26.031436479731 0 +71 16923 26.031436479731 0 +71 16959 26.057384269815 0 +71 16959 26.057384269815 0 +71 16966 26.057544269815 0 +71 16966 26.057544269815 0 +71 17086 26.314557515616 0 +71 17086 26.314557515616 0 +71 17109 26.314717515616 0 +71 17109 26.314717515616 0 +71 17117 26.324398582336 0 +71 17117 26.324398582336 2 +71 17118 26.324398582336 2 +71 17118 26.324398582336 0 +71 17121 26.324398582336 0 +71 17121 26.324398582336 0 +71 17129 26.324558582336 0 +71 17129 26.324558582336 0 +71 17157 26.331276479849 0 +71 17157 26.331276479849 0 +71 17164 26.331436479849 0 +71 17164 26.331436479849 0 +71 17200 26.357384280927 0 +71 17200 26.357384280927 0 +71 17207 26.357544280927 0 +71 17207 26.357544280927 0 +71 17327 26.614557533368 0 +71 17327 26.614557533368 0 +71 17350 26.614717533368 0 +71 17350 26.614717533368 0 +71 17358 26.624398582336 0 +71 17358 26.624398582336 2 +71 17359 26.624398582336 2 +71 17359 26.624398582336 0 +71 17362 26.624398582336 0 +71 17362 26.624398582336 0 +71 17370 26.624558582336 0 +71 17370 26.624558582336 0 +71 17398 26.631276481362 0 +71 17398 26.631276481362 0 +71 17405 26.631436481362 0 +71 17405 26.631436481362 0 +71 17441 26.657384292372 0 +71 17441 26.657384292372 0 +71 17448 26.657544292372 0 +71 17448 26.657544292372 0 +71 17568 26.914557551168 0 +71 17568 26.914557551168 0 +71 17591 26.914717551168 0 +71 17591 26.914717551168 0 +71 17599 26.924398582336 0 +71 17599 26.924398582336 2 +71 17600 26.924398582336 2 +71 17600 26.924398582336 0 +71 17603 26.924398582336 0 +71 17603 26.924398582336 0 +71 17611 26.924558582336 0 +71 17611 26.924558582336 0 +71 17639 26.931276484209 0 +71 17639 26.931276484209 0 +71 17646 26.931436484209 0 +71 17646 26.931436484209 0 +71 17682 26.957384303661 0 +71 17682 26.957384303661 0 +71 17689 26.957544303661 0 +71 17689 26.957544303661 0 +71 17809 27.214557568504 0 +71 17809 27.214557568504 0 +71 17832 27.214717568504 0 +71 17832 27.214717568504 0 +71 17836 27.224398582336 0 +71 17836 27.224398582336 2 +71 17837 27.224398582336 2 +71 17837 27.224398582336 0 +71 17840 27.224398582336 0 +71 17840 27.224398582336 0 +71 17848 27.224558582336 0 +71 17848 27.224558582336 0 +71 17872 27.231276487819 0 +71 17872 27.231276487819 0 +71 17879 27.231436487819 0 +71 17879 27.231436487819 0 +71 17915 27.257384313921 0 +71 17915 27.257384313921 0 +71 17922 27.257544313921 0 +71 17922 27.257544313921 0 +71 18069 27.524398582336 0 +71 18069 27.524398582336 2 +71 18070 27.524398582336 2 +71 18070 27.524398582336 0 +71 18073 27.524398582336 0 +71 18073 27.524398582336 0 +71 18081 27.524558582336 0 +71 18081 27.524558582336 0 +71 18105 27.531276490771 0 +71 18105 27.531276490771 0 +71 18112 27.531436490771 0 +71 18112 27.531436490771 0 +71 18148 27.557384323167 0 +71 18148 27.557384323167 0 +71 18155 27.557544323167 0 +71 18155 27.557544323167 0 +71 18302 27.824398582336 0 +71 18302 27.824398582336 2 +71 18303 27.824398582336 2 +71 18303 27.824398582336 0 +71 18306 27.824398582336 0 +71 18306 27.824398582336 0 +71 18314 27.824558582336 0 +71 18314 27.824558582336 0 +71 18338 27.831276492635 0 +71 18338 27.831276492635 0 +71 18345 27.831436492635 0 +71 18345 27.831436492635 0 +71 18381 27.857384331293 0 +71 18381 27.857384331293 0 +71 18388 27.857544331293 0 +71 18388 27.857544331293 0 +71 18535 28.124398582336 0 +71 18535 28.124398582336 2 +71 18536 28.124398582336 2 +71 18536 28.124398582336 0 +71 18539 28.124398582336 0 +71 18539 28.124398582336 0 +71 18547 28.124558582336 0 +71 18547 28.124558582336 0 +71 18571 28.131276501988 0 +71 18571 28.131276501988 0 +71 18578 28.131436501988 0 +71 18578 28.131436501988 0 +71 18614 28.15738433818 0 +71 18614 28.15738433818 0 +71 18621 28.15754433818 0 +71 18621 28.15754433818 0 +71 18768 28.424398582336 0 +71 18768 28.424398582336 2 +71 18769 28.424398582336 2 +71 18769 28.424398582336 0 +71 18772 28.424398582336 0 +71 18772 28.424398582336 0 +71 18780 28.424558582336 0 +71 18780 28.424558582336 0 +71 18804 28.431276516789 0 +71 18804 28.431276516789 0 +71 18811 28.431436516789 0 +71 18811 28.431436516789 0 +71 18847 28.45738434442 0 +71 18847 28.45738434442 0 +71 18854 28.45754434442 0 +71 18854 28.45754434442 0 +71 19001 28.724398582336 0 +71 19001 28.724398582336 2 +71 19002 28.724398582336 2 +71 19002 28.724398582336 0 +71 19005 28.724398582336 0 +71 19005 28.724398582336 0 +71 19013 28.724558582336 0 +71 19013 28.724558582336 0 +71 19037 28.731276531174 0 +71 19037 28.731276531174 0 +71 19044 28.731436531174 0 +71 19044 28.731436531174 0 +71 19080 28.757384346246 0 +71 19080 28.757384346246 0 +71 19087 28.757544346246 0 +71 19087 28.757544346246 0 +71 19234 29.024398582336 0 +71 19234 29.024398582336 2 +71 19235 29.024398582336 2 +71 19235 29.024398582336 0 +71 19238 29.024398582336 0 +71 19238 29.024398582336 0 +71 19246 29.024558582336 0 +71 19246 29.024558582336 0 +71 19270 29.031276536731 0 +71 19270 29.031276536731 0 +71 19277 29.031436536731 0 +71 19277 29.031436536731 0 +71 19309 29.057384347069 0 +71 19309 29.057384347069 0 +71 19316 29.057544347069 0 +71 19316 29.057544347069 0 +71 19459 29.324398582336 0 +71 19459 29.324398582336 2 +71 19460 29.324398582336 2 +71 19460 29.324398582336 0 +71 19463 29.324398582336 0 +71 19463 29.324398582336 0 +71 19471 29.324558582336 0 +71 19471 29.324558582336 0 +71 19495 29.331276539274 0 +71 19495 29.331276539274 0 +71 19502 29.331436539274 0 +71 19502 29.331436539274 0 +71 19535 29.357384351202 0 +71 19535 29.357384351202 0 +71 19546 29.357544351202 0 +71 19546 29.357544351202 0 +71 19684 29.624398582336 0 +71 19684 29.624398582336 2 +71 19685 29.624398582336 2 +71 19685 29.624398582336 0 +71 19688 29.624398582336 0 +71 19688 29.624398582336 0 +71 19696 29.624558582336 0 +71 19696 29.624558582336 0 +71 19720 29.631276541563 0 +71 19720 29.631276541563 0 +71 19727 29.631436541563 0 +71 19727 29.631436541563 0 +71 19760 29.657384352581 0 +71 19760 29.657384352581 0 +71 19771 29.657544352581 0 +71 19771 29.657544352581 0 +71 19909 29.924398582336 0 +71 19909 29.924398582336 2 +71 19910 29.924398582336 2 +71 19910 29.924398582336 0 +71 19913 29.924398582336 0 +71 19913 29.924398582336 0 +71 19921 29.924558582336 0 +71 19921 29.924558582336 0 +71 19945 29.931276543815 0 +71 19945 29.931276543815 0 +71 19952 29.931436543815 0 +71 19952 29.931436543815 0 +71 19985 29.957384353115 0 +71 19985 29.957384353115 0 +71 19996 29.957544353115 0 +71 19996 29.957544353115 0 +71 20134 30.224398582336 0 +71 20134 30.224398582336 2 +71 20135 30.224398582336 2 +71 20135 30.224398582336 0 +71 20138 30.224398582336 0 +71 20138 30.224398582336 0 +71 20146 30.224558582336 0 +71 20146 30.224558582336 0 +71 20170 30.231276546125 0 +71 20170 30.231276546125 0 +71 20177 30.231436546125 0 +71 20177 30.231436546125 0 +71 20210 30.257384353112 0 +71 20210 30.257384353112 0 +71 20221 30.257544353112 0 +71 20221 30.257544353112 0 +71 20359 30.524398582336 0 +71 20359 30.524398582336 2 +71 20360 30.524398582336 2 +71 20360 30.524398582336 0 +71 20363 30.524398582336 0 +71 20363 30.524398582336 0 +71 20371 30.524558582336 0 +71 20371 30.524558582336 0 +71 20395 30.531276548461 0 +71 20395 30.531276548461 0 +71 20402 30.531436548461 0 +71 20402 30.531436548461 0 +71 20435 30.55738435311 0 +71 20435 30.55738435311 0 +71 20446 30.55754435311 0 +71 20446 30.55754435311 0 +71 20584 30.824398582336 0 +71 20584 30.824398582336 2 +71 20585 30.824398582336 2 +71 20585 30.824398582336 0 +71 20588 30.824398582336 0 +71 20588 30.824398582336 0 +71 20596 30.824558582336 0 +71 20596 30.824558582336 0 +71 20621 30.831276550899 0 +71 20621 30.831276550899 0 +71 20632 30.831436550899 0 +71 20632 30.831436550899 0 +71 20660 30.857384353107 0 +71 20660 30.857384353107 0 +71 20671 30.857544353107 0 +71 20671 30.857544353107 0 +71 20809 31.124398582336 0 +71 20809 31.124398582336 2 +71 20810 31.124398582336 2 +71 20810 31.124398582336 0 +71 20813 31.124398582336 0 +71 20813 31.124398582336 0 +71 20821 31.124558582336 0 +71 20821 31.124558582336 0 +71 20850 31.131276553412 0 +71 20850 31.131276553412 0 +71 20861 31.131436553412 0 +71 20861 31.131436553412 0 +71 20889 31.157384353102 0 +71 20889 31.157384353102 0 +71 20900 31.157544353102 0 +71 20900 31.157544353102 0 +71 20921 31.193586243446 0 +71 20921 31.193586243446 0 +71 20940 31.193746243446 0 +71 20940 31.193746243446 0 +71 21042 31.424398582336 0 +71 21042 31.424398582336 2 +71 21043 31.424398582336 2 +71 21043 31.424398582336 0 +71 21046 31.424398582336 0 +71 21046 31.424398582336 0 +71 21054 31.424558582336 0 +71 21054 31.424558582336 0 +71 21083 31.431276555932 0 +71 21083 31.431276555932 0 +71 21094 31.431436555932 0 +71 21094 31.431436555932 0 +71 21122 31.457384353095 0 +71 21122 31.457384353095 0 +71 21133 31.457544353095 0 +71 21133 31.457544353095 0 +71 21154 31.493586217696 0 +71 21154 31.493586217696 0 +71 21173 31.493746217696 0 +71 21173 31.493746217696 0 +71 21275 31.724398582336 0 +71 21275 31.724398582336 2 +71 21276 31.724398582336 2 +71 21276 31.724398582336 0 +71 21279 31.724398582336 0 +71 21279 31.724398582336 0 +71 21287 31.724558582336 0 +71 21287 31.724558582336 0 +71 21316 31.731276558446 0 +71 21316 31.731276558446 0 +71 21327 31.731436558446 0 +71 21327 31.731436558446 0 +71 21355 31.757384353088 0 +71 21355 31.757384353088 0 +71 21366 31.757544353088 0 +71 21366 31.757544353088 0 +71 21387 31.793586191964 0 +71 21387 31.793586191964 0 +71 21406 31.793746191964 0 +71 21406 31.793746191964 0 +71 21508 32.024398582336 0 +71 21508 32.024398582336 2 +71 21509 32.024398582336 2 +71 21509 32.024398582336 0 +71 21512 32.024398582336 0 +71 21512 32.024398582336 0 +71 21520 32.024558582336 0 +71 21520 32.024558582336 0 +71 21549 32.031276560973 0 +71 21549 32.031276560973 0 +71 21560 32.031436560973 0 +71 21560 32.031436560973 0 +71 21588 32.057384353084 0 +71 21588 32.057384353084 0 +71 21599 32.057544353084 0 +71 21599 32.057544353084 0 +71 21619 32.093586166255 0 +71 21619 32.093586166255 0 +71 21634 32.093746166255 0 +71 21634 32.093746166255 0 +71 21741 32.324398582336 0 +71 21741 32.324398582336 2 +71 21742 32.324398582336 2 +71 21742 32.324398582336 0 +71 21745 32.324398582336 0 +71 21745 32.324398582336 0 +71 21753 32.324558582336 0 +71 21753 32.324558582336 0 +71 21782 32.331276563405 0 +71 21782 32.331276563405 0 +71 21793 32.331436563405 0 +71 21793 32.331436563405 0 +71 21821 32.357384353083 0 +71 21821 32.357384353083 0 +71 21832 32.357544353083 0 +71 21832 32.357544353083 0 +71 21852 32.393586140428 0 +71 21852 32.393586140428 0 +71 21867 32.393746140428 0 +71 21867 32.393746140428 0 +71 21974 32.624398582336 0 +71 21974 32.624398582336 2 +71 21975 32.624398582336 2 +71 21975 32.624398582336 0 +71 21978 32.624398582336 0 +71 21978 32.624398582336 0 +71 21986 32.624558582336 0 +71 21986 32.624558582336 0 +71 22015 32.631276565904 0 +71 22015 32.631276565904 0 +71 22026 32.631436565904 0 +71 22026 32.631436565904 0 +71 22054 32.657384353086 0 +71 22054 32.657384353086 0 +71 22065 32.657544353086 0 +71 22065 32.657544353086 0 +71 22085 32.693586114644 0 +71 22085 32.693586114644 0 +71 22100 32.693746114644 0 +71 22100 32.693746114644 0 +71 22207 32.924398582336 0 +71 22207 32.924398582336 2 +71 22208 32.924398582336 2 +71 22208 32.924398582336 0 +71 22211 32.924398582336 0 +71 22211 32.924398582336 0 +71 22219 32.924558582336 0 +71 22219 32.924558582336 0 +71 22248 32.931276568399 0 +71 22248 32.931276568399 0 +71 22259 32.931436568399 0 +71 22259 32.931436568399 0 +71 22287 32.957384353093 0 +71 22287 32.957384353093 0 +71 22298 32.957544353093 0 +71 22298 32.957544353093 0 +71 22318 32.993586088864 0 +71 22318 32.993586088864 0 +71 22333 32.993746088864 0 +71 22333 32.993746088864 0 +71 22440 33.224398582336 0 +71 22440 33.224398582336 2 +71 22441 33.224398582336 2 +71 22441 33.224398582336 0 +71 22444 33.224398582336 0 +71 22444 33.224398582336 0 +71 22452 33.224558582336 0 +71 22452 33.224558582336 0 +71 22481 33.231276570893 0 +71 22481 33.231276570893 0 +71 22492 33.231436570893 0 +71 22492 33.231436570893 0 +71 22520 33.257384353102 0 +71 22520 33.257384353102 0 +71 22531 33.257544353102 0 +71 22531 33.257544353102 0 +71 22551 33.293586063102 0 +71 22551 33.293586063102 0 +71 22566 33.293746063102 0 +71 22566 33.293746063102 0 +71 22673 33.524398582336 0 +71 22673 33.524398582336 2 +71 22674 33.524398582336 2 +71 22674 33.524398582336 0 +71 22677 33.524398582336 0 +71 22677 33.524398582336 0 +71 22685 33.524558582336 0 +71 22685 33.524558582336 0 +71 22714 33.53127657339 0 +71 22714 33.53127657339 0 +71 22725 33.53143657339 0 +71 22725 33.53143657339 0 +71 22753 33.557384353115 0 +71 22753 33.557384353115 0 +71 22764 33.557544353115 0 +71 22764 33.557544353115 0 +71 22783 33.593586037322 0 +71 22783 33.593586037322 0 +71 22794 33.593746037322 0 +71 22794 33.593746037322 0 +71 22902 33.824398582336 0 +71 22902 33.824398582336 2 +71 22903 33.824398582336 2 +71 22903 33.824398582336 0 +71 22906 33.824398582336 0 +71 22906 33.824398582336 0 +71 22914 33.824558582336 0 +71 22914 33.824558582336 0 +71 22943 33.831276575887 0 +71 22943 33.831276575887 0 +71 22954 33.831436575887 0 +71 22954 33.831436575887 0 +71 22982 33.857384353132 0 +71 22982 33.857384353132 0 +71 22993 33.857544353132 0 +71 22993 33.857544353132 0 +71 23012 33.893586011596 0 +71 23012 33.893586011596 0 +71 23023 33.893746011596 0 +71 23023 33.893746011596 0 +71 23112 34.124398582336 0 +71 23112 34.124398582336 2 +71 23113 34.124398582336 2 +71 23113 34.124398582336 0 +71 23116 34.124398582336 0 +71 23116 34.124398582336 0 +71 23123 34.124558582336 0 +71 23123 34.124558582336 0 +71 23146 34.131276578412 0 +71 23146 34.131276578412 0 +71 23152 34.131436578412 0 +71 23152 34.131436578412 0 +71 23176 34.157384353151 0 +71 23176 34.157384353151 0 +71 23186 34.157544353151 0 +71 23186 34.157544353151 0 +71 23270 34.424398582336 0 +71 23270 34.424398582336 2 +71 23271 34.424398582336 2 +71 23271 34.424398582336 0 +71 23274 34.424398582336 0 +71 23274 34.424398582336 0 +71 23281 34.424558582336 0 +71 23281 34.424558582336 0 +71 23304 34.431276580926 0 +71 23304 34.431276580926 0 +71 23310 34.431436580926 0 +71 23310 34.431436580926 0 +71 23334 34.457384353173 0 +71 23334 34.457384353173 0 +71 23344 34.457544353173 0 +71 23344 34.457544353173 0 +71 23428 34.724398582336 0 +71 23428 34.724398582336 2 +71 23429 34.724398582336 2 +71 23429 34.724398582336 0 +71 23432 34.724398582336 0 +71 23432 34.724398582336 0 +71 23439 34.724558582336 0 +71 23439 34.724558582336 0 +71 23462 34.731276583436 0 +71 23462 34.731276583436 0 +71 23468 34.731436583436 0 +71 23468 34.731436583436 0 +71 23492 34.757384353199 0 +71 23492 34.757384353199 0 +71 23502 34.757544353199 0 +71 23502 34.757544353199 0 +71 23586 35.024398582336 0 +71 23586 35.024398582336 2 +71 23587 35.024398582336 2 +71 23587 35.024398582336 0 +71 23590 35.024398582336 0 +71 23590 35.024398582336 0 +71 23597 35.024558582336 0 +71 23597 35.024558582336 0 +71 23620 35.031276585897 0 +71 23620 35.031276585897 0 +71 23626 35.031436585897 0 +71 23626 35.031436585897 0 +71 23650 35.057384353228 0 +71 23650 35.057384353228 0 +71 23660 35.057544353228 0 +71 23660 35.057544353228 0 +71 23748 35.324398582336 0 +71 23748 35.324398582336 2 +71 23749 35.324398582336 2 +71 23749 35.324398582336 0 +71 23752 35.324398582336 0 +71 23752 35.324398582336 0 +71 23759 35.324558582336 0 +71 23759 35.324558582336 0 +71 23782 35.331276588437 0 +71 23782 35.331276588437 0 +71 23788 35.331436588437 0 +71 23788 35.331436588437 0 +71 23812 35.357384353251 0 +71 23812 35.357384353251 0 +71 23822 35.357544353251 0 +71 23822 35.357544353251 0 +71 23914 35.624398582336 0 +71 23914 35.624398582336 2 +71 23915 35.624398582336 2 +71 23915 35.624398582336 0 +71 23918 35.624398582336 0 +71 23918 35.624398582336 0 +71 23925 35.624558582336 0 +71 23925 35.624558582336 0 +71 23948 35.631276590971 0 +71 23948 35.631276590971 0 +71 23954 35.631436590971 0 +71 23954 35.631436590971 0 +71 23978 35.657384353247 0 +71 23978 35.657384353247 0 +71 23988 35.657544353247 0 +71 23988 35.657544353247 0 +71 24080 35.924398582336 0 +71 24080 35.924398582336 2 +71 24081 35.924398582336 2 +71 24081 35.924398582336 0 +71 24084 35.924398582336 0 +71 24084 35.924398582336 0 +71 24091 35.924558582336 0 +71 24091 35.924558582336 0 +71 24114 35.931276593481 0 +71 24114 35.931276593481 0 +71 24120 35.931436593481 0 +71 24120 35.931436593481 0 +71 24144 35.957384353214 0 +71 24144 35.957384353214 0 +71 24154 35.957544353214 0 +71 24154 35.957544353214 0 +71 24246 36.224398582336 0 +71 24246 36.224398582336 2 +71 24247 36.224398582336 2 +71 24247 36.224398582336 0 +71 24250 36.224398582336 0 +71 24250 36.224398582336 0 +71 24257 36.224558582336 0 +71 24257 36.224558582336 0 +71 24280 36.231276595961 0 +71 24280 36.231276595961 0 +71 24286 36.231436595961 0 +71 24286 36.231436595961 0 +71 24310 36.257384353163 0 +71 24310 36.257384353163 0 +71 24320 36.257544353163 0 +71 24320 36.257544353163 0 +71 24412 36.524398582336 0 +71 24412 36.524398582336 2 +71 24413 36.524398582336 2 +71 24413 36.524398582336 0 +71 24416 36.524398582336 0 +71 24416 36.524398582336 0 +71 24423 36.524558582336 0 +71 24423 36.524558582336 0 +71 24446 36.531276598459 0 +71 24446 36.531276598459 0 +71 24452 36.531436598459 0 +71 24452 36.531436598459 0 +71 24476 36.557384353111 0 +71 24476 36.557384353111 0 +71 24486 36.557544353111 0 +71 24486 36.557544353111 0 +71 24578 36.824398582336 0 +71 24578 36.824398582336 2 +71 24579 36.824398582336 2 +71 24579 36.824398582336 0 +71 24582 36.824398582336 0 +71 24582 36.824398582336 0 +71 24589 36.824558582336 0 +71 24589 36.824558582336 0 +71 24612 36.83127660094 0 +71 24612 36.83127660094 0 +71 24618 36.83143660094 0 +71 24618 36.83143660094 0 +71 24642 36.857384353084 0 +71 24642 36.857384353084 0 +71 24652 36.857544353084 0 +71 24652 36.857544353084 0 +71 24744 37.124398582336 0 +71 24744 37.124398582336 2 +71 24745 37.124398582336 2 +71 24745 37.124398582336 0 +71 24748 37.124398582336 0 +71 24748 37.124398582336 0 +71 24755 37.124558582336 0 +71 24755 37.124558582336 0 +71 24778 37.131276603404 0 +71 24778 37.131276603404 0 +71 24784 37.131436603404 0 +71 24784 37.131436603404 0 +71 24808 37.15738435309 0 +71 24808 37.15738435309 0 +71 24818 37.15754435309 0 +71 24818 37.15754435309 0 +71 24910 37.424398582336 0 +71 24910 37.424398582336 2 +71 24911 37.424398582336 2 +71 24911 37.424398582336 0 +71 24914 37.424398582336 0 +71 24914 37.424398582336 0 +71 24921 37.424558582336 0 +71 24921 37.424558582336 0 +71 24944 37.431276605886 0 +71 24944 37.431276605886 0 +71 24950 37.431436605886 0 +71 24950 37.431436605886 0 +71 24974 37.457384353113 0 +71 24974 37.457384353113 0 +71 24984 37.457544353113 0 +71 24984 37.457544353113 0 +71 25076 37.724398582336 0 +71 25076 37.724398582336 2 +71 25077 37.724398582336 2 +71 25077 37.724398582336 0 +71 25080 37.724398582336 0 +71 25080 37.724398582336 0 +71 25087 37.724558582336 0 +71 25087 37.724558582336 0 +71 25110 37.731276608365 0 +71 25110 37.731276608365 0 +71 25116 37.731436608365 0 +71 25116 37.731436608365 0 +71 25141 37.757384353145 0 +71 25141 37.757384353145 0 +71 25155 37.757544353145 0 +71 25155 37.757544353145 0 +71 25242 38.024398582336 0 +71 25242 38.024398582336 2 +71 25243 38.024398582336 2 +71 25243 38.024398582336 0 +71 25246 38.024398582336 0 +71 25246 38.024398582336 0 +71 25253 38.024558582336 0 +71 25253 38.024558582336 0 +71 25276 38.031276610826 0 +71 25276 38.031276610826 0 +71 25282 38.031436610826 0 +71 25282 38.031436610826 0 +71 25307 38.057384353181 0 +71 25307 38.057384353181 0 +71 25321 38.057544353181 0 +71 25321 38.057544353181 0 +71 25408 38.324398582336 0 +71 25408 38.324398582336 2 +71 25409 38.324398582336 2 +71 25409 38.324398582336 0 +71 25412 38.324398582336 0 +71 25412 38.324398582336 0 +71 25419 38.324558582336 0 +71 25419 38.324558582336 0 +71 25442 38.3312766133 0 +71 25442 38.3312766133 0 +71 25448 38.3314366133 0 +71 25448 38.3314366133 0 +71 25473 38.357384353213 0 +71 25473 38.357384353213 0 +71 25487 38.357544353213 0 +71 25487 38.357544353213 0 +71 25574 38.624398582336 0 +71 25574 38.624398582336 2 +71 25575 38.624398582336 2 +71 25575 38.624398582336 0 +71 25578 38.624398582336 0 +71 25578 38.624398582336 0 +71 25585 38.624558582336 0 +71 25585 38.624558582336 0 +71 25608 38.631276615791 0 +71 25608 38.631276615791 0 +71 25614 38.631436615791 0 +71 25614 38.631436615791 0 +71 25639 38.657384353237 0 +71 25639 38.657384353237 0 +71 25653 38.657544353237 0 +71 25653 38.657544353237 0 +71 25740 38.924398582336 0 +71 25740 38.924398582336 2 +71 25741 38.924398582336 2 +71 25741 38.924398582336 0 +71 25744 38.924398582336 0 +71 25744 38.924398582336 0 +71 25751 38.924558582336 0 +71 25751 38.924558582336 0 +71 25774 38.93127661831 0 +71 25774 38.93127661831 0 +71 25780 38.93143661831 0 +71 25780 38.93143661831 0 +71 25805 38.95738435325 0 +71 25805 38.95738435325 0 +71 25819 38.95754435325 0 +71 25819 38.95754435325 0 +71 25906 39.224398582336 0 +71 25906 39.224398582336 2 +71 25907 39.224398582336 2 +71 25907 39.224398582336 0 +71 25910 39.224398582336 0 +71 25910 39.224398582336 0 +71 25917 39.224558582336 0 +71 25917 39.224558582336 0 +71 25940 39.231276620759 0 +71 25940 39.231276620759 0 +71 25946 39.231436620759 0 +71 25946 39.231436620759 0 +71 25971 39.257384353248 0 +71 25971 39.257384353248 0 +71 25985 39.257544353248 0 +71 25985 39.257544353248 0 +71 26072 39.524398582336 0 +71 26072 39.524398582336 2 +71 26073 39.524398582336 2 +71 26073 39.524398582336 0 +71 26076 39.524398582336 0 +71 26076 39.524398582336 0 +71 26083 39.524558582336 0 +71 26083 39.524558582336 0 +71 26106 39.531276623254 0 +71 26106 39.531276623254 0 +71 26112 39.531436623254 0 +71 26112 39.531436623254 0 +71 26137 39.557384353232 0 +71 26137 39.557384353232 0 +71 26151 39.557544353232 0 +71 26151 39.557544353232 0 +71 26238 39.824398582336 0 +71 26238 39.824398582336 2 +71 26239 39.824398582336 2 +71 26239 39.824398582336 0 +71 26242 39.824398582336 0 +71 26242 39.824398582336 0 +71 26249 39.824558582336 0 +71 26249 39.824558582336 0 +71 26272 39.83127662574 0 +71 26272 39.83127662574 0 +71 26278 39.83143662574 0 +71 26278 39.83143662574 0 +71 26303 39.857384353205 0 +71 26303 39.857384353205 0 +71 26317 39.857544353205 0 +71 26317 39.857544353205 0 +71 26404 40.124398582336 0 +71 26404 40.124398582336 2 +71 26405 40.124398582336 2 +71 26405 40.124398582336 0 +71 26408 40.124398582336 0 +71 26408 40.124398582336 0 +71 26415 40.124558582336 0 +71 26415 40.124558582336 0 +71 26438 40.131276628265 0 +71 26438 40.131276628265 0 +71 26444 40.131436628265 0 +71 26444 40.131436628265 0 +71 26469 40.157384353178 0 +71 26469 40.157384353178 0 +71 26483 40.157544353178 0 +71 26483 40.157544353178 0 +71 26570 40.424398582336 0 +71 26570 40.424398582336 2 +71 26571 40.424398582336 2 +71 26571 40.424398582336 0 +71 26574 40.424398582336 0 +71 26574 40.424398582336 0 +71 26581 40.424558582336 0 +71 26581 40.424558582336 0 +71 26604 40.431276630742 0 +71 26604 40.431276630742 0 +71 26610 40.431436630742 0 +71 26610 40.431436630742 0 +71 26635 40.457384353154 0 +71 26635 40.457384353154 0 +71 26649 40.457544353154 0 +71 26649 40.457544353154 0 +71 26736 40.724398582336 0 +71 26736 40.724398582336 2 +71 26737 40.724398582336 2 +71 26737 40.724398582336 0 +71 26740 40.724398582336 0 +71 26740 40.724398582336 0 +71 26747 40.724558582336 0 +71 26747 40.724558582336 0 +71 26774 40.731276633247 0 +71 26774 40.731276633247 0 +71 26780 40.731436633247 0 +71 26780 40.731436633247 0 +71 26805 40.757384353134 0 +71 26805 40.757384353134 0 +71 26819 40.757544353134 0 +71 26819 40.757544353134 0 +71 26844 40.843993902315 0 +71 26844 40.843993902315 0 +71 26862 40.844153902315 0 +71 26862 40.844153902315 0 +71 26910 41.024398582336 0 +71 26910 41.024398582336 2 +71 26911 41.024398582336 2 +71 26911 41.024398582336 0 +71 26914 41.024398582336 0 +71 26914 41.024398582336 0 +71 26921 41.024558582336 0 +71 26921 41.024558582336 0 +71 26948 41.031276635684 0 +71 26948 41.031276635684 0 +71 26954 41.031436635684 0 +71 26954 41.031436635684 0 +71 26979 41.057384353117 0 +71 26979 41.057384353117 0 +71 26993 41.057544353117 0 +71 26993 41.057544353117 0 +71 27018 41.143993889795 0 +71 27018 41.143993889795 0 +71 27036 41.144153889795 0 +71 27036 41.144153889795 0 +71 27084 41.324398582336 0 +71 27084 41.324398582336 2 +71 27085 41.324398582336 2 +71 27085 41.324398582336 0 +71 27088 41.324398582336 0 +71 27088 41.324398582336 0 +71 27095 41.324558582336 0 +71 27095 41.324558582336 0 +71 27122 41.331276638199 0 +71 27122 41.331276638199 0 +71 27128 41.331436638199 0 +71 27128 41.331436638199 0 +71 27153 41.357384353104 0 +71 27153 41.357384353104 0 +71 27167 41.357544353104 0 +71 27167 41.357544353104 0 +71 27192 41.443993878047 0 +71 27192 41.443993878047 0 +71 27210 41.444153878047 0 +71 27210 41.444153878047 0 +71 27258 41.624398582336 0 +71 27258 41.624398582336 2 +71 27259 41.624398582336 2 +71 27259 41.624398582336 0 +71 27262 41.624398582336 0 +71 27262 41.624398582336 0 +71 27269 41.624558582336 0 +71 27269 41.624558582336 0 +71 27296 41.631276640727 0 +71 27296 41.631276640727 0 +71 27302 41.631436640727 0 +71 27302 41.631436640727 0 +71 27327 41.657384353094 0 +71 27327 41.657384353094 0 +71 27341 41.657544353094 0 +71 27341 41.657544353094 0 +71 27366 41.743993867126 0 +71 27366 41.743993867126 0 +71 27384 41.744153867126 0 +71 27384 41.744153867126 0 +71 27432 41.924398582336 0 +71 27432 41.924398582336 2 +71 27433 41.924398582336 2 +71 27433 41.924398582336 0 +71 27436 41.924398582336 0 +71 27436 41.924398582336 0 +71 27443 41.924558582336 0 +71 27443 41.924558582336 0 +71 27470 41.931276643268 0 +71 27470 41.931276643268 0 +71 27476 41.931436643268 0 +71 27476 41.931436643268 0 +71 27501 41.957384353087 0 +71 27501 41.957384353087 0 +71 27515 41.957544353087 0 +71 27515 41.957544353087 0 +71 27540 42.043993857353 0 +71 27540 42.043993857353 0 +71 27558 42.044153857353 0 +71 27558 42.044153857353 0 +71 27606 42.224398582336 0 +71 27606 42.224398582336 2 +71 27607 42.224398582336 2 +71 27607 42.224398582336 0 +71 27610 42.224398582336 0 +71 27610 42.224398582336 0 +71 27617 42.224558582336 0 +71 27617 42.224558582336 0 +71 27644 42.231276645815 0 +71 27644 42.231276645815 0 +71 27650 42.231436645815 0 +71 27650 42.231436645815 0 +71 27675 42.257384353084 0 +71 27675 42.257384353084 0 +71 27689 42.257544353084 0 +71 27689 42.257544353084 0 +71 27713 42.343993848849 0 +71 27713 42.343993848849 0 +71 27727 42.344153848849 0 +71 27727 42.344153848849 0 +71 27780 42.524398582336 0 +71 27780 42.524398582336 2 +71 27781 42.524398582336 2 +71 27781 42.524398582336 0 +71 27784 42.524398582336 0 +71 27784 42.524398582336 0 +71 27791 42.524558582336 0 +71 27791 42.524558582336 0 +71 27818 42.531276648376 0 +71 27818 42.531276648376 0 +71 27824 42.531436648376 0 +71 27824 42.531436648376 0 +71 27849 42.557384353084 0 +71 27849 42.557384353084 0 +71 27863 42.557544353084 0 +71 27863 42.557544353084 0 +71 27887 42.643993841477 0 +71 27887 42.643993841477 0 +71 27901 42.644153841477 0 +71 27901 42.644153841477 0 +71 27954 42.824398582336 0 +71 27954 42.824398582336 2 +71 27955 42.824398582336 2 +71 27955 42.824398582336 0 +71 27958 42.824398582336 0 +71 27958 42.824398582336 0 +71 27965 42.824558582336 0 +71 27965 42.824558582336 0 +71 27992 42.831276650828 0 +71 27992 42.831276650828 0 +71 27998 42.831436650828 0 +71 27998 42.831436650828 0 +71 28023 42.857384353087 0 +71 28023 42.857384353087 0 +71 28037 42.857544353087 0 +71 28037 42.857544353087 0 +71 28061 42.943993835169 0 +71 28061 42.943993835169 0 +71 28075 42.944153835169 0 +71 28075 42.944153835169 0 +71 28128 43.124398582336 0 +71 28128 43.124398582336 2 +71 28129 43.124398582336 2 +71 28129 43.124398582336 0 +71 28132 43.124398582336 0 +71 28132 43.124398582336 0 +71 28139 43.124558582336 0 +71 28139 43.124558582336 0 +71 28166 43.131276653336 0 +71 28166 43.131276653336 0 +71 28172 43.131436653336 0 +71 28172 43.131436653336 0 +71 28197 43.157384353094 0 +71 28197 43.157384353094 0 +71 28211 43.157544353094 0 +71 28211 43.157544353094 0 +71 28235 43.243993829822 0 +71 28235 43.243993829822 0 +71 28249 43.244153829822 0 +71 28249 43.244153829822 0 +71 28302 43.424398582336 0 +71 28302 43.424398582336 2 +71 28303 43.424398582336 2 +71 28303 43.424398582336 0 +71 28306 43.424398582336 0 +71 28306 43.424398582336 0 +71 28313 43.424558582336 0 +71 28313 43.424558582336 0 +71 28340 43.431276655825 0 +71 28340 43.431276655825 0 +71 28346 43.431436655825 0 +71 28346 43.431436655825 0 +71 28371 43.457384353104 0 +71 28371 43.457384353104 0 +71 28385 43.457544353104 0 +71 28385 43.457544353104 0 +71 28409 43.543993825335 0 +71 28409 43.543993825335 0 +71 28423 43.544153825335 0 +71 28423 43.544153825335 0 +71 28476 43.724398582336 0 +71 28476 43.724398582336 2 +71 28477 43.724398582336 2 +71 28477 43.724398582336 0 +71 28480 43.724398582336 0 +71 28480 43.724398582336 0 +71 28487 43.724558582336 0 +71 28487 43.724558582336 0 +71 28514 43.731276658351 0 +71 28514 43.731276658351 0 +71 28520 43.731436658351 0 +71 28520 43.731436658351 0 +71 28545 43.757384353117 0 +71 28545 43.757384353117 0 +71 28559 43.757544353117 0 +71 28559 43.757544353117 0 +71 28583 43.84399382162 0 +71 28583 43.84399382162 0 +71 28597 43.84415382162 0 +71 28597 43.84415382162 0 +71 28650 44.024398582336 0 +71 28650 44.024398582336 2 +71 28651 44.024398582336 2 +71 28651 44.024398582336 0 +71 28654 44.024398582336 0 +71 28654 44.024398582336 0 +71 28661 44.024558582336 0 +71 28661 44.024558582336 0 +71 28688 44.031276660872 0 +71 28688 44.031276660872 0 +71 28694 44.031436660872 0 +71 28694 44.031436660872 0 +71 28719 44.057384353134 0 +71 28719 44.057384353134 0 +71 28733 44.057544353134 0 +71 28733 44.057544353134 0 +71 28757 44.143993818568 0 +71 28757 44.143993818568 0 +71 28771 44.144153818568 0 +71 28771 44.144153818568 0 +71 28824 44.324398582336 0 +71 28824 44.324398582336 2 +71 28825 44.324398582336 2 +71 28825 44.324398582336 0 +71 28828 44.324398582336 0 +71 28828 44.324398582336 0 +71 28835 44.324558582336 0 +71 28835 44.324558582336 0 +71 28862 44.331276663352 0 +71 28862 44.331276663352 0 +71 28868 44.331436663352 0 +71 28868 44.331436663352 0 +71 28889 44.357384353142 0 +71 28889 44.357384353142 0 +71 28903 44.357544353142 0 +71 28903 44.357544353142 0 +71 28927 44.443993816103 0 +71 28927 44.443993816103 0 +71 28941 44.444153816103 0 +71 28941 44.444153816103 0 +71 28990 44.624398582336 0 +71 28990 44.624398582336 2 +71 28991 44.624398582336 2 +71 28991 44.624398582336 0 +71 28994 44.624398582336 0 +71 28994 44.624398582336 0 +71 29001 44.624558582336 0 +71 29001 44.624558582336 0 +71 29028 44.63127666581 0 +71 29028 44.63127666581 0 +71 29034 44.63143666581 0 +71 29034 44.63143666581 0 +71 29055 44.657384353131 0 +71 29055 44.657384353131 0 +71 29069 44.657544353131 0 +71 29069 44.657544353131 0 +71 29093 44.743993814138 0 +71 29093 44.743993814138 0 +71 29107 44.744153814138 0 +71 29107 44.744153814138 0 +71 29156 44.924398582336 0 +71 29156 44.924398582336 2 +71 29157 44.924398582336 2 +71 29157 44.924398582336 0 +71 29160 44.924398582336 0 +71 29160 44.924398582336 0 +71 29167 44.924558582336 0 +71 29167 44.924558582336 0 +71 29194 44.931276668328 0 +71 29194 44.931276668328 0 +71 29200 44.931436668328 0 +71 29200 44.931436668328 0 +71 29221 44.957384353109 0 +71 29221 44.957384353109 0 +71 29235 44.957544353109 0 +71 29235 44.957544353109 0 +71 29259 45.043993812593 0 +71 29259 45.043993812593 0 +71 29273 45.044153812593 0 +71 29273 45.044153812593 0 +71 29322 45.224398582336 0 +71 29322 45.224398582336 2 +71 29323 45.224398582336 2 +71 29323 45.224398582336 0 +71 29326 45.224398582336 0 +71 29326 45.224398582336 0 +71 29333 45.224558582336 0 +71 29333 45.224558582336 0 +71 29360 45.231276670771 0 +71 29360 45.231276670771 0 +71 29366 45.231436670771 0 +71 29366 45.231436670771 0 +71 29387 45.257384353088 0 +71 29387 45.257384353088 0 +71 29401 45.257544353088 0 +71 29401 45.257544353088 0 +71 29425 45.343993811321 0 +71 29425 45.343993811321 0 +71 29439 45.344153811321 0 +71 29439 45.344153811321 0 +71 29488 45.524398582336 0 +71 29488 45.524398582336 2 +71 29489 45.524398582336 2 +71 29489 45.524398582336 0 +71 29492 45.524398582336 0 +71 29492 45.524398582336 0 +71 29499 45.524558582336 0 +71 29499 45.524558582336 0 +71 29526 45.53127667327 0 +71 29526 45.53127667327 0 +71 29532 45.53143667327 0 +71 29532 45.53143667327 0 +71 29553 45.557384353087 0 +71 29553 45.557384353087 0 +71 29567 45.557544353087 0 +71 29567 45.557544353087 0 +71 29591 45.643993810247 0 +71 29591 45.643993810247 0 +71 29605 45.644153810247 0 +71 29605 45.644153810247 0 +71 29654 45.824398582336 0 +71 29654 45.824398582336 2 +71 29655 45.824398582336 2 +71 29655 45.824398582336 0 +71 29658 45.824398582336 0 +71 29658 45.824398582336 0 +71 29665 45.824558582336 0 +71 29665 45.824558582336 0 +71 29692 45.831276675809 0 +71 29692 45.831276675809 0 +71 29698 45.831436675809 0 +71 29698 45.831436675809 0 +71 29719 45.857384353099 0 +71 29719 45.857384353099 0 +71 29733 45.857544353099 0 +71 29733 45.857544353099 0 +71 29757 45.94399380881 0 +71 29757 45.94399380881 0 +71 29771 45.94415380881 0 +71 29771 45.94415380881 0 +71 29820 46.124398582336 0 +71 29820 46.124398582336 2 +71 29821 46.124398582336 2 +71 29821 46.124398582336 0 +71 29824 46.124398582336 0 +71 29824 46.124398582336 0 +71 29831 46.124558582336 0 +71 29831 46.124558582336 0 +71 29858 46.131276678861 0 +71 29858 46.131276678861 0 +71 29864 46.131436678861 0 +71 29864 46.131436678861 0 +71 29885 46.157384350237 0 +71 29885 46.157384350237 0 +71 29899 46.157544350237 0 +71 29899 46.157544350237 0 +71 29922 46.243993803699 0 +71 29922 46.243993803699 0 +71 29932 46.244153803699 0 +71 29932 46.244153803699 0 +71 29986 46.424398582336 0 +71 29986 46.424398582336 2 +71 29987 46.424398582336 2 +71 29987 46.424398582336 0 +71 29990 46.424398582336 0 +71 29990 46.424398582336 0 +71 29997 46.424558582336 0 +71 29997 46.424558582336 0 +71 30024 46.431276686409 0 +71 30024 46.431276686409 0 +71 30030 46.431436686409 0 +71 30030 46.431436686409 0 +71 30051 46.457384341327 0 +71 30051 46.457384341327 0 +71 30065 46.457544341327 0 +71 30065 46.457544341327 0 +71 30088 46.543993792983 0 +71 30088 46.543993792983 0 +71 30098 46.544153792983 0 +71 30098 46.544153792983 0 +71 30152 46.724398582336 0 +71 30152 46.724398582336 2 +71 30153 46.724398582336 2 +71 30153 46.724398582336 0 +71 30156 46.724398582336 0 +71 30156 46.724398582336 0 +71 30163 46.724558582336 0 +71 30163 46.724558582336 0 +71 30190 46.731276699768 0 +71 30190 46.731276699768 0 +71 30196 46.731436699768 0 +71 30196 46.731436699768 0 +71 30216 46.757384329816 0 +71 30216 46.757384329816 0 +71 30226 46.757544329816 0 +71 30226 46.757544329816 0 +71 30254 46.843993781596 0 +71 30254 46.843993781596 0 +71 30264 46.844153781596 0 +71 30264 46.844153781596 0 +71 30318 47.024398582336 0 +71 30318 47.024398582336 2 +71 30319 47.024398582336 2 +71 30319 47.024398582336 0 +71 30322 47.024398582336 0 +71 30322 47.024398582336 0 +71 30329 47.024558582336 0 +71 30329 47.024558582336 0 +71 30356 47.031276714347 0 +71 30356 47.031276714347 0 +71 30362 47.031436714347 0 +71 30362 47.031436714347 0 +71 30382 47.057384318309 0 +71 30382 47.057384318309 0 +71 30392 47.057544318309 0 +71 30392 47.057544318309 0 +71 30420 47.143993770247 0 +71 30420 47.143993770247 0 +71 30430 47.144153770247 0 +71 30430 47.144153770247 0 +71 30484 47.324398582336 0 +71 30484 47.324398582336 2 +71 30485 47.324398582336 2 +71 30485 47.324398582336 0 +71 30488 47.324398582336 0 +71 30488 47.324398582336 0 +71 30495 47.324558582336 0 +71 30495 47.324558582336 0 +71 30522 47.331276729157 0 +71 30522 47.331276729157 0 +71 30528 47.331436729157 0 +71 30528 47.331436729157 0 +71 30548 47.357384306963 0 +71 30548 47.357384306963 0 +71 30558 47.357544306963 0 +71 30558 47.357544306963 0 +71 30586 47.443993758984 0 +71 30586 47.443993758984 0 +71 30596 47.444153758984 0 +71 30596 47.444153758984 0 +71 30650 47.624398582336 0 +71 30650 47.624398582336 2 +71 30651 47.624398582336 2 +71 30651 47.624398582336 0 +71 30654 47.624398582336 0 +71 30654 47.624398582336 0 +71 30661 47.624558582336 0 +71 30661 47.624558582336 0 +71 30688 47.631276744132 0 +71 30688 47.631276744132 0 +71 30694 47.631436744132 0 +71 30694 47.631436744132 0 +71 30714 47.657384295839 0 +71 30714 47.657384295839 0 +71 30724 47.657544295839 0 +71 30724 47.657544295839 0 +71 30752 47.743993747807 0 +71 30752 47.743993747807 0 +71 30762 47.744153747807 0 +71 30762 47.744153747807 0 +71 30816 47.924398582336 0 +71 30816 47.924398582336 2 +71 30817 47.924398582336 2 +71 30817 47.924398582336 0 +71 30820 47.924398582336 0 +71 30820 47.924398582336 0 +71 30827 47.924558582336 0 +71 30827 47.924558582336 0 +71 30854 47.931276759305 0 +71 30854 47.931276759305 0 +71 30860 47.931436759305 0 +71 30860 47.931436759305 0 +71 30880 47.957384284957 0 +71 30880 47.957384284957 0 +71 30890 47.957544284957 0 +71 30890 47.957544284957 0 +71 30918 48.043993736723 0 +71 30918 48.043993736723 0 +71 30928 48.044153736723 0 +71 30928 48.044153736723 0 +71 30982 48.224398582336 0 +71 30982 48.224398582336 2 +71 30983 48.224398582336 2 +71 30983 48.224398582336 0 +71 30986 48.224398582336 0 +71 30986 48.224398582336 0 +71 30993 48.224558582336 0 +71 30993 48.224558582336 0 +71 31020 48.231276774574 0 +71 31020 48.231276774574 0 +71 31026 48.231436774574 0 +71 31026 48.231436774574 0 +71 31046 48.257384274373 0 +71 31046 48.257384274373 0 +71 31056 48.257544274373 0 +71 31056 48.257544274373 0 +71 31084 48.343993727328 0 +71 31084 48.343993727328 0 +71 31094 48.344153727328 0 +71 31094 48.344153727328 0 +71 31148 48.524398582336 0 +71 31148 48.524398582336 2 +71 31149 48.524398582336 2 +71 31149 48.524398582336 0 +71 31152 48.524398582336 0 +71 31152 48.524398582336 0 +71 31159 48.524558582336 0 +71 31159 48.524558582336 0 +71 31186 48.531276790029 0 +71 31186 48.531276790029 0 +71 31192 48.531436790029 0 +71 31192 48.531436790029 0 +71 31212 48.557384264097 0 +71 31212 48.557384264097 0 +71 31222 48.557544264097 0 +71 31222 48.557544264097 0 +71 31250 48.6439937182 0 +71 31250 48.6439937182 0 +71 31260 48.6441537182 0 +71 31260 48.6441537182 0 +71 31314 48.824398582336 0 +71 31314 48.824398582336 2 +71 31315 48.824398582336 2 +71 31315 48.824398582336 0 +71 31318 48.824398582336 0 +71 31318 48.824398582336 0 +71 31325 48.824558582336 0 +71 31325 48.824558582336 0 +71 31352 48.83127680564 0 +71 31352 48.83127680564 0 +71 31358 48.83143680564 0 +71 31358 48.83143680564 0 +71 31378 48.85738425419 0 +71 31378 48.85738425419 0 +71 31388 48.85754425419 0 +71 31388 48.85754425419 0 +71 31416 48.943993710675 0 +71 31416 48.943993710675 0 +71 31426 48.944153710675 0 +71 31426 48.944153710675 0 +71 31480 49.124398582336 0 +71 31480 49.124398582336 2 +71 31481 49.124398582336 2 +71 31481 49.124398582336 0 +71 31484 49.124398582336 0 +71 31484 49.124398582336 0 +71 31491 49.124558582336 0 +71 31491 49.124558582336 0 +71 31518 49.13127682136 0 +71 31518 49.13127682136 0 +71 31524 49.13143682136 0 +71 31524 49.13143682136 0 +71 31544 49.157384244721 0 +71 31544 49.157384244721 0 +71 31554 49.157544244721 0 +71 31554 49.157544244721 0 +71 31582 49.243993704337 0 +71 31582 49.243993704337 0 +71 31592 49.244153704337 0 +71 31592 49.244153704337 0 +71 31646 49.424398582336 0 +71 31646 49.424398582336 2 +71 31647 49.424398582336 2 +71 31647 49.424398582336 0 +71 31650 49.424398582336 0 +71 31650 49.424398582336 0 +71 31657 49.424558582336 0 +71 31657 49.424558582336 0 +71 31684 49.431276837159 0 +71 31684 49.431276837159 0 +71 31690 49.431436837159 0 +71 31690 49.431436837159 0 +71 31710 49.457384235618 0 +71 31710 49.457384235618 0 +71 31720 49.457544235618 0 +71 31720 49.457544235618 0 +71 31748 49.543993699244 0 +71 31748 49.543993699244 0 +71 31758 49.544153699244 0 +71 31758 49.544153699244 0 +71 31812 49.724398582336 0 +71 31812 49.724398582336 2 +71 31813 49.724398582336 2 +71 31813 49.724398582336 0 +71 31816 49.724398582336 0 +71 31816 49.724398582336 0 +71 31823 49.724558582336 0 +71 31823 49.724558582336 0 +71 31850 49.731276842151 0 +71 31850 49.731276842151 0 +71 31856 49.731436842151 0 +71 31856 49.731436842151 0 +71 31876 49.757384226909 0 +71 31876 49.757384226909 0 +71 31886 49.757544226909 0 +71 31886 49.757544226909 0 +71 31914 49.843993694931 0 +71 31914 49.843993694931 0 +71 31924 49.844153694931 0 +71 31924 49.844153694931 0 +71 31978 50.024398582336 0 +71 31978 50.024398582336 2 +71 31979 50.024398582336 2 +71 31979 50.024398582336 0 +71 31982 50.024398582336 0 +71 31982 50.024398582336 0 +71 31989 50.024558582336 0 +71 31989 50.024558582336 0 +71 32016 50.031276841687 0 +71 32016 50.031276841687 0 +71 32022 50.031436841687 0 +71 32022 50.031436841687 0 +71 32042 50.057384218616 0 +71 32042 50.057384218616 0 +71 32052 50.057544218616 0 +71 32052 50.057544218616 0 +71 32080 50.143993691243 0 +71 32080 50.143993691243 0 +71 32090 50.144153691243 0 +71 32090 50.144153691243 0 +71 32144 50.324398582336 0 +71 32144 50.324398582336 2 +71 32145 50.324398582336 2 +71 32145 50.324398582336 0 +71 32148 50.324398582336 0 +71 32148 50.324398582336 0 +71 32155 50.324558582336 0 +71 32155 50.324558582336 0 +71 32182 50.331276841226 0 +71 32182 50.331276841226 0 +71 32188 50.331436841226 0 +71 32188 50.331436841226 0 +71 32208 50.3573842108 0 +71 32208 50.3573842108 0 +71 32218 50.3575442108 0 +71 32218 50.3575442108 0 +71 32246 50.443993688083 0 +71 32246 50.443993688083 0 +71 32256 50.444153688083 0 +71 32256 50.444153688083 0 +71 32310 50.624398582336 0 +71 32310 50.624398582336 2 +71 32311 50.624398582336 2 +71 32311 50.624398582336 0 +71 32314 50.624398582336 0 +71 32314 50.624398582336 0 +71 32321 50.624558582336 0 +71 32321 50.624558582336 0 +71 32348 50.631276840782 0 +71 32348 50.631276840782 0 +71 32354 50.631436840782 0 +71 32354 50.631436840782 0 +71 32374 50.657384203419 0 +71 32374 50.657384203419 0 +71 32384 50.657544203419 0 +71 32384 50.657544203419 0 +71 32412 50.743993685542 0 +71 32412 50.743993685542 0 +71 32422 50.744153685542 0 +71 32422 50.744153685542 0 +71 32476 50.924398582336 0 +71 32476 50.924398582336 2 +71 32477 50.924398582336 2 +71 32477 50.924398582336 0 +71 32480 50.924398582336 0 +71 32480 50.924398582336 0 +71 32487 50.924558582336 0 +71 32487 50.924558582336 0 +71 32514 50.931276840349 0 +71 32514 50.931276840349 0 +71 32520 50.931436840349 0 +71 32520 50.931436840349 0 +71 32540 50.957384196502 0 +71 32540 50.957384196502 0 +71 32550 50.957544196502 0 +71 32550 50.957544196502 0 +71 32578 51.043993683597 0 +71 32578 51.043993683597 0 +71 32588 51.044153683597 0 +71 32588 51.044153683597 0 +71 32638 51.224398582336 0 +71 32638 51.224398582336 2 +71 32639 51.224398582336 2 +71 32639 51.224398582336 0 +71 32642 51.224398582336 0 +71 32642 51.224398582336 0 +71 32649 51.224558582336 0 +71 32649 51.224558582336 0 +71 32676 51.231276839912 0 +71 32676 51.231276839912 0 +71 32682 51.231436839912 0 +71 32682 51.231436839912 0 +71 32702 51.257384190124 0 +71 32702 51.257384190124 0 +71 32712 51.257544190124 0 +71 32712 51.257544190124 0 +71 32736 51.343993682284 0 +71 32736 51.343993682284 0 +71 32746 51.344153682284 0 +71 32746 51.344153682284 0 +71 32796 51.524398582336 0 +71 32796 51.524398582336 2 +71 32797 51.524398582336 2 +71 32797 51.524398582336 0 +71 32800 51.524398582336 0 +71 32800 51.524398582336 0 +71 32807 51.524558582336 0 +71 32807 51.524558582336 0 +71 32834 51.531276839494 0 +71 32834 51.531276839494 0 +71 32840 51.531436839494 0 +71 32840 51.531436839494 0 +71 32864 51.557384184246 0 +71 32864 51.557384184246 0 +71 32874 51.557544184246 0 +71 32874 51.557544184246 0 +71 32902 51.643993681524 0 +71 32902 51.643993681524 0 +71 32912 51.644153681524 0 +71 32912 51.644153681524 0 +71 32962 51.824398582336 0 +71 32962 51.824398582336 2 +71 32963 51.824398582336 2 +71 32963 51.824398582336 0 +71 32966 51.824398582336 0 +71 32966 51.824398582336 0 +71 32973 51.824558582336 0 +71 32973 51.824558582336 0 +71 33000 51.831276839089 0 +71 33000 51.831276839089 0 +71 33006 51.831436839089 0 +71 33006 51.831436839089 0 +71 33030 51.857384178906 0 +71 33030 51.857384178906 0 +71 33040 51.857544178906 0 +71 33040 51.857544178906 0 +71 33068 51.943993681491 0 +71 33068 51.943993681491 0 +71 33078 51.944153681491 0 +71 33078 51.944153681491 0 +71 33128 52.124398582336 0 +71 33128 52.124398582336 2 +71 33129 52.124398582336 2 +71 33129 52.124398582336 0 +71 33132 52.124398582336 0 +71 33132 52.124398582336 0 +71 33139 52.124558582336 0 +71 33139 52.124558582336 0 +71 33166 52.131276838692 0 +71 33166 52.131276838692 0 +71 33172 52.131436838692 0 +71 33172 52.131436838692 0 +71 33196 52.157384174145 0 +71 33196 52.157384174145 0 +71 33206 52.157544174145 0 +71 33206 52.157544174145 0 +71 33234 52.243993682011 0 +71 33234 52.243993682011 0 +71 33244 52.244153682011 0 +71 33244 52.244153682011 0 +71 33294 52.424398582336 0 +71 33294 52.424398582336 2 +71 33295 52.424398582336 2 +71 33295 52.424398582336 0 +71 33298 52.424398582336 0 +71 33298 52.424398582336 0 +71 33305 52.424558582336 0 +71 33305 52.424558582336 0 +71 33332 52.431276838288 0 +71 33332 52.431276838288 0 +71 33338 52.431436838288 0 +71 33338 52.431436838288 0 +71 33362 52.457384169983 0 +71 33362 52.457384169983 0 +71 33372 52.457544169983 0 +71 33372 52.457544169983 0 +71 33400 52.543993683051 0 +71 33400 52.543993683051 0 +71 33410 52.544153683051 0 +71 33410 52.544153683051 0 +71 33460 52.724398582336 0 +71 33460 52.724398582336 2 +71 33461 52.724398582336 2 +71 33461 52.724398582336 0 +71 33464 52.724398582336 0 +71 33464 52.724398582336 0 +71 33471 52.724558582336 0 +71 33471 52.724558582336 0 +71 33499 52.731276837906 0 +71 33499 52.731276837906 0 +71 33509 52.731436837906 0 +71 33509 52.731436837906 0 +71 33528 52.757384166374 0 +71 33528 52.757384166374 0 +71 33538 52.757544166374 0 +71 33538 52.757544166374 0 +71 33566 52.843993684615 0 +71 33566 52.843993684615 0 +71 33576 52.844153684615 0 +71 33576 52.844153684615 0 +71 33626 53.024398582336 0 +71 33626 53.024398582336 2 +71 33627 53.024398582336 2 +71 33627 53.024398582336 0 +71 33630 53.024398582336 0 +71 33630 53.024398582336 0 +71 33637 53.024558582336 0 +71 33637 53.024558582336 0 +71 33665 53.031276837529 0 +71 33665 53.031276837529 0 +71 33675 53.031436837529 0 +71 33675 53.031436837529 0 +71 33694 53.057384163324 0 +71 33694 53.057384163324 0 +71 33704 53.057544163324 0 +71 33704 53.057544163324 0 +71 33732 53.143993686732 0 +71 33732 53.143993686732 0 +71 33742 53.144153686732 0 +71 33742 53.144153686732 0 +71 33768 53.324398582336 0 +71 33768 53.324398582336 2 +71 33769 53.324398582336 2 +71 33769 53.324398582336 0 +71 33772 53.324398582336 0 +71 33772 53.324398582336 0 +71 33778 53.324558582336 0 +71 33778 53.324558582336 0 +71 33804 53.331276837158 0 +71 33804 53.331276837158 0 +71 33813 53.331436837158 0 +71 33813 53.331436837158 0 +71 33831 53.357384160285 0 +71 33831 53.357384160285 0 +71 33840 53.357544160285 0 +71 33840 53.357544160285 0 +71 33866 53.44399368936 0 +71 33866 53.44399368936 0 +71 33875 53.44415368936 0 +71 33875 53.44415368936 0 +71 33895 53.624398582336 0 +71 33895 53.624398582336 2 +71 33896 53.624398582336 2 +71 33896 53.624398582336 0 +71 33899 53.624398582336 0 +71 33899 53.624398582336 0 +71 33905 53.624558582336 0 +71 33905 53.624558582336 0 +71 33931 53.631276836803 0 +71 33931 53.631276836803 0 +71 33940 53.631436836803 0 +71 33940 53.631436836803 0 +71 33958 53.657384156982 0 +71 33958 53.657384156982 0 +71 33967 53.657544156982 0 +71 33967 53.657544156982 0 +71 33993 53.743993692655 0 +71 33993 53.743993692655 0 +71 34002 53.744153692655 0 +71 34002 53.744153692655 0 +71 34022 53.924398582336 0 +71 34022 53.924398582336 2 +71 34023 53.924398582336 2 +71 34023 53.924398582336 0 +71 34026 53.924398582336 0 +71 34026 53.924398582336 0 +71 34032 53.924558582336 0 +71 34032 53.924558582336 0 +71 34058 53.931276836464 0 +71 34058 53.931276836464 0 +71 34067 53.931436836464 0 +71 34067 53.931436836464 0 +71 34085 53.95738415332 0 +71 34085 53.95738415332 0 +71 34094 53.95754415332 0 +71 34094 53.95754415332 0 +71 34120 54.043993696094 0 +71 34120 54.043993696094 0 +71 34129 54.044153696094 0 +71 34129 54.044153696094 0 +71 34149 54.224398582336 0 +71 34149 54.224398582336 2 +71 34150 54.224398582336 2 +71 34150 54.224398582336 0 +71 34153 54.224398582336 0 +71 34153 54.224398582336 0 +71 34159 54.224558582336 0 +71 34159 54.224558582336 0 +71 34185 54.231276836131 0 +71 34185 54.231276836131 0 +71 34194 54.231436836131 0 +71 34194 54.231436836131 0 +71 34212 54.257384149235 0 +71 34212 54.257384149235 0 +71 34221 54.257544149235 0 +71 34221 54.257544149235 0 +71 34247 54.343993699619 0 +71 34247 54.343993699619 0 +71 34256 54.344153699619 0 +71 34256 54.344153699619 0 +71 34276 54.524398582336 0 +71 34276 54.524398582336 2 +71 34277 54.524398582336 2 +71 34277 54.524398582336 0 +71 34280 54.524398582336 0 +71 34280 54.524398582336 0 +71 34286 54.524558582336 0 +71 34286 54.524558582336 0 +71 34312 54.531276835797 0 +71 34312 54.531276835797 0 +71 34321 54.531436835797 0 +71 34321 54.531436835797 0 +71 34339 54.557384144828 0 +71 34339 54.557384144828 0 +71 34348 54.557544144828 0 +71 34348 54.557544144828 0 +71 34374 54.643993703131 0 +71 34374 54.643993703131 0 +71 34383 54.644153703131 0 +71 34383 54.644153703131 0 +71 34403 54.824398582336 0 +71 34403 54.824398582336 2 +71 34404 54.824398582336 2 +71 34404 54.824398582336 0 +71 34407 54.824398582336 0 +71 34407 54.824398582336 0 +71 34413 54.824558582336 0 +71 34413 54.824558582336 0 +71 34439 54.831276835522 0 +71 34439 54.831276835522 0 +71 34448 54.831436835522 0 +71 34448 54.831436835522 0 +71 34466 54.85738414112 0 +71 34466 54.85738414112 0 +71 34475 54.85754414112 0 +71 34475 54.85754414112 0 +71 34501 54.943993706647 0 +71 34501 54.943993706647 0 +71 34510 54.944153706647 0 +71 34510 54.944153706647 0 +71 34530 55.124398582336 0 +71 34530 55.124398582336 2 +71 34531 55.124398582336 2 +71 34531 55.124398582336 0 +71 34534 55.124398582336 0 +71 34534 55.124398582336 0 +71 34540 55.124558582336 0 +71 34540 55.124558582336 0 +71 34566 55.131276835415 0 +71 34566 55.131276835415 0 +71 34575 55.131436835415 0 +71 34575 55.131436835415 0 +71 34593 55.15738413831 0 +71 34593 55.15738413831 0 +71 34602 55.15754413831 0 +71 34602 55.15754413831 0 +71 34628 55.243993710085 0 +71 34628 55.243993710085 0 +71 34637 55.244153710085 0 +71 34637 55.244153710085 0 +71 34657 55.424398582336 0 +71 34657 55.424398582336 2 +71 34658 55.424398582336 2 +71 34658 55.424398582336 0 +71 34661 55.424398582336 0 +71 34661 55.424398582336 0 +71 34667 55.424558582336 0 +71 34667 55.424558582336 0 +71 34693 55.431276835478 0 +71 34693 55.431276835478 0 +71 34702 55.431436835478 0 +71 34702 55.431436835478 0 +71 34720 55.45738413635 0 +71 34720 55.45738413635 0 +71 34729 55.45754413635 0 +71 34729 55.45754413635 0 +71 34755 55.543993713581 0 +71 34755 55.543993713581 0 +71 34764 55.544153713581 0 +71 34764 55.544153713581 0 +71 34784 55.724398582336 0 +71 34784 55.724398582336 2 +71 34785 55.724398582336 2 +71 34785 55.724398582336 0 +71 34788 55.724398582336 0 +71 34788 55.724398582336 0 +71 34794 55.724558582336 0 +71 34794 55.724558582336 0 +71 34820 55.731276835709 0 +71 34820 55.731276835709 0 +71 34829 55.731436835709 0 +71 34829 55.731436835709 0 +71 34847 55.757384135289 0 +71 34847 55.757384135289 0 +71 34856 55.757544135289 0 +71 34856 55.757544135289 0 +71 34882 55.843993717083 0 +71 34882 55.843993717083 0 +71 34891 55.844153717083 0 +71 34891 55.844153717083 0 +71 34911 56.024398582336 0 +71 34911 56.024398582336 2 +71 34912 56.024398582336 2 +71 34912 56.024398582336 0 +71 34915 56.024398582336 0 +71 34915 56.024398582336 0 +71 34921 56.024558582336 0 +71 34921 56.024558582336 0 +71 34947 56.031276836125 0 +71 34947 56.031276836125 0 +71 34956 56.031436836125 0 +71 34956 56.031436836125 0 +71 34974 56.057384135209 0 +71 34974 56.057384135209 0 +71 34983 56.057544135209 0 +71 34983 56.057544135209 0 +71 35009 56.143993720633 0 +71 35009 56.143993720633 0 +71 35018 56.144153720633 0 +71 35018 56.144153720633 0 +71 35038 56.324398582336 0 +71 35038 56.324398582336 2 +71 35039 56.324398582336 2 +71 35039 56.324398582336 0 +71 35042 56.324398582336 0 +71 35042 56.324398582336 0 +71 35048 56.324558582336 0 +71 35048 56.324558582336 0 +71 35074 56.331276836745 0 +71 35074 56.331276836745 0 +71 35083 56.331436836745 0 +71 35083 56.331436836745 0 +71 35100 56.357384136092 0 +71 35100 56.357384136092 0 +71 35105 56.357544136092 0 +71 35105 56.357544136092 0 +71 35136 56.443993724089 0 +71 35136 56.443993724089 0 +71 35145 56.444153724089 0 +71 35145 56.444153724089 0 +71 35163 56.624398582336 0 +71 35163 56.624398582336 2 +71 35164 56.624398582336 2 +71 35164 56.624398582336 0 +71 35167 56.624398582336 0 +71 35167 56.624398582336 0 +71 35172 56.624558582336 0 +71 35172 56.624558582336 0 +71 35193 56.631276837493 0 +71 35193 56.631276837493 0 +71 35201 56.631436837493 0 +71 35201 56.631436837493 0 +71 35217 56.657384137925 0 +71 35217 56.657384137925 0 +71 35221 56.657544137925 0 +71 35221 56.657544137925 0 +71 35247 56.924398582336 0 +71 35247 56.924398582336 2 +71 35248 56.924398582336 2 +71 35248 56.924398582336 0 +71 35251 56.924398582336 0 +71 35251 56.924398582336 0 +71 35256 56.924558582336 0 +71 35256 56.924558582336 0 +71 35277 56.931276842253 0 +71 35277 56.931276842253 0 +71 35285 56.931436842253 0 +71 35285 56.931436842253 0 +71 35301 56.957384140796 0 +71 35301 56.957384140796 0 +71 35305 56.957544140796 0 +71 35305 56.957544140796 0 +71 35331 57.224398582336 0 +71 35331 57.224398582336 2 +71 35332 57.224398582336 2 +71 35332 57.224398582336 0 +71 35335 57.224398582336 0 +71 35335 57.224398582336 0 +71 35340 57.224558582336 0 +71 35340 57.224558582336 0 +71 35361 57.231276850523 0 +71 35361 57.231276850523 0 +71 35369 57.231436850523 0 +71 35369 57.231436850523 0 +71 35385 57.257384144754 0 +71 35385 57.257384144754 0 +71 35389 57.257544144754 0 +71 35389 57.257544144754 0 +71 35415 57.524398582336 0 +71 35415 57.524398582336 2 +71 35416 57.524398582336 2 +71 35416 57.524398582336 0 +71 35419 57.524398582336 0 +71 35419 57.524398582336 0 +71 35424 57.524558582336 0 +71 35424 57.524558582336 0 +71 35445 57.53127685508 0 +71 35445 57.53127685508 0 +71 35453 57.53143685508 0 +71 35453 57.53143685508 0 +71 35470 57.557384149775 0 +71 35470 57.557384149775 0 +71 35478 57.557544149775 0 +71 35478 57.557544149775 0 +71 35499 57.824398582336 0 +71 35499 57.824398582336 2 +71 35500 57.824398582336 2 +71 35500 57.824398582336 0 +71 35503 57.824398582336 0 +71 35503 57.824398582336 0 +71 35508 57.824558582336 0 +71 35508 57.824558582336 0 +71 35529 57.831276859492 0 +71 35529 57.831276859492 0 +71 35537 57.831436859492 0 +71 35537 57.831436859492 0 +71 35554 57.857384155686 0 +71 35554 57.857384155686 0 +71 35562 57.857544155686 0 +71 35562 57.857544155686 0 +71 35583 58.124398582336 0 +71 35583 58.124398582336 2 +71 35584 58.124398582336 2 +71 35584 58.124398582336 0 +71 35587 58.124398582336 0 +71 35587 58.124398582336 0 +71 35592 58.124558582336 0 +71 35592 58.124558582336 0 +71 35613 58.131276864633 0 +71 35613 58.131276864633 0 +71 35621 58.131436864633 0 +71 35621 58.131436864633 0 +71 35638 58.157384162109 0 +71 35638 58.157384162109 0 +71 35646 58.157544162109 0 +71 35646 58.157544162109 0 +71 35667 58.424398582336 0 +71 35667 58.424398582336 2 +71 35668 58.424398582336 2 +71 35668 58.424398582336 0 +71 35671 58.424398582336 0 +71 35671 58.424398582336 0 +71 35676 58.424558582336 0 +71 35676 58.424558582336 0 +71 35697 58.431276870558 0 +71 35697 58.431276870558 0 +71 35705 58.431436870558 0 +71 35705 58.431436870558 0 +71 35722 58.457384169083 0 +71 35722 58.457384169083 0 +71 35730 58.457544169083 0 +71 35730 58.457544169083 0 +71 35751 58.724398582336 0 +71 35751 58.724398582336 2 +71 35752 58.724398582336 2 +71 35752 58.724398582336 0 +71 35755 58.724398582336 0 +71 35755 58.724398582336 0 +71 35760 58.724558582336 0 +71 35760 58.724558582336 0 +71 35781 58.731276877253 0 +71 35781 58.731276877253 0 +71 35789 58.731436877253 0 +71 35789 58.731436877253 0 +71 35806 58.757384176569 0 +71 35806 58.757384176569 0 +71 35814 58.757544176569 0 +71 35814 58.757544176569 0 +71 35835 59.024398582336 0 +71 35835 59.024398582336 2 +71 35836 59.024398582336 2 +71 35836 59.024398582336 0 +71 35839 59.024398582336 0 +71 35839 59.024398582336 0 +71 35844 59.024558582336 0 +71 35844 59.024558582336 0 +71 35865 59.031276884805 0 +71 35865 59.031276884805 0 +71 35873 59.031436884805 0 +71 35873 59.031436884805 0 +71 35890 59.057384184524 0 +71 35890 59.057384184524 0 +71 35898 59.057544184524 0 +71 35898 59.057544184524 0 +71 35919 59.324398582336 0 +71 35919 59.324398582336 2 +71 35920 59.324398582336 2 +71 35920 59.324398582336 0 +71 35923 59.324398582336 0 +71 35923 59.324398582336 0 +71 35928 59.324558582336 0 +71 35928 59.324558582336 0 +71 35949 59.331276893239 0 +71 35949 59.331276893239 0 +71 35957 59.331436893239 0 +71 35957 59.331436893239 0 +71 35974 59.357384192972 0 +71 35974 59.357384192972 0 +71 35982 59.357544192972 0 +71 35982 59.357544192972 0 +71 36003 59.624398582336 0 +71 36003 59.624398582336 2 +71 36004 59.624398582336 2 +71 36004 59.624398582336 0 +71 36007 59.624398582336 0 +71 36007 59.624398582336 0 +71 36012 59.624558582336 0 +71 36012 59.624558582336 0 +71 36033 59.631276902575 0 +71 36033 59.631276902575 0 +71 36041 59.631436902575 0 +71 36041 59.631436902575 0 +71 36058 59.657384201866 0 +71 36058 59.657384201866 0 +71 36066 59.657544201866 0 +71 36066 59.657544201866 0 +71 36087 59.924398582336 0 +71 36087 59.924398582336 2 +71 36088 59.924398582336 2 +71 36088 59.924398582336 0 +71 36091 59.924398582336 0 +71 36091 59.924398582336 0 +71 36096 59.924558582336 0 +71 36096 59.924558582336 0 +71 36117 59.931276912849 0 +71 36117 59.931276912849 0 +71 36125 59.931436912849 0 +71 36125 59.931436912849 0 +71 36142 59.957384211172 0 +71 36142 59.957384211172 0 +71 36150 59.957544211172 0 +71 36150 59.957544211172 0 +71 36171 60.224398582336 0 +71 36171 60.224398582336 2 +71 36172 60.224398582336 2 +71 36172 60.224398582336 0 +71 36175 60.224398582336 0 +71 36175 60.224398582336 0 +71 36180 60.224558582336 0 +71 36180 60.224558582336 0 +71 36218 60.257384220865 0 +71 36218 60.257384220865 0 +71 36226 60.257544220865 0 +71 36226 60.257544220865 0 +71 36247 60.524398582336 0 +71 36247 60.524398582336 2 +71 36248 60.524398582336 2 +71 36248 60.524398582336 0 +71 36251 60.524398582336 0 +71 36251 60.524398582336 0 +71 36256 60.524558582336 0 +71 36256 60.524558582336 0 +71 36294 60.557384230953 0 +71 36294 60.557384230953 0 +71 36302 60.557544230953 0 +71 36302 60.557544230953 0 +71 36323 60.824398582336 0 +71 36323 60.824398582336 2 +71 36324 60.824398582336 2 +71 36324 60.824398582336 0 +71 36327 60.824398582336 0 +71 36327 60.824398582336 0 +71 36332 60.824558582336 0 +71 36332 60.824558582336 0 +71 36370 60.857384241392 0 +71 36370 60.857384241392 0 +71 36378 60.857544241392 0 +71 36378 60.857544241392 0 +71 36399 61.124398582336 0 +71 36399 61.124398582336 2 +71 36400 61.124398582336 2 +71 36400 61.124398582336 0 +71 36403 61.124398582336 0 +71 36403 61.124398582336 0 +71 36408 61.124558582336 0 +71 36408 61.124558582336 0 +71 36446 61.157384252127 0 +71 36446 61.157384252127 0 +71 36454 61.157544252127 0 +71 36454 61.157544252127 0 +71 36475 61.424398582336 0 +71 36475 61.424398582336 2 +71 36476 61.424398582336 2 +71 36476 61.424398582336 0 +71 36479 61.424398582336 0 +71 36479 61.424398582336 0 +71 36484 61.424558582336 0 +71 36484 61.424558582336 0 +71 36522 61.45738426323 0 +71 36522 61.45738426323 0 +71 36530 61.45754426323 0 +71 36530 61.45754426323 0 +71 36551 61.724398582336 0 +71 36551 61.724398582336 2 +71 36552 61.724398582336 2 +71 36552 61.724398582336 0 +71 36555 61.724398582336 0 +71 36555 61.724398582336 0 +71 36560 61.724558582336 0 +71 36560 61.724558582336 0 +71 36598 61.757384274635 0 +71 36598 61.757384274635 0 +71 36606 61.757544274635 0 +71 36606 61.757544274635 0 +71 36627 62.024398582336 0 +71 36627 62.024398582336 2 +71 36628 62.024398582336 2 +71 36628 62.024398582336 0 +71 36631 62.024398582336 0 +71 36631 62.024398582336 0 +71 36636 62.024558582336 0 +71 36636 62.024558582336 0 +71 36674 62.057384285728 0 +71 36674 62.057384285728 0 +71 36682 62.057544285728 0 +71 36682 62.057544285728 0 +71 36703 62.324398582336 0 +71 36703 62.324398582336 2 +71 36704 62.324398582336 2 +71 36704 62.324398582336 0 +71 36707 62.324398582336 0 +71 36707 62.324398582336 0 +71 36712 62.324558582336 0 +71 36712 62.324558582336 0 +71 36750 62.357384295767 0 +71 36750 62.357384295767 0 +71 36758 62.357544295767 0 +71 36758 62.357544295767 0 +71 36779 62.624398582336 0 +71 36779 62.624398582336 2 +71 36780 62.624398582336 2 +71 36780 62.624398582336 0 +71 36783 62.624398582336 0 +71 36783 62.624398582336 0 +71 36788 62.624558582336 0 +71 36788 62.624558582336 0 +71 36826 62.657384304708 0 +71 36826 62.657384304708 0 +71 36834 62.657544304708 0 +71 36834 62.657544304708 0 +71 36855 62.924398582336 0 +71 36855 62.924398582336 2 +71 36856 62.924398582336 2 +71 36856 62.924398582336 0 +71 36859 62.924398582336 0 +71 36859 62.924398582336 0 +71 36864 62.924558582336 0 +71 36864 62.924558582336 0 +71 36902 62.957384312531 0 +71 36902 62.957384312531 0 +71 36910 62.957544312531 0 +71 36910 62.957544312531 0 +72 1262 6.1 0 +72 1262 6.1 0 +72 1285 6.214557014941 0 +72 1285 6.214557014941 0 +72 1292 6.214717014941 0 +72 1292 6.214717014941 0 +72 1319 6.231276487063 0 +72 1319 6.231276487063 0 +72 1326 6.231436487063 0 +72 1326 6.231436487063 0 +72 1358 6.257384178941 0 +72 1358 6.257384178941 0 +72 1369 6.257544178941 0 +72 1369 6.257544178941 0 +72 1468 6.514557005507 0 +72 1468 6.514557005507 0 +72 1475 6.514717005507 0 +72 1475 6.514717005507 0 +72 1499 6.524398582336 0 +72 1499 6.524398582336 0 +72 1507 6.524558582336 0 +72 1507 6.524558582336 0 +72 1535 6.531276486831 0 +72 1535 6.531276486831 0 +72 1542 6.531436486831 0 +72 1542 6.531436486831 0 +72 1575 6.557384179276 0 +72 1575 6.557384179276 0 +72 1586 6.557544179276 0 +72 1586 6.557544179276 0 +72 1685 6.814556995188 0 +72 1685 6.814556995188 0 +72 1692 6.814716995188 0 +72 1692 6.814716995188 0 +72 1716 6.824398582336 0 +72 1716 6.824398582336 0 +72 1724 6.824558582336 0 +72 1724 6.824558582336 0 +72 1752 6.831276486811 0 +72 1752 6.831276486811 0 +72 1759 6.831436486811 0 +72 1759 6.831436486811 0 +72 1792 6.857384179479 0 +72 1792 6.857384179479 0 +72 1803 6.857544179479 0 +72 1803 6.857544179479 0 +72 1902 7.114556984223 0 +72 1902 7.114556984223 0 +72 1909 7.114716984223 0 +72 1909 7.114716984223 0 +72 1933 7.124398582336 0 +72 1933 7.124398582336 0 +72 1941 7.124558582336 0 +72 1941 7.124558582336 0 +72 1969 7.131276486808 0 +72 1969 7.131276486808 0 +72 1976 7.131436486808 0 +72 1976 7.131436486808 0 +72 2009 7.157384179668 0 +72 2009 7.157384179668 0 +72 2020 7.157544179668 0 +72 2020 7.157544179668 0 +72 2119 7.414556972819 0 +72 2119 7.414556972819 0 +72 2126 7.414716972819 0 +72 2126 7.414716972819 0 +72 2150 7.424398582336 0 +72 2150 7.424398582336 0 +72 2158 7.424558582336 0 +72 2158 7.424558582336 0 +72 2186 7.431276486796 0 +72 2186 7.431276486796 0 +72 2193 7.431436486796 0 +72 2193 7.431436486796 0 +72 2226 7.45738417987 0 +72 2226 7.45738417987 0 +72 2237 7.45754417987 0 +72 2237 7.45754417987 0 +72 2336 7.714556960939 0 +72 2336 7.714556960939 0 +72 2343 7.714716960939 0 +72 2343 7.714716960939 0 +72 2367 7.724398582336 0 +72 2367 7.724398582336 0 +72 2375 7.724558582336 0 +72 2375 7.724558582336 0 +72 2403 7.731276486797 0 +72 2403 7.731276486797 0 +72 2410 7.731436486797 0 +72 2410 7.731436486797 0 +72 2443 7.757384180075 0 +72 2443 7.757384180075 0 +72 2454 7.757544180075 0 +72 2454 7.757544180075 0 +72 2553 8.014556948475 0 +72 2553 8.014556948475 0 +72 2560 8.014716948475 0 +72 2560 8.014716948475 0 +72 2584 8.024398582336 0 +72 2584 8.024398582336 0 +72 2592 8.024558582336 0 +72 2592 8.024558582336 0 +72 2620 8.031276486795 0 +72 2620 8.031276486795 0 +72 2627 8.031436486795 0 +72 2627 8.031436486795 0 +72 2660 8.057384180287 0 +72 2660 8.057384180287 0 +72 2671 8.057544180287 0 +72 2671 8.057544180287 0 +72 2728 8.143993909962 0 +72 2728 8.143993909962 0 +72 2743 8.144153909962 0 +72 2743 8.144153909962 0 +72 2770 8.314556935291 0 +72 2770 8.314556935291 0 +72 2777 8.314716935291 0 +72 2777 8.314716935291 0 +72 2801 8.324398582336 0 +72 2801 8.324398582336 0 +72 2809 8.324558582336 0 +72 2809 8.324558582336 0 +72 2841 8.331276486806 0 +72 2841 8.331276486806 0 +72 2848 8.331436486806 0 +72 2848 8.331436486806 0 +72 2881 8.3573841805 0 +72 2881 8.3573841805 0 +72 2892 8.3575441805 0 +72 2892 8.3575441805 0 +72 2949 8.443993908226 0 +72 2949 8.443993908226 0 +72 2964 8.444153908226 0 +72 2964 8.444153908226 0 +72 2995 8.61455692156 0 +72 2995 8.61455692156 0 +72 3002 8.61471692156 0 +72 3002 8.61471692156 0 +72 3026 8.624398582336 0 +72 3026 8.624398582336 0 +72 3034 8.624558582336 0 +72 3034 8.624558582336 0 +72 3066 8.631276486794 0 +72 3066 8.631276486794 0 +72 3073 8.631436486794 0 +72 3073 8.631436486794 0 +72 3106 8.657384180719 0 +72 3106 8.657384180719 0 +72 3117 8.657544180719 0 +72 3117 8.657544180719 0 +72 3174 8.743993906406 0 +72 3174 8.743993906406 0 +72 3189 8.744153906406 0 +72 3189 8.744153906406 0 +72 3220 8.914556907259 0 +72 3220 8.914556907259 0 +72 3227 8.914716907259 0 +72 3227 8.914716907259 0 +72 3251 8.924398582336 0 +72 3251 8.924398582336 0 +72 3259 8.924558582336 0 +72 3259 8.924558582336 0 +72 3291 8.931276486763 0 +72 3291 8.931276486763 0 +72 3298 8.931436486763 0 +72 3298 8.931436486763 0 +72 3331 8.957384180943 0 +72 3331 8.957384180943 0 +72 3342 8.957544180943 0 +72 3342 8.957544180943 0 +72 3399 9.04399390454 0 +72 3399 9.04399390454 0 +72 3414 9.04415390454 0 +72 3414 9.04415390454 0 +72 3445 9.214556892419 0 +72 3445 9.214556892419 0 +72 3452 9.214716892419 0 +72 3452 9.214716892419 0 +72 3476 9.224398582336 0 +72 3476 9.224398582336 0 +72 3484 9.224558582336 0 +72 3484 9.224558582336 0 +72 3516 9.23127648678 0 +72 3516 9.23127648678 0 +72 3523 9.23143648678 0 +72 3523 9.23143648678 0 +72 3556 9.257384181166 0 +72 3556 9.257384181166 0 +72 3567 9.257544181166 0 +72 3567 9.257544181166 0 +72 3624 9.343993902652 0 +72 3624 9.343993902652 0 +72 3639 9.344153902652 0 +72 3639 9.344153902652 0 +72 3670 9.514556877151 0 +72 3670 9.514556877151 0 +72 3677 9.514716877151 0 +72 3677 9.514716877151 0 +72 3701 9.524398582336 0 +72 3701 9.524398582336 0 +72 3709 9.524558582336 0 +72 3709 9.524558582336 0 +72 3741 9.531276486774 0 +72 3741 9.531276486774 0 +72 3748 9.531436486774 0 +72 3748 9.531436486774 0 +72 3781 9.557384181399 0 +72 3781 9.557384181399 0 +72 3792 9.557544181399 0 +72 3792 9.557544181399 0 +72 3849 9.643993900772 0 +72 3849 9.643993900772 0 +72 3864 9.644153900772 0 +72 3864 9.644153900772 0 +72 3895 9.814556861723 0 +72 3895 9.814556861723 0 +72 3902 9.814716861723 0 +72 3902 9.814716861723 0 +72 3926 9.824398582336 0 +72 3926 9.824398582336 0 +72 3934 9.824558582336 0 +72 3934 9.824558582336 0 +72 3966 9.831276486773 0 +72 3966 9.831276486773 0 +72 3973 9.831436486773 0 +72 3973 9.831436486773 0 +72 4006 9.857384181638 0 +72 4006 9.857384181638 0 +72 4017 9.857544181638 0 +72 4017 9.857544181638 0 +72 4074 9.943993898897 0 +72 4074 9.943993898897 0 +72 4089 9.944153898897 0 +72 4089 9.944153898897 0 +72 4120 10.114556846518 0 +72 4120 10.114556846518 0 +72 4127 10.114716846518 0 +72 4127 10.114716846518 0 +72 4151 10.124398582336 0 +72 4151 10.124398582336 0 +72 4159 10.124558582336 0 +72 4159 10.124558582336 0 +72 4191 10.131276486772 0 +72 4191 10.131276486772 0 +72 4198 10.131436486772 0 +72 4198 10.131436486772 0 +72 4231 10.157384181883 0 +72 4231 10.157384181883 0 +72 4242 10.157544181883 0 +72 4242 10.157544181883 0 +72 4299 10.243993897044 0 +72 4299 10.243993897044 0 +72 4314 10.244153897044 0 +72 4314 10.244153897044 0 +72 4345 10.414556831999 0 +72 4345 10.414556831999 0 +72 4352 10.414716831999 0 +72 4352 10.414716831999 0 +72 4376 10.424398582336 0 +72 4376 10.424398582336 0 +72 4384 10.424558582336 0 +72 4384 10.424558582336 0 +72 4416 10.431276486761 0 +72 4416 10.431276486761 0 +72 4423 10.431436486761 0 +72 4423 10.431436486761 0 +72 4456 10.457384182119 0 +72 4456 10.457384182119 0 +72 4467 10.457544182119 0 +72 4467 10.457544182119 0 +72 4524 10.54399389528 0 +72 4524 10.54399389528 0 +72 4539 10.54415389528 0 +72 4539 10.54415389528 0 +72 4574 10.714556820945 0 +72 4574 10.714556820945 0 +72 4581 10.714716820945 0 +72 4581 10.714716820945 0 +72 4609 10.724398582336 0 +72 4609 10.724398582336 0 +72 4617 10.724558582336 0 +72 4617 10.724558582336 0 +72 4649 10.731276486773 0 +72 4649 10.731276486773 0 +72 4656 10.731436486773 0 +72 4656 10.731436486773 0 +72 4689 10.757384182346 0 +72 4689 10.757384182346 0 +72 4700 10.757544182346 0 +72 4700 10.757544182346 0 +72 4758 10.843993893701 0 +72 4758 10.843993893701 0 +72 4777 10.844153893701 0 +72 4777 10.844153893701 0 +72 4807 11.014556825169 0 +72 4807 11.014556825169 0 +72 4814 11.014716825169 0 +72 4814 11.014716825169 0 +72 4842 11.024398582336 0 +72 4842 11.024398582336 0 +72 4850 11.024558582336 0 +72 4850 11.024558582336 0 +72 4883 11.031276486765 0 +72 4883 11.031276486765 0 +72 4894 11.031436486765 0 +72 4894 11.031436486765 0 +72 4922 11.057384182606 0 +72 4922 11.057384182606 0 +72 4933 11.057544182606 0 +72 4933 11.057544182606 0 +72 4991 11.14399389274 0 +72 4991 11.14399389274 0 +72 5010 11.14415389274 0 +72 5010 11.14415389274 0 +72 5040 11.31455683863 0 +72 5040 11.31455683863 0 +72 5047 11.31471683863 0 +72 5047 11.31471683863 0 +72 5075 11.324398582336 0 +72 5075 11.324398582336 0 +72 5083 11.324558582336 0 +72 5083 11.324558582336 0 +72 5116 11.33127648678 0 +72 5116 11.33127648678 0 +72 5127 11.33143648678 0 +72 5127 11.33143648678 0 +72 5154 11.35738418284 0 +72 5154 11.35738418284 0 +72 5161 11.35754418284 0 +72 5161 11.35754418284 0 +72 5224 11.443993892392 0 +72 5224 11.443993892392 0 +72 5243 11.444153892392 0 +72 5243 11.444153892392 0 +72 5273 11.614556853551 0 +72 5273 11.614556853551 0 +72 5280 11.614716853551 0 +72 5280 11.614716853551 0 +72 5308 11.624398582336 0 +72 5308 11.624398582336 0 +72 5316 11.624558582336 0 +72 5316 11.624558582336 0 +72 5349 11.63127648679 0 +72 5349 11.63127648679 0 +72 5360 11.63143648679 0 +72 5360 11.63143648679 0 +72 5391 11.65738418309 0 +72 5391 11.65738418309 0 +72 5398 11.65754418309 0 +72 5398 11.65754418309 0 +72 5465 11.74399389255 0 +72 5465 11.74399389255 0 +72 5484 11.74415389255 0 +72 5484 11.74415389255 0 +72 5514 11.914556868865 0 +72 5514 11.914556868865 0 +72 5521 11.914716868865 0 +72 5521 11.914716868865 0 +72 5549 11.924398582336 0 +72 5549 11.924398582336 0 +72 5557 11.924558582336 0 +72 5557 11.924558582336 0 +72 5590 11.931276486788 0 +72 5590 11.931276486788 0 +72 5601 11.931436486788 0 +72 5601 11.931436486788 0 +72 5632 11.957384183349 0 +72 5632 11.957384183349 0 +72 5639 11.957544183349 0 +72 5639 11.957544183349 0 +72 5706 12.043993893167 0 +72 5706 12.043993893167 0 +72 5725 12.044153893167 0 +72 5725 12.044153893167 0 +72 5755 12.214556884343 0 +72 5755 12.214556884343 0 +72 5762 12.214716884343 0 +72 5762 12.214716884343 0 +72 5790 12.224398582336 0 +72 5790 12.224398582336 0 +72 5798 12.224558582336 0 +72 5798 12.224558582336 0 +72 5831 12.231276486807 0 +72 5831 12.231276486807 0 +72 5842 12.231436486807 0 +72 5842 12.231436486807 0 +72 5873 12.257384183599 0 +72 5873 12.257384183599 0 +72 5880 12.257544183599 0 +72 5880 12.257544183599 0 +72 5947 12.343993893974 0 +72 5947 12.343993893974 0 +72 5966 12.344153893974 0 +72 5966 12.344153893974 0 +72 5996 12.514556899849 0 +72 5996 12.514556899849 0 +72 6003 12.514716899849 0 +72 6003 12.514716899849 0 +72 6031 12.524398582336 0 +72 6031 12.524398582336 0 +72 6039 12.524558582336 0 +72 6039 12.524558582336 0 +72 6072 12.531276486799 0 +72 6072 12.531276486799 0 +72 6083 12.531436486799 0 +72 6083 12.531436486799 0 +72 6114 12.557384183875 0 +72 6114 12.557384183875 0 +72 6121 12.557544183875 0 +72 6121 12.557544183875 0 +72 6188 12.643993894778 0 +72 6188 12.643993894778 0 +72 6207 12.644153894778 0 +72 6207 12.644153894778 0 +72 6237 12.814556915398 0 +72 6237 12.814556915398 0 +72 6244 12.814716915398 0 +72 6244 12.814716915398 0 +72 6272 12.824398582336 0 +72 6272 12.824398582336 0 +72 6280 12.824558582336 0 +72 6280 12.824558582336 0 +72 6313 12.831276486802 0 +72 6313 12.831276486802 0 +72 6324 12.831436486802 0 +72 6324 12.831436486802 0 +72 6355 12.857384184139 0 +72 6355 12.857384184139 0 +72 6362 12.857544184139 0 +72 6362 12.857544184139 0 +72 6429 12.943993895594 0 +72 6429 12.943993895594 0 +72 6448 12.944153895594 0 +72 6448 12.944153895594 0 +72 6478 13.114556930999 0 +72 6478 13.114556930999 0 +72 6485 13.114716930999 0 +72 6485 13.114716930999 0 +72 6513 13.124398582336 0 +72 6513 13.124398582336 0 +72 6521 13.124558582336 0 +72 6521 13.124558582336 0 +72 6554 13.131276486785 0 +72 6554 13.131276486785 0 +72 6565 13.131436486785 0 +72 6565 13.131436486785 0 +72 6596 13.157384184416 0 +72 6596 13.157384184416 0 +72 6603 13.157544184416 0 +72 6603 13.157544184416 0 +72 6670 13.243993896412 0 +72 6670 13.243993896412 0 +72 6689 13.244153896412 0 +72 6689 13.244153896412 0 +72 6719 13.41455694659 0 +72 6719 13.41455694659 0 +72 6726 13.41471694659 0 +72 6726 13.41471694659 0 +72 6754 13.424398582336 0 +72 6754 13.424398582336 0 +72 6762 13.424558582336 0 +72 6762 13.424558582336 0 +72 6795 13.431276486795 0 +72 6795 13.431276486795 0 +72 6806 13.431436486795 0 +72 6806 13.431436486795 0 +72 6837 13.457384184698 0 +72 6837 13.457384184698 0 +72 6844 13.457544184698 0 +72 6844 13.457544184698 0 +72 6911 13.543993897233 0 +72 6911 13.543993897233 0 +72 6930 13.544153897233 0 +72 6930 13.544153897233 0 +72 6960 13.714556962198 0 +72 6960 13.714556962198 0 +72 6967 13.714716962198 0 +72 6967 13.714716962198 0 +72 6995 13.724398582336 0 +72 6995 13.724398582336 0 +72 7003 13.724558582336 0 +72 7003 13.724558582336 0 +72 7036 13.7312764868 0 +72 7036 13.7312764868 0 +72 7047 13.7314364868 0 +72 7047 13.7314364868 0 +72 7078 13.757384184966 0 +72 7078 13.757384184966 0 +72 7085 13.757544184966 0 +72 7085 13.757544184966 0 +72 7152 13.843993898057 0 +72 7152 13.843993898057 0 +72 7171 13.844153898057 0 +72 7171 13.844153898057 0 +72 7202 14.014556977862 0 +72 7202 14.014556977862 0 +72 7213 14.014716977862 0 +72 7213 14.014716977862 0 +72 7236 14.024398582336 0 +72 7236 14.024398582336 0 +72 7244 14.024558582336 0 +72 7244 14.024558582336 0 +72 7277 14.031276486793 0 +72 7277 14.031276486793 0 +72 7288 14.031436486793 0 +72 7288 14.031436486793 0 +72 7319 14.057384185242 0 +72 7319 14.057384185242 0 +72 7326 14.057544185242 0 +72 7326 14.057544185242 0 +72 7393 14.14399389887 0 +72 7393 14.14399389887 0 +72 7412 14.14415389887 0 +72 7412 14.14415389887 0 +72 7443 14.314556993496 0 +72 7443 14.314556993496 0 +72 7454 14.314716993496 0 +72 7454 14.314716993496 0 +72 7477 14.324398582336 0 +72 7477 14.324398582336 0 +72 7485 14.324558582336 0 +72 7485 14.324558582336 0 +72 7518 14.331276486806 0 +72 7518 14.331276486806 0 +72 7529 14.331436486806 0 +72 7529 14.331436486806 0 +72 7560 14.357384185527 0 +72 7560 14.357384185527 0 +72 7567 14.357544185527 0 +72 7567 14.357544185527 0 +72 7634 14.443993899694 0 +72 7634 14.443993899694 0 +72 7653 14.444153899694 0 +72 7653 14.444153899694 0 +72 7684 14.614557009101 0 +72 7684 14.614557009101 0 +72 7695 14.614717009101 0 +72 7695 14.614717009101 0 +72 7718 14.624398582336 0 +72 7718 14.624398582336 0 +72 7726 14.624558582336 0 +72 7726 14.624558582336 0 +72 7759 14.631276486796 0 +72 7759 14.631276486796 0 +72 7770 14.631436486796 0 +72 7770 14.631436486796 0 +72 7801 14.657384185824 0 +72 7801 14.657384185824 0 +72 7808 14.657544185824 0 +72 7808 14.657544185824 0 +72 7875 14.743993900511 0 +72 7875 14.743993900511 0 +72 7894 14.744153900511 0 +72 7894 14.744153900511 0 +72 7925 14.914557024712 0 +72 7925 14.914557024712 0 +72 7936 14.914717024712 0 +72 7936 14.914717024712 0 +72 7959 14.924398582336 0 +72 7959 14.924398582336 0 +72 7967 14.924558582336 0 +72 7967 14.924558582336 0 +72 8000 14.931276486792 0 +72 8000 14.931276486792 0 +72 8011 14.931436486792 0 +72 8011 14.931436486792 0 +72 8042 14.957384186118 0 +72 8042 14.957384186118 0 +72 8049 14.957544186118 0 +72 8049 14.957544186118 0 +72 8116 15.043993901332 0 +72 8116 15.043993901332 0 +72 8135 15.044153901332 0 +72 8135 15.044153901332 0 +72 8166 15.214557040331 0 +72 8166 15.214557040331 0 +72 8177 15.214717040331 0 +72 8177 15.214717040331 0 +72 8200 15.224398582336 0 +72 8200 15.224398582336 0 +72 8208 15.224558582336 0 +72 8208 15.224558582336 0 +72 8241 15.231276486777 0 +72 8241 15.231276486777 0 +72 8252 15.231436486777 0 +72 8252 15.231436486777 0 +72 8283 15.257384186413 0 +72 8283 15.257384186413 0 +72 8290 15.257544186413 0 +72 8290 15.257544186413 0 +72 8357 15.343993902158 0 +72 8357 15.343993902158 0 +72 8376 15.344153902158 0 +72 8376 15.344153902158 0 +72 8407 15.514557055996 0 +72 8407 15.514557055996 0 +72 8418 15.514717055996 0 +72 8418 15.514717055996 0 +72 8441 15.524398582336 0 +72 8441 15.524398582336 0 +72 8449 15.524558582336 0 +72 8449 15.524558582336 0 +72 8482 15.531276486786 0 +72 8482 15.531276486786 0 +72 8493 15.531436486786 0 +72 8493 15.531436486786 0 +72 8524 15.557384186718 0 +72 8524 15.557384186718 0 +72 8531 15.557544186718 0 +72 8531 15.557544186718 0 +72 8598 15.643993902982 0 +72 8598 15.643993902982 0 +72 8617 15.644153902982 0 +72 8617 15.644153902982 0 +72 8648 15.81455707161 0 +72 8648 15.81455707161 0 +72 8659 15.81471707161 0 +72 8659 15.81471707161 0 +72 8682 15.824398582336 0 +72 8682 15.824398582336 0 +72 8690 15.824558582336 0 +72 8690 15.824558582336 0 +72 8723 15.831276486807 0 +72 8723 15.831276486807 0 +72 8734 15.831436486807 0 +72 8734 15.831436486807 0 +72 8765 15.857384187027 0 +72 8765 15.857384187027 0 +72 8772 15.857544187027 0 +72 8772 15.857544187027 0 +72 8839 15.943993903822 0 +72 8839 15.943993903822 0 +72 8858 15.944153903822 0 +72 8858 15.944153903822 0 +72 8889 16.11455708724 0 +72 8889 16.11455708724 0 +72 8900 16.11471708724 0 +72 8900 16.11471708724 0 +72 8927 16.124398582336 0 +72 8927 16.124398582336 0 +72 8935 16.124558582336 0 +72 8935 16.124558582336 0 +72 8968 16.131276486791 0 +72 8968 16.131276486791 0 +72 8979 16.131436486791 0 +72 8979 16.131436486791 0 +72 9010 16.157384187335 0 +72 9010 16.157384187335 0 +72 9017 16.157544187335 0 +72 9017 16.157544187335 0 +72 9088 16.243993904634 0 +72 9088 16.243993904634 0 +72 9107 16.244153904634 0 +72 9107 16.244153904634 0 +72 9138 16.414557102881 0 +72 9138 16.414557102881 0 +72 9149 16.414717102881 0 +72 9149 16.414717102881 0 +72 9176 16.424398582336 0 +72 9176 16.424398582336 0 +72 9184 16.424558582336 0 +72 9184 16.424558582336 0 +72 9217 16.431276486767 0 +72 9217 16.431276486767 0 +72 9228 16.431436486767 0 +72 9228 16.431436486767 0 +72 9259 16.45738418766 0 +72 9259 16.45738418766 0 +72 9266 16.45754418766 0 +72 9266 16.45754418766 0 +72 9337 16.543993905451 0 +72 9337 16.543993905451 0 +72 9356 16.544153905451 0 +72 9356 16.544153905451 0 +72 9387 16.714557118536 0 +72 9387 16.714557118536 0 +72 9398 16.714717118536 0 +72 9398 16.714717118536 0 +72 9425 16.724398582336 0 +72 9425 16.724398582336 0 +72 9433 16.724558582336 0 +72 9433 16.724558582336 0 +72 9466 16.731276486767 0 +72 9466 16.731276486767 0 +72 9477 16.731436486767 0 +72 9477 16.731436486767 0 +72 9508 16.757384187976 0 +72 9508 16.757384187976 0 +72 9515 16.757544187976 0 +72 9515 16.757544187976 0 +72 9586 16.843993906273 0 +72 9586 16.843993906273 0 +72 9605 16.844153906273 0 +72 9605 16.844153906273 0 +72 9636 17.014557134175 0 +72 9636 17.014557134175 0 +72 9647 17.014717134175 0 +72 9647 17.014717134175 0 +72 9674 17.024398582336 0 +72 9674 17.024398582336 0 +72 9682 17.024558582336 0 +72 9682 17.024558582336 0 +72 9715 17.031276486771 0 +72 9715 17.031276486771 0 +72 9726 17.031436486771 0 +72 9726 17.031436486771 0 +72 9757 17.057384188287 0 +72 9757 17.057384188287 0 +72 9764 17.057544188287 0 +72 9764 17.057544188287 0 +72 9835 17.143993907123 0 +72 9835 17.143993907123 0 +72 9854 17.144153907123 0 +72 9854 17.144153907123 0 +72 9885 17.314557149858 0 +72 9885 17.314557149858 0 +72 9896 17.314717149858 0 +72 9896 17.314717149858 0 +72 9923 17.324398582336 0 +72 9923 17.324398582336 0 +72 9931 17.324558582336 0 +72 9931 17.324558582336 0 +72 9964 17.331276486778 0 +72 9964 17.331276486778 0 +72 9975 17.331436486778 0 +72 9975 17.331436486778 0 +72 10006 17.357384188603 0 +72 10006 17.357384188603 0 +72 10013 17.357544188603 0 +72 10013 17.357544188603 0 +72 10084 17.443993907967 0 +72 10084 17.443993907967 0 +72 10103 17.444153907967 0 +72 10103 17.444153907967 0 +72 10134 17.614557165512 0 +72 10134 17.614557165512 0 +72 10145 17.614717165512 0 +72 10145 17.614717165512 0 +72 10172 17.624398582336 0 +72 10172 17.624398582336 0 +72 10180 17.624558582336 0 +72 10180 17.624558582336 0 +72 10213 17.631276486782 0 +72 10213 17.631276486782 0 +72 10224 17.631436486782 0 +72 10224 17.631436486782 0 +72 10255 17.657384188908 0 +72 10255 17.657384188908 0 +72 10262 17.657544188908 0 +72 10262 17.657544188908 0 +72 10333 17.74399390881 0 +72 10333 17.74399390881 0 +72 10352 17.74415390881 0 +72 10352 17.74415390881 0 +72 10383 17.914557181155 0 +72 10383 17.914557181155 0 +72 10394 17.914717181155 0 +72 10394 17.914717181155 0 +72 10417 17.924398582336 0 +72 10417 17.924398582336 0 +72 10425 17.924558582336 0 +72 10425 17.924558582336 0 +72 10458 17.931276486796 0 +72 10458 17.931276486796 0 +72 10469 17.931436486796 0 +72 10469 17.931436486796 0 +72 10500 17.957384189225 0 +72 10500 17.957384189225 0 +72 10507 17.957544189225 0 +72 10507 17.957544189225 0 +72 10574 18.04399390965 0 +72 10574 18.04399390965 0 +72 10593 18.04415390965 0 +72 10593 18.04415390965 0 +72 10625 18.214557196811 0 +72 10625 18.214557196811 0 +72 10640 18.214717196811 0 +72 10640 18.214717196811 0 +72 10658 18.224398582336 0 +72 10658 18.224398582336 0 +72 10666 18.224558582336 0 +72 10666 18.224558582336 0 +72 10695 18.231276486817 0 +72 10695 18.231276486817 0 +72 10706 18.231436486817 0 +72 10706 18.231436486817 0 +72 10737 18.257384189554 0 +72 10737 18.257384189554 0 +72 10744 18.257544189554 0 +72 10744 18.257544189554 0 +72 10811 18.343993910503 0 +72 10811 18.343993910503 0 +72 10830 18.344153910503 0 +72 10830 18.344153910503 0 +72 10858 18.514557211927 0 +72 10858 18.514557211927 0 +72 10873 18.514717211927 0 +72 10873 18.514717211927 0 +72 10891 18.524398582336 0 +72 10891 18.524398582336 0 +72 10899 18.524558582336 0 +72 10899 18.524558582336 0 +72 10928 18.531276486818 0 +72 10928 18.531276486818 0 +72 10939 18.531436486818 0 +72 10939 18.531436486818 0 +72 10970 18.557384189884 0 +72 10970 18.557384189884 0 +72 10977 18.557544189884 0 +72 10977 18.557544189884 0 +72 11091 18.814557220024 0 +72 11091 18.814557220024 0 +72 11106 18.814717220024 0 +72 11106 18.814717220024 0 +72 11124 18.824398582336 0 +72 11124 18.824398582336 0 +72 11132 18.824558582336 0 +72 11132 18.824558582336 0 +72 11161 18.831276486814 0 +72 11161 18.831276486814 0 +72 11172 18.831436486814 0 +72 11172 18.831436486814 0 +72 11203 18.857384190227 0 +72 11203 18.857384190227 0 +72 11210 18.857544190227 0 +72 11210 18.857544190227 0 +72 11324 19.11455722262 0 +72 11324 19.11455722262 0 +72 11339 19.11471722262 0 +72 11339 19.11471722262 0 +72 11357 19.124398582336 0 +72 11357 19.124398582336 0 +72 11365 19.124558582336 0 +72 11365 19.124558582336 0 +72 11394 19.131276486813 0 +72 11394 19.131276486813 0 +72 11405 19.131436486813 0 +72 11405 19.131436486813 0 +72 11436 19.157384190586 0 +72 11436 19.157384190586 0 +72 11443 19.157544190586 0 +72 11443 19.157544190586 0 +72 11557 19.414557225292 0 +72 11557 19.414557225292 0 +72 11572 19.414717225292 0 +72 11572 19.414717225292 0 +72 11590 19.424398582336 0 +72 11590 19.424398582336 0 +72 11598 19.424558582336 0 +72 11598 19.424558582336 0 +72 11627 19.431276486792 0 +72 11627 19.431276486792 0 +72 11638 19.431436486792 0 +72 11638 19.431436486792 0 +72 11669 19.457384190936 0 +72 11669 19.457384190936 0 +72 11676 19.457544190936 0 +72 11676 19.457544190936 0 +72 11790 19.714557228908 0 +72 11790 19.714557228908 0 +72 11805 19.714717228908 0 +72 11805 19.714717228908 0 +72 11823 19.724398582336 0 +72 11823 19.724398582336 0 +72 11831 19.724558582336 0 +72 11831 19.724558582336 0 +72 11860 19.73127648675 0 +72 11860 19.73127648675 0 +72 11871 19.73143648675 0 +72 11871 19.73143648675 0 +72 11902 19.757384191083 0 +72 11902 19.757384191083 0 +72 11909 19.757544191083 0 +72 11909 19.757544191083 0 +72 12023 20.014557233572 0 +72 12023 20.014557233572 0 +72 12038 20.014717233572 0 +72 12038 20.014717233572 0 +72 12060 20.024398582336 0 +72 12060 20.024398582336 0 +72 12068 20.024558582336 0 +72 12068 20.024558582336 0 +72 12097 20.031276486573 0 +72 12097 20.031276486573 0 +72 12108 20.031436486573 0 +72 12108 20.031436486573 0 +72 12139 20.057384190919 0 +72 12139 20.057384190919 0 +72 12146 20.057544190919 0 +72 12146 20.057544190919 0 +72 12264 20.314557239262 0 +72 12264 20.314557239262 0 +72 12279 20.314717239262 0 +72 12279 20.314717239262 0 +72 12301 20.324398582336 0 +72 12301 20.324398582336 0 +72 12309 20.324558582336 0 +72 12309 20.324558582336 0 +72 12338 20.331276486402 0 +72 12338 20.331276486402 0 +72 12349 20.331436486402 0 +72 12349 20.331436486402 0 +72 12380 20.35738419086 0 +72 12380 20.35738419086 0 +72 12387 20.35754419086 0 +72 12387 20.35754419086 0 +72 12505 20.614557246038 0 +72 12505 20.614557246038 0 +72 12520 20.614717246038 0 +72 12520 20.614717246038 0 +72 12542 20.624398582336 0 +72 12542 20.624398582336 0 +72 12550 20.624558582336 0 +72 12550 20.624558582336 0 +72 12579 20.631276486279 0 +72 12579 20.631276486279 0 +72 12590 20.631436486279 0 +72 12590 20.631436486279 0 +72 12621 20.657384191065 0 +72 12621 20.657384191065 0 +72 12628 20.657544191065 0 +72 12628 20.657544191065 0 +72 12746 20.914557253923 0 +72 12746 20.914557253923 0 +72 12761 20.914717253923 0 +72 12761 20.914717253923 0 +72 12783 20.924398582336 0 +72 12783 20.924398582336 0 +72 12791 20.924558582336 0 +72 12791 20.924558582336 0 +72 12820 20.9312764863 0 +72 12820 20.9312764863 0 +72 12831 20.9314364863 0 +72 12831 20.9314364863 0 +72 12862 20.957384191416 0 +72 12862 20.957384191416 0 +72 12869 20.957544191416 0 +72 12869 20.957544191416 0 +72 12987 21.214557262739 0 +72 12987 21.214557262739 0 +72 13002 21.214717262739 0 +72 13002 21.214717262739 0 +72 13024 21.224398582336 0 +72 13024 21.224398582336 0 +72 13032 21.224558582336 0 +72 13032 21.224558582336 0 +72 13061 21.231276486377 0 +72 13061 21.231276486377 0 +72 13072 21.231436486377 0 +72 13072 21.231436486377 0 +72 13103 21.257384192086 0 +72 13103 21.257384192086 0 +72 13110 21.257544192086 0 +72 13110 21.257544192086 0 +72 13228 21.514557272413 0 +72 13228 21.514557272413 0 +72 13243 21.514717272413 0 +72 13243 21.514717272413 0 +72 13265 21.524398582336 0 +72 13265 21.524398582336 0 +72 13273 21.524558582336 0 +72 13273 21.524558582336 0 +72 13302 21.531276486403 0 +72 13302 21.531276486403 0 +72 13313 21.531436486403 0 +72 13313 21.531436486403 0 +72 13344 21.557384193076 0 +72 13344 21.557384193076 0 +72 13351 21.557544193076 0 +72 13351 21.557544193076 0 +72 13469 21.814557282935 0 +72 13469 21.814557282935 0 +72 13484 21.814717282935 0 +72 13484 21.814717282935 0 +72 13506 21.824398582336 0 +72 13506 21.824398582336 0 +72 13514 21.824558582336 0 +72 13514 21.824558582336 0 +72 13543 21.831276486387 0 +72 13543 21.831276486387 0 +72 13554 21.831436486387 0 +72 13554 21.831436486387 0 +72 13585 21.85738419435 0 +72 13585 21.85738419435 0 +72 13592 21.85754419435 0 +72 13592 21.85754419435 0 +72 13710 22.114557294257 0 +72 13710 22.114557294257 0 +72 13725 22.114717294257 0 +72 13725 22.114717294257 0 +72 13747 22.124398582336 0 +72 13747 22.124398582336 0 +72 13755 22.124558582336 0 +72 13755 22.124558582336 0 +72 13784 22.13127648632 0 +72 13784 22.13127648632 0 +72 13795 22.13143648632 0 +72 13795 22.13143648632 0 +72 13826 22.15738419591 0 +72 13826 22.15738419591 0 +72 13833 22.15754419591 0 +72 13833 22.15754419591 0 +72 13951 22.414557306336 0 +72 13951 22.414557306336 0 +72 13966 22.414717306336 0 +72 13966 22.414717306336 0 +72 13988 22.424398582336 0 +72 13988 22.424398582336 0 +72 13996 22.424558582336 0 +72 13996 22.424558582336 0 +72 14025 22.431276486231 0 +72 14025 22.431276486231 0 +72 14036 22.431436486231 0 +72 14036 22.431436486231 0 +72 14067 22.457384197834 0 +72 14067 22.457384197834 0 +72 14074 22.457544197834 0 +72 14074 22.457544197834 0 +72 14192 22.714557319146 0 +72 14192 22.714557319146 0 +72 14207 22.714717319146 0 +72 14207 22.714717319146 0 +72 14229 22.724398582336 0 +72 14229 22.724398582336 0 +72 14237 22.724558582336 0 +72 14237 22.724558582336 0 +72 14266 22.731276486104 0 +72 14266 22.731276486104 0 +72 14277 22.731436486104 0 +72 14277 22.731436486104 0 +72 14308 22.75738420026 0 +72 14308 22.75738420026 0 +72 14315 22.75754420026 0 +72 14315 22.75754420026 0 +72 14433 23.014557332675 0 +72 14433 23.014557332675 0 +72 14448 23.014717332675 0 +72 14448 23.014717332675 0 +72 14470 23.024398582336 0 +72 14470 23.024398582336 0 +72 14478 23.024558582336 0 +72 14478 23.024558582336 0 +72 14507 23.031276485972 0 +72 14507 23.031276485972 0 +72 14518 23.031436485972 0 +72 14518 23.031436485972 0 +72 14549 23.057384203204 0 +72 14549 23.057384203204 0 +72 14556 23.057544203204 0 +72 14556 23.057544203204 0 +72 14674 23.314557346848 0 +72 14674 23.314557346848 0 +72 14689 23.314717346848 0 +72 14689 23.314717346848 0 +72 14711 23.324398582336 0 +72 14711 23.324398582336 0 +72 14719 23.324558582336 0 +72 14719 23.324558582336 0 +72 14748 23.331276485713 0 +72 14748 23.331276485713 0 +72 14759 23.331436485713 0 +72 14759 23.331436485713 0 +72 14790 23.357384206722 0 +72 14790 23.357384206722 0 +72 14797 23.357544206722 0 +72 14797 23.357544206722 0 +72 14915 23.614557361743 0 +72 14915 23.614557361743 0 +72 14930 23.614717361743 0 +72 14930 23.614717361743 0 +72 14952 23.624398582336 0 +72 14952 23.624398582336 0 +72 14960 23.624558582336 0 +72 14960 23.624558582336 0 +72 14989 23.6312764855 0 +72 14989 23.6312764855 0 +72 15000 23.6314364855 0 +72 15000 23.6314364855 0 +72 15031 23.657384210857 0 +72 15031 23.657384210857 0 +72 15038 23.657544210857 0 +72 15038 23.657544210857 0 +72 15157 23.914557377256 0 +72 15157 23.914557377256 0 +72 15176 23.914717377256 0 +72 15176 23.914717377256 0 +72 15193 23.924398582336 0 +72 15193 23.924398582336 0 +72 15201 23.924558582336 0 +72 15201 23.924558582336 0 +72 15229 23.93127648528 0 +72 15229 23.93127648528 0 +72 15236 23.93143648528 0 +72 15236 23.93143648528 0 +72 15272 23.95738421565 0 +72 15272 23.95738421565 0 +72 15279 23.95754421565 0 +72 15279 23.95754421565 0 +72 15398 24.214557393408 0 +72 15398 24.214557393408 0 +72 15417 24.214717393408 0 +72 15417 24.214717393408 0 +72 15434 24.224398582336 0 +72 15434 24.224398582336 0 +72 15442 24.224558582336 0 +72 15442 24.224558582336 0 +72 15470 24.231276485173 0 +72 15470 24.231276485173 0 +72 15477 24.231436485173 0 +72 15477 24.231436485173 0 +72 15513 24.257384221045 0 +72 15513 24.257384221045 0 +72 15520 24.257544221045 0 +72 15520 24.257544221045 0 +72 15639 24.514557410256 0 +72 15639 24.514557410256 0 +72 15658 24.514717410256 0 +72 15658 24.514717410256 0 +72 15675 24.524398582336 0 +72 15675 24.524398582336 0 +72 15683 24.524558582336 0 +72 15683 24.524558582336 0 +72 15711 24.531276485097 0 +72 15711 24.531276485097 0 +72 15718 24.531436485097 0 +72 15718 24.531436485097 0 +72 15754 24.55738422706 0 +72 15754 24.55738422706 0 +72 15761 24.55754422706 0 +72 15761 24.55754422706 0 +72 15880 24.814557427619 0 +72 15880 24.814557427619 0 +72 15899 24.814717427619 0 +72 15899 24.814717427619 0 +72 15916 24.824398582336 0 +72 15916 24.824398582336 0 +72 15924 24.824558582336 0 +72 15924 24.824558582336 0 +72 15952 24.831276484864 0 +72 15952 24.831276484864 0 +72 15959 24.831436484864 0 +72 15959 24.831436484864 0 +72 15995 24.857384233855 0 +72 15995 24.857384233855 0 +72 16002 24.857544233855 0 +72 16002 24.857544233855 0 +72 16121 25.114557445125 0 +72 16121 25.114557445125 0 +72 16140 25.114717445125 0 +72 16140 25.114717445125 0 +72 16157 25.124398582336 0 +72 16157 25.124398582336 0 +72 16165 25.124558582336 0 +72 16165 25.124558582336 0 +72 16193 25.131276484116 0 +72 16193 25.131276484116 0 +72 16200 25.131436484116 0 +72 16200 25.131436484116 0 +72 16236 25.15738424158 0 +72 16236 25.15738424158 0 +72 16243 25.15754424158 0 +72 16243 25.15754424158 0 +72 16362 25.414557462649 0 +72 16362 25.414557462649 0 +72 16381 25.414717462649 0 +72 16381 25.414717462649 0 +72 16398 25.424398582336 0 +72 16398 25.424398582336 0 +72 16406 25.424558582336 0 +72 16406 25.424558582336 0 +72 16434 25.431276482795 0 +72 16434 25.431276482795 0 +72 16441 25.431436482795 0 +72 16441 25.431436482795 0 +72 16477 25.457384250111 0 +72 16477 25.457384250111 0 +72 16484 25.457544250111 0 +72 16484 25.457544250111 0 +72 16603 25.714557480245 0 +72 16603 25.714557480245 0 +72 16622 25.714717480245 0 +72 16622 25.714717480245 0 +72 16639 25.724398582336 0 +72 16639 25.724398582336 0 +72 16647 25.724558582336 0 +72 16647 25.724558582336 0 +72 16675 25.731276480874 0 +72 16675 25.731276480874 0 +72 16682 25.731436480874 0 +72 16682 25.731436480874 0 +72 16718 25.757384259482 0 +72 16718 25.757384259482 0 +72 16725 25.757544259482 0 +72 16725 25.757544259482 0 +72 16844 26.014557497945 0 +72 16844 26.014557497945 0 +72 16863 26.014717497945 0 +72 16863 26.014717497945 0 +72 16880 26.024398582336 0 +72 16880 26.024398582336 0 +72 16888 26.024558582336 0 +72 16888 26.024558582336 0 +72 16916 26.031276479731 0 +72 16916 26.031276479731 0 +72 16923 26.031436479731 0 +72 16923 26.031436479731 0 +72 16959 26.057384269815 0 +72 16959 26.057384269815 0 +72 16966 26.057544269815 0 +72 16966 26.057544269815 0 +72 17086 26.314557515616 0 +72 17086 26.314557515616 0 +72 17109 26.314717515616 0 +72 17109 26.314717515616 0 +72 17121 26.324398582336 0 +72 17121 26.324398582336 0 +72 17129 26.324558582336 0 +72 17129 26.324558582336 0 +72 17157 26.331276479849 0 +72 17157 26.331276479849 0 +72 17164 26.331436479849 0 +72 17164 26.331436479849 0 +72 17200 26.357384280927 0 +72 17200 26.357384280927 0 +72 17207 26.357544280927 0 +72 17207 26.357544280927 0 +72 17327 26.614557533368 0 +72 17327 26.614557533368 0 +72 17350 26.614717533368 0 +72 17350 26.614717533368 0 +72 17362 26.624398582336 0 +72 17362 26.624398582336 0 +72 17370 26.624558582336 0 +72 17370 26.624558582336 0 +72 17398 26.631276481362 0 +72 17398 26.631276481362 0 +72 17405 26.631436481362 0 +72 17405 26.631436481362 0 +72 17441 26.657384292372 0 +72 17441 26.657384292372 0 +72 17448 26.657544292372 0 +72 17448 26.657544292372 0 +72 17568 26.914557551168 0 +72 17568 26.914557551168 0 +72 17591 26.914717551168 0 +72 17591 26.914717551168 0 +72 17603 26.924398582336 0 +72 17603 26.924398582336 0 +72 17611 26.924558582336 0 +72 17611 26.924558582336 0 +72 17639 26.931276484209 0 +72 17639 26.931276484209 0 +72 17646 26.931436484209 0 +72 17646 26.931436484209 0 +72 17682 26.957384303661 0 +72 17682 26.957384303661 0 +72 17689 26.957544303661 0 +72 17689 26.957544303661 0 +72 17809 27.214557568504 0 +72 17809 27.214557568504 0 +72 17832 27.214717568504 0 +72 17832 27.214717568504 0 +72 17840 27.224398582336 0 +72 17840 27.224398582336 0 +72 17848 27.224558582336 0 +72 17848 27.224558582336 0 +72 17872 27.231276487819 0 +72 17872 27.231276487819 0 +72 17879 27.231436487819 0 +72 17879 27.231436487819 0 +72 17915 27.257384313921 0 +72 17915 27.257384313921 0 +72 17922 27.257544313921 0 +72 17922 27.257544313921 0 +72 18073 27.524398582336 0 +72 18073 27.524398582336 0 +72 18081 27.524558582336 0 +72 18081 27.524558582336 0 +72 18105 27.531276490771 0 +72 18105 27.531276490771 0 +72 18112 27.531436490771 0 +72 18112 27.531436490771 0 +72 18148 27.557384323167 0 +72 18148 27.557384323167 0 +72 18155 27.557544323167 0 +72 18155 27.557544323167 0 +72 18306 27.824398582336 0 +72 18306 27.824398582336 0 +72 18314 27.824558582336 0 +72 18314 27.824558582336 0 +72 18338 27.831276492635 0 +72 18338 27.831276492635 0 +72 18345 27.831436492635 0 +72 18345 27.831436492635 0 +72 18381 27.857384331293 0 +72 18381 27.857384331293 0 +72 18388 27.857544331293 0 +72 18388 27.857544331293 0 +72 18539 28.124398582336 0 +72 18539 28.124398582336 0 +72 18547 28.124558582336 0 +72 18547 28.124558582336 0 +72 18571 28.131276501988 0 +72 18571 28.131276501988 0 +72 18578 28.131436501988 0 +72 18578 28.131436501988 0 +72 18614 28.15738433818 0 +72 18614 28.15738433818 0 +72 18621 28.15754433818 0 +72 18621 28.15754433818 0 +72 18772 28.424398582336 0 +72 18772 28.424398582336 0 +72 18780 28.424558582336 0 +72 18780 28.424558582336 0 +72 18804 28.431276516789 0 +72 18804 28.431276516789 0 +72 18811 28.431436516789 0 +72 18811 28.431436516789 0 +72 18847 28.45738434442 0 +72 18847 28.45738434442 0 +72 18854 28.45754434442 0 +72 18854 28.45754434442 0 +72 19005 28.724398582336 0 +72 19005 28.724398582336 0 +72 19013 28.724558582336 0 +72 19013 28.724558582336 0 +72 19037 28.731276531174 0 +72 19037 28.731276531174 0 +72 19044 28.731436531174 0 +72 19044 28.731436531174 0 +72 19080 28.757384346246 0 +72 19080 28.757384346246 0 +72 19087 28.757544346246 0 +72 19087 28.757544346246 0 +72 19238 29.024398582336 0 +72 19238 29.024398582336 0 +72 19246 29.024558582336 0 +72 19246 29.024558582336 0 +72 19270 29.031276536731 0 +72 19270 29.031276536731 0 +72 19277 29.031436536731 0 +72 19277 29.031436536731 0 +72 19309 29.057384347069 0 +72 19309 29.057384347069 0 +72 19316 29.057544347069 0 +72 19316 29.057544347069 0 +72 19463 29.324398582336 0 +72 19463 29.324398582336 0 +72 19471 29.324558582336 0 +72 19471 29.324558582336 0 +72 19495 29.331276539274 0 +72 19495 29.331276539274 0 +72 19502 29.331436539274 0 +72 19502 29.331436539274 0 +72 19535 29.357384351202 0 +72 19535 29.357384351202 0 +72 19546 29.357544351202 0 +72 19546 29.357544351202 0 +72 19688 29.624398582336 0 +72 19688 29.624398582336 0 +72 19696 29.624558582336 0 +72 19696 29.624558582336 0 +72 19720 29.631276541563 0 +72 19720 29.631276541563 0 +72 19727 29.631436541563 0 +72 19727 29.631436541563 0 +72 19760 29.657384352581 0 +72 19760 29.657384352581 0 +72 19771 29.657544352581 0 +72 19771 29.657544352581 0 +72 19913 29.924398582336 0 +72 19913 29.924398582336 0 +72 19921 29.924558582336 0 +72 19921 29.924558582336 0 +72 19945 29.931276543815 0 +72 19945 29.931276543815 0 +72 19952 29.931436543815 0 +72 19952 29.931436543815 0 +72 19985 29.957384353115 0 +72 19985 29.957384353115 0 +72 19996 29.957544353115 0 +72 19996 29.957544353115 0 +72 20138 30.224398582336 0 +72 20138 30.224398582336 0 +72 20146 30.224558582336 0 +72 20146 30.224558582336 0 +72 20170 30.231276546125 0 +72 20170 30.231276546125 0 +72 20177 30.231436546125 0 +72 20177 30.231436546125 0 +72 20210 30.257384353112 0 +72 20210 30.257384353112 0 +72 20221 30.257544353112 0 +72 20221 30.257544353112 0 +72 20363 30.524398582336 0 +72 20363 30.524398582336 0 +72 20371 30.524558582336 0 +72 20371 30.524558582336 0 +72 20395 30.531276548461 0 +72 20395 30.531276548461 0 +72 20402 30.531436548461 0 +72 20402 30.531436548461 0 +72 20435 30.55738435311 0 +72 20435 30.55738435311 0 +72 20446 30.55754435311 0 +72 20446 30.55754435311 0 +72 20588 30.824398582336 0 +72 20588 30.824398582336 0 +72 20596 30.824558582336 0 +72 20596 30.824558582336 0 +72 20621 30.831276550899 0 +72 20621 30.831276550899 0 +72 20632 30.831436550899 0 +72 20632 30.831436550899 0 +72 20660 30.857384353107 0 +72 20660 30.857384353107 0 +72 20671 30.857544353107 0 +72 20671 30.857544353107 0 +72 20813 31.124398582336 0 +72 20813 31.124398582336 0 +72 20821 31.124558582336 0 +72 20821 31.124558582336 0 +72 20850 31.131276553412 0 +72 20850 31.131276553412 0 +72 20861 31.131436553412 0 +72 20861 31.131436553412 0 +72 20889 31.157384353102 0 +72 20889 31.157384353102 0 +72 20900 31.157544353102 0 +72 20900 31.157544353102 0 +72 20921 31.193586243446 0 +72 20921 31.193586243446 0 +72 20940 31.193746243446 0 +72 20940 31.193746243446 0 +72 21046 31.424398582336 0 +72 21046 31.424398582336 0 +72 21054 31.424558582336 0 +72 21054 31.424558582336 0 +72 21083 31.431276555932 0 +72 21083 31.431276555932 0 +72 21094 31.431436555932 0 +72 21094 31.431436555932 0 +72 21122 31.457384353095 0 +72 21122 31.457384353095 0 +72 21133 31.457544353095 0 +72 21133 31.457544353095 0 +72 21154 31.493586217696 0 +72 21154 31.493586217696 0 +72 21173 31.493746217696 0 +72 21173 31.493746217696 0 +72 21279 31.724398582336 0 +72 21279 31.724398582336 0 +72 21287 31.724558582336 0 +72 21287 31.724558582336 0 +72 21316 31.731276558446 0 +72 21316 31.731276558446 0 +72 21327 31.731436558446 0 +72 21327 31.731436558446 0 +72 21355 31.757384353088 0 +72 21355 31.757384353088 0 +72 21366 31.757544353088 0 +72 21366 31.757544353088 0 +72 21387 31.793586191964 0 +72 21387 31.793586191964 0 +72 21406 31.793746191964 0 +72 21406 31.793746191964 0 +72 21512 32.024398582336 0 +72 21512 32.024398582336 0 +72 21520 32.024558582336 0 +72 21520 32.024558582336 0 +72 21549 32.031276560973 0 +72 21549 32.031276560973 0 +72 21560 32.031436560973 0 +72 21560 32.031436560973 0 +72 21588 32.057384353084 0 +72 21588 32.057384353084 0 +72 21599 32.057544353084 0 +72 21599 32.057544353084 0 +72 21619 32.093586166255 0 +72 21619 32.093586166255 0 +72 21634 32.093746166255 0 +72 21634 32.093746166255 0 +72 21745 32.324398582336 0 +72 21745 32.324398582336 0 +72 21753 32.324558582336 0 +72 21753 32.324558582336 0 +72 21782 32.331276563405 0 +72 21782 32.331276563405 0 +72 21793 32.331436563405 0 +72 21793 32.331436563405 0 +72 21821 32.357384353083 0 +72 21821 32.357384353083 0 +72 21832 32.357544353083 0 +72 21832 32.357544353083 0 +72 21852 32.393586140428 0 +72 21852 32.393586140428 0 +72 21867 32.393746140428 0 +72 21867 32.393746140428 0 +72 21978 32.624398582336 0 +72 21978 32.624398582336 0 +72 21986 32.624558582336 0 +72 21986 32.624558582336 0 +72 22015 32.631276565904 0 +72 22015 32.631276565904 0 +72 22026 32.631436565904 0 +72 22026 32.631436565904 0 +72 22054 32.657384353086 0 +72 22054 32.657384353086 0 +72 22065 32.657544353086 0 +72 22065 32.657544353086 0 +72 22085 32.693586114644 0 +72 22085 32.693586114644 0 +72 22100 32.693746114644 0 +72 22100 32.693746114644 0 +72 22211 32.924398582336 0 +72 22211 32.924398582336 0 +72 22219 32.924558582336 0 +72 22219 32.924558582336 0 +72 22248 32.931276568399 0 +72 22248 32.931276568399 0 +72 22259 32.931436568399 0 +72 22259 32.931436568399 0 +72 22287 32.957384353093 0 +72 22287 32.957384353093 0 +72 22298 32.957544353093 0 +72 22298 32.957544353093 0 +72 22318 32.993586088864 0 +72 22318 32.993586088864 0 +72 22333 32.993746088864 0 +72 22333 32.993746088864 0 +72 22444 33.224398582336 0 +72 22444 33.224398582336 0 +72 22452 33.224558582336 0 +72 22452 33.224558582336 0 +72 22481 33.231276570893 0 +72 22481 33.231276570893 0 +72 22492 33.231436570893 0 +72 22492 33.231436570893 0 +72 22520 33.257384353102 0 +72 22520 33.257384353102 0 +72 22531 33.257544353102 0 +72 22531 33.257544353102 0 +72 22551 33.293586063102 0 +72 22551 33.293586063102 0 +72 22566 33.293746063102 0 +72 22566 33.293746063102 0 +72 22677 33.524398582336 0 +72 22677 33.524398582336 0 +72 22685 33.524558582336 0 +72 22685 33.524558582336 0 +72 22714 33.53127657339 0 +72 22714 33.53127657339 0 +72 22725 33.53143657339 0 +72 22725 33.53143657339 0 +72 22753 33.557384353115 0 +72 22753 33.557384353115 0 +72 22764 33.557544353115 0 +72 22764 33.557544353115 0 +72 22783 33.593586037322 0 +72 22783 33.593586037322 0 +72 22794 33.593746037322 0 +72 22794 33.593746037322 0 +72 22906 33.824398582336 0 +72 22906 33.824398582336 0 +72 22914 33.824558582336 0 +72 22914 33.824558582336 0 +72 22943 33.831276575887 0 +72 22943 33.831276575887 0 +72 22954 33.831436575887 0 +72 22954 33.831436575887 0 +72 22982 33.857384353132 0 +72 22982 33.857384353132 0 +72 22993 33.857544353132 0 +72 22993 33.857544353132 0 +72 23012 33.893586011596 0 +72 23012 33.893586011596 0 +72 23023 33.893746011596 0 +72 23023 33.893746011596 0 +72 23116 34.124398582336 0 +72 23116 34.124398582336 0 +72 23123 34.124558582336 0 +72 23123 34.124558582336 0 +72 23146 34.131276578412 0 +72 23146 34.131276578412 0 +72 23152 34.131436578412 0 +72 23152 34.131436578412 0 +72 23176 34.157384353151 0 +72 23176 34.157384353151 0 +72 23186 34.157544353151 0 +72 23186 34.157544353151 0 +72 23274 34.424398582336 0 +72 23274 34.424398582336 0 +72 23281 34.424558582336 0 +72 23281 34.424558582336 0 +72 23304 34.431276580926 0 +72 23304 34.431276580926 0 +72 23310 34.431436580926 0 +72 23310 34.431436580926 0 +72 23334 34.457384353173 0 +72 23334 34.457384353173 0 +72 23344 34.457544353173 0 +72 23344 34.457544353173 0 +72 23432 34.724398582336 0 +72 23432 34.724398582336 0 +72 23439 34.724558582336 0 +72 23439 34.724558582336 0 +72 23462 34.731276583436 0 +72 23462 34.731276583436 0 +72 23468 34.731436583436 0 +72 23468 34.731436583436 0 +72 23492 34.757384353199 0 +72 23492 34.757384353199 0 +72 23502 34.757544353199 0 +72 23502 34.757544353199 0 +72 23590 35.024398582336 0 +72 23590 35.024398582336 0 +72 23597 35.024558582336 0 +72 23597 35.024558582336 0 +72 23620 35.031276585897 0 +72 23620 35.031276585897 0 +72 23626 35.031436585897 0 +72 23626 35.031436585897 0 +72 23650 35.057384353228 0 +72 23650 35.057384353228 0 +72 23660 35.057544353228 0 +72 23660 35.057544353228 0 +72 23752 35.324398582336 0 +72 23752 35.324398582336 0 +72 23759 35.324558582336 0 +72 23759 35.324558582336 0 +72 23782 35.331276588437 0 +72 23782 35.331276588437 0 +72 23788 35.331436588437 0 +72 23788 35.331436588437 0 +72 23812 35.357384353251 0 +72 23812 35.357384353251 0 +72 23822 35.357544353251 0 +72 23822 35.357544353251 0 +72 23918 35.624398582336 0 +72 23918 35.624398582336 0 +72 23925 35.624558582336 0 +72 23925 35.624558582336 0 +72 23948 35.631276590971 0 +72 23948 35.631276590971 0 +72 23954 35.631436590971 0 +72 23954 35.631436590971 0 +72 23978 35.657384353247 0 +72 23978 35.657384353247 0 +72 23988 35.657544353247 0 +72 23988 35.657544353247 0 +72 24084 35.924398582336 0 +72 24084 35.924398582336 0 +72 24091 35.924558582336 0 +72 24091 35.924558582336 0 +72 24114 35.931276593481 0 +72 24114 35.931276593481 0 +72 24120 35.931436593481 0 +72 24120 35.931436593481 0 +72 24144 35.957384353214 0 +72 24144 35.957384353214 0 +72 24154 35.957544353214 0 +72 24154 35.957544353214 0 +72 24250 36.224398582336 0 +72 24250 36.224398582336 0 +72 24257 36.224558582336 0 +72 24257 36.224558582336 0 +72 24280 36.231276595961 0 +72 24280 36.231276595961 0 +72 24286 36.231436595961 0 +72 24286 36.231436595961 0 +72 24310 36.257384353163 0 +72 24310 36.257384353163 0 +72 24320 36.257544353163 0 +72 24320 36.257544353163 0 +72 24416 36.524398582336 0 +72 24416 36.524398582336 0 +72 24423 36.524558582336 0 +72 24423 36.524558582336 0 +72 24446 36.531276598459 0 +72 24446 36.531276598459 0 +72 24452 36.531436598459 0 +72 24452 36.531436598459 0 +72 24476 36.557384353111 0 +72 24476 36.557384353111 0 +72 24486 36.557544353111 0 +72 24486 36.557544353111 0 +72 24582 36.824398582336 0 +72 24582 36.824398582336 0 +72 24589 36.824558582336 0 +72 24589 36.824558582336 0 +72 24612 36.83127660094 0 +72 24612 36.83127660094 0 +72 24618 36.83143660094 0 +72 24618 36.83143660094 0 +72 24642 36.857384353084 0 +72 24642 36.857384353084 0 +72 24652 36.857544353084 0 +72 24652 36.857544353084 0 +72 24748 37.124398582336 0 +72 24748 37.124398582336 0 +72 24755 37.124558582336 0 +72 24755 37.124558582336 0 +72 24778 37.131276603404 0 +72 24778 37.131276603404 0 +72 24784 37.131436603404 0 +72 24784 37.131436603404 0 +72 24808 37.15738435309 0 +72 24808 37.15738435309 0 +72 24818 37.15754435309 0 +72 24818 37.15754435309 0 +72 24914 37.424398582336 0 +72 24914 37.424398582336 0 +72 24921 37.424558582336 0 +72 24921 37.424558582336 0 +72 24944 37.431276605886 0 +72 24944 37.431276605886 0 +72 24950 37.431436605886 0 +72 24950 37.431436605886 0 +72 24974 37.457384353113 0 +72 24974 37.457384353113 0 +72 24984 37.457544353113 0 +72 24984 37.457544353113 0 +72 25080 37.724398582336 0 +72 25080 37.724398582336 0 +72 25087 37.724558582336 0 +72 25087 37.724558582336 0 +72 25110 37.731276608365 0 +72 25110 37.731276608365 0 +72 25116 37.731436608365 0 +72 25116 37.731436608365 0 +72 25141 37.757384353145 0 +72 25141 37.757384353145 0 +72 25155 37.757544353145 0 +72 25155 37.757544353145 0 +72 25246 38.024398582336 0 +72 25246 38.024398582336 0 +72 25253 38.024558582336 0 +72 25253 38.024558582336 0 +72 25276 38.031276610826 0 +72 25276 38.031276610826 0 +72 25282 38.031436610826 0 +72 25282 38.031436610826 0 +72 25307 38.057384353181 0 +72 25307 38.057384353181 0 +72 25321 38.057544353181 0 +72 25321 38.057544353181 0 +72 25412 38.324398582336 0 +72 25412 38.324398582336 0 +72 25419 38.324558582336 0 +72 25419 38.324558582336 0 +72 25442 38.3312766133 0 +72 25442 38.3312766133 0 +72 25448 38.3314366133 0 +72 25448 38.3314366133 0 +72 25473 38.357384353213 0 +72 25473 38.357384353213 0 +72 25487 38.357544353213 0 +72 25487 38.357544353213 0 +72 25578 38.624398582336 0 +72 25578 38.624398582336 0 +72 25585 38.624558582336 0 +72 25585 38.624558582336 0 +72 25608 38.631276615791 0 +72 25608 38.631276615791 0 +72 25614 38.631436615791 0 +72 25614 38.631436615791 0 +72 25639 38.657384353237 0 +72 25639 38.657384353237 0 +72 25653 38.657544353237 0 +72 25653 38.657544353237 0 +72 25744 38.924398582336 0 +72 25744 38.924398582336 0 +72 25751 38.924558582336 0 +72 25751 38.924558582336 0 +72 25774 38.93127661831 0 +72 25774 38.93127661831 0 +72 25780 38.93143661831 0 +72 25780 38.93143661831 0 +72 25805 38.95738435325 0 +72 25805 38.95738435325 0 +72 25819 38.95754435325 0 +72 25819 38.95754435325 0 +72 25910 39.224398582336 0 +72 25910 39.224398582336 0 +72 25917 39.224558582336 0 +72 25917 39.224558582336 0 +72 25940 39.231276620759 0 +72 25940 39.231276620759 0 +72 25946 39.231436620759 0 +72 25946 39.231436620759 0 +72 25971 39.257384353248 0 +72 25971 39.257384353248 0 +72 25985 39.257544353248 0 +72 25985 39.257544353248 0 +72 26076 39.524398582336 0 +72 26076 39.524398582336 0 +72 26083 39.524558582336 0 +72 26083 39.524558582336 0 +72 26106 39.531276623254 0 +72 26106 39.531276623254 0 +72 26112 39.531436623254 0 +72 26112 39.531436623254 0 +72 26137 39.557384353232 0 +72 26137 39.557384353232 0 +72 26151 39.557544353232 0 +72 26151 39.557544353232 0 +72 26242 39.824398582336 0 +72 26242 39.824398582336 0 +72 26249 39.824558582336 0 +72 26249 39.824558582336 0 +72 26272 39.83127662574 0 +72 26272 39.83127662574 0 +72 26278 39.83143662574 0 +72 26278 39.83143662574 0 +72 26303 39.857384353205 0 +72 26303 39.857384353205 0 +72 26317 39.857544353205 0 +72 26317 39.857544353205 0 +72 26408 40.124398582336 0 +72 26408 40.124398582336 0 +72 26415 40.124558582336 0 +72 26415 40.124558582336 0 +72 26438 40.131276628265 0 +72 26438 40.131276628265 0 +72 26444 40.131436628265 0 +72 26444 40.131436628265 0 +72 26469 40.157384353178 0 +72 26469 40.157384353178 0 +72 26483 40.157544353178 0 +72 26483 40.157544353178 0 +72 26574 40.424398582336 0 +72 26574 40.424398582336 0 +72 26581 40.424558582336 0 +72 26581 40.424558582336 0 +72 26604 40.431276630742 0 +72 26604 40.431276630742 0 +72 26610 40.431436630742 0 +72 26610 40.431436630742 0 +72 26635 40.457384353154 0 +72 26635 40.457384353154 0 +72 26649 40.457544353154 0 +72 26649 40.457544353154 0 +72 26740 40.724398582336 0 +72 26740 40.724398582336 0 +72 26747 40.724558582336 0 +72 26747 40.724558582336 0 +72 26774 40.731276633247 0 +72 26774 40.731276633247 0 +72 26780 40.731436633247 0 +72 26780 40.731436633247 0 +72 26805 40.757384353134 0 +72 26805 40.757384353134 0 +72 26819 40.757544353134 0 +72 26819 40.757544353134 0 +72 26844 40.843993902315 0 +72 26844 40.843993902315 0 +72 26862 40.844153902315 0 +72 26862 40.844153902315 0 +72 26914 41.024398582336 0 +72 26914 41.024398582336 0 +72 26921 41.024558582336 0 +72 26921 41.024558582336 0 +72 26948 41.031276635684 0 +72 26948 41.031276635684 0 +72 26954 41.031436635684 0 +72 26954 41.031436635684 0 +72 26979 41.057384353117 0 +72 26979 41.057384353117 0 +72 26993 41.057544353117 0 +72 26993 41.057544353117 0 +72 27018 41.143993889795 0 +72 27018 41.143993889795 0 +72 27036 41.144153889795 0 +72 27036 41.144153889795 0 +72 27088 41.324398582336 0 +72 27088 41.324398582336 0 +72 27095 41.324558582336 0 +72 27095 41.324558582336 0 +72 27122 41.331276638199 0 +72 27122 41.331276638199 0 +72 27128 41.331436638199 0 +72 27128 41.331436638199 0 +72 27153 41.357384353104 0 +72 27153 41.357384353104 0 +72 27167 41.357544353104 0 +72 27167 41.357544353104 0 +72 27192 41.443993878047 0 +72 27192 41.443993878047 0 +72 27210 41.444153878047 0 +72 27210 41.444153878047 0 +72 27262 41.624398582336 0 +72 27262 41.624398582336 0 +72 27269 41.624558582336 0 +72 27269 41.624558582336 0 +72 27296 41.631276640727 0 +72 27296 41.631276640727 0 +72 27302 41.631436640727 0 +72 27302 41.631436640727 0 +72 27327 41.657384353094 0 +72 27327 41.657384353094 0 +72 27341 41.657544353094 0 +72 27341 41.657544353094 0 +72 27366 41.743993867126 0 +72 27366 41.743993867126 0 +72 27384 41.744153867126 0 +72 27384 41.744153867126 0 +72 27436 41.924398582336 0 +72 27436 41.924398582336 0 +72 27443 41.924558582336 0 +72 27443 41.924558582336 0 +72 27470 41.931276643268 0 +72 27470 41.931276643268 0 +72 27476 41.931436643268 0 +72 27476 41.931436643268 0 +72 27501 41.957384353087 0 +72 27501 41.957384353087 0 +72 27515 41.957544353087 0 +72 27515 41.957544353087 0 +72 27540 42.043993857353 0 +72 27540 42.043993857353 0 +72 27558 42.044153857353 0 +72 27558 42.044153857353 0 +72 27610 42.224398582336 0 +72 27610 42.224398582336 0 +72 27617 42.224558582336 0 +72 27617 42.224558582336 0 +72 27644 42.231276645815 0 +72 27644 42.231276645815 0 +72 27650 42.231436645815 0 +72 27650 42.231436645815 0 +72 27675 42.257384353084 0 +72 27675 42.257384353084 0 +72 27689 42.257544353084 0 +72 27689 42.257544353084 0 +72 27713 42.343993848849 0 +72 27713 42.343993848849 0 +72 27727 42.344153848849 0 +72 27727 42.344153848849 0 +72 27784 42.524398582336 0 +72 27784 42.524398582336 0 +72 27791 42.524558582336 0 +72 27791 42.524558582336 0 +72 27818 42.531276648376 0 +72 27818 42.531276648376 0 +72 27824 42.531436648376 0 +72 27824 42.531436648376 0 +72 27849 42.557384353084 0 +72 27849 42.557384353084 0 +72 27863 42.557544353084 0 +72 27863 42.557544353084 0 +72 27887 42.643993841477 0 +72 27887 42.643993841477 0 +72 27901 42.644153841477 0 +72 27901 42.644153841477 0 +72 27958 42.824398582336 0 +72 27958 42.824398582336 0 +72 27965 42.824558582336 0 +72 27965 42.824558582336 0 +72 27992 42.831276650828 0 +72 27992 42.831276650828 0 +72 27998 42.831436650828 0 +72 27998 42.831436650828 0 +72 28023 42.857384353087 0 +72 28023 42.857384353087 0 +72 28037 42.857544353087 0 +72 28037 42.857544353087 0 +72 28061 42.943993835169 0 +72 28061 42.943993835169 0 +72 28075 42.944153835169 0 +72 28075 42.944153835169 0 +72 28132 43.124398582336 0 +72 28132 43.124398582336 0 +72 28139 43.124558582336 0 +72 28139 43.124558582336 0 +72 28166 43.131276653336 0 +72 28166 43.131276653336 0 +72 28172 43.131436653336 0 +72 28172 43.131436653336 0 +72 28197 43.157384353094 0 +72 28197 43.157384353094 0 +72 28211 43.157544353094 0 +72 28211 43.157544353094 0 +72 28235 43.243993829822 0 +72 28235 43.243993829822 0 +72 28249 43.244153829822 0 +72 28249 43.244153829822 0 +72 28306 43.424398582336 0 +72 28306 43.424398582336 0 +72 28313 43.424558582336 0 +72 28313 43.424558582336 0 +72 28340 43.431276655825 0 +72 28340 43.431276655825 0 +72 28346 43.431436655825 0 +72 28346 43.431436655825 0 +72 28371 43.457384353104 0 +72 28371 43.457384353104 0 +72 28385 43.457544353104 0 +72 28385 43.457544353104 0 +72 28409 43.543993825335 0 +72 28409 43.543993825335 0 +72 28423 43.544153825335 0 +72 28423 43.544153825335 0 +72 28480 43.724398582336 0 +72 28480 43.724398582336 0 +72 28487 43.724558582336 0 +72 28487 43.724558582336 0 +72 28514 43.731276658351 0 +72 28514 43.731276658351 0 +72 28520 43.731436658351 0 +72 28520 43.731436658351 0 +72 28545 43.757384353117 0 +72 28545 43.757384353117 0 +72 28559 43.757544353117 0 +72 28559 43.757544353117 0 +72 28583 43.84399382162 0 +72 28583 43.84399382162 0 +72 28597 43.84415382162 0 +72 28597 43.84415382162 0 +72 28654 44.024398582336 0 +72 28654 44.024398582336 0 +72 28661 44.024558582336 0 +72 28661 44.024558582336 0 +72 28688 44.031276660872 0 +72 28688 44.031276660872 0 +72 28694 44.031436660872 0 +72 28694 44.031436660872 0 +72 28719 44.057384353134 0 +72 28719 44.057384353134 0 +72 28733 44.057544353134 0 +72 28733 44.057544353134 0 +72 28757 44.143993818568 0 +72 28757 44.143993818568 0 +72 28771 44.144153818568 0 +72 28771 44.144153818568 0 +72 28828 44.324398582336 0 +72 28828 44.324398582336 0 +72 28835 44.324558582336 0 +72 28835 44.324558582336 0 +72 28862 44.331276663352 0 +72 28862 44.331276663352 0 +72 28868 44.331436663352 0 +72 28868 44.331436663352 0 +72 28889 44.357384353142 0 +72 28889 44.357384353142 0 +72 28903 44.357544353142 0 +72 28903 44.357544353142 0 +72 28927 44.443993816103 0 +72 28927 44.443993816103 0 +72 28941 44.444153816103 0 +72 28941 44.444153816103 0 +72 28994 44.624398582336 0 +72 28994 44.624398582336 0 +72 29001 44.624558582336 0 +72 29001 44.624558582336 0 +72 29028 44.63127666581 0 +72 29028 44.63127666581 0 +72 29034 44.63143666581 0 +72 29034 44.63143666581 0 +72 29055 44.657384353131 0 +72 29055 44.657384353131 0 +72 29069 44.657544353131 0 +72 29069 44.657544353131 0 +72 29093 44.743993814138 0 +72 29093 44.743993814138 0 +72 29107 44.744153814138 0 +72 29107 44.744153814138 0 +72 29160 44.924398582336 0 +72 29160 44.924398582336 0 +72 29167 44.924558582336 0 +72 29167 44.924558582336 0 +72 29194 44.931276668328 0 +72 29194 44.931276668328 0 +72 29200 44.931436668328 0 +72 29200 44.931436668328 0 +72 29221 44.957384353109 0 +72 29221 44.957384353109 0 +72 29235 44.957544353109 0 +72 29235 44.957544353109 0 +72 29259 45.043993812593 0 +72 29259 45.043993812593 0 +72 29273 45.044153812593 0 +72 29273 45.044153812593 0 +72 29326 45.224398582336 0 +72 29326 45.224398582336 0 +72 29333 45.224558582336 0 +72 29333 45.224558582336 0 +72 29360 45.231276670771 0 +72 29360 45.231276670771 0 +72 29366 45.231436670771 0 +72 29366 45.231436670771 0 +72 29387 45.257384353088 0 +72 29387 45.257384353088 0 +72 29401 45.257544353088 0 +72 29401 45.257544353088 0 +72 29425 45.343993811321 0 +72 29425 45.343993811321 0 +72 29439 45.344153811321 0 +72 29439 45.344153811321 0 +72 29492 45.524398582336 0 +72 29492 45.524398582336 0 +72 29499 45.524558582336 0 +72 29499 45.524558582336 0 +72 29526 45.53127667327 0 +72 29526 45.53127667327 0 +72 29532 45.53143667327 0 +72 29532 45.53143667327 0 +72 29553 45.557384353087 0 +72 29553 45.557384353087 0 +72 29567 45.557544353087 0 +72 29567 45.557544353087 0 +72 29591 45.643993810247 0 +72 29591 45.643993810247 0 +72 29605 45.644153810247 0 +72 29605 45.644153810247 0 +72 29658 45.824398582336 0 +72 29658 45.824398582336 0 +72 29665 45.824558582336 0 +72 29665 45.824558582336 0 +72 29692 45.831276675809 0 +72 29692 45.831276675809 0 +72 29698 45.831436675809 0 +72 29698 45.831436675809 0 +72 29719 45.857384353099 0 +72 29719 45.857384353099 0 +72 29733 45.857544353099 0 +72 29733 45.857544353099 0 +72 29757 45.94399380881 0 +72 29757 45.94399380881 0 +72 29771 45.94415380881 0 +72 29771 45.94415380881 0 +72 29824 46.124398582336 0 +72 29824 46.124398582336 0 +72 29831 46.124558582336 0 +72 29831 46.124558582336 0 +72 29858 46.131276678861 0 +72 29858 46.131276678861 0 +72 29864 46.131436678861 0 +72 29864 46.131436678861 0 +72 29885 46.157384350237 0 +72 29885 46.157384350237 0 +72 29899 46.157544350237 0 +72 29899 46.157544350237 0 +72 29922 46.243993803699 0 +72 29922 46.243993803699 0 +72 29932 46.244153803699 0 +72 29932 46.244153803699 0 +72 29990 46.424398582336 0 +72 29990 46.424398582336 0 +72 29997 46.424558582336 0 +72 29997 46.424558582336 0 +72 30024 46.431276686409 0 +72 30024 46.431276686409 0 +72 30030 46.431436686409 0 +72 30030 46.431436686409 0 +72 30051 46.457384341327 0 +72 30051 46.457384341327 0 +72 30065 46.457544341327 0 +72 30065 46.457544341327 0 +72 30088 46.543993792983 0 +72 30088 46.543993792983 0 +72 30098 46.544153792983 0 +72 30098 46.544153792983 0 +72 30156 46.724398582336 0 +72 30156 46.724398582336 0 +72 30163 46.724558582336 0 +72 30163 46.724558582336 0 +72 30190 46.731276699768 0 +72 30190 46.731276699768 0 +72 30196 46.731436699768 0 +72 30196 46.731436699768 0 +72 30216 46.757384329816 0 +72 30216 46.757384329816 0 +72 30226 46.757544329816 0 +72 30226 46.757544329816 0 +72 30254 46.843993781596 0 +72 30254 46.843993781596 0 +72 30264 46.844153781596 0 +72 30264 46.844153781596 0 +72 30322 47.024398582336 0 +72 30322 47.024398582336 0 +72 30329 47.024558582336 0 +72 30329 47.024558582336 0 +72 30356 47.031276714347 0 +72 30356 47.031276714347 0 +72 30362 47.031436714347 0 +72 30362 47.031436714347 0 +72 30382 47.057384318309 0 +72 30382 47.057384318309 0 +72 30392 47.057544318309 0 +72 30392 47.057544318309 0 +72 30420 47.143993770247 0 +72 30420 47.143993770247 0 +72 30430 47.144153770247 0 +72 30430 47.144153770247 0 +72 30488 47.324398582336 0 +72 30488 47.324398582336 0 +72 30495 47.324558582336 0 +72 30495 47.324558582336 0 +72 30522 47.331276729157 0 +72 30522 47.331276729157 0 +72 30528 47.331436729157 0 +72 30528 47.331436729157 0 +72 30548 47.357384306963 0 +72 30548 47.357384306963 0 +72 30558 47.357544306963 0 +72 30558 47.357544306963 0 +72 30586 47.443993758984 0 +72 30586 47.443993758984 0 +72 30596 47.444153758984 0 +72 30596 47.444153758984 0 +72 30654 47.624398582336 0 +72 30654 47.624398582336 0 +72 30661 47.624558582336 0 +72 30661 47.624558582336 0 +72 30688 47.631276744132 0 +72 30688 47.631276744132 0 +72 30694 47.631436744132 0 +72 30694 47.631436744132 0 +72 30714 47.657384295839 0 +72 30714 47.657384295839 0 +72 30724 47.657544295839 0 +72 30724 47.657544295839 0 +72 30752 47.743993747807 0 +72 30752 47.743993747807 0 +72 30762 47.744153747807 0 +72 30762 47.744153747807 0 +72 30820 47.924398582336 0 +72 30820 47.924398582336 0 +72 30827 47.924558582336 0 +72 30827 47.924558582336 0 +72 30854 47.931276759305 0 +72 30854 47.931276759305 0 +72 30860 47.931436759305 0 +72 30860 47.931436759305 0 +72 30880 47.957384284957 0 +72 30880 47.957384284957 0 +72 30890 47.957544284957 0 +72 30890 47.957544284957 0 +72 30918 48.043993736723 0 +72 30918 48.043993736723 0 +72 30928 48.044153736723 0 +72 30928 48.044153736723 0 +72 30986 48.224398582336 0 +72 30986 48.224398582336 0 +72 30993 48.224558582336 0 +72 30993 48.224558582336 0 +72 31020 48.231276774574 0 +72 31020 48.231276774574 0 +72 31026 48.231436774574 0 +72 31026 48.231436774574 0 +72 31046 48.257384274373 0 +72 31046 48.257384274373 0 +72 31056 48.257544274373 0 +72 31056 48.257544274373 0 +72 31084 48.343993727328 0 +72 31084 48.343993727328 0 +72 31094 48.344153727328 0 +72 31094 48.344153727328 0 +72 31152 48.524398582336 0 +72 31152 48.524398582336 0 +72 31159 48.524558582336 0 +72 31159 48.524558582336 0 +72 31186 48.531276790029 0 +72 31186 48.531276790029 0 +72 31192 48.531436790029 0 +72 31192 48.531436790029 0 +72 31212 48.557384264097 0 +72 31212 48.557384264097 0 +72 31222 48.557544264097 0 +72 31222 48.557544264097 0 +72 31250 48.6439937182 0 +72 31250 48.6439937182 0 +72 31260 48.6441537182 0 +72 31260 48.6441537182 0 +72 31318 48.824398582336 0 +72 31318 48.824398582336 0 +72 31325 48.824558582336 0 +72 31325 48.824558582336 0 +72 31352 48.83127680564 0 +72 31352 48.83127680564 0 +72 31358 48.83143680564 0 +72 31358 48.83143680564 0 +72 31378 48.85738425419 0 +72 31378 48.85738425419 0 +72 31388 48.85754425419 0 +72 31388 48.85754425419 0 +72 31416 48.943993710675 0 +72 31416 48.943993710675 0 +72 31426 48.944153710675 0 +72 31426 48.944153710675 0 +72 31484 49.124398582336 0 +72 31484 49.124398582336 0 +72 31491 49.124558582336 0 +72 31491 49.124558582336 0 +72 31518 49.13127682136 0 +72 31518 49.13127682136 0 +72 31524 49.13143682136 0 +72 31524 49.13143682136 0 +72 31544 49.157384244721 0 +72 31544 49.157384244721 0 +72 31554 49.157544244721 0 +72 31554 49.157544244721 0 +72 31582 49.243993704337 0 +72 31582 49.243993704337 0 +72 31592 49.244153704337 0 +72 31592 49.244153704337 0 +72 31650 49.424398582336 0 +72 31650 49.424398582336 0 +72 31657 49.424558582336 0 +72 31657 49.424558582336 0 +72 31684 49.431276837159 0 +72 31684 49.431276837159 0 +72 31690 49.431436837159 0 +72 31690 49.431436837159 0 +72 31710 49.457384235618 0 +72 31710 49.457384235618 0 +72 31720 49.457544235618 0 +72 31720 49.457544235618 0 +72 31748 49.543993699244 0 +72 31748 49.543993699244 0 +72 31758 49.544153699244 0 +72 31758 49.544153699244 0 +72 31816 49.724398582336 0 +72 31816 49.724398582336 0 +72 31823 49.724558582336 0 +72 31823 49.724558582336 0 +72 31850 49.731276842151 0 +72 31850 49.731276842151 0 +72 31856 49.731436842151 0 +72 31856 49.731436842151 0 +72 31876 49.757384226909 0 +72 31876 49.757384226909 0 +72 31886 49.757544226909 0 +72 31886 49.757544226909 0 +72 31914 49.843993694931 0 +72 31914 49.843993694931 0 +72 31924 49.844153694931 0 +72 31924 49.844153694931 0 +72 31982 50.024398582336 0 +72 31982 50.024398582336 0 +72 31989 50.024558582336 0 +72 31989 50.024558582336 0 +72 32016 50.031276841687 0 +72 32016 50.031276841687 0 +72 32022 50.031436841687 0 +72 32022 50.031436841687 0 +72 32042 50.057384218616 0 +72 32042 50.057384218616 0 +72 32052 50.057544218616 0 +72 32052 50.057544218616 0 +72 32080 50.143993691243 0 +72 32080 50.143993691243 0 +72 32090 50.144153691243 0 +72 32090 50.144153691243 0 +72 32148 50.324398582336 0 +72 32148 50.324398582336 0 +72 32155 50.324558582336 0 +72 32155 50.324558582336 0 +72 32182 50.331276841226 0 +72 32182 50.331276841226 0 +72 32188 50.331436841226 0 +72 32188 50.331436841226 0 +72 32208 50.3573842108 0 +72 32208 50.3573842108 0 +72 32218 50.3575442108 0 +72 32218 50.3575442108 0 +72 32246 50.443993688083 0 +72 32246 50.443993688083 0 +72 32256 50.444153688083 0 +72 32256 50.444153688083 0 +72 32314 50.624398582336 0 +72 32314 50.624398582336 0 +72 32321 50.624558582336 0 +72 32321 50.624558582336 0 +72 32348 50.631276840782 0 +72 32348 50.631276840782 0 +72 32354 50.631436840782 0 +72 32354 50.631436840782 0 +72 32374 50.657384203419 0 +72 32374 50.657384203419 0 +72 32384 50.657544203419 0 +72 32384 50.657544203419 0 +72 32412 50.743993685542 0 +72 32412 50.743993685542 0 +72 32422 50.744153685542 0 +72 32422 50.744153685542 0 +72 32480 50.924398582336 0 +72 32480 50.924398582336 0 +72 32487 50.924558582336 0 +72 32487 50.924558582336 0 +72 32514 50.931276840349 0 +72 32514 50.931276840349 0 +72 32520 50.931436840349 0 +72 32520 50.931436840349 0 +72 32540 50.957384196502 0 +72 32540 50.957384196502 0 +72 32550 50.957544196502 0 +72 32550 50.957544196502 0 +72 32578 51.043993683597 0 +72 32578 51.043993683597 0 +72 32588 51.044153683597 0 +72 32588 51.044153683597 0 +72 32642 51.224398582336 0 +72 32642 51.224398582336 0 +72 32649 51.224558582336 0 +72 32649 51.224558582336 0 +72 32676 51.231276839912 0 +72 32676 51.231276839912 0 +72 32682 51.231436839912 0 +72 32682 51.231436839912 0 +72 32702 51.257384190124 0 +72 32702 51.257384190124 0 +72 32712 51.257544190124 0 +72 32712 51.257544190124 0 +72 32736 51.343993682284 0 +72 32736 51.343993682284 0 +72 32746 51.344153682284 0 +72 32746 51.344153682284 0 +72 32800 51.524398582336 0 +72 32800 51.524398582336 0 +72 32807 51.524558582336 0 +72 32807 51.524558582336 0 +72 32834 51.531276839494 0 +72 32834 51.531276839494 0 +72 32840 51.531436839494 0 +72 32840 51.531436839494 0 +72 32864 51.557384184246 0 +72 32864 51.557384184246 0 +72 32874 51.557544184246 0 +72 32874 51.557544184246 0 +72 32902 51.643993681524 0 +72 32902 51.643993681524 0 +72 32912 51.644153681524 0 +72 32912 51.644153681524 0 +72 32966 51.824398582336 0 +72 32966 51.824398582336 0 +72 32973 51.824558582336 0 +72 32973 51.824558582336 0 +72 33000 51.831276839089 0 +72 33000 51.831276839089 0 +72 33006 51.831436839089 0 +72 33006 51.831436839089 0 +72 33030 51.857384178906 0 +72 33030 51.857384178906 0 +72 33040 51.857544178906 0 +72 33040 51.857544178906 0 +72 33068 51.943993681491 0 +72 33068 51.943993681491 0 +72 33078 51.944153681491 0 +72 33078 51.944153681491 0 +72 33132 52.124398582336 0 +72 33132 52.124398582336 0 +72 33139 52.124558582336 0 +72 33139 52.124558582336 0 +72 33166 52.131276838692 0 +72 33166 52.131276838692 0 +72 33172 52.131436838692 0 +72 33172 52.131436838692 0 +72 33196 52.157384174145 0 +72 33196 52.157384174145 0 +72 33206 52.157544174145 0 +72 33206 52.157544174145 0 +72 33234 52.243993682011 0 +72 33234 52.243993682011 0 +72 33244 52.244153682011 0 +72 33244 52.244153682011 0 +72 33298 52.424398582336 0 +72 33298 52.424398582336 0 +72 33305 52.424558582336 0 +72 33305 52.424558582336 0 +72 33332 52.431276838288 0 +72 33332 52.431276838288 0 +72 33338 52.431436838288 0 +72 33338 52.431436838288 0 +72 33362 52.457384169983 0 +72 33362 52.457384169983 0 +72 33372 52.457544169983 0 +72 33372 52.457544169983 0 +72 33400 52.543993683051 0 +72 33400 52.543993683051 0 +72 33410 52.544153683051 0 +72 33410 52.544153683051 0 +72 33464 52.724398582336 0 +72 33464 52.724398582336 0 +72 33471 52.724558582336 0 +72 33471 52.724558582336 0 +72 33499 52.731276837906 0 +72 33499 52.731276837906 0 +72 33509 52.731436837906 0 +72 33509 52.731436837906 0 +72 33528 52.757384166374 0 +72 33528 52.757384166374 0 +72 33538 52.757544166374 0 +72 33538 52.757544166374 0 +72 33566 52.843993684615 0 +72 33566 52.843993684615 0 +72 33576 52.844153684615 0 +72 33576 52.844153684615 0 +72 33630 53.024398582336 0 +72 33630 53.024398582336 0 +72 33637 53.024558582336 0 +72 33637 53.024558582336 0 +72 33665 53.031276837529 0 +72 33665 53.031276837529 0 +72 33675 53.031436837529 0 +72 33675 53.031436837529 0 +72 33694 53.057384163324 0 +72 33694 53.057384163324 0 +72 33704 53.057544163324 0 +72 33704 53.057544163324 0 +72 33732 53.143993686732 0 +72 33732 53.143993686732 0 +72 33742 53.144153686732 0 +72 33742 53.144153686732 0 +72 33772 53.324398582336 0 +72 33772 53.324398582336 0 +72 33778 53.324558582336 0 +72 33778 53.324558582336 0 +72 33804 53.331276837158 0 +72 33804 53.331276837158 0 +72 33813 53.331436837158 0 +72 33813 53.331436837158 0 +72 33831 53.357384160285 0 +72 33831 53.357384160285 0 +72 33840 53.357544160285 0 +72 33840 53.357544160285 0 +72 33866 53.44399368936 0 +72 33866 53.44399368936 0 +72 33875 53.44415368936 0 +72 33875 53.44415368936 0 +72 33899 53.624398582336 0 +72 33899 53.624398582336 0 +72 33905 53.624558582336 0 +72 33905 53.624558582336 0 +72 33931 53.631276836803 0 +72 33931 53.631276836803 0 +72 33940 53.631436836803 0 +72 33940 53.631436836803 0 +72 33958 53.657384156982 0 +72 33958 53.657384156982 0 +72 33967 53.657544156982 0 +72 33967 53.657544156982 0 +72 33993 53.743993692655 0 +72 33993 53.743993692655 0 +72 34002 53.744153692655 0 +72 34002 53.744153692655 0 +72 34026 53.924398582336 0 +72 34026 53.924398582336 0 +72 34032 53.924558582336 0 +72 34032 53.924558582336 0 +72 34058 53.931276836464 0 +72 34058 53.931276836464 0 +72 34067 53.931436836464 0 +72 34067 53.931436836464 0 +72 34085 53.95738415332 0 +72 34085 53.95738415332 0 +72 34094 53.95754415332 0 +72 34094 53.95754415332 0 +72 34120 54.043993696094 0 +72 34120 54.043993696094 0 +72 34129 54.044153696094 0 +72 34129 54.044153696094 0 +72 34153 54.224398582336 0 +72 34153 54.224398582336 0 +72 34159 54.224558582336 0 +72 34159 54.224558582336 0 +72 34185 54.231276836131 0 +72 34185 54.231276836131 0 +72 34194 54.231436836131 0 +72 34194 54.231436836131 0 +72 34212 54.257384149235 0 +72 34212 54.257384149235 0 +72 34221 54.257544149235 0 +72 34221 54.257544149235 0 +72 34247 54.343993699619 0 +72 34247 54.343993699619 0 +72 34256 54.344153699619 0 +72 34256 54.344153699619 0 +72 34280 54.524398582336 0 +72 34280 54.524398582336 0 +72 34286 54.524558582336 0 +72 34286 54.524558582336 0 +72 34312 54.531276835797 0 +72 34312 54.531276835797 0 +72 34321 54.531436835797 0 +72 34321 54.531436835797 0 +72 34339 54.557384144828 0 +72 34339 54.557384144828 0 +72 34348 54.557544144828 0 +72 34348 54.557544144828 0 +72 34374 54.643993703131 0 +72 34374 54.643993703131 0 +72 34383 54.644153703131 0 +72 34383 54.644153703131 0 +72 34407 54.824398582336 0 +72 34407 54.824398582336 0 +72 34413 54.824558582336 0 +72 34413 54.824558582336 0 +72 34439 54.831276835522 0 +72 34439 54.831276835522 0 +72 34448 54.831436835522 0 +72 34448 54.831436835522 0 +72 34466 54.85738414112 0 +72 34466 54.85738414112 0 +72 34475 54.85754414112 0 +72 34475 54.85754414112 0 +72 34501 54.943993706647 0 +72 34501 54.943993706647 0 +72 34510 54.944153706647 0 +72 34510 54.944153706647 0 +72 34534 55.124398582336 0 +72 34534 55.124398582336 0 +72 34540 55.124558582336 0 +72 34540 55.124558582336 0 +72 34566 55.131276835415 0 +72 34566 55.131276835415 0 +72 34575 55.131436835415 0 +72 34575 55.131436835415 0 +72 34593 55.15738413831 0 +72 34593 55.15738413831 0 +72 34602 55.15754413831 0 +72 34602 55.15754413831 0 +72 34628 55.243993710085 0 +72 34628 55.243993710085 0 +72 34637 55.244153710085 0 +72 34637 55.244153710085 0 +72 34661 55.424398582336 0 +72 34661 55.424398582336 0 +72 34667 55.424558582336 0 +72 34667 55.424558582336 0 +72 34693 55.431276835478 0 +72 34693 55.431276835478 0 +72 34702 55.431436835478 0 +72 34702 55.431436835478 0 +72 34720 55.45738413635 0 +72 34720 55.45738413635 0 +72 34729 55.45754413635 0 +72 34729 55.45754413635 0 +72 34755 55.543993713581 0 +72 34755 55.543993713581 0 +72 34764 55.544153713581 0 +72 34764 55.544153713581 0 +72 34788 55.724398582336 0 +72 34788 55.724398582336 0 +72 34794 55.724558582336 0 +72 34794 55.724558582336 0 +72 34820 55.731276835709 0 +72 34820 55.731276835709 0 +72 34829 55.731436835709 0 +72 34829 55.731436835709 0 +72 34847 55.757384135289 0 +72 34847 55.757384135289 0 +72 34856 55.757544135289 0 +72 34856 55.757544135289 0 +72 34882 55.843993717083 0 +72 34882 55.843993717083 0 +72 34891 55.844153717083 0 +72 34891 55.844153717083 0 +72 34915 56.024398582336 0 +72 34915 56.024398582336 0 +72 34921 56.024558582336 0 +72 34921 56.024558582336 0 +72 34947 56.031276836125 0 +72 34947 56.031276836125 0 +72 34956 56.031436836125 0 +72 34956 56.031436836125 0 +72 34974 56.057384135209 0 +72 34974 56.057384135209 0 +72 34983 56.057544135209 0 +72 34983 56.057544135209 0 +72 35009 56.143993720633 0 +72 35009 56.143993720633 0 +72 35018 56.144153720633 0 +72 35018 56.144153720633 0 +72 35042 56.324398582336 0 +72 35042 56.324398582336 0 +72 35048 56.324558582336 0 +72 35048 56.324558582336 0 +72 35074 56.331276836745 0 +72 35074 56.331276836745 0 +72 35083 56.331436836745 0 +72 35083 56.331436836745 0 +72 35100 56.357384136092 0 +72 35100 56.357384136092 0 +72 35105 56.357544136092 0 +72 35105 56.357544136092 0 +72 35136 56.443993724089 0 +72 35136 56.443993724089 0 +72 35145 56.444153724089 0 +72 35145 56.444153724089 0 +72 35167 56.624398582336 0 +72 35167 56.624398582336 0 +72 35172 56.624558582336 0 +72 35172 56.624558582336 0 +72 35193 56.631276837493 0 +72 35193 56.631276837493 0 +72 35201 56.631436837493 0 +72 35201 56.631436837493 0 +72 35217 56.657384137925 0 +72 35217 56.657384137925 0 +72 35221 56.657544137925 0 +72 35221 56.657544137925 0 +72 35251 56.924398582336 0 +72 35251 56.924398582336 0 +72 35256 56.924558582336 0 +72 35256 56.924558582336 0 +72 35277 56.931276842253 0 +72 35277 56.931276842253 0 +72 35285 56.931436842253 0 +72 35285 56.931436842253 0 +72 35301 56.957384140796 0 +72 35301 56.957384140796 0 +72 35305 56.957544140796 0 +72 35305 56.957544140796 0 +72 35335 57.224398582336 0 +72 35335 57.224398582336 0 +72 35340 57.224558582336 0 +72 35340 57.224558582336 0 +72 35361 57.231276850523 0 +72 35361 57.231276850523 0 +72 35369 57.231436850523 0 +72 35369 57.231436850523 0 +72 35385 57.257384144754 0 +72 35385 57.257384144754 0 +72 35389 57.257544144754 0 +72 35389 57.257544144754 0 +72 35419 57.524398582336 0 +72 35419 57.524398582336 0 +72 35424 57.524558582336 0 +72 35424 57.524558582336 0 +72 35445 57.53127685508 0 +72 35445 57.53127685508 0 +72 35453 57.53143685508 0 +72 35453 57.53143685508 0 +72 35470 57.557384149775 0 +72 35470 57.557384149775 0 +72 35478 57.557544149775 0 +72 35478 57.557544149775 0 +72 35503 57.824398582336 0 +72 35503 57.824398582336 0 +72 35508 57.824558582336 0 +72 35508 57.824558582336 0 +72 35529 57.831276859492 0 +72 35529 57.831276859492 0 +72 35537 57.831436859492 0 +72 35537 57.831436859492 0 +72 35554 57.857384155686 0 +72 35554 57.857384155686 0 +72 35562 57.857544155686 0 +72 35562 57.857544155686 0 +72 35587 58.124398582336 0 +72 35587 58.124398582336 0 +72 35592 58.124558582336 0 +72 35592 58.124558582336 0 +72 35613 58.131276864633 0 +72 35613 58.131276864633 0 +72 35621 58.131436864633 0 +72 35621 58.131436864633 0 +72 35638 58.157384162109 0 +72 35638 58.157384162109 0 +72 35646 58.157544162109 0 +72 35646 58.157544162109 0 +72 35671 58.424398582336 0 +72 35671 58.424398582336 0 +72 35676 58.424558582336 0 +72 35676 58.424558582336 0 +72 35697 58.431276870558 0 +72 35697 58.431276870558 0 +72 35705 58.431436870558 0 +72 35705 58.431436870558 0 +72 35722 58.457384169083 0 +72 35722 58.457384169083 0 +72 35730 58.457544169083 0 +72 35730 58.457544169083 0 +72 35755 58.724398582336 0 +72 35755 58.724398582336 0 +72 35760 58.724558582336 0 +72 35760 58.724558582336 0 +72 35781 58.731276877253 0 +72 35781 58.731276877253 0 +72 35789 58.731436877253 0 +72 35789 58.731436877253 0 +72 35806 58.757384176569 0 +72 35806 58.757384176569 0 +72 35814 58.757544176569 0 +72 35814 58.757544176569 0 +72 35839 59.024398582336 0 +72 35839 59.024398582336 0 +72 35844 59.024558582336 0 +72 35844 59.024558582336 0 +72 35865 59.031276884805 0 +72 35865 59.031276884805 0 +72 35873 59.031436884805 0 +72 35873 59.031436884805 0 +72 35890 59.057384184524 0 +72 35890 59.057384184524 0 +72 35898 59.057544184524 0 +72 35898 59.057544184524 0 +72 35923 59.324398582336 0 +72 35923 59.324398582336 0 +72 35928 59.324558582336 0 +72 35928 59.324558582336 0 +72 35949 59.331276893239 0 +72 35949 59.331276893239 0 +72 35957 59.331436893239 0 +72 35957 59.331436893239 0 +72 35974 59.357384192972 0 +72 35974 59.357384192972 0 +72 35982 59.357544192972 0 +72 35982 59.357544192972 0 +72 36007 59.624398582336 0 +72 36007 59.624398582336 0 +72 36012 59.624558582336 0 +72 36012 59.624558582336 0 +72 36033 59.631276902575 0 +72 36033 59.631276902575 0 +72 36041 59.631436902575 0 +72 36041 59.631436902575 0 +72 36058 59.657384201866 0 +72 36058 59.657384201866 0 +72 36066 59.657544201866 0 +72 36066 59.657544201866 0 +72 36091 59.924398582336 0 +72 36091 59.924398582336 0 +72 36096 59.924558582336 0 +72 36096 59.924558582336 0 +72 36117 59.931276912849 0 +72 36117 59.931276912849 0 +72 36125 59.931436912849 0 +72 36125 59.931436912849 0 +72 36142 59.957384211172 0 +72 36142 59.957384211172 0 +72 36150 59.957544211172 0 +72 36150 59.957544211172 0 +72 36175 60.224398582336 0 +72 36175 60.224398582336 0 +72 36180 60.224558582336 0 +72 36180 60.224558582336 0 +72 36218 60.257384220865 0 +72 36218 60.257384220865 0 +72 36226 60.257544220865 0 +72 36226 60.257544220865 0 +72 36251 60.524398582336 0 +72 36251 60.524398582336 0 +72 36256 60.524558582336 0 +72 36256 60.524558582336 0 +72 36294 60.557384230953 0 +72 36294 60.557384230953 0 +72 36302 60.557544230953 0 +72 36302 60.557544230953 0 +72 36327 60.824398582336 0 +72 36327 60.824398582336 0 +72 36332 60.824558582336 0 +72 36332 60.824558582336 0 +72 36370 60.857384241392 0 +72 36370 60.857384241392 0 +72 36378 60.857544241392 0 +72 36378 60.857544241392 0 +72 36403 61.124398582336 0 +72 36403 61.124398582336 0 +72 36408 61.124558582336 0 +72 36408 61.124558582336 0 +72 36446 61.157384252127 0 +72 36446 61.157384252127 0 +72 36454 61.157544252127 0 +72 36454 61.157544252127 0 +72 36479 61.424398582336 0 +72 36479 61.424398582336 0 +72 36484 61.424558582336 0 +72 36484 61.424558582336 0 +72 36522 61.45738426323 0 +72 36522 61.45738426323 0 +72 36530 61.45754426323 0 +72 36530 61.45754426323 0 +72 36555 61.724398582336 0 +72 36555 61.724398582336 0 +72 36560 61.724558582336 0 +72 36560 61.724558582336 0 +72 36598 61.757384274635 0 +72 36598 61.757384274635 0 +72 36606 61.757544274635 0 +72 36606 61.757544274635 0 +72 36631 62.024398582336 0 +72 36631 62.024398582336 0 +72 36636 62.024558582336 0 +72 36636 62.024558582336 0 +72 36674 62.057384285728 0 +72 36674 62.057384285728 0 +72 36682 62.057544285728 0 +72 36682 62.057544285728 0 +72 36707 62.324398582336 0 +72 36707 62.324398582336 0 +72 36712 62.324558582336 0 +72 36712 62.324558582336 0 +72 36750 62.357384295767 0 +72 36750 62.357384295767 0 +72 36758 62.357544295767 0 +72 36758 62.357544295767 0 +72 36783 62.624398582336 0 +72 36783 62.624398582336 0 +72 36788 62.624558582336 0 +72 36788 62.624558582336 0 +72 36826 62.657384304708 0 +72 36826 62.657384304708 0 +72 36834 62.657544304708 0 +72 36834 62.657544304708 0 +72 36859 62.924398582336 0 +72 36859 62.924398582336 0 +72 36864 62.924558582336 0 +72 36864 62.924558582336 0 +72 36902 62.957384312531 0 +72 36902 62.957384312531 0 +72 36910 62.957544312531 0 +72 36910 62.957544312531 0 +73 1293 6.214717014941 82 +73 1327 6.231436487063 82 +73 1370 6.257544178941 82 +73 1476 6.514717005507 82 +73 1543 6.531436486831 82 +73 1587 6.557544179276 82 +73 1693 6.814716995188 82 +73 1760 6.831436486811 82 +73 1804 6.857544179479 82 +73 1910 7.114716984223 82 +73 1977 7.131436486808 82 +73 2021 7.157544179668 82 +73 2127 7.414716972819 82 +73 2194 7.431436486796 82 +73 2238 7.45754417987 82 +73 2344 7.714716960939 82 +73 2411 7.731436486797 82 +73 2455 7.757544180075 82 +73 2561 8.014716948475 82 +73 2628 8.031436486795 82 +73 2672 8.057544180287 82 +73 2778 8.314716935291 82 +73 2849 8.331436486806 82 +73 2893 8.3575441805 82 +73 2965 8.444153908226 82 +73 3003 8.61471692156 82 +73 3074 8.631436486794 82 +73 3118 8.657544180719 82 +73 3190 8.744153906406 82 +73 3228 8.914716907259 82 +73 3299 8.931436486763 82 +73 3343 8.957544180943 82 +73 3415 9.04415390454 82 +73 3453 9.214716892419 82 +73 3524 9.23143648678 82 +73 3568 9.257544181166 82 +73 3640 9.344153902652 82 +73 3678 9.514716877151 82 +73 3749 9.531436486774 82 +73 3793 9.557544181399 82 +73 3865 9.644153900772 82 +73 3903 9.814716861723 82 +73 3974 9.831436486773 82 +73 4018 9.857544181638 82 +73 4090 9.944153898897 82 +73 4128 10.114716846518 82 +73 4199 10.131436486772 82 +73 4243 10.157544181883 82 +73 4315 10.244153897044 82 +73 4353 10.414716831999 82 +73 4424 10.431436486761 82 +73 4468 10.457544182119 82 +73 4540 10.54415389528 82 +73 4582 10.714716820945 82 +73 4657 10.731436486773 82 +73 4701 10.757544182346 82 +73 4778 10.844153893701 82 +73 4815 11.014716825169 82 +73 4895 11.031436486765 82 +73 4934 11.057544182606 82 +73 5011 11.14415389274 82 +73 5048 11.31471683863 82 +73 5128 11.33143648678 82 +73 5162 11.35754418284 82 +73 5244 11.444153892392 82 +73 5281 11.614716853551 82 +73 5361 11.63143648679 82 +73 5399 11.65754418309 82 +73 5485 11.74415389255 82 +73 5522 11.914716868865 82 +73 5602 11.931436486788 82 +73 5640 11.957544183349 82 +73 5726 12.044153893167 82 +73 5763 12.214716884343 82 +73 5843 12.231436486807 82 +73 5881 12.257544183599 82 +73 5967 12.344153893974 82 +73 6004 12.514716899849 82 +73 6084 12.531436486799 82 +73 6122 12.557544183875 82 +73 6208 12.644153894778 82 +73 6245 12.814716915398 82 +73 6325 12.831436486802 82 +73 6363 12.857544184139 82 +73 6449 12.944153895594 82 +73 6486 13.114716930999 82 +73 6566 13.131436486785 82 +73 6604 13.157544184416 82 +73 6690 13.244153896412 82 +73 6727 13.41471694659 82 +73 6807 13.431436486795 82 +73 6845 13.457544184698 82 +73 6931 13.544153897233 82 +73 6968 13.714716962198 82 +73 7048 13.7314364868 82 +73 7086 13.757544184966 82 +73 7172 13.844153898057 82 +73 7214 14.014716977862 82 +73 7289 14.031436486793 82 +73 7327 14.057544185242 82 +73 7413 14.14415389887 82 +73 7455 14.314716993496 82 +73 7530 14.331436486806 82 +73 7568 14.357544185527 82 +73 7654 14.444153899694 82 +73 7696 14.614717009101 82 +73 7771 14.631436486796 82 +73 7809 14.657544185824 82 +73 7895 14.744153900511 82 +73 7937 14.914717024712 82 +73 8012 14.931436486792 82 +73 8050 14.957544186118 82 +73 8136 15.044153901332 82 +73 8178 15.214717040331 82 +73 8253 15.231436486777 82 +73 8291 15.257544186413 82 +73 8377 15.344153902158 82 +73 8419 15.514717055996 82 +73 8494 15.531436486786 82 +73 8532 15.557544186718 82 +73 8618 15.644153902982 82 +73 8660 15.81471707161 82 +73 8735 15.831436486807 82 +73 8773 15.857544187027 82 +73 8859 15.944153903822 82 +73 8901 16.11471708724 82 +73 8980 16.131436486791 82 +73 9018 16.157544187335 82 +73 9108 16.244153904634 82 +73 9150 16.414717102881 82 +73 9229 16.431436486767 82 +73 9267 16.45754418766 82 +73 9357 16.544153905451 82 +73 9399 16.714717118536 82 +73 9478 16.731436486767 82 +73 9516 16.757544187976 82 +73 9606 16.844153906273 82 +73 9648 17.014717134175 82 +73 9727 17.031436486771 82 +73 9765 17.057544188287 82 +73 9855 17.144153907123 82 +73 9897 17.314717149858 82 +73 9976 17.331436486778 82 +73 10014 17.357544188603 82 +73 10104 17.444153907967 82 +73 10146 17.614717165512 82 +73 10225 17.631436486782 82 +73 10263 17.657544188908 82 +73 10353 17.74415390881 82 +73 10395 17.914717181155 82 +73 10470 17.931436486796 82 +73 10508 17.957544189225 82 +73 10594 18.04415390965 82 +73 10641 18.214717196811 82 +73 10707 18.231436486817 82 +73 10745 18.257544189554 82 +73 10874 18.514717211927 82 +73 10940 18.531436486818 82 +73 10978 18.557544189884 82 +73 11107 18.814717220024 82 +73 11173 18.831436486814 82 +73 11211 18.857544190227 82 +73 11340 19.11471722262 82 +73 11406 19.131436486813 82 +73 11444 19.157544190586 82 +73 11573 19.414717225292 82 +73 11639 19.431436486792 82 +73 11677 19.457544190936 82 +73 11806 19.714717228908 82 +73 11872 19.73143648675 82 +73 11910 19.757544191083 82 +73 12039 20.014717233572 82 +73 12109 20.031436486573 82 +73 12147 20.057544190919 82 +73 12280 20.314717239262 82 +73 12350 20.331436486402 82 +73 12388 20.35754419086 82 +73 12521 20.614717246038 82 +73 12591 20.631436486279 82 +73 12629 20.657544191065 82 +73 12762 20.914717253923 82 +73 12832 20.9314364863 82 +73 12870 20.957544191416 82 +73 13003 21.214717262739 82 +73 13073 21.231436486377 82 +73 13111 21.257544192086 82 +73 13244 21.514717272413 82 +73 13314 21.531436486403 82 +73 13352 21.557544193076 82 +73 13485 21.814717282935 82 +73 13555 21.831436486387 82 +73 13593 21.85754419435 82 +73 13726 22.114717294257 82 +73 13796 22.13143648632 82 +73 13834 22.15754419591 82 +73 13967 22.414717306336 82 +73 14037 22.431436486231 82 +73 14075 22.457544197834 82 +73 14208 22.714717319146 82 +73 14278 22.731436486104 82 +73 14316 22.75754420026 82 +73 14449 23.014717332675 82 +73 14519 23.031436485972 82 +73 14557 23.057544203204 82 +73 14690 23.314717346848 82 +73 14760 23.331436485713 82 +73 14798 23.357544206722 82 +73 14931 23.614717361743 82 +73 15001 23.6314364855 82 +73 15039 23.657544210857 82 +73 15177 23.914717377256 82 +73 15237 23.93143648528 82 +73 15280 23.95754421565 82 +73 15418 24.214717393408 82 +73 15478 24.231436485173 82 +73 15521 24.257544221045 82 +73 15659 24.514717410256 82 +73 15719 24.531436485097 82 +73 15762 24.55754422706 82 +73 15900 24.814717427619 82 +73 15960 24.831436484864 82 +73 16003 24.857544233855 82 +73 16141 25.114717445125 82 +73 16201 25.131436484116 82 +73 16244 25.15754424158 82 +73 16382 25.414717462649 82 +73 16442 25.431436482795 82 +73 16485 25.457544250111 82 +73 16623 25.714717480245 82 +73 16683 25.731436480874 82 +73 16726 25.757544259482 82 +73 16864 26.014717497945 82 +73 16924 26.031436479731 82 +73 16967 26.057544269815 82 +73 17110 26.314717515616 82 +73 17165 26.331436479849 82 +73 17208 26.357544280927 82 +73 17351 26.614717533368 82 +73 17406 26.631436481362 82 +73 17449 26.657544292372 82 +73 17592 26.914717551168 82 +73 17647 26.931436484209 82 +73 17690 26.957544303661 82 +73 17880 27.231436487819 82 +73 17923 27.257544313921 82 +73 18113 27.531436490771 82 +73 18156 27.557544323167 82 +73 18346 27.831436492635 82 +73 18389 27.857544331293 82 +73 18579 28.131436501988 82 +73 18622 28.15754433818 82 +73 18812 28.431436516789 82 +73 18855 28.45754434442 82 +73 19045 28.731436531174 82 +73 19088 28.757544346246 82 +73 19278 29.031436536731 82 +73 19317 29.057544347069 82 +73 19503 29.331436539274 82 +73 19547 29.357544351202 82 +73 19728 29.631436541563 82 +73 19772 29.657544352581 82 +73 19953 29.931436543815 82 +73 19997 29.957544353115 82 +73 20178 30.231436546125 82 +73 20222 30.257544353112 82 +73 20403 30.531436548461 82 +73 20447 30.55754435311 82 +73 20633 30.831436550899 82 +73 20672 30.857544353107 82 +73 20862 31.131436553412 82 +73 20901 31.157544353102 82 +73 20941 31.193746243446 82 +73 21095 31.431436555932 82 +73 21134 31.457544353095 82 +73 21174 31.493746217696 82 +73 21328 31.731436558446 82 +73 21367 31.757544353088 82 +73 21407 31.793746191964 82 +73 21561 32.031436560973 82 +73 21600 32.057544353084 82 +73 21635 32.093746166255 82 +73 21794 32.331436563405 82 +73 21833 32.357544353083 82 +73 21868 32.393746140428 82 +73 22027 32.631436565904 82 +73 22066 32.657544353086 82 +73 22101 32.693746114644 82 +73 22260 32.931436568399 82 +73 22299 32.957544353093 82 +73 22334 32.993746088864 82 +73 22493 33.231436570893 82 +73 22532 33.257544353102 82 +73 22567 33.293746063102 82 +73 22726 33.53143657339 82 +73 22765 33.557544353115 82 +73 22795 33.593746037322 82 +73 22955 33.831436575887 82 +73 22994 33.857544353132 82 +73 23024 33.893746011596 82 +73 23153 34.131436578412 82 +73 23187 34.157544353151 82 +73 23311 34.431436580926 82 +73 23345 34.457544353173 82 +73 23469 34.731436583436 82 +73 23503 34.757544353199 82 +73 23627 35.031436585897 82 +73 23661 35.057544353228 82 +73 23789 35.331436588437 82 +73 23823 35.357544353251 82 +73 23955 35.631436590971 82 +73 23989 35.657544353247 82 +73 24121 35.931436593481 82 +73 24155 35.957544353214 82 +73 24287 36.231436595961 82 +73 24321 36.257544353163 82 +73 24453 36.531436598459 82 +73 24487 36.557544353111 82 +73 24619 36.83143660094 82 +73 24653 36.857544353084 82 +73 24785 37.131436603404 82 +73 24819 37.15754435309 82 +73 24951 37.431436605886 82 +73 24985 37.457544353113 82 +73 25117 37.731436608365 82 +73 25156 37.757544353145 82 +73 25283 38.031436610826 82 +73 25322 38.057544353181 82 +73 25449 38.3314366133 82 +73 25488 38.357544353213 82 +73 25615 38.631436615791 82 +73 25654 38.657544353237 82 +73 25781 38.93143661831 82 +73 25820 38.95754435325 82 +73 25947 39.231436620759 82 +73 25986 39.257544353248 82 +73 26113 39.531436623254 82 +73 26152 39.557544353232 82 +73 26279 39.83143662574 82 +73 26318 39.857544353205 82 +73 26445 40.131436628265 82 +73 26484 40.157544353178 82 +73 26611 40.431436630742 82 +73 26650 40.457544353154 82 +73 26781 40.731436633247 82 +73 26820 40.757544353134 82 +73 26863 40.844153902315 82 +73 26955 41.031436635684 82 +73 26994 41.057544353117 82 +73 27037 41.144153889795 82 +73 27129 41.331436638199 82 +73 27168 41.357544353104 82 +73 27211 41.444153878047 82 +73 27303 41.631436640727 82 +73 27342 41.657544353094 82 +73 27385 41.744153867126 82 +73 27477 41.931436643268 82 +73 27516 41.957544353087 82 +73 27559 42.044153857353 82 +73 27651 42.231436645815 82 +73 27690 42.257544353084 82 +73 27728 42.344153848849 82 +73 27825 42.531436648376 82 +73 27864 42.557544353084 82 +73 27902 42.644153841477 82 +73 27999 42.831436650828 82 +73 28038 42.857544353087 82 +73 28076 42.944153835169 82 +73 28173 43.131436653336 82 +73 28212 43.157544353094 82 +73 28250 43.244153829822 82 +73 28347 43.431436655825 82 +73 28386 43.457544353104 82 +73 28424 43.544153825335 82 +73 28521 43.731436658351 82 +73 28560 43.757544353117 82 +73 28598 43.84415382162 82 +73 28695 44.031436660872 82 +73 28734 44.057544353134 82 +73 28772 44.144153818568 82 +73 28869 44.331436663352 82 +73 28904 44.357544353142 82 +73 28942 44.444153816103 82 +73 29035 44.63143666581 82 +73 29070 44.657544353131 82 +73 29108 44.744153814138 82 +73 29201 44.931436668328 82 +73 29236 44.957544353109 82 +73 29274 45.044153812593 82 +73 29367 45.231436670771 82 +73 29402 45.257544353088 82 +73 29440 45.344153811321 82 +73 29533 45.53143667327 82 +73 29568 45.557544353087 82 +73 29606 45.644153810247 82 +73 29699 45.831436675809 82 +73 29734 45.857544353099 82 +73 29772 45.94415380881 82 +73 29865 46.131436678861 82 +73 29900 46.157544350237 82 +73 29933 46.244153803699 82 +73 30031 46.431436686409 82 +73 30066 46.457544341327 82 +73 30099 46.544153792983 82 +73 30197 46.731436699768 82 +73 30227 46.757544329816 82 +73 30265 46.844153781596 82 +73 30363 47.031436714347 82 +73 30393 47.057544318309 82 +73 30431 47.144153770247 82 +73 30529 47.331436729157 82 +73 30559 47.357544306963 82 +73 30597 47.444153758984 82 +73 30695 47.631436744132 82 +73 30725 47.657544295839 82 +73 30763 47.744153747807 82 +73 30861 47.931436759305 82 +73 30891 47.957544284957 82 +73 30929 48.044153736723 82 +73 31027 48.231436774574 82 +73 31057 48.257544274373 82 +73 31095 48.344153727328 82 +73 31193 48.531436790029 82 +73 31223 48.557544264097 82 +73 31261 48.6441537182 82 +73 31359 48.83143680564 82 +73 31389 48.85754425419 82 +73 31427 48.944153710675 82 +73 31525 49.13143682136 82 +73 31555 49.157544244721 82 +73 31593 49.244153704337 82 +73 31691 49.431436837159 82 +73 31721 49.457544235618 82 +73 31759 49.544153699244 82 +73 31857 49.731436842151 82 +73 31887 49.757544226909 82 +73 31925 49.844153694931 82 +73 32023 50.031436841687 82 +73 32053 50.057544218616 82 +73 32091 50.144153691243 82 +73 32189 50.331436841226 82 +73 32219 50.3575442108 82 +73 32257 50.444153688083 82 +73 32355 50.631436840782 82 +73 32385 50.657544203419 82 +73 32423 50.744153685542 82 +73 32521 50.931436840349 82 +73 32551 50.957544196502 82 +73 32589 51.044153683597 82 +73 32683 51.231436839912 82 +73 32713 51.257544190124 82 +73 32747 51.344153682284 82 +73 32841 51.531436839494 82 +73 32875 51.557544184246 82 +73 32913 51.644153681524 82 +73 33007 51.831436839089 82 +73 33041 51.857544178906 82 +73 33079 51.944153681491 82 +73 33173 52.131436838692 82 +73 33207 52.157544174145 82 +73 33245 52.244153682011 82 +73 33339 52.431436838288 82 +73 33373 52.457544169983 82 +73 33411 52.544153683051 82 +73 33510 52.731436837906 82 +73 33539 52.757544166374 82 +73 33577 52.844153684615 82 +73 33676 53.031436837529 82 +73 33705 53.057544163324 82 +73 33743 53.144153686732 82 +73 33814 53.331436837158 82 +73 33841 53.357544160285 82 +73 33876 53.44415368936 82 +73 33941 53.631436836803 82 +73 33968 53.657544156982 82 +73 34003 53.744153692655 82 +73 34068 53.931436836464 82 +73 34095 53.95754415332 82 +73 34130 54.044153696094 82 +73 34195 54.231436836131 82 +73 34222 54.257544149235 82 +73 34257 54.344153699619 82 +73 34322 54.531436835797 82 +73 34349 54.557544144828 82 +73 34384 54.644153703131 82 +73 34449 54.831436835522 82 +73 34476 54.85754414112 82 +73 34511 54.944153706647 82 +73 34576 55.131436835415 82 +73 34603 55.15754413831 82 +73 34638 55.244153710085 82 +73 34703 55.431436835478 82 +73 34730 55.45754413635 82 +73 34765 55.544153713581 82 +73 34830 55.731436835709 82 +73 34857 55.757544135289 82 +73 34892 55.844153717083 82 +73 34957 56.031436836125 82 +73 34984 56.057544135209 82 +73 35019 56.144153720633 82 +73 35084 56.331436836745 82 +73 35106 56.357544136092 82 +73 35146 56.444153724089 82 +73 35202 56.631436837493 82 +73 35222 56.657544137925 82 +73 35286 56.931436842253 82 +73 35306 56.957544140796 82 +73 35370 57.231436850523 82 +73 35390 57.257544144754 82 +73 35454 57.53143685508 82 +73 35479 57.557544149775 82 +73 35538 57.831436859492 82 +73 35563 57.857544155686 82 +73 35622 58.131436864633 82 +73 35647 58.157544162109 82 +73 35706 58.431436870558 82 +73 35731 58.457544169083 82 +73 35790 58.731436877253 82 +73 35815 58.757544176569 82 +73 35874 59.031436884805 82 +73 35899 59.057544184524 82 +73 35958 59.331436893239 82 +73 35983 59.357544192972 82 +73 36042 59.631436902575 82 +73 36067 59.657544201866 82 +73 36126 59.931436912849 82 +73 36151 59.957544211172 82 +73 36227 60.257544220865 82 +73 36303 60.557544230953 82 +73 36379 60.857544241392 82 +73 36455 61.157544252127 82 +73 36531 61.45754426323 82 +73 36607 61.757544274635 82 +73 36683 62.057544285728 82 +73 36759 62.357544295767 82 +73 36835 62.657544304708 82 +73 36911 62.957544312531 82 +74 1293 6.214717014941 82 +74 1327 6.231436487063 82 +74 1370 6.257544178941 82 +74 1476 6.514717005507 82 +74 1543 6.531436486831 82 +74 1587 6.557544179276 82 +74 1693 6.814716995188 82 +74 1760 6.831436486811 82 +74 1804 6.857544179479 82 +74 1910 7.114716984223 82 +74 1977 7.131436486808 82 +74 2021 7.157544179668 82 +74 2127 7.414716972819 82 +74 2194 7.431436486796 82 +74 2238 7.45754417987 82 +74 2344 7.714716960939 82 +74 2411 7.731436486797 82 +74 2455 7.757544180075 82 +74 2561 8.014716948475 82 +74 2628 8.031436486795 82 +74 2672 8.057544180287 82 +74 2778 8.314716935291 82 +74 2849 8.331436486806 82 +74 2893 8.3575441805 82 +74 2965 8.444153908226 82 +74 3003 8.61471692156 82 +74 3074 8.631436486794 82 +74 3118 8.657544180719 82 +74 3190 8.744153906406 82 +74 3228 8.914716907259 82 +74 3299 8.931436486763 82 +74 3343 8.957544180943 82 +74 3415 9.04415390454 82 +74 3453 9.214716892419 82 +74 3524 9.23143648678 82 +74 3568 9.257544181166 82 +74 3640 9.344153902652 82 +74 3678 9.514716877151 82 +74 3749 9.531436486774 82 +74 3793 9.557544181399 82 +74 3865 9.644153900772 82 +74 3903 9.814716861723 82 +74 3974 9.831436486773 82 +74 4018 9.857544181638 82 +74 4090 9.944153898897 82 +74 4128 10.114716846518 82 +74 4199 10.131436486772 82 +74 4243 10.157544181883 82 +74 4315 10.244153897044 82 +74 4353 10.414716831999 82 +74 4424 10.431436486761 82 +74 4468 10.457544182119 82 +74 4540 10.54415389528 82 +74 4582 10.714716820945 82 +74 4657 10.731436486773 82 +74 4701 10.757544182346 82 +74 4778 10.844153893701 82 +74 4815 11.014716825169 82 +74 4895 11.031436486765 82 +74 4934 11.057544182606 82 +74 5011 11.14415389274 82 +74 5048 11.31471683863 82 +74 5128 11.33143648678 82 +74 5162 11.35754418284 82 +74 5244 11.444153892392 82 +74 5281 11.614716853551 82 +74 5361 11.63143648679 82 +74 5399 11.65754418309 82 +74 5485 11.74415389255 82 +74 5522 11.914716868865 82 +74 5602 11.931436486788 82 +74 5640 11.957544183349 82 +74 5726 12.044153893167 82 +74 5763 12.214716884343 82 +74 5843 12.231436486807 82 +74 5881 12.257544183599 82 +74 5967 12.344153893974 82 +74 6004 12.514716899849 82 +74 6084 12.531436486799 82 +74 6122 12.557544183875 82 +74 6208 12.644153894778 82 +74 6245 12.814716915398 82 +74 6325 12.831436486802 82 +74 6363 12.857544184139 82 +74 6449 12.944153895594 82 +74 6486 13.114716930999 82 +74 6566 13.131436486785 82 +74 6604 13.157544184416 82 +74 6690 13.244153896412 82 +74 6727 13.41471694659 82 +74 6807 13.431436486795 82 +74 6845 13.457544184698 82 +74 6931 13.544153897233 82 +74 6968 13.714716962198 82 +74 7048 13.7314364868 82 +74 7086 13.757544184966 82 +74 7172 13.844153898057 82 +74 7214 14.014716977862 82 +74 7289 14.031436486793 82 +74 7327 14.057544185242 82 +74 7413 14.14415389887 82 +74 7455 14.314716993496 82 +74 7530 14.331436486806 82 +74 7568 14.357544185527 82 +74 7654 14.444153899694 82 +74 7696 14.614717009101 82 +74 7771 14.631436486796 82 +74 7809 14.657544185824 82 +74 7895 14.744153900511 82 +74 7937 14.914717024712 82 +74 8012 14.931436486792 82 +74 8050 14.957544186118 82 +74 8136 15.044153901332 82 +74 8178 15.214717040331 82 +74 8253 15.231436486777 82 +74 8291 15.257544186413 82 +74 8377 15.344153902158 82 +74 8419 15.514717055996 82 +74 8494 15.531436486786 82 +74 8532 15.557544186718 82 +74 8618 15.644153902982 82 +74 8660 15.81471707161 82 +74 8735 15.831436486807 82 +74 8773 15.857544187027 82 +74 8859 15.944153903822 82 +74 8901 16.11471708724 82 +74 8980 16.131436486791 82 +74 9018 16.157544187335 82 +74 9108 16.244153904634 82 +74 9150 16.414717102881 82 +74 9229 16.431436486767 82 +74 9267 16.45754418766 82 +74 9357 16.544153905451 82 +74 9399 16.714717118536 82 +74 9478 16.731436486767 82 +74 9516 16.757544187976 82 +74 9606 16.844153906273 82 +74 9648 17.014717134175 82 +74 9727 17.031436486771 82 +74 9765 17.057544188287 82 +74 9855 17.144153907123 82 +74 9897 17.314717149858 82 +74 9976 17.331436486778 82 +74 10014 17.357544188603 82 +74 10104 17.444153907967 82 +74 10146 17.614717165512 82 +74 10225 17.631436486782 82 +74 10263 17.657544188908 82 +74 10353 17.74415390881 82 +74 10395 17.914717181155 82 +74 10470 17.931436486796 82 +74 10508 17.957544189225 82 +74 10594 18.04415390965 82 +74 10641 18.214717196811 82 +74 10707 18.231436486817 82 +74 10745 18.257544189554 82 +74 10874 18.514717211927 82 +74 10940 18.531436486818 82 +74 10978 18.557544189884 82 +74 11107 18.814717220024 82 +74 11173 18.831436486814 82 +74 11211 18.857544190227 82 +74 11340 19.11471722262 82 +74 11406 19.131436486813 82 +74 11444 19.157544190586 82 +74 11573 19.414717225292 82 +74 11639 19.431436486792 82 +74 11677 19.457544190936 82 +74 11806 19.714717228908 82 +74 11872 19.73143648675 82 +74 11910 19.757544191083 82 +74 12039 20.014717233572 82 +74 12109 20.031436486573 82 +74 12147 20.057544190919 82 +74 12280 20.314717239262 82 +74 12350 20.331436486402 82 +74 12388 20.35754419086 82 +74 12521 20.614717246038 82 +74 12591 20.631436486279 82 +74 12629 20.657544191065 82 +74 12762 20.914717253923 82 +74 12832 20.9314364863 82 +74 12870 20.957544191416 82 +74 13003 21.214717262739 82 +74 13073 21.231436486377 82 +74 13111 21.257544192086 82 +74 13244 21.514717272413 82 +74 13314 21.531436486403 82 +74 13352 21.557544193076 82 +74 13485 21.814717282935 82 +74 13555 21.831436486387 82 +74 13593 21.85754419435 82 +74 13726 22.114717294257 82 +74 13796 22.13143648632 82 +74 13834 22.15754419591 82 +74 13967 22.414717306336 82 +74 14037 22.431436486231 82 +74 14075 22.457544197834 82 +74 14208 22.714717319146 82 +74 14278 22.731436486104 82 +74 14316 22.75754420026 82 +74 14449 23.014717332675 82 +74 14519 23.031436485972 82 +74 14557 23.057544203204 82 +74 14690 23.314717346848 82 +74 14760 23.331436485713 82 +74 14798 23.357544206722 82 +74 14931 23.614717361743 82 +74 15001 23.6314364855 82 +74 15039 23.657544210857 82 +74 15177 23.914717377256 82 +74 15237 23.93143648528 82 +74 15280 23.95754421565 82 +74 15418 24.214717393408 82 +74 15478 24.231436485173 82 +74 15521 24.257544221045 82 +74 15659 24.514717410256 82 +74 15719 24.531436485097 82 +74 15762 24.55754422706 82 +74 15900 24.814717427619 82 +74 15960 24.831436484864 82 +74 16003 24.857544233855 82 +74 16141 25.114717445125 82 +74 16201 25.131436484116 82 +74 16244 25.15754424158 82 +74 16382 25.414717462649 82 +74 16442 25.431436482795 82 +74 16485 25.457544250111 82 +74 16623 25.714717480245 82 +74 16683 25.731436480874 82 +74 16726 25.757544259482 82 +74 16864 26.014717497945 82 +74 16924 26.031436479731 82 +74 16967 26.057544269815 82 +74 17110 26.314717515616 82 +74 17165 26.331436479849 82 +74 17208 26.357544280927 82 +74 17351 26.614717533368 82 +74 17406 26.631436481362 82 +74 17449 26.657544292372 82 +74 17592 26.914717551168 82 +74 17647 26.931436484209 82 +74 17690 26.957544303661 82 +74 17880 27.231436487819 82 +74 17923 27.257544313921 82 +74 18113 27.531436490771 82 +74 18156 27.557544323167 82 +74 18346 27.831436492635 82 +74 18389 27.857544331293 82 +74 18579 28.131436501988 82 +74 18622 28.15754433818 82 +74 18812 28.431436516789 82 +74 18855 28.45754434442 82 +74 19045 28.731436531174 82 +74 19088 28.757544346246 82 +74 19278 29.031436536731 82 +74 19317 29.057544347069 82 +74 19503 29.331436539274 82 +74 19547 29.357544351202 82 +74 19728 29.631436541563 82 +74 19772 29.657544352581 82 +74 19953 29.931436543815 82 +74 19997 29.957544353115 82 +74 20178 30.231436546125 82 +74 20222 30.257544353112 82 +74 20403 30.531436548461 82 +74 20447 30.55754435311 82 +74 20633 30.831436550899 82 +74 20672 30.857544353107 82 +74 20862 31.131436553412 82 +74 20901 31.157544353102 82 +74 20941 31.193746243446 82 +74 21095 31.431436555932 82 +74 21134 31.457544353095 82 +74 21174 31.493746217696 82 +74 21328 31.731436558446 82 +74 21367 31.757544353088 82 +74 21407 31.793746191964 82 +74 21561 32.031436560973 82 +74 21600 32.057544353084 82 +74 21635 32.093746166255 82 +74 21794 32.331436563405 82 +74 21833 32.357544353083 82 +74 21868 32.393746140428 82 +74 22027 32.631436565904 82 +74 22066 32.657544353086 82 +74 22101 32.693746114644 82 +74 22260 32.931436568399 82 +74 22299 32.957544353093 82 +74 22334 32.993746088864 82 +74 22493 33.231436570893 82 +74 22532 33.257544353102 82 +74 22567 33.293746063102 82 +74 22726 33.53143657339 82 +74 22765 33.557544353115 82 +74 22795 33.593746037322 82 +74 22955 33.831436575887 82 +74 22994 33.857544353132 82 +74 23024 33.893746011596 82 +74 23153 34.131436578412 82 +74 23187 34.157544353151 82 +74 23311 34.431436580926 82 +74 23345 34.457544353173 82 +74 23469 34.731436583436 82 +74 23503 34.757544353199 82 +74 23627 35.031436585897 82 +74 23661 35.057544353228 82 +74 23789 35.331436588437 82 +74 23823 35.357544353251 82 +74 23955 35.631436590971 82 +74 23989 35.657544353247 82 +74 24121 35.931436593481 82 +74 24155 35.957544353214 82 +74 24287 36.231436595961 82 +74 24321 36.257544353163 82 +74 24453 36.531436598459 82 +74 24487 36.557544353111 82 +74 24619 36.83143660094 82 +74 24653 36.857544353084 82 +74 24785 37.131436603404 82 +74 24819 37.15754435309 82 +74 24951 37.431436605886 82 +74 24985 37.457544353113 82 +74 25117 37.731436608365 82 +74 25156 37.757544353145 82 +74 25283 38.031436610826 82 +74 25322 38.057544353181 82 +74 25449 38.3314366133 82 +74 25488 38.357544353213 82 +74 25615 38.631436615791 82 +74 25654 38.657544353237 82 +74 25781 38.93143661831 82 +74 25820 38.95754435325 82 +74 25947 39.231436620759 82 +74 25986 39.257544353248 82 +74 26113 39.531436623254 82 +74 26152 39.557544353232 82 +74 26279 39.83143662574 82 +74 26318 39.857544353205 82 +74 26445 40.131436628265 82 +74 26484 40.157544353178 82 +74 26611 40.431436630742 82 +74 26650 40.457544353154 82 +74 26781 40.731436633247 82 +74 26820 40.757544353134 82 +74 26863 40.844153902315 82 +74 26955 41.031436635684 82 +74 26994 41.057544353117 82 +74 27037 41.144153889795 82 +74 27129 41.331436638199 82 +74 27168 41.357544353104 82 +74 27211 41.444153878047 82 +74 27303 41.631436640727 82 +74 27342 41.657544353094 82 +74 27385 41.744153867126 82 +74 27477 41.931436643268 82 +74 27516 41.957544353087 82 +74 27559 42.044153857353 82 +74 27651 42.231436645815 82 +74 27690 42.257544353084 82 +74 27728 42.344153848849 82 +74 27825 42.531436648376 82 +74 27864 42.557544353084 82 +74 27902 42.644153841477 82 +74 27999 42.831436650828 82 +74 28038 42.857544353087 82 +74 28076 42.944153835169 82 +74 28173 43.131436653336 82 +74 28212 43.157544353094 82 +74 28250 43.244153829822 82 +74 28347 43.431436655825 82 +74 28386 43.457544353104 82 +74 28424 43.544153825335 82 +74 28521 43.731436658351 82 +74 28560 43.757544353117 82 +74 28598 43.84415382162 82 +74 28695 44.031436660872 82 +74 28734 44.057544353134 82 +74 28772 44.144153818568 82 +74 28869 44.331436663352 82 +74 28904 44.357544353142 82 +74 28942 44.444153816103 82 +74 29035 44.63143666581 82 +74 29070 44.657544353131 82 +74 29108 44.744153814138 82 +74 29201 44.931436668328 82 +74 29236 44.957544353109 82 +74 29274 45.044153812593 82 +74 29367 45.231436670771 82 +74 29402 45.257544353088 82 +74 29440 45.344153811321 82 +74 29533 45.53143667327 82 +74 29568 45.557544353087 82 +74 29606 45.644153810247 82 +74 29699 45.831436675809 82 +74 29734 45.857544353099 82 +74 29772 45.94415380881 82 +74 29865 46.131436678861 82 +74 29900 46.157544350237 82 +74 29933 46.244153803699 82 +74 30031 46.431436686409 82 +74 30066 46.457544341327 82 +74 30099 46.544153792983 82 +74 30197 46.731436699768 82 +74 30227 46.757544329816 82 +74 30265 46.844153781596 82 +74 30363 47.031436714347 82 +74 30393 47.057544318309 82 +74 30431 47.144153770247 82 +74 30529 47.331436729157 82 +74 30559 47.357544306963 82 +74 30597 47.444153758984 82 +74 30695 47.631436744132 82 +74 30725 47.657544295839 82 +74 30763 47.744153747807 82 +74 30861 47.931436759305 82 +74 30891 47.957544284957 82 +74 30929 48.044153736723 82 +74 31027 48.231436774574 82 +74 31057 48.257544274373 82 +74 31095 48.344153727328 82 +74 31193 48.531436790029 82 +74 31223 48.557544264097 82 +74 31261 48.6441537182 82 +74 31359 48.83143680564 82 +74 31389 48.85754425419 82 +74 31427 48.944153710675 82 +74 31525 49.13143682136 82 +74 31555 49.157544244721 82 +74 31593 49.244153704337 82 +74 31691 49.431436837159 82 +74 31721 49.457544235618 82 +74 31759 49.544153699244 82 +74 31857 49.731436842151 82 +74 31887 49.757544226909 82 +74 31925 49.844153694931 82 +74 32023 50.031436841687 82 +74 32053 50.057544218616 82 +74 32091 50.144153691243 82 +74 32189 50.331436841226 82 +74 32219 50.3575442108 82 +74 32257 50.444153688083 82 +74 32355 50.631436840782 82 +74 32385 50.657544203419 82 +74 32423 50.744153685542 82 +74 32521 50.931436840349 82 +74 32551 50.957544196502 82 +74 32589 51.044153683597 82 +74 32683 51.231436839912 82 +74 32713 51.257544190124 82 +74 32747 51.344153682284 82 +74 32841 51.531436839494 82 +74 32875 51.557544184246 82 +74 32913 51.644153681524 82 +74 33007 51.831436839089 82 +74 33041 51.857544178906 82 +74 33079 51.944153681491 82 +74 33173 52.131436838692 82 +74 33207 52.157544174145 82 +74 33245 52.244153682011 82 +74 33339 52.431436838288 82 +74 33373 52.457544169983 82 +74 33411 52.544153683051 82 +74 33510 52.731436837906 82 +74 33539 52.757544166374 82 +74 33577 52.844153684615 82 +74 33676 53.031436837529 82 +74 33705 53.057544163324 82 +74 33743 53.144153686732 82 +74 33814 53.331436837158 82 +74 33841 53.357544160285 82 +74 33876 53.44415368936 82 +74 33941 53.631436836803 82 +74 33968 53.657544156982 82 +74 34003 53.744153692655 82 +74 34068 53.931436836464 82 +74 34095 53.95754415332 82 +74 34130 54.044153696094 82 +74 34195 54.231436836131 82 +74 34222 54.257544149235 82 +74 34257 54.344153699619 82 +74 34322 54.531436835797 82 +74 34349 54.557544144828 82 +74 34384 54.644153703131 82 +74 34449 54.831436835522 82 +74 34476 54.85754414112 82 +74 34511 54.944153706647 82 +74 34576 55.131436835415 82 +74 34603 55.15754413831 82 +74 34638 55.244153710085 82 +74 34703 55.431436835478 82 +74 34730 55.45754413635 82 +74 34765 55.544153713581 82 +74 34830 55.731436835709 82 +74 34857 55.757544135289 82 +74 34892 55.844153717083 82 +74 34957 56.031436836125 82 +74 34984 56.057544135209 82 +74 35019 56.144153720633 82 +74 35084 56.331436836745 82 +74 35106 56.357544136092 82 +74 35146 56.444153724089 82 +74 35202 56.631436837493 82 +74 35222 56.657544137925 82 +74 35286 56.931436842253 82 +74 35306 56.957544140796 82 +74 35370 57.231436850523 82 +74 35390 57.257544144754 82 +74 35454 57.53143685508 82 +74 35479 57.557544149775 82 +74 35538 57.831436859492 82 +74 35563 57.857544155686 82 +74 35622 58.131436864633 82 +74 35647 58.157544162109 82 +74 35706 58.431436870558 82 +74 35731 58.457544169083 82 +74 35790 58.731436877253 82 +74 35815 58.757544176569 82 +74 35874 59.031436884805 82 +74 35899 59.057544184524 82 +74 35958 59.331436893239 82 +74 35983 59.357544192972 82 +74 36042 59.631436902575 82 +74 36067 59.657544201866 82 +74 36126 59.931436912849 82 +74 36151 59.957544211172 82 +74 36227 60.257544220865 82 +74 36303 60.557544230953 82 +74 36379 60.857544241392 82 +74 36455 61.157544252127 82 +74 36531 61.45754426323 82 +74 36607 61.757544274635 82 +74 36683 62.057544285728 82 +74 36759 62.357544295767 82 +74 36835 62.657544304708 82 +74 36911 62.957544312531 82 +75 1495 6.524398582336 82 +75 1712 6.824398582336 82 +75 1929 7.124398582336 82 +75 2146 7.424398582336 82 +75 2363 7.724398582336 82 +75 2580 8.024398582336 82 +75 2797 8.324398582336 82 +75 3022 8.624398582336 82 +75 3247 8.924398582336 82 +75 3472 9.224398582336 82 +75 3697 9.524398582336 82 +75 3922 9.824398582336 82 +75 4147 10.124398582336 82 +75 4372 10.424398582336 82 +75 4605 10.724398582336 82 +75 4838 11.024398582336 82 +75 5071 11.324398582336 82 +75 5304 11.624398582336 82 +75 5545 11.924398582336 82 +75 5786 12.224398582336 82 +75 6027 12.524398582336 82 +75 6268 12.824398582336 82 +75 6509 13.124398582336 82 +75 6750 13.424398582336 82 +75 6991 13.724398582336 82 +75 7232 14.024398582336 82 +75 7473 14.324398582336 82 +75 7714 14.624398582336 82 +75 7955 14.924398582336 82 +75 8196 15.224398582336 82 +75 8437 15.524398582336 82 +75 8678 15.824398582336 82 +75 8923 16.124398582336 82 +75 9172 16.424398582336 82 +75 9421 16.724398582336 82 +75 9670 17.024398582336 82 +75 9919 17.324398582336 82 +75 10168 17.624398582336 82 +75 10413 17.924398582336 82 +75 10654 18.224398582336 82 +75 10887 18.524398582336 82 +75 11120 18.824398582336 82 +75 11353 19.124398582336 82 +75 11586 19.424398582336 82 +75 11819 19.724398582336 82 +75 12056 20.024398582336 82 +75 12297 20.324398582336 82 +75 12538 20.624398582336 82 +75 12779 20.924398582336 82 +75 13020 21.224398582336 82 +75 13261 21.524398582336 82 +75 13502 21.824398582336 82 +75 13743 22.124398582336 82 +75 13984 22.424398582336 82 +75 14225 22.724398582336 82 +75 14466 23.024398582336 82 +75 14707 23.324398582336 82 +75 14948 23.624398582336 82 +75 15189 23.924398582336 82 +75 15430 24.224398582336 82 +75 15671 24.524398582336 82 +75 15912 24.824398582336 82 +75 16153 25.124398582336 82 +75 16394 25.424398582336 82 +75 16635 25.724398582336 82 +75 16876 26.024398582336 82 +75 17117 26.324398582336 82 +75 17358 26.624398582336 82 +75 17599 26.924398582336 82 +75 17836 27.224398582336 82 +75 18069 27.524398582336 82 +75 18302 27.824398582336 82 +75 18535 28.124398582336 82 +75 18768 28.424398582336 82 +75 19001 28.724398582336 82 +75 19234 29.024398582336 82 +75 19459 29.324398582336 82 +75 19684 29.624398582336 82 +75 19909 29.924398582336 82 +75 20134 30.224398582336 82 +75 20359 30.524398582336 82 +75 20584 30.824398582336 82 +75 20809 31.124398582336 82 +75 21042 31.424398582336 82 +75 21275 31.724398582336 82 +75 21508 32.024398582336 82 +75 21741 32.324398582336 82 +75 21974 32.624398582336 82 +75 22207 32.924398582336 82 +75 22440 33.224398582336 82 +75 22673 33.524398582336 82 +75 22902 33.824398582336 82 +75 23112 34.124398582336 82 +75 23270 34.424398582336 82 +75 23428 34.724398582336 82 +75 23586 35.024398582336 82 +75 23748 35.324398582336 82 +75 23914 35.624398582336 82 +75 24080 35.924398582336 82 +75 24246 36.224398582336 82 +75 24412 36.524398582336 82 +75 24578 36.824398582336 82 +75 24744 37.124398582336 82 +75 24910 37.424398582336 82 +75 25076 37.724398582336 82 +75 25242 38.024398582336 82 +75 25408 38.324398582336 82 +75 25574 38.624398582336 82 +75 25740 38.924398582336 82 +75 25906 39.224398582336 82 +75 26072 39.524398582336 82 +75 26238 39.824398582336 82 +75 26404 40.124398582336 82 +75 26570 40.424398582336 82 +75 26736 40.724398582336 82 +75 26910 41.024398582336 82 +75 27084 41.324398582336 82 +75 27258 41.624398582336 82 +75 27432 41.924398582336 82 +75 27606 42.224398582336 82 +75 27780 42.524398582336 82 +75 27954 42.824398582336 82 +75 28128 43.124398582336 82 +75 28302 43.424398582336 82 +75 28476 43.724398582336 82 +75 28650 44.024398582336 82 +75 28824 44.324398582336 82 +75 28990 44.624398582336 82 +75 29156 44.924398582336 82 +75 29322 45.224398582336 82 +75 29488 45.524398582336 82 +75 29654 45.824398582336 82 +75 29820 46.124398582336 82 +75 29986 46.424398582336 82 +75 30152 46.724398582336 82 +75 30318 47.024398582336 82 +75 30484 47.324398582336 82 +75 30650 47.624398582336 82 +75 30816 47.924398582336 82 +75 30982 48.224398582336 82 +75 31148 48.524398582336 82 +75 31314 48.824398582336 82 +75 31480 49.124398582336 82 +75 31646 49.424398582336 82 +75 31812 49.724398582336 82 +75 31978 50.024398582336 82 +75 32144 50.324398582336 82 +75 32310 50.624398582336 82 +75 32476 50.924398582336 82 +75 32638 51.224398582336 82 +75 32796 51.524398582336 82 +75 32962 51.824398582336 82 +75 33128 52.124398582336 82 +75 33294 52.424398582336 82 +75 33460 52.724398582336 82 +75 33626 53.024398582336 82 +75 33768 53.324398582336 82 +75 33895 53.624398582336 82 +75 34022 53.924398582336 82 +75 34149 54.224398582336 82 +75 34276 54.524398582336 82 +75 34403 54.824398582336 82 +75 34530 55.124398582336 82 +75 34657 55.424398582336 82 +75 34784 55.724398582336 82 +75 34911 56.024398582336 82 +75 35038 56.324398582336 82 +75 35163 56.624398582336 82 +75 35247 56.924398582336 82 +75 35331 57.224398582336 82 +75 35415 57.524398582336 82 +75 35499 57.824398582336 82 +75 35583 58.124398582336 82 +75 35667 58.424398582336 82 +75 35751 58.724398582336 82 +75 35835 59.024398582336 82 +75 35919 59.324398582336 82 +75 36003 59.624398582336 82 +75 36087 59.924398582336 82 +75 36171 60.224398582336 82 +75 36247 60.524398582336 82 +75 36323 60.824398582336 82 +75 36399 61.124398582336 82 +75 36475 61.424398582336 82 +75 36551 61.724398582336 82 +75 36627 62.024398582336 82 +75 36703 62.324398582336 82 +75 36779 62.624398582336 82 +75 36855 62.924398582336 82 +76 1498 6.524398582336 82 +76 1715 6.824398582336 82 +76 1932 7.124398582336 82 +76 2149 7.424398582336 82 +76 2366 7.724398582336 82 +76 2583 8.024398582336 82 +76 2800 8.324398582336 82 +76 3025 8.624398582336 82 +76 3250 8.924398582336 82 +76 3475 9.224398582336 82 +76 3700 9.524398582336 82 +76 3925 9.824398582336 82 +76 4150 10.124398582336 82 +76 4375 10.424398582336 82 +76 4608 10.724398582336 82 +76 4841 11.024398582336 82 +76 5074 11.324398582336 82 +76 5307 11.624398582336 82 +76 5548 11.924398582336 82 +76 5789 12.224398582336 82 +76 6030 12.524398582336 82 +76 6271 12.824398582336 82 +76 6512 13.124398582336 82 +76 6753 13.424398582336 82 +76 6994 13.724398582336 82 +76 7235 14.024398582336 82 +76 7476 14.324398582336 82 +76 7717 14.624398582336 82 +76 7958 14.924398582336 82 +76 8199 15.224398582336 82 +76 8440 15.524398582336 82 +76 8681 15.824398582336 82 +76 8926 16.124398582336 82 +76 9175 16.424398582336 82 +76 9424 16.724398582336 82 +76 9673 17.024398582336 82 +76 9922 17.324398582336 82 +76 10171 17.624398582336 82 +76 10416 17.924398582336 82 +76 10657 18.224398582336 82 +76 10890 18.524398582336 82 +76 11123 18.824398582336 82 +76 11356 19.124398582336 82 +76 11589 19.424398582336 82 +76 11822 19.724398582336 82 +76 12059 20.024398582336 82 +76 12300 20.324398582336 82 +76 12541 20.624398582336 82 +76 12782 20.924398582336 82 +76 13023 21.224398582336 82 +76 13264 21.524398582336 82 +76 13505 21.824398582336 82 +76 13746 22.124398582336 82 +76 13987 22.424398582336 82 +76 14228 22.724398582336 82 +76 14469 23.024398582336 82 +76 14710 23.324398582336 82 +76 14951 23.624398582336 82 +76 15192 23.924398582336 82 +76 15433 24.224398582336 82 +76 15674 24.524398582336 82 +76 15915 24.824398582336 82 +76 16156 25.124398582336 82 +76 16397 25.424398582336 82 +76 16638 25.724398582336 82 +76 16879 26.024398582336 82 +76 17120 26.324398582336 82 +76 17361 26.624398582336 82 +76 17602 26.924398582336 82 +76 17839 27.224398582336 82 +76 18072 27.524398582336 82 +76 18305 27.824398582336 82 +76 18538 28.124398582336 82 +76 18771 28.424398582336 82 +76 19004 28.724398582336 82 +76 19237 29.024398582336 82 +76 19462 29.324398582336 82 +76 19687 29.624398582336 82 +76 19912 29.924398582336 82 +76 20137 30.224398582336 82 +76 20362 30.524398582336 82 +76 20587 30.824398582336 82 +76 20812 31.124398582336 82 +76 21045 31.424398582336 82 +76 21278 31.724398582336 82 +76 21511 32.024398582336 82 +76 21744 32.324398582336 82 +76 21977 32.624398582336 82 +76 22210 32.924398582336 82 +76 22443 33.224398582336 82 +76 22676 33.524398582336 82 +76 22905 33.824398582336 82 +76 23115 34.124398582336 82 +76 23273 34.424398582336 82 +76 23431 34.724398582336 82 +76 23589 35.024398582336 82 +76 23751 35.324398582336 82 +76 23917 35.624398582336 82 +76 24083 35.924398582336 82 +76 24249 36.224398582336 82 +76 24415 36.524398582336 82 +76 24581 36.824398582336 82 +76 24747 37.124398582336 82 +76 24913 37.424398582336 82 +76 25079 37.724398582336 82 +76 25245 38.024398582336 82 +76 25411 38.324398582336 82 +76 25577 38.624398582336 82 +76 25743 38.924398582336 82 +76 25909 39.224398582336 82 +76 26075 39.524398582336 82 +76 26241 39.824398582336 82 +76 26407 40.124398582336 82 +76 26573 40.424398582336 82 +76 26739 40.724398582336 82 +76 26913 41.024398582336 82 +76 27087 41.324398582336 82 +76 27261 41.624398582336 82 +76 27435 41.924398582336 82 +76 27609 42.224398582336 82 +76 27783 42.524398582336 82 +76 27957 42.824398582336 82 +76 28131 43.124398582336 82 +76 28305 43.424398582336 82 +76 28479 43.724398582336 82 +76 28653 44.024398582336 82 +76 28827 44.324398582336 82 +76 28993 44.624398582336 82 +76 29159 44.924398582336 82 +76 29325 45.224398582336 82 +76 29491 45.524398582336 82 +76 29657 45.824398582336 82 +76 29823 46.124398582336 82 +76 29989 46.424398582336 82 +76 30155 46.724398582336 82 +76 30321 47.024398582336 82 +76 30487 47.324398582336 82 +76 30653 47.624398582336 82 +76 30819 47.924398582336 82 +76 30985 48.224398582336 82 +76 31151 48.524398582336 82 +76 31317 48.824398582336 82 +76 31483 49.124398582336 82 +76 31649 49.424398582336 82 +76 31815 49.724398582336 82 +76 31981 50.024398582336 82 +76 32147 50.324398582336 82 +76 32313 50.624398582336 82 +76 32479 50.924398582336 82 +76 32641 51.224398582336 82 +76 32799 51.524398582336 82 +76 32965 51.824398582336 82 +76 33131 52.124398582336 82 +76 33297 52.424398582336 82 +76 33463 52.724398582336 82 +76 33629 53.024398582336 82 +76 33771 53.324398582336 82 +76 33898 53.624398582336 82 +76 34025 53.924398582336 82 +76 34152 54.224398582336 82 +76 34279 54.524398582336 82 +76 34406 54.824398582336 82 +76 34533 55.124398582336 82 +76 34660 55.424398582336 82 +76 34787 55.724398582336 82 +76 34914 56.024398582336 82 +76 35041 56.324398582336 82 +76 35166 56.624398582336 82 +76 35250 56.924398582336 82 +76 35334 57.224398582336 82 +76 35418 57.524398582336 82 +76 35502 57.824398582336 82 +76 35586 58.124398582336 82 +76 35670 58.424398582336 82 +76 35754 58.724398582336 82 +76 35838 59.024398582336 82 +76 35922 59.324398582336 82 +76 36006 59.624398582336 82 +76 36090 59.924398582336 82 +76 36174 60.224398582336 82 +76 36250 60.524398582336 82 +76 36326 60.824398582336 82 +76 36402 61.124398582336 82 +76 36478 61.424398582336 82 +76 36554 61.724398582336 82 +76 36630 62.024398582336 82 +76 36706 62.324398582336 82 +76 36782 62.624398582336 82 +76 36858 62.924398582336 82 +77 1499 6.524398582336 1 +77 1500 6.524398582336 2 +77 1506 6.524558582336 1 +77 1507 6.524558582336 0 +77 1716 6.824398582336 1 +77 1717 6.824398582336 2 +77 1723 6.824558582336 1 +77 1724 6.824558582336 0 +77 1933 7.124398582336 1 +77 1934 7.124398582336 2 +77 1940 7.124558582336 1 +77 1941 7.124558582336 0 +77 2150 7.424398582336 1 +77 2151 7.424398582336 2 +77 2157 7.424558582336 1 +77 2158 7.424558582336 0 +77 2367 7.724398582336 1 +77 2368 7.724398582336 2 +77 2374 7.724558582336 1 +77 2375 7.724558582336 0 +77 2584 8.024398582336 1 +77 2585 8.024398582336 2 +77 2591 8.024558582336 1 +77 2592 8.024558582336 0 +77 2801 8.324398582336 1 +77 2802 8.324398582336 2 +77 2808 8.324558582336 1 +77 2809 8.324558582336 0 +77 3026 8.624398582336 1 +77 3027 8.624398582336 2 +77 3033 8.624558582336 1 +77 3034 8.624558582336 0 +77 3251 8.924398582336 1 +77 3252 8.924398582336 2 +77 3258 8.924558582336 1 +77 3259 8.924558582336 0 +77 3476 9.224398582336 1 +77 3477 9.224398582336 2 +77 3483 9.224558582336 1 +77 3484 9.224558582336 0 +77 3701 9.524398582336 1 +77 3702 9.524398582336 2 +77 3708 9.524558582336 1 +77 3709 9.524558582336 0 +77 3926 9.824398582336 1 +77 3927 9.824398582336 2 +77 3933 9.824558582336 1 +77 3934 9.824558582336 0 +77 4151 10.124398582336 1 +77 4152 10.124398582336 2 +77 4158 10.124558582336 1 +77 4159 10.124558582336 0 +77 4376 10.424398582336 1 +77 4377 10.424398582336 2 +77 4383 10.424558582336 1 +77 4384 10.424558582336 0 +77 4609 10.724398582336 1 +77 4610 10.724398582336 2 +77 4616 10.724558582336 1 +77 4617 10.724558582336 0 +77 4842 11.024398582336 1 +77 4843 11.024398582336 2 +77 4849 11.024558582336 1 +77 4850 11.024558582336 0 +77 5075 11.324398582336 1 +77 5076 11.324398582336 2 +77 5082 11.324558582336 1 +77 5083 11.324558582336 0 +77 5308 11.624398582336 1 +77 5309 11.624398582336 2 +77 5315 11.624558582336 1 +77 5316 11.624558582336 0 +77 5549 11.924398582336 1 +77 5550 11.924398582336 2 +77 5556 11.924558582336 1 +77 5557 11.924558582336 0 +77 5790 12.224398582336 1 +77 5791 12.224398582336 2 +77 5797 12.224558582336 1 +77 5798 12.224558582336 0 +77 6031 12.524398582336 1 +77 6032 12.524398582336 2 +77 6038 12.524558582336 1 +77 6039 12.524558582336 0 +77 6272 12.824398582336 1 +77 6273 12.824398582336 2 +77 6279 12.824558582336 1 +77 6280 12.824558582336 0 +77 6513 13.124398582336 1 +77 6514 13.124398582336 2 +77 6520 13.124558582336 1 +77 6521 13.124558582336 0 +77 6754 13.424398582336 1 +77 6755 13.424398582336 2 +77 6761 13.424558582336 1 +77 6762 13.424558582336 0 +77 6995 13.724398582336 1 +77 6996 13.724398582336 2 +77 7002 13.724558582336 1 +77 7003 13.724558582336 0 +77 7236 14.024398582336 1 +77 7237 14.024398582336 2 +77 7243 14.024558582336 1 +77 7244 14.024558582336 0 +77 7477 14.324398582336 1 +77 7478 14.324398582336 2 +77 7484 14.324558582336 1 +77 7485 14.324558582336 0 +77 7718 14.624398582336 1 +77 7719 14.624398582336 2 +77 7725 14.624558582336 1 +77 7726 14.624558582336 0 +77 7959 14.924398582336 1 +77 7960 14.924398582336 2 +77 7966 14.924558582336 1 +77 7967 14.924558582336 0 +77 8200 15.224398582336 1 +77 8201 15.224398582336 2 +77 8207 15.224558582336 1 +77 8208 15.224558582336 0 +77 8441 15.524398582336 1 +77 8442 15.524398582336 2 +77 8448 15.524558582336 1 +77 8449 15.524558582336 0 +77 8682 15.824398582336 1 +77 8683 15.824398582336 2 +77 8689 15.824558582336 1 +77 8690 15.824558582336 0 +77 8927 16.124398582336 1 +77 8928 16.124398582336 2 +77 8934 16.124558582336 1 +77 8935 16.124558582336 0 +77 9176 16.424398582336 1 +77 9177 16.424398582336 2 +77 9183 16.424558582336 1 +77 9184 16.424558582336 0 +77 9425 16.724398582336 1 +77 9426 16.724398582336 2 +77 9432 16.724558582336 1 +77 9433 16.724558582336 0 +77 9674 17.024398582336 1 +77 9675 17.024398582336 2 +77 9681 17.024558582336 1 +77 9682 17.024558582336 0 +77 9923 17.324398582336 1 +77 9924 17.324398582336 2 +77 9930 17.324558582336 1 +77 9931 17.324558582336 0 +77 10172 17.624398582336 1 +77 10173 17.624398582336 2 +77 10179 17.624558582336 1 +77 10180 17.624558582336 0 +77 10417 17.924398582336 1 +77 10418 17.924398582336 2 +77 10424 17.924558582336 1 +77 10425 17.924558582336 0 +77 10658 18.224398582336 1 +77 10659 18.224398582336 2 +77 10665 18.224558582336 1 +77 10666 18.224558582336 0 +77 10891 18.524398582336 1 +77 10892 18.524398582336 2 +77 10898 18.524558582336 1 +77 10899 18.524558582336 0 +77 11124 18.824398582336 1 +77 11125 18.824398582336 2 +77 11131 18.824558582336 1 +77 11132 18.824558582336 0 +77 11357 19.124398582336 1 +77 11358 19.124398582336 2 +77 11364 19.124558582336 1 +77 11365 19.124558582336 0 +77 11590 19.424398582336 1 +77 11591 19.424398582336 2 +77 11597 19.424558582336 1 +77 11598 19.424558582336 0 +77 11823 19.724398582336 1 +77 11824 19.724398582336 2 +77 11830 19.724558582336 1 +77 11831 19.724558582336 0 +77 12060 20.024398582336 1 +77 12061 20.024398582336 2 +77 12067 20.024558582336 1 +77 12068 20.024558582336 0 +77 12301 20.324398582336 1 +77 12302 20.324398582336 2 +77 12308 20.324558582336 1 +77 12309 20.324558582336 0 +77 12542 20.624398582336 1 +77 12543 20.624398582336 2 +77 12549 20.624558582336 1 +77 12550 20.624558582336 0 +77 12783 20.924398582336 1 +77 12784 20.924398582336 2 +77 12790 20.924558582336 1 +77 12791 20.924558582336 0 +77 13024 21.224398582336 1 +77 13025 21.224398582336 2 +77 13031 21.224558582336 1 +77 13032 21.224558582336 0 +77 13265 21.524398582336 1 +77 13266 21.524398582336 2 +77 13272 21.524558582336 1 +77 13273 21.524558582336 0 +77 13506 21.824398582336 1 +77 13507 21.824398582336 2 +77 13513 21.824558582336 1 +77 13514 21.824558582336 0 +77 13747 22.124398582336 1 +77 13748 22.124398582336 2 +77 13754 22.124558582336 1 +77 13755 22.124558582336 0 +77 13988 22.424398582336 1 +77 13989 22.424398582336 2 +77 13995 22.424558582336 1 +77 13996 22.424558582336 0 +77 14229 22.724398582336 1 +77 14230 22.724398582336 2 +77 14236 22.724558582336 1 +77 14237 22.724558582336 0 +77 14470 23.024398582336 1 +77 14471 23.024398582336 2 +77 14477 23.024558582336 1 +77 14478 23.024558582336 0 +77 14711 23.324398582336 1 +77 14712 23.324398582336 2 +77 14718 23.324558582336 1 +77 14719 23.324558582336 0 +77 14952 23.624398582336 1 +77 14953 23.624398582336 2 +77 14959 23.624558582336 1 +77 14960 23.624558582336 0 +77 15193 23.924398582336 1 +77 15194 23.924398582336 2 +77 15200 23.924558582336 1 +77 15201 23.924558582336 0 +77 15434 24.224398582336 1 +77 15435 24.224398582336 2 +77 15441 24.224558582336 1 +77 15442 24.224558582336 0 +77 15675 24.524398582336 1 +77 15676 24.524398582336 2 +77 15682 24.524558582336 1 +77 15683 24.524558582336 0 +77 15916 24.824398582336 1 +77 15917 24.824398582336 2 +77 15923 24.824558582336 1 +77 15924 24.824558582336 0 +77 16157 25.124398582336 1 +77 16158 25.124398582336 2 +77 16164 25.124558582336 1 +77 16165 25.124558582336 0 +77 16398 25.424398582336 1 +77 16399 25.424398582336 2 +77 16405 25.424558582336 1 +77 16406 25.424558582336 0 +77 16639 25.724398582336 1 +77 16640 25.724398582336 2 +77 16646 25.724558582336 1 +77 16647 25.724558582336 0 +77 16880 26.024398582336 1 +77 16881 26.024398582336 2 +77 16887 26.024558582336 1 +77 16888 26.024558582336 0 +77 17121 26.324398582336 1 +77 17122 26.324398582336 2 +77 17128 26.324558582336 1 +77 17129 26.324558582336 0 +77 17362 26.624398582336 1 +77 17363 26.624398582336 2 +77 17369 26.624558582336 1 +77 17370 26.624558582336 0 +77 17603 26.924398582336 1 +77 17604 26.924398582336 2 +77 17610 26.924558582336 1 +77 17611 26.924558582336 0 +77 17840 27.224398582336 1 +77 17841 27.224398582336 2 +77 17847 27.224558582336 1 +77 17848 27.224558582336 0 +77 18073 27.524398582336 1 +77 18074 27.524398582336 2 +77 18080 27.524558582336 1 +77 18081 27.524558582336 0 +77 18306 27.824398582336 1 +77 18307 27.824398582336 2 +77 18313 27.824558582336 1 +77 18314 27.824558582336 0 +77 18539 28.124398582336 1 +77 18540 28.124398582336 2 +77 18546 28.124558582336 1 +77 18547 28.124558582336 0 +77 18772 28.424398582336 1 +77 18773 28.424398582336 2 +77 18779 28.424558582336 1 +77 18780 28.424558582336 0 +77 19005 28.724398582336 1 +77 19006 28.724398582336 2 +77 19012 28.724558582336 1 +77 19013 28.724558582336 0 +77 19238 29.024398582336 1 +77 19239 29.024398582336 2 +77 19245 29.024558582336 1 +77 19246 29.024558582336 0 +77 19463 29.324398582336 1 +77 19464 29.324398582336 2 +77 19470 29.324558582336 1 +77 19471 29.324558582336 0 +77 19688 29.624398582336 1 +77 19689 29.624398582336 2 +77 19695 29.624558582336 1 +77 19696 29.624558582336 0 +77 19913 29.924398582336 1 +77 19914 29.924398582336 2 +77 19920 29.924558582336 1 +77 19921 29.924558582336 0 +77 20138 30.224398582336 1 +77 20139 30.224398582336 2 +77 20145 30.224558582336 1 +77 20146 30.224558582336 0 +77 20363 30.524398582336 1 +77 20364 30.524398582336 2 +77 20370 30.524558582336 1 +77 20371 30.524558582336 0 +77 20588 30.824398582336 1 +77 20589 30.824398582336 2 +77 20595 30.824558582336 1 +77 20596 30.824558582336 0 +77 20813 31.124398582336 1 +77 20814 31.124398582336 2 +77 20820 31.124558582336 1 +77 20821 31.124558582336 0 +77 21046 31.424398582336 1 +77 21047 31.424398582336 2 +77 21053 31.424558582336 1 +77 21054 31.424558582336 0 +77 21279 31.724398582336 1 +77 21280 31.724398582336 2 +77 21286 31.724558582336 1 +77 21287 31.724558582336 0 +77 21512 32.024398582336 1 +77 21513 32.024398582336 2 +77 21519 32.024558582336 1 +77 21520 32.024558582336 0 +77 21745 32.324398582336 1 +77 21746 32.324398582336 2 +77 21752 32.324558582336 1 +77 21753 32.324558582336 0 +77 21978 32.624398582336 1 +77 21979 32.624398582336 2 +77 21985 32.624558582336 1 +77 21986 32.624558582336 0 +77 22211 32.924398582336 1 +77 22212 32.924398582336 2 +77 22218 32.924558582336 1 +77 22219 32.924558582336 0 +77 22444 33.224398582336 1 +77 22445 33.224398582336 2 +77 22451 33.224558582336 1 +77 22452 33.224558582336 0 +77 22677 33.524398582336 1 +77 22678 33.524398582336 2 +77 22684 33.524558582336 1 +77 22685 33.524558582336 0 +77 22906 33.824398582336 1 +77 22907 33.824398582336 2 +77 22913 33.824558582336 1 +77 22914 33.824558582336 0 +77 23116 34.124398582336 1 +77 23117 34.124398582336 2 +77 23122 34.124558582336 1 +77 23123 34.124558582336 0 +77 23274 34.424398582336 1 +77 23275 34.424398582336 2 +77 23280 34.424558582336 1 +77 23281 34.424558582336 0 +77 23432 34.724398582336 1 +77 23433 34.724398582336 2 +77 23438 34.724558582336 1 +77 23439 34.724558582336 0 +77 23590 35.024398582336 1 +77 23591 35.024398582336 2 +77 23596 35.024558582336 1 +77 23597 35.024558582336 0 +77 23752 35.324398582336 1 +77 23753 35.324398582336 2 +77 23758 35.324558582336 1 +77 23759 35.324558582336 0 +77 23918 35.624398582336 1 +77 23919 35.624398582336 2 +77 23924 35.624558582336 1 +77 23925 35.624558582336 0 +77 24084 35.924398582336 1 +77 24085 35.924398582336 2 +77 24090 35.924558582336 1 +77 24091 35.924558582336 0 +77 24250 36.224398582336 1 +77 24251 36.224398582336 2 +77 24256 36.224558582336 1 +77 24257 36.224558582336 0 +77 24416 36.524398582336 1 +77 24417 36.524398582336 2 +77 24422 36.524558582336 1 +77 24423 36.524558582336 0 +77 24582 36.824398582336 1 +77 24583 36.824398582336 2 +77 24588 36.824558582336 1 +77 24589 36.824558582336 0 +77 24748 37.124398582336 1 +77 24749 37.124398582336 2 +77 24754 37.124558582336 1 +77 24755 37.124558582336 0 +77 24914 37.424398582336 1 +77 24915 37.424398582336 2 +77 24920 37.424558582336 1 +77 24921 37.424558582336 0 +77 25080 37.724398582336 1 +77 25081 37.724398582336 2 +77 25086 37.724558582336 1 +77 25087 37.724558582336 0 +77 25246 38.024398582336 1 +77 25247 38.024398582336 2 +77 25252 38.024558582336 1 +77 25253 38.024558582336 0 +77 25412 38.324398582336 1 +77 25413 38.324398582336 2 +77 25418 38.324558582336 1 +77 25419 38.324558582336 0 +77 25578 38.624398582336 1 +77 25579 38.624398582336 2 +77 25584 38.624558582336 1 +77 25585 38.624558582336 0 +77 25744 38.924398582336 1 +77 25745 38.924398582336 2 +77 25750 38.924558582336 1 +77 25751 38.924558582336 0 +77 25910 39.224398582336 1 +77 25911 39.224398582336 2 +77 25916 39.224558582336 1 +77 25917 39.224558582336 0 +77 26076 39.524398582336 1 +77 26077 39.524398582336 2 +77 26082 39.524558582336 1 +77 26083 39.524558582336 0 +77 26242 39.824398582336 1 +77 26243 39.824398582336 2 +77 26248 39.824558582336 1 +77 26249 39.824558582336 0 +77 26408 40.124398582336 1 +77 26409 40.124398582336 2 +77 26414 40.124558582336 1 +77 26415 40.124558582336 0 +77 26574 40.424398582336 1 +77 26575 40.424398582336 2 +77 26580 40.424558582336 1 +77 26581 40.424558582336 0 +77 26740 40.724398582336 1 +77 26741 40.724398582336 2 +77 26746 40.724558582336 1 +77 26747 40.724558582336 0 +77 26914 41.024398582336 1 +77 26915 41.024398582336 2 +77 26920 41.024558582336 1 +77 26921 41.024558582336 0 +77 27088 41.324398582336 1 +77 27089 41.324398582336 2 +77 27094 41.324558582336 1 +77 27095 41.324558582336 0 +77 27262 41.624398582336 1 +77 27263 41.624398582336 2 +77 27268 41.624558582336 1 +77 27269 41.624558582336 0 +77 27436 41.924398582336 1 +77 27437 41.924398582336 2 +77 27442 41.924558582336 1 +77 27443 41.924558582336 0 +77 27610 42.224398582336 1 +77 27611 42.224398582336 2 +77 27616 42.224558582336 1 +77 27617 42.224558582336 0 +77 27784 42.524398582336 1 +77 27785 42.524398582336 2 +77 27790 42.524558582336 1 +77 27791 42.524558582336 0 +77 27958 42.824398582336 1 +77 27959 42.824398582336 2 +77 27964 42.824558582336 1 +77 27965 42.824558582336 0 +77 28132 43.124398582336 1 +77 28133 43.124398582336 2 +77 28138 43.124558582336 1 +77 28139 43.124558582336 0 +77 28306 43.424398582336 1 +77 28307 43.424398582336 2 +77 28312 43.424558582336 1 +77 28313 43.424558582336 0 +77 28480 43.724398582336 1 +77 28481 43.724398582336 2 +77 28486 43.724558582336 1 +77 28487 43.724558582336 0 +77 28654 44.024398582336 1 +77 28655 44.024398582336 2 +77 28660 44.024558582336 1 +77 28661 44.024558582336 0 +77 28828 44.324398582336 1 +77 28829 44.324398582336 2 +77 28834 44.324558582336 1 +77 28835 44.324558582336 0 +77 28994 44.624398582336 1 +77 28995 44.624398582336 2 +77 29000 44.624558582336 1 +77 29001 44.624558582336 0 +77 29160 44.924398582336 1 +77 29161 44.924398582336 2 +77 29166 44.924558582336 1 +77 29167 44.924558582336 0 +77 29326 45.224398582336 1 +77 29327 45.224398582336 2 +77 29332 45.224558582336 1 +77 29333 45.224558582336 0 +77 29492 45.524398582336 1 +77 29493 45.524398582336 2 +77 29498 45.524558582336 1 +77 29499 45.524558582336 0 +77 29658 45.824398582336 1 +77 29659 45.824398582336 2 +77 29664 45.824558582336 1 +77 29665 45.824558582336 0 +77 29824 46.124398582336 1 +77 29825 46.124398582336 2 +77 29830 46.124558582336 1 +77 29831 46.124558582336 0 +77 29990 46.424398582336 1 +77 29991 46.424398582336 2 +77 29996 46.424558582336 1 +77 29997 46.424558582336 0 +77 30156 46.724398582336 1 +77 30157 46.724398582336 2 +77 30162 46.724558582336 1 +77 30163 46.724558582336 0 +77 30322 47.024398582336 1 +77 30323 47.024398582336 2 +77 30328 47.024558582336 1 +77 30329 47.024558582336 0 +77 30488 47.324398582336 1 +77 30489 47.324398582336 2 +77 30494 47.324558582336 1 +77 30495 47.324558582336 0 +77 30654 47.624398582336 1 +77 30655 47.624398582336 2 +77 30660 47.624558582336 1 +77 30661 47.624558582336 0 +77 30820 47.924398582336 1 +77 30821 47.924398582336 2 +77 30826 47.924558582336 1 +77 30827 47.924558582336 0 +77 30986 48.224398582336 1 +77 30987 48.224398582336 2 +77 30992 48.224558582336 1 +77 30993 48.224558582336 0 +77 31152 48.524398582336 1 +77 31153 48.524398582336 2 +77 31158 48.524558582336 1 +77 31159 48.524558582336 0 +77 31318 48.824398582336 1 +77 31319 48.824398582336 2 +77 31324 48.824558582336 1 +77 31325 48.824558582336 0 +77 31484 49.124398582336 1 +77 31485 49.124398582336 2 +77 31490 49.124558582336 1 +77 31491 49.124558582336 0 +77 31650 49.424398582336 1 +77 31651 49.424398582336 2 +77 31656 49.424558582336 1 +77 31657 49.424558582336 0 +77 31816 49.724398582336 1 +77 31817 49.724398582336 2 +77 31822 49.724558582336 1 +77 31823 49.724558582336 0 +77 31982 50.024398582336 1 +77 31983 50.024398582336 2 +77 31988 50.024558582336 1 +77 31989 50.024558582336 0 +77 32148 50.324398582336 1 +77 32149 50.324398582336 2 +77 32154 50.324558582336 1 +77 32155 50.324558582336 0 +77 32314 50.624398582336 1 +77 32315 50.624398582336 2 +77 32320 50.624558582336 1 +77 32321 50.624558582336 0 +77 32480 50.924398582336 1 +77 32481 50.924398582336 2 +77 32486 50.924558582336 1 +77 32487 50.924558582336 0 +77 32642 51.224398582336 1 +77 32643 51.224398582336 2 +77 32648 51.224558582336 1 +77 32649 51.224558582336 0 +77 32800 51.524398582336 1 +77 32801 51.524398582336 2 +77 32806 51.524558582336 1 +77 32807 51.524558582336 0 +77 32966 51.824398582336 1 +77 32967 51.824398582336 2 +77 32972 51.824558582336 1 +77 32973 51.824558582336 0 +77 33132 52.124398582336 1 +77 33133 52.124398582336 2 +77 33138 52.124558582336 1 +77 33139 52.124558582336 0 +77 33298 52.424398582336 1 +77 33299 52.424398582336 2 +77 33304 52.424558582336 1 +77 33305 52.424558582336 0 +77 33464 52.724398582336 1 +77 33465 52.724398582336 2 +77 33470 52.724558582336 1 +77 33471 52.724558582336 0 +77 33630 53.024398582336 1 +77 33631 53.024398582336 2 +77 33636 53.024558582336 1 +77 33637 53.024558582336 0 +77 33772 53.324398582336 1 +77 33773 53.324398582336 2 +77 33777 53.324558582336 1 +77 33778 53.324558582336 0 +77 33899 53.624398582336 1 +77 33900 53.624398582336 2 +77 33904 53.624558582336 1 +77 33905 53.624558582336 0 +77 34026 53.924398582336 1 +77 34027 53.924398582336 2 +77 34031 53.924558582336 1 +77 34032 53.924558582336 0 +77 34153 54.224398582336 1 +77 34154 54.224398582336 2 +77 34158 54.224558582336 1 +77 34159 54.224558582336 0 +77 34280 54.524398582336 1 +77 34281 54.524398582336 2 +77 34285 54.524558582336 1 +77 34286 54.524558582336 0 +77 34407 54.824398582336 1 +77 34408 54.824398582336 2 +77 34412 54.824558582336 1 +77 34413 54.824558582336 0 +77 34534 55.124398582336 1 +77 34535 55.124398582336 2 +77 34539 55.124558582336 1 +77 34540 55.124558582336 0 +77 34661 55.424398582336 1 +77 34662 55.424398582336 2 +77 34666 55.424558582336 1 +77 34667 55.424558582336 0 +77 34788 55.724398582336 1 +77 34789 55.724398582336 2 +77 34793 55.724558582336 1 +77 34794 55.724558582336 0 +77 34915 56.024398582336 1 +77 34916 56.024398582336 2 +77 34920 56.024558582336 1 +77 34921 56.024558582336 0 +77 35042 56.324398582336 1 +77 35043 56.324398582336 2 +77 35047 56.324558582336 1 +77 35048 56.324558582336 0 +77 35167 56.624398582336 1 +77 35168 56.624398582336 2 +77 35171 56.624558582336 1 +77 35172 56.624558582336 0 +77 35251 56.924398582336 1 +77 35252 56.924398582336 2 +77 35255 56.924558582336 1 +77 35256 56.924558582336 0 +77 35335 57.224398582336 1 +77 35336 57.224398582336 2 +77 35339 57.224558582336 1 +77 35340 57.224558582336 0 +77 35419 57.524398582336 1 +77 35420 57.524398582336 2 +77 35423 57.524558582336 1 +77 35424 57.524558582336 0 +77 35503 57.824398582336 1 +77 35504 57.824398582336 2 +77 35507 57.824558582336 1 +77 35508 57.824558582336 0 +77 35587 58.124398582336 1 +77 35588 58.124398582336 2 +77 35591 58.124558582336 1 +77 35592 58.124558582336 0 +77 35671 58.424398582336 1 +77 35672 58.424398582336 2 +77 35675 58.424558582336 1 +77 35676 58.424558582336 0 +77 35755 58.724398582336 1 +77 35756 58.724398582336 2 +77 35759 58.724558582336 1 +77 35760 58.724558582336 0 +77 35839 59.024398582336 1 +77 35840 59.024398582336 2 +77 35843 59.024558582336 1 +77 35844 59.024558582336 0 +77 35923 59.324398582336 1 +77 35924 59.324398582336 2 +77 35927 59.324558582336 1 +77 35928 59.324558582336 0 +77 36007 59.624398582336 1 +77 36008 59.624398582336 2 +77 36011 59.624558582336 1 +77 36012 59.624558582336 0 +77 36091 59.924398582336 1 +77 36092 59.924398582336 2 +77 36095 59.924558582336 1 +77 36096 59.924558582336 0 +77 36175 60.224398582336 1 +77 36176 60.224398582336 2 +77 36179 60.224558582336 1 +77 36180 60.224558582336 0 +77 36251 60.524398582336 1 +77 36252 60.524398582336 2 +77 36255 60.524558582336 1 +77 36256 60.524558582336 0 +77 36327 60.824398582336 1 +77 36328 60.824398582336 2 +77 36331 60.824558582336 1 +77 36332 60.824558582336 0 +77 36403 61.124398582336 1 +77 36404 61.124398582336 2 +77 36407 61.124558582336 1 +77 36408 61.124558582336 0 +77 36479 61.424398582336 1 +77 36480 61.424398582336 2 +77 36483 61.424558582336 1 +77 36484 61.424558582336 0 +77 36555 61.724398582336 1 +77 36556 61.724398582336 2 +77 36559 61.724558582336 1 +77 36560 61.724558582336 0 +77 36631 62.024398582336 1 +77 36632 62.024398582336 2 +77 36635 62.024558582336 1 +77 36636 62.024558582336 0 +77 36707 62.324398582336 1 +77 36708 62.324398582336 2 +77 36711 62.324558582336 1 +77 36712 62.324558582336 0 +77 36783 62.624398582336 1 +77 36784 62.624398582336 2 +77 36787 62.624558582336 1 +77 36788 62.624558582336 0 +77 36859 62.924398582336 1 +77 36860 62.924398582336 2 +77 36863 62.924558582336 1 +77 36864 62.924558582336 0 + diff --git a/results/sumo-0.log b/results/sumo-0.log new file mode 100644 index 0000000000000000000000000000000000000000..70f1358ddc83cb5c5513184bf5239bc9a825d923 --- /dev/null +++ b/results/sumo-0.log @@ -0,0 +1,14 @@ +***Starting server on port 44521 *** +Loading net-file from 'net.net.xml' ... done (26ms). +Loading done. +Simulation started with time: 0.00 +Simulation ended at time: 63.00 +Performance: + Duration: 12.11s + Real time factor: 5.20059 + UPS: 256.232458 +Vehicles: + Inserted: 6 + Running: 3 + Waiting: 0 + diff --git a/route.rou.xml b/route.rou.xml index 4f4340142eef65162f4f5e4c45d050fa6113ad3e..4442a593e7cf7f667417fddc55ed864fc8f69ea3 100644 --- a/route.rou.xml +++ b/route.rou.xml @@ -44,10857 +44,145 @@ <route refId="route2" probability="1" /> <route refId="route3" probability="1" /> </routeDistribution> - - <vehicle id="car0" depart="0.00" departPos="random" arrivalPos="random" route="routedist2"/> - <vehicle id="car1" depart="0.00" departPos="random" arrivalPos="random" route="routedist2"/> - <vehicle id="car2" depart="0.00" departPos="random" arrivalPos="random" route="routedist2"/> - <vehicle id="car3" depart="0.00" departPos="random" arrivalPos="random" route="routedist2"/> - <vehicle id="car4" depart="0.00" departPos="random" arrivalPos="random" route="routedist2"/> - <vehicle id="car5" depart="0.00" departPos="random" arrivalPos="random" route="routedist2"/> - <!-- - <vehicle id="car0" depart="0.00"> - - </vehicle> + <routeDistribution id="routedist1"> + <trip id="0" depart="0.00" from="3/0to4/0" to="0/1to0/0"/> + <trip id="1" depart="1.00" from="1/2to1/3" to="1/1to1/0"/> + <trip id="2" depart="2.00" from="3/2to3/3" to="3/1to3/2"/> + <trip id="3" depart="3.00" from="4/1to4/2" to="0/2to0/3"/> + <trip id="4" depart="4.00" from="2/0to3/0" to="0/1to0/0"/> + <trip id="5" depart="5.00" from="1/1to1/0" to="2/2to2/3"/> + <trip id="6" depart="6.00" from="0/1to0/0" to="1/0to2/0"/> + <trip id="7" depart="7.00" from="3/0to4/0" to="2/3to2/2"/> + <trip id="8" depart="8.00" from="1/1to1/0" to="2/4to2/3"/> + <trip id="9" depart="9.00" from="3/4to2/4" to="0/0to0/1"/> + <trip id="10" depart="10.00" from="3/4to2/4" to="3/1to4/1"/> + <trip id="11" depart="11.00" from="1/3to2/3" to="0/4to1/4"/> + <trip id="12" depart="12.00" from="4/3to4/2" to="1/3to1/4"/> + <trip id="13" depart="13.00" from="0/2to1/2" to="0/2to1/2"/> + </routeDistribution> - <vehicle id="car0" depart="0.00"> - <route edges="2/0to2/1 2/1to2/0 2/0to3/0 3/0to3/1"/> - </vehicle> - <flow id="car0" begin="0" end="100" number="2" from="0/0to1/0" to="3/4to4/4"/> - <flow id="car1" begin="0" end="100" number="2" from="4/1to4/0" to="0/4to1/4"/> - <flow id="car2" begin="0" end="100" number="2" from="2/4to2/3" to="1/0to2/0"/> - - - <vehicle id="car0" depart="0.00"> - <route edges="2/0to2/1 2/1to2/0 2/0to3/0 3/0to3/1"/> - </vehicle> - - <vehicle id="car1" depart="0.00"> - <route edges="0/3to0/2 0/2to1/2 1/2to2/2 2/2to3/2 3/2to4/2 4/2to4/3 4/3to3/3 3/3to2/3 2/3to1/3 1/3to0/3"/> - </vehicle> - - <vehicle id="car2" depart="2.00"> - <route edges="2/0to2/1 2/1to2/0 2/0to3/0 3/0to3/1"/> - </vehicle> + --> - <vehicle id="car3" depart="1.00"> - <route edges="0/3to0/2 0/2to1/2 1/2to2/2 2/2to3/2 3/2to4/2 4/2to4/3 4/3to3/3 3/3to2/3 2/3to1/3 1/3to0/3"/> + + <vehicle id="evilcar0" depart="2.00" color="red"> + <route edges="4/0to3/0 3/0to2/0 2/0to2/1 2/1to2/2 2/2to2/3 2/3to2/4 2/4to3/4"/> </vehicle> + + - <trip id="t" depart="0" fromTaz="taz_1" toTaz="taz_2"/> - <trip id="t" depart="0" fromTaz="taz_3" toTaz="taz_2"/> - <trip id="t" depart="0" fromTaz="taz_3" toTaz="taz_1"/> - <flow id="t" begin="0" end="1000" number="30"> - <route edges="0/3to0/2 0/2to1/2 1/2to2/2 2/2to3/2 3/2to4/2 4/2to4/3 4/3to3/3 3/3to2/3 2/3to1/3 1/3to0/3"/> - - </flow> - - - - <flow id="t1" begin="0" end="1000" number="30"> - <route edges="2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to2/4 2/4to2/3 2/3to2/2 2/2to2/1 2/1to2/0"/> - </flow> - <vehicle id="car0" depart="0.00"> - <route edges="2/0to2/1 2/1to2/0 2/0to3/0 3/0to3/1"/> - </vehicle> - - <vehicle id="1" depart="1.00"> - <route edges="1/1to2/1 2/1to1/1 1/1to0/1 0/1to0/0 0/0to0/1"/> - </vehicle> - <vehicle id="2" depart="2.00"> - <route edges="1/1to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to2/3 2/3to2/4"/> - </vehicle> - <vehicle id="3" depart="3.00"> - <route edges="0/1to0/0 0/0to0/1 0/1to1/1 1/1to1/0"/> - </vehicle> - <vehicle id="4" depart="4.00"> - <route edges="1/0to0/0 0/0to1/0 1/0to2/0 2/0to2/1"/> - </vehicle> - <vehicle id="5" depart="5.00"> - <route edges="0/2to0/1 0/1to1/1 1/1to1/0 1/0to2/0 2/0to3/0 3/0to4/0"/> - </vehicle> - <vehicle id="6" depart="6.00"> - <route edges="0/1to0/0 0/0to0/1 0/1to0/2 0/2to1/2 1/2to2/2 2/2to3/2 3/2to3/3"/> - </vehicle> - <vehicle id="7" depart="7.00"> - <route edges="1/3to0/3 0/3to0/2 0/2to0/1 0/1to1/1 1/1to2/1 2/1to2/0"/> - </vehicle> - <vehicle id="8" depart="8.00"> - <route edges="3/2to2/2 2/2to2/1 2/1to2/0 2/0to3/0 3/0to4/0"/> - </vehicle> - <vehicle id="9" depart="9.00"> - <route edges="3/1to4/1 4/1to3/1 3/1to2/1 2/1to2/2"/> - </vehicle> - <vehicle id="10" depart="10.00"> - <route edges="3/0to3/1 3/1to2/1 2/1to1/1 1/1to0/1 0/1to0/2 0/2to0/3"/> - </vehicle> - <vehicle id="11" depart="11.00"> - <route edges="4/1to4/2 4/2to3/2 3/2to3/3"/> - </vehicle> - <vehicle id="12" depart="12.00"> - <route edges="2/3to1/3 1/3to1/2 1/2to1/1 1/1to1/0 1/0to2/0 2/0to3/0"/> - </vehicle> - <vehicle id="13" depart="13.00"> - <route edges="0/2to1/2 1/2to2/2"/> - </vehicle> - <vehicle id="14" depart="14.00"> - <route edges="3/1to4/1 4/1to3/1 3/1to3/2 3/2to3/1"/> - </vehicle> - <vehicle id="15" depart="15.00"> - <route edges="3/1to4/1 4/1to3/1 3/1to2/1 2/1to1/1 1/1to0/1 0/1to0/2 0/2to0/3 0/3to0/4"/> - </vehicle> - <vehicle id="16" depart="16.00"> - <route edges="4/2to4/3 4/3to3/3 3/3to2/3 2/3to2/4"/> - </vehicle> - <vehicle id="17" depart="17.00"> - <route edges="4/3to3/3 3/3to2/3 2/3to1/3 1/3to0/3 0/3to0/2 0/2to0/3"/> - </vehicle> - <vehicle id="18" depart="18.00"> - <route edges="2/4to1/4 1/4to1/3 1/3to2/3 2/3to1/3"/> - </vehicle> - <vehicle id="19" depart="19.00"> - <route edges="0/2to1/2 1/2to1/3 1/3to2/3 2/3to2/4"/> - </vehicle> - <vehicle id="20" depart="20.00"> - <route edges="1/2to1/1 1/1to2/1 2/1to3/1 3/1to3/2"/> - </vehicle> - <vehicle id="21" depart="21.00"> - <route edges="2/4to3/4 3/4to2/4 2/4to2/3 2/3to2/2 2/2to2/3"/> - </vehicle> - <vehicle id="22" depart="22.00"> - <route edges="1/0to2/0 2/0to2/1 2/1to2/2 2/2to3/2 3/2to3/3"/> - </vehicle> - <vehicle id="23" depart="23.00"> - <route edges="0/4to1/4 1/4to2/4 2/4to1/4"/> - </vehicle> - <vehicle id="24" depart="24.00"> - <route edges="4/2to3/2 3/2to3/1 3/1to3/0 3/0to2/0"/> - </vehicle> - <vehicle id="25" depart="25.00"> - <route edges="4/1to4/0 4/0to3/0 3/0to2/0 2/0to2/1 2/1to2/2 2/2to2/3 2/3to3/3"/> - </vehicle> - <vehicle id="26" depart="26.00"> - <route edges="0/4to0/3 0/3to0/2 0/2to0/1 0/1to1/1 1/1to2/1 2/1to3/1 3/1to3/2"/> - </vehicle> - <vehicle id="27" depart="27.00"> - <route edges="3/3to4/3 4/3to4/4 4/4to4/3"/> - </vehicle> - <vehicle id="28" depart="28.00"> - <route edges="3/0to2/0 2/0to2/1 2/1to2/2 2/2to2/3 2/3to3/3 3/3to4/3 4/3to3/3"/> - </vehicle> - <vehicle id="29" depart="29.00"> - <route edges="0/1to1/1 1/1to1/2 1/2to2/2 2/2to1/2"/> - </vehicle> - <vehicle id="30" depart="30.00"> - <route edges="1/1to1/0 1/0to2/0 2/0to2/1"/> - </vehicle> - <vehicle id="31" depart="31.00"> - <route edges="4/3to4/2 4/2to3/2 3/2to2/2 2/2to1/2 1/2to0/2"/> - </vehicle> - <vehicle id="32" depart="32.00"> - <route edges="0/3to0/4 0/4to0/3 0/3to0/2 0/2to0/1 0/1to1/1 1/1to2/1 2/1to3/1"/> - </vehicle> - <vehicle id="33" depart="33.00"> - <route edges="3/4to2/4 2/4to2/3 2/3to2/2 2/2to3/2 3/2to3/1"/> - </vehicle> - <vehicle id="34" depart="34.00"> - <route edges="4/2to4/1 4/1to3/1 3/1to3/2 3/2to3/3 3/3to3/4 3/4to2/4"/> - </vehicle> - <vehicle id="35" depart="35.00"> - <route edges="2/4to3/4 3/4to2/4 2/4to2/3 2/3to2/2 2/2to1/2"/> - </vehicle> - <vehicle id="36" depart="36.00"> - <route edges="1/0to0/0 0/0to0/1 0/1to0/2 0/2to1/2 1/2to2/2"/> - </vehicle> - <vehicle id="37" depart="37.00"> - <route edges="2/2to1/2 1/2to1/3 1/3to2/3"/> - </vehicle> - <vehicle id="38" depart="38.00"> - <route edges="3/2to3/1 3/1to3/0 3/0to4/0 4/0to4/1"/> - </vehicle> - <vehicle id="39" depart="39.00"> - <route edges="3/3to2/3"/> - </vehicle> - <vehicle id="40" depart="40.00"> - <route edges="4/4to4/3 4/3to3/3 3/3to3/4 3/4to3/3"/> - </vehicle> - <vehicle id="41" depart="41.00"> - <route edges="3/1to4/1 4/1to3/1 3/1to2/1 2/1to2/2 2/2to2/3 2/3to2/4 2/4to1/4"/> - </vehicle> - <vehicle id="42" depart="42.00"> - <route edges="0/0to0/1 0/1to1/1 1/1to1/0"/> - </vehicle> - <vehicle id="43" depart="43.00"> - <route edges="3/3to4/3 4/3to3/3 3/3to2/3 2/3to1/3 1/3to0/3 0/3to0/2 0/2to0/1 0/1to1/1"/> - </vehicle> - <vehicle id="44" depart="44.00"> - <route edges="3/1to3/2 3/2to3/3 3/3to4/3"/> - </vehicle> - <vehicle id="45" depart="45.00"> - <route edges="2/0to1/0 1/0to1/1 1/1to1/2 1/2to2/2 2/2to3/2 3/2to4/2 4/2to4/3"/> - </vehicle> - <vehicle id="46" depart="46.00"> - <route edges="3/0to4/0 4/0to3/0 3/0to2/0 2/0to2/1 2/1to2/2 2/2to2/1"/> - </vehicle> - <vehicle id="47" depart="47.00"> - <route edges="1/4to1/3 1/3to1/4"/> - </vehicle> - <vehicle id="48" depart="48.00"> - <route edges="4/2to4/3 4/3to3/3 3/3to3/2 3/2to2/2"/> - </vehicle> - <vehicle id="49" depart="49.00"> - <route edges="3/0to2/0 2/0to2/1 2/1to2/2 2/2to2/3 2/3to3/3 3/3to3/2"/> - </vehicle> - <vehicle id="50" depart="50.00"> - <route edges="2/0to1/0 1/0to1/1 1/1to1/2 1/2to2/2 2/2to3/2 3/2to3/3"/> - </vehicle> - <vehicle id="51" depart="51.00"> - <route edges="1/3to2/3 2/3to2/2 2/2to2/1 2/1to2/2"/> - </vehicle> - <vehicle id="52" depart="52.00"> - <route edges="2/1to3/1 3/1to3/0 3/0to3/1"/> - </vehicle> - <vehicle id="53" depart="53.00"> - <route edges="0/1to0/0 0/0to0/1 0/1to0/2 0/2to0/3 0/3to1/3 1/3to2/3 2/3to2/2"/> - </vehicle> - <vehicle id="54" depart="54.00"> - <route edges="1/4to1/3 1/3to1/2 1/2to1/1 1/1to2/1 2/1to3/1 3/1to4/1 4/1to4/0"/> - </vehicle> - <vehicle id="55" depart="55.00"> - <route edges="3/0to3/1 3/1to2/1 2/1to1/1 1/1to0/1 0/1to0/0"/> - </vehicle> - <vehicle id="56" depart="56.00"> - <route edges="0/1to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to0/4"/> - </vehicle> - <vehicle id="57" depart="57.00"> - <route edges="3/4to4/4 4/4to3/4 3/4to2/4 2/4to1/4"/> - </vehicle> - <vehicle id="58" depart="58.00"> - <route edges="4/0to4/1 4/1to3/1 3/1to2/1 2/1to1/1 1/1to1/0"/> - </vehicle> - <vehicle id="59" depart="59.00"> - <route edges="0/1to0/0 0/0to0/1 0/1to0/2 0/2to0/3 0/3to1/3 1/3to2/3"/> - </vehicle> - <vehicle id="60" depart="60.00"> - <route edges="1/2to2/2 2/2to1/2 1/2to1/1 1/1to2/1"/> - </vehicle> - <vehicle id="61" depart="61.00"> - <route edges="0/2to0/3 0/3to1/3 1/3to2/3 2/3to3/3 3/3to4/3 4/3to3/3"/> - </vehicle> - <vehicle id="62" depart="62.00"> - <route edges="2/0to3/0 3/0to2/0 2/0to1/0 1/0to1/1 1/1to0/1 0/1to0/2 0/2to0/3 0/3to0/4 0/4to1/4"/> - </vehicle> - <vehicle id="63" depart="63.00"> - <route edges="4/3to4/4 4/4to3/4 3/4to2/4 2/4to1/4 1/4to1/3 1/3to0/3 0/3to0/2 0/2to0/1 0/1to1/1"/> - </vehicle> - <vehicle id="64" depart="64.00"> - <route edges="2/0to2/1 2/1to2/2 2/2to2/3 2/3to2/4 2/4to3/4"/> - </vehicle> - <vehicle id="65" depart="65.00"> - <route edges="2/0to3/0 3/0to3/1 3/1to2/1"/> - </vehicle> - <vehicle id="66" depart="66.00"> - <route edges="4/4to4/3 4/3to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to2/0"/> - </vehicle> - <vehicle id="67" depart="67.00"> - <route edges="2/3to1/3 1/3to1/2 1/2to1/1 1/1to1/0 1/0to2/0 2/0to3/0 3/0to4/0 4/0to4/1"/> - </vehicle> - <vehicle id="68" depart="68.00"> - <route edges="1/0to2/0 2/0to2/1 2/1to2/2 2/2to2/3 2/3to2/4 2/4to3/4 3/4to4/4 4/4to4/3"/> - </vehicle> - <vehicle id="69" depart="69.00"> - <route edges="0/1to0/2 0/2to0/1 0/1to1/1 1/1to1/0"/> - </vehicle> - <vehicle id="70" depart="70.00"> - <route edges="3/3to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to2/1"/> - </vehicle> - <vehicle id="71" depart="71.00"> - <route edges="2/0to3/0 3/0to3/1 3/1to4/1 4/1to3/1"/> - </vehicle> - <vehicle id="72" depart="72.00"> - <route edges="4/1to3/1 3/1to2/1 2/1to1/1 1/1to1/2 1/2to1/3 1/3to0/3"/> - </vehicle> - <vehicle id="73" depart="73.00"> - <route edges="2/2to3/2 3/2to4/2 4/2to4/3"/> - </vehicle> - <vehicle id="74" depart="74.00"> - <route edges="2/0to3/0 3/0to2/0 2/0to1/0 1/0to0/0 0/0to1/0"/> - </vehicle> - <vehicle id="75" depart="75.00"> - <route edges="3/4to2/4 2/4to2/3 2/3to2/2 2/2to3/2 3/2to4/2 4/2to4/1"/> - </vehicle> - <vehicle id="76" depart="76.00"> - <route edges="4/1to3/1 3/1to4/1"/> - </vehicle> - <vehicle id="77" depart="77.00"> - <route edges="1/0to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to1/3"/> - </vehicle> - <vehicle id="78" depart="78.00"> - <route edges="1/2to1/3 1/3to0/3 0/3to0/2 0/2to0/1"/> - </vehicle> - <vehicle id="79" depart="79.00"> - <route edges="0/0to0/1 0/1to1/1 1/1to2/1 2/1to3/1"/> - </vehicle> - <vehicle id="80" depart="80.00"> - <route edges="3/0to2/0 2/0to1/0 1/0to1/1 1/1to0/1 0/1to0/2 0/2to0/3 0/3to1/3"/> - </vehicle> - <vehicle id="81" depart="81.00"> - <route edges="4/4to4/3 4/3to3/3 3/3to3/2"/> - </vehicle> - <vehicle id="82" depart="82.00"> - <route edges="2/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to3/2"/> - </vehicle> - <vehicle id="83" depart="83.00"> - <route edges="2/4to1/4 1/4to0/4"/> - </vehicle> - <vehicle id="84" depart="84.00"> - <route edges="4/0to3/0 3/0to3/1 3/1to3/0"/> - </vehicle> - <vehicle id="85" depart="85.00"> - <route edges="1/1to1/2 1/2to1/1 1/1to0/1"/> - </vehicle> - <vehicle id="86" depart="86.00"> - <route edges="4/1to4/0 4/0to3/0 3/0to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to2/3"/> - </vehicle> - <vehicle id="87" depart="87.00"> - <route edges="1/1to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to2/4 2/4to3/4"/> - </vehicle> - <vehicle id="88" depart="88.00"> - <route edges="0/1to1/1 1/1to1/2 1/2to1/3 1/3to2/3 2/3to3/3 3/3to4/3 4/3to4/2"/> - </vehicle> - <vehicle id="89" depart="89.00"> - <route edges="0/2to0/3 0/3to0/2"/> - </vehicle> - <vehicle id="90" depart="90.00"> - <route edges="1/1to2/1 2/1to2/2 2/2to2/3 2/3to2/4 2/4to3/4 3/4to2/4"/> - </vehicle> - <vehicle id="91" depart="91.00"> - <route edges="4/4to4/3 4/3to4/2 4/2to4/1 4/1to4/2"/> - </vehicle> - <vehicle id="92" depart="92.00"> - <route edges="4/2to3/2 3/2to2/2 2/2to1/2 1/2to0/2 0/2to0/1 0/1to0/0"/> - </vehicle> - <vehicle id="93" depart="93.00"> - <route edges="1/0to2/0 2/0to2/1 2/1to2/2 2/2to3/2 3/2to4/2 4/2to3/2"/> - </vehicle> - <vehicle id="94" depart="94.00"> - <route edges="0/4to0/3 0/3to0/2 0/2to0/1 0/1to1/1 1/1to1/0 1/0to2/0 2/0to3/0 3/0to3/1"/> - </vehicle> - <vehicle id="95" depart="95.00"> - <route edges="2/0to3/0 3/0to2/0 2/0to2/1 2/1to2/2 2/2to2/3 2/3to3/3"/> - </vehicle> - <vehicle id="96" depart="96.00"> - <route edges="1/2to1/1 1/1to2/1 2/1to2/2"/> - </vehicle> - <vehicle id="97" depart="97.00"> - <route edges="3/0to2/0 2/0to2/1 2/1to2/2 2/2to2/3 2/3to2/4 2/4to2/3"/> - </vehicle> - <vehicle id="98" depart="98.00"> - <route edges="2/3to2/2 2/2to2/3 2/3to2/4"/> - </vehicle> - <vehicle id="99" depart="99.00"> - <route edges="2/3to2/4 2/4to2/3 2/3to3/3 3/3to4/3 4/3to4/4"/> - </vehicle> - <vehicle id="100" depart="100.00"> - <route edges="2/0to3/0 3/0to3/1 3/1to3/2 3/2to3/3 3/3to3/4 3/4to4/4"/> - </vehicle> - <vehicle id="101" depart="101.00"> - <route edges="2/0to3/0 3/0to2/0 2/0to1/0 1/0to1/1 1/1to0/1 0/1to0/2 0/2to0/3 0/3to0/4"/> - </vehicle> - <vehicle id="102" depart="102.00"> - <route edges="2/2to1/2 1/2to0/2 0/2to0/3 0/3to0/2"/> - </vehicle> - <vehicle id="103" depart="103.00"> - <route edges="4/3to4/2 4/2to3/2 3/2to3/3 3/3to3/4 3/4to4/4"/> - </vehicle> - <vehicle id="104" depart="104.00"> - <route edges="3/0to3/1 3/1to2/1 2/1to1/1 1/1to0/1 0/1to0/2 0/2to0/3"/> + <route edges="3/0to4/0 4/0to3/0 3/0to2/0 2/0to1/0 1/0to0/0 0/0to0/1 0/1to0/0"/> </vehicle> - <vehicle id="105" depart="105.00"> - <route edges="3/2to2/2 2/2to1/2 1/2to1/1 1/1to1/0 1/0to2/0"/> + <vehicle id="car1" depart="1.00"> + <route edges="1/2to1/3 1/3to1/2 1/2to1/1 1/1to1/0"/> </vehicle> - <vehicle id="106" depart="106.00"> - <route edges="4/4to3/4 3/4to2/4 2/4to2/3 2/3to2/2 2/2to3/2"/> - </vehicle> - <vehicle id="107" depart="107.00"> - <route edges="0/4to1/4 1/4to1/3 1/3to0/3 0/3to0/2 0/2to0/1 0/1to1/1"/> - </vehicle> - <vehicle id="108" depart="108.00"> - <route edges="2/1to3/1 3/1to2/1 2/1to1/1"/> - </vehicle> - <vehicle id="109" depart="109.00"> - <route edges="2/1to2/2 2/2to1/2 1/2to1/1 1/1to1/0 1/0to1/1"/> - </vehicle> - <vehicle id="110" depart="110.00"> - <route edges="3/4to2/4 2/4to2/3 2/3to2/2 2/2to3/2"/> - </vehicle> - <vehicle id="111" depart="111.00"> - <route edges="2/4to1/4 1/4to1/3 1/3to1/2 1/2to1/1 1/1to1/0 1/0to0/0"/> - </vehicle> - <vehicle id="112" depart="112.00"> - <route edges="4/1to4/2 4/2to3/2"/> - </vehicle> - <vehicle id="113" depart="113.00"> - <route edges="1/1to1/2 1/2to1/1 1/1to2/1 2/1to1/1"/> - </vehicle> - <vehicle id="114" depart="114.00"> - <route edges="1/0to1/1 1/1to0/1 0/1to1/1"/> - </vehicle> - <vehicle id="115" depart="115.00"> - <route edges="3/0to3/1 3/1to2/1 2/1to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to2/4"/> - </vehicle> - <vehicle id="116" depart="116.00"> - <route edges="4/3to3/3 3/3to2/3 2/3to2/2 2/2to2/1 2/1to2/0 2/0to1/0"/> - </vehicle> - <vehicle id="117" depart="117.00"> - <route edges="3/3to3/2 3/2to3/1 3/1to3/2"/> - </vehicle> - <vehicle id="118" depart="118.00"> - <route edges="2/4to1/4 1/4to1/3 1/3to1/2"/> - </vehicle> - <vehicle id="119" depart="119.00"> - <route edges="2/1to1/1 1/1to1/2 1/2to1/3"/> - </vehicle> - <vehicle id="120" depart="120.00"> - <route edges="3/1to3/0 3/0to2/0 2/0to2/1 2/1to2/2 2/2to2/3 2/3to2/4 2/4to1/4"/> - </vehicle> - <vehicle id="121" depart="121.00"> - <route edges="3/4to3/3 3/3to2/3 2/3to1/3 1/3to0/3 0/3to0/4 0/4to0/3"/> - </vehicle> - <vehicle id="122" depart="122.00"> - <route edges="4/2to3/2 3/2to3/3 3/3to4/3 4/3to4/2"/> - </vehicle> - <vehicle id="123" depart="123.00"> - <route edges="4/0to3/0 3/0to3/1 3/1to3/2 3/2to4/2 4/2to3/2"/> - </vehicle> - <vehicle id="124" depart="124.00"> - <route edges="3/4to4/4 4/4to3/4 3/4to3/3 3/3to2/3"/> - </vehicle> - <vehicle id="125" depart="125.00"> - <route edges="1/3to1/4 1/4to1/3 1/3to1/2 1/2to1/1 1/1to1/0 1/0to2/0 2/0to3/0 3/0to4/0"/> - </vehicle> - <vehicle id="126" depart="126.00"> - <route edges="2/3to2/2 2/2to1/2 1/2to1/1 1/1to1/2"/> - </vehicle> - <vehicle id="127" depart="127.00"> - <route edges="1/2to1/1 1/1to2/1 2/1to1/1"/> - </vehicle> - <vehicle id="128" depart="128.00"> - <route edges="0/0to1/0 1/0to2/0 2/0to3/0 3/0to4/0 4/0to3/0"/> - </vehicle> - <vehicle id="129" depart="129.00"> - <route edges="2/3to1/3 1/3to1/4"/> - </vehicle> - <vehicle id="130" depart="130.00"> - <route edges="4/1to3/1 3/1to2/1 2/1to2/2"/> - </vehicle> - <vehicle id="131" depart="131.00"> - <route edges="1/0to0/0 0/0to0/1 0/1to1/1 1/1to2/1"/> - </vehicle> - <vehicle id="132" depart="132.00"> - <route edges="3/4to3/3 3/3to4/3 4/3to4/2"/> - </vehicle> - <vehicle id="133" depart="133.00"> - <route edges="3/4to3/3 3/3to2/3 2/3to1/3 1/3to1/2 1/2to1/1 1/1to0/1"/> - </vehicle> - <vehicle id="134" depart="134.00"> - <route edges="2/2to2/3 2/3to1/3 1/3to0/3 0/3to0/2 0/2to0/1 0/1to0/0 0/0to0/1"/> - </vehicle> - <vehicle id="135" depart="135.00"> - <route edges="1/0to0/0 0/0to0/1 0/1to1/1 1/1to2/1 2/1to3/1 3/1to2/1"/> - </vehicle> - <vehicle id="136" depart="136.00"> - <route edges="2/4to3/4 3/4to4/4 4/4to3/4"/> - </vehicle> - <vehicle id="137" depart="137.00"> - <route edges="2/2to3/2 3/2to3/1 3/1to4/1 4/1to4/2"/> - </vehicle> - <vehicle id="138" depart="138.00"> - <route edges="0/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to2/3 2/3to3/3 3/3to4/3"/> - </vehicle> - <vehicle id="139" depart="139.00"> - <route edges="2/2to2/3 2/3to1/3 1/3to0/3 0/3to0/2"/> - </vehicle> - <vehicle id="140" depart="140.00"> - <route edges="1/0to0/0 0/0to0/1 0/1to0/2 0/2to1/2 1/2to2/2 2/2to3/2 3/2to4/2 4/2to4/1"/> - </vehicle> - <vehicle id="141" depart="141.00"> - <route edges="0/1to0/0 0/0to1/0 1/0to2/0 2/0to3/0 3/0to4/0 4/0to3/0"/> - </vehicle> - <vehicle id="142" depart="142.00"> - <route edges="2/1to2/2 2/2to1/2 1/2to0/2 0/2to0/1 0/1to0/0 0/0to0/1"/> - </vehicle> - <vehicle id="143" depart="143.00"> - <route edges="2/4to2/3 2/3to2/2 2/2to3/2 3/2to3/1"/> - </vehicle> - <vehicle id="144" depart="144.00"> - <route edges="0/1to0/2 0/2to0/1 0/1to1/1 1/1to2/1 2/1to3/1 3/1to4/1 4/1to4/0"/> - </vehicle> - <vehicle id="145" depart="145.00"> - <route edges="0/2to0/1 0/1to0/0 0/0to0/1"/> - </vehicle> - <vehicle id="146" depart="146.00"> - <route edges="4/1to4/0 4/0to3/0 3/0to2/0 2/0to3/0"/> - </vehicle> - <vehicle id="147" depart="147.00"> - <route edges="3/1to3/0 3/0to2/0 2/0to1/0 1/0to1/1 1/1to1/0"/> - </vehicle> - <vehicle id="148" depart="148.00"> - <route edges="4/2to3/2 3/2to2/2 2/2to1/2 1/2to0/2 0/2to0/1 0/1to0/2"/> - </vehicle> - <vehicle id="149" depart="149.00"> - <route edges="1/4to2/4 2/4to3/4 3/4to4/4 4/4to4/3"/> - </vehicle> - <vehicle id="150" depart="150.00"> - <route edges="2/0to2/1 2/1to2/2 2/2to2/3 2/3to3/3 3/3to4/3 4/3to3/3"/> - </vehicle> - <vehicle id="151" depart="151.00"> - <route edges="1/4to0/4 0/4to0/3 0/3to0/2 0/2to1/2 1/2to2/2 2/2to3/2 3/2to4/2 4/2to4/3"/> - </vehicle> - <vehicle id="152" depart="152.00"> - <route edges="3/4to3/3 3/3to3/4 3/4to2/4"/> - </vehicle> - <vehicle id="153" depart="153.00"> - <route edges="0/3to0/2 0/2to0/1 0/1to0/0"/> - </vehicle> - <vehicle id="154" depart="154.00"> - <route edges="3/1to3/2 3/2to2/2 2/2to1/2 1/2to0/2 0/2to0/3 0/3to1/3"/> - </vehicle> - <vehicle id="155" depart="155.00"> - <route edges="0/3to0/4 0/4to0/3 0/3to1/3 1/3to2/3 2/3to1/3"/> - </vehicle> - <vehicle id="156" depart="156.00"> - <route edges="4/2to4/1 4/1to3/1 3/1to2/1 2/1to2/0 2/0to1/0"/> - </vehicle> - <vehicle id="157" depart="157.00"> - <route edges="2/4to3/4 3/4to2/4 2/4to2/3 2/3to2/2 2/2to3/2"/> - </vehicle> - <vehicle id="158" depart="158.00"> - <route edges="2/1to2/2 2/2to1/2 1/2to1/3 1/3to1/4 1/4to2/4"/> - </vehicle> - <vehicle id="159" depart="159.00"> - <route edges="4/2to3/2 3/2to3/1"/> - </vehicle> - <vehicle id="160" depart="160.00"> - <route edges="0/4to0/3 0/3to1/3 1/3to2/3 2/3to3/3 3/3to2/3"/> - </vehicle> - <vehicle id="161" depart="161.00"> - <route edges="2/3to2/2 2/2to2/1 2/1to3/1 3/1to4/1"/> - </vehicle> - <vehicle id="162" depart="162.00"> - <route edges="4/4to3/4 3/4to2/4 2/4to1/4 1/4to1/3 1/3to1/2"/> - </vehicle> - <vehicle id="163" depart="163.00"> - <route edges="4/2to4/3 4/3to3/3 3/3to3/4 3/4to2/4"/> - </vehicle> - <vehicle id="164" depart="164.00"> - <route edges="3/2to3/3 3/3to2/3 2/3to3/3"/> - </vehicle> - <vehicle id="165" depart="165.00"> - <route edges="0/0to1/0 1/0to1/1 1/1to1/2 1/2to2/2 2/2to3/2 3/2to2/2"/> - </vehicle> - <vehicle id="166" depart="166.00"> - <route edges="2/1to1/1 1/1to1/2 1/2to1/3 1/3to2/3 2/3to1/3"/> - </vehicle> - <vehicle id="167" depart="167.00"> - <route edges="4/3to4/2 4/2to3/2 3/2to2/2 2/2to2/3 2/3to2/4"/> - </vehicle> - <vehicle id="168" depart="168.00"> - <route edges="3/4to2/4 2/4to1/4 1/4to1/3 1/3to0/3 0/3to0/2 0/2to0/1 0/1to0/0 0/0to0/1"/> - </vehicle> - <vehicle id="169" depart="169.00"> - <route edges="3/1to3/2 3/2to2/2 2/2to1/2 1/2to2/2"/> - </vehicle> - <vehicle id="170" depart="170.00"> - <route edges="3/2to2/2 2/2to1/2 1/2to1/1 1/1to1/0 1/0to1/1"/> - </vehicle> - <vehicle id="171" depart="171.00"> - <route edges="3/4to2/4 2/4to1/4 1/4to1/3 1/3to1/2 1/2to1/1 1/1to2/1"/> - </vehicle> - <vehicle id="172" depart="172.00"> - <route edges="4/2to4/1 4/1to3/1 3/1to2/1 2/1to2/0 2/0to3/0"/> - </vehicle> - <vehicle id="173" depart="173.00"> - <route edges="1/1to1/2 1/2to0/2 0/2to0/1 0/1to1/1"/> - </vehicle> - <vehicle id="174" depart="174.00"> - <route edges="2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to1/2"/> - </vehicle> - <vehicle id="175" depart="175.00"> - <route edges="2/0to3/0 3/0to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to0/4"/> - </vehicle> - <vehicle id="176" depart="176.00"> - <route edges="2/1to3/1 3/1to3/2 3/2to3/1"/> - </vehicle> - <vehicle id="177" depart="177.00"> - <route edges="0/3to1/3 1/3to1/2 1/2to1/1 1/1to2/1 2/1to3/1 3/1to4/1 4/1to4/2"/> - </vehicle> - <vehicle id="178" depart="178.00"> - <route edges="3/1to2/1 2/1to2/2 2/2to2/3 2/3to3/3 3/3to4/3"/> - </vehicle> - <vehicle id="179" depart="179.00"> - <route edges="1/3to0/3 0/3to0/4 0/4to1/4"/> - </vehicle> - <vehicle id="180" depart="180.00"> - <route edges="1/3to0/3 0/3to1/3 1/3to2/3"/> - </vehicle> - <vehicle id="181" depart="181.00"> - <route edges="0/4to0/3 0/3to0/2 0/2to0/1 0/1to1/1 1/1to2/1 2/1to3/1 3/1to4/1 4/1to4/2"/> - </vehicle> - <vehicle id="182" depart="182.00"> - <route edges="4/2to3/2 3/2to4/2 4/2to4/1"/> - </vehicle> - <vehicle id="183" depart="183.00"> - <route edges="1/3to1/2 1/2to2/2 2/2to3/2 3/2to4/2 4/2to4/3"/> - </vehicle> - <vehicle id="184" depart="184.00"> - <route edges="3/2to3/1 3/1to3/2"/> - </vehicle> - <vehicle id="185" depart="185.00"> - <route edges="4/1to4/2 4/2to4/3 4/3to4/2"/> - </vehicle> - <vehicle id="186" depart="186.00"> - <route edges="2/0to3/0 3/0to2/0 2/0to2/1 2/1to2/2 2/2to1/2"/> - </vehicle> - <vehicle id="187" depart="187.00"> - <route edges="4/2to3/2 3/2to2/2 2/2to1/2 1/2to0/2 0/2to0/1 0/1to0/0"/> - </vehicle> - <vehicle id="188" depart="188.00"> - <route edges="4/2to3/2 3/2to2/2 2/2to1/2 1/2to1/1 1/1to2/1"/> - </vehicle> - <vehicle id="189" depart="189.00"> - <route edges="3/1to3/2 3/2to3/3 3/3to4/3"/> - </vehicle> - <vehicle id="190" depart="190.00"> - <route edges="2/3to2/2 2/2to1/2 1/2to0/2 0/2to0/1 0/1to1/1"/> - </vehicle> - <vehicle id="191" depart="191.00"> - <route edges="3/3to3/2 3/2to3/1 3/1to3/0 3/0to3/1"/> - </vehicle> - <vehicle id="192" depart="192.00"> - <route edges="1/2to2/2 2/2to1/2 1/2to1/3 1/3to1/4"/> - </vehicle> - <vehicle id="193" depart="193.00"> - <route edges="4/2to3/2 3/2to2/2 2/2to1/2 1/2to0/2 0/2to0/3 0/3to0/4 0/4to0/3"/> - </vehicle> - <vehicle id="194" depart="194.00"> - <route edges="0/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to2/3 2/3to2/4"/> - </vehicle> - <vehicle id="195" depart="195.00"> - <route edges="4/2to3/2 3/2to3/3 3/3to3/2"/> - </vehicle> - <vehicle id="196" depart="196.00"> - <route edges="0/0to1/0 1/0to1/1 1/1to1/2 1/2to2/2 2/2to3/2 3/2to4/2 4/2to4/3"/> - </vehicle> - <vehicle id="197" depart="197.00"> - <route edges="3/3to3/2 3/2to3/3"/> - </vehicle> - <vehicle id="198" depart="198.00"> - <route edges="3/0to4/0 4/0to3/0 3/0to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to1/4"/> - </vehicle> - <vehicle id="199" depart="199.00"> - <route edges="0/4to1/4 1/4to1/3 1/3to1/2 1/2to0/2"/> - </vehicle> - <vehicle id="200" depart="200.00"> - <route edges="1/2to2/2 2/2to1/2 1/2to1/1 1/1to1/0"/> - </vehicle> - <vehicle id="201" depart="201.00"> - <route edges="1/2to1/1 1/1to1/2 1/2to0/2"/> - </vehicle> - <vehicle id="202" depart="202.00"> - <route edges="1/3to0/3 0/3to1/3 1/3to1/4 1/4to2/4 2/4to3/4 3/4to4/4 4/4to3/4"/> - </vehicle> - <vehicle id="203" depart="203.00"> - <route edges="1/1to0/1 0/1to1/1 1/1to1/0 1/0to2/0 2/0to3/0 3/0to4/0 4/0to3/0"/> - </vehicle> - <vehicle id="204" depart="204.00"> - <route edges="1/4to1/3 1/3to1/2 1/2to1/1 1/1to1/2"/> - </vehicle> - <vehicle id="205" depart="205.00"> - <route edges="2/3to3/3 3/3to2/3 2/3to1/3 1/3to0/3 0/3to0/2 0/2to0/1 0/1to0/0"/> - </vehicle> - <vehicle id="206" depart="206.00"> - <route edges="2/1to2/0 2/0to2/1 2/1to2/2 2/2to3/2 3/2to2/2"/> - </vehicle> - <vehicle id="207" depart="207.00"> - <route edges="2/1to1/1 1/1to1/2 1/2to1/3 1/3to2/3 2/3to3/3 3/3to4/3 4/3to4/4"/> - </vehicle> - <vehicle id="208" depart="208.00"> - <route edges="0/2to0/3 0/3to0/4 0/4to1/4"/> - </vehicle> - <vehicle id="209" depart="209.00"> - <route edges="1/3to2/3 2/3to1/3 1/3to1/2 1/2to1/1 1/1to1/0 1/0to0/0"/> - </vehicle> - <vehicle id="210" depart="210.00"> - <route edges="0/3to0/2 0/2to0/3 0/3to1/3 1/3to1/4 1/4to2/4 2/4to1/4"/> - </vehicle> - <vehicle id="211" depart="211.00"> - <route edges="0/2to0/3 0/3to0/2 0/2to0/1 0/1to1/1 1/1to1/0 1/0to2/0 2/0to3/0 3/0to4/0"/> - </vehicle> - <vehicle id="212" depart="212.00"> - <route edges="4/2to3/2 3/2to3/3 3/3to3/4 3/4to4/4 4/4to3/4"/> - </vehicle> - <vehicle id="213" depart="213.00"> - <route edges="3/0to3/1 3/1to2/1 2/1to1/1 1/1to0/1 0/1to0/2 0/2to0/3 0/3to1/3"/> - </vehicle> - <vehicle id="214" depart="214.00"> - <route edges="2/0to2/1 2/1to2/2 2/2to2/3 2/3to3/3 3/3to4/3"/> - </vehicle> - <vehicle id="215" depart="215.00"> - <route edges="3/0to4/0 4/0to3/0 3/0to2/0 2/0to2/1 2/1to2/2 2/2to2/3 2/3to1/3"/> - </vehicle> - <vehicle id="216" depart="216.00"> - <route edges="0/2to0/1 0/1to1/1 1/1to2/1 2/1to1/1"/> - </vehicle> - <vehicle id="217" depart="217.00"> - <route edges="3/4to3/3 3/3to2/3 2/3to2/2 2/2to3/2"/> - </vehicle> - <vehicle id="218" depart="218.00"> - <route edges="1/1to1/0 1/0to1/1 1/1to1/2"/> - </vehicle> - <vehicle id="219" depart="219.00"> - <route edges="2/2to2/3 2/3to1/3 1/3to0/3 0/3to0/4 0/4to1/4"/> - </vehicle> - <vehicle id="220" depart="220.00"> - <route edges="3/0to3/1 3/1to2/1 2/1to1/1 1/1to0/1 0/1to0/2 0/2to0/3 0/3to0/4"/> - </vehicle> - <vehicle id="221" depart="221.00"> - <route edges="2/3to2/4 2/4to1/4 1/4to0/4 0/4to0/3"/> - </vehicle> - <vehicle id="222" depart="222.00"> - <route edges="1/1to1/2 1/2to1/3 1/3to2/3"/> - </vehicle> - <vehicle id="223" depart="223.00"> - <route edges="3/3to3/2 3/2to3/1 3/1to3/0"/> - </vehicle> - <vehicle id="224" depart="224.00"> - <route edges="3/4to3/3 3/3to3/2 3/2to3/1 3/1to3/0"/> - </vehicle> - <vehicle id="225" depart="225.00"> - <route edges="1/4to2/4 2/4to1/4 1/4to1/3 1/3to0/3 0/3to0/2 0/2to0/3"/> - </vehicle> - <vehicle id="226" depart="226.00"> - <route edges="1/4to1/3 1/3to1/2 1/2to1/1 1/1to2/1"/> - </vehicle> - <vehicle id="227" depart="227.00"> - <route edges="1/1to1/0 1/0to1/1 1/1to2/1 2/1to3/1 3/1to4/1 4/1to4/0"/> - </vehicle> - <vehicle id="228" depart="228.00"> - <route edges="0/1to1/1 1/1to1/0 1/0to2/0 2/0to3/0"/> - </vehicle> - <vehicle id="229" depart="229.00"> - <route edges="1/0to2/0 2/0to2/1 2/1to2/2 2/2to2/3 2/3to2/4 2/4to3/4 3/4to3/3"/> - </vehicle> - <vehicle id="230" depart="230.00"> - <route edges="3/2to3/1 3/1to3/0 3/0to4/0"/> - </vehicle> - <vehicle id="231" depart="231.00"> - <route edges="1/1to1/2 1/2to2/2 2/2to3/2 3/2to4/2 4/2to3/2"/> - </vehicle> - <vehicle id="232" depart="232.00"> - <route edges="2/0to2/1 2/1to1/1 1/1to0/1 0/1to1/1"/> + <vehicle id="car2" depart="2.00"> + <route edges="4/1to4/2 4/2to3/2 3/2to2/2 2/2to1/2 1/2to0/2 0/2to0/3"/> </vehicle> - <vehicle id="233" depart="233.00"> - <route edges="1/4to2/4 2/4to2/3 2/3to2/2 2/2to2/1 2/1to3/1 3/1to4/1"/> + <vehicle id="car3" depart="3.00"> + <route edges="2/0to3/0 3/0to2/0 2/0to1/0 1/0to0/0 0/0to0/1 0/1to0/0"/> </vehicle> - <vehicle id="234" depart="234.00"> - <route edges="3/0to2/0 2/0to1/0 1/0to1/1 1/1to0/1 0/1to0/2 0/2to0/3"/> + <vehicle id="car4" depart="4.00"> + <route edges="1/1to1/0 1/0to1/1 1/1to1/2 1/2to2/2 2/2to2/3"/> </vehicle> - <vehicle id="235" depart="235.00"> - <route edges="2/2to2/1 2/1to2/2"/> + <vehicle id="car5" depart="5.00"> + <route edges="0/1to0/0 0/0to1/0 1/0to2/0"/> </vehicle> - <vehicle id="236" depart="236.00"> - <route edges="2/1to2/0 2/0to1/0 1/0to0/0 0/0to0/1"/> + <vehicle id="car6" depart="6.00"> + <route edges="3/0to4/0 4/0to3/0 3/0to2/0 2/0to2/1 2/1to2/2 2/2to2/3 2/3to2/2"/> </vehicle> - <vehicle id="237" depart="237.00"> - <route edges="1/0to2/0 2/0to1/0 1/0to1/1 1/1to0/1 0/1to1/1"/> - </vehicle> - <vehicle id="238" depart="238.00"> - <route edges="4/0to4/1 4/1to3/1 3/1to2/1 2/1to1/1 1/1to0/1 0/1to0/2 0/2to1/2"/> - </vehicle> - <vehicle id="239" depart="239.00"> - <route edges="4/1to3/1 3/1to2/1 2/1to2/2 2/2to2/3 2/3to2/4 2/4to3/4"/> - </vehicle> - <vehicle id="240" depart="240.00"> - <route edges="4/3to4/4 4/4to4/3 4/3to4/2"/> - </vehicle> - <vehicle id="241" depart="241.00"> - <route edges="0/2to1/2 1/2to1/1 1/1to1/0 1/0to2/0 2/0to3/0 3/0to4/0"/> - </vehicle> - <vehicle id="242" depart="242.00"> - <route edges="2/2to2/3 2/3to1/3"/> - </vehicle> - <vehicle id="243" depart="243.00"> - <route edges="0/3to1/3 1/3to0/3 0/3to0/4 0/4to0/3"/> - </vehicle> - <vehicle id="244" depart="244.00"> - <route edges="1/2to1/3 1/3to1/2 1/2to1/1 1/1to2/1 2/1to3/1 3/1to4/1 4/1to3/1"/> - </vehicle> - <vehicle id="245" depart="245.00"> - <route edges="1/4to0/4 0/4to0/3 0/3to0/2 0/2to0/1 0/1to1/1 1/1to2/1 2/1to2/2"/> - </vehicle> - <vehicle id="246" depart="246.00"> - <route edges="2/3to2/2"/> - </vehicle> - <vehicle id="247" depart="247.00"> - <route edges="0/3to0/2 0/2to0/3 0/3to0/4 0/4to1/4"/> - </vehicle> - <vehicle id="248" depart="248.00"> - <route edges="2/2to3/2 3/2to2/2 2/2to1/2 1/2to1/3"/> - </vehicle> - <vehicle id="249" depart="249.00"> - <route edges="2/2to2/1 2/1to1/1 1/1to0/1 0/1to0/2 0/2to1/2"/> - </vehicle> - <vehicle id="250" depart="250.00"> - <route edges="0/4to1/4 1/4to1/3 1/3to1/2 1/2to1/1 1/1to1/0 1/0to2/0 2/0to3/0 3/0to4/0"/> - </vehicle> - <vehicle id="251" depart="251.00"> - <route edges="2/2to1/2 1/2to2/2 2/2to3/2 3/2to3/1"/> - </vehicle> - <vehicle id="252" depart="252.00"> - <route edges="3/0to3/1 3/1to2/1 2/1to1/1 1/1to0/1 0/1to0/2 0/2to0/3"/> - </vehicle> - <vehicle id="253" depart="253.00"> - <route edges="3/2to4/2 4/2to3/2 3/2to2/2 2/2to2/3 2/3to2/4 2/4to1/4"/> - </vehicle> - <vehicle id="254" depart="254.00"> - <route edges="0/1to0/0 0/0to0/1 0/1to0/2 0/2to1/2 1/2to2/2 2/2to3/2 3/2to2/2"/> - </vehicle> - <vehicle id="255" depart="255.00"> - <route edges="1/3to0/3"/> - </vehicle> - <vehicle id="256" depart="256.00"> - <route edges="4/0to3/0 3/0to2/0 2/0to1/0"/> - </vehicle> - <vehicle id="257" depart="257.00"> - <route edges="2/0to3/0 3/0to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to1/3"/> - </vehicle> - <vehicle id="258" depart="258.00"> - <route edges="1/4to0/4 0/4to0/3 0/3to1/3 1/3to2/3 2/3to3/3 3/3to4/3 4/3to4/4"/> - </vehicle> - <vehicle id="259" depart="259.00"> - <route edges="1/1to1/2 1/2to1/1 1/1to2/1 2/1to2/0"/> - </vehicle> - <vehicle id="260" depart="260.00"> - <route edges="2/3to3/3 3/3to2/3 2/3to1/3 1/3to1/2 1/2to1/1 1/1to2/1"/> - </vehicle> - <vehicle id="261" depart="261.00"> - <route edges="1/3to0/3 0/3to0/2 0/2to0/1 0/1to1/1 1/1to2/1 2/1to2/0"/> - </vehicle> - <vehicle id="262" depart="262.00"> - <route edges="3/4to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to4/0 4/0to3/0"/> - </vehicle> - <vehicle id="263" depart="263.00"> - <route edges="3/3to2/3 2/3to2/2 2/2to2/1 2/1to2/0 2/0to3/0 3/0to3/1"/> - </vehicle> - <vehicle id="264" depart="264.00"> - <route edges="3/4to4/4 4/4to4/3 4/3to4/2 4/2to4/3"/> - </vehicle> - <vehicle id="265" depart="265.00"> - <route edges="2/1to2/2 2/2to1/2 1/2to0/2 0/2to0/1 0/1to0/0 0/0to0/1"/> - </vehicle> - <vehicle id="266" depart="266.00"> - <route edges="3/2to3/3 3/3to2/3 2/3to2/4 2/4to2/3"/> - </vehicle> - <vehicle id="267" depart="267.00"> - <route edges="4/2to4/3 4/3to3/3 3/3to2/3 2/3to1/3 1/3to0/3 0/3to0/2 0/2to0/3"/> - </vehicle> - <vehicle id="268" depart="268.00"> - <route edges="2/4to2/3 2/3to2/4 2/4to3/4 3/4to4/4"/> - </vehicle> - <vehicle id="269" depart="269.00"> - <route edges="4/2to3/2 3/2to3/3 3/3to4/3 4/3to4/4"/> - </vehicle> - <vehicle id="270" depart="270.00"> - <route edges="1/2to1/1 1/1to1/2 1/2to2/2 2/2to3/2 3/2to4/2 4/2to4/1"/> - </vehicle> - <vehicle id="271" depart="271.00"> - <route edges="0/2to0/3 0/3to0/2 0/2to1/2 1/2to2/2 2/2to3/2"/> - </vehicle> - <vehicle id="272" depart="272.00"> - <route edges="2/0to2/1 2/1to2/2 2/2to2/3 2/3to2/4 2/4to3/4 3/4to4/4"/> - </vehicle> - <vehicle id="273" depart="273.00"> - <route edges="1/1to0/1 0/1to0/2 0/2to0/3 0/3to1/3 1/3to2/3 2/3to3/3 3/3to4/3 4/3to4/4"/> - </vehicle> - <vehicle id="274" depart="274.00"> - <route edges="0/2to0/3 0/3to0/2 0/2to0/1 0/1to1/1 1/1to1/0"/> - </vehicle> - <vehicle id="275" depart="275.00"> - <route edges="1/2to1/3 1/3to1/2 1/2to1/1 1/1to2/1 2/1to3/1 3/1to4/1 4/1to4/2"/> - </vehicle> - <vehicle id="276" depart="276.00"> - <route edges="0/1to0/2 0/2to1/2 1/2to2/2 2/2to3/2 3/2to4/2 4/2to4/1"/> - </vehicle> - <vehicle id="277" depart="277.00"> - <route edges="3/2to3/3 3/3to2/3 2/3to1/3 1/3to0/3 0/3to0/2 0/2to0/1 0/1to0/2"/> - </vehicle> - <vehicle id="278" depart="278.00"> - <route edges="4/1to4/0 4/0to3/0 3/0to2/0 2/0to2/1 2/1to2/0"/> - </vehicle> - <vehicle id="279" depart="279.00"> - <route edges="1/4to2/4 2/4to2/3 2/3to2/2 2/2to3/2 3/2to3/3"/> - </vehicle> - <vehicle id="280" depart="280.00"> - <route edges="0/4to0/3 0/3to0/2 0/2to0/1 0/1to0/0 0/0to0/1"/> - </vehicle> - <vehicle id="281" depart="281.00"> - <route edges="4/1to4/2 4/2to3/2 3/2to2/2 2/2to1/2 1/2to1/3"/> - </vehicle> - <vehicle id="282" depart="282.00"> - <route edges="2/0to2/1 2/1to1/1 1/1to1/2 1/2to1/3 1/3to1/4"/> - </vehicle> - <vehicle id="283" depart="283.00"> - <route edges="2/2to3/2 3/2to3/1 3/1to3/0 3/0to3/1"/> - </vehicle> - <vehicle id="284" depart="284.00"> - <route edges="1/2to2/2 2/2to2/1 2/1to2/0 2/0to3/0"/> - </vehicle> - <vehicle id="285" depart="285.00"> - <route edges="0/1to0/0 0/0to0/1 0/1to0/2 0/2to0/3 0/3to1/3 1/3to2/3 2/3to3/3 3/3to3/4"/> - </vehicle> - <vehicle id="286" depart="286.00"> - <route edges="1/1to0/1 0/1to0/2 0/2to0/3 0/3to0/4 0/4to0/3"/> - </vehicle> - <vehicle id="287" depart="287.00"> - <route edges="0/2to0/3 0/3to0/2 0/2to0/1 0/1to1/1 1/1to1/0 1/0to2/0 2/0to3/0"/> - </vehicle> - <vehicle id="288" depart="288.00"> - <route edges="2/3to1/3 1/3to0/3 0/3to0/2 0/2to0/1 0/1to0/0 0/0to0/1"/> - </vehicle> - <vehicle id="289" depart="289.00"> - <route edges="1/3to1/2 1/2to1/1 1/1to1/0 1/0to2/0 2/0to2/1"/> - </vehicle> - <vehicle id="290" depart="290.00"> - <route edges="0/1to0/2 0/2to1/2 1/2to2/2 2/2to3/2 3/2to2/2"/> - </vehicle> - <vehicle id="291" depart="291.00"> - <route edges="1/0to2/0 2/0to2/1 2/1to2/2 2/2to2/3 2/3to1/3"/> - </vehicle> - <vehicle id="292" depart="292.00"> - <route edges="1/4to1/3 1/3to0/3"/> - </vehicle> - <vehicle id="293" depart="293.00"> - <route edges="4/4to3/4 3/4to3/3 3/3to4/3 4/3to4/2"/> - </vehicle> - <vehicle id="294" depart="294.00"> - <route edges="1/3to2/3 2/3to1/3 1/3to1/4 1/4to1/3"/> - </vehicle> - <vehicle id="295" depart="295.00"> - <route edges="0/2to1/2 1/2to1/3 1/3to2/3 2/3to3/3"/> - </vehicle> - <vehicle id="296" depart="296.00"> - <route edges="0/2to0/3 0/3to0/2 0/2to1/2 1/2to2/2 2/2to3/2 3/2to3/3"/> - </vehicle> - <vehicle id="297" depart="297.00"> - <route edges="4/4to3/4 3/4to3/3 3/3to2/3"/> - </vehicle> - <vehicle id="298" depart="298.00"> - <route edges="2/1to2/2 2/2to2/3 2/3to2/4"/> - </vehicle> - <vehicle id="299" depart="299.00"> - <route edges="4/1to4/2 4/2to3/2 3/2to2/2 2/2to1/2 1/2to1/1 1/1to1/2"/> - </vehicle> - <vehicle id="300" depart="300.00"> - <route edges="3/3to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to4/0"/> - </vehicle> - <vehicle id="301" depart="301.00"> - <route edges="0/3to0/2 0/2to1/2"/> - </vehicle> - <vehicle id="302" depart="302.00"> - <route edges="1/0to0/0 0/0to0/1 0/1to1/1 1/1to2/1 2/1to3/1 3/1to3/0"/> - </vehicle> - <vehicle id="303" depart="303.00"> - <route edges="0/4to0/3 0/3to0/2 0/2to1/2 1/2to2/2 2/2to3/2 3/2to4/2"/> - </vehicle> - <vehicle id="304" depart="304.00"> - <route edges="0/1to1/1 1/1to0/1 0/1to0/2 0/2to0/3 0/3to0/4 0/4to0/3"/> - </vehicle> - <vehicle id="305" depart="305.00"> - <route edges="3/0to3/1 3/1to2/1 2/1to1/1 1/1to1/2 1/2to1/3 1/3to2/3"/> - </vehicle> - <vehicle id="306" depart="306.00"> - <route edges="2/2to3/2 3/2to3/1 3/1to4/1 4/1to4/0"/> - </vehicle> - <vehicle id="307" depart="307.00"> - <route edges="2/0to3/0 3/0to2/0 2/0to2/1 2/1to2/2 2/2to2/3 2/3to1/3"/> - </vehicle> - <vehicle id="308" depart="308.00"> - <route edges="4/3to4/4 4/4to3/4 3/4to2/4 2/4to1/4 1/4to1/3 1/3to0/3 0/3to0/2 0/2to0/1 0/1to0/0"/> - </vehicle> - <vehicle id="309" depart="309.00"> - <route edges="3/2to3/1 3/1to2/1 2/1to1/1 1/1to2/1"/> - </vehicle> - <vehicle id="310" depart="310.00"> - <route edges="4/0to4/1 4/1to3/1 3/1to2/1 2/1to1/1 1/1to1/2"/> - </vehicle> - <vehicle id="311" depart="311.00"> - <route edges="2/3to1/3 1/3to1/2 1/2to1/1 1/1to1/0 1/0to1/1"/> - </vehicle> - <vehicle id="312" depart="312.00"> - <route edges="0/4to1/4 1/4to1/3 1/3to0/3 0/3to0/2 0/2to0/3"/> - </vehicle> - <vehicle id="313" depart="313.00"> - <route edges="4/4to3/4 3/4to2/4 2/4to1/4 1/4to1/3 1/3to0/3 0/3to0/2"/> - </vehicle> - <vehicle id="314" depart="314.00"> - <route edges="2/0to2/1 2/1to2/2 2/2to3/2 3/2to4/2 4/2to3/2"/> - </vehicle> - <vehicle id="315" depart="315.00"> - <route edges="2/2to2/3 2/3to1/3 1/3to0/3 0/3to0/2 0/2to0/1 0/1to0/2"/> - </vehicle> - <vehicle id="316" depart="316.00"> - <route edges="2/2to2/1 2/1to2/0 2/0to3/0 3/0to2/0"/> - </vehicle> - <vehicle id="317" depart="317.00"> - <route edges="4/1to3/1 3/1to3/2 3/2to4/2"/> - </vehicle> - <vehicle id="318" depart="318.00"> - <route edges="3/3to3/4 3/4to3/3 3/3to4/3 4/3to3/3"/> - </vehicle> - <vehicle id="319" depart="319.00"> - <route edges="4/4to4/3 4/3to3/3 3/3to3/2"/> - </vehicle> - <vehicle id="320" depart="320.00"> - <route edges="3/2to3/1 3/1to2/1 2/1to2/2 2/2to2/3 2/3to2/2"/> - </vehicle> - <vehicle id="321" depart="321.00"> - <route edges="2/3to3/3 3/3to3/2"/> - </vehicle> - <vehicle id="322" depart="322.00"> - <route edges="3/2to4/2 4/2to4/3"/> - </vehicle> - <vehicle id="323" depart="323.00"> - <route edges="3/3to2/3 2/3to1/3 1/3to0/3 0/3to0/4 0/4to0/3"/> - </vehicle> - <vehicle id="324" depart="324.00"> - <route edges="2/4to1/4 1/4to1/3 1/3to1/4"/> - </vehicle> - <vehicle id="325" depart="325.00"> - <route edges="2/1to3/1 3/1to2/1 2/1to2/2 2/2to2/1"/> - </vehicle> - <vehicle id="326" depart="326.00"> - <route edges="1/1to1/0 1/0to1/1 1/1to2/1 2/1to3/1 3/1to3/2"/> - </vehicle> - <vehicle id="327" depart="327.00"> - <route edges="4/2to4/1 4/1to3/1 3/1to3/0 3/0to2/0"/> - </vehicle> - <vehicle id="328" depart="328.00"> - <route edges="0/1to1/1 1/1to1/2 1/2to1/3 1/3to2/3 2/3to2/4"/> - </vehicle> - <vehicle id="329" depart="329.00"> - <route edges="4/3to4/2 4/2to3/2 3/2to2/2 2/2to1/2 1/2to1/1 1/1to1/0 1/0to2/0"/> - </vehicle> - <vehicle id="330" depart="330.00"> - <route edges="2/2to2/1 2/1to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to0/4"/> - </vehicle> - <vehicle id="331" depart="331.00"> - <route edges="0/2to0/1 0/1to0/2 0/2to0/3 0/3to1/3 1/3to1/4 1/4to1/3"/> - </vehicle> - <vehicle id="332" depart="332.00"> - <route edges="0/2to1/2 1/2to1/1 1/1to0/1"/> - </vehicle> - <vehicle id="333" depart="333.00"> - <route edges="3/3to2/3 2/3to2/2 2/2to2/1 2/1to3/1 3/1to4/1 4/1to4/2"/> - </vehicle> - <vehicle id="334" depart="334.00"> - <route edges="2/2to2/1 2/1to2/2 2/2to3/2 3/2to3/3"/> - </vehicle> - <vehicle id="335" depart="335.00"> - <route edges="2/0to1/0 1/0to2/0 2/0to3/0 3/0to3/1"/> - </vehicle> - <vehicle id="336" depart="336.00"> - <route edges="0/4to1/4 1/4to2/4 2/4to3/4 3/4to4/4"/> - </vehicle> - <vehicle id="337" depart="337.00"> - <route edges="2/2to2/3 2/3to1/3 1/3to0/3 0/3to0/4"/> - </vehicle> - <vehicle id="338" depart="338.00"> - <route edges="3/4to3/3 3/3to2/3 2/3to1/3 1/3to1/2 1/2to1/1"/> - </vehicle> - <vehicle id="339" depart="339.00"> - <route edges="0/1to0/2 0/2to0/1 0/1to0/0 0/0to1/0"/> - </vehicle> - <vehicle id="340" depart="340.00"> - <route edges="1/1to2/1 2/1to1/1 1/1to0/1 0/1to0/2 0/2to1/2"/> - </vehicle> - <vehicle id="341" depart="341.00"> - <route edges="2/0to1/0 1/0to1/1 1/1to0/1 0/1to0/2 0/2to0/3"/> - </vehicle> - <vehicle id="342" depart="342.00"> - <route edges="2/1to2/2 2/2to1/2 1/2to1/1 1/1to1/0 1/0to1/1"/> - </vehicle> - <vehicle id="343" depart="343.00"> - <route edges="2/3to3/3 3/3to3/2 3/2to3/1 3/1to3/2"/> - </vehicle> - <vehicle id="344" depart="344.00"> - <route edges="3/1to4/1 4/1to4/2 4/2to4/3 4/3to4/4 4/4to3/4"/> - </vehicle> - <vehicle id="345" depart="345.00"> - <route edges="3/0to4/0 4/0to3/0 3/0to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to0/2"/> - </vehicle> - <vehicle id="346" depart="346.00"> - <route edges="1/4to1/3 1/3to1/4 1/4to2/4 2/4to2/3"/> - </vehicle> - <vehicle id="347" depart="347.00"> - <route edges="3/2to4/2 4/2to3/2 3/2to2/2 2/2to1/2 1/2to0/2 0/2to0/3 0/3to0/4 0/4to0/3"/> - </vehicle> - <vehicle id="348" depart="348.00"> - <route edges="3/2to3/3 3/3to3/2 3/2to3/1 3/1to4/1 4/1to4/2"/> - </vehicle> - <vehicle id="349" depart="349.00"> - <route edges="2/1to3/1 3/1to3/2 3/2to4/2 4/2to4/1"/> - </vehicle> - <vehicle id="350" depart="350.00"> - <route edges="1/1to2/1 2/1to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to0/4"/> - </vehicle> - <vehicle id="351" depart="351.00"> - <route edges="1/2to0/2 0/2to1/2 1/2to2/2 2/2to1/2"/> - </vehicle> - <vehicle id="352" depart="352.00"> - <route edges="2/3to2/2 2/2to2/3 2/3to2/4 2/4to2/3"/> - </vehicle> - <vehicle id="353" depart="353.00"> - <route edges="0/2to0/3 0/3to1/3 1/3to2/3 2/3to1/3"/> - </vehicle> - <vehicle id="354" depart="354.00"> - <route edges="2/1to2/0 2/0to2/1 2/1to2/2 2/2to2/3 2/3to2/4 2/4to3/4 3/4to4/4 4/4to4/3"/> - </vehicle> - <vehicle id="355" depart="355.00"> - <route edges="0/1to1/1 1/1to2/1 2/1to2/0"/> - </vehicle> - <vehicle id="356" depart="356.00"> - <route edges="3/0to4/0 4/0to3/0 3/0to3/1 3/1to3/2 3/2to3/3 3/3to2/3"/> - </vehicle> - <vehicle id="357" depart="357.00"> - <route edges="4/2to3/2 3/2to2/2 2/2to2/3 2/3to2/4 2/4to3/4"/> - </vehicle> - <vehicle id="358" depart="358.00"> - <route edges="3/3to2/3 2/3to1/3 1/3to0/3 0/3to0/2 0/2to0/1 0/1to0/2"/> - </vehicle> - <vehicle id="359" depart="359.00"> - <route edges="3/4to4/4 4/4to3/4 3/4to2/4 2/4to1/4 1/4to1/3 1/3to1/2 1/2to1/1 1/1to1/0 1/0to1/1"/> - </vehicle> - <vehicle id="360" depart="360.00"> - <route edges="0/3to0/4 0/4to0/3 0/3to1/3"/> - </vehicle> - <vehicle id="361" depart="361.00"> - <route edges="3/1to3/2 3/2to2/2 2/2to1/2 1/2to0/2 0/2to0/3 0/3to0/2"/> - </vehicle> - <vehicle id="362" depart="362.00"> - <route edges="2/3to3/3 3/3to2/3 2/3to2/2 2/2to3/2"/> - </vehicle> - <vehicle id="363" depart="363.00"> - <route edges="4/0to4/1 4/1to3/1 3/1to2/1 2/1to3/1"/> - </vehicle> - <vehicle id="364" depart="364.00"> - <route edges="4/3to3/3 3/3to3/2 3/2to2/2"/> - </vehicle> - <vehicle id="365" depart="365.00"> - <route edges="3/1to3/0 3/0to2/0 2/0to2/1 2/1to2/2 2/2to1/2"/> - </vehicle> - <vehicle id="366" depart="366.00"> - <route edges="0/2to0/3 0/3to0/2 0/2to0/1 0/1to1/1 1/1to2/1 2/1to2/0"/> - </vehicle> - <vehicle id="367" depart="367.00"> - <route edges="0/0to1/0 1/0to1/1 1/1to1/2 1/2to2/2 2/2to3/2 3/2to4/2 4/2to4/3"/> - </vehicle> - <vehicle id="368" depart="368.00"> - <route edges="0/1to0/0 0/0to0/1 0/1to0/2 0/2to0/3 0/3to1/3 1/3to2/3 2/3to2/2"/> - </vehicle> - <vehicle id="369" depart="369.00"> - <route edges="1/0to2/0 2/0to1/0 1/0to1/1 1/1to0/1 0/1to0/0"/> - </vehicle> - <vehicle id="370" depart="370.00"> - <route edges="4/0to4/1 4/1to3/1 3/1to2/1 2/1to1/1 1/1to1/2 1/2to1/3 1/3to0/3"/> - </vehicle> - <vehicle id="371" depart="371.00"> - <route edges="1/3to1/2 1/2to1/1 1/1to2/1"/> - </vehicle> - <vehicle id="372" depart="372.00"> - <route edges="3/4to3/3 3/3to2/3 2/3to1/3 1/3to1/2 1/2to1/1 1/1to1/0 1/0to2/0"/> - </vehicle> - <vehicle id="373" depart="373.00"> - <route edges="0/1to0/0 0/0to0/1 0/1to1/1 1/1to2/1 2/1to2/2"/> - </vehicle> - <vehicle id="374" depart="374.00"> - <route edges="1/4to1/3 1/3to1/2 1/2to1/1 1/1to1/0 1/0to2/0 2/0to3/0"/> - </vehicle> - <vehicle id="375" depart="375.00"> - <route edges="4/1to4/2 4/2to3/2 3/2to2/2 2/2to3/2"/> - </vehicle> - <vehicle id="376" depart="376.00"> - <route edges="3/2to2/2 2/2to1/2 1/2to1/1 1/1to2/1"/> - </vehicle> - <vehicle id="377" depart="377.00"> - <route edges="0/2to0/3 0/3to1/3 1/3to1/2"/> - </vehicle> - <vehicle id="378" depart="378.00"> - <route edges="3/3to3/4 3/4to2/4 2/4to3/4"/> - </vehicle> - <vehicle id="379" depart="379.00"> - <route edges="3/3to3/4 3/4to3/3 3/3to3/2 3/2to4/2 4/2to4/1"/> - </vehicle> - <vehicle id="380" depart="380.00"> - <route edges="2/0to3/0 3/0to3/1 3/1to4/1 4/1to4/0"/> - </vehicle> - <vehicle id="381" depart="381.00"> - <route edges="0/2to1/2 1/2to1/3 1/3to1/4 1/4to2/4 2/4to3/4 3/4to3/3"/> - </vehicle> - <vehicle id="382" depart="382.00"> - <route edges="0/2to1/2 1/2to0/2 0/2to0/3 0/3to0/2"/> - </vehicle> - <vehicle id="383" depart="383.00"> - <route edges="3/2to3/3 3/3to2/3 2/3to2/2 2/2to3/2"/> - </vehicle> - <vehicle id="384" depart="384.00"> - <route edges="1/4to2/4 2/4to1/4 1/4to0/4 0/4to1/4"/> - </vehicle> - <vehicle id="385" depart="385.00"> - <route edges="0/2to1/2 1/2to2/2 2/2to2/3"/> - </vehicle> - <vehicle id="386" depart="386.00"> - <route edges="1/1to2/1 2/1to2/2 2/2to2/3 2/3to3/3 3/3to2/3"/> - </vehicle> - <vehicle id="387" depart="387.00"> - <route edges="2/3to2/4 2/4to1/4 1/4to1/3 1/3to0/3 0/3to0/2 0/2to0/1 0/1to0/2"/> - </vehicle> - <vehicle id="388" depart="388.00"> - <route edges="4/2to4/1 4/1to3/1 3/1to2/1 2/1to1/1 1/1to0/1 0/1to0/2 0/2to0/3 0/3to0/4 0/4to0/3"/> - </vehicle> - <vehicle id="389" depart="389.00"> - <route edges="1/3to2/3 2/3to2/2 2/2to2/1 2/1to3/1 3/1to3/0"/> - </vehicle> - <vehicle id="390" depart="390.00"> - <route edges="0/3to0/2 0/2to0/1 0/1to1/1 1/1to2/1 2/1to3/1 3/1to4/1"/> - </vehicle> - <vehicle id="391" depart="391.00"> - <route edges="0/2to1/2 1/2to1/1 1/1to2/1"/> - </vehicle> - <vehicle id="392" depart="392.00"> - <route edges="1/1to1/2 1/2to1/1 1/1to2/1 2/1to3/1 3/1to2/1"/> - </vehicle> - <vehicle id="393" depart="393.00"> - <route edges="2/4to3/4 3/4to2/4 2/4to1/4 1/4to1/3 1/3to0/3 0/3to0/2 0/2to0/1 0/1to0/0 0/0to0/1"/> - </vehicle> - <vehicle id="394" depart="394.00"> - <route edges="2/2to2/1 2/1to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to2/4"/> - </vehicle> - <vehicle id="395" depart="395.00"> - <route edges="2/1to3/1 3/1to3/2 3/2to4/2 4/2to4/1"/> - </vehicle> - <vehicle id="396" depart="396.00"> - <route edges="1/3to2/3 2/3to3/3 3/3to4/3 4/3to4/2"/> - </vehicle> - <vehicle id="397" depart="397.00"> - <route edges="1/4to2/4 2/4to2/3 2/3to2/2 2/2to1/2"/> - </vehicle> - <vehicle id="398" depart="398.00"> - <route edges="4/2to4/3 4/3to3/3 3/3to2/3 2/3to1/3 1/3to0/3 0/3to0/4 0/4to0/3"/> - </vehicle> - <vehicle id="399" depart="399.00"> - <route edges="2/3to1/3 1/3to1/2 1/2to1/1 1/1to1/0 1/0to2/0 2/0to3/0 3/0to4/0 4/0to3/0"/> - </vehicle> - <vehicle id="400" depart="400.00"> - <route edges="3/2to2/2"/> - </vehicle> - <vehicle id="401" depart="401.00"> - <route edges="3/0to4/0 4/0to4/1"/> - </vehicle> - <vehicle id="402" depart="402.00"> - <route edges="1/4to2/4 2/4to2/3 2/3to2/2 2/2to2/1 2/1to3/1 3/1to4/1"/> - </vehicle> - <vehicle id="403" depart="403.00"> - <route edges="2/3to2/4 2/4to3/4 3/4to4/4 4/4to3/4"/> - </vehicle> - <vehicle id="404" depart="404.00"> - <route edges="3/2to3/3 3/3to2/3 2/3to2/2 2/2to2/3"/> - </vehicle> - <vehicle id="405" depart="405.00"> - <route edges="3/3to2/3 2/3to2/2 2/2to2/3"/> - </vehicle> - <vehicle id="406" depart="406.00"> - <route edges="3/3to4/3 4/3to3/3 3/3to2/3 2/3to1/3 1/3to0/3 0/3to0/4 0/4to1/4"/> - </vehicle> - <vehicle id="407" depart="407.00"> - <route edges="2/1to2/2 2/2to3/2 3/2to3/1"/> - </vehicle> - <vehicle id="408" depart="408.00"> - <route edges="2/4to1/4 1/4to1/3 1/3to2/3 2/3to2/4"/> - </vehicle> - <vehicle id="409" depart="409.00"> - <route edges="4/1to4/2 4/2to3/2 3/2to2/2 2/2to1/2 1/2to1/1 1/1to1/0 1/0to1/1"/> - </vehicle> - <vehicle id="410" depart="410.00"> - <route edges="2/0to3/0 3/0to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/1"/> - </vehicle> - <vehicle id="411" depart="411.00"> - <route edges="3/1to2/1 2/1to2/2 2/2to3/2 3/2to4/2 4/2to4/1"/> - </vehicle> - <vehicle id="412" depart="412.00"> - <route edges="4/3to3/3 3/3to3/4"/> - </vehicle> - <vehicle id="413" depart="413.00"> - <route edges="3/2to2/2 2/2to1/2 1/2to0/2 0/2to0/1 0/1to0/0 0/0to0/1"/> - </vehicle> - <vehicle id="414" depart="414.00"> - <route edges="2/1to2/2 2/2to2/3 2/3to3/3 3/3to4/3 4/3to4/2"/> - </vehicle> - <vehicle id="415" depart="415.00"> - <route edges="1/1to2/1 2/1to3/1"/> - </vehicle> - <vehicle id="416" depart="416.00"> - <route edges="0/0to0/1 0/1to0/2 0/2to0/3 0/3to1/3 1/3to1/4 1/4to2/4 2/4to3/4"/> - </vehicle> - <vehicle id="417" depart="417.00"> - <route edges="2/1to1/1 1/1to2/1 2/1to3/1 3/1to4/1"/> - </vehicle> - <vehicle id="418" depart="418.00"> - <route edges="4/3to4/4 4/4to3/4 3/4to3/3 3/3to3/2 3/2to4/2"/> - </vehicle> - <vehicle id="419" depart="419.00"> - <route edges="3/3to2/3 2/3to1/3 1/3to1/2 1/2to1/1 1/1to1/0"/> - </vehicle> - <vehicle id="420" depart="420.00"> - <route edges="2/1to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to0/4"/> - </vehicle> - <vehicle id="421" depart="421.00"> - <route edges="3/1to4/1 4/1to3/1 3/1to3/2 3/2to3/3 3/3to4/3"/> - </vehicle> - <vehicle id="422" depart="422.00"> - <route edges="0/3to0/2 0/2to0/3 0/3to1/3 1/3to2/3 2/3to2/2"/> - </vehicle> - <vehicle id="423" depart="423.00"> - <route edges="0/3to0/4 0/4to1/4 1/4to2/4 2/4to1/4"/> - </vehicle> - <vehicle id="424" depart="424.00"> - <route edges="2/4to1/4 1/4to2/4 2/4to3/4 3/4to4/4"/> - </vehicle> - <vehicle id="425" depart="425.00"> - <route edges="1/1to2/1 2/1to1/1 1/1to1/2 1/2to1/1"/> - </vehicle> - <vehicle id="426" depart="426.00"> - <route edges="0/0to0/1 0/1to0/2 0/2to0/3 0/3to1/3 1/3to2/3 2/3to2/4"/> - </vehicle> - <vehicle id="427" depart="427.00"> - <route edges="1/2to0/2 0/2to0/3 0/3to1/3 1/3to2/3 2/3to3/3 3/3to3/4"/> - </vehicle> - <vehicle id="428" depart="428.00"> - <route edges="1/4to0/4 0/4to0/3 0/3to0/2 0/2to0/1 0/1to1/1 1/1to1/0 1/0to2/0 2/0to3/0 3/0to4/0 4/0to4/1"/> - </vehicle> - <vehicle id="429" depart="429.00"> - <route edges="3/2to3/3 3/3to2/3 2/3to1/3 1/3to0/3 0/3to0/2"/> - </vehicle> - <vehicle id="430" depart="430.00"> - <route edges="2/2to3/2 3/2to2/2 2/2to1/2 1/2to0/2 0/2to0/1 0/1to1/1"/> - </vehicle> - <vehicle id="431" depart="431.00"> - <route edges="1/3to1/2 1/2to1/1 1/1to1/0 1/0to2/0 2/0to3/0"/> - </vehicle> - <vehicle id="432" depart="432.00"> - <route edges="4/2to4/1 4/1to3/1 3/1to2/1 2/1to1/1 1/1to1/2 1/2to1/3 1/3to1/2"/> - </vehicle> - <vehicle id="433" depart="433.00"> - <route edges="3/1to3/2 3/2to2/2 2/2to1/2 1/2to0/2 0/2to0/3 0/3to1/3"/> - </vehicle> - <vehicle id="434" depart="434.00"> - <route edges="0/1to1/1 1/1to2/1 2/1to2/2"/> - </vehicle> - <vehicle id="435" depart="435.00"> - <route edges="3/3to2/3 2/3to2/2 2/2to3/2 3/2to3/1"/> - </vehicle> - <vehicle id="436" depart="436.00"> - <route edges="3/0to4/0 4/0to3/0 3/0to2/0 2/0to1/0"/> - </vehicle> - <vehicle id="437" depart="437.00"> - <route edges="2/4to2/3 2/3to1/3 1/3to0/3 0/3to0/4 0/4to1/4"/> - </vehicle> - <vehicle id="438" depart="438.00"> - <route edges="2/2to3/2 3/2to2/2 2/2to1/2 1/2to0/2 0/2to0/3 0/3to0/4 0/4to0/3"/> - </vehicle> - <vehicle id="439" depart="439.00"> - <route edges="0/3to1/3"/> - </vehicle> - <vehicle id="440" depart="440.00"> - <route edges="1/3to1/4 1/4to1/3 1/3to0/3 0/3to0/2 0/2to0/1 0/1to0/0 0/0to1/0"/> - </vehicle> - <vehicle id="441" depart="441.00"> - <route edges="2/4to2/3 2/3to1/3 1/3to1/4"/> - </vehicle> - <vehicle id="442" depart="442.00"> - <route edges="3/2to3/3 3/3to2/3 2/3to2/2 2/2to2/1 2/1to2/2"/> - </vehicle> - <vehicle id="443" depart="443.00"> - <route edges="2/0to2/1 2/1to2/2"/> - </vehicle> - <vehicle id="444" depart="444.00"> - <route edges="2/0to3/0 3/0to3/1 3/1to3/2 3/2to3/3 3/3to4/3 4/3to3/3"/> - </vehicle> - <vehicle id="445" depart="445.00"> - <route edges="0/0to0/1 0/1to0/2 0/2to0/3 0/3to1/3 1/3to2/3 2/3to3/3 3/3to4/3 4/3to3/3"/> - </vehicle> - <vehicle id="446" depart="446.00"> - <route edges="1/4to0/4 0/4to0/3 0/3to0/2 0/2to0/1 0/1to1/1 1/1to2/1 2/1to2/0"/> - </vehicle> - <vehicle id="447" depart="447.00"> - <route edges="1/0to0/0 0/0to0/1 0/1to0/2 0/2to0/3 0/3to1/3 1/3to2/3 2/3to3/3 3/3to2/3"/> - </vehicle> - <vehicle id="448" depart="448.00"> - <route edges="0/1to1/1 1/1to0/1 0/1to0/0 0/0to0/1"/> - </vehicle> - <vehicle id="449" depart="449.00"> - <route edges="1/3to2/3 2/3to1/3 1/3to1/4 1/4to0/4"/> - </vehicle> - <vehicle id="450" depart="450.00"> - <route edges="2/3to2/2 2/2to1/2 1/2to1/3 1/3to1/4 1/4to0/4"/> - </vehicle> - <vehicle id="451" depart="451.00"> - <route edges="4/3to3/3 3/3to2/3 2/3to1/3 1/3to1/2 1/2to1/1 1/1to2/1"/> - </vehicle> - <vehicle id="452" depart="452.00"> - <route edges="2/3to2/4 2/4to1/4 1/4to1/3 1/3to0/3 0/3to0/2 0/2to0/1 0/1to0/0 0/0to1/0"/> - </vehicle> - <vehicle id="453" depart="453.00"> - <route edges="4/2to3/2 3/2to2/2 2/2to1/2 1/2to1/1 1/1to0/1"/> - </vehicle> - <vehicle id="454" depart="454.00"> - <route edges="2/4to3/4 3/4to2/4 2/4to2/3 2/3to2/2 2/2to2/1 2/1to2/0 2/0to3/0"/> - </vehicle> - <vehicle id="455" depart="455.00"> - <route edges="0/2to0/1 0/1to0/2 0/2to0/3 0/3to1/3 1/3to1/4 1/4to2/4 2/4to3/4"/> - </vehicle> - <vehicle id="456" depart="456.00"> - <route edges="3/2to3/3 3/3to2/3 2/3to1/3 1/3to1/2 1/2to1/1"/> - </vehicle> - <vehicle id="457" depart="457.00"> - <route edges="3/2to3/3 3/3to2/3 2/3to1/3 1/3to0/3 0/3to0/2 0/2to0/3"/> - </vehicle> - <vehicle id="458" depart="458.00"> - <route edges="0/1to1/1 1/1to1/0 1/0to2/0 2/0to3/0 3/0to3/1"/> - </vehicle> - <vehicle id="459" depart="459.00"> - <route edges="0/2to0/3 0/3to1/3 1/3to2/3 2/3to3/3 3/3to3/4"/> - </vehicle> - <vehicle id="460" depart="460.00"> - <route edges="0/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to0/3"/> - </vehicle> - <vehicle id="461" depart="461.00"> - <route edges="0/1to1/1 1/1to1/2 1/2to2/2 2/2to1/2"/> - </vehicle> - <vehicle id="462" depart="462.00"> - <route edges="1/2to0/2 0/2to0/1 0/1to1/1 1/1to1/2"/> - </vehicle> - <vehicle id="463" depart="463.00"> - <route edges="2/0to3/0 3/0to3/1 3/1to3/2 3/2to4/2 4/2to4/3"/> - </vehicle> - <vehicle id="464" depart="464.00"> - <route edges="3/3to3/4 3/4to2/4 2/4to1/4 1/4to1/3 1/3to0/3 0/3to0/4"/> - </vehicle> - <vehicle id="465" depart="465.00"> - <route edges="4/1to3/1 3/1to2/1 2/1to1/1 1/1to0/1 0/1to0/2 0/2to0/3"/> - </vehicle> - <vehicle id="466" depart="466.00"> - <route edges="0/4to1/4 1/4to0/4"/> - </vehicle> - <vehicle id="467" depart="467.00"> - <route edges="3/0to2/0 2/0to1/0 1/0to1/1 1/1to2/1"/> - </vehicle> - <vehicle id="468" depart="468.00"> - <route edges="0/4to1/4 1/4to1/3 1/3to2/3 2/3to1/3"/> - </vehicle> - <vehicle id="469" depart="469.00"> - <route edges="1/2to0/2 0/2to1/2 1/2to2/2 2/2to3/2 3/2to2/2"/> - </vehicle> - <vehicle id="470" depart="470.00"> - <route edges="4/2to3/2 3/2to3/1 3/1to3/0 3/0to3/1"/> - </vehicle> - <vehicle id="471" depart="471.00"> - <route edges="1/3to0/3 0/3to0/2 0/2to1/2 1/2to2/2 2/2to3/2 3/2to3/1"/> - </vehicle> - <vehicle id="472" depart="472.00"> - <route edges="0/3to0/2 0/2to0/1 0/1to1/1 1/1to2/1 2/1to3/1 3/1to3/2"/> - </vehicle> - <vehicle id="473" depart="473.00"> - <route edges="3/1to2/1 2/1to3/1 3/1to4/1 4/1to3/1"/> - </vehicle> - <vehicle id="474" depart="474.00"> - <route edges="2/3to1/3 1/3to1/2 1/2to2/2 2/2to2/1"/> - </vehicle> - <vehicle id="475" depart="475.00"> - <route edges="4/1to4/2 4/2to3/2 3/2to2/2 2/2to1/2 1/2to0/2 0/2to0/1 0/1to0/0 0/0to0/1"/> - </vehicle> - <vehicle id="476" depart="476.00"> - <route edges="1/2to1/3 1/3to1/2 1/2to2/2 2/2to2/1"/> - </vehicle> - <vehicle id="477" depart="477.00"> - <route edges="1/2to2/2 2/2to2/3 2/3to3/3 3/3to4/3"/> - </vehicle> - <vehicle id="478" depart="478.00"> - <route edges="0/2to0/1 0/1to1/1 1/1to2/1 2/1to2/0"/> - </vehicle> - <vehicle id="479" depart="479.00"> - <route edges="0/0to0/1 0/1to0/2 0/2to0/3 0/3to1/3 1/3to2/3 2/3to3/3 3/3to3/2"/> - </vehicle> - <vehicle id="480" depart="480.00"> - <route edges="3/4to3/3 3/3to2/3 2/3to1/3 1/3to0/3 0/3to0/2 0/2to1/2"/> - </vehicle> - <vehicle id="481" depart="481.00"> - <route edges="1/2to1/3 1/3to1/2 1/2to2/2 2/2to1/2"/> - </vehicle> - <vehicle id="482" depart="482.00"> - <route edges="1/1to1/2 1/2to2/2 2/2to3/2"/> - </vehicle> - <vehicle id="483" depart="483.00"> - <route edges="2/4to3/4"/> - </vehicle> - <vehicle id="484" depart="484.00"> - <route edges="2/0to2/1 2/1to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to1/3"/> - </vehicle> - <vehicle id="485" depart="485.00"> - <route edges="3/2to3/1 3/1to3/0 3/0to4/0 4/0to4/1"/> - </vehicle> - <vehicle id="486" depart="486.00"> - <route edges="3/4to4/4 4/4to3/4 3/4to2/4 2/4to1/4"/> - </vehicle> - <vehicle id="487" depart="487.00"> - <route edges="0/3to0/2 0/2to0/1 0/1to1/1 1/1to1/0 1/0to2/0 2/0to2/1"/> - </vehicle> - <vehicle id="488" depart="488.00"> - <route edges="0/2to0/3 0/3to0/2 0/2to0/1 0/1to1/1"/> - </vehicle> - <vehicle id="489" depart="489.00"> - <route edges="1/2to1/3 1/3to1/2 1/2to1/1 1/1to1/2"/> - </vehicle> - <vehicle id="490" depart="490.00"> - <route edges="4/1to4/0 4/0to3/0 3/0to2/0 2/0to1/0 1/0to1/1 1/1to0/1 0/1to0/2 0/2to0/1"/> - </vehicle> - <vehicle id="491" depart="491.00"> - <route edges="2/4to3/4 3/4to2/4 2/4to2/3 2/3to2/2 2/2to2/1 2/1to2/0 2/0to2/1"/> - </vehicle> - <vehicle id="492" depart="492.00"> - <route edges="0/3to0/4 0/4to1/4 1/4to2/4 2/4to1/4"/> - </vehicle> - <vehicle id="493" depart="493.00"> - <route edges="0/2to1/2 1/2to1/1 1/1to1/0 1/0to2/0 2/0to3/0"/> - </vehicle> - <vehicle id="494" depart="494.00"> - <route edges="0/2to1/2 1/2to1/3 1/3to1/4 1/4to2/4 2/4to2/3"/> - </vehicle> - <vehicle id="495" depart="495.00"> - <route edges="1/2to2/2 2/2to2/1 2/1to2/0 2/0to3/0"/> - </vehicle> - <vehicle id="496" depart="496.00"> - <route edges="0/2to1/2 1/2to1/3 1/3to2/3 2/3to3/3 3/3to2/3"/> - </vehicle> - <vehicle id="497" depart="497.00"> - <route edges="1/2to0/2 0/2to0/3 0/3to1/3 1/3to2/3"/> - </vehicle> - <vehicle id="498" depart="498.00"> - <route edges="0/2to0/3 0/3to0/2 0/2to0/1 0/1to1/1 1/1to1/0 1/0to2/0 2/0to3/0 3/0to4/0 4/0to3/0"/> - </vehicle> - <vehicle id="499" depart="499.00"> - <route edges="2/0to2/1 2/1to2/0 2/0to1/0"/> - </vehicle> - <vehicle id="500" depart="500.00"> - <route edges="2/3to3/3 3/3to2/3 2/3to1/3 1/3to1/2 1/2to1/1 1/1to1/2"/> - </vehicle> - <vehicle id="501" depart="501.00"> - <route edges="0/1to1/1 1/1to1/0 1/0to2/0 2/0to3/0 3/0to4/0 4/0to3/0"/> - </vehicle> - <vehicle id="502" depart="502.00"> - <route edges="2/2to3/2 3/2to3/3 3/3to2/3"/> - </vehicle> - <vehicle id="503" depart="503.00"> - <route edges="1/0to0/0 0/0to0/1 0/1to0/2 0/2to0/3 0/3to1/3 1/3to1/4 1/4to2/4 2/4to1/4"/> - </vehicle> - <vehicle id="504" depart="504.00"> - <route edges="2/2to2/1 2/1to1/1 1/1to0/1 0/1to1/1"/> - </vehicle> - <vehicle id="505" depart="505.00"> - <route edges="4/2to3/2 3/2to2/2 2/2to1/2 1/2to1/3 1/3to1/2"/> - </vehicle> - <vehicle id="506" depart="506.00"> - <route edges="3/1to3/0 3/0to3/1 3/1to3/2 3/2to3/3 3/3to3/4 3/4to3/3"/> - </vehicle> - <vehicle id="507" depart="507.00"> - <route edges="3/4to2/4 2/4to2/3 2/3to2/2 2/2to2/1 2/1to2/0 2/0to3/0 3/0to4/0"/> - </vehicle> - <vehicle id="508" depart="508.00"> - <route edges="1/0to1/1 1/1to1/0 1/0to0/0"/> - </vehicle> - <vehicle id="509" depart="509.00"> - <route edges="3/1to2/1 2/1to1/1 1/1to1/2 1/2to1/3 1/3to2/3"/> - </vehicle> - <vehicle id="510" depart="510.00"> - <route edges="1/3to1/4 1/4to1/3 1/3to2/3 2/3to3/3 3/3to3/2"/> - </vehicle> - <vehicle id="511" depart="511.00"> - <route edges="3/4to4/4 4/4to3/4 3/4to2/4 2/4to1/4 1/4to1/3 1/3to0/3 0/3to0/2"/> - </vehicle> - <vehicle id="512" depart="512.00"> - <route edges="1/4to2/4 2/4to1/4 1/4to1/3 1/3to1/2 1/2to2/2"/> - </vehicle> - <vehicle id="513" depart="513.00"> - <route edges="0/3to0/4 0/4to0/3 0/3to0/2 0/2to0/1 0/1to1/1 1/1to1/0 1/0to2/0 2/0to3/0 3/0to3/1"/> - </vehicle> - <vehicle id="514" depart="514.00"> - <route edges="0/4to1/4 1/4to1/3 1/3to0/3 0/3to0/2 0/2to0/1 0/1to1/1"/> - </vehicle> - <vehicle id="515" depart="515.00"> - <route edges="3/4to4/4 4/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to2/0"/> - </vehicle> - <vehicle id="516" depart="516.00"> - <route edges="2/3to2/4 2/4to1/4 1/4to1/3 1/3to1/2 1/2to1/1 1/1to0/1"/> - </vehicle> - <vehicle id="517" depart="517.00"> - <route edges="0/2to0/3 0/3to0/2 0/2to0/1 0/1to0/0"/> - </vehicle> - <vehicle id="518" depart="518.00"> - <route edges="4/1to3/1 3/1to2/1 2/1to1/1 1/1to1/2 1/2to1/3 1/3to1/4"/> - </vehicle> - <vehicle id="519" depart="519.00"> - <route edges="3/2to3/3 3/3to2/3 2/3to2/2 2/2to2/1 2/1to2/0"/> - </vehicle> - <vehicle id="520" depart="520.00"> - <route edges="2/2to1/2 1/2to1/1 1/1to1/0 1/0to2/0"/> - </vehicle> - <vehicle id="521" depart="521.00"> - <route edges="0/0to0/1 0/1to1/1 1/1to2/1"/> - </vehicle> - <vehicle id="522" depart="522.00"> - <route edges="1/0to1/1 1/1to1/2 1/2to1/3 1/3to2/3 2/3to3/3 3/3to4/3 4/3to3/3"/> - </vehicle> - <vehicle id="523" depart="523.00"> - <route edges="3/2to2/2 2/2to2/1 2/1to3/1 3/1to3/0"/> - </vehicle> - <vehicle id="524" depart="524.00"> - <route edges="2/2to3/2 3/2to2/2 2/2to1/2 1/2to1/3"/> - </vehicle> - <vehicle id="525" depart="525.00"> - <route edges="0/1to1/1 1/1to2/1 2/1to3/1 3/1to3/0"/> - </vehicle> - <vehicle id="526" depart="526.00"> - <route edges="2/1to3/1 3/1to3/2 3/2to3/3 3/3to3/4 3/4to4/4"/> - </vehicle> - <vehicle id="527" depart="527.00"> - <route edges="3/1to4/1 4/1to3/1 3/1to3/2 3/2to3/3 3/3to4/3"/> - </vehicle> - <vehicle id="528" depart="528.00"> - <route edges="4/3to4/2 4/2to4/3 4/3to4/4 4/4to4/3"/> - </vehicle> - <vehicle id="529" depart="529.00"> - <route edges="3/3to3/4 3/4to2/4 2/4to2/3 2/3to1/3"/> - </vehicle> - <vehicle id="530" depart="530.00"> - <route edges="2/2to3/2 3/2to2/2 2/2to1/2"/> - </vehicle> - <vehicle id="531" depart="531.00"> - <route edges="2/4to3/4 3/4to2/4 2/4to1/4 1/4to1/3 1/3to0/3 0/3to0/2 0/2to0/1 0/1to0/2"/> - </vehicle> - <vehicle id="532" depart="532.00"> - <route edges="4/3to3/3 3/3to2/3 2/3to1/3 1/3to1/2 1/2to1/1 1/1to1/0 1/0to1/1"/> - </vehicle> - <vehicle id="533" depart="533.00"> - <route edges="0/3to1/3"/> - </vehicle> - <vehicle id="534" depart="534.00"> - <route edges="3/3to4/3 4/3to3/3 3/3to3/2 3/2to3/1 3/1to4/1"/> - </vehicle> - <vehicle id="535" depart="535.00"> - <route edges="4/1to4/2 4/2to4/3 4/3to3/3"/> - </vehicle> - <vehicle id="536" depart="536.00"> - <route edges="1/1to1/0 1/0to1/1 1/1to0/1"/> - </vehicle> - <vehicle id="537" depart="537.00"> - <route edges="1/4to0/4 0/4to1/4 1/4to2/4 2/4to3/4 3/4to4/4 4/4to3/4"/> - </vehicle> - <vehicle id="538" depart="538.00"> - <route edges="0/4to1/4 1/4to1/3 1/3to1/2 1/2to1/1 1/1to2/1 2/1to1/1"/> - </vehicle> - <vehicle id="539" depart="539.00"> - <route edges="0/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to2/4 2/4to3/4 3/4to4/4 4/4to3/4"/> - </vehicle> - <vehicle id="540" depart="540.00"> - <route edges="3/2to3/3 3/3to2/3 2/3to1/3 1/3to0/3 0/3to0/4 0/4to0/3"/> - </vehicle> - <vehicle id="541" depart="541.00"> - <route edges="4/0to3/0 3/0to2/0 2/0to2/1 2/1to2/2 2/2to1/2"/> - </vehicle> - <vehicle id="542" depart="542.00"> - <route edges="3/2to2/2 2/2to1/2 1/2to0/2 0/2to0/1 0/1to0/2"/> - </vehicle> - <vehicle id="543" depart="543.00"> - <route edges="0/0to0/1 0/1to0/2 0/2to0/3 0/3to1/3 1/3to1/4 1/4to2/4 2/4to3/4 3/4to4/4 4/4to4/3"/> - </vehicle> - <vehicle id="544" depart="544.00"> - <route edges="4/3to4/4 4/4to3/4 3/4to4/4"/> - </vehicle> - <vehicle id="545" depart="545.00"> - <route edges="2/0to3/0"/> - </vehicle> - <vehicle id="546" depart="546.00"> - <route edges="0/0to0/1 0/1to0/2 0/2to0/3 0/3to1/3 1/3to1/4 1/4to2/4 2/4to3/4 3/4to4/4 4/4to3/4"/> - </vehicle> - <vehicle id="547" depart="547.00"> - <route edges="2/2to3/2 3/2to3/3"/> - </vehicle> - <vehicle id="548" depart="548.00"> - <route edges="1/4to0/4 0/4to0/3 0/3to0/4"/> - </vehicle> - <vehicle id="549" depart="549.00"> - <route edges="1/2to0/2 0/2to1/2 1/2to2/2 2/2to3/2 3/2to4/2 4/2to4/3"/> - </vehicle> - <vehicle id="550" depart="550.00"> - <route edges="1/0to2/0 2/0to1/0 1/0to1/1 1/1to0/1 0/1to0/2 0/2to0/1"/> - </vehicle> - <vehicle id="551" depart="551.00"> - <route edges="4/2to4/3 4/3to4/2 4/2to4/1"/> - </vehicle> - <vehicle id="552" depart="552.00"> - <route edges="4/3to4/2 4/2to4/3 4/3to4/4 4/4to3/4"/> - </vehicle> - <vehicle id="553" depart="553.00"> - <route edges="3/4to4/4 4/4to3/4 3/4to2/4 2/4to1/4 1/4to1/3 1/3to1/2 1/2to2/2"/> - </vehicle> - <vehicle id="554" depart="554.00"> - <route edges="2/3to2/4 2/4to1/4 1/4to1/3 1/3to0/3 0/3to0/2 0/2to0/1 0/1to0/2"/> - </vehicle> - <vehicle id="555" depart="555.00"> - <route edges="2/0to1/0 1/0to2/0 2/0to3/0 3/0to4/0"/> - </vehicle> - <vehicle id="556" depart="556.00"> - <route edges="1/4to0/4 0/4to0/3 0/3to0/2 0/2to0/1 0/1to1/1 1/1to2/1 2/1to3/1 3/1to4/1"/> - </vehicle> - <vehicle id="557" depart="557.00"> - <route edges="1/2to1/1 1/1to1/0 1/0to2/0"/> - </vehicle> - <vehicle id="558" depart="558.00"> - <route edges="0/1to0/2 0/2to0/1 0/1to1/1 1/1to2/1 2/1to3/1 3/1to4/1 4/1to4/0"/> - </vehicle> - <vehicle id="559" depart="559.00"> - <route edges="1/2to0/2 0/2to0/3 0/3to1/3 1/3to2/3 2/3to3/3 3/3to4/3 4/3to4/4"/> - </vehicle> - <vehicle id="560" depart="560.00"> - <route edges="2/0to1/0 1/0to2/0 2/0to3/0 3/0to4/0 4/0to3/0"/> - </vehicle> - <vehicle id="561" depart="561.00"> - <route edges="2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to1/3"/> - </vehicle> - <vehicle id="562" depart="562.00"> - <route edges="0/4to0/3 0/3to0/2 0/2to1/2 1/2to2/2 2/2to3/2 3/2to4/2 4/2to4/1"/> - </vehicle> - <vehicle id="563" depart="563.00"> - <route edges="3/3to3/2 3/2to4/2"/> - </vehicle> - <vehicle id="564" depart="564.00"> - <route edges="2/1to3/1 3/1to2/1 2/1to2/2 2/2to2/3 2/3to1/3"/> - </vehicle> - <vehicle id="565" depart="565.00"> - <route edges="2/3to1/3 1/3to1/4 1/4to2/4"/> - </vehicle> - <vehicle id="566" depart="566.00"> - <route edges="1/1to1/2 1/2to1/3 1/3to1/4 1/4to2/4 2/4to3/4"/> - </vehicle> - <vehicle id="567" depart="567.00"> - <route edges="1/2to2/2 2/2to1/2 1/2to1/3 1/3to0/3"/> - </vehicle> - <vehicle id="568" depart="568.00"> - <route edges="4/1to3/1 3/1to2/1 2/1to1/1 1/1to0/1 0/1to0/2 0/2to0/3 0/3to1/3"/> - </vehicle> - <vehicle id="569" depart="569.00"> - <route edges="2/1to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to2/4 2/4to3/4 3/4to4/4 4/4to4/3"/> - </vehicle> - <vehicle id="570" depart="570.00"> - <route edges="1/2to1/3 1/3to1/2 1/2to1/1 1/1to2/1 2/1to3/1 3/1to2/1"/> - </vehicle> - <vehicle id="571" depart="571.00"> - <route edges="2/2to2/1 2/1to2/2 2/2to3/2 3/2to3/1"/> - </vehicle> - <vehicle id="572" depart="572.00"> - <route edges="4/3to4/4 4/4to3/4 3/4to2/4 2/4to1/4 1/4to1/3 1/3to1/2 1/2to1/1"/> - </vehicle> - <vehicle id="573" depart="573.00"> - <route edges="3/3to2/3 2/3to3/3"/> - </vehicle> - <vehicle id="574" depart="574.00"> - <route edges="3/0to3/1 3/1to2/1 2/1to1/1 1/1to1/2 1/2to1/3"/> - </vehicle> - <vehicle id="575" depart="575.00"> - <route edges="1/2to1/1 1/1to1/2 1/2to1/3 1/3to0/3"/> - </vehicle> - <vehicle id="576" depart="576.00"> - <route edges="0/4to0/3 0/3to1/3"/> - </vehicle> - <vehicle id="577" depart="577.00"> - <route edges="3/0to3/1 3/1to2/1 2/1to3/1"/> - </vehicle> - <vehicle id="578" depart="578.00"> - <route edges="4/0to3/0 3/0to2/0 2/0to1/0 1/0to1/1"/> - </vehicle> - <vehicle id="579" depart="579.00"> - <route edges="2/1to2/0 2/0to2/1 2/1to3/1 3/1to3/0"/> - </vehicle> - <vehicle id="580" depart="580.00"> - <route edges="1/2to0/2 0/2to0/1 0/1to1/1 1/1to2/1 2/1to1/1"/> - </vehicle> - <vehicle id="581" depart="581.00"> - <route edges="1/3to2/3 2/3to1/3 1/3to1/2 1/2to1/1 1/1to1/0"/> - </vehicle> - <vehicle id="582" depart="582.00"> - <route edges="4/0to4/1 4/1to3/1 3/1to2/1 2/1to1/1 1/1to1/0 1/0to0/0"/> - </vehicle> - <vehicle id="583" depart="583.00"> - <route edges="1/0to1/1 1/1to1/0 1/0to0/0"/> - </vehicle> - <vehicle id="584" depart="584.00"> - <route edges="0/1to0/2 0/2to0/1 0/1to1/1 1/1to1/0 1/0to0/0"/> - </vehicle> - <vehicle id="585" depart="585.00"> - <route edges="2/4to2/3 2/3to2/2 2/2to3/2 3/2to3/3"/> - </vehicle> - <vehicle id="586" depart="586.00"> - <route edges="4/1to4/2 4/2to3/2 3/2to2/2 2/2to1/2 1/2to0/2 0/2to0/3"/> - </vehicle> - <vehicle id="587" depart="587.00"> - <route edges="1/1to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to2/4 2/4to3/4 3/4to4/4"/> - </vehicle> - <vehicle id="588" depart="588.00"> - <route edges="4/2to4/1 4/1to3/1 3/1to2/1 2/1to1/1 1/1to0/1 0/1to0/0"/> - </vehicle> - <vehicle id="589" depart="589.00"> - <route edges="4/2to4/3 4/3to4/2 4/2to4/1 4/1to4/2"/> - </vehicle> - <vehicle id="590" depart="590.00"> - <route edges="3/1to2/1 2/1to2/2 2/2to2/3 2/3to3/3 3/3to3/2"/> - </vehicle> - <vehicle id="591" depart="591.00"> - <route edges="2/0to2/1 2/1to1/1 1/1to0/1 0/1to0/2 0/2to1/2"/> - </vehicle> - <vehicle id="592" depart="592.00"> - <route edges="3/0to4/0 4/0to3/0 3/0to2/0 2/0to2/1 2/1to2/0"/> - </vehicle> - <vehicle id="593" depart="593.00"> - <route edges="3/3to3/4 3/4to2/4 2/4to1/4 1/4to1/3 1/3to0/3 0/3to0/2 0/2to0/1 0/1to0/0 0/0to0/1"/> - </vehicle> - <vehicle id="594" depart="594.00"> - <route edges="2/2to3/2 3/2to2/2 2/2to1/2 1/2to0/2"/> - </vehicle> - <vehicle id="595" depart="595.00"> - <route edges="3/2to3/3 3/3to2/3 2/3to1/3 1/3to1/2 1/2to1/1 1/1to0/1"/> - </vehicle> - <vehicle id="596" depart="596.00"> - <route edges="4/4to4/3 4/3to3/3 3/3to2/3 2/3to1/3 1/3to1/4 1/4to0/4"/> - </vehicle> - <vehicle id="597" depart="597.00"> - <route edges="2/4to1/4 1/4to1/3 1/3to1/2 1/2to1/1 1/1to1/0 1/0to2/0 2/0to2/1"/> - </vehicle> - <vehicle id="598" depart="598.00"> - <route edges="2/1to2/2 2/2to1/2 1/2to1/3 1/3to1/4 1/4to1/3"/> - </vehicle> - <vehicle id="599" depart="599.00"> - <route edges="3/0to2/0 2/0to1/0 1/0to1/1 1/1to0/1 0/1to0/2 0/2to0/3 0/3to0/4 0/4to1/4"/> - </vehicle> - <vehicle id="600" depart="600.00"> - <route edges="3/3to2/3 2/3to1/3 1/3to1/2 1/2to0/2"/> - </vehicle> - <vehicle id="601" depart="601.00"> - <route edges="0/4to0/3 0/3to1/3 1/3to1/4 1/4to2/4 2/4to2/3"/> - </vehicle> - <vehicle id="602" depart="602.00"> - <route edges="2/2to2/1 2/1to1/1 1/1to0/1 0/1to0/2 0/2to0/3"/> - </vehicle> - <vehicle id="603" depart="603.00"> - <route edges="0/0to0/1 0/1to0/2 0/2to0/3 0/3to0/2"/> - </vehicle> - <vehicle id="604" depart="604.00"> - <route edges="3/2to2/2 2/2to3/2 3/2to3/3"/> - </vehicle> - <vehicle id="605" depart="605.00"> - <route edges="1/1to0/1 0/1to0/2 0/2to0/3 0/3to1/3 1/3to1/4 1/4to2/4 2/4to3/4 3/4to4/4"/> - </vehicle> - <vehicle id="606" depart="606.00"> - <route edges="1/2to0/2 0/2to0/3 0/3to1/3 1/3to2/3 2/3to3/3 3/3to4/3 4/3to4/4"/> - </vehicle> - <vehicle id="607" depart="607.00"> - <route edges="3/3to3/2 3/2to3/3 3/3to4/3 4/3to4/4"/> - </vehicle> - <vehicle id="608" depart="608.00"> - <route edges="4/2to4/3 4/3to3/3 3/3to2/3 2/3to1/3 1/3to0/3 0/3to0/2 0/2to0/1 0/1to1/1"/> - </vehicle> - <vehicle id="609" depart="609.00"> - <route edges="2/0to3/0 3/0to3/1 3/1to3/2 3/2to3/3 3/3to3/4 3/4to2/4"/> - </vehicle> - <vehicle id="610" depart="610.00"> - <route edges="0/3to0/2 0/2to0/1"/> - </vehicle> - <vehicle id="611" depart="611.00"> - <route edges="1/0to2/0 2/0to2/1 2/1to3/1 3/1to3/2"/> - </vehicle> - <vehicle id="612" depart="612.00"> - <route edges="0/0to0/1 0/1to1/1 1/1to1/0 1/0to0/0"/> - </vehicle> - <vehicle id="613" depart="613.00"> - <route edges="0/1to0/2 0/2to0/3 0/3to1/3 1/3to2/3 2/3to2/4"/> - </vehicle> - <vehicle id="614" depart="614.00"> - <route edges="3/2to2/2 2/2to2/3 2/3to3/3 3/3to4/3 4/3to4/4"/> - </vehicle> - <vehicle id="615" depart="615.00"> - <route edges="1/0to2/0 2/0to2/1 2/1to3/1 3/1to4/1 4/1to3/1"/> - </vehicle> - <vehicle id="616" depart="616.00"> - <route edges="1/0to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3"/> - </vehicle> - <vehicle id="617" depart="617.00"> - <route edges="2/0to3/0 3/0to2/0 2/0to2/1 2/1to2/2 2/2to2/3 2/3to3/3"/> - </vehicle> - <vehicle id="618" depart="618.00"> - <route edges="2/0to2/1 2/1to1/1 1/1to1/2 1/2to1/3 1/3to1/2"/> - </vehicle> - <vehicle id="619" depart="619.00"> - <route edges="1/1to1/2 1/2to1/3 1/3to1/4 1/4to2/4 2/4to3/4 3/4to3/3"/> - </vehicle> - <vehicle id="620" depart="620.00"> - <route edges="4/2to4/3 4/3to3/3"/> - </vehicle> - <vehicle id="621" depart="621.00"> - <route edges="0/2to0/3 0/3to0/2 0/2to0/1 0/1to1/1 1/1to1/0 1/0to2/0 2/0to3/0 3/0to4/0 4/0to3/0"/> - </vehicle> - <vehicle id="622" depart="622.00"> - <route edges="1/1to1/0 1/0to1/1 1/1to1/2 1/2to1/3"/> - </vehicle> - <vehicle id="623" depart="623.00"> - <route edges="1/0to1/1 1/1to1/0 1/0to0/0"/> - </vehicle> - <vehicle id="624" depart="624.00"> - <route edges="3/1to4/1 4/1to3/1 3/1to2/1 2/1to1/1 1/1to2/1"/> - </vehicle> - <vehicle id="625" depart="625.00"> - <route edges="3/3to3/2 3/2to2/2 2/2to2/3 2/3to2/2"/> - </vehicle> - <vehicle id="626" depart="626.00"> - <route edges="3/3to3/4 3/4to2/4 2/4to1/4 1/4to1/3 1/3to1/2"/> - </vehicle> - <vehicle id="627" depart="627.00"> - <route edges="2/2to2/1 2/1to1/1 1/1to2/1"/> - </vehicle> - <vehicle id="628" depart="628.00"> - <route edges="3/1to4/1 4/1to3/1 3/1to3/2"/> - </vehicle> - <vehicle id="629" depart="629.00"> - <route edges="2/2to1/2 1/2to1/3 1/3to2/3 2/3to1/3"/> - </vehicle> - <vehicle id="630" depart="630.00"> - <route edges="3/4to2/4 2/4to1/4 1/4to1/3 1/3to0/3"/> - </vehicle> - <vehicle id="631" depart="631.00"> - <route edges="2/2to3/2 3/2to2/2 2/2to1/2 1/2to0/2 0/2to0/1 0/1to0/2"/> - </vehicle> - <vehicle id="632" depart="632.00"> - <route edges="1/1to0/1 0/1to0/2 0/2to0/3 0/3to1/3 1/3to1/4 1/4to2/4 2/4to3/4 3/4to2/4"/> - </vehicle> - <vehicle id="633" depart="633.00"> - <route edges="0/2to0/1 0/1to1/1 1/1to1/0 1/0to0/0"/> - </vehicle> - <vehicle id="634" depart="634.00"> - <route edges="0/2to0/3 0/3to0/2 0/2to0/1 0/1to1/1 1/1to2/1"/> - </vehicle> - <vehicle id="635" depart="635.00"> - <route edges="2/2to2/1 2/1to1/1 1/1to1/2"/> - </vehicle> - <vehicle id="636" depart="636.00"> - <route edges="0/2to1/2 1/2to1/3 1/3to1/4 1/4to2/4 2/4to3/4 3/4to4/4 4/4to3/4"/> - </vehicle> - <vehicle id="637" depart="637.00"> - <route edges="3/2to2/2 2/2to3/2 3/2to3/3"/> - </vehicle> - <vehicle id="638" depart="638.00"> - <route edges="0/4to0/3 0/3to0/2 0/2to0/1 0/1to1/1 1/1to1/0 1/0to0/0"/> - </vehicle> - <vehicle id="639" depart="639.00"> - <route edges="1/1to2/1 2/1to2/0"/> - </vehicle> - <vehicle id="640" depart="640.00"> - <route edges="4/1to4/0 4/0to4/1 4/1to4/2 4/2to4/3 4/3to3/3"/> - </vehicle> - <vehicle id="641" depart="641.00"> - <route edges="2/1to3/1 3/1to3/2 3/2to3/3 3/3to3/4 3/4to4/4 4/4to3/4"/> - </vehicle> - <vehicle id="642" depart="642.00"> - <route edges="1/3to1/2 1/2to1/3 1/3to1/4 1/4to2/4 2/4to3/4 3/4to2/4"/> - </vehicle> - <vehicle id="643" depart="643.00"> - <route edges="3/0to2/0 2/0to2/1 2/1to2/2 2/2to2/3 2/3to2/4 2/4to3/4 3/4to4/4 4/4to4/3"/> - </vehicle> - <vehicle id="644" depart="644.00"> - <route edges="0/0to1/0 1/0to1/1 1/1to1/2 1/2to2/2 2/2to3/2 3/2to3/3"/> - </vehicle> - <vehicle id="645" depart="645.00"> - <route edges="2/1to1/1 1/1to1/0 1/0to2/0 2/0to3/0 3/0to4/0 4/0to4/1"/> - </vehicle> - <vehicle id="646" depart="646.00"> - <route edges="0/0to0/1 0/1to0/2 0/2to1/2"/> - </vehicle> - <vehicle id="647" depart="647.00"> - <route edges="2/4to2/3 2/3to2/2 2/2to2/1 2/1to3/1 3/1to3/2"/> - </vehicle> - <vehicle id="648" depart="648.00"> - <route edges="3/4to2/4 2/4to2/3 2/3to2/2 2/2to1/2"/> - </vehicle> - <vehicle id="649" depart="649.00"> - <route edges="3/1to3/0 3/0to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to1/3"/> - </vehicle> - <vehicle id="650" depart="650.00"> - <route edges="1/2to1/3 1/3to1/4 1/4to2/4 2/4to3/4 3/4to4/4 4/4to4/3"/> - </vehicle> - <vehicle id="651" depart="651.00"> - <route edges="4/1to3/1 3/1to3/2 3/2to2/2"/> - </vehicle> - <vehicle id="652" depart="652.00"> - <route edges="3/1to3/0 3/0to2/0 2/0to1/0 1/0to1/1 1/1to0/1"/> - </vehicle> - <vehicle id="653" depart="653.00"> - <route edges="3/1to3/0 3/0to3/1 3/1to4/1 4/1to3/1"/> - </vehicle> - <vehicle id="654" depart="654.00"> - <route edges="2/3to2/4 2/4to2/3 2/3to2/2 2/2to3/2"/> - </vehicle> - <vehicle id="655" depart="655.00"> - <route edges="2/4to3/4 3/4to3/3 3/3to4/3 4/3to3/3"/> - </vehicle> - <vehicle id="656" depart="656.00"> - <route edges="3/1to4/1 4/1to4/2 4/2to4/3 4/3to4/4 4/4to3/4"/> - </vehicle> - <vehicle id="657" depart="657.00"> - <route edges="0/1to1/1 1/1to1/2 1/2to2/2 2/2to3/2 3/2to4/2 4/2to3/2"/> - </vehicle> - <vehicle id="658" depart="658.00"> - <route edges="0/1to1/1 1/1to1/2 1/2to1/3 1/3to2/3 2/3to2/4"/> - </vehicle> - <vehicle id="659" depart="659.00"> - <route edges="2/3to2/4 2/4to1/4 1/4to1/3 1/3to0/3 0/3to0/2 0/2to0/3"/> - </vehicle> - <vehicle id="660" depart="660.00"> - <route edges="0/4to1/4 1/4to1/3 1/3to1/2 1/2to1/1 1/1to1/0 1/0to2/0 2/0to3/0"/> - </vehicle> - <vehicle id="661" depart="661.00"> - <route edges="2/3to2/4 2/4to1/4 1/4to1/3 1/3to1/2 1/2to1/1"/> - </vehicle> - <vehicle id="662" depart="662.00"> - <route edges="3/0to2/0 2/0to2/1 2/1to2/2 2/2to2/3"/> - </vehicle> - <vehicle id="663" depart="663.00"> - <route edges="3/2to2/2 2/2to3/2 3/2to4/2 4/2to4/1"/> - </vehicle> - <vehicle id="664" depart="664.00"> - <route edges="4/1to4/0 4/0to3/0 3/0to2/0 2/0to1/0 1/0to1/1 1/1to0/1 0/1to0/2 0/2to0/3"/> - </vehicle> - <vehicle id="665" depart="665.00"> - <route edges="3/1to3/0 3/0to2/0 2/0to2/1 2/1to2/2 2/2to2/1"/> - </vehicle> - <vehicle id="666" depart="666.00"> - <route edges="0/1to0/2 0/2to1/2 1/2to2/2 2/2to1/2"/> - </vehicle> - <vehicle id="667" depart="667.00"> - <route edges="3/4to2/4 2/4to2/3 2/3to3/3 3/3to3/2"/> - </vehicle> - <vehicle id="668" depart="668.00"> - <route edges="3/1to3/2 3/2to4/2 4/2to3/2"/> - </vehicle> - <vehicle id="669" depart="669.00"> - <route edges="1/1to2/1 2/1to1/1 1/1to1/2 1/2to1/3"/> - </vehicle> - <vehicle id="670" depart="670.00"> - <route edges="3/1to3/2 3/2to2/2 2/2to1/2 1/2to1/1 1/1to1/0"/> - </vehicle> - <vehicle id="671" depart="671.00"> - <route edges="3/2to2/2 2/2to2/1 2/1to3/1 3/1to3/0"/> - </vehicle> - <vehicle id="672" depart="672.00"> - <route edges="1/1to1/2 1/2to2/2 2/2to1/2"/> - </vehicle> - <vehicle id="673" depart="673.00"> - <route edges="1/0to0/0 0/0to1/0 1/0to2/0 2/0to2/1"/> - </vehicle> - <vehicle id="674" depart="674.00"> - <route edges="4/2to4/3 4/3to3/3 3/3to2/3 2/3to1/3 1/3to0/3 0/3to0/4 0/4to1/4"/> - </vehicle> - <vehicle id="675" depart="675.00"> - <route edges="2/2to2/3 2/3to2/2 2/2to2/1 2/1to3/1 3/1to4/1 4/1to4/0"/> - </vehicle> - <vehicle id="676" depart="676.00"> - <route edges="3/3to2/3 2/3to1/3 1/3to0/3 0/3to1/3"/> - </vehicle> - <vehicle id="677" depart="677.00"> - <route edges="2/4to2/3 2/3to1/3 1/3to1/2 1/2to1/1 1/1to2/1"/> - </vehicle> - <vehicle id="678" depart="678.00"> - <route edges="3/0to4/0 4/0to3/0 3/0to2/0 2/0to2/1"/> - </vehicle> - <vehicle id="679" depart="679.00"> - <route edges="1/3to0/3 0/3to1/3 1/3to2/3 2/3to3/3 3/3to3/4"/> - </vehicle> - <vehicle id="680" depart="680.00"> - <route edges="4/2to3/2 3/2to3/1 3/1to3/2"/> - </vehicle> - <vehicle id="681" depart="681.00"> - <route edges="0/4to1/4 1/4to1/3 1/3to1/2 1/2to1/1 1/1to1/0 1/0to2/0"/> - </vehicle> - <vehicle id="682" depart="682.00"> - <route edges="2/3to1/3 1/3to1/4 1/4to2/4 2/4to3/4"/> - </vehicle> - <vehicle id="683" depart="683.00"> - <route edges="0/3to0/4 0/4to0/3 0/3to0/2 0/2to1/2 1/2to2/2 2/2to3/2 3/2to3/1"/> - </vehicle> - <vehicle id="684" depart="684.00"> - <route edges="1/0to1/1 1/1to1/2 1/2to1/3 1/3to2/3 2/3to3/3 3/3to4/3 4/3to4/2"/> - </vehicle> - <vehicle id="685" depart="685.00"> - <route edges="2/1to3/1 3/1to3/0 3/0to4/0 4/0to4/1"/> - </vehicle> - <vehicle id="686" depart="686.00"> - <route edges="0/2to1/2 1/2to2/2"/> - </vehicle> - <vehicle id="687" depart="687.00"> - <route edges="2/3to2/4 2/4to2/3 2/3to2/2 2/2to2/1 2/1to2/0 2/0to3/0 3/0to3/1"/> - </vehicle> - <vehicle id="688" depart="688.00"> - <route edges="1/1to1/2 1/2to1/3 1/3to2/3 2/3to1/3"/> - </vehicle> - <vehicle id="689" depart="689.00"> - <route edges="3/2to4/2 4/2to3/2 3/2to2/2 2/2to2/3 2/3to2/2"/> - </vehicle> - <vehicle id="690" depart="690.00"> - <route edges="4/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to4/0"/> - </vehicle> - <vehicle id="691" depart="691.00"> - <route edges="0/1to0/2 0/2to0/3 0/3to1/3 1/3to1/4 1/4to2/4 2/4to2/3"/> - </vehicle> - <vehicle id="692" depart="692.00"> - <route edges="1/4to1/3 1/3to1/4 1/4to2/4 2/4to3/4 3/4to2/4"/> - </vehicle> - <vehicle id="693" depart="693.00"> - <route edges="3/1to4/1 4/1to3/1 3/1to2/1 2/1to1/1 1/1to0/1 0/1to0/2 0/2to0/3"/> - </vehicle> - <vehicle id="694" depart="694.00"> - <route edges="0/0to0/1 0/1to0/2 0/2to1/2 1/2to2/2 2/2to3/2 3/2to4/2 4/2to4/1"/> - </vehicle> - <vehicle id="695" depart="695.00"> - <route edges="2/1to1/1 1/1to1/2 1/2to1/3 1/3to2/3 2/3to3/3 3/3to3/2"/> - </vehicle> - <vehicle id="696" depart="696.00"> - <route edges="4/3to3/3 3/3to2/3 2/3to1/3 1/3to1/2 1/2to1/1 1/1to2/1"/> - </vehicle> - <vehicle id="697" depart="697.00"> - <route edges="3/4to2/4 2/4to1/4 1/4to1/3 1/3to2/3"/> - </vehicle> - <vehicle id="698" depart="698.00"> - <route edges="1/0to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to0/3"/> - </vehicle> - <vehicle id="699" depart="699.00"> - <route edges="1/2to0/2 0/2to1/2 1/2to2/2 2/2to2/3"/> - </vehicle> - <vehicle id="700" depart="700.00"> - <route edges="3/1to4/1 4/1to3/1"/> - </vehicle> - <vehicle id="701" depart="701.00"> - <route edges="3/3to2/3 2/3to1/3 1/3to0/3 0/3to0/2 0/2to0/1 0/1to0/0 0/0to0/1"/> - </vehicle> - <vehicle id="702" depart="702.00"> - <route edges="1/0to1/1 1/1to1/2 1/2to1/3 1/3to2/3"/> - </vehicle> - <vehicle id="703" depart="703.00"> - <route edges="1/2to0/2 0/2to0/3 0/3to0/4 0/4to0/3"/> - </vehicle> - <vehicle id="704" depart="704.00"> - <route edges="1/0to0/0 0/0to1/0"/> - </vehicle> - <vehicle id="705" depart="705.00"> - <route edges="4/3to4/2 4/2to3/2 3/2to2/2 2/2to2/3 2/3to2/4 2/4to2/3"/> - </vehicle> - <vehicle id="706" depart="706.00"> - <route edges="3/1to3/0 3/0to2/0 2/0to1/0 1/0to1/1 1/1to0/1 0/1to0/2 0/2to0/3 0/3to1/3"/> - </vehicle> - <vehicle id="707" depart="707.00"> - <route edges="3/2to3/3 3/3to3/2 3/2to3/1 3/1to3/2"/> - </vehicle> - <vehicle id="708" depart="708.00"> - <route edges="1/0to2/0 2/0to3/0 3/0to3/1"/> - </vehicle> - <vehicle id="709" depart="709.00"> - <route edges="1/3to2/3 2/3to1/3 1/3to1/2 1/2to1/1 1/1to0/1"/> - </vehicle> - <vehicle id="710" depart="710.00"> - <route edges="3/4to4/4 4/4to3/4 3/4to2/4 2/4to1/4 1/4to1/3 1/3to0/3 0/3to1/3"/> - </vehicle> - <vehicle id="711" depart="711.00"> - <route edges="0/2to0/3 0/3to0/2 0/2to0/1 0/1to1/1 1/1to0/1"/> - </vehicle> - <vehicle id="712" depart="712.00"> - <route edges="2/0to3/0 3/0to2/0 2/0to2/1 2/1to2/2 2/2to2/3 2/3to2/2"/> - </vehicle> - <vehicle id="713" depart="713.00"> - <route edges="2/0to2/1 2/1to1/1 1/1to0/1 0/1to0/2 0/2to0/3 0/3to0/2"/> - </vehicle> - <vehicle id="714" depart="714.00"> - <route edges="4/1to4/2 4/2to3/2 3/2to2/2 2/2to2/3"/> - </vehicle> - <vehicle id="715" depart="715.00"> - <route edges="3/3to3/4 3/4to2/4 2/4to1/4 1/4to0/4"/> - </vehicle> - <vehicle id="716" depart="716.00"> - <route edges="2/4to1/4 1/4to1/3 1/3to1/2 1/2to1/1 1/1to1/0 1/0to2/0 2/0to3/0"/> - </vehicle> - <vehicle id="717" depart="717.00"> - <route edges="4/4to4/3 4/3to3/3 3/3to3/2 3/2to3/1"/> - </vehicle> - <vehicle id="718" depart="718.00"> - <route edges="3/4to2/4 2/4to3/4 3/4to3/3"/> - </vehicle> - <vehicle id="719" depart="719.00"> - <route edges="3/3to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to2/0"/> - </vehicle> - <vehicle id="720" depart="720.00"> - <route edges="3/2to4/2"/> - </vehicle> - <vehicle id="721" depart="721.00"> - <route edges="0/1to0/0 0/0to0/1 0/1to0/2 0/2to1/2 1/2to2/2 2/2to3/2 3/2to4/2"/> - </vehicle> - <vehicle id="722" depart="722.00"> - <route edges="2/3to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to2/0"/> - </vehicle> - <vehicle id="723" depart="723.00"> - <route edges="2/2to2/3 2/3to3/3 3/3to2/3"/> - </vehicle> - <vehicle id="724" depart="724.00"> - <route edges="3/2to2/2 2/2to2/1 2/1to2/0 2/0to3/0 3/0to2/0"/> - </vehicle> - <vehicle id="725" depart="725.00"> - <route edges="4/3to3/3 3/3to2/3 2/3to1/3 1/3to0/3 0/3to0/2 0/2to0/1 0/1to0/0"/> - </vehicle> - <vehicle id="726" depart="726.00"> - <route edges="1/3to1/4 1/4to1/3 1/3to2/3 2/3to3/3 3/3to2/3"/> - </vehicle> - <vehicle id="727" depart="727.00"> - <route edges="0/4to0/3 0/3to1/3 1/3to1/4 1/4to2/4 2/4to3/4 3/4to4/4 4/4to4/3"/> - </vehicle> - <vehicle id="728" depart="728.00"> - <route edges="4/4to3/4 3/4to2/4 2/4to2/3 2/3to2/2 2/2to2/1 2/1to2/0 2/0to2/1"/> - </vehicle> - <vehicle id="729" depart="729.00"> - <route edges="2/3to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to4/0 4/0to3/0"/> - </vehicle> - <vehicle id="730" depart="730.00"> - <route edges="1/4to0/4 0/4to0/3 0/3to0/2 0/2to1/2"/> - </vehicle> - <vehicle id="731" depart="731.00"> - <route edges="3/0to4/0 4/0to3/0 3/0to2/0 2/0to1/0 1/0to1/1 1/1to0/1 0/1to1/1"/> - </vehicle> - <vehicle id="732" depart="732.00"> - <route edges="0/3to0/2 0/2to0/1 0/1to1/1 1/1to2/1 2/1to2/0"/> - </vehicle> - <vehicle id="733" depart="733.00"> - <route edges="2/4to1/4 1/4to1/3 1/3to1/2 1/2to1/1 1/1to1/0 1/0to2/0 2/0to3/0 3/0to4/0 4/0to3/0"/> - </vehicle> - <vehicle id="734" depart="734.00"> - <route edges="2/3to1/3 1/3to1/2 1/2to1/1"/> - </vehicle> - <vehicle id="735" depart="735.00"> - <route edges="4/4to4/3 4/3to3/3 3/3to2/3 2/3to1/3 1/3to1/2 1/2to1/1 1/1to1/0 1/0to2/0"/> - </vehicle> - <vehicle id="736" depart="736.00"> - <route edges="0/3to0/4 0/4to1/4 1/4to2/4 2/4to1/4"/> - </vehicle> - <vehicle id="737" depart="737.00"> - <route edges="0/2to1/2 1/2to1/3 1/3to1/4 1/4to1/3"/> - </vehicle> - <vehicle id="738" depart="738.00"> - <route edges="3/1to2/1 2/1to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to2/4"/> - </vehicle> - <vehicle id="739" depart="739.00"> - <route edges="2/4to1/4 1/4to1/3 1/3to1/2 1/2to2/2"/> - </vehicle> - <vehicle id="740" depart="740.00"> - <route edges="2/4to3/4 3/4to2/4 2/4to2/3 2/3to2/4"/> - </vehicle> - <vehicle id="741" depart="741.00"> - <route edges="0/3to0/2 0/2to0/1 0/1to1/1"/> - </vehicle> - <vehicle id="742" depart="742.00"> - <route edges="1/4to1/3 1/3to2/3 2/3to3/3 3/3to3/4"/> - </vehicle> - <vehicle id="743" depart="743.00"> - <route edges="3/1to3/2 3/2to2/2 2/2to1/2 1/2to1/1 1/1to1/2"/> - </vehicle> - <vehicle id="744" depart="744.00"> - <route edges="3/2to3/3 3/3to2/3 2/3to2/4 2/4to3/4"/> - </vehicle> - <vehicle id="745" depart="745.00"> - <route edges="3/0to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/1"/> - </vehicle> - <vehicle id="746" depart="746.00"> - <route edges="0/2to1/2"/> - </vehicle> - <vehicle id="747" depart="747.00"> - <route edges="3/1to3/2 3/2to2/2 2/2to1/2 1/2to1/3 1/3to1/4 1/4to1/3"/> - </vehicle> - <vehicle id="748" depart="748.00"> - <route edges="4/0to3/0 3/0to2/0 2/0to2/1 2/1to2/2 2/2to2/3 2/3to2/4 2/4to1/4"/> - </vehicle> - <vehicle id="749" depart="749.00"> - <route edges="4/1to3/1 3/1to3/2 3/2to4/2 4/2to4/1"/> - </vehicle> - <vehicle id="750" depart="750.00"> - <route edges="1/3to1/2 1/2to1/3 1/3to1/4 1/4to2/4 2/4to3/4 3/4to3/3"/> - </vehicle> - <vehicle id="751" depart="751.00"> - <route edges="2/1to2/2 2/2to3/2 3/2to4/2"/> - </vehicle> - <vehicle id="752" depart="752.00"> - <route edges="3/1to4/1 4/1to3/1 3/1to3/0 3/0to3/1"/> - </vehicle> - <vehicle id="753" depart="753.00"> - <route edges="0/1to0/2 0/2to0/3 0/3to1/3 1/3to2/3 2/3to2/2"/> - </vehicle> - <vehicle id="754" depart="754.00"> - <route edges="0/3to0/2 0/2to0/1 0/1to0/2"/> - </vehicle> - <vehicle id="755" depart="755.00"> - <route edges="1/2to1/3 1/3to1/2 1/2to2/2 2/2to3/2 3/2to3/3"/> - </vehicle> - <vehicle id="756" depart="756.00"> - <route edges="2/2to1/2 1/2to1/3 1/3to1/4"/> - </vehicle> - <vehicle id="757" depart="757.00"> - <route edges="4/2to4/3 4/3to3/3 3/3to2/3 2/3to2/2"/> - </vehicle> - <vehicle id="758" depart="758.00"> - <route edges="0/0to0/1 0/1to0/2 0/2to0/3 0/3to0/4 0/4to0/3"/> - </vehicle> - <vehicle id="759" depart="759.00"> - <route edges="1/0to2/0 2/0to2/1 2/1to3/1 3/1to4/1 4/1to3/1"/> - </vehicle> - <vehicle id="760" depart="760.00"> - <route edges="0/1to0/2 0/2to0/1 0/1to1/1 1/1to1/2"/> - </vehicle> - <vehicle id="761" depart="761.00"> - <route edges="2/2to3/2 3/2to2/2 2/2to2/3 2/3to3/3"/> - </vehicle> - <vehicle id="762" depart="762.00"> - <route edges="4/2to4/3 4/3to3/3 3/3to3/2 3/2to3/1 3/1to3/0"/> - </vehicle> - <vehicle id="763" depart="763.00"> - <route edges="3/0to3/1 3/1to2/1 2/1to1/1 1/1to1/0 1/0to0/0"/> - </vehicle> - <vehicle id="764" depart="764.00"> - <route edges="1/4to0/4 0/4to0/3 0/3to0/2 0/2to0/1 0/1to1/1 1/1to2/1 2/1to3/1 3/1to2/1"/> - </vehicle> - <vehicle id="765" depart="765.00"> - <route edges="4/2to3/2 3/2to2/2 2/2to2/3 2/3to2/4 2/4to2/3"/> - </vehicle> - <vehicle id="766" depart="766.00"> - <route edges="0/1to1/1 1/1to2/1 2/1to3/1 3/1to4/1 4/1to4/0"/> - </vehicle> - <vehicle id="767" depart="767.00"> - <route edges="0/4to0/3 0/3to0/4 0/4to1/4"/> - </vehicle> - <vehicle id="768" depart="768.00"> - <route edges="1/1to2/1 2/1to2/2 2/2to2/3 2/3to3/3 3/3to2/3"/> - </vehicle> - <vehicle id="769" depart="769.00"> - <route edges="2/2to3/2 3/2to2/2 2/2to1/2 1/2to0/2"/> - </vehicle> - <vehicle id="770" depart="770.00"> - <route edges="2/4to1/4 1/4to1/3 1/3to1/2 1/2to2/2 2/2to3/2 3/2to4/2"/> - </vehicle> - <vehicle id="771" depart="771.00"> - <route edges="0/1to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to2/4 2/4to3/4 3/4to4/4 4/4to3/4"/> - </vehicle> - <vehicle id="772" depart="772.00"> - <route edges="3/4to4/4 4/4to3/4 3/4to3/3 3/3to3/2 3/2to4/2"/> - </vehicle> - <vehicle id="773" depart="773.00"> - <route edges="3/3to4/3 4/3to3/3 3/3to3/4"/> - </vehicle> - <vehicle id="774" depart="774.00"> - <route edges="4/3to4/4 4/4to3/4 3/4to2/4 2/4to1/4 1/4to1/3 1/3to0/3 0/3to0/2 0/2to0/1 0/1to0/2"/> - </vehicle> - <vehicle id="775" depart="775.00"> - <route edges="3/0to3/1 3/1to2/1 2/1to1/1 1/1to1/2 1/2to0/2"/> - </vehicle> - <vehicle id="776" depart="776.00"> - <route edges="4/1to4/0 4/0to4/1 4/1to4/2 4/2to3/2"/> - </vehicle> - <vehicle id="777" depart="777.00"> - <route edges="0/0to1/0 1/0to1/1 1/1to1/2 1/2to0/2"/> - </vehicle> - <vehicle id="778" depart="778.00"> - <route edges="0/2to1/2 1/2to0/2 0/2to0/1 0/1to0/0 0/0to1/0"/> - </vehicle> - <vehicle id="779" depart="779.00"> - <route edges="0/1to1/1 1/1to1/0 1/0to2/0 2/0to3/0 3/0to4/0 4/0to4/1"/> - </vehicle> - <vehicle id="780" depart="780.00"> - <route edges="2/1to2/0 2/0to1/0 1/0to0/0 0/0to1/0"/> - </vehicle> - <vehicle id="781" depart="781.00"> - <route edges="1/4to2/4 2/4to2/3 2/3to2/2 2/2to2/1 2/1to3/1 3/1to3/0"/> - </vehicle> - <vehicle id="782" depart="782.00"> - <route edges="4/3to3/3 3/3to3/2 3/2to3/1 3/1to3/0"/> - </vehicle> - <vehicle id="783" depart="783.00"> - <route edges="2/1to3/1 3/1to3/0 3/0to2/0"/> - </vehicle> - <vehicle id="784" depart="784.00"> - <route edges="3/2to4/2 4/2to3/2 3/2to2/2 2/2to1/2 1/2to0/2 0/2to0/1 0/1to0/2"/> - </vehicle> - <vehicle id="785" depart="785.00"> - <route edges="1/1to2/1 2/1to1/1 1/1to1/2 1/2to0/2"/> - </vehicle> - <vehicle id="786" depart="786.00"> - <route edges="0/1to0/0 0/0to0/1 0/1to1/1 1/1to1/2"/> - </vehicle> - <vehicle id="787" depart="787.00"> - <route edges="1/1to1/2"/> - </vehicle> - <vehicle id="788" depart="788.00"> - <route edges="4/0to3/0 3/0to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to1/4"/> - </vehicle> - <vehicle id="789" depart="789.00"> - <route edges="0/1to0/0 0/0to0/1 0/1to0/2 0/2to0/3 0/3to1/3 1/3to1/4 1/4to2/4 2/4to2/3"/> - </vehicle> - <vehicle id="790" depart="790.00"> - <route edges="3/1to4/1 4/1to4/2 4/2to4/1"/> - </vehicle> - <vehicle id="791" depart="791.00"> - <route edges="1/3to2/3 2/3to1/3 1/3to0/3 0/3to0/2"/> - </vehicle> - <vehicle id="792" depart="792.00"> - <route edges="3/4to3/3 3/3to2/3 2/3to1/3 1/3to1/2"/> - </vehicle> - <vehicle id="793" depart="793.00"> - <route edges="3/2to4/2 4/2to3/2 3/2to2/2 2/2to1/2 1/2to1/3 1/3to1/4 1/4to0/4"/> - </vehicle> - <vehicle id="794" depart="794.00"> - <route edges="0/3to0/2 0/2to0/3 0/3to1/3 1/3to1/2"/> - </vehicle> - <vehicle id="795" depart="795.00"> - <route edges="1/4to0/4 0/4to0/3 0/3to0/2 0/2to0/1 0/1to1/1 1/1to2/1 2/1to1/1"/> - </vehicle> - <vehicle id="796" depart="796.00"> - <route edges="1/1to1/2 1/2to0/2 0/2to0/3 0/3to0/4 0/4to1/4"/> - </vehicle> - <vehicle id="797" depart="797.00"> - <route edges="3/3to2/3 2/3to2/4 2/4to3/4 3/4to4/4"/> - </vehicle> - <vehicle id="798" depart="798.00"> - <route edges="4/3to3/3 3/3to2/3 2/3to1/3 1/3to0/3 0/3to0/2 0/2to0/1 0/1to0/2"/> - </vehicle> - <vehicle id="799" depart="799.00"> - <route edges="0/1to0/0 0/0to0/1 0/1to0/2"/> - </vehicle> - <vehicle id="800" depart="800.00"> - <route edges="4/3to4/4 4/4to3/4 3/4to3/3 3/3to2/3"/> - </vehicle> - <vehicle id="801" depart="801.00"> - <route edges="3/0to2/0 2/0to2/1 2/1to3/1 3/1to4/1 4/1to3/1"/> - </vehicle> - <vehicle id="802" depart="802.00"> - <route edges="3/1to4/1 4/1to3/1 3/1to3/2 3/2to2/2"/> - </vehicle> - <vehicle id="803" depart="803.00"> - <route edges="0/2to0/1 0/1to0/2 0/2to0/3 0/3to1/3 1/3to2/3 2/3to3/3 3/3to3/2"/> - </vehicle> - <vehicle id="804" depart="804.00"> - <route edges="1/1to2/1 2/1to2/0 2/0to3/0"/> - </vehicle> - <vehicle id="805" depart="805.00"> - <route edges="4/3to3/3 3/3to3/2 3/2to3/1"/> - </vehicle> - <vehicle id="806" depart="806.00"> - <route edges="3/0to2/0 2/0to2/1 2/1to3/1 3/1to2/1"/> - </vehicle> - <vehicle id="807" depart="807.00"> - <route edges="3/0to4/0 4/0to3/0 3/0to2/0 2/0to2/1 2/1to2/2"/> - </vehicle> - <vehicle id="808" depart="808.00"> - <route edges="2/1to1/1 1/1to1/2 1/2to2/2 2/2to1/2"/> - </vehicle> - <vehicle id="809" depart="809.00"> - <route edges="4/0to3/0 3/0to2/0 2/0to2/1 2/1to2/2 2/2to2/3 2/3to3/3"/> - </vehicle> - <vehicle id="810" depart="810.00"> - <route edges="1/4to0/4 0/4to0/3 0/3to0/2 0/2to0/1 0/1to1/1 1/1to0/1"/> - </vehicle> - <vehicle id="811" depart="811.00"> - <route edges="0/2to0/3 0/3to0/2 0/2to1/2 1/2to1/1"/> - </vehicle> - <vehicle id="812" depart="812.00"> - <route edges="0/4to1/4 1/4to1/3 1/3to1/2 1/2to1/1 1/1to1/0 1/0to2/0 2/0to3/0"/> - </vehicle> - <vehicle id="813" depart="813.00"> - <route edges="2/3to2/4 2/4to1/4 1/4to1/3 1/3to0/3 0/3to0/2 0/2to1/2"/> - </vehicle> - <vehicle id="814" depart="814.00"> - <route edges="1/4to1/3 1/3to0/3 0/3to1/3"/> - </vehicle> - <vehicle id="815" depart="815.00"> - <route edges="3/1to4/1 4/1to4/2 4/2to4/3 4/3to4/4"/> - </vehicle> - <vehicle id="816" depart="816.00"> - <route edges="4/3to3/3 3/3to2/3 2/3to1/3 1/3to0/3 0/3to0/2 0/2to0/1 0/1to0/0 0/0to1/0"/> - </vehicle> - <vehicle id="817" depart="817.00"> - <route edges="4/1to4/2 4/2to3/2 3/2to2/2 2/2to1/2 1/2to1/3 1/3to1/4 1/4to1/3"/> - </vehicle> - <vehicle id="818" depart="818.00"> - <route edges="3/3to4/3 4/3to3/3 3/3to3/2 3/2to2/2"/> - </vehicle> - <vehicle id="819" depart="819.00"> - <route edges="3/3to3/2 3/2to3/1 3/1to3/0 3/0to4/0"/> - </vehicle> - <vehicle id="820" depart="820.00"> - <route edges="4/3to4/4 4/4to3/4 3/4to2/4 2/4to2/3 2/3to2/2 2/2to2/1 2/1to1/1"/> - </vehicle> - <vehicle id="821" depart="821.00"> - <route edges="2/1to2/2 2/2to1/2 1/2to0/2 0/2to0/1 0/1to0/0"/> - </vehicle> - <vehicle id="822" depart="822.00"> - <route edges="3/1to2/1 2/1to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to0/4"/> - </vehicle> - <vehicle id="823" depart="823.00"> - <route edges="3/4to2/4 2/4to3/4 3/4to3/3"/> - </vehicle> - <vehicle id="824" depart="824.00"> - <route edges="0/0to1/0 1/0to1/1 1/1to1/2 1/2to2/2"/> - </vehicle> - <vehicle id="825" depart="825.00"> - <route edges="3/3to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to3/2"/> - </vehicle> - <vehicle id="826" depart="826.00"> - <route edges="4/3to4/2 4/2to4/1"/> - </vehicle> - <vehicle id="827" depart="827.00"> - <route edges="1/0to2/0 2/0to2/1 2/1to2/2"/> - </vehicle> - <vehicle id="828" depart="828.00"> - <route edges="4/1to4/0 4/0to3/0 3/0to3/1 3/1to3/2 3/2to2/2"/> - </vehicle> - <vehicle id="829" depart="829.00"> - <route edges="2/3to3/3 3/3to2/3 2/3to2/2 2/2to2/1 2/1to3/1"/> - </vehicle> - <vehicle id="830" depart="830.00"> - <route edges="4/3to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to4/0 4/0to4/1"/> - </vehicle> - <vehicle id="831" depart="831.00"> - <route edges="2/2to2/3 2/3to2/2 2/2to2/1 2/1to2/0 2/0to3/0 3/0to2/0"/> - </vehicle> - <vehicle id="832" depart="832.00"> - <route edges="1/0to2/0 2/0to2/1 2/1to2/2 2/2to2/3 2/3to3/3 3/3to3/4"/> - </vehicle> - <vehicle id="833" depart="833.00"> - <route edges="2/2to3/2 3/2to2/2 2/2to2/3 2/3to2/4"/> - </vehicle> - <vehicle id="834" depart="834.00"> - <route edges="3/2to4/2 4/2to3/2 3/2to2/2 2/2to1/2"/> - </vehicle> - <vehicle id="835" depart="835.00"> - <route edges="2/1to2/2 2/2to3/2 3/2to4/2"/> - </vehicle> - <vehicle id="836" depart="836.00"> - <route edges="4/2to4/1 4/1to3/1 3/1to2/1 2/1to1/1 1/1to1/2 1/2to1/3 1/3to2/3"/> - </vehicle> - <vehicle id="837" depart="837.00"> - <route edges="3/0to3/1 3/1to2/1 2/1to1/1 1/1to0/1 0/1to0/2 0/2to0/1"/> - </vehicle> - <vehicle id="838" depart="838.00"> - <route edges="4/1to4/2 4/2to3/2 3/2to2/2 2/2to1/2 1/2to1/3 1/3to1/4 1/4to1/3"/> - </vehicle> - <vehicle id="839" depart="839.00"> - <route edges="4/4to4/3 4/3to3/3 3/3to2/3 2/3to2/4 2/4to1/4"/> - </vehicle> - <vehicle id="840" depart="840.00"> - <route edges="1/2to0/2 0/2to1/2"/> - </vehicle> - <vehicle id="841" depart="841.00"> - <route edges="2/2to2/1 2/1to2/2 2/2to2/3 2/3to2/2"/> - </vehicle> - <vehicle id="842" depart="842.00"> - <route edges="3/3to2/3 2/3to1/3 1/3to1/2"/> - </vehicle> - <vehicle id="843" depart="843.00"> - <route edges="3/0to3/1 3/1to2/1 2/1to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to0/4"/> - </vehicle> - <vehicle id="844" depart="844.00"> - <route edges="4/0to4/1 4/1to3/1 3/1to2/1 2/1to2/2 2/2to2/3 2/3to2/4 2/4to2/3"/> - </vehicle> - <vehicle id="845" depart="845.00"> - <route edges="0/2to0/3 0/3to1/3 1/3to1/4 1/4to2/4 2/4to3/4"/> - </vehicle> - <vehicle id="846" depart="846.00"> - <route edges="4/3to4/4 4/4to3/4 3/4to2/4 2/4to2/3 2/3to2/2 2/2to2/1 2/1to1/1"/> - </vehicle> - <vehicle id="847" depart="847.00"> - <route edges="4/0to3/0 3/0to3/1 3/1to3/2"/> - </vehicle> - <vehicle id="848" depart="848.00"> - <route edges="3/2to3/3 3/3to2/3 2/3to2/2 2/2to2/1 2/1to2/0"/> - </vehicle> - <vehicle id="849" depart="849.00"> - <route edges="3/3to3/2 3/2to3/1 3/1to4/1 4/1to4/2"/> - </vehicle> - <vehicle id="850" depart="850.00"> - <route edges="4/1to4/0 4/0to3/0 3/0to2/0 2/0to1/0 1/0to1/1 1/1to1/0"/> - </vehicle> - <vehicle id="851" depart="851.00"> - <route edges="2/0to3/0 3/0to2/0 2/0to2/1 2/1to2/2 2/2to2/3 2/3to2/4 2/4to1/4"/> - </vehicle> - <vehicle id="852" depart="852.00"> - <route edges="0/2to1/2 1/2to1/1 1/1to1/0 1/0to2/0 2/0to3/0"/> - </vehicle> - <vehicle id="853" depart="853.00"> - <route edges="3/0to3/1 3/1to2/1 2/1to1/1 1/1to0/1 0/1to0/2"/> - </vehicle> - <vehicle id="854" depart="854.00"> - <route edges="0/3to1/3 1/3to1/2 1/2to1/1"/> - </vehicle> - <vehicle id="855" depart="855.00"> - <route edges="2/3to2/2 2/2to2/1 2/1to3/1 3/1to4/1 4/1to3/1"/> - </vehicle> - <vehicle id="856" depart="856.00"> - <route edges="1/1to1/2 1/2to2/2 2/2to2/3"/> - </vehicle> - <vehicle id="857" depart="857.00"> - <route edges="2/0to2/1 2/1to1/1 1/1to0/1 0/1to0/2 0/2to0/3 0/3to0/2"/> - </vehicle> - <vehicle id="858" depart="858.00"> - <route edges="2/3to1/3 1/3to1/2 1/2to1/1 1/1to1/0 1/0to2/0 2/0to2/1"/> - </vehicle> - <vehicle id="859" depart="859.00"> - <route edges="2/3to2/4 2/4to3/4 3/4to4/4 4/4to3/4"/> - </vehicle> - <vehicle id="860" depart="860.00"> - <route edges="0/3to0/2 0/2to0/3 0/3to1/3 1/3to2/3 2/3to3/3"/> - </vehicle> - <vehicle id="861" depart="861.00"> - <route edges="4/1to3/1 3/1to2/1 2/1to1/1"/> - </vehicle> - <vehicle id="862" depart="862.00"> - <route edges="4/3to4/2 4/2to3/2 3/2to2/2 2/2to1/2 1/2to0/2 0/2to0/3 0/3to0/2"/> - </vehicle> - <vehicle id="863" depart="863.00"> - <route edges="3/0to4/0 4/0to3/0 3/0to3/1 3/1to3/2 3/2to3/3 3/3to3/4 3/4to3/3"/> - </vehicle> - <vehicle id="864" depart="864.00"> - <route edges="2/2to3/2 3/2to2/2 2/2to1/2 1/2to1/3 1/3to1/2"/> - </vehicle> - <vehicle id="865" depart="865.00"> - <route edges="1/1to1/2 1/2to1/1 1/1to1/0"/> - </vehicle> - <vehicle id="866" depart="866.00"> - <route edges="0/4to1/4 1/4to1/3 1/3to2/3 2/3to3/3 3/3to4/3 4/3to3/3"/> - </vehicle> - <vehicle id="867" depart="867.00"> - <route edges="2/3to2/4 2/4to1/4 1/4to1/3 1/3to0/3 0/3to0/2 0/2to0/1 0/1to1/1"/> - </vehicle> - <vehicle id="868" depart="868.00"> - <route edges="0/1to0/0 0/0to0/1 0/1to0/2 0/2to1/2 1/2to2/2"/> - </vehicle> - <vehicle id="869" depart="869.00"> - <route edges="2/3to3/3 3/3to2/3 2/3to1/3 1/3to1/2 1/2to1/1 1/1to0/1"/> - </vehicle> - <vehicle id="870" depart="870.00"> - <route edges="2/2to2/3 2/3to3/3 3/3to4/3 4/3to4/4"/> - </vehicle> - <vehicle id="871" depart="871.00"> - <route edges="4/4to4/3 4/3to3/3 3/3to3/4 3/4to4/4"/> - </vehicle> - <vehicle id="872" depart="872.00"> - <route edges="1/3to1/2 1/2to2/2 2/2to2/3"/> - </vehicle> - <vehicle id="873" depart="873.00"> - <route edges="0/2to0/1 0/1to0/2 0/2to1/2 1/2to2/2 2/2to3/2 3/2to4/2"/> - </vehicle> - <vehicle id="874" depart="874.00"> - <route edges="1/4to1/3 1/3to1/2 1/2to1/1 1/1to1/0 1/0to2/0 2/0to3/0 3/0to3/1"/> - </vehicle> - <vehicle id="875" depart="875.00"> - <route edges="1/4to2/4 2/4to3/4 3/4to4/4"/> - </vehicle> - <vehicle id="876" depart="876.00"> - <route edges="1/1to1/2 1/2to1/1 1/1to2/1 2/1to3/1 3/1to4/1 4/1to4/2"/> - </vehicle> - <vehicle id="877" depart="877.00"> - <route edges="4/2to3/2 3/2to3/1 3/1to4/1"/> - </vehicle> - <vehicle id="878" depart="878.00"> - <route edges="2/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to4/0 4/0to4/1"/> - </vehicle> - <vehicle id="879" depart="879.00"> - <route edges="1/3to0/3 0/3to1/3 1/3to1/4 1/4to2/4 2/4to1/4"/> - </vehicle> - <vehicle id="880" depart="880.00"> - <route edges="0/2to1/2 1/2to1/1 1/1to1/0 1/0to1/1"/> - </vehicle> - <vehicle id="881" depart="881.00"> - <route edges="4/3to3/3 3/3to2/3 2/3to1/3 1/3to0/3 0/3to0/2 0/2to0/1 0/1to1/1"/> - </vehicle> - <vehicle id="882" depart="882.00"> - <route edges="4/2to4/3 4/3to3/3 3/3to2/3 2/3to1/3 1/3to1/4 1/4to2/4"/> - </vehicle> - <vehicle id="883" depart="883.00"> - <route edges="1/4to0/4 0/4to0/3 0/3to0/2 0/2to0/1 0/1to1/1 1/1to1/0 1/0to1/1"/> - </vehicle> - <vehicle id="884" depart="884.00"> - <route edges="1/0to1/1 1/1to1/2 1/2to1/3 1/3to2/3 2/3to1/3"/> - </vehicle> - <vehicle id="885" depart="885.00"> - <route edges="2/4to1/4 1/4to0/4"/> - </vehicle> - <vehicle id="886" depart="886.00"> - <route edges="4/4to4/3 4/3to3/3 3/3to2/3 2/3to1/3 1/3to1/2 1/2to1/1 1/1to1/0 1/0to2/0"/> - </vehicle> - <vehicle id="887" depart="887.00"> - <route edges="1/0to0/0 0/0to0/1 0/1to0/2 0/2to1/2 1/2to1/1"/> - </vehicle> - <vehicle id="888" depart="888.00"> - <route edges="1/3to1/2 1/2to2/2 2/2to2/1"/> - </vehicle> - <vehicle id="889" depart="889.00"> - <route edges="4/2to3/2 3/2to2/2 2/2to3/2"/> - </vehicle> - <vehicle id="890" depart="890.00"> - <route edges="1/1to0/1 0/1to1/1 1/1to1/0 1/0to2/0 2/0to2/1"/> - </vehicle> - <vehicle id="891" depart="891.00"> - <route edges="3/4to2/4 2/4to1/4 1/4to1/3 1/3to0/3 0/3to0/2 0/2to1/2"/> - </vehicle> - <vehicle id="892" depart="892.00"> - <route edges="0/0to0/1 0/1to1/1 1/1to1/2"/> - </vehicle> - <vehicle id="893" depart="893.00"> - <route edges="1/4to0/4 0/4to0/3 0/3to1/3 1/3to2/3 2/3to2/2"/> - </vehicle> - <vehicle id="894" depart="894.00"> - <route edges="3/1to2/1 2/1to2/0 2/0to3/0 3/0to4/0"/> - </vehicle> - <vehicle id="895" depart="895.00"> - <route edges="3/1to3/2 3/2to2/2 2/2to1/2 1/2to0/2 0/2to0/1 0/1to0/0"/> - </vehicle> - <vehicle id="896" depart="896.00"> - <route edges="3/3to3/4 3/4to2/4 2/4to1/4 1/4to1/3"/> - </vehicle> - <vehicle id="897" depart="897.00"> - <route edges="1/4to0/4 0/4to0/3 0/3to0/2 0/2to1/2 1/2to2/2 2/2to2/3"/> - </vehicle> - <vehicle id="898" depart="898.00"> - <route edges="2/1to2/2 2/2to2/3 2/3to3/3 3/3to4/3"/> - </vehicle> - <vehicle id="899" depart="899.00"> - <route edges="3/2to2/2 2/2to3/2 3/2to4/2 4/2to4/1"/> - </vehicle> - <vehicle id="900" depart="900.00"> - <route edges="2/3to3/3 3/3to2/3 2/3to1/3 1/3to0/3 0/3to0/4"/> - </vehicle> - <vehicle id="901" depart="901.00"> - <route edges="3/3to3/4 3/4to2/4 2/4to1/4 1/4to1/3 1/3to0/3 0/3to0/4"/> - </vehicle> - <vehicle id="902" depart="902.00"> - <route edges="1/3to1/4 1/4to1/3 1/3to1/2 1/2to1/1 1/1to2/1 2/1to3/1 3/1to2/1"/> - </vehicle> - <vehicle id="903" depart="903.00"> - <route edges="3/1to3/2 3/2to2/2 2/2to2/3"/> - </vehicle> - <vehicle id="904" depart="904.00"> - <route edges="3/3to2/3 2/3to2/2 2/2to2/1 2/1to3/1 3/1to2/1"/> - </vehicle> - <vehicle id="905" depart="905.00"> - <route edges="3/2to4/2 4/2to3/2 3/2to2/2 2/2to1/2 1/2to1/1 1/1to2/1"/> - </vehicle> - <vehicle id="906" depart="906.00"> - <route edges="0/0to0/1 0/1to1/1 1/1to1/0 1/0to2/0 2/0to3/0 3/0to2/0"/> - </vehicle> - <vehicle id="907" depart="907.00"> - <route edges="0/3to1/3 1/3to0/3 0/3to0/4 0/4to0/3"/> - </vehicle> - <vehicle id="908" depart="908.00"> - <route edges="4/0to3/0 3/0to3/1 3/1to3/2 3/2to3/3 3/3to4/3 4/3to4/2"/> - </vehicle> - <vehicle id="909" depart="909.00"> - <route edges="1/4to0/4 0/4to0/3 0/3to0/2 0/2to0/1"/> - </vehicle> - <vehicle id="910" depart="910.00"> - <route edges="1/3to1/4 1/4to1/3 1/3to2/3 2/3to3/3 3/3to3/2"/> - </vehicle> - <vehicle id="911" depart="911.00"> - <route edges="0/3to0/2 0/2to1/2 1/2to2/2 2/2to3/2 3/2to3/1"/> - </vehicle> - <vehicle id="912" depart="912.00"> - <route edges="3/2to3/3 3/3to2/3 2/3to1/3 1/3to1/2"/> - </vehicle> - <vehicle id="913" depart="913.00"> - <route edges="2/1to1/1 1/1to2/1 2/1to3/1"/> - </vehicle> - <vehicle id="914" depart="914.00"> - <route edges="0/2to0/3 0/3to0/2 0/2to1/2 1/2to2/2 2/2to2/3"/> - </vehicle> - <vehicle id="915" depart="915.00"> - <route edges="2/3to2/4 2/4to1/4 1/4to2/4"/> - </vehicle> - <vehicle id="916" depart="916.00"> - <route edges="1/0to1/1 1/1to1/0 1/0to2/0 2/0to3/0 3/0to3/1"/> - </vehicle> - <vehicle id="917" depart="917.00"> - <route edges="2/1to2/0 2/0to1/0 1/0to1/1"/> - </vehicle> - <vehicle id="918" depart="918.00"> - <route edges="3/0to3/1 3/1to2/1 2/1to1/1 1/1to0/1 0/1to0/0 0/0to0/1"/> - </vehicle> - <vehicle id="919" depart="919.00"> - <route edges="3/3to3/2 3/2to2/2 2/2to1/2 1/2to0/2"/> - </vehicle> - <vehicle id="920" depart="920.00"> - <route edges="0/2to0/1 0/1to0/2 0/2to1/2 1/2to1/3"/> - </vehicle> - <vehicle id="921" depart="921.00"> - <route edges="1/2to1/1 1/1to1/0 1/0to2/0 2/0to2/1"/> - </vehicle> - <vehicle id="922" depart="922.00"> - <route edges="1/1to1/2 1/2to2/2 2/2to3/2 3/2to4/2 4/2to3/2"/> - </vehicle> - <vehicle id="923" depart="923.00"> - <route edges="4/1to3/1 3/1to2/1 2/1to1/1 1/1to1/2 1/2to1/3 1/3to1/2"/> - </vehicle> - <vehicle id="924" depart="924.00"> - <route edges="3/1to3/0 3/0to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to1/3"/> - </vehicle> - <vehicle id="925" depart="925.00"> - <route edges="2/2to3/2 3/2to2/2 2/2to1/2 1/2to1/1 1/1to1/0"/> - </vehicle> - <vehicle id="926" depart="926.00"> - <route edges="4/3to4/2 4/2to3/2 3/2to4/2"/> - </vehicle> - <vehicle id="927" depart="927.00"> - <route edges="2/3to1/3 1/3to1/2 1/2to2/2 2/2to3/2 3/2to3/1"/> - </vehicle> - <vehicle id="928" depart="928.00"> - <route edges="0/3to1/3 1/3to1/2 1/2to2/2 2/2to3/2 3/2to2/2"/> - </vehicle> - <vehicle id="929" depart="929.00"> - <route edges="2/4to2/3 2/3to2/2 2/2to2/1 2/1to2/0 2/0to3/0"/> - </vehicle> - <vehicle id="930" depart="930.00"> - <route edges="3/4to4/4 4/4to3/4 3/4to2/4 2/4to1/4 1/4to1/3 1/3to0/3 0/3to0/2 0/2to1/2"/> - </vehicle> - <vehicle id="931" depart="931.00"> - <route edges="4/0to4/1 4/1to3/1 3/1to2/1 2/1to2/2 2/2to2/3 2/3to2/2"/> - </vehicle> - <vehicle id="932" depart="932.00"> - <route edges="3/1to2/1 2/1to2/2 2/2to3/2 3/2to3/3"/> - </vehicle> - <vehicle id="933" depart="933.00"> - <route edges="3/4to2/4 2/4to2/3 2/3to3/3 3/3to4/3 4/3to4/2"/> - </vehicle> - <vehicle id="934" depart="934.00"> - <route edges="0/0to0/1 0/1to0/2 0/2to0/3 0/3to1/3 1/3to2/3 2/3to2/4"/> - </vehicle> - <vehicle id="935" depart="935.00"> - <route edges="1/0to2/0 2/0to2/1 2/1to1/1"/> - </vehicle> - <vehicle id="936" depart="936.00"> - <route edges="0/1to0/0 0/0to0/1 0/1to0/2 0/2to0/3 0/3to1/3"/> - </vehicle> - <vehicle id="937" depart="937.00"> - <route edges="3/2to3/1 3/1to3/0 3/0to3/1"/> - </vehicle> - <vehicle id="938" depart="938.00"> - <route edges="1/4to0/4 0/4to0/3 0/3to0/2 0/2to0/1 0/1to1/1 1/1to2/1 2/1to3/1 3/1to3/2"/> - </vehicle> - <vehicle id="939" depart="939.00"> - <route edges="4/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to3/0"/> - </vehicle> - <vehicle id="940" depart="940.00"> - <route edges="0/1to1/1 1/1to0/1 0/1to0/2 0/2to0/3 0/3to0/4 0/4to0/3"/> - </vehicle> - <vehicle id="941" depart="941.00"> - <route edges="2/3to1/3 1/3to1/2 1/2to1/1 1/1to2/1"/> - </vehicle> - <vehicle id="942" depart="942.00"> - <route edges="3/1to2/1 2/1to2/2 2/2to1/2"/> - </vehicle> - <vehicle id="943" depart="943.00"> - <route edges="1/2to2/2 2/2to3/2 3/2to3/1"/> - </vehicle> - <vehicle id="944" depart="944.00"> - <route edges="2/3to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to4/0 4/0to3/0"/> - </vehicle> - <vehicle id="945" depart="945.00"> - <route edges="0/3to1/3 1/3to0/3 0/3to0/2 0/2to0/1 0/1to0/0"/> - </vehicle> - <vehicle id="946" depart="946.00"> - <route edges="1/1to1/2 1/2to1/3 1/3to2/3 2/3to3/3 3/3to2/3"/> - </vehicle> - <vehicle id="947" depart="947.00"> - <route edges="0/4to0/3 0/3to1/3 1/3to1/4 1/4to2/4 2/4to3/4 3/4to3/3"/> - </vehicle> - <vehicle id="948" depart="948.00"> - <route edges="0/1to0/0 0/0to0/1 0/1to0/2 0/2to1/2 1/2to1/3"/> - </vehicle> - <vehicle id="949" depart="949.00"> - <route edges="0/2to1/2 1/2to0/2 0/2to0/1 0/1to0/0 0/0to0/1"/> - </vehicle> - <vehicle id="950" depart="950.00"> - <route edges="2/0to3/0 3/0to3/1 3/1to3/2 3/2to4/2 4/2to4/3"/> - </vehicle> - <vehicle id="951" depart="951.00"> - <route edges="2/2to3/2 3/2to2/2 2/2to2/3"/> - </vehicle> - <vehicle id="952" depart="952.00"> - <route edges="4/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to2/1"/> - </vehicle> - <vehicle id="953" depart="953.00"> - <route edges="2/2to1/2 1/2to1/1 1/1to1/0 1/0to2/0 2/0to1/0"/> - </vehicle> - <vehicle id="954" depart="954.00"> - <route edges="2/1to3/1 3/1to2/1 2/1to2/2 2/2to2/3 2/3to2/4 2/4to1/4"/> - </vehicle> - <vehicle id="955" depart="955.00"> - <route edges="2/2to2/3 2/3to1/3 1/3to1/2 1/2to1/1 1/1to1/0"/> - </vehicle> - <vehicle id="956" depart="956.00"> - <route edges="1/4to0/4 0/4to0/3 0/3to0/2 0/2to0/1 0/1to1/1 1/1to1/0 1/0to2/0 2/0to3/0 3/0to2/0"/> - </vehicle> - <vehicle id="957" depart="957.00"> - <route edges="1/2to1/1 1/1to2/1 2/1to3/1"/> - </vehicle> - <vehicle id="958" depart="958.00"> - <route edges="1/1to1/0 1/0to1/1 1/1to1/2"/> - </vehicle> - <vehicle id="959" depart="959.00"> - <route edges="1/3to0/3 0/3to0/2 0/2to1/2 1/2to0/2"/> - </vehicle> - <vehicle id="960" depart="960.00"> - <route edges="4/2to4/1 4/1to3/1 3/1to2/1 2/1to1/1 1/1to1/2 1/2to1/3 1/3to1/4"/> - </vehicle> - <vehicle id="961" depart="961.00"> - <route edges="0/3to0/2 0/2to0/3 0/3to1/3 1/3to2/3 2/3to3/3 3/3to4/3"/> - </vehicle> - <vehicle id="962" depart="962.00"> - <route edges="3/1to2/1 2/1to1/1 1/1to0/1 0/1to0/2"/> - </vehicle> - <vehicle id="963" depart="963.00"> - <route edges="1/4to0/4 0/4to0/3 0/3to0/2 0/2to1/2"/> - </vehicle> - <vehicle id="964" depart="964.00"> - <route edges="0/1to0/0 0/0to1/0 1/0to2/0 2/0to3/0"/> - </vehicle> - <vehicle id="965" depart="965.00"> - <route edges="2/2to3/2"/> - </vehicle> - <vehicle id="966" depart="966.00"> - <route edges="2/2to1/2 1/2to1/3 1/3to2/3 2/3to3/3 3/3to3/4"/> - </vehicle> - <vehicle id="967" depart="967.00"> - <route edges="1/1to2/1 2/1to2/2 2/2to2/3"/> - </vehicle> - <vehicle id="968" depart="968.00"> - <route edges="0/2to0/1 0/1to1/1 1/1to1/0 1/0to2/0 2/0to3/0 3/0to4/0 4/0to4/1"/> - </vehicle> - <vehicle id="969" depart="969.00"> - <route edges="3/3to2/3 2/3to2/2 2/2to2/1 2/1to2/0 2/0to3/0 3/0to2/0"/> - </vehicle> - <vehicle id="970" depart="970.00"> - <route edges="0/2to0/3 0/3to0/2 0/2to0/1 0/1to1/1 1/1to1/0 1/0to2/0"/> - </vehicle> - <vehicle id="971" depart="971.00"> - <route edges="1/0to1/1 1/1to1/2 1/2to1/3 1/3to2/3 2/3to3/3"/> - </vehicle> - <vehicle id="972" depart="972.00"> - <route edges="2/4to3/4 3/4to2/4 2/4to1/4 1/4to1/3 1/3to0/3 0/3to0/2 0/2to0/1"/> - </vehicle> - <vehicle id="973" depart="973.00"> - <route edges="0/1to0/2 0/2to0/3 0/3to1/3 1/3to2/3 2/3to3/3 3/3to3/2"/> - </vehicle> - <vehicle id="974" depart="974.00"> - <route edges="2/1to3/1 3/1to2/1 2/1to1/1 1/1to0/1 0/1to0/0 0/0to1/0"/> - </vehicle> - <vehicle id="975" depart="975.00"> - <route edges="2/4to1/4 1/4to1/3 1/3to1/2 1/2to1/1 1/1to1/0 1/0to2/0 2/0to3/0 3/0to2/0"/> - </vehicle> - <vehicle id="976" depart="976.00"> - <route edges="3/3to3/2 3/2to2/2 2/2to2/1 2/1to2/0 2/0to2/1"/> - </vehicle> - <vehicle id="977" depart="977.00"> - <route edges="4/2to4/3 4/3to3/3 3/3to2/3 2/3to2/2 2/2to1/2"/> - </vehicle> - <vehicle id="978" depart="978.00"> - <route edges="2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to2/4 2/4to1/4"/> - </vehicle> - <vehicle id="979" depart="979.00"> - <route edges="3/1to3/0 3/0to2/0 2/0to1/0 1/0to1/1 1/1to0/1 0/1to0/2 0/2to0/3"/> - </vehicle> - <vehicle id="980" depart="980.00"> - <route edges="2/0to3/0 3/0to3/1 3/1to3/2 3/2to3/3 3/3to3/4 3/4to3/3"/> - </vehicle> - <vehicle id="981" depart="981.00"> - <route edges="1/2to0/2 0/2to0/1 0/1to1/1 1/1to2/1 2/1to3/1 3/1to2/1"/> - </vehicle> - <vehicle id="982" depart="982.00"> - <route edges="0/3to1/3 1/3to2/3 2/3to2/4"/> - </vehicle> - <vehicle id="983" depart="983.00"> - <route edges="2/4to3/4 3/4to2/4 2/4to1/4 1/4to1/3 1/3to0/3 0/3to0/2"/> - </vehicle> - <vehicle id="984" depart="984.00"> - <route edges="1/1to1/2 1/2to1/3 1/3to1/4 1/4to2/4 2/4to2/3"/> - </vehicle> - <vehicle id="985" depart="985.00"> - <route edges="4/1to4/0 4/0to3/0 3/0to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to0/4"/> - </vehicle> - <vehicle id="986" depart="986.00"> - <route edges="3/2to3/1 3/1to3/2 3/2to3/3 3/3to4/3 4/3to3/3"/> - </vehicle> - <vehicle id="987" depart="987.00"> - <route edges="4/1to3/1 3/1to3/0 3/0to4/0 4/0to3/0"/> - </vehicle> - <vehicle id="988" depart="988.00"> - <route edges="3/3to4/3 4/3to3/3 3/3to2/3 2/3to1/3 1/3to1/2 1/2to1/3"/> - </vehicle> - <vehicle id="989" depart="989.00"> - <route edges="4/0to4/1 4/1to4/2 4/2to4/3 4/3to4/4"/> - </vehicle> - <vehicle id="990" depart="990.00"> - <route edges="0/3to0/4 0/4to0/3 0/3to1/3 1/3to2/3 2/3to3/3 3/3to3/4"/> - </vehicle> - <vehicle id="991" depart="991.00"> - <route edges="3/4to4/4 4/4to3/4 3/4to2/4 2/4to1/4 1/4to1/3 1/3to1/2 1/2to1/3"/> - </vehicle> - <vehicle id="992" depart="992.00"> - <route edges="2/0to1/0 1/0to1/1 1/1to1/2 1/2to2/2 2/2to3/2 3/2to3/1"/> - </vehicle> - <vehicle id="993" depart="993.00"> - <route edges="1/0to1/1 1/1to1/2 1/2to2/2"/> - </vehicle> - <vehicle id="994" depart="994.00"> - <route edges="0/2to0/3 0/3to0/2 0/2to0/1 0/1to1/1 1/1to1/0"/> - </vehicle> - <vehicle id="995" depart="995.00"> - <route edges="4/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to4/0 4/0to3/0"/> - </vehicle> - <vehicle id="996" depart="996.00"> - <route edges="4/2to4/3 4/3to3/3 3/3to2/3 2/3to1/3 1/3to1/2 1/2to1/1 1/1to1/2"/> - </vehicle> - <vehicle id="997" depart="997.00"> - <route edges="3/0to4/0 4/0to3/0 3/0to3/1 3/1to3/2 3/2to3/3 3/3to3/2"/> - </vehicle> - <vehicle id="998" depart="998.00"> - <route edges="3/4to2/4 2/4to1/4 1/4to1/3 1/3to1/2 1/2to1/1 1/1to1/0 1/0to2/0"/> - </vehicle> - <vehicle id="999" depart="999.00"> - <route edges="1/4to1/3 1/3to1/4 1/4to2/4 2/4to2/3"/> - </vehicle> - <vehicle id="1000" depart="1000.00"> - <route edges="3/1to4/1 4/1to3/1 3/1to2/1 2/1to2/0 2/0to1/0"/> - </vehicle> - <vehicle id="1001" depart="1001.00"> - <route edges="1/3to1/2 1/2to1/3 1/3to2/3 2/3to3/3"/> - </vehicle> - <vehicle id="1002" depart="1002.00"> - <route edges="1/1to2/1 2/1to2/2 2/2to2/3 2/3to3/3"/> - </vehicle> - <vehicle id="1003" depart="1003.00"> - <route edges="0/2to1/2 1/2to0/2 0/2to0/1 0/1to0/0 0/0to1/0"/> - </vehicle> - <vehicle id="1004" depart="1004.00"> - <route edges="3/1to4/1 4/1to3/1 3/1to2/1 2/1to2/2 2/2to2/3 2/3to2/4 2/4to2/3"/> - </vehicle> - <vehicle id="1005" depart="1005.00"> - <route edges="0/2to0/1 0/1to0/2 0/2to1/2 1/2to2/2 2/2to3/2 3/2to4/2"/> - </vehicle> - <vehicle id="1006" depart="1006.00"> - <route edges="4/2to4/1 4/1to3/1 3/1to2/1 2/1to1/1 1/1to0/1 0/1to0/2 0/2to0/3 0/3to1/3"/> - </vehicle> - <vehicle id="1007" depart="1007.00"> - <route edges="1/0to0/0 0/0to0/1 0/1to0/2 0/2to0/3 0/3to0/4"/> - </vehicle> - <vehicle id="1008" depart="1008.00"> - <route edges="3/2to4/2 4/2to3/2 3/2to3/1"/> - </vehicle> - <vehicle id="1009" depart="1009.00"> - <route edges="1/1to1/0 1/0to1/1 1/1to0/1 0/1to1/1"/> - </vehicle> - <vehicle id="1010" depart="1010.00"> - <route edges="3/4to2/4 2/4to1/4 1/4to1/3 1/3to0/3"/> - </vehicle> - <vehicle id="1011" depart="1011.00"> - <route edges="4/3to3/3 3/3to2/3 2/3to1/3 1/3to1/4 1/4to0/4"/> - </vehicle> - <vehicle id="1012" depart="1012.00"> - <route edges="0/1to0/2 0/2to0/1 0/1to1/1 1/1to2/1 2/1to1/1"/> - </vehicle> - <vehicle id="1013" depart="1013.00"> - <route edges="3/1to3/0 3/0to2/0 2/0to1/0 1/0to0/0"/> - </vehicle> - <vehicle id="1014" depart="1014.00"> - <route edges="4/2to4/3 4/3to3/3 3/3to3/2 3/2to3/1 3/1to2/1"/> - </vehicle> - <vehicle id="1015" depart="1015.00"> - <route edges="1/3to2/3 2/3to2/2 2/2to3/2 3/2to4/2 4/2to4/1"/> - </vehicle> - <vehicle id="1016" depart="1016.00"> - <route edges="3/2to3/1 3/1to2/1 2/1to2/2 2/2to3/2"/> - </vehicle> - <vehicle id="1017" depart="1017.00"> - <route edges="2/4to2/3 2/3to1/3 1/3to0/3 0/3to0/2 0/2to0/1 0/1to0/2"/> - </vehicle> - <vehicle id="1018" depart="1018.00"> - <route edges="3/4to3/3 3/3to3/4 3/4to4/4"/> - </vehicle> - <vehicle id="1019" depart="1019.00"> - <route edges="2/1to2/0 2/0to2/1 2/1to3/1 3/1to4/1 4/1to3/1"/> - </vehicle> - <vehicle id="1020" depart="1020.00"> - <route edges="3/2to2/2 2/2to2/3 2/3to2/4 2/4to3/4"/> - </vehicle> - <vehicle id="1021" depart="1021.00"> - <route edges="0/3to0/4 0/4to0/3 0/3to0/2 0/2to0/1 0/1to1/1 1/1to2/1 2/1to1/1"/> - </vehicle> - <vehicle id="1022" depart="1022.00"> - <route edges="2/3to2/2 2/2to2/1 2/1to2/0"/> - </vehicle> - <vehicle id="1023" depart="1023.00"> - <route edges="1/4to0/4 0/4to0/3 0/3to0/2 0/2to1/2 1/2to1/3"/> - </vehicle> - <vehicle id="1024" depart="1024.00"> - <route edges="3/0to4/0 4/0to3/0 3/0to2/0 2/0to1/0 1/0to1/1 1/1to0/1 0/1to0/2 0/2to0/3 0/3to1/3"/> - </vehicle> - <vehicle id="1025" depart="1025.00"> - <route edges="4/2to4/3 4/3to3/3 3/3to2/3 2/3to1/3 1/3to0/3 0/3to0/2 0/2to0/3"/> - </vehicle> - <vehicle id="1026" depart="1026.00"> - <route edges="1/4to0/4 0/4to0/3 0/3to0/2 0/2to0/1 0/1to1/1 1/1to2/1 2/1to3/1"/> - </vehicle> - <vehicle id="1027" depart="1027.00"> - <route edges="2/4to2/3 2/3to1/3 1/3to1/4 1/4to0/4"/> - </vehicle> - <vehicle id="1028" depart="1028.00"> - <route edges="2/2to2/1 2/1to1/1 1/1to1/0 1/0to1/1"/> - </vehicle> - <vehicle id="1029" depart="1029.00"> - <route edges="2/1to1/1 1/1to1/2 1/2to1/3 1/3to2/3 2/3to2/4"/> - </vehicle> - <vehicle id="1030" depart="1030.00"> - <route edges="1/4to1/3 1/3to2/3 2/3to3/3"/> - </vehicle> - <vehicle id="1031" depart="1031.00"> - <route edges="3/3to3/2 3/2to2/2 2/2to1/2 1/2to1/3 1/3to1/4 1/4to2/4"/> - </vehicle> - <vehicle id="1032" depart="1032.00"> - <route edges="3/3to3/2 3/2to4/2 4/2to4/3"/> - </vehicle> - <vehicle id="1033" depart="1033.00"> - <route edges="0/1to0/0 0/0to0/1 0/1to0/2 0/2to1/2 1/2to2/2 2/2to3/2 3/2to4/2 4/2to4/1"/> - </vehicle> - <vehicle id="1034" depart="1034.00"> - <route edges="2/3to3/3 3/3to2/3 2/3to2/2 2/2to2/1 2/1to2/0 2/0to2/1"/> - </vehicle> - <vehicle id="1035" depart="1035.00"> - <route edges="1/3to0/3 0/3to0/2 0/2to0/1"/> - </vehicle> - <vehicle id="1036" depart="1036.00"> - <route edges="3/1to2/1 2/1to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to2/4"/> - </vehicle> - <vehicle id="1037" depart="1037.00"> - <route edges="3/3to3/4 3/4to2/4 2/4to2/3 2/3to2/2 2/2to2/1"/> - </vehicle> - <vehicle id="1038" depart="1038.00"> - <route edges="4/1to4/2 4/2to3/2 3/2to2/2 2/2to3/2"/> - </vehicle> - <vehicle id="1039" depart="1039.00"> - <route edges="2/0to3/0 3/0to2/0 2/0to2/1 2/1to2/2 2/2to2/3 2/3to1/3"/> - </vehicle> - <vehicle id="1040" depart="1040.00"> - <route edges="4/3to4/2 4/2to3/2 3/2to2/2 2/2to2/1 2/1to2/0 2/0to3/0"/> - </vehicle> - <vehicle id="1041" depart="1041.00"> - <route edges="2/0to3/0 3/0to3/1 3/1to3/2 3/2to4/2 4/2to4/1"/> - </vehicle> - <vehicle id="1042" depart="1042.00"> - <route edges="1/0to0/0 0/0to0/1 0/1to0/0"/> - </vehicle> - <vehicle id="1043" depart="1043.00"> - <route edges="4/2to3/2 3/2to2/2 2/2to1/2 1/2to1/1 1/1to1/0 1/0to1/1"/> - </vehicle> - <vehicle id="1044" depart="1044.00"> - <route edges="3/0to3/1 3/1to2/1 2/1to1/1 1/1to0/1 0/1to0/2 0/2to1/2"/> - </vehicle> - <vehicle id="1045" depart="1045.00"> - <route edges="1/1to2/1 2/1to2/2 2/2to2/3 2/3to2/4 2/4to1/4"/> - </vehicle> - <vehicle id="1046" depart="1046.00"> - <route edges="2/3to1/3 1/3to1/2 1/2to1/1 1/1to0/1"/> - </vehicle> - <vehicle id="1047" depart="1047.00"> - <route edges="2/2to3/2 3/2to2/2 2/2to2/1 2/1to2/0 2/0to2/1"/> - </vehicle> - <vehicle id="1048" depart="1048.00"> - <route edges="3/2to2/2 2/2to1/2 1/2to0/2 0/2to1/2"/> - </vehicle> - <vehicle id="1049" depart="1049.00"> - <route edges="1/0to2/0 2/0to2/1 2/1to2/2 2/2to2/3 2/3to2/4 2/4to3/4 3/4to4/4 4/4to4/3"/> - </vehicle> - <vehicle id="1050" depart="1050.00"> - <route edges="1/3to2/3 2/3to1/3 1/3to0/3 0/3to0/2 0/2to0/3"/> - </vehicle> - <vehicle id="1051" depart="1051.00"> - <route edges="0/2to0/1 0/1to1/1 1/1to2/1 2/1to3/1"/> - </vehicle> - <vehicle id="1052" depart="1052.00"> - <route edges="2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to2/3 2/3to3/3"/> - </vehicle> - <vehicle id="1053" depart="1053.00"> - <route edges="2/3to2/2 2/2to2/3 2/3to2/4"/> - </vehicle> - <vehicle id="1054" depart="1054.00"> - <route edges="0/0to0/1 0/1to1/1 1/1to2/1 2/1to3/1 3/1to4/1 4/1to3/1"/> - </vehicle> - <vehicle id="1055" depart="1055.00"> - <route edges="1/3to0/3 0/3to0/2 0/2to0/1 0/1to0/0 0/0to1/0"/> - </vehicle> - <vehicle id="1056" depart="1056.00"> - <route edges="3/0to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/1"/> - </vehicle> - <vehicle id="1057" depart="1057.00"> - <route edges="0/4to1/4 1/4to1/3 1/3to1/2"/> - </vehicle> - <vehicle id="1058" depart="1058.00"> - <route edges="2/2to2/3 2/3to2/2 2/2to3/2 3/2to4/2 4/2to3/2"/> - </vehicle> - <vehicle id="1059" depart="1059.00"> - <route edges="4/3to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to3/1"/> - </vehicle> - <vehicle id="1060" depart="1060.00"> - <route edges="0/3to0/2 0/2to0/3 0/3to1/3 1/3to1/2"/> - </vehicle> - <vehicle id="1061" depart="1061.00"> - <route edges="3/2to3/1 3/1to4/1"/> - </vehicle> - <vehicle id="1062" depart="1062.00"> - <route edges="3/4to4/4 4/4to3/4 3/4to2/4 2/4to1/4 1/4to1/3 1/3to0/3 0/3to0/2"/> - </vehicle> - <vehicle id="1063" depart="1063.00"> - <route edges="0/1to0/2 0/2to0/3 0/3to1/3"/> - </vehicle> - <vehicle id="1064" depart="1064.00"> - <route edges="3/2to3/1 3/1to2/1 2/1to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to1/3"/> - </vehicle> - <vehicle id="1065" depart="1065.00"> - <route edges="4/3to3/3 3/3to3/2"/> - </vehicle> - <vehicle id="1066" depart="1066.00"> - <route edges="0/1to0/2 0/2to0/1 0/1to1/1 1/1to2/1 2/1to2/2"/> - </vehicle> - <vehicle id="1067" depart="1067.00"> - <route edges="0/0to0/1 0/1to0/2 0/2to0/3 0/3to1/3 1/3to2/3 2/3to3/3 3/3to3/2"/> - </vehicle> - <vehicle id="1068" depart="1068.00"> - <route edges="1/3to1/2 1/2to1/3 1/3to1/4 1/4to2/4 2/4to3/4 3/4to4/4 4/4to4/3"/> - </vehicle> - <vehicle id="1069" depart="1069.00"> - <route edges="2/2to3/2 3/2to3/3 3/3to3/2"/> - </vehicle> - <vehicle id="1070" depart="1070.00"> - <route edges="3/2to2/2 2/2to1/2 1/2to1/1 1/1to1/0 1/0to1/1"/> - </vehicle> - <vehicle id="1071" depart="1071.00"> - <route edges="1/1to1/2 1/2to1/3 1/3to1/4 1/4to2/4 2/4to3/4 3/4to2/4"/> - </vehicle> - <vehicle id="1072" depart="1072.00"> - <route edges="4/1to4/0 4/0to3/0 3/0to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to0/3"/> - </vehicle> - <vehicle id="1073" depart="1073.00"> - <route edges="3/1to4/1 4/1to3/1 3/1to2/1 2/1to1/1 1/1to0/1 0/1to1/1"/> - </vehicle> - <vehicle id="1074" depart="1074.00"> - <route edges="3/1to3/2 3/2to2/2 2/2to1/2 1/2to1/3 1/3to0/3"/> - </vehicle> - <vehicle id="1075" depart="1075.00"> - <route edges="0/1to0/2 0/2to0/1 0/1to1/1 1/1to0/1"/> - </vehicle> - <vehicle id="1076" depart="1076.00"> - <route edges="0/3to0/2 0/2to0/1 0/1to1/1 1/1to1/0 1/0to2/0 2/0to3/0 3/0to2/0"/> - </vehicle> - <vehicle id="1077" depart="1077.00"> - <route edges="3/4to3/3 3/3to2/3 2/3to1/3 1/3to1/2 1/2to1/1 1/1to1/0 1/0to2/0"/> - </vehicle> - <vehicle id="1078" depart="1078.00"> - <route edges="1/3to2/3"/> - </vehicle> - <vehicle id="1079" depart="1079.00"> - <route edges="4/4to4/3 4/3to3/3 3/3to2/3 2/3to1/3"/> - </vehicle> - <vehicle id="1080" depart="1080.00"> - <route edges="2/1to2/2 2/2to1/2 1/2to1/3 1/3to1/4"/> - </vehicle> - <vehicle id="1081" depart="1081.00"> - <route edges="2/1to2/2 2/2to1/2 1/2to1/1 1/1to1/0"/> - </vehicle> - <vehicle id="1082" depart="1082.00"> - <route edges="4/2to4/1 4/1to3/1 3/1to2/1 2/1to1/1 1/1to0/1 0/1to0/2 0/2to0/3"/> - </vehicle> - <vehicle id="1083" depart="1083.00"> - <route edges="3/4to2/4 2/4to1/4 1/4to1/3 1/3to0/3 0/3to0/2 0/2to0/1 0/1to0/0 0/0to1/0"/> - </vehicle> - <vehicle id="1084" depart="1084.00"> - <route edges="0/2to0/1 0/1to0/2 0/2to1/2 1/2to2/2 2/2to3/2 3/2to3/3"/> - </vehicle> - <vehicle id="1085" depart="1085.00"> - <route edges="2/4to1/4 1/4to1/3 1/3to0/3 0/3to0/2 0/2to0/1 0/1to0/2"/> - </vehicle> - <vehicle id="1086" depart="1086.00"> - <route edges="3/3to3/4 3/4to3/3 3/3to3/2"/> - </vehicle> - <vehicle id="1087" depart="1087.00"> - <route edges="0/1to0/0 0/0to0/1 0/1to0/2 0/2to1/2 1/2to2/2 2/2to1/2"/> - </vehicle> - <vehicle id="1088" depart="1088.00"> - <route edges="2/2to2/1 2/1to2/2 2/2to2/3 2/3to3/3 3/3to4/3 4/3to4/4"/> - </vehicle> - <vehicle id="1089" depart="1089.00"> - <route edges="2/3to2/4 2/4to1/4 1/4to0/4 0/4to1/4"/> - </vehicle> - <vehicle id="1090" depart="1090.00"> - <route edges="4/2to4/1 4/1to3/1 3/1to2/1 2/1to1/1 1/1to0/1 0/1to0/0 0/0to1/0"/> - </vehicle> - <vehicle id="1091" depart="1091.00"> - <route edges="1/2to1/1 1/1to1/0 1/0to2/0"/> - </vehicle> - <vehicle id="1092" depart="1092.00"> - <route edges="3/4to3/3 3/3to2/3 2/3to1/3 1/3to1/2 1/2to0/2"/> - </vehicle> - <vehicle id="1093" depart="1093.00"> - <route edges="1/3to1/2 1/2to1/1 1/1to2/1 2/1to3/1 3/1to3/2"/> - </vehicle> - <vehicle id="1094" depart="1094.00"> - <route edges="4/1to3/1 3/1to2/1 2/1to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to2/4"/> - </vehicle> - <vehicle id="1095" depart="1095.00"> - <route edges="2/2to3/2 3/2to2/2 2/2to2/3 2/3to3/3"/> - </vehicle> - <vehicle id="1096" depart="1096.00"> - <route edges="0/1to0/2 0/2to1/2 1/2to2/2 2/2to3/2 3/2to4/2 4/2to4/3"/> - </vehicle> - <vehicle id="1097" depart="1097.00"> - <route edges="3/3to3/4 3/4to2/4 2/4to1/4 1/4to1/3 1/3to1/2"/> - </vehicle> - <vehicle id="1098" depart="1098.00"> - <route edges="2/2to1/2 1/2to1/3 1/3to1/4 1/4to2/4"/> - </vehicle> - <vehicle id="1099" depart="1099.00"> - <route edges="1/2to2/2 2/2to2/3 2/3to3/3 3/3to4/3 4/3to4/4"/> - </vehicle> - <vehicle id="1100" depart="1100.00"> - <route edges="4/3to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to2/0"/> - </vehicle> - <vehicle id="1101" depart="1101.00"> - <route edges="3/1to2/1 2/1to1/1 1/1to1/2 1/2to1/3 1/3to0/3"/> - </vehicle> - <vehicle id="1102" depart="1102.00"> - <route edges="3/3to4/3 4/3to3/3 3/3to3/2 3/2to2/2"/> - </vehicle> - <vehicle id="1103" depart="1103.00"> - <route edges="2/1to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to2/4"/> - </vehicle> - <vehicle id="1104" depart="1104.00"> - <route edges="0/4to1/4 1/4to1/3 1/3to1/2 1/2to1/1 1/1to1/0"/> - </vehicle> - <vehicle id="1105" depart="1105.00"> - <route edges="2/4to3/4 3/4to3/3 3/3to4/3 4/3to3/3"/> - </vehicle> - <vehicle id="1106" depart="1106.00"> - <route edges="1/1to1/0 1/0to1/1 1/1to1/2 1/2to2/2 2/2to3/2 3/2to3/3"/> - </vehicle> - <vehicle id="1107" depart="1107.00"> - <route edges="2/1to2/2 2/2to3/2 3/2to4/2 4/2to4/1"/> - </vehicle> - <vehicle id="1108" depart="1108.00"> - <route edges="4/3to3/3 3/3to2/3 2/3to1/3 1/3to0/3 0/3to0/2 0/2to0/3"/> - </vehicle> - <vehicle id="1109" depart="1109.00"> - <route edges="1/0to0/0 0/0to0/1 0/1to0/2 0/2to0/3 0/3to1/3 1/3to2/3 2/3to2/4"/> - </vehicle> - <vehicle id="1110" depart="1110.00"> - <route edges="2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to1/2"/> - </vehicle> - <vehicle id="1111" depart="1111.00"> - <route edges="4/2to4/3 4/3to3/3 3/3to2/3 2/3to2/2 2/2to2/1 2/1to2/0 2/0to3/0"/> - </vehicle> - <vehicle id="1112" depart="1112.00"> - <route edges="2/1to3/1 3/1to2/1 2/1to1/1 1/1to0/1 0/1to0/2 0/2to0/3"/> - </vehicle> - <vehicle id="1113" depart="1113.00"> - <route edges="3/4to2/4 2/4to1/4 1/4to1/3 1/3to1/4"/> - </vehicle> - <vehicle id="1114" depart="1114.00"> - <route edges="1/4to2/4 2/4to1/4 1/4to1/3 1/3to0/3 0/3to0/2 0/2to1/2"/> - </vehicle> - <vehicle id="1115" depart="1115.00"> - <route edges="3/4to2/4 2/4to1/4 1/4to1/3 1/3to0/3 0/3to0/4"/> - </vehicle> - <vehicle id="1116" depart="1116.00"> - <route edges="2/3to3/3 3/3to2/3 2/3to2/4 2/4to3/4"/> - </vehicle> - <vehicle id="1117" depart="1117.00"> - <route edges="3/4to3/3 3/3to3/4 3/4to4/4"/> - </vehicle> - <vehicle id="1118" depart="1118.00"> - <route edges="4/4to3/4 3/4to2/4 2/4to1/4 1/4to1/3 1/3to2/3"/> - </vehicle> - <vehicle id="1119" depart="1119.00"> - <route edges="0/1to1/1 1/1to0/1 0/1to0/2 0/2to0/3 0/3to0/4 0/4to0/3"/> - </vehicle> - <vehicle id="1120" depart="1120.00"> - <route edges="2/3to2/4 2/4to2/3 2/3to2/2 2/2to2/1 2/1to2/0 2/0to3/0 3/0to4/0"/> - </vehicle> - <vehicle id="1121" depart="1121.00"> - <route edges="3/0to4/0 4/0to3/0 3/0to2/0 2/0to1/0 1/0to1/1 1/1to0/1 0/1to0/2 0/2to0/3 0/3to0/4 0/4to1/4"/> - </vehicle> - <vehicle id="1122" depart="1122.00"> - <route edges="0/1to1/1 1/1to2/1 2/1to3/1 3/1to2/1"/> - </vehicle> - <vehicle id="1123" depart="1123.00"> - <route edges="0/1to0/0 0/0to0/1 0/1to0/2 0/2to0/3 0/3to1/3 1/3to2/3 2/3to3/3 3/3to3/4"/> - </vehicle> - <vehicle id="1124" depart="1124.00"> - <route edges="1/1to1/0 1/0to1/1 1/1to1/2 1/2to1/1"/> - </vehicle> - <vehicle id="1125" depart="1125.00"> - <route edges="0/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to0/4"/> - </vehicle> - <vehicle id="1126" depart="1126.00"> - <route edges="0/3to0/4 0/4to1/4 1/4to2/4 2/4to3/4 3/4to4/4"/> - </vehicle> - <vehicle id="1127" depart="1127.00"> - <route edges="4/3to4/4 4/4to3/4 3/4to2/4 2/4to1/4 1/4to1/3 1/3to1/2 1/2to1/1 1/1to1/0"/> - </vehicle> - <vehicle id="1128" depart="1128.00"> - <route edges="1/3to2/3 2/3to2/2 2/2to2/1"/> - </vehicle> - <vehicle id="1129" depart="1129.00"> - <route edges="1/4to1/3 1/3to2/3 2/3to3/3 3/3to2/3"/> - </vehicle> - <vehicle id="1130" depart="1130.00"> - <route edges="0/1to0/2 0/2to0/1 0/1to1/1 1/1to1/0 1/0to1/1"/> - </vehicle> - <vehicle id="1131" depart="1131.00"> - <route edges="2/3to1/3 1/3to1/2"/> - </vehicle> - <vehicle id="1132" depart="1132.00"> - <route edges="3/3to4/3 4/3to3/3 3/3to2/3 2/3to1/3 1/3to0/3 0/3to0/4 0/4to0/3"/> - </vehicle> - <vehicle id="1133" depart="1133.00"> - <route edges="2/2to2/3 2/3to1/3 1/3to1/2 1/2to0/2"/> - </vehicle> - <vehicle id="1134" depart="1134.00"> - <route edges="0/0to0/1 0/1to0/2 0/2to0/3 0/3to1/3 1/3to1/4 1/4to2/4 2/4to3/4 3/4to2/4"/> - </vehicle> - <vehicle id="1135" depart="1135.00"> - <route edges="4/3to3/3 3/3to2/3 2/3to1/3 1/3to1/4"/> - </vehicle> - <vehicle id="1136" depart="1136.00"> - <route edges="2/1to2/0 2/0to2/1 2/1to3/1 3/1to4/1 4/1to4/2"/> - </vehicle> - <vehicle id="1137" depart="1137.00"> - <route edges="1/1to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to0/3"/> - </vehicle> - <vehicle id="1138" depart="1138.00"> - <route edges="0/4to1/4 1/4to1/3 1/3to1/2 1/2to1/1 1/1to1/0 1/0to0/0"/> - </vehicle> - <vehicle id="1139" depart="1139.00"> - <route edges="1/4to1/3 1/3to1/2 1/2to1/1 1/1to1/0"/> - </vehicle> - <vehicle id="1140" depart="1140.00"> - <route edges="4/2to4/1 4/1to3/1 3/1to3/2 3/2to3/3 3/3to2/3"/> - </vehicle> - <vehicle id="1141" depart="1141.00"> - <route edges="1/2to2/2 2/2to3/2 3/2to4/2 4/2to4/3"/> - </vehicle> - <vehicle id="1142" depart="1142.00"> - <route edges="3/1to3/0 3/0to3/1 3/1to3/2 3/2to4/2 4/2to4/3"/> - </vehicle> - <vehicle id="1143" depart="1143.00"> - <route edges="0/1to0/2 0/2to0/1 0/1to1/1 1/1to2/1 2/1to3/1 3/1to2/1"/> - </vehicle> - <vehicle id="1144" depart="1144.00"> - <route edges="0/3to0/2 0/2to1/2 1/2to2/2 2/2to3/2 3/2to3/1"/> - </vehicle> - <vehicle id="1145" depart="1145.00"> - <route edges="3/2to2/2 2/2to1/2 1/2to0/2 0/2to0/1 0/1to0/0 0/0to1/0"/> - </vehicle> - <vehicle id="1146" depart="1146.00"> - <route edges="3/1to4/1 4/1to3/1 3/1to3/2 3/2to3/3 3/3to3/4 3/4to2/4"/> - </vehicle> - <vehicle id="1147" depart="1147.00"> - <route edges="0/3to0/2 0/2to0/3 0/3to1/3 1/3to1/4 1/4to2/4 2/4to3/4 3/4to4/4"/> - </vehicle> - <vehicle id="1148" depart="1148.00"> - <route edges="3/3to4/3 4/3to3/3 3/3to2/3 2/3to1/3 1/3to0/3 0/3to0/2"/> - </vehicle> - <vehicle id="1149" depart="1149.00"> - <route edges="1/0to1/1 1/1to1/0 1/0to2/0 2/0to1/0"/> - </vehicle> - <vehicle id="1150" depart="1150.00"> - <route edges="1/1to0/1 0/1to0/2 0/2to0/3 0/3to0/4 0/4to1/4"/> - </vehicle> - <vehicle id="1151" depart="1151.00"> - <route edges="2/0to1/0 1/0to1/1 1/1to1/2 1/2to2/2 2/2to3/2 3/2to4/2 4/2to3/2"/> - </vehicle> - <vehicle id="1152" depart="1152.00"> - <route edges="2/3to3/3 3/3to3/4 3/4to3/3"/> - </vehicle> - <vehicle id="1153" depart="1153.00"> - <route edges="2/2to3/2 3/2to3/3 3/3to4/3 4/3to4/4"/> - </vehicle> - <vehicle id="1154" depart="1154.00"> - <route edges="3/3to2/3 2/3to2/4 2/4to3/4 3/4to3/3"/> - </vehicle> - <vehicle id="1155" depart="1155.00"> - <route edges="3/2to3/3 3/3to2/3 2/3to1/3"/> - </vehicle> - <vehicle id="1156" depart="1156.00"> - <route edges="0/1to0/2 0/2to0/3 0/3to1/3 1/3to2/3 2/3to3/3 3/3to4/3"/> - </vehicle> - <vehicle id="1157" depart="1157.00"> - <route edges="1/3to0/3 0/3to1/3 1/3to2/3 2/3to3/3 3/3to4/3 4/3to4/4"/> - </vehicle> - <vehicle id="1158" depart="1158.00"> - <route edges="3/3to3/4 3/4to2/4 2/4to1/4 1/4to0/4"/> - </vehicle> - <vehicle id="1159" depart="1159.00"> - <route edges="1/0to2/0 2/0to2/1 2/1to2/2 2/2to2/3 2/3to3/3 3/3to3/2"/> - </vehicle> - <vehicle id="1160" depart="1160.00"> - <route edges="2/4to1/4 1/4to1/3 1/3to0/3 0/3to0/2 0/2to0/1 0/1to0/2"/> - </vehicle> - <vehicle id="1161" depart="1161.00"> - <route edges="2/2to1/2 1/2to1/1 1/1to1/0 1/0to2/0 2/0to3/0"/> - </vehicle> - <vehicle id="1162" depart="1162.00"> - <route edges="3/1to3/2 3/2to2/2 2/2to1/2 1/2to1/3 1/3to1/4"/> - </vehicle> - <vehicle id="1163" depart="1163.00"> - <route edges="0/4to1/4 1/4to1/3"/> - </vehicle> - <vehicle id="1164" depart="1164.00"> - <route edges="3/0to3/1 3/1to3/0 3/0to4/0 4/0to3/0"/> - </vehicle> - <vehicle id="1165" depart="1165.00"> - <route edges="0/0to0/1 0/1to0/2 0/2to1/2 1/2to2/2 2/2to2/3"/> - </vehicle> - <vehicle id="1166" depart="1166.00"> - <route edges="3/2to3/1 3/1to2/1 2/1to2/2 2/2to2/3 2/3to1/3"/> - </vehicle> - <vehicle id="1167" depart="1167.00"> - <route edges="0/4to1/4 1/4to1/3 1/3to1/2 1/2to1/1 1/1to1/0 1/0to2/0 2/0to2/1"/> - </vehicle> - <vehicle id="1168" depart="1168.00"> - <route edges="0/0to0/1 0/1to1/1 1/1to2/1 2/1to3/1 3/1to4/1"/> - </vehicle> - <vehicle id="1169" depart="1169.00"> - <route edges="1/3to0/3 0/3to1/3 1/3to2/3 2/3to2/4"/> - </vehicle> - <vehicle id="1170" depart="1170.00"> - <route edges="2/4to3/4 3/4to2/4 2/4to2/3 2/3to2/2 2/2to2/1 2/1to2/0 2/0to3/0"/> - </vehicle> - <vehicle id="1171" depart="1171.00"> - <route edges="3/0to4/0 4/0to3/0 3/0to2/0 2/0to2/1 2/1to2/2 2/2to2/3 2/3to2/4 2/4to1/4"/> - </vehicle> - <vehicle id="1172" depart="1172.00"> - <route edges="3/3to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to4/0"/> - </vehicle> - <vehicle id="1173" depart="1173.00"> - <route edges="2/1to3/1 3/1to3/2 3/2to3/3 3/3to3/2"/> - </vehicle> - <vehicle id="1174" depart="1174.00"> - <route edges="0/0to1/0 1/0to2/0 2/0to3/0 3/0to4/0 4/0to4/1"/> - </vehicle> - <vehicle id="1175" depart="1175.00"> - <route edges="3/3to3/2 3/2to2/2 2/2to1/2 1/2to0/2 0/2to0/3 0/3to0/4"/> - </vehicle> - <vehicle id="1176" depart="1176.00"> - <route edges="3/1to2/1 2/1to2/0 2/0to3/0"/> - </vehicle> - <vehicle id="1177" depart="1177.00"> - <route edges="0/4to1/4 1/4to1/3 1/3to1/2 1/2to2/2 2/2to3/2 3/2to3/3"/> - </vehicle> - <vehicle id="1178" depart="1178.00"> - <route edges="3/3to2/3 2/3to2/2 2/2to3/2 3/2to3/3"/> - </vehicle> - <vehicle id="1179" depart="1179.00"> - <route edges="3/0to3/1 3/1to2/1 2/1to1/1 1/1to0/1"/> - </vehicle> - <vehicle id="1180" depart="1180.00"> - <route edges="3/2to3/1 3/1to2/1 2/1to1/1 1/1to1/2 1/2to1/3 1/3to1/4"/> - </vehicle> - <vehicle id="1181" depart="1181.00"> - <route edges="1/2to2/2 2/2to1/2 1/2to1/3 1/3to1/4 1/4to0/4"/> - </vehicle> - <vehicle id="1182" depart="1182.00"> - <route edges="3/0to2/0 2/0to2/1 2/1to2/2 2/2to3/2 3/2to3/3"/> - </vehicle> - <vehicle id="1183" depart="1183.00"> - <route edges="4/3to3/3 3/3to3/2"/> - </vehicle> - <vehicle id="1184" depart="1184.00"> - <route edges="3/2to4/2 4/2to3/2 3/2to2/2 2/2to2/3 2/3to2/4 2/4to1/4"/> - </vehicle> - <vehicle id="1185" depart="1185.00"> - <route edges="4/2to4/3 4/3to3/3 3/3to2/3 2/3to2/2 2/2to2/1 2/1to2/0"/> - </vehicle> - <vehicle id="1186" depart="1186.00"> - <route edges="3/1to2/1 2/1to2/0 2/0to3/0 3/0to2/0"/> - </vehicle> - <vehicle id="1187" depart="1187.00"> - <route edges="0/3to0/2 0/2to0/3 0/3to1/3 1/3to1/4 1/4to2/4 2/4to3/4 3/4to4/4 4/4to3/4"/> - </vehicle> - <vehicle id="1188" depart="1188.00"> - <route edges="0/2to0/1 0/1to1/1 1/1to2/1 2/1to1/1"/> - </vehicle> - <vehicle id="1189" depart="1189.00"> - <route edges="0/0to1/0 1/0to1/1 1/1to2/1 2/1to3/1"/> - </vehicle> - <vehicle id="1190" depart="1190.00"> - <route edges="2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to2/4 2/4to3/4 3/4to2/4"/> - </vehicle> - <vehicle id="1191" depart="1191.00"> - <route edges="2/1to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to2/4"/> - </vehicle> - <vehicle id="1192" depart="1192.00"> - <route edges="3/2to2/2 2/2to2/3 2/3to3/3 3/3to4/3 4/3to4/2"/> - </vehicle> - <vehicle id="1193" depart="1193.00"> - <route edges="4/1to4/2 4/2to3/2 3/2to2/2 2/2to2/1 2/1to2/0"/> - </vehicle> - <vehicle id="1194" depart="1194.00"> - <route edges="4/4to4/3 4/3to3/3 3/3to3/4 3/4to3/3"/> - </vehicle> - <vehicle id="1195" depart="1195.00"> - <route edges="3/0to4/0 4/0to4/1 4/1to4/2 4/2to4/3 4/3to3/3"/> - </vehicle> - <vehicle id="1196" depart="1196.00"> - <route edges="1/4to2/4 2/4to2/3 2/3to2/2 2/2to2/1 2/1to2/0 2/0to3/0 3/0to4/0 4/0to4/1"/> - </vehicle> - <vehicle id="1197" depart="1197.00"> - <route edges="3/1to3/2 3/2to2/2 2/2to2/1 2/1to2/0 2/0to3/0"/> - </vehicle> - <vehicle id="1198" depart="1198.00"> - <route edges="3/1to3/2 3/2to2/2 2/2to1/2 1/2to1/1 1/1to2/1"/> - </vehicle> - <vehicle id="1199" depart="1199.00"> - <route edges="3/4to2/4 2/4to3/4 3/4to4/4 4/4to3/4"/> - </vehicle> - <vehicle id="1200" depart="1200.00"> - <route edges="1/4to1/3 1/3to1/4 1/4to2/4 2/4to3/4"/> - </vehicle> - <vehicle id="1201" depart="1201.00"> - <route edges="1/2to0/2 0/2to0/1 0/1to1/1 1/1to2/1 2/1to3/1 3/1to4/1"/> - </vehicle> - <vehicle id="1202" depart="1202.00"> - <route edges="4/1to3/1 3/1to2/1 2/1to1/1 1/1to0/1 0/1to0/0 0/0to1/0"/> - </vehicle> - <vehicle id="1203" depart="1203.00"> - <route edges="4/4to3/4"/> - </vehicle> - <vehicle id="1204" depart="1204.00"> - <route edges="1/2to2/2 2/2to2/1 2/1to2/0"/> - </vehicle> - <vehicle id="1205" depart="1205.00"> - <route edges="1/2to2/2 2/2to1/2 1/2to0/2"/> - </vehicle> - <vehicle id="1206" depart="1206.00"> - <route edges="2/4to3/4 3/4to4/4"/> - </vehicle> - <vehicle id="1207" depart="1207.00"> - <route edges="2/2to1/2 1/2to1/3 1/3to1/4 1/4to2/4 2/4to1/4"/> - </vehicle> - <vehicle id="1208" depart="1208.00"> - <route edges="3/1to3/2 3/2to2/2 2/2to1/2 1/2to1/1 1/1to1/0 1/0to0/0"/> - </vehicle> - <vehicle id="1209" depart="1209.00"> - <route edges="1/1to1/2 1/2to0/2 0/2to0/3 0/3to0/4 0/4to0/3"/> - </vehicle> - <vehicle id="1210" depart="1210.00"> - <route edges="3/1to3/0 3/0to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to0/4"/> - </vehicle> - <vehicle id="1211" depart="1211.00"> - <route edges="1/1to1/0 1/0to1/1 1/1to2/1"/> - </vehicle> - <vehicle id="1212" depart="1212.00"> - <route edges="0/2to0/1 0/1to0/0"/> - </vehicle> - <vehicle id="1213" depart="1213.00"> - <route edges="3/4to4/4 4/4to3/4 3/4to2/4 2/4to1/4 1/4to1/3 1/3to2/3"/> - </vehicle> - <vehicle id="1214" depart="1214.00"> - <route edges="1/3to1/4 1/4to0/4 0/4to0/3"/> - </vehicle> - <vehicle id="1215" depart="1215.00"> - <route edges="2/2to2/1 2/1to3/1 3/1to4/1"/> - </vehicle> - <vehicle id="1216" depart="1216.00"> - <route edges="2/4to3/4 3/4to2/4 2/4to1/4 1/4to1/3 1/3to1/2 1/2to1/1 1/1to1/0 1/0to2/0"/> - </vehicle> - <vehicle id="1217" depart="1217.00"> - <route edges="1/4to1/3 1/3to1/2 1/2to1/1 1/1to2/1"/> - </vehicle> - <vehicle id="1218" depart="1218.00"> - <route edges="4/4to3/4 3/4to2/4 2/4to2/3 2/3to1/3"/> - </vehicle> - <vehicle id="1219" depart="1219.00"> - <route edges="3/4to2/4 2/4to1/4 1/4to1/3 1/3to0/3"/> - </vehicle> - <vehicle id="1220" depart="1220.00"> - <route edges="3/2to4/2 4/2to4/3 4/3to4/4 4/4to4/3"/> - </vehicle> - <vehicle id="1221" depart="1221.00"> - <route edges="4/3to4/4 4/4to3/4 3/4to2/4 2/4to2/3 2/3to2/2 2/2to2/1 2/1to2/0 2/0to2/1"/> - </vehicle> - <vehicle id="1222" depart="1222.00"> - <route edges="3/3to3/2 3/2to2/2 2/2to1/2 1/2to1/3 1/3to1/4 1/4to2/4"/> - </vehicle> - <vehicle id="1223" depart="1223.00"> - <route edges="4/2to3/2 3/2to2/2"/> - </vehicle> - <vehicle id="1224" depart="1224.00"> - <route edges="3/2to3/3 3/3to2/3 2/3to1/3 1/3to1/2 1/2to1/3"/> - </vehicle> - <vehicle id="1225" depart="1225.00"> - <route edges="0/4to1/4 1/4to1/3 1/3to2/3 2/3to3/3 3/3to3/2"/> - </vehicle> - <vehicle id="1226" depart="1226.00"> - <route edges="3/3to3/2 3/2to2/2 2/2to1/2 1/2to0/2 0/2to0/3 0/3to0/4"/> - </vehicle> - <vehicle id="1227" depart="1227.00"> - <route edges="3/2to4/2 4/2to3/2 3/2to3/3"/> - </vehicle> - <vehicle id="1228" depart="1228.00"> - <route edges="1/4to1/3 1/3to1/4 1/4to0/4"/> - </vehicle> - <vehicle id="1229" depart="1229.00"> - <route edges="2/2to3/2 3/2to3/1 3/1to3/0"/> - </vehicle> - <vehicle id="1230" depart="1230.00"> - <route edges="2/1to1/1 1/1to1/2 1/2to2/2 2/2to3/2"/> - </vehicle> - <vehicle id="1231" depart="1231.00"> - <route edges="3/2to3/1 3/1to3/2 3/2to2/2"/> - </vehicle> - <vehicle id="1232" depart="1232.00"> - <route edges="1/1to2/1 2/1to2/2 2/2to2/3 2/3to2/2"/> - </vehicle> - <vehicle id="1233" depart="1233.00"> - <route edges="1/1to1/2 1/2to0/2 0/2to1/2"/> - </vehicle> - <vehicle id="1234" depart="1234.00"> - <route edges="2/2to2/1 2/1to1/1 1/1to1/2"/> - </vehicle> - <vehicle id="1235" depart="1235.00"> - <route edges="3/1to2/1 2/1to1/1 1/1to2/1"/> - </vehicle> - <vehicle id="1236" depart="1236.00"> - <route edges="4/3to3/3 3/3to2/3 2/3to2/2 2/2to3/2"/> - </vehicle> - <vehicle id="1237" depart="1237.00"> - <route edges="0/0to0/1 0/1to0/2 0/2to0/3 0/3to1/3 1/3to2/3 2/3to3/3"/> - </vehicle> - <vehicle id="1238" depart="1238.00"> - <route edges="2/1to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to0/2"/> - </vehicle> - <vehicle id="1239" depart="1239.00"> - <route edges="2/3to1/3 1/3to1/2 1/2to1/1 1/1to2/1 2/1to2/0"/> - </vehicle> - <vehicle id="1240" depart="1240.00"> - <route edges="1/2to1/3 1/3to1/2 1/2to2/2 2/2to2/1"/> - </vehicle> - <vehicle id="1241" depart="1241.00"> - <route edges="3/2to4/2 4/2to3/2 3/2to2/2 2/2to1/2 1/2to1/1 1/1to1/0 1/0to1/1"/> - </vehicle> - <vehicle id="1242" depart="1242.00"> - <route edges="3/1to4/1 4/1to3/1 3/1to2/1 2/1to2/2 2/2to2/3"/> - </vehicle> - <vehicle id="1243" depart="1243.00"> - <route edges="1/1to1/2 1/2to2/2 2/2to3/2 3/2to4/2"/> - </vehicle> - <vehicle id="1244" depart="1244.00"> - <route edges="3/0to3/1 3/1to2/1 2/1to2/0 2/0to1/0"/> - </vehicle> - <vehicle id="1245" depart="1245.00"> - <route edges="3/1to4/1 4/1to3/1 3/1to2/1 2/1to2/2 2/2to2/3 2/3to2/4"/> - </vehicle> - <vehicle id="1246" depart="1246.00"> - <route edges="4/2to4/1 4/1to3/1 3/1to3/2 3/2to4/2"/> - </vehicle> - <vehicle id="1247" depart="1247.00"> - <route edges="4/1to4/0 4/0to3/0 3/0to2/0 2/0to1/0 1/0to1/1 1/1to0/1 0/1to0/2 0/2to1/2"/> - </vehicle> - <vehicle id="1248" depart="1248.00"> - <route edges="3/4to4/4 4/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to3/1"/> - </vehicle> - <vehicle id="1249" depart="1249.00"> - <route edges="1/2to1/1 1/1to1/2 1/2to1/3 1/3to1/2"/> - </vehicle> - <vehicle id="1250" depart="1250.00"> - <route edges="3/3to3/4 3/4to2/4 2/4to1/4 1/4to1/3 1/3to0/3 0/3to1/3"/> - </vehicle> - <vehicle id="1251" depart="1251.00"> - <route edges="0/3to1/3 1/3to1/2"/> - </vehicle> - <vehicle id="1252" depart="1252.00"> - <route edges="4/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to4/1"/> - </vehicle> - <vehicle id="1253" depart="1253.00"> - <route edges="0/4to0/3 0/3to0/2 0/2to1/2 1/2to2/2"/> - </vehicle> - <vehicle id="1254" depart="1254.00"> - <route edges="2/1to3/1 3/1to3/2 3/2to3/3 3/3to3/2"/> - </vehicle> - <vehicle id="1255" depart="1255.00"> - <route edges="3/0to4/0 4/0to3/0 3/0to2/0 2/0to1/0 1/0to0/0 0/0to1/0"/> - </vehicle> - <vehicle id="1256" depart="1256.00"> - <route edges="3/0to2/0 2/0to1/0 1/0to1/1 1/1to0/1 0/1to0/0"/> - </vehicle> - <vehicle id="1257" depart="1257.00"> - <route edges="3/3to3/2 3/2to3/1 3/1to4/1 4/1to3/1"/> - </vehicle> - <vehicle id="1258" depart="1258.00"> - <route edges="2/1to2/0 2/0to2/1 2/1to3/1 3/1to3/2"/> - </vehicle> - <vehicle id="1259" depart="1259.00"> - <route edges="1/3to0/3 0/3to0/2 0/2to1/2 1/2to1/3"/> - </vehicle> - <vehicle id="1260" depart="1260.00"> - <route edges="0/2to1/2 1/2to1/1 1/1to1/0 1/0to2/0 2/0to2/1"/> - </vehicle> - <vehicle id="1261" depart="1261.00"> - <route edges="2/3to2/2 2/2to2/3 2/3to3/3 3/3to3/4"/> - </vehicle> - <vehicle id="1262" depart="1262.00"> - <route edges="3/3to3/4 3/4to2/4 2/4to1/4 1/4to1/3 1/3to0/3"/> - </vehicle> - <vehicle id="1263" depart="1263.00"> - <route edges="2/3to3/3 3/3to2/3 2/3to1/3 1/3to1/4"/> - </vehicle> - <vehicle id="1264" depart="1264.00"> - <route edges="2/1to2/2 2/2to2/3 2/3to2/4 2/4to3/4 3/4to4/4"/> - </vehicle> - <vehicle id="1265" depart="1265.00"> - <route edges="0/4to1/4 1/4to1/3 1/3to1/2 1/2to1/1 1/1to2/1 2/1to2/2"/> - </vehicle> - <vehicle id="1266" depart="1266.00"> - <route edges="0/2to0/3 0/3to0/2 0/2to1/2 1/2to2/2 2/2to2/1"/> - </vehicle> - <vehicle id="1267" depart="1267.00"> - <route edges="3/2to3/3 3/3to2/3 2/3to1/3 1/3to1/4 1/4to2/4"/> - </vehicle> - <vehicle id="1268" depart="1268.00"> - <route edges="1/3to0/3 0/3to0/2 0/2to0/1 0/1to1/1 1/1to2/1 2/1to3/1 3/1to3/0"/> - </vehicle> - <vehicle id="1269" depart="1269.00"> - <route edges="1/4to0/4 0/4to0/3 0/3to1/3 1/3to2/3 2/3to3/3 3/3to2/3"/> - </vehicle> - <vehicle id="1270" depart="1270.00"> - <route edges="2/3to1/3 1/3to1/2 1/2to1/1 1/1to2/1 2/1to3/1"/> - </vehicle> - <vehicle id="1271" depart="1271.00"> - <route edges="1/0to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to1/4"/> - </vehicle> - <vehicle id="1272" depart="1272.00"> - <route edges="1/2to1/3 1/3to0/3 0/3to0/4 0/4to1/4"/> - </vehicle> - <vehicle id="1273" depart="1273.00"> - <route edges="4/3to3/3 3/3to2/3 2/3to2/2 2/2to2/1 2/1to2/0 2/0to3/0"/> - </vehicle> - <vehicle id="1274" depart="1274.00"> - <route edges="4/2to4/3 4/3to3/3 3/3to2/3 2/3to3/3"/> - </vehicle> - <vehicle id="1275" depart="1275.00"> - <route edges="1/3to1/2 1/2to1/1 1/1to2/1 2/1to3/1 3/1to4/1"/> - </vehicle> - <vehicle id="1276" depart="1276.00"> - <route edges="3/2to4/2 4/2to3/2 3/2to2/2 2/2to2/1 2/1to2/0 2/0to2/1"/> - </vehicle> - <vehicle id="1277" depart="1277.00"> - <route edges="3/1to3/2 3/2to4/2 4/2to3/2"/> - </vehicle> - <vehicle id="1278" depart="1278.00"> - <route edges="1/0to2/0 2/0to2/1 2/1to2/2 2/2to3/2 3/2to4/2 4/2to4/1"/> - </vehicle> - <vehicle id="1279" depart="1279.00"> - <route edges="0/2to1/2 1/2to1/3 1/3to2/3 2/3to3/3"/> - </vehicle> - <vehicle id="1280" depart="1280.00"> - <route edges="1/3to2/3 2/3to1/3 1/3to0/3 0/3to0/2 0/2to0/1 0/1to0/0 0/0to1/0"/> - </vehicle> - <vehicle id="1281" depart="1281.00"> - <route edges="0/2to0/3 0/3to0/2 0/2to0/1 0/1to0/0"/> - </vehicle> - <vehicle id="1282" depart="1282.00"> - <route edges="0/3to1/3 1/3to1/2 1/2to2/2 2/2to2/3"/> - </vehicle> - <vehicle id="1283" depart="1283.00"> - <route edges="1/4to1/3 1/3to2/3 2/3to3/3 3/3to4/3 4/3to4/4"/> - </vehicle> - <vehicle id="1284" depart="1284.00"> - <route edges="1/0to2/0 2/0to2/1 2/1to2/2 2/2to2/1"/> - </vehicle> - <vehicle id="1285" depart="1285.00"> - <route edges="0/3to0/2 0/2to0/1 0/1to1/1 1/1to2/1 2/1to3/1 3/1to3/2"/> - </vehicle> - <vehicle id="1286" depart="1286.00"> - <route edges="2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to2/3 2/3to3/3 3/3to4/3 4/3to4/2"/> - </vehicle> - <vehicle id="1287" depart="1287.00"> - <route edges="4/3to4/4 4/4to3/4 3/4to2/4 2/4to1/4 1/4to1/3 1/3to1/2 1/2to1/1 1/1to1/2"/> - </vehicle> - <vehicle id="1288" depart="1288.00"> - <route edges="1/0to0/0 0/0to0/1 0/1to1/1 1/1to2/1 2/1to3/1 3/1to4/1 4/1to4/0"/> - </vehicle> - <vehicle id="1289" depart="1289.00"> - <route edges="3/2to2/2 2/2to2/3 2/3to2/4 2/4to1/4"/> - </vehicle> - <vehicle id="1290" depart="1290.00"> - <route edges="2/0to3/0 3/0to2/0 2/0to2/1 2/1to2/2 2/2to2/3 2/3to2/4"/> - </vehicle> - <vehicle id="1291" depart="1291.00"> - <route edges="1/4to0/4 0/4to0/3 0/3to0/2 0/2to0/1 0/1to1/1 1/1to2/1 2/1to1/1"/> - </vehicle> - <vehicle id="1292" depart="1292.00"> - <route edges="4/1to3/1 3/1to3/2"/> - </vehicle> - <vehicle id="1293" depart="1293.00"> - <route edges="3/2to4/2 4/2to3/2 3/2to2/2 2/2to1/2 1/2to1/1 1/1to1/0 1/0to0/0"/> - </vehicle> - <vehicle id="1294" depart="1294.00"> - <route edges="3/2to4/2 4/2to3/2 3/2to3/3 3/3to3/4"/> - </vehicle> - <vehicle id="1295" depart="1295.00"> - <route edges="1/0to1/1 1/1to1/2 1/2to0/2"/> - </vehicle> - <vehicle id="1296" depart="1296.00"> - <route edges="2/1to2/2 2/2to3/2 3/2to3/3"/> - </vehicle> - <vehicle id="1297" depart="1297.00"> - <route edges="3/3to3/4 3/4to3/3 3/3to3/2 3/2to3/1"/> - </vehicle> - <vehicle id="1298" depart="1298.00"> - <route edges="0/1to0/0 0/0to0/1 0/1to0/2 0/2to0/3 0/3to1/3 1/3to2/3"/> - </vehicle> - <vehicle id="1299" depart="1299.00"> - <route edges="0/2to1/2 1/2to2/2 2/2to3/2 3/2to2/2"/> - </vehicle> - <vehicle id="1300" depart="1300.00"> - <route edges="2/2to2/1 2/1to2/2 2/2to3/2 3/2to3/1"/> - </vehicle> - <vehicle id="1301" depart="1301.00"> - <route edges="2/3to2/2 2/2to2/1 2/1to3/1 3/1to3/2"/> - </vehicle> - <vehicle id="1302" depart="1302.00"> - <route edges="2/2to2/1"/> - </vehicle> - <vehicle id="1303" depart="1303.00"> - <route edges="2/2to3/2 3/2to2/2 2/2to1/2 1/2to0/2 0/2to0/1 0/1to1/1"/> - </vehicle> - <vehicle id="1304" depart="1304.00"> - <route edges="2/2to2/3 2/3to1/3 1/3to1/2"/> - </vehicle> - <vehicle id="1305" depart="1305.00"> - <route edges="4/3to4/2 4/2to3/2 3/2to2/2 2/2to1/2 1/2to0/2 0/2to1/2"/> - </vehicle> - <vehicle id="1306" depart="1306.00"> - <route edges="2/1to2/2 2/2to1/2 1/2to1/1 1/1to1/0"/> - </vehicle> - <vehicle id="1307" depart="1307.00"> - <route edges="0/4to1/4 1/4to1/3 1/3to1/2 1/2to1/1 1/1to2/1 2/1to2/2"/> - </vehicle> - <vehicle id="1308" depart="1308.00"> - <route edges="3/2to3/3 3/3to3/2"/> - </vehicle> - <vehicle id="1309" depart="1309.00"> - <route edges="2/2to2/3 2/3to1/3 1/3to0/3 0/3to0/4 0/4to0/3"/> - </vehicle> - <vehicle id="1310" depart="1310.00"> - <route edges="0/1to1/1 1/1to1/2 1/2to1/3 1/3to2/3 2/3to3/3 3/3to3/2"/> - </vehicle> - <vehicle id="1311" depart="1311.00"> - <route edges="3/0to3/1 3/1to2/1 2/1to1/1 1/1to0/1 0/1to1/1"/> - </vehicle> - <vehicle id="1312" depart="1312.00"> - <route edges="4/1to3/1 3/1to2/1 2/1to2/2 2/2to2/3 2/3to1/3"/> - </vehicle> - <vehicle id="1313" depart="1313.00"> - <route edges="4/0to4/1 4/1to3/1 3/1to3/2 3/2to3/3 3/3to3/4 3/4to4/4"/> - </vehicle> - <vehicle id="1314" depart="1314.00"> - <route edges="2/4to1/4 1/4to0/4 0/4to0/3"/> - </vehicle> - <vehicle id="1315" depart="1315.00"> - <route edges="1/3to1/2 1/2to1/1 1/1to2/1 2/1to3/1 3/1to3/2"/> - </vehicle> - <vehicle id="1316" depart="1316.00"> - <route edges="4/3to4/2 4/2to3/2 3/2to2/2 2/2to1/2 1/2to1/1 1/1to1/0 1/0to2/0"/> - </vehicle> - <vehicle id="1317" depart="1317.00"> - <route edges="1/3to0/3 0/3to0/2 0/2to0/1 0/1to1/1 1/1to1/0 1/0to2/0"/> - </vehicle> - <vehicle id="1318" depart="1318.00"> - <route edges="2/0to3/0 3/0to3/1 3/1to3/2 3/2to3/3 3/3to3/4 3/4to4/4 4/4to4/3"/> - </vehicle> - <vehicle id="1319" depart="1319.00"> - <route edges="4/3to3/3 3/3to2/3 2/3to2/2 2/2to2/1"/> - </vehicle> - <vehicle id="1320" depart="1320.00"> - <route edges="4/1to4/0 4/0to3/0 3/0to2/0 2/0to2/1 2/1to2/2 2/2to3/2"/> - </vehicle> - <vehicle id="1321" depart="1321.00"> - <route edges="4/3to3/3 3/3to3/2 3/2to4/2"/> - </vehicle> - <vehicle id="1322" depart="1322.00"> - <route edges="1/2to1/3 1/3to1/2 1/2to2/2"/> - </vehicle> - <vehicle id="1323" depart="1323.00"> - <route edges="2/2to2/1 2/1to2/2 2/2to2/3 2/3to2/4 2/4to1/4"/> - </vehicle> - <vehicle id="1324" depart="1324.00"> - <route edges="4/2to4/3 4/3to4/2 4/2to4/1 4/1to3/1"/> - </vehicle> - <vehicle id="1325" depart="1325.00"> - <route edges="2/1to1/1 1/1to1/2 1/2to1/3 1/3to0/3"/> - </vehicle> - <vehicle id="1326" depart="1326.00"> - <route edges="3/2to2/2 2/2to2/1"/> - </vehicle> - <vehicle id="1327" depart="1327.00"> - <route edges="1/2to1/3 1/3to1/2 1/2to1/1"/> - </vehicle> - <vehicle id="1328" depart="1328.00"> - <route edges="4/3to3/3"/> - </vehicle> - <vehicle id="1329" depart="1329.00"> - <route edges="0/1to0/2 0/2to0/1 0/1to1/1 1/1to1/0"/> - </vehicle> - <vehicle id="1330" depart="1330.00"> - <route edges="3/0to4/0 4/0to3/0 3/0to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3"/> - </vehicle> - <vehicle id="1331" depart="1331.00"> - <route edges="1/2to0/2 0/2to0/1 0/1to0/0"/> - </vehicle> - <vehicle id="1332" depart="1332.00"> - <route edges="3/1to3/2 3/2to3/1 3/1to3/0"/> - </vehicle> - <vehicle id="1333" depart="1333.00"> - <route edges="2/3to3/3 3/3to2/3 2/3to2/2 2/2to2/3"/> - </vehicle> - <vehicle id="1334" depart="1334.00"> - <route edges="4/4to3/4 3/4to2/4 2/4to1/4 1/4to1/3 1/3to1/2"/> - </vehicle> - <vehicle id="1335" depart="1335.00"> - <route edges="0/1to0/2 0/2to0/3 0/3to1/3 1/3to1/4 1/4to2/4 2/4to3/4 3/4to4/4 4/4to3/4"/> - </vehicle> - <vehicle id="1336" depart="1336.00"> - <route edges="2/3to2/4 2/4to2/3 2/3to2/2 2/2to2/1 2/1to2/0 2/0to1/0"/> - </vehicle> - <vehicle id="1337" depart="1337.00"> - <route edges="3/0to3/1 3/1to2/1 2/1to2/2 2/2to2/1"/> - </vehicle> - <vehicle id="1338" depart="1338.00"> - <route edges="2/2to3/2 3/2to3/1 3/1to3/0 3/0to4/0 4/0to3/0"/> - </vehicle> - <vehicle id="1339" depart="1339.00"> - <route edges="2/3to2/2 2/2to2/1 2/1to3/1 3/1to2/1"/> - </vehicle> - <vehicle id="1340" depart="1340.00"> - <route edges="1/0to0/0 0/0to0/1 0/1to1/1 1/1to2/1 2/1to1/1"/> - </vehicle> - <vehicle id="1341" depart="1341.00"> - <route edges="2/0to2/1 2/1to2/2 2/2to3/2 3/2to3/1"/> - </vehicle> - <vehicle id="1342" depart="1342.00"> - <route edges="3/3to3/4 3/4to3/3 3/3to3/2 3/2to2/2"/> - </vehicle> - <vehicle id="1343" depart="1343.00"> - <route edges="0/1to1/1 1/1to0/1 0/1to0/0"/> - </vehicle> - <vehicle id="1344" depart="1344.00"> - <route edges="1/2to1/3 1/3to2/3 2/3to3/3"/> - </vehicle> - <vehicle id="1345" depart="1345.00"> - <route edges="1/1to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to2/4 2/4to3/4 3/4to4/4"/> - </vehicle> - <vehicle id="1346" depart="1346.00"> - <route edges="4/0to4/1 4/1to4/2"/> - </vehicle> - <vehicle id="1347" depart="1347.00"> - <route edges="3/1to4/1"/> - </vehicle> - <vehicle id="1348" depart="1348.00"> - <route edges="0/4to1/4 1/4to1/3 1/3to0/3 0/3to0/2 0/2to0/1"/> - </vehicle> - <vehicle id="1349" depart="1349.00"> - <route edges="3/1to2/1 2/1to1/1 1/1to0/1 0/1to0/2 0/2to0/3 0/3to1/3"/> - </vehicle> - <vehicle id="1350" depart="1350.00"> - <route edges="0/1to0/2 0/2to0/1 0/1to1/1 1/1to2/1"/> - </vehicle> - <vehicle id="1351" depart="1351.00"> - <route edges="2/3to2/2 2/2to2/1 2/1to3/1 3/1to4/1 4/1to4/2"/> - </vehicle> - <vehicle id="1352" depart="1352.00"> - <route edges="2/2to1/2 1/2to1/3 1/3to1/4"/> - </vehicle> - <vehicle id="1353" depart="1353.00"> - <route edges="3/0to4/0 4/0to3/0 3/0to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to2/3"/> - </vehicle> - <vehicle id="1354" depart="1354.00"> - <route edges="2/2to2/1 2/1to2/0 2/0to3/0 3/0to4/0 4/0to3/0"/> - </vehicle> - <vehicle id="1355" depart="1355.00"> - <route edges="2/1to1/1 1/1to1/2 1/2to2/2 2/2to3/2 3/2to3/3"/> - </vehicle> - <vehicle id="1356" depart="1356.00"> - <route edges="2/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1"/> - </vehicle> - <vehicle id="1357" depart="1357.00"> - <route edges="2/3to1/3 1/3to1/2 1/2to2/2 2/2to3/2"/> - </vehicle> - <vehicle id="1358" depart="1358.00"> - <route edges="2/1to3/1 3/1to2/1 2/1to1/1 1/1to0/1 0/1to0/2 0/2to0/3 0/3to0/2"/> - </vehicle> - <vehicle id="1359" depart="1359.00"> - <route edges="3/2to3/1 3/1to2/1 2/1to1/1 1/1to0/1 0/1to0/2 0/2to0/3 0/3to0/4"/> - </vehicle> - <vehicle id="1360" depart="1360.00"> - <route edges="0/2to0/3 0/3to0/2 0/2to0/1 0/1to1/1 1/1to1/0 1/0to2/0 2/0to3/0"/> - </vehicle> - <vehicle id="1361" depart="1361.00"> - <route edges="0/3to0/2 0/2to0/1 0/1to1/1 1/1to1/0 1/0to2/0 2/0to3/0 3/0to3/1"/> - </vehicle> - <vehicle id="1362" depart="1362.00"> - <route edges="1/1to2/1 2/1to2/2 2/2to2/3"/> - </vehicle> - <vehicle id="1363" depart="1363.00"> - <route edges="1/4to1/3 1/3to1/2 1/2to1/1 1/1to1/0 1/0to2/0 2/0to2/1"/> - </vehicle> - <vehicle id="1364" depart="1364.00"> - <route edges="1/1to2/1 2/1to2/0 2/0to3/0 3/0to2/0"/> - </vehicle> - <vehicle id="1365" depart="1365.00"> - <route edges="4/1to3/1 3/1to3/2 3/2to3/3 3/3to4/3"/> - </vehicle> - <vehicle id="1366" depart="1366.00"> - <route edges="3/2to3/3 3/3to2/3 2/3to1/3"/> - </vehicle> - <vehicle id="1367" depart="1367.00"> - <route edges="3/4to3/3 3/3to3/4 3/4to4/4 4/4to3/4"/> - </vehicle> - <vehicle id="1368" depart="1368.00"> - <route edges="3/0to2/0 2/0to2/1 2/1to2/2 2/2to2/3 2/3to2/2"/> - </vehicle> - <vehicle id="1369" depart="1369.00"> - <route edges="1/0to2/0 2/0to2/1 2/1to2/2 2/2to1/2"/> - </vehicle> - <vehicle id="1370" depart="1370.00"> - <route edges="1/3to2/3 2/3to2/4 2/4to3/4 3/4to4/4 4/4to4/3"/> - </vehicle> - <vehicle id="1371" depart="1371.00"> - <route edges="0/4to0/3 0/3to0/2 0/2to0/1 0/1to1/1 1/1to2/1 2/1to3/1 3/1to2/1"/> - </vehicle> - <vehicle id="1372" depart="1372.00"> - <route edges="4/1to4/2 4/2to3/2 3/2to2/2 2/2to2/1"/> - </vehicle> - <vehicle id="1373" depart="1373.00"> - <route edges="3/1to3/2 3/2to2/2 2/2to2/3 2/3to2/4 2/4to3/4"/> - </vehicle> - <vehicle id="1374" depart="1374.00"> - <route edges="3/1to3/0 3/0to2/0 2/0to1/0 1/0to1/1 1/1to0/1 0/1to1/1"/> - </vehicle> - <vehicle id="1375" depart="1375.00"> - <route edges="0/1to0/2 0/2to0/3 0/3to1/3 1/3to2/3 2/3to3/3"/> - </vehicle> - <vehicle id="1376" depart="1376.00"> - <route edges="4/0to4/1 4/1to3/1 3/1to2/1 2/1to2/2 2/2to2/3 2/3to2/2"/> - </vehicle> - <vehicle id="1377" depart="1377.00"> - <route edges="1/4to2/4 2/4to2/3 2/3to2/2 2/2to2/1"/> - </vehicle> - <vehicle id="1378" depart="1378.00"> - <route edges="0/1to0/0 0/0to0/1 0/1to1/1 1/1to1/2"/> - </vehicle> - <vehicle id="1379" depart="1379.00"> - <route edges="2/3to2/2 2/2to2/1 2/1to2/0 2/0to3/0 3/0to4/0 4/0to3/0"/> - </vehicle> - <vehicle id="1380" depart="1380.00"> - <route edges="3/4to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to4/0"/> - </vehicle> - <vehicle id="1381" depart="1381.00"> - <route edges="4/4to3/4 3/4to2/4 2/4to2/3 2/3to2/2 2/2to2/1 2/1to2/0 2/0to3/0"/> - </vehicle> - <vehicle id="1382" depart="1382.00"> - <route edges="4/2to4/1 4/1to3/1 3/1to2/1 2/1to2/0 2/0to1/0"/> - </vehicle> - <vehicle id="1383" depart="1383.00"> - <route edges="2/0to2/1 2/1to2/0 2/0to3/0 3/0to4/0 4/0to3/0"/> - </vehicle> - <vehicle id="1384" depart="1384.00"> - <route edges="3/2to3/3 3/3to3/2 3/2to3/1 3/1to3/0"/> - </vehicle> - <vehicle id="1385" depart="1385.00"> - <route edges="0/2to0/1 0/1to0/2 0/2to0/3 0/3to1/3 1/3to1/4 1/4to2/4"/> - </vehicle> - <vehicle id="1386" depart="1386.00"> - <route edges="2/2to1/2 1/2to1/1 1/1to2/1 2/1to3/1 3/1to3/0"/> - </vehicle> - <vehicle id="1387" depart="1387.00"> - <route edges="4/2to3/2 3/2to3/1 3/1to3/0 3/0to3/1"/> - </vehicle> - <vehicle id="1388" depart="1388.00"> - <route edges="0/1to0/2 0/2to0/1 0/1to1/1 1/1to2/1 2/1to3/1 3/1to3/0"/> - </vehicle> - <vehicle id="1389" depart="1389.00"> - <route edges="3/4to2/4 2/4to2/3 2/3to2/4"/> - </vehicle> - <vehicle id="1390" depart="1390.00"> - <route edges="1/1to2/1"/> - </vehicle> - <vehicle id="1391" depart="1391.00"> - <route edges="4/0to4/1 4/1to3/1 3/1to2/1 2/1to2/0"/> - </vehicle> - <vehicle id="1392" depart="1392.00"> - <route edges="3/3to3/2 3/2to2/2 2/2to3/2"/> - </vehicle> - <vehicle id="1393" depart="1393.00"> - <route edges="4/0to4/1 4/1to3/1 3/1to3/0"/> - </vehicle> - <vehicle id="1394" depart="1394.00"> - <route edges="0/1to0/2 0/2to0/1 0/1to1/1 1/1to1/0 1/0to2/0 2/0to3/0 3/0to4/0 4/0to3/0"/> - </vehicle> - <vehicle id="1395" depart="1395.00"> - <route edges="2/2to2/1 2/1to1/1 1/1to1/2 1/2to1/3"/> - </vehicle> - <vehicle id="1396" depart="1396.00"> - <route edges="2/2to2/3 2/3to1/3 1/3to1/2 1/2to0/2"/> - </vehicle> - <vehicle id="1397" depart="1397.00"> - <route edges="4/1to4/0 4/0to3/0 3/0to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to0/2"/> - </vehicle> - <vehicle id="1398" depart="1398.00"> - <route edges="3/1to3/0 3/0to2/0 2/0to1/0 1/0to1/1 1/1to0/1 0/1to0/2 0/2to0/3"/> - </vehicle> - <vehicle id="1399" depart="1399.00"> - <route edges="3/3to4/3 4/3to3/3 3/3to2/3 2/3to1/3 1/3to1/4 1/4to2/4"/> - </vehicle> - <vehicle id="1400" depart="1400.00"> - <route edges="4/1to4/2 4/2to3/2 3/2to2/2 2/2to2/3 2/3to3/3"/> - </vehicle> - <vehicle id="1401" depart="1401.00"> - <route edges="0/3to0/2 0/2to0/3"/> - </vehicle> - <vehicle id="1402" depart="1402.00"> - <route edges="2/2to3/2 3/2to2/2 2/2to1/2 1/2to0/2 0/2to0/1 0/1to0/0 0/0to1/0"/> - </vehicle> - <vehicle id="1403" depart="1403.00"> - <route edges="1/1to2/1 2/1to3/1 3/1to2/1"/> - </vehicle> - <vehicle id="1404" depart="1404.00"> - <route edges="0/3to0/2 0/2to0/1 0/1to1/1 1/1to2/1 2/1to3/1 3/1to4/1 4/1to4/2"/> - </vehicle> - <vehicle id="1405" depart="1405.00"> - <route edges="2/1to1/1 1/1to1/0 1/0to0/0"/> - </vehicle> - <vehicle id="1406" depart="1406.00"> - <route edges="2/3to3/3 3/3to3/2 3/2to3/1 3/1to4/1 4/1to4/0"/> - </vehicle> - <vehicle id="1407" depart="1407.00"> - <route edges="3/3to4/3 4/3to3/3 3/3to3/2 3/2to3/1 3/1to2/1"/> - </vehicle> - <vehicle id="1408" depart="1408.00"> - <route edges="2/2to2/1 2/1to3/1 3/1to4/1 4/1to3/1"/> - </vehicle> - <vehicle id="1409" depart="1409.00"> - <route edges="1/0to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to0/3"/> - </vehicle> - <vehicle id="1410" depart="1410.00"> - <route edges="3/4to2/4 2/4to1/4 1/4to1/3 1/3to1/2 1/2to1/1 1/1to1/0 1/0to2/0"/> - </vehicle> - <vehicle id="1411" depart="1411.00"> - <route edges="2/1to2/2 2/2to2/1 2/1to2/0 2/0to2/1"/> - </vehicle> - <vehicle id="1412" depart="1412.00"> - <route edges="3/1to4/1 4/1to3/1 3/1to2/1 2/1to1/1 1/1to1/0"/> - </vehicle> - <vehicle id="1413" depart="1413.00"> - <route edges="0/2to0/1 0/1to0/2 0/2to0/3 0/3to1/3 1/3to2/3 2/3to3/3 3/3to2/3"/> - </vehicle> - <vehicle id="1414" depart="1414.00"> - <route edges="1/1to2/1 2/1to2/2 2/2to2/3 2/3to3/3 3/3to3/4"/> - </vehicle> - <vehicle id="1415" depart="1415.00"> - <route edges="3/3to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to4/0 4/0to4/1"/> - </vehicle> - <vehicle id="1416" depart="1416.00"> - <route edges="3/1to4/1 4/1to3/1 3/1to2/1 2/1to1/1 1/1to0/1 0/1to0/2 0/2to0/3 0/3to0/4 0/4to1/4"/> - </vehicle> - <vehicle id="1417" depart="1417.00"> - <route edges="1/2to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to2/4 2/4to3/4 3/4to4/4 4/4to4/3"/> - </vehicle> - <vehicle id="1418" depart="1418.00"> - <route edges="1/3to0/3 0/3to1/3 1/3to2/3 2/3to3/3 3/3to3/4"/> - </vehicle> - <vehicle id="1419" depart="1419.00"> - <route edges="4/0to3/0 3/0to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3"/> - </vehicle> - <vehicle id="1420" depart="1420.00"> - <route edges="0/2to0/1 0/1to0/2"/> - </vehicle> - <vehicle id="1421" depart="1421.00"> - <route edges="3/3to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to4/1 4/1to4/2"/> - </vehicle> - <vehicle id="1422" depart="1422.00"> - <route edges="3/4to4/4 4/4to3/4 3/4to2/4 2/4to1/4 1/4to1/3 1/3to1/2 1/2to1/1"/> - </vehicle> - <vehicle id="1423" depart="1423.00"> - <route edges="0/2to0/1 0/1to1/1 1/1to2/1 2/1to3/1 3/1to4/1 4/1to4/2"/> - </vehicle> - <vehicle id="1424" depart="1424.00"> - <route edges="2/3to2/4 2/4to1/4 1/4to0/4 0/4to0/3"/> - </vehicle> - <vehicle id="1425" depart="1425.00"> - <route edges="0/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to1/4"/> - </vehicle> - <vehicle id="1426" depart="1426.00"> - <route edges="2/3to2/4 2/4to2/3 2/3to2/2 2/2to2/1 2/1to3/1 3/1to4/1"/> - </vehicle> - <vehicle id="1427" depart="1427.00"> - <route edges="3/0to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to2/3"/> - </vehicle> - <vehicle id="1428" depart="1428.00"> - <route edges="3/2to3/1 3/1to3/2 3/2to4/2 4/2to3/2"/> - </vehicle> - <vehicle id="1429" depart="1429.00"> - <route edges="2/0to3/0 3/0to2/0 2/0to1/0 1/0to1/1 1/1to2/1"/> - </vehicle> - <vehicle id="1430" depart="1430.00"> - <route edges="2/1to2/0 2/0to2/1 2/1to2/2"/> - </vehicle> - <vehicle id="1431" depart="1431.00"> - <route edges="2/3to2/4 2/4to2/3 2/3to2/2 2/2to2/1 2/1to2/0 2/0to3/0 3/0to4/0 4/0to4/1"/> - </vehicle> - <vehicle id="1432" depart="1432.00"> - <route edges="4/2to4/3 4/3to3/3 3/3to2/3 2/3to1/3 1/3to1/4 1/4to1/3"/> - </vehicle> - <vehicle id="1433" depart="1433.00"> - <route edges="0/3to0/4 0/4to0/3 0/3to0/2 0/2to0/1 0/1to1/1 1/1to2/1 2/1to3/1 3/1to2/1"/> - </vehicle> - <vehicle id="1434" depart="1434.00"> - <route edges="2/3to2/2 2/2to2/3 2/3to3/3 3/3to4/3 4/3to4/2"/> - </vehicle> - <vehicle id="1435" depart="1435.00"> - <route edges="1/3to0/3 0/3to0/2 0/2to0/1 0/1to1/1 1/1to1/0 1/0to2/0 2/0to3/0 3/0to4/0 4/0to4/1"/> - </vehicle> - <vehicle id="1436" depart="1436.00"> - <route edges="2/0to2/1 2/1to2/2 2/2to2/3 2/3to3/3 3/3to2/3"/> - </vehicle> - <vehicle id="1437" depart="1437.00"> - <route edges="0/3to0/2 0/2to0/1 0/1to1/1 1/1to2/1 2/1to3/1 3/1to4/1"/> - </vehicle> - <vehicle id="1438" depart="1438.00"> - <route edges="3/2to2/2 2/2to2/1 2/1to2/0 2/0to2/1"/> - </vehicle> - <vehicle id="1439" depart="1439.00"> - <route edges="0/4to0/3 0/3to0/2 0/2to1/2 1/2to2/2"/> - </vehicle> - <vehicle id="1440" depart="1440.00"> - <route edges="1/2to1/3 1/3to0/3 0/3to0/2 0/2to0/1 0/1to0/0 0/0to1/0"/> - </vehicle> - <vehicle id="1441" depart="1441.00"> - <route edges="4/2to4/1 4/1to3/1 3/1to2/1 2/1to1/1 1/1to1/2 1/2to1/3"/> - </vehicle> - <vehicle id="1442" depart="1442.00"> - <route edges="2/2to2/1 2/1to2/2 2/2to2/3 2/3to2/4 2/4to3/4 3/4to2/4"/> - </vehicle> - <vehicle id="1443" depart="1443.00"> - <route edges="2/1to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to2/4 2/4to3/4 3/4to4/4"/> - </vehicle> - <vehicle id="1444" depart="1444.00"> - <route edges="0/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to2/3 2/3to3/3 3/3to4/3"/> - </vehicle> - <vehicle id="1445" depart="1445.00"> - <route edges="0/2to0/3 0/3to1/3 1/3to2/3 2/3to3/3 3/3to3/4"/> - </vehicle> - <vehicle id="1446" depart="1446.00"> - <route edges="3/3to3/2 3/2to2/2 2/2to2/3 2/3to2/4 2/4to1/4"/> - </vehicle> - <vehicle id="1447" depart="1447.00"> - <route edges="1/0to1/1 1/1to1/2 1/2to0/2"/> - </vehicle> - <vehicle id="1448" depart="1448.00"> - <route edges="3/3to2/3 2/3to2/2 2/2to3/2"/> - </vehicle> - <vehicle id="1449" depart="1449.00"> - <route edges="3/3to4/3 4/3to4/4"/> - </vehicle> - <vehicle id="1450" depart="1450.00"> - <route edges="3/0to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to2/4"/> - </vehicle> - <vehicle id="1451" depart="1451.00"> - <route edges="0/3to0/4 0/4to0/3 0/3to0/2 0/2to0/1 0/1to1/1 1/1to2/1"/> - </vehicle> - <vehicle id="1452" depart="1452.00"> - <route edges="4/4to3/4 3/4to2/4 2/4to1/4 1/4to1/3 1/3to1/2 1/2to1/1 1/1to0/1"/> - </vehicle> - <vehicle id="1453" depart="1453.00"> - <route edges="0/2to0/1 0/1to0/2 0/2to0/3 0/3to1/3 1/3to2/3 2/3to3/3 3/3to2/3"/> - </vehicle> - <vehicle id="1454" depart="1454.00"> - <route edges="0/1to0/0 0/0to0/1 0/1to1/1 1/1to2/1 2/1to3/1"/> - </vehicle> - <vehicle id="1455" depart="1455.00"> - <route edges="4/4to4/3 4/3to3/3 3/3to2/3 2/3to2/2 2/2to1/2"/> - </vehicle> - <vehicle id="1456" depart="1456.00"> - <route edges="3/1to3/2 3/2to2/2 2/2to1/2 1/2to1/3 1/3to0/3"/> - </vehicle> - <vehicle id="1457" depart="1457.00"> - <route edges="4/0to4/1 4/1to3/1 3/1to2/1 2/1to1/1 1/1to1/0 1/0to0/0"/> - </vehicle> - <vehicle id="1458" depart="1458.00"> - <route edges="3/2to2/2 2/2to1/2 1/2to1/3 1/3to1/4 1/4to1/3"/> - </vehicle> - <vehicle id="1459" depart="1459.00"> - <route edges="0/1to0/2 0/2to0/1 0/1to1/1 1/1to2/1 2/1to3/1 3/1to4/1"/> - </vehicle> - <vehicle id="1460" depart="1460.00"> - <route edges="0/1to1/1 1/1to1/2 1/2to2/2 2/2to2/1"/> - </vehicle> - <vehicle id="1461" depart="1461.00"> - <route edges="2/2to3/2 3/2to2/2 2/2to1/2 1/2to1/1 1/1to1/2"/> - </vehicle> - <vehicle id="1462" depart="1462.00"> - <route edges="0/2to0/1 0/1to1/1 1/1to2/1 2/1to3/1 3/1to4/1 4/1to4/2"/> - </vehicle> - <vehicle id="1463" depart="1463.00"> - <route edges="3/3to2/3 2/3to3/3"/> - </vehicle> - <vehicle id="1464" depart="1464.00"> - <route edges="1/4to1/3 1/3to1/2 1/2to1/1 1/1to0/1"/> - </vehicle> - <vehicle id="1465" depart="1465.00"> - <route edges="1/2to0/2 0/2to0/1 0/1to1/1 1/1to1/0 1/0to0/0"/> - </vehicle> - <vehicle id="1466" depart="1466.00"> - <route edges="2/3to3/3 3/3to2/3"/> - </vehicle> - <vehicle id="1467" depart="1467.00"> - <route edges="2/2to2/1 2/1to1/1"/> - </vehicle> - <vehicle id="1468" depart="1468.00"> - <route edges="2/4to1/4 1/4to1/3 1/3to1/2 1/2to2/2 2/2to3/2 3/2to4/2"/> - </vehicle> - <vehicle id="1469" depart="1469.00"> - <route edges="3/1to3/2 3/2to2/2 2/2to1/2"/> - </vehicle> - <vehicle id="1470" depart="1470.00"> - <route edges="3/2to4/2 4/2to4/3 4/3to3/3"/> - </vehicle> - <vehicle id="1471" depart="1471.00"> - <route edges="2/2to1/2 1/2to1/1 1/1to2/1 2/1to3/1 3/1to4/1 4/1to4/2"/> - </vehicle> - <vehicle id="1472" depart="1472.00"> - <route edges="1/3to2/3 2/3to2/2 2/2to3/2 3/2to4/2 4/2to4/1"/> - </vehicle> - <vehicle id="1473" depart="1473.00"> - <route edges="1/3to0/3 0/3to0/2 0/2to0/1 0/1to1/1 1/1to2/1 2/1to3/1 3/1to4/1 4/1to4/2"/> - </vehicle> - <vehicle id="1474" depart="1474.00"> - <route edges="1/0to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to1/2"/> - </vehicle> - <vehicle id="1475" depart="1475.00"> - <route edges="0/1to0/2 0/2to1/2 1/2to2/2 2/2to3/2"/> - </vehicle> - <vehicle id="1476" depart="1476.00"> - <route edges="3/2to2/2 2/2to2/1 2/1to3/1 3/1to2/1"/> - </vehicle> - <vehicle id="1477" depart="1477.00"> - <route edges="3/2to3/3 3/3to2/3 2/3to1/3 1/3to1/2 1/2to1/1 1/1to1/0"/> - </vehicle> - <vehicle id="1478" depart="1478.00"> - <route edges="1/3to2/3 2/3to1/3 1/3to1/2 1/2to2/2"/> - </vehicle> - <vehicle id="1479" depart="1479.00"> - <route edges="3/4to2/4 2/4to2/3"/> - </vehicle> - <vehicle id="1480" depart="1480.00"> - <route edges="4/3to3/3 3/3to2/3 2/3to2/4"/> - </vehicle> - <vehicle id="1481" depart="1481.00"> - <route edges="3/3to3/4 3/4to2/4 2/4to2/3"/> - </vehicle> - <vehicle id="1482" depart="1482.00"> - <route edges="3/3to2/3 2/3to2/2 2/2to3/2 3/2to4/2 4/2to4/3"/> - </vehicle> - <vehicle id="1483" depart="1483.00"> - <route edges="1/4to2/4 2/4to1/4 1/4to1/3 1/3to0/3 0/3to0/2 0/2to0/1 0/1to0/0"/> - </vehicle> - <vehicle id="1484" depart="1484.00"> - <route edges="0/0to1/0 1/0to2/0 2/0to3/0 3/0to4/0 4/0to4/1"/> - </vehicle> - <vehicle id="1485" depart="1485.00"> - <route edges="3/2to3/3 3/3to2/3 2/3to1/3 1/3to1/2 1/2to2/2"/> - </vehicle> - <vehicle id="1486" depart="1486.00"> - <route edges="4/4to4/3 4/3to3/3 3/3to4/3"/> - </vehicle> - <vehicle id="1487" depart="1487.00"> - <route edges="3/3to3/2 3/2to3/3 3/3to3/4"/> - </vehicle> - <vehicle id="1488" depart="1488.00"> - <route edges="0/3to0/4 0/4to1/4 1/4to1/3"/> - </vehicle> - <vehicle id="1489" depart="1489.00"> - <route edges="0/3to1/3 1/3to2/3 2/3to3/3 3/3to4/3"/> - </vehicle> - <vehicle id="1490" depart="1490.00"> - <route edges="3/2to3/3 3/3to3/2 3/2to3/1 3/1to4/1 4/1to4/2"/> - </vehicle> - <vehicle id="1491" depart="1491.00"> - <route edges="3/0to4/0 4/0to3/0 3/0to3/1 3/1to3/2 3/2to3/1"/> - </vehicle> - <vehicle id="1492" depart="1492.00"> - <route edges="2/3to1/3 1/3to1/2 1/2to1/1 1/1to1/0 1/0to2/0 2/0to3/0"/> - </vehicle> - <vehicle id="1493" depart="1493.00"> - <route edges="1/3to2/3 2/3to2/2 2/2to3/2 3/2to4/2 4/2to4/3"/> - </vehicle> - <vehicle id="1494" depart="1494.00"> - <route edges="4/2to4/3 4/3to4/2 4/2to4/1 4/1to4/2"/> - </vehicle> - <vehicle id="1495" depart="1495.00"> - <route edges="0/1to0/0 0/0to0/1 0/1to0/2 0/2to1/2 1/2to2/2 2/2to3/2 3/2to4/2 4/2to3/2"/> - </vehicle> - <vehicle id="1496" depart="1496.00"> - <route edges="3/4to2/4"/> - </vehicle> - <vehicle id="1497" depart="1497.00"> - <route edges="0/0to0/1 0/1to0/2 0/2to1/2 1/2to2/2 2/2to2/3"/> - </vehicle> - <vehicle id="1498" depart="1498.00"> - <route edges="4/3to4/2 4/2to3/2 3/2to2/2 2/2to1/2 1/2to1/1 1/1to0/1"/> - </vehicle> - <vehicle id="1499" depart="1499.00"> - <route edges="2/1to2/2 2/2to1/2 1/2to1/3 1/3to1/4 1/4to0/4"/> - </vehicle> - <vehicle id="1500" depart="1500.00"> - <route edges="2/3to1/3 1/3to1/2 1/2to1/1 1/1to2/1 2/1to3/1 3/1to2/1"/> - </vehicle> - <vehicle id="1501" depart="1501.00"> - <route edges="3/0to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to1/3"/> - </vehicle> - <vehicle id="1502" depart="1502.00"> - <route edges="3/4to3/3 3/3to2/3 2/3to1/3 1/3to0/3 0/3to0/2 0/2to1/2"/> - </vehicle> - <vehicle id="1503" depart="1503.00"> - <route edges="1/4to0/4 0/4to0/3 0/3to0/2 0/2to0/1 0/1to1/1 1/1to1/2"/> - </vehicle> - <vehicle id="1504" depart="1504.00"> - <route edges="2/3to1/3 1/3to1/2 1/2to1/1 1/1to1/0 1/0to2/0 2/0to3/0 3/0to4/0"/> - </vehicle> - <vehicle id="1505" depart="1505.00"> - <route edges="0/2to0/3 0/3to0/2 0/2to0/1 0/1to1/1 1/1to2/1 2/1to3/1 3/1to2/1"/> - </vehicle> - <vehicle id="1506" depart="1506.00"> - <route edges="2/3to3/3 3/3to3/2 3/2to3/1 3/1to4/1 4/1to4/2"/> - </vehicle> - <vehicle id="1507" depart="1507.00"> - <route edges="2/4to3/4 3/4to2/4 2/4to1/4 1/4to1/3 1/3to0/3 0/3to0/4"/> - </vehicle> - <vehicle id="1508" depart="1508.00"> - <route edges="3/2to2/2 2/2to1/2 1/2to1/3 1/3to1/4 1/4to2/4"/> - </vehicle> - <vehicle id="1509" depart="1509.00"> - <route edges="2/3to1/3 1/3to1/2 1/2to1/1 1/1to2/1 2/1to3/1 3/1to4/1 4/1to3/1"/> - </vehicle> - <vehicle id="1510" depart="1510.00"> - <route edges="3/0to4/0 4/0to3/0 3/0to2/0 2/0to1/0 1/0to0/0"/> - </vehicle> - <vehicle id="1511" depart="1511.00"> - <route edges="3/4to4/4 4/4to3/4 3/4to2/4 2/4to1/4 1/4to1/3 1/3to1/2 1/2to1/1 1/1to0/1"/> - </vehicle> - <vehicle id="1512" depart="1512.00"> - <route edges="2/3to2/4 2/4to1/4 1/4to1/3 1/3to1/2"/> - </vehicle> - <vehicle id="1513" depart="1513.00"> - <route edges="1/4to1/3 1/3to1/4 1/4to2/4 2/4to3/4 3/4to2/4"/> - </vehicle> - <vehicle id="1514" depart="1514.00"> - <route edges="4/2to4/1 4/1to4/0"/> - </vehicle> - <vehicle id="1515" depart="1515.00"> - <route edges="3/1to2/1 2/1to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to1/3"/> - </vehicle> - <vehicle id="1516" depart="1516.00"> - <route edges="3/1to4/1 4/1to3/1 3/1to2/1 2/1to2/0 2/0to2/1"/> - </vehicle> - <vehicle id="1517" depart="1517.00"> - <route edges="2/0to3/0 3/0to2/0 2/0to1/0 1/0to1/1 1/1to2/1"/> - </vehicle> - <vehicle id="1518" depart="1518.00"> - <route edges="2/0to2/1 2/1to2/2 2/2to2/3 2/3to1/3"/> - </vehicle> - <vehicle id="1519" depart="1519.00"> - <route edges="0/1to0/2 0/2to1/2 1/2to2/2 2/2to2/1"/> - </vehicle> - <vehicle id="1520" depart="1520.00"> - <route edges="4/0to4/1 4/1to3/1 3/1to2/1 2/1to2/0 2/0to1/0"/> - </vehicle> - <vehicle id="1521" depart="1521.00"> - <route edges="0/1to0/0 0/0to0/1 0/1to1/1 1/1to2/1 2/1to3/1 3/1to4/1 4/1to4/0"/> - </vehicle> - <vehicle id="1522" depart="1522.00"> - <route edges="4/4to4/3 4/3to3/3 3/3to2/3 2/3to1/3 1/3to0/3 0/3to0/2 0/2to0/1 0/1to0/2"/> - </vehicle> - <vehicle id="1523" depart="1523.00"> - <route edges="4/3to3/3 3/3to2/3 2/3to1/3 1/3to0/3 0/3to0/2"/> - </vehicle> - <vehicle id="1524" depart="1524.00"> - <route edges="2/0to1/0 1/0to1/1"/> - </vehicle> - <vehicle id="1525" depart="1525.00"> - <route edges="1/0to1/1 1/1to1/0 1/0to2/0 2/0to3/0 3/0to4/0 4/0to4/1"/> - </vehicle> - <vehicle id="1526" depart="1526.00"> - <route edges="2/3to1/3 1/3to1/2 1/2to1/1 1/1to1/0 1/0to2/0 2/0to2/1"/> - </vehicle> - <vehicle id="1527" depart="1527.00"> - <route edges="2/4to2/3 2/3to2/2 2/2to2/1 2/1to3/1 3/1to3/2"/> - </vehicle> - <vehicle id="1528" depart="1528.00"> - <route edges="2/2to2/3 2/3to2/4 2/4to2/3"/> - </vehicle> - <vehicle id="1529" depart="1529.00"> - <route edges="4/1to4/2 4/2to3/2 3/2to2/2 2/2to1/2 1/2to0/2 0/2to0/1 0/1to0/2"/> - </vehicle> - <vehicle id="1530" depart="1530.00"> - <route edges="2/2to3/2 3/2to2/2 2/2to1/2 1/2to1/1 1/1to1/2"/> - </vehicle> - <vehicle id="1531" depart="1531.00"> - <route edges="3/1to4/1 4/1to3/1 3/1to3/2 3/2to3/3 3/3to3/4 3/4to4/4"/> - </vehicle> - <vehicle id="1532" depart="1532.00"> - <route edges="2/3to1/3 1/3to1/2 1/2to1/1 1/1to1/0 1/0to2/0 2/0to2/1"/> - </vehicle> - <vehicle id="1533" depart="1533.00"> - <route edges="2/1to2/0 2/0to1/0 1/0to1/1 1/1to0/1 0/1to0/2 0/2to0/3"/> - </vehicle> - <vehicle id="1534" depart="1534.00"> - <route edges="3/2to2/2 2/2to1/2"/> - </vehicle> - <vehicle id="1535" depart="1535.00"> - <route edges="2/2to2/1 2/1to1/1 1/1to2/1"/> - </vehicle> - <vehicle id="1536" depart="1536.00"> - <route edges="1/2to1/1 1/1to2/1 2/1to3/1 3/1to4/1"/> - </vehicle> - <vehicle id="1537" depart="1537.00"> - <route edges="3/1to3/0 3/0to3/1 3/1to3/2 3/2to4/2 4/2to4/1"/> - </vehicle> - <vehicle id="1538" depart="1538.00"> - <route edges="4/1to3/1"/> - </vehicle> - <vehicle id="1539" depart="1539.00"> - <route edges="1/0to0/0 0/0to0/1 0/1to0/2 0/2to1/2 1/2to2/2 2/2to3/2 3/2to2/2"/> - </vehicle> - <vehicle id="1540" depart="1540.00"> - <route edges="1/3to1/4 1/4to1/3 1/3to0/3 0/3to0/2 0/2to0/1 0/1to1/1"/> - </vehicle> - <vehicle id="1541" depart="1541.00"> - <route edges="1/1to1/0 1/0to2/0 2/0to3/0 3/0to2/0"/> - </vehicle> - <vehicle id="1542" depart="1542.00"> - <route edges="2/3to2/2 2/2to2/1 2/1to3/1 3/1to3/2"/> - </vehicle> - <vehicle id="1543" depart="1543.00"> - <route edges="2/3to2/4 2/4to2/3 2/3to2/2 2/2to2/1 2/1to2/0 2/0to2/1"/> - </vehicle> - <vehicle id="1544" depart="1544.00"> - <route edges="2/2to2/3 2/3to2/2 2/2to3/2 3/2to4/2 4/2to3/2"/> - </vehicle> - <vehicle id="1545" depart="1545.00"> - <route edges="0/3to0/2 0/2to0/1 0/1to1/1 1/1to2/1 2/1to3/1 3/1to4/1 4/1to3/1"/> - </vehicle> - <vehicle id="1546" depart="1546.00"> - <route edges="2/0to3/0 3/0to2/0 2/0to1/0 1/0to1/1"/> - </vehicle> - <vehicle id="1547" depart="1547.00"> - <route edges="1/2to2/2 2/2to2/1 2/1to3/1"/> - </vehicle> - <vehicle id="1548" depart="1548.00"> - <route edges="0/0to0/1 0/1to0/2 0/2to0/3 0/3to1/3 1/3to1/4 1/4to2/4 2/4to3/4 3/4to4/4"/> - </vehicle> - <vehicle id="1549" depart="1549.00"> - <route edges="4/4to3/4 3/4to2/4 2/4to1/4"/> - </vehicle> - <vehicle id="1550" depart="1550.00"> - <route edges="2/1to3/1 3/1to2/1 2/1to1/1 1/1to0/1 0/1to0/0 0/0to1/0"/> - </vehicle> - <vehicle id="1551" depart="1551.00"> - <route edges="1/2to0/2 0/2to1/2 1/2to1/3"/> - </vehicle> - <vehicle id="1552" depart="1552.00"> - <route edges="2/3to3/3 3/3to3/2 3/2to3/1 3/1to4/1 4/1to4/2"/> - </vehicle> - <vehicle id="1553" depart="1553.00"> - <route edges="2/1to3/1 3/1to2/1 2/1to1/1 1/1to1/2 1/2to1/3 1/3to1/4"/> - </vehicle> - <vehicle id="1554" depart="1554.00"> - <route edges="1/2to1/1 1/1to1/2 1/2to1/3 1/3to2/3 2/3to3/3 3/3to3/2"/> - </vehicle> - <vehicle id="1555" depart="1555.00"> - <route edges="3/1to3/0 3/0to3/1 3/1to4/1"/> - </vehicle> - <vehicle id="1556" depart="1556.00"> - <route edges="1/3to1/2 1/2to2/2 2/2to2/1"/> - </vehicle> - <vehicle id="1557" depart="1557.00"> - <route edges="1/4to0/4 0/4to0/3 0/3to0/2 0/2to0/1 0/1to1/1 1/1to1/2"/> - </vehicle> - <vehicle id="1558" depart="1558.00"> - <route edges="0/4to0/3 0/3to0/2 0/2to0/1 0/1to1/1 1/1to1/0 1/0to2/0 2/0to2/1"/> - </vehicle> - <vehicle id="1559" depart="1559.00"> - <route edges="2/1to3/1 3/1to2/1 2/1to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to2/4"/> - </vehicle> - <vehicle id="1560" depart="1560.00"> - <route edges="1/0to2/0 2/0to3/0"/> - </vehicle> - <vehicle id="1561" depart="1561.00"> - <route edges="1/0to0/0 0/0to0/1 0/1to1/1 1/1to2/1"/> - </vehicle> - <vehicle id="1562" depart="1562.00"> - <route edges="2/3to2/4 2/4to2/3 2/3to3/3 3/3to4/3"/> - </vehicle> - <vehicle id="1563" depart="1563.00"> - <route edges="0/4to1/4 1/4to2/4 2/4to3/4"/> - </vehicle> - <vehicle id="1564" depart="1564.00"> - <route edges="1/3to0/3 0/3to0/2 0/2to0/1 0/1to1/1 1/1to1/0 1/0to1/1"/> - </vehicle> - <vehicle id="1565" depart="1565.00"> - <route edges="1/1to0/1 0/1to0/2 0/2to1/2 1/2to2/2 2/2to3/2 3/2to3/1"/> - </vehicle> - <vehicle id="1566" depart="1566.00"> - <route edges="1/2to2/2 2/2to1/2 1/2to0/2 0/2to0/1 0/1to0/0"/> - </vehicle> - <vehicle id="1567" depart="1567.00"> - <route edges="3/3to3/4 3/4to2/4 2/4to1/4"/> - </vehicle> - <vehicle id="1568" depart="1568.00"> - <route edges="0/0to0/1 0/1to1/1 1/1to1/0 1/0to2/0 2/0to2/1"/> - </vehicle> - <vehicle id="1569" depart="1569.00"> - <route edges="1/2to0/2 0/2to0/3 0/3to1/3 1/3to1/4 1/4to2/4 2/4to2/3"/> - </vehicle> - <vehicle id="1570" depart="1570.00"> - <route edges="4/3to4/2 4/2to3/2 3/2to3/3 3/3to3/4 3/4to4/4"/> - </vehicle> - <vehicle id="1571" depart="1571.00"> - <route edges="3/3to4/3 4/3to4/4 4/4to3/4"/> - </vehicle> - <vehicle id="1572" depart="1572.00"> - <route edges="0/0to0/1 0/1to0/2 0/2to1/2 1/2to2/2 2/2to2/3"/> - </vehicle> - <vehicle id="1573" depart="1573.00"> - <route edges="2/2to1/2 1/2to1/1 1/1to2/1 2/1to2/2"/> - </vehicle> - <vehicle id="1574" depart="1574.00"> - <route edges="1/0to1/1 1/1to2/1 2/1to3/1 3/1to4/1 4/1to3/1"/> - </vehicle> - <vehicle id="1575" depart="1575.00"> - <route edges="4/1to4/0 4/0to3/0 3/0to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/1"/> - </vehicle> - <vehicle id="1576" depart="1576.00"> - <route edges="0/3to0/2 0/2to0/1 0/1to1/1 1/1to1/0 1/0to2/0 2/0to1/0"/> - </vehicle> - <vehicle id="1577" depart="1577.00"> - <route edges="4/2to4/1 4/1to3/1 3/1to2/1 2/1to1/1 1/1to1/2 1/2to1/3 1/3to1/4"/> - </vehicle> - <vehicle id="1578" depart="1578.00"> - <route edges="2/2to2/3 2/3to2/4 2/4to3/4"/> - </vehicle> - <vehicle id="1579" depart="1579.00"> - <route edges="3/3to2/3 2/3to2/2 2/2to2/1 2/1to3/1 3/1to4/1 4/1to3/1"/> - </vehicle> - <vehicle id="1580" depart="1580.00"> - <route edges="3/3to4/3 4/3to3/3 3/3to2/3"/> - </vehicle> - <vehicle id="1581" depart="1581.00"> - <route edges="3/3to3/2 3/2to2/2 2/2to2/3 2/3to1/3"/> - </vehicle> - <vehicle id="1582" depart="1582.00"> - <route edges="4/2to4/1 4/1to4/2 4/2to3/2"/> - </vehicle> - <vehicle id="1583" depart="1583.00"> - <route edges="3/1to2/1 2/1to2/0 2/0to3/0 3/0to4/0 4/0to3/0"/> - </vehicle> - <vehicle id="1584" depart="1584.00"> - <route edges="3/2to2/2 2/2to1/2 1/2to1/1 1/1to1/2"/> - </vehicle> - <vehicle id="1585" depart="1585.00"> - <route edges="3/3to3/2 3/2to2/2 2/2to1/2"/> - </vehicle> - <vehicle id="1586" depart="1586.00"> - <route edges="4/2to4/1 4/1to3/1 3/1to2/1 2/1to1/1 1/1to1/2 1/2to2/2"/> - </vehicle> - <vehicle id="1587" depart="1587.00"> - <route edges="4/3to4/4 4/4to3/4 3/4to4/4"/> - </vehicle> - <vehicle id="1588" depart="1588.00"> - <route edges="1/3to1/2 1/2to1/3 1/3to2/3 2/3to3/3 3/3to4/3 4/3to4/2"/> - </vehicle> - <vehicle id="1589" depart="1589.00"> - <route edges="2/3to2/2 2/2to2/3 2/3to2/4 2/4to1/4"/> - </vehicle> - <vehicle id="1590" depart="1590.00"> - <route edges="2/2to3/2 3/2to2/2 2/2to1/2 1/2to1/1 1/1to1/0 1/0to0/0"/> - </vehicle> - <vehicle id="1591" depart="1591.00"> - <route edges="4/3to4/2 4/2to3/2 3/2to3/3 3/3to3/4"/> - </vehicle> - <vehicle id="1592" depart="1592.00"> - <route edges="0/2to0/1 0/1to1/1 1/1to2/1 2/1to3/1 3/1to4/1"/> - </vehicle> - <vehicle id="1593" depart="1593.00"> - <route edges="1/1to1/0 1/0to1/1 1/1to2/1 2/1to3/1"/> - </vehicle> - <vehicle id="1594" depart="1594.00"> - <route edges="1/0to0/0 0/0to0/1 0/1to0/0"/> - </vehicle> - <vehicle id="1595" depart="1595.00"> - <route edges="4/4to4/3 4/3to3/3 3/3to2/3 2/3to1/3 1/3to1/4"/> - </vehicle> - <vehicle id="1596" depart="1596.00"> - <route edges="2/3to2/2 2/2to2/3 2/3to2/4 2/4to3/4 3/4to2/4"/> - </vehicle> - <vehicle id="1597" depart="1597.00"> - <route edges="3/3to3/2 3/2to2/2 2/2to2/3 2/3to2/4 2/4to2/3"/> - </vehicle> - <vehicle id="1598" depart="1598.00"> - <route edges="3/3to3/2 3/2to2/2 2/2to1/2 1/2to1/3 1/3to1/4 1/4to2/4"/> - </vehicle> - <vehicle id="1599" depart="1599.00"> - <route edges="2/0to1/0 1/0to2/0 2/0to3/0 3/0to4/0 4/0to3/0"/> - </vehicle> - <vehicle id="1600" depart="1600.00"> - <route edges="2/4to2/3 2/3to1/3 1/3to1/2 1/2to1/1 1/1to1/2"/> - </vehicle> - <vehicle id="1601" depart="1601.00"> - <route edges="0/3to1/3 1/3to1/2 1/2to1/1 1/1to2/1 2/1to2/0"/> - </vehicle> - <vehicle id="1602" depart="1602.00"> - <route edges="1/3to1/2 1/2to1/1 1/1to2/1"/> - </vehicle> - <vehicle id="1603" depart="1603.00"> - <route edges="2/0to3/0 3/0to2/0 2/0to2/1 2/1to2/2 2/2to3/2"/> - </vehicle> - <vehicle id="1604" depart="1604.00"> - <route edges="3/2to2/2 2/2to1/2 1/2to1/3 1/3to0/3"/> - </vehicle> - <vehicle id="1605" depart="1605.00"> - <route edges="1/3to1/4 1/4to1/3 1/3to1/2 1/2to1/1 1/1to1/0"/> - </vehicle> - <vehicle id="1606" depart="1606.00"> - <route edges="0/1to0/2 0/2to0/1 0/1to1/1 1/1to1/0 1/0to2/0 2/0to3/0 3/0to2/0"/> - </vehicle> - <vehicle id="1607" depart="1607.00"> - <route edges="4/3to4/2 4/2to3/2 3/2to3/1 3/1to4/1"/> - </vehicle> - <vehicle id="1608" depart="1608.00"> - <route edges="2/0to2/1 2/1to2/2 2/2to2/3 2/3to3/3 3/3to4/3"/> - </vehicle> - <vehicle id="1609" depart="1609.00"> - <route edges="4/4to3/4 3/4to2/4 2/4to2/3 2/3to2/2 2/2to1/2"/> - </vehicle> - <vehicle id="1610" depart="1610.00"> - <route edges="0/2to0/3 0/3to0/2 0/2to0/1 0/1to1/1 1/1to1/0 1/0to2/0 2/0to3/0 3/0to4/0"/> - </vehicle> - <vehicle id="1611" depart="1611.00"> - <route edges="2/2to2/1 2/1to2/2 2/2to3/2 3/2to4/2 4/2to4/1"/> - </vehicle> - <vehicle id="1612" depart="1612.00"> - <route edges="3/3to4/3 4/3to3/3 3/3to2/3 2/3to2/2 2/2to2/1 2/1to2/0 2/0to2/1"/> - </vehicle> - <vehicle id="1613" depart="1613.00"> - <route edges="2/3to3/3 3/3to2/3 2/3to2/2 2/2to2/1"/> - </vehicle> - <vehicle id="1614" depart="1614.00"> - <route edges="2/4to1/4 1/4to0/4"/> - </vehicle> - <vehicle id="1615" depart="1615.00"> - <route edges="2/2to2/3 2/3to3/3 3/3to4/3 4/3to3/3"/> - </vehicle> - <vehicle id="1616" depart="1616.00"> - <route edges="0/4to0/3 0/3to0/2 0/2to0/1 0/1to1/1 1/1to0/1"/> - </vehicle> - <vehicle id="1617" depart="1617.00"> - <route edges="0/1to0/0 0/0to0/1 0/1to0/2 0/2to0/3 0/3to1/3 1/3to1/4 1/4to2/4 2/4to3/4 3/4to3/3"/> - </vehicle> - <vehicle id="1618" depart="1618.00"> - <route edges="0/4to1/4 1/4to0/4"/> - </vehicle> - <vehicle id="1619" depart="1619.00"> - <route edges="1/2to2/2 2/2to1/2 1/2to0/2 0/2to0/1 0/1to0/0"/> - </vehicle> - <vehicle id="1620" depart="1620.00"> - <route edges="0/1to1/1 1/1to1/2 1/2to1/3 1/3to0/3"/> - </vehicle> - <vehicle id="1621" depart="1621.00"> - <route edges="2/2to3/2 3/2to3/1 3/1to3/0 3/0to2/0"/> - </vehicle> - <vehicle id="1622" depart="1622.00"> - <route edges="4/1to3/1 3/1to2/1 2/1to2/2 2/2to1/2"/> - </vehicle> - <vehicle id="1623" depart="1623.00"> - <route edges="2/1to2/2 2/2to3/2 3/2to3/1"/> - </vehicle> - <vehicle id="1624" depart="1624.00"> - <route edges="1/4to1/3 1/3to0/3"/> - </vehicle> - <vehicle id="1625" depart="1625.00"> - <route edges="3/0to4/0 4/0to3/0 3/0to2/0 2/0to2/1 2/1to2/2 2/2to2/3"/> - </vehicle> - <vehicle id="1626" depart="1626.00"> - <route edges="4/2to4/1 4/1to4/2 4/2to3/2"/> - </vehicle> - <vehicle id="1627" depart="1627.00"> - <route edges="2/3to1/3 1/3to0/3 0/3to0/2 0/2to1/2"/> - </vehicle> - <vehicle id="1628" depart="1628.00"> - <route edges="1/0to2/0 2/0to1/0 1/0to1/1 1/1to2/1"/> - </vehicle> - <vehicle id="1629" depart="1629.00"> - <route edges="1/4to2/4 2/4to2/3 2/3to2/2 2/2to2/1 2/1to2/0 2/0to3/0"/> - </vehicle> - <vehicle id="1630" depart="1630.00"> - <route edges="3/2to4/2 4/2to3/2 3/2to2/2 2/2to1/2 1/2to1/3 1/3to1/4 1/4to2/4"/> - </vehicle> - <vehicle id="1631" depart="1631.00"> - <route edges="3/2to2/2 2/2to3/2 3/2to3/3"/> - </vehicle> - <vehicle id="1632" depart="1632.00"> - <route edges="2/3to2/2 2/2to2/1 2/1to2/0 2/0to3/0 3/0to3/1"/> - </vehicle> - <vehicle id="1633" depart="1633.00"> - <route edges="4/4to4/3 4/3to3/3 3/3to2/3 2/3to1/3 1/3to0/3 0/3to1/3"/> - </vehicle> - <vehicle id="1634" depart="1634.00"> - <route edges="0/1to0/0 0/0to0/1 0/1to0/2 0/2to0/3 0/3to1/3 1/3to2/3 2/3to2/4"/> - </vehicle> - <vehicle id="1635" depart="1635.00"> - <route edges="3/4to3/3 3/3to2/3 2/3to2/2 2/2to2/1 2/1to2/0 2/0to2/1"/> - </vehicle> - <vehicle id="1636" depart="1636.00"> - <route edges="1/4to1/3 1/3to0/3 0/3to0/4 0/4to0/3"/> - </vehicle> - <vehicle id="1637" depart="1637.00"> - <route edges="3/3to3/2 3/2to2/2 2/2to2/1"/> - </vehicle> - <vehicle id="1638" depart="1638.00"> - <route edges="1/1to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to2/4 2/4to1/4"/> - </vehicle> - <vehicle id="1639" depart="1639.00"> - <route edges="3/3to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to4/0 4/0to3/0"/> - </vehicle> - <vehicle id="1640" depart="1640.00"> - <route edges="3/0to3/1 3/1to3/2"/> - </vehicle> - <vehicle id="1641" depart="1641.00"> - <route edges="3/2to4/2 4/2to3/2 3/2to3/1"/> - </vehicle> - <vehicle id="1642" depart="1642.00"> - <route edges="4/0to4/1 4/1to3/1 3/1to2/1 2/1to2/2 2/2to2/3"/> - </vehicle> - <vehicle id="1643" depart="1643.00"> - <route edges="1/1to2/1 2/1to2/2 2/2to2/3 2/3to3/3 3/3to4/3"/> - </vehicle> - <vehicle id="1644" depart="1644.00"> - <route edges="4/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to2/1"/> - </vehicle> - <vehicle id="1645" depart="1645.00"> - <route edges="3/1to2/1 2/1to2/0 2/0to3/0 3/0to4/0 4/0to3/0"/> - </vehicle> - <vehicle id="1646" depart="1646.00"> - <route edges="1/2to1/3 1/3to1/2 1/2to1/1 1/1to1/2"/> - </vehicle> - <vehicle id="1647" depart="1647.00"> - <route edges="0/3to1/3 1/3to1/2 1/2to1/1 1/1to1/0 1/0to2/0 2/0to1/0"/> - </vehicle> - <vehicle id="1648" depart="1648.00"> - <route edges="4/4to4/3 4/3to3/3 3/3to2/3 2/3to3/3"/> - </vehicle> - <vehicle id="1649" depart="1649.00"> - <route edges="3/0to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to2/3"/> - </vehicle> - <vehicle id="1650" depart="1650.00"> - <route edges="4/3to3/3 3/3to2/3 2/3to1/3 1/3to0/3 0/3to0/4 0/4to0/3"/> - </vehicle> - <vehicle id="1651" depart="1651.00"> - <route edges="4/2to3/2 3/2to2/2 2/2to2/3 2/3to2/4 2/4to1/4"/> - </vehicle> - <vehicle id="1652" depart="1652.00"> - <route edges="2/0to3/0 3/0to3/1 3/1to3/2 3/2to3/3 3/3to2/3"/> - </vehicle> - <vehicle id="1653" depart="1653.00"> - <route edges="0/4to1/4 1/4to1/3 1/3to2/3 2/3to2/4"/> - </vehicle> - <vehicle id="1654" depart="1654.00"> - <route edges="4/0to4/1 4/1to3/1 3/1to3/2 3/2to3/3 3/3to3/4 3/4to3/3"/> - </vehicle> - <vehicle id="1655" depart="1655.00"> - <route edges="3/3to3/4 3/4to2/4 2/4to2/3 2/3to2/2 2/2to2/1 2/1to3/1"/> - </vehicle> - <vehicle id="1656" depart="1656.00"> - <route edges="3/3to2/3 2/3to2/4"/> - </vehicle> - <vehicle id="1657" depart="1657.00"> - <route edges="4/3to3/3 3/3to2/3 2/3to1/3 1/3to0/3 0/3to0/2 0/2to0/1 0/1to0/0 0/0to1/0"/> - </vehicle> - <vehicle id="1658" depart="1658.00"> - <route edges="3/1to3/2 3/2to2/2 2/2to1/2 1/2to0/2 0/2to0/3 0/3to0/4"/> - </vehicle> - <vehicle id="1659" depart="1659.00"> - <route edges="3/2to3/3 3/3to3/2"/> - </vehicle> - <vehicle id="1660" depart="1660.00"> - <route edges="1/2to1/3 1/3to1/2 1/2to1/1 1/1to1/0 1/0to0/0"/> - </vehicle> - <vehicle id="1661" depart="1661.00"> - <route edges="1/1to1/2 1/2to1/1 1/1to2/1 2/1to3/1 3/1to3/2"/> - </vehicle> - <vehicle id="1662" depart="1662.00"> - <route edges="0/2to0/1 0/1to0/2 0/2to0/3 0/3to1/3 1/3to2/3 2/3to3/3"/> - </vehicle> - <vehicle id="1663" depart="1663.00"> - <route edges="2/3to2/2 2/2to2/3 2/3to3/3 3/3to2/3"/> - </vehicle> - <vehicle id="1664" depart="1664.00"> - <route edges="1/0to2/0 2/0to2/1 2/1to3/1 3/1to3/0"/> - </vehicle> - <vehicle id="1665" depart="1665.00"> - <route edges="3/4to2/4 2/4to1/4 1/4to2/4"/> - </vehicle> - <vehicle id="1666" depart="1666.00"> - <route edges="1/1to0/1 0/1to0/2 0/2to0/3 0/3to1/3 1/3to2/3 2/3to3/3 3/3to4/3 4/3to4/4"/> - </vehicle> - <vehicle id="1667" depart="1667.00"> - <route edges="4/0to4/1 4/1to3/1 3/1to3/2 3/2to3/3 3/3to3/4 3/4to4/4"/> - </vehicle> - <vehicle id="1668" depart="1668.00"> - <route edges="2/2to3/2 3/2to2/2 2/2to2/3 2/3to2/4 2/4to3/4"/> - </vehicle> - <vehicle id="1669" depart="1669.00"> - <route edges="1/3to1/2 1/2to1/3 1/3to2/3 2/3to3/3 3/3to3/2"/> - </vehicle> - <vehicle id="1670" depart="1670.00"> - <route edges="2/1to3/1 3/1to3/2 3/2to3/3 3/3to4/3"/> - </vehicle> - <vehicle id="1671" depart="1671.00"> - <route edges="2/3to2/2 2/2to2/1"/> - </vehicle> - <vehicle id="1672" depart="1672.00"> - <route edges="0/1to0/0 0/0to1/0 1/0to2/0 2/0to2/1"/> - </vehicle> - <vehicle id="1673" depart="1673.00"> - <route edges="2/2to2/3 2/3to2/4 2/4to2/3"/> - </vehicle> - <vehicle id="1674" depart="1674.00"> - <route edges="2/1to1/1 1/1to0/1 0/1to0/2 0/2to0/1"/> - </vehicle> - <vehicle id="1675" depart="1675.00"> - <route edges="2/2to2/3 2/3to1/3 1/3to1/4 1/4to0/4"/> - </vehicle> - <vehicle id="1676" depart="1676.00"> - <route edges="0/2to0/3 0/3to0/2 0/2to0/1"/> - </vehicle> - <vehicle id="1677" depart="1677.00"> - <route edges="1/1to1/2 1/2to1/1 1/1to2/1 2/1to3/1 3/1to4/1"/> - </vehicle> - <vehicle id="1678" depart="1678.00"> - <route edges="1/2to0/2 0/2to0/1 0/1to1/1 1/1to1/0 1/0to1/1"/> - </vehicle> - <vehicle id="1679" depart="1679.00"> - <route edges="3/0to2/0 2/0to2/1 2/1to3/1 3/1to4/1 4/1to3/1"/> - </vehicle> - <vehicle id="1680" depart="1680.00"> - <route edges="4/2to4/1 4/1to3/1 3/1to2/1 2/1to1/1 1/1to0/1 0/1to0/2 0/2to0/3 0/3to0/2"/> - </vehicle> - <vehicle id="1681" depart="1681.00"> - <route edges="0/2to1/2 1/2to1/3 1/3to2/3 2/3to3/3 3/3to3/4"/> - </vehicle> - <vehicle id="1682" depart="1682.00"> - <route edges="3/2to2/2 2/2to2/1 2/1to2/0 2/0to1/0"/> - </vehicle> - <vehicle id="1683" depart="1683.00"> - <route edges="0/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to2/4 2/4to3/4 3/4to2/4"/> - </vehicle> - <vehicle id="1684" depart="1684.00"> - <route edges="2/3to3/3 3/3to2/3 2/3to2/2 2/2to2/1"/> - </vehicle> - <vehicle id="1685" depart="1685.00"> - <route edges="3/3to2/3 2/3to1/3 1/3to1/2 1/2to1/1 1/1to2/1"/> - </vehicle> - <vehicle id="1686" depart="1686.00"> - <route edges="1/3to1/4 1/4to1/3 1/3to1/2 1/2to1/1 1/1to2/1"/> - </vehicle> - <vehicle id="1687" depart="1687.00"> - <route edges="4/3to4/4 4/4to3/4 3/4to2/4 2/4to1/4 1/4to1/3 1/3to0/3 0/3to0/2 0/2to0/1 0/1to0/0"/> - </vehicle> - <vehicle id="1688" depart="1688.00"> - <route edges="2/2to2/1 2/1to2/2 2/2to3/2 3/2to4/2 4/2to4/3"/> - </vehicle> - <vehicle id="1689" depart="1689.00"> - <route edges="4/3to4/4 4/4to3/4 3/4to3/3"/> - </vehicle> - <vehicle id="1690" depart="1690.00"> - <route edges="1/2to2/2 2/2to1/2 1/2to0/2 0/2to0/3 0/3to0/4 0/4to0/3"/> - </vehicle> - <vehicle id="1691" depart="1691.00"> - <route edges="0/2to0/3 0/3to0/2 0/2to0/1 0/1to1/1 1/1to2/1 2/1to3/1 3/1to4/1 4/1to3/1"/> - </vehicle> - <vehicle id="1692" depart="1692.00"> - <route edges="1/0to1/1 1/1to1/2 1/2to2/2 2/2to1/2"/> - </vehicle> - <vehicle id="1693" depart="1693.00"> - <route edges="2/4to1/4 1/4to1/3 1/3to1/2 1/2to2/2 2/2to3/2 3/2to4/2 4/2to3/2"/> - </vehicle> - <vehicle id="1694" depart="1694.00"> - <route edges="4/1to4/2 4/2to3/2 3/2to2/2 2/2to1/2 1/2to1/1 1/1to2/1"/> - </vehicle> - <vehicle id="1695" depart="1695.00"> - <route edges="4/1to3/1 3/1to2/1 2/1to1/1 1/1to0/1 0/1to0/2 0/2to1/2"/> - </vehicle> - <vehicle id="1696" depart="1696.00"> - <route edges="2/3to2/2 2/2to1/2 1/2to1/3 1/3to1/2"/> - </vehicle> - <vehicle id="1697" depart="1697.00"> - <route edges="3/1to4/1 4/1to3/1 3/1to2/1 2/1to1/1 1/1to1/2 1/2to1/3"/> - </vehicle> - <vehicle id="1698" depart="1698.00"> - <route edges="2/3to2/4 2/4to2/3 2/3to2/2 2/2to2/1 2/1to2/0 2/0to3/0 3/0to4/0"/> - </vehicle> - <vehicle id="1699" depart="1699.00"> - <route edges="0/3to0/2 0/2to0/1 0/1to1/1 1/1to1/0 1/0to2/0 2/0to3/0 3/0to2/0"/> - </vehicle> - <vehicle id="1700" depart="1700.00"> - <route edges="0/4to1/4 1/4to1/3 1/3to1/2 1/2to1/1 1/1to1/0 1/0to2/0 2/0to3/0"/> - </vehicle> - <vehicle id="1701" depart="1701.00"> - <route edges="1/1to1/0 1/0to1/1 1/1to1/2 1/2to2/2 2/2to3/2 3/2to4/2 4/2to4/3"/> - </vehicle> - <vehicle id="1702" depart="1702.00"> - <route edges="0/3to0/2 0/2to0/1 0/1to1/1 1/1to1/0 1/0to2/0 2/0to2/1"/> - </vehicle> - <vehicle id="1703" depart="1703.00"> - <route edges="2/4to2/3 2/3to2/2 2/2to2/1 2/1to3/1"/> - </vehicle> - <vehicle id="1704" depart="1704.00"> - <route edges="1/0to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to2/3"/> - </vehicle> - <vehicle id="1705" depart="1705.00"> - <route edges="4/1to4/0 4/0to3/0 3/0to2/0 2/0to2/1 2/1to2/2 2/2to2/3 2/3to2/4 2/4to2/3"/> - </vehicle> - <vehicle id="1706" depart="1706.00"> - <route edges="2/2to3/2 3/2to2/2 2/2to1/2 1/2to0/2 0/2to0/1 0/1to1/1"/> - </vehicle> - <vehicle id="1707" depart="1707.00"> - <route edges="3/0to2/0 2/0to2/1 2/1to2/2 2/2to3/2 3/2to4/2"/> - </vehicle> - <vehicle id="1708" depart="1708.00"> - <route edges="3/0to4/0 4/0to4/1 4/1to4/0"/> - </vehicle> - <vehicle id="1709" depart="1709.00"> - <route edges="3/1to3/2 3/2to2/2 2/2to1/2 1/2to0/2 0/2to0/3 0/3to0/4 0/4to1/4"/> - </vehicle> - <vehicle id="1710" depart="1710.00"> - <route edges="3/4to3/3 3/3to2/3 2/3to1/3 1/3to1/2 1/2to1/1 1/1to1/0 1/0to0/0"/> - </vehicle> - <vehicle id="1711" depart="1711.00"> - <route edges="2/1to2/0 2/0to2/1 2/1to3/1 3/1to4/1 4/1to4/0"/> - </vehicle> - <vehicle id="1712" depart="1712.00"> - <route edges="4/2to4/3 4/3to3/3 3/3to2/3 2/3to1/3 1/3to0/3"/> - </vehicle> - <vehicle id="1713" depart="1713.00"> - <route edges="2/3to2/4 2/4to2/3 2/3to3/3"/> - </vehicle> - <vehicle id="1714" depart="1714.00"> - <route edges="2/2to1/2 1/2to1/3 1/3to1/4 1/4to1/3"/> - </vehicle> - <vehicle id="1715" depart="1715.00"> - <route edges="2/0to1/0 1/0to1/1 1/1to1/2 1/2to2/2 2/2to3/2 3/2to3/3"/> - </vehicle> - <vehicle id="1716" depart="1716.00"> - <route edges="0/4to0/3 0/3to1/3 1/3to0/3"/> - </vehicle> - <vehicle id="1717" depart="1717.00"> - <route edges="3/2to2/2 2/2to1/2"/> - </vehicle> - <vehicle id="1718" depart="1718.00"> - <route edges="3/3to3/2 3/2to3/1 3/1to4/1 4/1to3/1"/> - </vehicle> - <vehicle id="1719" depart="1719.00"> - <route edges="0/1to0/2 0/2to0/3 0/3to1/3 1/3to2/3 2/3to1/3"/> - </vehicle> - <vehicle id="1720" depart="1720.00"> - <route edges="2/4to2/3 2/3to2/2"/> - </vehicle> - <vehicle id="1721" depart="1721.00"> - <route edges="4/3to4/4 4/4to3/4 3/4to2/4 2/4to1/4 1/4to1/3 1/3to0/3 0/3to0/2 0/2to0/1 0/1to0/0 0/0to0/1"/> - </vehicle> - <vehicle id="1722" depart="1722.00"> - <route edges="2/2to2/1 2/1to1/1 1/1to1/2"/> - </vehicle> - <vehicle id="1723" depart="1723.00"> - <route edges="0/2to0/3 0/3to0/2 0/2to0/1 0/1to1/1 1/1to1/0 1/0to1/1"/> - </vehicle> - <vehicle id="1724" depart="1724.00"> - <route edges="2/2to3/2 3/2to2/2 2/2to2/3 2/3to2/4"/> - </vehicle> - <vehicle id="1725" depart="1725.00"> - <route edges="2/2to1/2 1/2to1/3 1/3to0/3"/> - </vehicle> - <vehicle id="1726" depart="1726.00"> - <route edges="0/3to0/2 0/2to0/1 0/1to1/1 1/1to2/1 2/1to3/1 3/1to4/1"/> - </vehicle> - <vehicle id="1727" depart="1727.00"> - <route edges="4/3to4/2 4/2to3/2 3/2to2/2 2/2to1/2 1/2to0/2 0/2to0/1 0/1to1/1"/> - </vehicle> - <vehicle id="1728" depart="1728.00"> - <route edges="1/1to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to1/3"/> - </vehicle> - <vehicle id="1729" depart="1729.00"> - <route edges="4/2to3/2 3/2to2/2 2/2to1/2 1/2to1/3 1/3to1/4"/> - </vehicle> - <vehicle id="1730" depart="1730.00"> - <route edges="3/3to3/2 3/2to2/2 2/2to1/2 1/2to1/1 1/1to1/0"/> - </vehicle> - <vehicle id="1731" depart="1731.00"> - <route edges="3/3to4/3 4/3to3/3 3/3to3/2 3/2to3/1 3/1to3/0"/> - </vehicle> - <vehicle id="1732" depart="1732.00"> - <route edges="4/3to4/4 4/4to3/4 3/4to2/4 2/4to2/3 2/3to2/2 2/2to2/1 2/1to3/1"/> - </vehicle> - <vehicle id="1733" depart="1733.00"> - <route edges="1/4to1/3 1/3to0/3 0/3to0/4"/> - </vehicle> - <vehicle id="1734" depart="1734.00"> - <route edges="1/0to1/1 1/1to0/1 0/1to0/2 0/2to0/1"/> - </vehicle> - <vehicle id="1735" depart="1735.00"> - <route edges="0/2to0/3 0/3to1/3 1/3to1/4 1/4to0/4"/> - </vehicle> - <vehicle id="1736" depart="1736.00"> - <route edges="1/2to1/3 1/3to1/2 1/2to1/1 1/1to1/0 1/0to2/0 2/0to1/0"/> - </vehicle> - <vehicle id="1737" depart="1737.00"> - <route edges="2/3to1/3 1/3to2/3 2/3to3/3 3/3to3/4"/> - </vehicle> - <vehicle id="1738" depart="1738.00"> - <route edges="1/2to1/3 1/3to0/3 0/3to0/2 0/2to0/1 0/1to0/0 0/0to1/0"/> - </vehicle> - <vehicle id="1739" depart="1739.00"> - <route edges="2/4to1/4 1/4to1/3 1/3to1/2 1/2to1/1 1/1to1/0"/> - </vehicle> - <vehicle id="1740" depart="1740.00"> - <route edges="0/3to1/3 1/3to1/4"/> - </vehicle> - <vehicle id="1741" depart="1741.00"> - <route edges="2/1to2/0 2/0to2/1 2/1to3/1 3/1to4/1 4/1to3/1"/> - </vehicle> - <vehicle id="1742" depart="1742.00"> - <route edges="4/1to4/2 4/2to3/2 3/2to3/1"/> - </vehicle> - <vehicle id="1743" depart="1743.00"> - <route edges="2/1to1/1 1/1to0/1 0/1to0/2 0/2to0/3"/> - </vehicle> - <vehicle id="1744" depart="1744.00"> - <route edges="0/0to1/0 1/0to1/1 1/1to1/2 1/2to2/2 2/2to3/2 3/2to4/2"/> - </vehicle> - <vehicle id="1745" depart="1745.00"> - <route edges="0/4to1/4 1/4to0/4 0/4to0/3"/> - </vehicle> - <vehicle id="1746" depart="1746.00"> - <route edges="1/2to1/1 1/1to1/2 1/2to2/2 2/2to3/2"/> - </vehicle> - <vehicle id="1747" depart="1747.00"> - <route edges="2/0to3/0 3/0to3/1 3/1to3/2 3/2to3/3 3/3to4/3 4/3to4/2"/> - </vehicle> - <vehicle id="1748" depart="1748.00"> - <route edges="1/0to1/1 1/1to2/1 2/1to3/1 3/1to2/1"/> - </vehicle> - <vehicle id="1749" depart="1749.00"> - <route edges="3/2to3/3 3/3to2/3 2/3to1/3 1/3to1/4"/> - </vehicle> - <vehicle id="1750" depart="1750.00"> - <route edges="1/2to2/2 2/2to2/1 2/1to3/1 3/1to4/1 4/1to4/2"/> - </vehicle> - <vehicle id="1751" depart="1751.00"> - <route edges="1/1to2/1 2/1to1/1 1/1to0/1 0/1to0/2 0/2to0/3 0/3to0/4"/> - </vehicle> - <vehicle id="1752" depart="1752.00"> - <route edges="1/3to1/2 1/2to1/3 1/3to1/4 1/4to2/4 2/4to3/4 3/4to4/4 4/4to4/3"/> - </vehicle> - <vehicle id="1753" depart="1753.00"> - <route edges="3/0to3/1 3/1to3/2 3/2to3/3 3/3to3/4 3/4to4/4"/> - </vehicle> - <vehicle id="1754" depart="1754.00"> - <route edges="4/1to4/2 4/2to3/2 3/2to2/2 2/2to2/1 2/1to2/0 2/0to2/1"/> - </vehicle> - <vehicle id="1755" depart="1755.00"> - <route edges="1/4to1/3 1/3to1/2 1/2to2/2 2/2to3/2 3/2to3/3"/> - </vehicle> - <vehicle id="1756" depart="1756.00"> - <route edges="4/2to3/2 3/2to3/1 3/1to4/1 4/1to4/2"/> - </vehicle> - <vehicle id="1757" depart="1757.00"> - <route edges="4/2to4/1 4/1to3/1 3/1to2/1 2/1to1/1 1/1to1/2 1/2to1/1"/> - </vehicle> - <vehicle id="1758" depart="1758.00"> - <route edges="3/2to2/2 2/2to1/2 1/2to0/2 0/2to0/3 0/3to0/4 0/4to1/4"/> - </vehicle> - <vehicle id="1759" depart="1759.00"> - <route edges="0/1to1/1 1/1to1/2 1/2to1/3 1/3to2/3 2/3to3/3"/> - </vehicle> - <vehicle id="1760" depart="1760.00"> - <route edges="2/3to2/2 2/2to2/3 2/3to2/4 2/4to3/4 3/4to2/4"/> - </vehicle> - <vehicle id="1761" depart="1761.00"> - <route edges="1/2to1/3 1/3to2/3 2/3to1/3"/> - </vehicle> - <vehicle id="1762" depart="1762.00"> - <route edges="0/2to1/2 1/2to1/1 1/1to1/0 1/0to2/0 2/0to3/0 3/0to4/0"/> - </vehicle> - <vehicle id="1763" depart="1763.00"> - <route edges="4/2to3/2 3/2to2/2 2/2to2/1 2/1to2/2"/> - </vehicle> - <vehicle id="1764" depart="1764.00"> - <route edges="4/2to4/3 4/3to4/4 4/4to4/3"/> - </vehicle> - <vehicle id="1765" depart="1765.00"> - <route edges="2/2to3/2 3/2to4/2 4/2to4/3"/> - </vehicle> - <vehicle id="1766" depart="1766.00"> - <route edges="1/2to0/2 0/2to0/3 0/3to1/3 1/3to2/3 2/3to3/3 3/3to4/3 4/3to4/4"/> - </vehicle> - <vehicle id="1767" depart="1767.00"> - <route edges="3/4to2/4 2/4to1/4 1/4to1/3"/> - </vehicle> - <vehicle id="1768" depart="1768.00"> - <route edges="0/2to0/1 0/1to0/2 0/2to1/2"/> - </vehicle> - <vehicle id="1769" depart="1769.00"> - <route edges="3/2to3/1 3/1to3/0 3/0to3/1"/> - </vehicle> - <vehicle id="1770" depart="1770.00"> - <route edges="4/2to4/1 4/1to3/1 3/1to2/1 2/1to2/2 2/2to2/3 2/3to3/3"/> - </vehicle> - <vehicle id="1771" depart="1771.00"> - <route edges="4/1to3/1 3/1to2/1 2/1to1/1 1/1to0/1 0/1to0/2 0/2to0/3 0/3to0/4"/> - </vehicle> - <vehicle id="1772" depart="1772.00"> - <route edges="4/0to4/1 4/1to4/2 4/2to4/1"/> - </vehicle> - <vehicle id="1773" depart="1773.00"> - <route edges="3/4to2/4 2/4to1/4 1/4to1/3 1/3to0/3"/> - </vehicle> - <vehicle id="1774" depart="1774.00"> - <route edges="2/1to2/2 2/2to1/2 1/2to1/1 1/1to1/0"/> - </vehicle> - <vehicle id="1775" depart="1775.00"> - <route edges="0/1to0/2 0/2to1/2 1/2to2/2 2/2to3/2 3/2to4/2 4/2to4/3"/> - </vehicle> - <vehicle id="1776" depart="1776.00"> - <route edges="1/0to1/1 1/1to1/0 1/0to0/0"/> - </vehicle> - <vehicle id="1777" depart="1777.00"> - <route edges="3/4to2/4 2/4to1/4 1/4to1/3 1/3to0/3 0/3to0/2"/> - </vehicle> - <vehicle id="1778" depart="1778.00"> - <route edges="1/3to2/3 2/3to2/2 2/2to1/2"/> - </vehicle> - <vehicle id="1779" depart="1779.00"> - <route edges="3/2to2/2 2/2to1/2 1/2to0/2 0/2to0/3 0/3to0/4 0/4to0/3"/> - </vehicle> - <vehicle id="1780" depart="1780.00"> - <route edges="2/4to1/4 1/4to2/4 2/4to3/4 3/4to2/4"/> - </vehicle> - <vehicle id="1781" depart="1781.00"> - <route edges="3/3to3/2 3/2to2/2 2/2to1/2 1/2to0/2 0/2to0/1 0/1to1/1"/> - </vehicle> - <vehicle id="1782" depart="1782.00"> - <route edges="2/2to2/1 2/1to2/2 2/2to3/2 3/2to2/2"/> - </vehicle> - <vehicle id="1783" depart="1783.00"> - <route edges="3/2to4/2 4/2to3/2 3/2to2/2 2/2to1/2 1/2to1/1 1/1to1/2"/> - </vehicle> - <vehicle id="1784" depart="1784.00"> - <route edges="3/3to2/3 2/3to1/3 1/3to0/3 0/3to0/2 0/2to0/1 0/1to0/0 0/0to1/0"/> - </vehicle> - <vehicle id="1785" depart="1785.00"> - <route edges="4/1to4/2 4/2to3/2 3/2to2/2 2/2to1/2 1/2to1/3 1/3to1/4 1/4to0/4"/> - </vehicle> - <vehicle id="1786" depart="1786.00"> - <route edges="3/1to3/0"/> - </vehicle> - <vehicle id="1787" depart="1787.00"> - <route edges="1/0to2/0 2/0to2/1 2/1to2/2 2/2to2/3 2/3to3/3 3/3to4/3 4/3to3/3"/> - </vehicle> - <vehicle id="1788" depart="1788.00"> - <route edges="2/1to1/1 1/1to1/2 1/2to2/2 2/2to3/2 3/2to4/2"/> - </vehicle> - <vehicle id="1789" depart="1789.00"> - <route edges="4/3to3/3 3/3to3/2 3/2to3/1 3/1to4/1"/> - </vehicle> - <vehicle id="1790" depart="1790.00"> - <route edges="3/0to4/0 4/0to4/1 4/1to4/2 4/2to4/3 4/3to4/4"/> - </vehicle> - <vehicle id="1791" depart="1791.00"> - <route edges="3/2to3/3 3/3to2/3"/> - </vehicle> - <vehicle id="1792" depart="1792.00"> - <route edges="4/4to3/4 3/4to2/4 2/4to1/4 1/4to1/3 1/3to1/2 1/2to1/1 1/1to1/0"/> - </vehicle> - <vehicle id="1793" depart="1793.00"> - <route edges="1/3to1/4 1/4to1/3 1/3to1/2 1/2to1/1 1/1to1/0 1/0to2/0 2/0to3/0 3/0to2/0"/> - </vehicle> - <vehicle id="1794" depart="1794.00"> - <route edges="2/1to2/0 2/0to3/0 3/0to4/0 4/0to4/1"/> - </vehicle> - <vehicle id="1795" depart="1795.00"> - <route edges="1/3to0/3 0/3to1/3 1/3to1/4 1/4to2/4 2/4to1/4"/> - </vehicle> - <vehicle id="1796" depart="1796.00"> - <route edges="4/1to4/2 4/2to3/2 3/2to2/2 2/2to1/2 1/2to0/2 0/2to0/1 0/1to0/0"/> - </vehicle> - <vehicle id="1797" depart="1797.00"> - <route edges="4/4to4/3 4/3to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to2/0"/> - </vehicle> - <vehicle id="1798" depart="1798.00"> - <route edges="2/4to2/3 2/3to1/3 1/3to1/4"/> - </vehicle> - <vehicle id="1799" depart="1799.00"> - <route edges="4/2to4/3 4/3to3/3 3/3to2/3 2/3to1/3"/> - </vehicle> - <vehicle id="1800" depart="1800.00"> - <route edges="0/4to0/3 0/3to0/2 0/2to1/2 1/2to2/2 2/2to3/2 3/2to4/2 4/2to4/3"/> - </vehicle> - <vehicle id="1801" depart="1801.00"> - <route edges="2/4to3/4 3/4to2/4 2/4to1/4 1/4to1/3 1/3to1/2 1/2to1/1 1/1to2/1"/> - </vehicle> - <vehicle id="1802" depart="1802.00"> - <route edges="2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/1"/> - </vehicle> - <vehicle id="1803" depart="1803.00"> - <route edges="1/2to1/3 1/3to1/2 1/2to1/1 1/1to1/0 1/0to2/0 2/0to3/0 3/0to4/0 4/0to3/0"/> - </vehicle> - <vehicle id="1804" depart="1804.00"> - <route edges="4/3to4/4 4/4to4/3 4/3to4/2 4/2to4/1"/> - </vehicle> - <vehicle id="1805" depart="1805.00"> - <route edges="3/3to3/4 3/4to4/4 4/4to4/3"/> - </vehicle> - <vehicle id="1806" depart="1806.00"> - <route edges="1/2to0/2 0/2to0/3 0/3to1/3 1/3to2/3 2/3to2/2"/> - </vehicle> - <vehicle id="1807" depart="1807.00"> - <route edges="3/2to3/3 3/3to2/3 2/3to1/3 1/3to2/3"/> - </vehicle> - <vehicle id="1808" depart="1808.00"> - <route edges="4/1to4/2 4/2to3/2 3/2to3/1 3/1to3/0"/> - </vehicle> - <vehicle id="1809" depart="1809.00"> - <route edges="4/3to3/3 3/3to3/2 3/2to3/1"/> - </vehicle> - <vehicle id="1810" depart="1810.00"> - <route edges="0/2to0/1 0/1to1/1 1/1to2/1 2/1to3/1 3/1to4/1 4/1to4/2"/> - </vehicle> - <vehicle id="1811" depart="1811.00"> - <route edges="4/4to3/4 3/4to2/4 2/4to1/4 1/4to1/3 1/3to0/3 0/3to0/2 0/2to0/3"/> - </vehicle> - <vehicle id="1812" depart="1812.00"> - <route edges="2/0to2/1 2/1to2/2 2/2to2/3 2/3to3/3 3/3to2/3"/> - </vehicle> - <vehicle id="1813" depart="1813.00"> - <route edges="1/2to0/2 0/2to0/1 0/1to1/1 1/1to1/2"/> - </vehicle> - <vehicle id="1814" depart="1814.00"> - <route edges="3/0to2/0 2/0to2/1 2/1to2/2 2/2to3/2 3/2to4/2"/> - </vehicle> - <vehicle id="1815" depart="1815.00"> - <route edges="4/2to3/2 3/2to4/2"/> - </vehicle> - <vehicle id="1816" depart="1816.00"> - <route edges="1/4to0/4 0/4to0/3 0/3to0/2 0/2to1/2 1/2to2/2 2/2to3/2 3/2to3/1"/> - </vehicle> - <vehicle id="1817" depart="1817.00"> - <route edges="4/2to4/3 4/3to3/3 3/3to2/3 2/3to1/3 1/3to2/3"/> - </vehicle> - <vehicle id="1818" depart="1818.00"> - <route edges="4/0to3/0 3/0to2/0 2/0to2/1 2/1to2/2 2/2to2/3 2/3to1/3"/> - </vehicle> - <vehicle id="1819" depart="1819.00"> - <route edges="3/2to3/3 3/3to2/3 2/3to1/3 1/3to0/3 0/3to1/3"/> - </vehicle> - <vehicle id="1820" depart="1820.00"> - <route edges="3/4to4/4 4/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to2/1"/> - </vehicle> - <vehicle id="1821" depart="1821.00"> - <route edges="4/4to4/3 4/3to3/3 3/3to2/3 2/3to1/3 1/3to1/2 1/2to1/1"/> - </vehicle> - <vehicle id="1822" depart="1822.00"> - <route edges="2/2to3/2 3/2to2/2 2/2to1/2 1/2to0/2"/> - </vehicle> - <vehicle id="1823" depart="1823.00"> - <route edges="3/1to4/1 4/1to4/2 4/2to4/1"/> - </vehicle> - <vehicle id="1824" depart="1824.00"> - <route edges="1/3to2/3 2/3to2/2 2/2to2/1 2/1to1/1"/> - </vehicle> - <vehicle id="1825" depart="1825.00"> - <route edges="1/2to2/2 2/2to1/2 1/2to1/1 1/1to1/0 1/0to1/1"/> - </vehicle> - <vehicle id="1826" depart="1826.00"> - <route edges="3/0to2/0 2/0to2/1 2/1to2/2 2/2to1/2"/> - </vehicle> - <vehicle id="1827" depart="1827.00"> - <route edges="1/2to2/2 2/2to1/2 1/2to1/1 1/1to0/1"/> - </vehicle> - <vehicle id="1828" depart="1828.00"> - <route edges="2/0to1/0 1/0to1/1 1/1to2/1 2/1to1/1"/> - </vehicle> - <vehicle id="1829" depart="1829.00"> - <route edges="2/1to1/1 1/1to2/1 2/1to3/1 3/1to3/2"/> - </vehicle> - <vehicle id="1830" depart="1830.00"> - <route edges="0/1to0/0 0/0to0/1 0/1to0/2 0/2to0/3 0/3to1/3 1/3to1/4 1/4to2/4 2/4to1/4"/> - </vehicle> - <vehicle id="1831" depart="1831.00"> - <route edges="2/2to1/2 1/2to2/2 2/2to3/2 3/2to3/1"/> - </vehicle> - <vehicle id="1832" depart="1832.00"> - <route edges="1/3to1/4 1/4to1/3 1/3to2/3 2/3to3/3"/> - </vehicle> - <vehicle id="1833" depart="1833.00"> - <route edges="2/3to2/2 2/2to2/3 2/3to3/3 3/3to3/4"/> - </vehicle> - <vehicle id="1834" depart="1834.00"> - <route edges="2/1to3/1 3/1to2/1 2/1to2/2 2/2to2/3"/> - </vehicle> - <vehicle id="1835" depart="1835.00"> - <route edges="0/1to0/2 0/2to0/3 0/3to1/3"/> - </vehicle> - <vehicle id="1836" depart="1836.00"> - <route edges="4/3to4/2 4/2to3/2 3/2to3/1 3/1to3/0 3/0to4/0"/> - </vehicle> - <vehicle id="1837" depart="1837.00"> - <route edges="3/3to2/3 2/3to1/3 1/3to1/4"/> - </vehicle> - <vehicle id="1838" depart="1838.00"> - <route edges="0/2to0/3 0/3to0/2"/> - </vehicle> - <vehicle id="1839" depart="1839.00"> - <route edges="3/0to3/1 3/1to3/2 3/2to3/3"/> - </vehicle> - <vehicle id="1840" depart="1840.00"> - <route edges="1/2to1/1 1/1to1/2 1/2to1/3"/> - </vehicle> - <vehicle id="1841" depart="1841.00"> - <route edges="3/2to4/2 4/2to4/3 4/3to4/4"/> - </vehicle> - <vehicle id="1842" depart="1842.00"> - <route edges="0/3to0/4 0/4to0/3 0/3to1/3 1/3to1/2"/> - </vehicle> - <vehicle id="1843" depart="1843.00"> - <route edges="2/4to2/3 2/3to2/2 2/2to3/2 3/2to4/2"/> - </vehicle> - <vehicle id="1844" depart="1844.00"> - <route edges="3/2to4/2 4/2to3/2 3/2to2/2 2/2to1/2 1/2to1/3 1/3to1/4 1/4to0/4"/> - </vehicle> - <vehicle id="1845" depart="1845.00"> - <route edges="2/4to1/4 1/4to1/3 1/3to1/2 1/2to1/1 1/1to1/0 1/0to2/0"/> - </vehicle> - <vehicle id="1846" depart="1846.00"> - <route edges="4/3to3/3 3/3to3/2 3/2to3/1 3/1to4/1 4/1to3/1"/> - </vehicle> - <vehicle id="1847" depart="1847.00"> - <route edges="0/1to0/2 0/2to0/1 0/1to1/1 1/1to2/1 2/1to3/1 3/1to4/1"/> - </vehicle> - <vehicle id="1848" depart="1848.00"> - <route edges="2/3to2/4 2/4to2/3 2/3to3/3 3/3to4/3 4/3to4/2"/> - </vehicle> - <vehicle id="1849" depart="1849.00"> - <route edges="3/2to4/2 4/2to3/2 3/2to3/1 3/1to3/0 3/0to3/1"/> - </vehicle> - <vehicle id="1850" depart="1850.00"> - <route edges="1/3to1/4 1/4to1/3 1/3to1/2 1/2to2/2 2/2to3/2"/> - </vehicle> - <vehicle id="1851" depart="1851.00"> - <route edges="2/2to1/2 1/2to1/3 1/3to1/4 1/4to2/4 2/4to3/4 3/4to4/4"/> - </vehicle> - <vehicle id="1852" depart="1852.00"> - <route edges="1/2to1/3 1/3to1/2 1/2to2/2 2/2to1/2"/> - </vehicle> - <vehicle id="1853" depart="1853.00"> - <route edges="4/2to3/2 3/2to2/2 2/2to1/2 1/2to1/3 1/3to1/4"/> - </vehicle> - <vehicle id="1854" depart="1854.00"> - <route edges="1/2to1/1 1/1to1/2 1/2to2/2 2/2to3/2 3/2to4/2"/> - </vehicle> - <vehicle id="1855" depart="1855.00"> - <route edges="0/1to1/1 1/1to2/1 2/1to2/0"/> - </vehicle> - <vehicle id="1856" depart="1856.00"> - <route edges="0/3to1/3 1/3to1/2 1/2to1/1 1/1to2/1 2/1to3/1 3/1to4/1 4/1to3/1"/> - </vehicle> - <vehicle id="1857" depart="1857.00"> - <route edges="0/2to1/2 1/2to1/3 1/3to1/2"/> - </vehicle> - <vehicle id="1858" depart="1858.00"> - <route edges="0/4to1/4 1/4to1/3 1/3to1/2 1/2to2/2 2/2to3/2"/> - </vehicle> - <vehicle id="1859" depart="1859.00"> - <route edges="1/3to0/3 0/3to0/2 0/2to0/1 0/1to1/1 1/1to1/0 1/0to0/0"/> - </vehicle> - <vehicle id="1860" depart="1860.00"> - <route edges="2/3to1/3 1/3to2/3 2/3to3/3"/> - </vehicle> - <vehicle id="1861" depart="1861.00"> - <route edges="0/3to1/3 1/3to1/2 1/2to2/2 2/2to3/2 3/2to3/3"/> - </vehicle> - <vehicle id="1862" depart="1862.00"> - <route edges="1/1to1/2 1/2to1/1 1/1to2/1 2/1to3/1 3/1to3/2"/> - </vehicle> - <vehicle id="1863" depart="1863.00"> - <route edges="2/4to1/4 1/4to1/3 1/3to2/3 2/3to3/3 3/3to4/3 4/3to3/3"/> - </vehicle> - <vehicle id="1864" depart="1864.00"> - <route edges="4/0to4/1"/> - </vehicle> - <vehicle id="1865" depart="1865.00"> - <route edges="3/0to2/0 2/0to1/0 1/0to1/1 1/1to0/1 0/1to0/0"/> - </vehicle> - <vehicle id="1866" depart="1866.00"> - <route edges="1/3to1/4 1/4to1/3 1/3to1/2 1/2to1/1 1/1to0/1"/> - </vehicle> - <vehicle id="1867" depart="1867.00"> - <route edges="3/1to4/1 4/1to4/0 4/0to4/1"/> - </vehicle> - <vehicle id="1868" depart="1868.00"> - <route edges="4/1to3/1 3/1to2/1 2/1to1/1 1/1to1/2"/> - </vehicle> - <vehicle id="1869" depart="1869.00"> - <route edges="4/3to4/2 4/2to3/2 3/2to3/1"/> - </vehicle> - <vehicle id="1870" depart="1870.00"> - <route edges="2/2to3/2 3/2to2/2 2/2to2/1"/> - </vehicle> - <vehicle id="1871" depart="1871.00"> - <route edges="4/2to4/3 4/3to3/3 3/3to2/3 2/3to2/2 2/2to3/2"/> - </vehicle> - <vehicle id="1872" depart="1872.00"> - <route edges="3/2to4/2 4/2to4/3 4/3to4/4"/> - </vehicle> - <vehicle id="1873" depart="1873.00"> - <route edges="4/0to3/0 3/0to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to2/2"/> - </vehicle> - <vehicle id="1874" depart="1874.00"> - <route edges="2/2to2/3 2/3to2/2 2/2to2/1 2/1to3/1 3/1to2/1"/> - </vehicle> - <vehicle id="1875" depart="1875.00"> - <route edges="4/1to4/0 4/0to3/0 3/0to2/0 2/0to1/0 1/0to0/0 0/0to0/1"/> - </vehicle> - <vehicle id="1876" depart="1876.00"> - <route edges="0/3to0/4 0/4to0/3 0/3to0/2 0/2to0/1 0/1to1/1 1/1to1/0 1/0to2/0 2/0to1/0"/> - </vehicle> - <vehicle id="1877" depart="1877.00"> - <route edges="2/3to3/3 3/3to3/4 3/4to4/4"/> - </vehicle> - <vehicle id="1878" depart="1878.00"> - <route edges="3/2to2/2 2/2to2/3 2/3to3/3 3/3to3/4"/> - </vehicle> - <vehicle id="1879" depart="1879.00"> - <route edges="0/1to0/2 0/2to0/3 0/3to1/3"/> - </vehicle> - <vehicle id="1880" depart="1880.00"> - <route edges="4/2to3/2 3/2to3/3 3/3to3/4 3/4to4/4"/> - </vehicle> - <vehicle id="1881" depart="1881.00"> - <route edges="3/1to3/2 3/2to2/2 2/2to1/2 1/2to1/1 1/1to1/0"/> - </vehicle> - <vehicle id="1882" depart="1882.00"> - <route edges="0/1to1/1 1/1to1/2 1/2to1/3 1/3to2/3 2/3to1/3"/> - </vehicle> - <vehicle id="1883" depart="1883.00"> - <route edges="2/0to1/0 1/0to1/1 1/1to0/1"/> - </vehicle> - <vehicle id="1884" depart="1884.00"> - <route edges="1/4to2/4 2/4to1/4 1/4to1/3 1/3to1/2 1/2to1/1"/> - </vehicle> - <vehicle id="1885" depart="1885.00"> - <route edges="3/0to3/1 3/1to2/1 2/1to3/1"/> - </vehicle> - <vehicle id="1886" depart="1886.00"> - <route edges="0/3to0/2 0/2to0/1 0/1to1/1 1/1to2/1 2/1to3/1 3/1to4/1 4/1to4/0"/> - </vehicle> - <vehicle id="1887" depart="1887.00"> - <route edges="2/2to2/1 2/1to2/2 2/2to2/3 2/3to3/3"/> - </vehicle> - <vehicle id="1888" depart="1888.00"> - <route edges="3/3to2/3 2/3to1/3 1/3to0/3 0/3to0/4"/> - </vehicle> - <vehicle id="1889" depart="1889.00"> - <route edges="0/4to0/3 0/3to1/3 1/3to2/3 2/3to1/3"/> - </vehicle> - <vehicle id="1890" depart="1890.00"> - <route edges="0/2to0/1 0/1to1/1 1/1to1/0 1/0to1/1"/> - </vehicle> - <vehicle id="1891" depart="1891.00"> - <route edges="4/2to3/2 3/2to2/2 2/2to1/2 1/2to1/1 1/1to1/0"/> - </vehicle> - <vehicle id="1892" depart="1892.00"> - <route edges="0/4to0/3 0/3to1/3 1/3to1/4 1/4to2/4 2/4to3/4"/> - </vehicle> - <vehicle id="1893" depart="1893.00"> - <route edges="2/2to2/1 2/1to1/1 1/1to0/1 0/1to0/2 0/2to0/3"/> - </vehicle> - <vehicle id="1894" depart="1894.00"> - <route edges="3/0to3/1 3/1to3/0 3/0to4/0 4/0to3/0"/> - </vehicle> - <vehicle id="1895" depart="1895.00"> - <route edges="4/2to3/2 3/2to2/2 2/2to1/2 1/2to1/1 1/1to0/1"/> - </vehicle> - <vehicle id="1896" depart="1896.00"> - <route edges="1/1to0/1 0/1to1/1 1/1to2/1 2/1to3/1 3/1to3/0"/> - </vehicle> - <vehicle id="1897" depart="1897.00"> - <route edges="2/2to1/2 1/2to1/3 1/3to1/4 1/4to0/4"/> - </vehicle> - <vehicle id="1898" depart="1898.00"> - <route edges="1/2to1/3 1/3to1/2 1/2to1/1 1/1to1/0 1/0to2/0 2/0to3/0"/> - </vehicle> - <vehicle id="1899" depart="1899.00"> - <route edges="0/2to0/1 0/1to1/1 1/1to1/0 1/0to0/0"/> - </vehicle> - <vehicle id="1900" depart="1900.00"> - <route edges="3/4to4/4 4/4to3/4 3/4to2/4 2/4to1/4 1/4to1/3 1/3to0/3 0/3to0/2 0/2to0/1 0/1to1/1"/> - </vehicle> - <vehicle id="1901" depart="1901.00"> - <route edges="3/4to3/3 3/3to3/2 3/2to2/2"/> - </vehicle> - <vehicle id="1902" depart="1902.00"> - <route edges="3/4to4/4"/> - </vehicle> - <vehicle id="1903" depart="1903.00"> - <route edges="0/1to0/2 0/2to0/1 0/1to1/1 1/1to2/1 2/1to1/1"/> - </vehicle> - <vehicle id="1904" depart="1904.00"> - <route edges="3/0to3/1 3/1to3/0 3/0to4/0 4/0to3/0"/> - </vehicle> - <vehicle id="1905" depart="1905.00"> - <route edges="2/2to2/1 2/1to2/2 2/2to3/2 3/2to4/2 4/2to4/1"/> - </vehicle> - <vehicle id="1906" depart="1906.00"> - <route edges="3/3to2/3 2/3to2/2 2/2to3/2 3/2to3/3"/> - </vehicle> - <vehicle id="1907" depart="1907.00"> - <route edges="0/3to0/2 0/2to0/1 0/1to1/1 1/1to2/1 2/1to1/1"/> - </vehicle> - <vehicle id="1908" depart="1908.00"> - <route edges="2/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to3/2"/> - </vehicle> - <vehicle id="1909" depart="1909.00"> - <route edges="1/4to1/3 1/3to1/4 1/4to0/4"/> - </vehicle> - <vehicle id="1910" depart="1910.00"> - <route edges="2/1to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to2/4 2/4to3/4 3/4to2/4"/> - </vehicle> - <vehicle id="1911" depart="1911.00"> - <route edges="2/0to2/1 2/1to2/2 2/2to2/3 2/3to3/3 3/3to4/3 4/3to4/2"/> - </vehicle> - <vehicle id="1912" depart="1912.00"> - <route edges="3/4to3/3 3/3to2/3 2/3to1/3 1/3to0/3 0/3to0/2"/> - </vehicle> - <vehicle id="1913" depart="1913.00"> - <route edges="4/4to4/3 4/3to3/3 3/3to2/3 2/3to2/2 2/2to2/1 2/1to1/1"/> - </vehicle> - <vehicle id="1914" depart="1914.00"> - <route edges="1/2to1/1 1/1to0/1"/> - </vehicle> - <vehicle id="1915" depart="1915.00"> - <route edges="2/2to2/3 2/3to2/2 2/2to2/1 2/1to3/1 3/1to2/1"/> - </vehicle> - <vehicle id="1916" depart="1916.00"> - <route edges="2/0to2/1 2/1to2/2 2/2to2/3 2/3to3/3 3/3to2/3"/> - </vehicle> - <vehicle id="1917" depart="1917.00"> - <route edges="1/1to1/2 1/2to0/2 0/2to0/1"/> - </vehicle> - <vehicle id="1918" depart="1918.00"> - <route edges="2/2to2/1 2/1to2/2 2/2to2/3"/> - </vehicle> - <vehicle id="1919" depart="1919.00"> - <route edges="1/2to2/2 2/2to1/2 1/2to0/2 0/2to0/1"/> - </vehicle> - <vehicle id="1920" depart="1920.00"> - <route edges="0/4to0/3 0/3to1/3 1/3to2/3 2/3to3/3 3/3to3/2"/> - </vehicle> - <vehicle id="1921" depart="1921.00"> - <route edges="1/0to1/1 1/1to1/0 1/0to2/0 2/0to2/1"/> - </vehicle> - <vehicle id="1922" depart="1922.00"> - <route edges="1/4to1/3 1/3to1/2 1/2to2/2 2/2to3/2 3/2to4/2 4/2to4/1"/> - </vehicle> - <vehicle id="1923" depart="1923.00"> - <route edges="0/2to0/1 0/1to0/2 0/2to0/3 0/3to1/3 1/3to2/3"/> - </vehicle> - <vehicle id="1924" depart="1924.00"> - <route edges="3/4to4/4 4/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to3/1"/> - </vehicle> - <vehicle id="1925" depart="1925.00"> - <route edges="2/4to1/4 1/4to1/3 1/3to1/2 1/2to2/2 2/2to3/2 3/2to4/2 4/2to4/3"/> - </vehicle> - <vehicle id="1926" depart="1926.00"> - <route edges="4/3to4/4 4/4to3/4 3/4to2/4 2/4to2/3"/> - </vehicle> - <vehicle id="1927" depart="1927.00"> - <route edges="2/0to2/1 2/1to1/1 1/1to0/1 0/1to0/2 0/2to0/3 0/3to0/4 0/4to1/4"/> - </vehicle> - <vehicle id="1928" depart="1928.00"> - <route edges="2/0to2/1 2/1to1/1 1/1to0/1 0/1to0/2"/> - </vehicle> - <vehicle id="1929" depart="1929.00"> - <route edges="0/1to1/1 1/1to0/1 0/1to0/0"/> - </vehicle> - <vehicle id="1930" depart="1930.00"> - <route edges="4/1to4/2 4/2to3/2 3/2to3/1 3/1to3/0 3/0to4/0"/> - </vehicle> - <vehicle id="1931" depart="1931.00"> - <route edges="1/3to2/3 2/3to2/2 2/2to2/1 2/1to2/0 2/0to3/0 3/0to4/0 4/0to4/1"/> - </vehicle> - <vehicle id="1932" depart="1932.00"> - <route edges="4/3to4/2 4/2to3/2 3/2to2/2 2/2to2/3 2/3to1/3"/> - </vehicle> - <vehicle id="1933" depart="1933.00"> - <route edges="1/2to1/3 1/3to1/2 1/2to1/1 1/1to1/2"/> - </vehicle> - <vehicle id="1934" depart="1934.00"> - <route edges="0/3to0/2 0/2to0/3 0/3to1/3 1/3to1/4 1/4to2/4 2/4to3/4 3/4to4/4 4/4to4/3"/> - </vehicle> - <vehicle id="1935" depart="1935.00"> - <route edges="2/0to3/0 3/0to2/0 2/0to1/0 1/0to1/1 1/1to0/1 0/1to0/2 0/2to0/1"/> - </vehicle> - <vehicle id="1936" depart="1936.00"> - <route edges="2/1to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to1/3"/> - </vehicle> - <vehicle id="1937" depart="1937.00"> - <route edges="2/0to3/0 3/0to3/1 3/1to3/2 3/2to3/3 3/3to4/3 4/3to4/4"/> - </vehicle> - <vehicle id="1938" depart="1938.00"> - <route edges="1/3to1/4 1/4to1/3 1/3to1/2 1/2to1/1 1/1to1/0 1/0to2/0 2/0to3/0 3/0to4/0 4/0to4/1"/> - </vehicle> - <vehicle id="1939" depart="1939.00"> - <route edges="2/3to2/4 2/4to2/3 2/3to2/2 2/2to2/1 2/1to1/1"/> - </vehicle> - <vehicle id="1940" depart="1940.00"> - <route edges="1/3to2/3 2/3to2/2 2/2to2/1 2/1to2/0 2/0to1/0"/> - </vehicle> - <vehicle id="1941" depart="1941.00"> - <route edges="3/3to3/2 3/2to2/2 2/2to1/2 1/2to0/2 0/2to0/1 0/1to0/2"/> - </vehicle> - <vehicle id="1942" depart="1942.00"> - <route edges="1/3to1/4 1/4to1/3 1/3to2/3 2/3to3/3"/> - </vehicle> - <vehicle id="1943" depart="1943.00"> - <route edges="4/2to3/2 3/2to2/2 2/2to2/3 2/3to2/4 2/4to2/3"/> - </vehicle> - <vehicle id="1944" depart="1944.00"> - <route edges="3/0to3/1 3/1to2/1 2/1to2/2 2/2to2/3 2/3to2/4 2/4to1/4"/> - </vehicle> - <vehicle id="1945" depart="1945.00"> - <route edges="1/1to2/1 2/1to2/2 2/2to2/3 2/3to3/3 3/3to2/3"/> - </vehicle> - <vehicle id="1946" depart="1946.00"> - <route edges="0/3to0/4 0/4to1/4 1/4to2/4 2/4to3/4 3/4to4/4 4/4to4/3"/> - </vehicle> - <vehicle id="1947" depart="1947.00"> - <route edges="1/4to1/3 1/3to1/2 1/2to1/1 1/1to2/1 2/1to3/1"/> - </vehicle> - <vehicle id="1948" depart="1948.00"> - <route edges="2/2to1/2 1/2to1/3 1/3to2/3 2/3to3/3 3/3to4/3 4/3to4/2"/> - </vehicle> - <vehicle id="1949" depart="1949.00"> - <route edges="2/2to2/3 2/3to2/2 2/2to3/2"/> - </vehicle> - <vehicle id="1950" depart="1950.00"> - <route edges="2/1to2/2 2/2to2/3 2/3to2/4 2/4to2/3"/> - </vehicle> - <vehicle id="1951" depart="1951.00"> - <route edges="1/3to2/3 2/3to2/2 2/2to2/3"/> - </vehicle> - <vehicle id="1952" depart="1952.00"> - <route edges="1/3to1/2 1/2to0/2 0/2to0/1 0/1to0/0 0/0to0/1"/> - </vehicle> - <vehicle id="1953" depart="1953.00"> - <route edges="4/4to4/3 4/3to3/3 3/3to2/3 2/3to1/3 1/3to0/3 0/3to0/2 0/2to0/1 0/1to0/2"/> - </vehicle> - <vehicle id="1954" depart="1954.00"> - <route edges="2/3to1/3 1/3to1/2 1/2to1/1 1/1to2/1 2/1to3/1 3/1to4/1 4/1to3/1"/> - </vehicle> - <vehicle id="1955" depart="1955.00"> - <route edges="0/1to0/0 0/0to0/1 0/1to1/1 1/1to2/1 2/1to3/1 3/1to4/1 4/1to3/1"/> - </vehicle> - <vehicle id="1956" depart="1956.00"> - <route edges="3/1to3/0 3/0to3/1 3/1to3/2"/> - </vehicle> - <vehicle id="1957" depart="1957.00"> - <route edges="1/3to2/3 2/3to2/4 2/4to1/4"/> - </vehicle> - <vehicle id="1958" depart="1958.00"> - <route edges="3/4to3/3 3/3to2/3 2/3to1/3 1/3to1/2 1/2to2/2"/> - </vehicle> - <vehicle id="1959" depart="1959.00"> - <route edges="3/4to4/4 4/4to4/3 4/3to4/2 4/2to4/1 4/1to4/0 4/0to4/1"/> - </vehicle> - <vehicle id="1960" depart="1960.00"> - <route edges="3/4to4/4 4/4to3/4 3/4to2/4 2/4to1/4 1/4to1/3 1/3to1/2 1/2to1/1 1/1to1/2"/> - </vehicle> - <vehicle id="1961" depart="1961.00"> - <route edges="3/0to4/0 4/0to3/0 3/0to3/1 3/1to3/2"/> - </vehicle> - <vehicle id="1962" depart="1962.00"> - <route edges="3/2to3/3 3/3to2/3 2/3to1/3 1/3to0/3 0/3to0/2 0/2to0/1 0/1to1/1"/> - </vehicle> - <vehicle id="1963" depart="1963.00"> - <route edges="3/3to3/2 3/2to2/2 2/2to1/2 1/2to1/3 1/3to0/3"/> - </vehicle> - <vehicle id="1964" depart="1964.00"> - <route edges="2/0to3/0 3/0to3/1 3/1to3/2 3/2to3/3 3/3to4/3 4/3to4/2"/> - </vehicle> - <vehicle id="1965" depart="1965.00"> - <route edges="4/2to3/2 3/2to2/2 2/2to2/1 2/1to3/1"/> - </vehicle> - <vehicle id="1966" depart="1966.00"> - <route edges="3/4to2/4 2/4to1/4 1/4to1/3 1/3to0/3 0/3to1/3"/> - </vehicle> - <vehicle id="1967" depart="1967.00"> - <route edges="3/4to2/4 2/4to2/3 2/3to2/2 2/2to2/1 2/1to2/0"/> - </vehicle> - <vehicle id="1968" depart="1968.00"> - <route edges="2/1to1/1 1/1to0/1 0/1to0/2 0/2to1/2"/> - </vehicle> - <vehicle id="1969" depart="1969.00"> - <route edges="3/3to4/3 4/3to3/3 3/3to2/3"/> - </vehicle> - <vehicle id="1970" depart="1970.00"> - <route edges="2/3to2/2 2/2to2/1 2/1to2/0 2/0to3/0 3/0to3/1"/> - </vehicle> - <vehicle id="1971" depart="1971.00"> - <route edges="3/1to3/0 3/0to2/0 2/0to1/0 1/0to1/1 1/1to1/0"/> - </vehicle> - <vehicle id="1972" depart="1972.00"> - <route edges="0/4to0/3 0/3to0/2 0/2to0/1 0/1to0/0"/> - </vehicle> - <vehicle id="1973" depart="1973.00"> - <route edges="3/3to3/2 3/2to2/2 2/2to1/2 1/2to1/1"/> - </vehicle> - <vehicle id="1974" depart="1974.00"> - <route edges="4/3to4/4 4/4to3/4 3/4to3/3 3/3to4/3"/> - </vehicle> - <vehicle id="1975" depart="1975.00"> - <route edges="1/0to0/0 0/0to0/1 0/1to0/2 0/2to0/3 0/3to1/3 1/3to1/4 1/4to1/3"/> - </vehicle> - <vehicle id="1976" depart="1976.00"> - <route edges="3/2to3/1 3/1to2/1 2/1to1/1 1/1to0/1 0/1to0/0 0/0to0/1"/> - </vehicle> - <vehicle id="1977" depart="1977.00"> - <route edges="2/3to3/3 3/3to2/3 2/3to1/3 1/3to1/4 1/4to2/4"/> - </vehicle> - <vehicle id="1978" depart="1978.00"> - <route edges="2/3to2/2 2/2to1/2 1/2to1/1"/> - </vehicle> - <vehicle id="1979" depart="1979.00"> - <route edges="0/1to0/0 0/0to0/1 0/1to0/2 0/2to0/3 0/3to1/3 1/3to1/4 1/4to2/4 2/4to3/4 3/4to4/4"/> - </vehicle> - <vehicle id="1980" depart="1980.00"> - <route edges="2/2to1/2 1/2to0/2 0/2to0/1 0/1to0/0 0/0to0/1"/> - </vehicle> - <vehicle id="1981" depart="1981.00"> - <route edges="4/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to4/0"/> - </vehicle> - <vehicle id="1982" depart="1982.00"> - <route edges="0/2to0/3 0/3to1/3 1/3to2/3 2/3to3/3 3/3to4/3"/> - </vehicle> - <vehicle id="1983" depart="1983.00"> - <route edges="4/3to4/2 4/2to3/2 3/2to3/1 3/1to3/0 3/0to3/1"/> - </vehicle> - <vehicle id="1984" depart="1984.00"> - <route edges="3/1to3/2 3/2to3/1 3/1to3/0 3/0to4/0 4/0to4/1"/> - </vehicle> - <vehicle id="1985" depart="1985.00"> - <route edges="1/1to0/1 0/1to1/1 1/1to2/1 2/1to3/1 3/1to4/1 4/1to3/1"/> - </vehicle> - <vehicle id="1986" depart="1986.00"> - <route edges="2/4to3/4 3/4to2/4 2/4to1/4 1/4to1/3 1/3to2/3"/> - </vehicle> - <vehicle id="1987" depart="1987.00"> - <route edges="3/0to4/0 4/0to3/0 3/0to2/0 2/0to2/1 2/1to2/2"/> - </vehicle> - <vehicle id="1988" depart="1988.00"> - <route edges="1/0to1/1 1/1to1/2 1/2to1/3 1/3to1/4"/> - </vehicle> - <vehicle id="1989" depart="1989.00"> - <route edges="1/2to1/3 1/3to1/2 1/2to1/1 1/1to1/0 1/0to2/0 2/0to3/0 3/0to2/0"/> - </vehicle> - <vehicle id="1990" depart="1990.00"> - <route edges="3/4to2/4 2/4to2/3 2/3to3/3 3/3to3/4"/> - </vehicle> - <vehicle id="1991" depart="1991.00"> - <route edges="0/3to0/2 0/2to0/1 0/1to0/0 0/0to1/0"/> - </vehicle> - <vehicle id="1992" depart="1992.00"> - <route edges="0/0to0/1 0/1to0/2 0/2to0/3 0/3to1/3 1/3to2/3 2/3to3/3 3/3to4/3 4/3to4/2"/> - </vehicle> - <vehicle id="1993" depart="1993.00"> - <route edges="2/0to2/1 2/1to2/0 2/0to3/0 3/0to4/0"/> - </vehicle> - <vehicle id="1994" depart="1994.00"> - <route edges="4/2to4/1 4/1to3/1 3/1to2/1 2/1to1/1 1/1to0/1 0/1to0/0"/> - </vehicle> - <vehicle id="1995" depart="1995.00"> - <route edges="4/0to3/0 3/0to2/0"/> - </vehicle> - <vehicle id="1996" depart="1996.00"> - <route edges="1/1to1/0 1/0to1/1 1/1to2/1 2/1to3/1 3/1to4/1 4/1to4/0"/> - </vehicle> - <vehicle id="1997" depart="1997.00"> - <route edges="4/1to4/0 4/0to3/0 3/0to2/0 2/0to1/0 1/0to2/0"/> - </vehicle> - <vehicle id="1998" depart="1998.00"> - <route edges="4/2to4/1 4/1to3/1 3/1to2/1 2/1to1/1 1/1to0/1 0/1to0/2 0/2to0/3 0/3to0/4 0/4to1/4"/> - </vehicle> - <vehicle id="1999" depart="1999.00"> - <route edges="0/3to0/2 0/2to1/2 1/2to1/1"/> - </vehicle> - <vehicle id="2000" depart="2000.00"> - <route edges="0/3to0/4 0/4to0/3 0/3to0/2 0/2to1/2 1/2to2/2 2/2to2/3"/> - </vehicle> - <vehicle id="2001" depart="2001.00"> - <route edges="1/3to2/3 2/3to2/2 2/2to3/2 3/2to4/2"/> - </vehicle> - <vehicle id="2002" depart="2002.00"> - <route edges="3/4to2/4 2/4to2/3 2/3to3/3 3/3to3/2"/> - </vehicle> - <vehicle id="2003" depart="2003.00"> - <route edges="3/1to4/1 4/1to3/1 3/1to2/1 2/1to1/1 1/1to0/1"/> - </vehicle> - <vehicle id="2004" depart="2004.00"> - <route edges="0/3to1/3 1/3to1/2 1/2to1/1 1/1to1/0 1/0to0/0"/> - </vehicle> - <vehicle id="2005" depart="2005.00"> - <route edges="1/1to1/0 1/0to1/1 1/1to0/1 0/1to0/2 0/2to0/3 0/3to0/4"/> - </vehicle> - <vehicle id="2006" depart="2006.00"> - <route edges="3/3to2/3 2/3to2/2 2/2to2/1 2/1to3/1 3/1to2/1"/> - </vehicle> - <vehicle id="2007" depart="2007.00"> - <route edges="0/1to0/0 0/0to0/1 0/1to0/2 0/2to1/2 1/2to2/2"/> - </vehicle> - <vehicle id="2008" depart="2008.00"> - <route edges="2/3to2/4 2/4to1/4 1/4to1/3 1/3to1/2 1/2to1/3"/> - </vehicle> - <vehicle id="2009" depart="2009.00"> - <route edges="2/0to3/0 3/0to3/1 3/1to3/2 3/2to3/3 3/3to2/3"/> - </vehicle> - <vehicle id="2010" depart="2010.00"> - <route edges="1/3to1/4 1/4to1/3 1/3to2/3"/> - </vehicle> - <vehicle id="2011" depart="2011.00"> - <route edges="3/1to3/2 3/2to3/1 3/1to3/0 3/0to4/0 4/0to4/1"/> - </vehicle> - <vehicle id="2012" depart="2012.00"> - <route edges="1/2to1/3 1/3to1/2 1/2to1/1 1/1to1/0 1/0to2/0 2/0to1/0"/> - </vehicle> - <vehicle id="2013" depart="2013.00"> - <route edges="3/3to3/4 3/4to2/4 2/4to1/4 1/4to0/4 0/4to1/4"/> - </vehicle> - <vehicle id="2014" depart="2014.00"> - <route edges="0/4to0/3 0/3to0/2 0/2to0/1 0/1to1/1 1/1to1/0 1/0to1/1"/> - </vehicle> - <vehicle id="2015" depart="2015.00"> - <route edges="4/2to4/1 4/1to4/2 4/2to4/3 4/3to4/4"/> - </vehicle> - <vehicle id="2016" depart="2016.00"> - <route edges="2/2to2/1 2/1to3/1"/> - </vehicle> - <vehicle id="2017" depart="2017.00"> - <route edges="2/1to1/1 1/1to1/2 1/2to2/2 2/2to1/2"/> - </vehicle> - <vehicle id="2018" depart="2018.00"> - <route edges="0/0to0/1 0/1to1/1 1/1to2/1 2/1to2/0"/> - </vehicle> - <vehicle id="2019" depart="2019.00"> - <route edges="3/4to4/4 4/4to4/3 4/3to4/2 4/2to4/1 4/1to4/0"/> - </vehicle> - <vehicle id="2020" depart="2020.00"> - <route edges="4/2to3/2 3/2to2/2 2/2to1/2 1/2to1/3 1/3to0/3"/> - </vehicle> - <vehicle id="2021" depart="2021.00"> - <route edges="2/3to2/4 2/4to2/3 2/3to2/2 2/2to3/2 3/2to3/3"/> - </vehicle> - <vehicle id="2022" depart="2022.00"> - <route edges="3/1to4/1 4/1to3/1 3/1to2/1 2/1to1/1 1/1to1/2 1/2to1/3 1/3to0/3"/> - </vehicle> - <vehicle id="2023" depart="2023.00"> - <route edges="0/3to0/2 0/2to0/1 0/1to1/1 1/1to2/1 2/1to3/1 3/1to4/1"/> - </vehicle> - <vehicle id="2024" depart="2024.00"> - <route edges="2/1to2/2 2/2to1/2 1/2to0/2 0/2to0/1 0/1to1/1"/> - </vehicle> - <vehicle id="2025" depart="2025.00"> - <route edges="4/0to3/0 3/0to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/1"/> - </vehicle> - <vehicle id="2026" depart="2026.00"> - <route edges="0/2to1/2 1/2to0/2"/> - </vehicle> - <vehicle id="2027" depart="2027.00"> - <route edges="1/4to1/3 1/3to1/2 1/2to2/2 2/2to2/1"/> - </vehicle> - <vehicle id="2028" depart="2028.00"> - <route edges="1/3to1/4 1/4to1/3 1/3to2/3 2/3to2/4"/> - </vehicle> - <vehicle id="2029" depart="2029.00"> - <route edges="0/1to0/0 0/0to0/1 0/1to0/2 0/2to1/2 1/2to2/2 2/2to3/2 3/2to3/1"/> - </vehicle> - <vehicle id="2030" depart="2030.00"> - <route edges="4/4to3/4 3/4to2/4 2/4to2/3 2/3to2/2 2/2to2/1 2/1to3/1"/> - </vehicle> - <vehicle id="2031" depart="2031.00"> - <route edges="1/3to1/2 1/2to0/2 0/2to0/1 0/1to0/0"/> - </vehicle> - <vehicle id="2032" depart="2032.00"> - <route edges="1/3to1/2 1/2to1/3 1/3to2/3 2/3to3/3 3/3to3/4"/> - </vehicle> - <vehicle id="2033" depart="2033.00"> - <route edges="4/4to3/4 3/4to2/4 2/4to1/4 1/4to1/3 1/3to2/3"/> - </vehicle> - <vehicle id="2034" depart="2034.00"> - <route edges="0/1to1/1 1/1to1/2 1/2to1/3 1/3to2/3 2/3to2/2"/> - </vehicle> - <vehicle id="2035" depart="2035.00"> - <route edges="3/2to3/3 3/3to2/3 2/3to1/3 1/3to0/3 0/3to0/2 0/2to0/1 0/1to0/2"/> - </vehicle> - <vehicle id="2036" depart="2036.00"> - <route edges="3/3to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to4/1 4/1to4/2"/> - </vehicle> - <vehicle id="2037" depart="2037.00"> - <route edges="0/1to1/1 1/1to1/0 1/0to2/0 2/0to2/1"/> - </vehicle> - <vehicle id="2038" depart="2038.00"> - <route edges="0/1to0/0 0/0to0/1 0/1to0/2 0/2to0/3 0/3to1/3 1/3to2/3 2/3to3/3 3/3to4/3"/> - </vehicle> - <vehicle id="2039" depart="2039.00"> - <route edges="4/3to4/4 4/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to3/2"/> - </vehicle> - <vehicle id="2040" depart="2040.00"> - <route edges="1/4to0/4 0/4to0/3 0/3to0/2 0/2to0/1 0/1to1/1 1/1to1/0 1/0to2/0 2/0to3/0 3/0to4/0 4/0to4/1"/> - </vehicle> - <vehicle id="2041" depart="2041.00"> - <route edges="3/0to2/0 2/0to1/0 1/0to1/1 1/1to0/1 0/1to0/2 0/2to0/3 0/3to0/4 0/4to0/3"/> - </vehicle> - <vehicle id="2042" depart="2042.00"> - <route edges="3/4to2/4 2/4to1/4 1/4to0/4 0/4to1/4"/> - </vehicle> - <vehicle id="2043" depart="2043.00"> - <route edges="0/3to0/4 0/4to0/3 0/3to1/3 1/3to2/3 2/3to3/3 3/3to4/3 4/3to4/2"/> - </vehicle> - <vehicle id="2044" depart="2044.00"> - <route edges="1/1to2/1 2/1to2/2 2/2to3/2 3/2to4/2 4/2to4/1"/> - </vehicle> - <vehicle id="2045" depart="2045.00"> - <route edges="3/1to2/1 2/1to1/1 1/1to0/1 0/1to0/2 0/2to0/3 0/3to1/3"/> - </vehicle> - <vehicle id="2046" depart="2046.00"> - <route edges="1/1to2/1 2/1to2/0 2/0to3/0 3/0to4/0 4/0to4/1"/> - </vehicle> - <vehicle id="2047" depart="2047.00"> - <route edges="3/3to3/4 3/4to2/4 2/4to3/4"/> - </vehicle> - <vehicle id="2048" depart="2048.00"> - <route edges="1/0to2/0 2/0to2/1 2/1to2/2 2/2to2/3 2/3to3/3 3/3to3/2"/> - </vehicle> - <vehicle id="2049" depart="2049.00"> - <route edges="0/1to0/0 0/0to1/0 1/0to2/0 2/0to1/0"/> - </vehicle> - <vehicle id="2050" depart="2050.00"> - <route edges="4/3to4/4 4/4to3/4 3/4to2/4 2/4to1/4 1/4to1/3 1/3to0/3 0/3to0/2 0/2to0/1 0/1to0/2"/> - </vehicle> - <vehicle id="2051" depart="2051.00"> - <route edges="2/4to1/4 1/4to1/3 1/3to1/2 1/2to2/2 2/2to3/2 3/2to2/2"/> - </vehicle> - <vehicle id="2052" depart="2052.00"> - <route edges="3/2to3/1 3/1to3/0 3/0to3/1"/> - </vehicle> - <vehicle id="2053" depart="2053.00"> - <route edges="4/3to4/2"/> - </vehicle> - <vehicle id="2054" depart="2054.00"> - <route edges="2/1to1/1 1/1to2/1 2/1to3/1 3/1to4/1 4/1to4/2"/> - </vehicle> - <vehicle id="2055" depart="2055.00"> - <route edges="2/3to2/2 2/2to2/3 2/3to3/3 3/3to4/3 4/3to3/3"/> - </vehicle> - <vehicle id="2056" depart="2056.00"> - <route edges="3/4to3/3 3/3to2/3 2/3to1/3 1/3to1/2 1/2to1/1"/> - </vehicle> - <vehicle id="2057" depart="2057.00"> - <route edges="3/4to3/3 3/3to2/3 2/3to1/3 1/3to0/3 0/3to0/2 0/2to0/1 0/1to0/0 0/0to0/1"/> - </vehicle> - <vehicle id="2058" depart="2058.00"> - <route edges="2/1to3/1 3/1to3/2 3/2to3/3 3/3to4/3 4/3to4/4"/> - </vehicle> - <vehicle id="2059" depart="2059.00"> - <route edges="4/4to3/4 3/4to2/4 2/4to2/3 2/3to2/4"/> - </vehicle> - <vehicle id="2060" depart="2060.00"> - <route edges="4/1to4/0 4/0to3/0 3/0to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to1/4"/> - </vehicle> - <vehicle id="2061" depart="2061.00"> - <route edges="4/1to4/2 4/2to3/2 3/2to2/2 2/2to1/2 1/2to1/3 1/3to0/3"/> - </vehicle> - <vehicle id="2062" depart="2062.00"> - <route edges="2/1to3/1 3/1to2/1 2/1to1/1 1/1to0/1"/> - </vehicle> - <vehicle id="2063" depart="2063.00"> - <route edges="4/2to4/1 4/1to3/1 3/1to2/1 2/1to2/2 2/2to1/2"/> - </vehicle> - <vehicle id="2064" depart="2064.00"> - <route edges="0/0to0/1 0/1to0/2 0/2to0/3 0/3to1/3 1/3to2/3 2/3to3/3 3/3to4/3 4/3to4/2"/> - </vehicle> - <vehicle id="2065" depart="2065.00"> - <route edges="1/1to2/1 2/1to3/1 3/1to4/1 4/1to3/1"/> - </vehicle> - <vehicle id="2066" depart="2066.00"> - <route edges="1/1to2/1 2/1to2/0 2/0to1/0"/> - </vehicle> - <vehicle id="2067" depart="2067.00"> - <route edges="2/3to1/3 1/3to1/4 1/4to0/4"/> - </vehicle> - <vehicle id="2068" depart="2068.00"> - <route edges="2/0to3/0 3/0to2/0 2/0to1/0 1/0to1/1 1/1to1/0"/> - </vehicle> - <vehicle id="2069" depart="2069.00"> - <route edges="1/4to1/3 1/3to1/2 1/2to1/1 1/1to1/2"/> - </vehicle> - <vehicle id="2070" depart="2070.00"> - <route edges="1/2to0/2 0/2to0/3 0/3to1/3 1/3to1/4 1/4to2/4 2/4to3/4 3/4to2/4"/> - </vehicle> - <vehicle id="2071" depart="2071.00"> - <route edges="3/3to2/3 2/3to2/2 2/2to2/1 2/1to2/0 2/0to3/0 3/0to2/0"/> - </vehicle> - <vehicle id="2072" depart="2072.00"> - <route edges="1/0to2/0 2/0to2/1 2/1to2/2 2/2to2/3 2/3to3/3 3/3to4/3 4/3to4/2"/> - </vehicle> - <vehicle id="2073" depart="2073.00"> - <route edges="4/0to3/0 3/0to2/0 2/0to1/0 1/0to1/1 1/1to0/1 0/1to0/2 0/2to0/1"/> - </vehicle> - <vehicle id="2074" depart="2074.00"> - <route edges="0/1to0/2 0/2to0/1 0/1to1/1 1/1to1/0"/> - </vehicle> - <vehicle id="2075" depart="2075.00"> - <route edges="1/4to1/3 1/3to1/2 1/2to1/1 1/1to1/0 1/0to2/0 2/0to1/0"/> - </vehicle> - <vehicle id="2076" depart="2076.00"> - <route edges="1/2to1/3 1/3to2/3 2/3to2/4"/> - </vehicle> - <vehicle id="2077" depart="2077.00"> - <route edges="0/0to1/0 1/0to1/1 1/1to2/1 2/1to3/1 3/1to2/1"/> - </vehicle> - <vehicle id="2078" depart="2078.00"> - <route edges="1/3to0/3 0/3to0/2 0/2to0/1 0/1to1/1 1/1to1/0 1/0to2/0 2/0to3/0 3/0to3/1"/> - </vehicle> - <vehicle id="2079" depart="2079.00"> - <route edges="2/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to2/0"/> - </vehicle> - <vehicle id="2080" depart="2080.00"> - <route edges="4/1to4/2 4/2to3/2 3/2to3/3 3/3to4/3"/> - </vehicle> - <vehicle id="2081" depart="2081.00"> - <route edges="0/3to0/4 0/4to0/3 0/3to0/2 0/2to0/1 0/1to1/1 1/1to1/0"/> - </vehicle> - <vehicle id="2082" depart="2082.00"> - <route edges="4/2to4/1 4/1to4/0"/> - </vehicle> - <vehicle id="2083" depart="2083.00"> - <route edges="1/3to2/3 2/3to2/2 2/2to2/1 2/1to3/1"/> - </vehicle> - <vehicle id="2084" depart="2084.00"> - <route edges="4/2to4/3 4/3to4/2 4/2to4/1"/> - </vehicle> - <vehicle id="2085" depart="2085.00"> - <route edges="4/4to4/3 4/3to3/3 3/3to2/3 2/3to1/3 1/3to0/3"/> - </vehicle> - <vehicle id="2086" depart="2086.00"> - <route edges="4/3to3/3 3/3to2/3 2/3to2/2 2/2to2/1 2/1to3/1"/> - </vehicle> - <vehicle id="2087" depart="2087.00"> - <route edges="3/2to2/2 2/2to2/3 2/3to2/4 2/4to3/4 3/4to2/4"/> - </vehicle> - <vehicle id="2088" depart="2088.00"> - <route edges="1/3to1/4 1/4to1/3 1/3to2/3"/> - </vehicle> - <vehicle id="2089" depart="2089.00"> - <route edges="0/2to0/3 0/3to0/2 0/2to0/1 0/1to1/1 1/1to1/0 1/0to2/0 2/0to3/0"/> - </vehicle> - <vehicle id="2090" depart="2090.00"> - <route edges="1/4to0/4 0/4to0/3 0/3to0/2 0/2to0/1 0/1to1/1 1/1to2/1 2/1to3/1 3/1to4/1"/> - </vehicle> - <vehicle id="2091" depart="2091.00"> - <route edges="2/1to2/0 2/0to1/0 1/0to1/1 1/1to1/2"/> - </vehicle> - <vehicle id="2092" depart="2092.00"> - <route edges="2/0to3/0 3/0to3/1 3/1to3/2 3/2to4/2 4/2to3/2"/> - </vehicle> - <vehicle id="2093" depart="2093.00"> - <route edges="3/2to3/1 3/1to2/1 2/1to2/2"/> - </vehicle> - <vehicle id="2094" depart="2094.00"> - <route edges="3/2to3/1 3/1to3/2 3/2to3/3"/> - </vehicle> - <vehicle id="2095" depart="2095.00"> - <route edges="0/4to1/4 1/4to1/3 1/3to1/2 1/2to1/1 1/1to2/1 2/1to3/1 3/1to4/1"/> - </vehicle> - <vehicle id="2096" depart="2096.00"> - <route edges="3/1to3/2 3/2to2/2 2/2to1/2 1/2to1/1 1/1to1/0"/> - </vehicle> - <vehicle id="2097" depart="2097.00"> - <route edges="0/3to1/3 1/3to0/3 0/3to0/2 0/2to0/1 0/1to0/2"/> - </vehicle> - <vehicle id="2098" depart="2098.00"> - <route edges="3/2to4/2 4/2to3/2 3/2to2/2 2/2to1/2 1/2to2/2"/> - </vehicle> - <vehicle id="2099" depart="2099.00"> - <route edges="4/3to4/4 4/4to4/3 4/3to4/2 4/2to4/1 4/1to4/2"/> - </vehicle> - <vehicle id="2100" depart="2100.00"> - <route edges="3/4to3/3 3/3to2/3 2/3to1/3 1/3to1/2 1/2to2/2"/> - </vehicle> - <vehicle id="2101" depart="2101.00"> - <route edges="2/4to1/4 1/4to1/3 1/3to1/2 1/2to1/1 1/1to2/1 2/1to3/1 3/1to4/1"/> - </vehicle> - <vehicle id="2102" depart="2102.00"> - <route edges="1/3to2/3 2/3to1/3 1/3to0/3 0/3to1/3"/> - </vehicle> - <vehicle id="2103" depart="2103.00"> - <route edges="0/1to0/0 0/0to0/1 0/1to0/2 0/2to1/2 1/2to2/2 2/2to3/2 3/2to3/3"/> - </vehicle> - <vehicle id="2104" depart="2104.00"> - <route edges="2/4to1/4 1/4to1/3 1/3to1/2 1/2to2/2 2/2to3/2 3/2to3/1"/> - </vehicle> - <vehicle id="2105" depart="2105.00"> - <route edges="0/3to0/2"/> - </vehicle> - <vehicle id="2106" depart="2106.00"> - <route edges="3/4to3/3 3/3to2/3 2/3to1/3 1/3to1/2 1/2to1/1 1/1to0/1"/> - </vehicle> - <vehicle id="2107" depart="2107.00"> - <route edges="3/2to3/1 3/1to2/1 2/1to2/2 2/2to2/3 2/3to1/3"/> - </vehicle> - <vehicle id="2108" depart="2108.00"> - <route edges="3/3to3/2 3/2to2/2 2/2to1/2 1/2to0/2 0/2to0/3"/> - </vehicle> - <vehicle id="2109" depart="2109.00"> - <route edges="4/3to4/2 4/2to3/2 3/2to2/2 2/2to1/2 1/2to1/3 1/3to1/4 1/4to2/4"/> - </vehicle> - <vehicle id="2110" depart="2110.00"> - <route edges="2/0to2/1 2/1to2/2 2/2to2/3 2/3to2/4 2/4to1/4"/> - </vehicle> - <vehicle id="2111" depart="2111.00"> - <route edges="2/1to2/0 2/0to2/1 2/1to2/2 2/2to2/3"/> - </vehicle> - <vehicle id="2112" depart="2112.00"> - <route edges="0/4to0/3 0/3to1/3 1/3to2/3 2/3to3/3 3/3to4/3 4/3to3/3"/> - </vehicle> - <vehicle id="2113" depart="2113.00"> - <route edges="4/4to3/4 3/4to3/3"/> - </vehicle> - <vehicle id="2114" depart="2114.00"> - <route edges="3/3to3/2 3/2to3/3 3/3to3/4 3/4to4/4 4/4to3/4"/> - </vehicle> - <vehicle id="2115" depart="2115.00"> - <route edges="1/0to2/0 2/0to2/1 2/1to2/2 2/2to2/3 2/3to2/4 2/4to3/4 3/4to4/4 4/4to4/3"/> - </vehicle> - <vehicle id="2116" depart="2116.00"> - <route edges="0/3to0/4 0/4to0/3 0/3to0/2 0/2to0/1 0/1to1/1 1/1to2/1 2/1to3/1 3/1to4/1"/> - </vehicle> - <vehicle id="2117" depart="2117.00"> - <route edges="2/2to1/2 1/2to1/3 1/3to2/3 2/3to3/3 3/3to4/3"/> - </vehicle> - <vehicle id="2118" depart="2118.00"> - <route edges="3/4to2/4 2/4to3/4 3/4to4/4 4/4to4/3"/> - </vehicle> - <vehicle id="2119" depart="2119.00"> - <route edges="4/4to4/3 4/3to4/2 4/2to3/2"/> - </vehicle> - <vehicle id="2120" depart="2120.00"> - <route edges="0/1to1/1 1/1to0/1 0/1to0/0 0/0to1/0"/> - </vehicle> - <vehicle id="2121" depart="2121.00"> - <route edges="0/3to0/4 0/4to0/3 0/3to0/2 0/2to0/1 0/1to1/1 1/1to1/0 1/0to2/0 2/0to2/1"/> - </vehicle> - <vehicle id="2122" depart="2122.00"> - <route edges="3/1to2/1 2/1to1/1 1/1to1/0 1/0to1/1"/> - </vehicle> - <vehicle id="2123" depart="2123.00"> - <route edges="3/4to2/4"/> - </vehicle> - <vehicle id="2124" depart="2124.00"> - <route edges="3/2to2/2 2/2to2/3 2/3to3/3 3/3to4/3 4/3to3/3"/> - </vehicle> - <vehicle id="2125" depart="2125.00"> - <route edges="3/3to4/3 4/3to4/2 4/2to4/1 4/1to4/2"/> - </vehicle> - <vehicle id="2126" depart="2126.00"> - <route edges="3/3to3/2 3/2to2/2 2/2to1/2 1/2to1/3 1/3to1/4 1/4to2/4"/> - </vehicle> - <vehicle id="2127" depart="2127.00"> - <route edges="0/3to1/3 1/3to1/2 1/2to2/2 2/2to3/2 3/2to4/2 4/2to3/2"/> - </vehicle> - <vehicle id="2128" depart="2128.00"> - <route edges="2/1to2/0 2/0to2/1 2/1to2/2 2/2to2/3 2/3to2/4 2/4to3/4 3/4to3/3"/> - </vehicle> - <vehicle id="2129" depart="2129.00"> - <route edges="1/0to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to2/4 2/4to3/4 3/4to4/4 4/4to3/4"/> - </vehicle> - <vehicle id="2130" depart="2130.00"> - <route edges="1/2to0/2 0/2to0/1 0/1to1/1 1/1to1/2"/> - </vehicle> - <vehicle id="2131" depart="2131.00"> - <route edges="1/1to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to2/3 2/3to3/3 3/3to2/3"/> - </vehicle> - <vehicle id="2132" depart="2132.00"> - <route edges="1/2to2/2 2/2to2/1 2/1to3/1 3/1to4/1"/> - </vehicle> - <vehicle id="2133" depart="2133.00"> - <route edges="3/3to3/2 3/2to3/3 3/3to2/3"/> - </vehicle> - <vehicle id="2134" depart="2134.00"> - <route edges="1/1to1/0 1/0to1/1 1/1to1/2"/> - </vehicle> - <vehicle id="2135" depart="2135.00"> - <route edges="3/2to2/2 2/2to2/1 2/1to2/0 2/0to3/0 3/0to4/0 4/0to4/1"/> - </vehicle> - <vehicle id="2136" depart="2136.00"> - <route edges="0/0to1/0 1/0to1/1 1/1to2/1 2/1to3/1 3/1to2/1"/> - </vehicle> - <vehicle id="2137" depart="2137.00"> - <route edges="3/4to2/4 2/4to2/3 2/3to3/3 3/3to4/3 4/3to3/3"/> - </vehicle> - <vehicle id="2138" depart="2138.00"> - <route edges="4/3to4/2 4/2to3/2 3/2to2/2 2/2to1/2 1/2to1/1"/> - </vehicle> - <vehicle id="2139" depart="2139.00"> - <route edges="2/1to3/1 3/1to3/0 3/0to4/0 4/0to3/0"/> - </vehicle> - <vehicle id="2140" depart="2140.00"> - <route edges="1/3to0/3 0/3to1/3 1/3to1/4 1/4to2/4 2/4to3/4 3/4to4/4 4/4to3/4"/> - </vehicle> - <vehicle id="2141" depart="2141.00"> - <route edges="3/2to4/2 4/2to3/2 3/2to2/2 2/2to1/2 1/2to1/1 1/1to1/0 1/0to2/0"/> - </vehicle> - <vehicle id="2142" depart="2142.00"> - <route edges="1/0to0/0 0/0to0/1 0/1to0/2 0/2to0/3 0/3to1/3 1/3to2/3 2/3to3/3 3/3to2/3"/> - </vehicle> - <vehicle id="2143" depart="2143.00"> - <route edges="4/0to4/1 4/1to3/1 3/1to2/1 2/1to1/1 1/1to2/1"/> - </vehicle> - <vehicle id="2144" depart="2144.00"> - <route edges="4/3to4/2 4/2to4/3 4/3to4/4 4/4to4/3"/> - </vehicle> - <vehicle id="2145" depart="2145.00"> - <route edges="2/1to2/0 2/0to2/1 2/1to2/2 2/2to2/3 2/3to3/3 3/3to2/3"/> - </vehicle> - <vehicle id="2146" depart="2146.00"> - <route edges="2/3to1/3 1/3to1/2 1/2to1/1 1/1to1/2"/> - </vehicle> - <vehicle id="2147" depart="2147.00"> - <route edges="2/0to1/0 1/0to1/1 1/1to1/2 1/2to2/2"/> - </vehicle> - <vehicle id="2148" depart="2148.00"> - <route edges="2/1to1/1 1/1to1/0 1/0to2/0 2/0to3/0 3/0to2/0"/> - </vehicle> - <vehicle id="2149" depart="2149.00"> - <route edges="2/0to2/1 2/1to2/2 2/2to2/3"/> - </vehicle> - <vehicle id="2150" depart="2150.00"> - <route edges="2/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to3/1"/> - </vehicle> - <vehicle id="2151" depart="2151.00"> - <route edges="2/3to1/3 1/3to0/3 0/3to0/4"/> - </vehicle> - <vehicle id="2152" depart="2152.00"> - <route edges="4/1to4/0 4/0to4/1"/> - </vehicle> - <vehicle id="2153" depart="2153.00"> - <route edges="3/1to3/0 3/0to2/0 2/0to3/0"/> - </vehicle> - <vehicle id="2154" depart="2154.00"> - <route edges="2/1to2/0 2/0to2/1 2/1to2/2 2/2to3/2 3/2to3/1"/> - </vehicle> - <vehicle id="2155" depart="2155.00"> - <route edges="1/0to2/0 2/0to3/0 3/0to4/0 4/0to3/0"/> - </vehicle> - <vehicle id="2156" depart="2156.00"> - <route edges="0/3to1/3 1/3to1/2 1/2to0/2"/> - </vehicle> - <vehicle id="2157" depart="2157.00"> - <route edges="3/1to3/2 3/2to3/1"/> - </vehicle> - <vehicle id="2158" depart="2158.00"> - <route edges="0/0to1/0 1/0to1/1 1/1to1/2 1/2to2/2 2/2to2/1"/> - </vehicle> - <vehicle id="2159" depart="2159.00"> - <route edges="0/1to0/2 0/2to0/3 0/3to1/3 1/3to1/4 1/4to2/4 2/4to2/3"/> - </vehicle> - <vehicle id="2160" depart="2160.00"> - <route edges="0/0to0/1 0/1to0/2 0/2to0/3 0/3to0/4"/> - </vehicle> - <vehicle id="2161" depart="2161.00"> - <route edges="4/2to4/3 4/3to3/3 3/3to2/3 2/3to2/2"/> - </vehicle> - <vehicle id="2162" depart="2162.00"> - <route edges="3/3to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to4/0 4/0to3/0"/> - </vehicle> - <vehicle id="2163" depart="2163.00"> - <route edges="2/2to2/1 2/1to1/1 1/1to1/0 1/0to0/0"/> - </vehicle> - <vehicle id="2164" depart="2164.00"> - <route edges="0/2to0/3 0/3to0/2 0/2to1/2 1/2to2/2 2/2to3/2 3/2to4/2 4/2to4/1"/> - </vehicle> - <vehicle id="2165" depart="2165.00"> - <route edges="1/4to2/4 2/4to1/4 1/4to1/3 1/3to0/3 0/3to0/2 0/2to0/1 0/1to0/2"/> - </vehicle> - <vehicle id="2166" depart="2166.00"> - <route edges="4/2to4/1 4/1to3/1 3/1to2/1 2/1to1/1 1/1to0/1 0/1to0/2 0/2to0/3 0/3to0/4 0/4to1/4"/> - </vehicle> - <vehicle id="2167" depart="2167.00"> - <route edges="4/2to4/1 4/1to3/1 3/1to2/1 2/1to3/1"/> - </vehicle> - <vehicle id="2168" depart="2168.00"> - <route edges="3/3to2/3 2/3to1/3 1/3to1/4 1/4to2/4"/> - </vehicle> - <vehicle id="2169" depart="2169.00"> - <route edges="4/3to3/3 3/3to3/2"/> - </vehicle> - <vehicle id="2170" depart="2170.00"> - <route edges="2/3to3/3 3/3to3/2 3/2to3/1 3/1to4/1"/> - </vehicle> - <vehicle id="2171" depart="2171.00"> - <route edges="2/0to3/0 3/0to3/1 3/1to3/2 3/2to3/1"/> - </vehicle> - <vehicle id="2172" depart="2172.00"> - <route edges="1/2to2/2 2/2to2/1 2/1to3/1 3/1to4/1"/> - </vehicle> - <vehicle id="2173" depart="2173.00"> - <route edges="2/3to2/2 2/2to2/1 2/1to2/0 2/0to3/0 3/0to4/0"/> - </vehicle> - <vehicle id="2174" depart="2174.00"> - <route edges="3/1to2/1 2/1to2/2 2/2to2/3 2/3to2/4 2/4to3/4 3/4to4/4 4/4to3/4"/> - </vehicle> - <vehicle id="2175" depart="2175.00"> - <route edges="2/4to1/4 1/4to1/3 1/3to1/2 1/2to1/1 1/1to1/0 1/0to2/0 2/0to3/0 3/0to2/0"/> - </vehicle> - <vehicle id="2176" depart="2176.00"> - <route edges="0/3to1/3 1/3to0/3 0/3to0/4 0/4to0/3"/> - </vehicle> - <vehicle id="2177" depart="2177.00"> - <route edges="2/1to2/0 2/0to2/1 2/1to2/2 2/2to2/3 2/3to2/4 2/4to3/4 3/4to3/3"/> - </vehicle> - <vehicle id="2178" depart="2178.00"> - <route edges="1/2to1/3 1/3to2/3 2/3to3/3 3/3to3/2"/> - </vehicle> - <vehicle id="2179" depart="2179.00"> - <route edges="3/1to3/0 3/0to2/0 2/0to1/0 1/0to1/1 1/1to2/1"/> - </vehicle> - <vehicle id="2180" depart="2180.00"> - <route edges="3/1to4/1 4/1to3/1 3/1to2/1 2/1to1/1 1/1to0/1 0/1to0/2 0/2to0/3 0/3to0/2"/> - </vehicle> - <vehicle id="2181" depart="2181.00"> - <route edges="3/0to4/0 4/0to3/0 3/0to2/0 2/0to1/0 1/0to1/1 1/1to1/0"/> - </vehicle> - <vehicle id="2182" depart="2182.00"> - <route edges="2/0to1/0 1/0to1/1 1/1to1/2 1/2to2/2 2/2to3/2 3/2to4/2 4/2to4/1"/> - </vehicle> - <vehicle id="2183" depart="2183.00"> - <route edges="3/4to3/3 3/3to3/4 3/4to2/4"/> - </vehicle> - <vehicle id="2184" depart="2184.00"> - <route edges="1/2to1/1 1/1to1/2 1/2to2/2"/> - </vehicle> - <vehicle id="2185" depart="2185.00"> - <route edges="3/0to2/0 2/0to2/1 2/1to2/2 2/2to2/3 2/3to2/4"/> - </vehicle> - <vehicle id="2186" depart="2186.00"> - <route edges="4/1to3/1 3/1to2/1 2/1to1/1 1/1to0/1 0/1to0/2 0/2to0/3"/> - </vehicle> - <vehicle id="2187" depart="2187.00"> - <route edges="4/3to4/4 4/4to3/4 3/4to2/4 2/4to1/4 1/4to1/3 1/3to1/2 1/2to1/1"/> - </vehicle> - <vehicle id="2188" depart="2188.00"> - <route edges="3/0to3/1 3/1to2/1 2/1to1/1 1/1to0/1 0/1to0/0 0/0to1/0"/> - </vehicle> - <vehicle id="2189" depart="2189.00"> - <route edges="3/4to4/4"/> - </vehicle> - <vehicle id="2190" depart="2190.00"> - <route edges="2/4to1/4 1/4to1/3 1/3to2/3 2/3to3/3"/> - </vehicle> - <vehicle id="2191" depart="2191.00"> - <route edges="3/3to3/4 3/4to2/4 2/4to1/4 1/4to1/3 1/3to1/2 1/2to0/2"/> - </vehicle> - <vehicle id="2192" depart="2192.00"> - <route edges="4/3to3/3 3/3to2/3 2/3to2/2 2/2to2/1 2/1to2/0 2/0to1/0"/> - </vehicle> - <vehicle id="2193" depart="2193.00"> - <route edges="1/1to1/2 1/2to1/3 1/3to1/4 1/4to2/4 2/4to3/4"/> - </vehicle> - <vehicle id="2194" depart="2194.00"> - <route edges="0/1to0/0 0/0to0/1 0/1to0/2 0/2to0/3 0/3to1/3 1/3to1/4 1/4to1/3"/> - </vehicle> - <vehicle id="2195" depart="2195.00"> - <route edges="1/2to1/3 1/3to1/4 1/4to2/4 2/4to3/4 3/4to2/4"/> - </vehicle> - <vehicle id="2196" depart="2196.00"> - <route edges="4/3to3/3 3/3to2/3 2/3to1/3 1/3to0/3 0/3to0/2 0/2to0/1 0/1to0/0"/> - </vehicle> - <vehicle id="2197" depart="2197.00"> - <route edges="3/1to4/1 4/1to3/1 3/1to3/2 3/2to3/3 3/3to3/4 3/4to3/3"/> - </vehicle> - <vehicle id="2198" depart="2198.00"> - <route edges="0/3to0/2 0/2to1/2 1/2to2/2 2/2to2/1"/> - </vehicle> - <vehicle id="2199" depart="2199.00"> - <route edges="1/1to1/2 1/2to1/1 1/1to2/1 2/1to3/1 3/1to4/1"/> - </vehicle> - <vehicle id="2200" depart="2200.00"> - <route edges="4/2to4/1 4/1to3/1 3/1to2/1 2/1to1/1 1/1to0/1 0/1to0/2"/> - </vehicle> - <vehicle id="2201" depart="2201.00"> - <route edges="1/1to2/1 2/1to1/1 1/1to1/2 1/2to1/3"/> - </vehicle> - <vehicle id="2202" depart="2202.00"> - <route edges="3/3to3/2 3/2to2/2 2/2to2/3 2/3to2/4 2/4to2/3"/> - </vehicle> - <vehicle id="2203" depart="2203.00"> - <route edges="1/2to0/2 0/2to0/1 0/1to1/1 1/1to1/0 1/0to2/0 2/0to3/0 3/0to4/0 4/0to4/1"/> - </vehicle> - <vehicle id="2204" depart="2204.00"> - <route edges="3/1to4/1 4/1to3/1 3/1to3/2 3/2to3/3 3/3to2/3"/> - </vehicle> - <vehicle id="2205" depart="2205.00"> - <route edges="1/1to1/2 1/2to1/1 1/1to1/0 1/0to2/0 2/0to2/1"/> - </vehicle> - <vehicle id="2206" depart="2206.00"> - <route edges="0/2to0/3 0/3to0/2 0/2to0/1 0/1to1/1"/> - </vehicle> - <vehicle id="2207" depart="2207.00"> - <route edges="1/4to2/4 2/4to1/4 1/4to1/3 1/3to0/3 0/3to0/2"/> - </vehicle> - <vehicle id="2208" depart="2208.00"> - <route edges="4/1to4/2 4/2to3/2 3/2to2/2 2/2to1/2 1/2to0/2 0/2to0/3 0/3to0/2"/> - </vehicle> - <vehicle id="2209" depart="2209.00"> - <route edges="2/3to2/4 2/4to3/4 3/4to3/3"/> - </vehicle> - <vehicle id="2210" depart="2210.00"> - <route edges="3/3to2/3 2/3to2/2 2/2to2/1 2/1to2/2"/> - </vehicle> - <vehicle id="2211" depart="2211.00"> - <route edges="0/1to0/0 0/0to0/1 0/1to1/1 1/1to2/1 2/1to3/1"/> - </vehicle> - <vehicle id="2212" depart="2212.00"> - <route edges="1/1to0/1 0/1to0/2 0/2to1/2 1/2to2/2 2/2to1/2"/> - </vehicle> - <vehicle id="2213" depart="2213.00"> - <route edges="2/4to2/3 2/3to1/3 1/3to1/4 1/4to0/4"/> - </vehicle> - <vehicle id="2214" depart="2214.00"> - <route edges="4/1to3/1 3/1to2/1 2/1to2/2 2/2to2/3 2/3to2/4"/> - </vehicle> - <vehicle id="2215" depart="2215.00"> - <route edges="1/1to2/1 2/1to1/1 1/1to0/1 0/1to0/2 0/2to0/3 0/3to0/4 0/4to0/3"/> - </vehicle> - <vehicle id="2216" depart="2216.00"> - <route edges="2/0to1/0 1/0to1/1 1/1to2/1 2/1to2/2"/> - </vehicle> - <vehicle id="2217" depart="2217.00"> - <route edges="4/4to4/3 4/3to3/3 3/3to2/3 2/3to1/3 1/3to1/2 1/2to1/1 1/1to1/0 1/0to2/0"/> - </vehicle> - <vehicle id="2218" depart="2218.00"> - <route edges="4/0to4/1 4/1to4/0 4/0to3/0"/> - </vehicle> - <vehicle id="2219" depart="2219.00"> - <route edges="1/0to1/1 1/1to1/0 1/0to2/0 2/0to2/1"/> - </vehicle> - <vehicle id="2220" depart="2220.00"> - <route edges="2/1to2/0 2/0to1/0 1/0to0/0 0/0to0/1"/> - </vehicle> - <vehicle id="2221" depart="2221.00"> - <route edges="1/1to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to0/4"/> - </vehicle> - <vehicle id="2222" depart="2222.00"> - <route edges="4/3to4/2 4/2to3/2 3/2to2/2 2/2to1/2 1/2to0/2 0/2to1/2"/> - </vehicle> - <vehicle id="2223" depart="2223.00"> - <route edges="2/3to3/3 3/3to2/3 2/3to1/3 1/3to1/4 1/4to1/3"/> - </vehicle> - <vehicle id="2224" depart="2224.00"> - <route edges="4/4to3/4 3/4to2/4 2/4to2/3 2/3to2/2 2/2to3/2"/> - </vehicle> - <vehicle id="2225" depart="2225.00"> - <route edges="4/1to3/1 3/1to2/1 2/1to1/1 1/1to0/1"/> - </vehicle> - <vehicle id="2226" depart="2226.00"> - <route edges="4/1to3/1 3/1to2/1 2/1to2/2 2/2to2/3"/> - </vehicle> - <vehicle id="2227" depart="2227.00"> - <route edges="1/1to2/1 2/1to2/0 2/0to3/0 3/0to2/0"/> - </vehicle> - <vehicle id="2228" depart="2228.00"> - <route edges="0/3to1/3 1/3to1/2 1/2to1/1 1/1to1/0 1/0to2/0 2/0to3/0 3/0to3/1"/> - </vehicle> - <vehicle id="2229" depart="2229.00"> - <route edges="1/1to0/1 0/1to0/2 0/2to1/2 1/2to2/2 2/2to3/2 3/2to2/2"/> - </vehicle> - <vehicle id="2230" depart="2230.00"> - <route edges="3/2to2/2 2/2to1/2 1/2to1/1 1/1to2/1"/> - </vehicle> - <vehicle id="2231" depart="2231.00"> - <route edges="0/3to0/2 0/2to1/2 1/2to0/2"/> - </vehicle> - <vehicle id="2232" depart="2232.00"> - <route edges="2/2to3/2 3/2to2/2 2/2to2/3 2/3to2/2"/> - </vehicle> - <vehicle id="2233" depart="2233.00"> - <route edges="4/2to3/2 3/2to2/2 2/2to1/2 1/2to1/3 1/3to2/3"/> - </vehicle> - <vehicle id="2234" depart="2234.00"> - <route edges="3/1to2/1 2/1to2/0 2/0to2/1"/> - </vehicle> - <vehicle id="2235" depart="2235.00"> - <route edges="1/4to2/4 2/4to1/4 1/4to1/3 1/3to0/3 0/3to0/2 0/2to1/2"/> - </vehicle> - <vehicle id="2236" depart="2236.00"> - <route edges="4/4to4/3 4/3to4/2 4/2to4/3"/> - </vehicle> - <vehicle id="2237" depart="2237.00"> - <route edges="3/0to3/1 3/1to3/2 3/2to3/3 3/3to4/3 4/3to3/3"/> - </vehicle> - <vehicle id="2238" depart="2238.00"> - <route edges="1/4to1/3 1/3to1/2 1/2to1/1 1/1to1/0 1/0to2/0"/> - </vehicle> - <vehicle id="2239" depart="2239.00"> - <route edges="4/2to3/2 3/2to2/2 2/2to1/2 1/2to1/3 1/3to1/4 1/4to1/3"/> - </vehicle> - <vehicle id="2240" depart="2240.00"> - <route edges="2/2to3/2 3/2to3/1 3/1to3/0 3/0to4/0 4/0to3/0"/> - </vehicle> - <vehicle id="2241" depart="2241.00"> - <route edges="1/1to1/0 1/0to0/0 0/0to0/1"/> - </vehicle> - <vehicle id="2242" depart="2242.00"> - <route edges="4/2to4/1 4/1to3/1 3/1to2/1 2/1to1/1 1/1to1/0 1/0to0/0"/> - </vehicle> - <vehicle id="2243" depart="2243.00"> - <route edges="1/1to1/2 1/2to1/3"/> - </vehicle> - <vehicle id="2244" depart="2244.00"> - <route edges="4/1to3/1 3/1to2/1 2/1to2/2 2/2to2/3 2/3to2/4 2/4to1/4"/> - </vehicle> - <vehicle id="2245" depart="2245.00"> - <route edges="4/2to3/2 3/2to2/2 2/2to1/2 1/2to1/3 1/3to1/4"/> - </vehicle> - <vehicle id="2246" depart="2246.00"> - <route edges="3/2to4/2 4/2to3/2 3/2to2/2 2/2to1/2 1/2to0/2"/> - </vehicle> - <vehicle id="2247" depart="2247.00"> - <route edges="1/0to0/0 0/0to1/0 1/0to2/0 2/0to3/0"/> - </vehicle> - <vehicle id="2248" depart="2248.00"> - <route edges="0/0to0/1 0/1to0/2 0/2to1/2 1/2to2/2 2/2to3/2 3/2to4/2 4/2to4/3"/> - </vehicle> - <vehicle id="2249" depart="2249.00"> - <route edges="1/4to0/4 0/4to0/3 0/3to0/2 0/2to0/1 0/1to1/1 1/1to2/1 2/1to2/2"/> - </vehicle> - <vehicle id="2250" depart="2250.00"> - <route edges="2/1to2/0 2/0to2/1 2/1to2/2 2/2to2/3 2/3to3/3 3/3to4/3 4/3to4/4"/> - </vehicle> - <vehicle id="2251" depart="2251.00"> - <route edges="3/3to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to4/0"/> - </vehicle> - <vehicle id="2252" depart="2252.00"> - <route edges="4/3to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to2/0"/> - </vehicle> - <vehicle id="2253" depart="2253.00"> - <route edges="4/3to4/4 4/4to3/4 3/4to2/4 2/4to1/4 1/4to1/3 1/3to1/2 1/2to1/1 1/1to1/0 1/0to2/0"/> - </vehicle> - <vehicle id="2254" depart="2254.00"> - <route edges="3/2to3/1 3/1to3/2 3/2to3/3"/> - </vehicle> - <vehicle id="2255" depart="2255.00"> - <route edges="3/3to3/4 3/4to3/3"/> - </vehicle> - <vehicle id="2256" depart="2256.00"> - <route edges="1/4to1/3 1/3to0/3 0/3to0/2 0/2to0/1 0/1to0/2"/> - </vehicle> - <vehicle id="2257" depart="2257.00"> - <route edges="0/3to1/3 1/3to1/4 1/4to2/4 2/4to2/3"/> - </vehicle> - <vehicle id="2258" depart="2258.00"> - <route edges="4/4to3/4 3/4to2/4 2/4to1/4 1/4to1/3 1/3to1/2 1/2to1/1"/> - </vehicle> - <vehicle id="2259" depart="2259.00"> - <route edges="2/1to3/1 3/1to2/1 2/1to1/1 1/1to0/1 0/1to0/2 0/2to1/2"/> - </vehicle> - <vehicle id="2260" depart="2260.00"> - <route edges="2/2to3/2 3/2to2/2 2/2to2/1 2/1to2/2"/> - </vehicle> - <vehicle id="2261" depart="2261.00"> - <route edges="2/2to3/2 3/2to2/2 2/2to2/3 2/3to2/4"/> - </vehicle> - <vehicle id="2262" depart="2262.00"> - <route edges="3/4to2/4 2/4to2/3 2/3to3/3 3/3to2/3"/> - </vehicle> - <vehicle id="2263" depart="2263.00"> - <route edges="2/0to2/1 2/1to2/0 2/0to3/0 3/0to2/0"/> - </vehicle> - <vehicle id="2264" depart="2264.00"> - <route edges="4/0to3/0 3/0to2/0 2/0to1/0 1/0to2/0"/> - </vehicle> - <vehicle id="2265" depart="2265.00"> - <route edges="1/0to1/1 1/1to2/1 2/1to3/1 3/1to4/1 4/1to4/2"/> - </vehicle> - <vehicle id="2266" depart="2266.00"> - <route edges="4/1to4/2 4/2to3/2 3/2to2/2 2/2to2/3 2/3to2/4 2/4to2/3"/> - </vehicle> - <vehicle id="2267" depart="2267.00"> - <route edges="0/4to0/3 0/3to0/2 0/2to0/1 0/1to1/1 1/1to1/0 1/0to2/0 2/0to3/0 3/0to4/0 4/0to4/1"/> - </vehicle> - <vehicle id="2268" depart="2268.00"> - <route edges="0/3to0/4 0/4to1/4 1/4to2/4 2/4to3/4 3/4to2/4"/> - </vehicle> - <vehicle id="2269" depart="2269.00"> - <route edges="0/2to0/3 0/3to0/2 0/2to1/2 1/2to1/3"/> - </vehicle> - <vehicle id="2270" depart="2270.00"> - <route edges="1/1to2/1 2/1to2/0"/> - </vehicle> - <vehicle id="2271" depart="2271.00"> - <route edges="1/2to2/2 2/2to2/1 2/1to2/0 2/0to3/0 3/0to4/0 4/0to3/0"/> - </vehicle> - <vehicle id="2272" depart="2272.00"> - <route edges="1/4to2/4 2/4to2/3 2/3to3/3 3/3to4/3 4/3to4/2"/> - </vehicle> - <vehicle id="2273" depart="2273.00"> - <route edges="2/4to2/3 2/3to1/3 1/3to0/3 0/3to0/2 0/2to0/3"/> - </vehicle> - <vehicle id="2274" depart="2274.00"> - <route edges="3/2to3/3 3/3to2/3 2/3to2/2 2/2to1/2"/> - </vehicle> - <vehicle id="2275" depart="2275.00"> - <route edges="1/2to1/1 1/1to0/1 0/1to0/2"/> - </vehicle> - <vehicle id="2276" depart="2276.00"> - <route edges="0/4to0/3 0/3to1/3 1/3to1/4 1/4to1/3"/> - </vehicle> - <vehicle id="2277" depart="2277.00"> - <route edges="2/3to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to4/0"/> - </vehicle> - <vehicle id="2278" depart="2278.00"> - <route edges="0/3to1/3 1/3to1/2 1/2to2/2 2/2to3/2 3/2to4/2"/> - </vehicle> - <vehicle id="2279" depart="2279.00"> - <route edges="3/3to4/3 4/3to3/3 3/3to2/3 2/3to1/3 1/3to1/2 1/2to0/2"/> - </vehicle> - <vehicle id="2280" depart="2280.00"> - <route edges="0/4to1/4 1/4to1/3 1/3to1/2 1/2to1/1 1/1to1/2"/> - </vehicle> - <vehicle id="2281" depart="2281.00"> - <route edges="1/1to0/1 0/1to1/1 1/1to2/1 2/1to3/1"/> - </vehicle> - <vehicle id="2282" depart="2282.00"> - <route edges="1/4to1/3 1/3to2/3 2/3to3/3 3/3to4/3 4/3to3/3"/> - </vehicle> - <vehicle id="2283" depart="2283.00"> - <route edges="1/3to1/2 1/2to0/2"/> - </vehicle> - <vehicle id="2284" depart="2284.00"> - <route edges="4/3to4/2 4/2to3/2 3/2to2/2 2/2to1/2 1/2to0/2 0/2to1/2"/> - </vehicle> - <vehicle id="2285" depart="2285.00"> - <route edges="4/1to3/1 3/1to2/1 2/1to1/1 1/1to1/0 1/0to0/0"/> - </vehicle> - <vehicle id="2286" depart="2286.00"> - <route edges="0/3to0/2 0/2to0/1 0/1to1/1 1/1to1/2"/> - </vehicle> - <vehicle id="2287" depart="2287.00"> - <route edges="1/4to1/3 1/3to0/3 0/3to0/4"/> - </vehicle> - <vehicle id="2288" depart="2288.00"> - <route edges="0/2to1/2 1/2to1/1 1/1to1/0 1/0to2/0 2/0to3/0 3/0to4/0 4/0to4/1"/> - </vehicle> - <vehicle id="2289" depart="2289.00"> - <route edges="1/4to0/4 0/4to1/4 1/4to2/4 2/4to3/4 3/4to4/4 4/4to4/3"/> - </vehicle> - <vehicle id="2290" depart="2290.00"> - <route edges="3/2to3/3 3/3to2/3 2/3to1/3 1/3to0/3 0/3to0/2"/> - </vehicle> - <vehicle id="2291" depart="2291.00"> - <route edges="1/1to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to2/3 2/3to3/3 3/3to4/3"/> - </vehicle> - <vehicle id="2292" depart="2292.00"> - <route edges="1/2to2/2 2/2to2/3 2/3to2/4 2/4to3/4 3/4to2/4"/> - </vehicle> - <vehicle id="2293" depart="2293.00"> - <route edges="2/3to3/3 3/3to2/3 2/3to1/3 1/3to1/4"/> - </vehicle> - <vehicle id="2294" depart="2294.00"> - <route edges="0/2to0/3 0/3to0/2 0/2to0/1 0/1to1/1 1/1to1/0 1/0to2/0 2/0to3/0 3/0to2/0"/> - </vehicle> - <vehicle id="2295" depart="2295.00"> - <route edges="2/2to2/3 2/3to1/3 1/3to1/2 1/2to1/1 1/1to1/0"/> - </vehicle> - <vehicle id="2296" depart="2296.00"> - <route edges="0/0to1/0 1/0to1/1 1/1to1/2 1/2to2/2 2/2to3/2 3/2to2/2"/> - </vehicle> - <vehicle id="2297" depart="2297.00"> - <route edges="3/3to4/3 4/3to3/3 3/3to3/4"/> - </vehicle> - <vehicle id="2298" depart="2298.00"> - <route edges="1/1to1/2 1/2to2/2 2/2to1/2"/> - </vehicle> - <vehicle id="2299" depart="2299.00"> - <route edges="3/1to3/2 3/2to2/2 2/2to1/2"/> - </vehicle> - <vehicle id="2300" depart="2300.00"> - <route edges="4/2to4/3 4/3to3/3 3/3to2/3 2/3to2/2 2/2to2/1 2/1to2/0"/> - </vehicle> - <vehicle id="2301" depart="2301.00"> - <route edges="2/1to1/1 1/1to0/1 0/1to0/2 0/2to1/2"/> - </vehicle> - <vehicle id="2302" depart="2302.00"> - <route edges="1/1to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to2/3 2/3to3/3 3/3to4/3"/> - </vehicle> - <vehicle id="2303" depart="2303.00"> - <route edges="4/0to3/0 3/0to3/1 3/1to3/2 3/2to4/2 4/2to4/1"/> - </vehicle> - <vehicle id="2304" depart="2304.00"> - <route edges="0/1to1/1 1/1to1/2 1/2to1/3 1/3to2/3 2/3to3/3 3/3to4/3 4/3to4/2"/> - </vehicle> - <vehicle id="2305" depart="2305.00"> - <route edges="3/2to3/3 3/3to2/3"/> - </vehicle> - <vehicle id="2306" depart="2306.00"> - <route edges="1/0to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to2/4 2/4to1/4"/> - </vehicle> - <vehicle id="2307" depart="2307.00"> - <route edges="2/3to2/4 2/4to1/4 1/4to1/3 1/3to1/2 1/2to1/1 1/1to1/0"/> - </vehicle> - <vehicle id="2308" depart="2308.00"> - <route edges="4/1to4/2 4/2to3/2 3/2to3/3 3/3to3/4 3/4to3/3"/> - </vehicle> - <vehicle id="2309" depart="2309.00"> - <route edges="3/1to3/0 3/0to2/0 2/0to2/1 2/1to2/2 2/2to2/3 2/3to2/4 2/4to2/3"/> - </vehicle> - <vehicle id="2310" depart="2310.00"> - <route edges="3/0to3/1 3/1to2/1 2/1to1/1 1/1to1/2 1/2to1/3 1/3to1/4"/> - </vehicle> - <vehicle id="2311" depart="2311.00"> - <route edges="3/3to3/4 3/4to2/4 2/4to2/3 2/3to2/2 2/2to3/2"/> - </vehicle> - <vehicle id="2312" depart="2312.00"> - <route edges="4/1to4/0 4/0to4/1 4/1to4/2 4/2to4/3 4/3to4/4"/> - </vehicle> - <vehicle id="2313" depart="2313.00"> - <route edges="1/3to0/3 0/3to0/2 0/2to0/1 0/1to1/1 1/1to2/1 2/1to3/1 3/1to4/1 4/1to4/0"/> - </vehicle> - <vehicle id="2314" depart="2314.00"> - <route edges="3/2to4/2 4/2to3/2 3/2to2/2 2/2to2/1 2/1to3/1"/> - </vehicle> - <vehicle id="2315" depart="2315.00"> - <route edges="4/2to3/2 3/2to2/2 2/2to1/2 1/2to0/2 0/2to0/3 0/3to1/3"/> - </vehicle> - <vehicle id="2316" depart="2316.00"> - <route edges="4/0to3/0 3/0to3/1 3/1to3/2 3/2to3/3 3/3to3/4"/> - </vehicle> - <vehicle id="2317" depart="2317.00"> - <route edges="0/1to0/0 0/0to0/1"/> - </vehicle> - <vehicle id="2318" depart="2318.00"> - <route edges="4/3to4/2 4/2to3/2 3/2to2/2 2/2to1/2 1/2to0/2 0/2to0/1 0/1to0/2"/> - </vehicle> - <vehicle id="2319" depart="2319.00"> - <route edges="1/2to1/3 1/3to0/3"/> - </vehicle> - <vehicle id="2320" depart="2320.00"> - <route edges="3/0to4/0 4/0to4/1 4/1to4/2 4/2to4/3 4/3to3/3"/> - </vehicle> - <vehicle id="2321" depart="2321.00"> - <route edges="2/0to2/1 2/1to2/0 2/0to3/0 3/0to2/0"/> - </vehicle> - <vehicle id="2322" depart="2322.00"> - <route edges="1/1to0/1 0/1to1/1"/> - </vehicle> - <vehicle id="2323" depart="2323.00"> - <route edges="0/4to0/3 0/3to0/2 0/2to1/2 1/2to2/2 2/2to3/2 3/2to2/2"/> - </vehicle> - <vehicle id="2324" depart="2324.00"> - <route edges="3/2to4/2 4/2to4/1 4/1to4/0 4/0to4/1"/> - </vehicle> - <vehicle id="2325" depart="2325.00"> - <route edges="1/3to1/4 1/4to1/3 1/3to1/2 1/2to1/1 1/1to2/1"/> - </vehicle> - <vehicle id="2326" depart="2326.00"> - <route edges="0/4to1/4 1/4to1/3 1/3to2/3 2/3to3/3 3/3to2/3"/> - </vehicle> - <vehicle id="2327" depart="2327.00"> - <route edges="0/1to1/1 1/1to1/2 1/2to2/2 2/2to3/2 3/2to4/2 4/2to3/2"/> - </vehicle> - <vehicle id="2328" depart="2328.00"> - <route edges="3/2to3/3 3/3to2/3 2/3to1/3 1/3to1/2 1/2to1/1 1/1to0/1"/> - </vehicle> - <vehicle id="2329" depart="2329.00"> - <route edges="1/2to1/3 1/3to1/4 1/4to2/4"/> - </vehicle> - <vehicle id="2330" depart="2330.00"> - <route edges="4/1to3/1 3/1to2/1 2/1to1/1 1/1to1/2"/> - </vehicle> - <vehicle id="2331" depart="2331.00"> - <route edges="2/2to2/1 2/1to1/1 1/1to1/2 1/2to1/3 1/3to2/3"/> - </vehicle> - <vehicle id="2332" depart="2332.00"> - <route edges="0/4to1/4 1/4to1/3 1/3to0/3 0/3to0/2 0/2to0/1 0/1to0/0"/> - </vehicle> - <vehicle id="2333" depart="2333.00"> - <route edges="3/1to4/1 4/1to4/2 4/2to3/2"/> - </vehicle> - <vehicle id="2334" depart="2334.00"> - <route edges="0/3to1/3 1/3to1/2 1/2to1/1 1/1to2/1 2/1to3/1 3/1to4/1 4/1to3/1"/> - </vehicle> - <vehicle id="2335" depart="2335.00"> - <route edges="3/1to3/2 3/2to2/2 2/2to1/2 1/2to1/1 1/1to1/0"/> - </vehicle> - <vehicle id="2336" depart="2336.00"> - <route edges="1/3to0/3 0/3to0/2"/> - </vehicle> - <vehicle id="2337" depart="2337.00"> - <route edges="3/2to3/3 3/3to2/3 2/3to1/3 1/3to1/2 1/2to1/1 1/1to0/1"/> - </vehicle> - <vehicle id="2338" depart="2338.00"> - <route edges="4/1to4/2 4/2to3/2 3/2to2/2 2/2to2/3"/> - </vehicle> - <vehicle id="2339" depart="2339.00"> - <route edges="1/3to1/4 1/4to0/4 0/4to0/3"/> - </vehicle> - <vehicle id="2340" depart="2340.00"> - <route edges="1/3to0/3 0/3to0/2 0/2to1/2 1/2to2/2 2/2to3/2 3/2to4/2 4/2to3/2"/> - </vehicle> - <vehicle id="2341" depart="2341.00"> - <route edges="3/2to3/3 3/3to3/2 3/2to4/2 4/2to3/2"/> - </vehicle> - <vehicle id="2342" depart="2342.00"> - <route edges="2/3to2/2 2/2to2/3 2/3to2/4 2/4to3/4 3/4to4/4"/> - </vehicle> - <vehicle id="2343" depart="2343.00"> - <route edges="4/2to4/3 4/3to3/3 3/3to2/3 2/3to1/3 1/3to1/4"/> - </vehicle> - <vehicle id="2344" depart="2344.00"> - <route edges="2/3to3/3 3/3to2/3 2/3to1/3 1/3to1/2 1/2to1/1 1/1to1/0 1/0to0/0"/> - </vehicle> - <vehicle id="2345" depart="2345.00"> - <route edges="0/3to0/2 0/2to1/2"/> - </vehicle> - <vehicle id="2346" depart="2346.00"> - <route edges="3/0to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to0/4"/> - </vehicle> - <vehicle id="2347" depart="2347.00"> - <route edges="1/1to2/1 2/1to2/2 2/2to2/3 2/3to3/3 3/3to2/3"/> - </vehicle> - <vehicle id="2348" depart="2348.00"> - <route edges="2/1to2/2 2/2to1/2"/> - </vehicle> - <vehicle id="2349" depart="2349.00"> - <route edges="2/3to2/2 2/2to2/1 2/1to3/1 3/1to3/0"/> - </vehicle> - <vehicle id="2350" depart="2350.00"> - <route edges="1/3to0/3 0/3to1/3 1/3to1/2"/> - </vehicle> - <vehicle id="2351" depart="2351.00"> - <route edges="0/1to0/0 0/0to0/1 0/1to0/2 0/2to0/3 0/3to1/3 1/3to1/2"/> - </vehicle> - <vehicle id="2352" depart="2352.00"> - <route edges="1/0to2/0 2/0to2/1 2/1to2/2 2/2to3/2"/> - </vehicle> - <vehicle id="2353" depart="2353.00"> - <route edges="3/4to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to4/0 4/0to4/1"/> - </vehicle> - <vehicle id="2354" depart="2354.00"> - <route edges="4/1to4/0 4/0to3/0 3/0to2/0 2/0to1/0 1/0to1/1 1/1to0/1 0/1to0/2"/> - </vehicle> - <vehicle id="2355" depart="2355.00"> - <route edges="2/0to2/1 2/1to1/1 1/1to1/2 1/2to1/3 1/3to1/4"/> - </vehicle> - <vehicle id="2356" depart="2356.00"> - <route edges="1/2to1/3 1/3to1/2 1/2to2/2 2/2to3/2 3/2to4/2 4/2to3/2"/> - </vehicle> - <vehicle id="2357" depart="2357.00"> - <route edges="3/1to2/1 2/1to2/0"/> - </vehicle> - <vehicle id="2358" depart="2358.00"> - <route edges="3/0to2/0 2/0to2/1 2/1to2/2 2/2to2/3 2/3to3/3 3/3to4/3"/> - </vehicle> - <vehicle id="2359" depart="2359.00"> - <route edges="1/3to0/3 0/3to1/3 1/3to1/4 1/4to2/4"/> - </vehicle> - <vehicle id="2360" depart="2360.00"> - <route edges="4/2to4/1 4/1to3/1 3/1to2/1 2/1to2/2 2/2to2/3"/> - </vehicle> - <vehicle id="2361" depart="2361.00"> - <route edges="0/2to1/2 1/2to1/3 1/3to2/3 2/3to3/3 3/3to4/3"/> - </vehicle> - <vehicle id="2362" depart="2362.00"> - <route edges="4/0to4/1 4/1to3/1 3/1to2/1 2/1to2/2 2/2to2/3 2/3to2/4 2/4to3/4"/> - </vehicle> - <vehicle id="2363" depart="2363.00"> - <route edges="0/2to0/1 0/1to0/2 0/2to0/3 0/3to0/2"/> - </vehicle> - <vehicle id="2364" depart="2364.00"> - <route edges="1/1to1/0 1/0to1/1 1/1to1/2 1/2to0/2"/> - </vehicle> - <vehicle id="2365" depart="2365.00"> - <route edges="1/0to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to0/4"/> - </vehicle> - <vehicle id="2366" depart="2366.00"> - <route edges="3/4to3/3 3/3to2/3 2/3to2/2 2/2to2/1 2/1to2/2"/> - </vehicle> - <vehicle id="2367" depart="2367.00"> - <route edges="1/1to1/2 1/2to1/1 1/1to2/1 2/1to1/1"/> - </vehicle> - <vehicle id="2368" depart="2368.00"> - <route edges="3/2to3/3 3/3to3/2 3/2to3/1 3/1to2/1"/> - </vehicle> - <vehicle id="2369" depart="2369.00"> - <route edges="4/0to4/1 4/1to4/2 4/2to4/3 4/3to4/2"/> - </vehicle> - <vehicle id="2370" depart="2370.00"> - <route edges="1/4to0/4 0/4to0/3 0/3to0/2 0/2to0/1 0/1to1/1 1/1to2/1 2/1to3/1 3/1to2/1"/> - </vehicle> - <vehicle id="2371" depart="2371.00"> - <route edges="0/2to0/3 0/3to0/2 0/2to0/1"/> - </vehicle> - <vehicle id="2372" depart="2372.00"> - <route edges="2/1to2/0 2/0to1/0 1/0to1/1 1/1to1/0"/> - </vehicle> - <vehicle id="2373" depart="2373.00"> - <route edges="0/2to0/3 0/3to1/3 1/3to2/3 2/3to3/3"/> - </vehicle> - <vehicle id="2374" depart="2374.00"> - <route edges="2/1to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to2/4 2/4to3/4 3/4to4/4 4/4to4/3"/> - </vehicle> - <vehicle id="2375" depart="2375.00"> - <route edges="3/1to2/1 2/1to2/0 2/0to3/0"/> - </vehicle> - <vehicle id="2376" depart="2376.00"> - <route edges="2/0to3/0 3/0to3/1 3/1to2/1"/> - </vehicle> - <vehicle id="2377" depart="2377.00"> - <route edges="2/3to2/4 2/4to2/3 2/3to3/3 3/3to4/3 4/3to3/3"/> - </vehicle> - <vehicle id="2378" depart="2378.00"> - <route edges="2/4to3/4 3/4to2/4 2/4to2/3 2/3to2/2 2/2to2/1 2/1to2/0 2/0to2/1"/> - </vehicle> - <vehicle id="2379" depart="2379.00"> - <route edges="1/3to2/3 2/3to2/2 2/2to2/1 2/1to3/1 3/1to2/1"/> - </vehicle> - <vehicle id="2380" depart="2380.00"> - <route edges="3/0to2/0 2/0to1/0 1/0to1/1 1/1to0/1 0/1to0/2 0/2to0/3 0/3to0/4 0/4to1/4"/> - </vehicle> - <vehicle id="2381" depart="2381.00"> - <route edges="2/3to2/2 2/2to2/1 2/1to2/0 2/0to3/0 3/0to4/0 4/0to3/0"/> - </vehicle> - <vehicle id="2382" depart="2382.00"> - <route edges="0/3to0/2 0/2to1/2 1/2to2/2 2/2to3/2 3/2to2/2"/> - </vehicle> - <vehicle id="2383" depart="2383.00"> - <route edges="2/3to1/3 1/3to1/2 1/2to2/2 2/2to2/1"/> - </vehicle> - <vehicle id="2384" depart="2384.00"> - <route edges="1/3to1/4 1/4to1/3 1/3to1/2 1/2to1/1 1/1to1/0 1/0to2/0 2/0to3/0 3/0to4/0 4/0to3/0"/> - </vehicle> - <vehicle id="2385" depart="2385.00"> - <route edges="2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to2/4 2/4to3/4 3/4to4/4 4/4to4/3"/> - </vehicle> - <vehicle id="2386" depart="2386.00"> - <route edges="4/2to4/3 4/3to3/3 3/3to3/2 3/2to3/1 3/1to4/1"/> - </vehicle> - <vehicle id="2387" depart="2387.00"> - <route edges="3/2to4/2 4/2to3/2 3/2to2/2 2/2to1/2 1/2to0/2 0/2to0/3 0/3to0/4 0/4to0/3"/> - </vehicle> - <vehicle id="2388" depart="2388.00"> - <route edges="1/0to2/0 2/0to3/0 3/0to4/0 4/0to4/1"/> - </vehicle> - <vehicle id="2389" depart="2389.00"> - <route edges="1/3to1/4 1/4to1/3 1/3to2/3 2/3to3/3 3/3to3/4"/> - </vehicle> - <vehicle id="2390" depart="2390.00"> - <route edges="0/2to0/1 0/1to1/1 1/1to2/1 2/1to3/1"/> - </vehicle> - <vehicle id="2391" depart="2391.00"> - <route edges="3/1to4/1 4/1to3/1 3/1to2/1 2/1to3/1"/> - </vehicle> - <vehicle id="2392" depart="2392.00"> - <route edges="0/2to0/1 0/1to0/2 0/2to0/3 0/3to1/3 1/3to1/4 1/4to2/4 2/4to3/4 3/4to3/3"/> - </vehicle> - <vehicle id="2393" depart="2393.00"> - <route edges="2/3to1/3 1/3to1/2 1/2to1/1 1/1to0/1"/> - </vehicle> - <vehicle id="2394" depart="2394.00"> - <route edges="4/3to4/4 4/4to3/4 3/4to3/3 3/3to3/2"/> - </vehicle> - <vehicle id="2395" depart="2395.00"> - <route edges="2/2to1/2 1/2to1/3 1/3to1/4 1/4to2/4 2/4to2/3"/> - </vehicle> - <vehicle id="2396" depart="2396.00"> - <route edges="2/4to2/3 2/3to2/4 2/4to3/4 3/4to4/4 4/4to3/4"/> - </vehicle> - <vehicle id="2397" depart="2397.00"> - <route edges="1/4to2/4 2/4to2/3 2/3to2/2 2/2to2/1 2/1to2/0 2/0to3/0 3/0to4/0 4/0to3/0"/> - </vehicle> - <vehicle id="2398" depart="2398.00"> - <route edges="3/3to4/3 4/3to3/3 3/3to2/3 2/3to1/3 1/3to0/3 0/3to0/2"/> - </vehicle> - <vehicle id="2399" depart="2399.00"> - <route edges="4/2to3/2 3/2to2/2 2/2to1/2 1/2to0/2 0/2to0/1"/> - </vehicle> - <vehicle id="2400" depart="2400.00"> - <route edges="4/4to3/4 3/4to2/4 2/4to1/4 1/4to2/4"/> - </vehicle> - <vehicle id="2401" depart="2401.00"> - <route edges="4/1to3/1 3/1to2/1 2/1to2/2 2/2to2/3 2/3to2/4 2/4to1/4"/> - </vehicle> - <vehicle id="2402" depart="2402.00"> - <route edges="1/2to2/2 2/2to2/3 2/3to3/3 3/3to4/3 4/3to3/3"/> - </vehicle> - <vehicle id="2403" depart="2403.00"> - <route edges="2/3to2/4 2/4to1/4 1/4to1/3 1/3to0/3 0/3to0/2 0/2to1/2"/> - </vehicle> - <vehicle id="2404" depart="2404.00"> - <route edges="2/0to1/0 1/0to1/1 1/1to0/1 0/1to0/2"/> - </vehicle> - <vehicle id="2405" depart="2405.00"> - <route edges="1/4to1/3 1/3to0/3 0/3to0/4"/> - </vehicle> - <vehicle id="2406" depart="2406.00"> - <route edges="3/0to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to0/2"/> - </vehicle> - <vehicle id="2407" depart="2407.00"> - <route edges="3/0to3/1 3/1to2/1 2/1to2/2 2/2to1/2"/> - </vehicle> - <vehicle id="2408" depart="2408.00"> - <route edges="3/2to3/3 3/3to2/3 2/3to1/3 1/3to1/2 1/2to1/1 1/1to1/0 1/0to2/0"/> - </vehicle> - <vehicle id="2409" depart="2409.00"> - <route edges="1/2to2/2 2/2to1/2 1/2to1/1 1/1to2/1"/> - </vehicle> - <vehicle id="2410" depart="2410.00"> - <route edges="1/3to1/4 1/4to1/3 1/3to1/2 1/2to1/1 1/1to1/0 1/0to2/0 2/0to3/0 3/0to4/0"/> - </vehicle> - <vehicle id="2411" depart="2411.00"> - <route edges="2/1to3/1 3/1to2/1 2/1to1/1 1/1to0/1 0/1to0/2 0/2to1/2"/> - </vehicle> - <vehicle id="2412" depart="2412.00"> - <route edges="3/1to2/1"/> - </vehicle> - <vehicle id="2413" depart="2413.00"> - <route edges="2/1to3/1 3/1to3/2 3/2to3/3 3/3to4/3 4/3to4/2"/> - </vehicle> - <vehicle id="2414" depart="2414.00"> - <route edges="3/3to3/2 3/2to3/3 3/3to4/3 4/3to4/2"/> - </vehicle> - <vehicle id="2415" depart="2415.00"> - <route edges="2/2to1/2 1/2to2/2 2/2to2/3"/> - </vehicle> - <vehicle id="2416" depart="2416.00"> - <route edges="0/3to1/3 1/3to1/2 1/2to1/1 1/1to1/0 1/0to2/0 2/0to3/0 3/0to4/0 4/0to4/1"/> - </vehicle> - <vehicle id="2417" depart="2417.00"> - <route edges="3/4to3/3 3/3to2/3 2/3to2/4 2/4to2/3"/> - </vehicle> - <vehicle id="2418" depart="2418.00"> - <route edges="3/4to4/4 4/4to3/4 3/4to3/3 3/3to3/4"/> - </vehicle> - <vehicle id="2419" depart="2419.00"> - <route edges="1/0to0/0 0/0to0/1 0/1to1/1 1/1to2/1 2/1to3/1 3/1to4/1 4/1to4/2"/> - </vehicle> - <vehicle id="2420" depart="2420.00"> - <route edges="1/1to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to2/3 2/3to2/4"/> - </vehicle> - <vehicle id="2421" depart="2421.00"> - <route edges="3/1to3/2 3/2to2/2 2/2to1/2 1/2to0/2 0/2to0/3 0/3to0/2"/> - </vehicle> - <vehicle id="2422" depart="2422.00"> - <route edges="3/2to2/2 2/2to1/2 1/2to1/1 1/1to0/1"/> - </vehicle> - <vehicle id="2423" depart="2423.00"> - <route edges="0/0to1/0 1/0to1/1 1/1to1/2 1/2to1/1"/> - </vehicle> - <vehicle id="2424" depart="2424.00"> - <route edges="0/3to1/3 1/3to1/4 1/4to0/4"/> - </vehicle> - <vehicle id="2425" depart="2425.00"> - <route edges="0/4to1/4 1/4to1/3 1/3to0/3 0/3to0/2 0/2to0/3"/> - </vehicle> - <vehicle id="2426" depart="2426.00"> - <route edges="0/2to0/3 0/3to0/2 0/2to0/1 0/1to1/1 1/1to2/1 2/1to3/1 3/1to3/0"/> - </vehicle> - <vehicle id="2427" depart="2427.00"> - <route edges="1/2to1/1 1/1to0/1 0/1to0/2 0/2to0/3 0/3to0/2"/> - </vehicle> - <vehicle id="2428" depart="2428.00"> - <route edges="0/0to0/1 0/1to1/1 1/1to2/1 2/1to3/1 3/1to4/1 4/1to3/1"/> - </vehicle> - <vehicle id="2429" depart="2429.00"> - <route edges="3/3to3/2 3/2to3/1 3/1to3/0 3/0to2/0"/> - </vehicle> - <vehicle id="2430" depart="2430.00"> - <route edges="2/4to2/3 2/3to2/2 2/2to2/1 2/1to2/0 2/0to2/1"/> - </vehicle> - <vehicle id="2431" depart="2431.00"> - <route edges="3/0to2/0 2/0to1/0 1/0to1/1 1/1to0/1 0/1to0/2 0/2to0/3 0/3to0/4 0/4to1/4"/> - </vehicle> - <vehicle id="2432" depart="2432.00"> - <route edges="3/3to3/2 3/2to2/2 2/2to1/2 1/2to0/2 0/2to0/1 0/1to1/1"/> - </vehicle> - <vehicle id="2433" depart="2433.00"> - <route edges="3/0to2/0 2/0to2/1"/> - </vehicle> - <vehicle id="2434" depart="2434.00"> - <route edges="1/1to1/2 1/2to1/1 1/1to2/1 2/1to3/1 3/1to2/1"/> - </vehicle> - <vehicle id="2435" depart="2435.00"> - <route edges="4/4to4/3 4/3to3/3 3/3to3/2 3/2to2/2"/> - </vehicle> - <vehicle id="2436" depart="2436.00"> - <route edges="4/3to4/2 4/2to3/2 3/2to2/2 2/2to2/1 2/1to3/1"/> - </vehicle> - <vehicle id="2437" depart="2437.00"> - <route edges="1/2to1/1 1/1to1/0 1/0to2/0"/> - </vehicle> - <vehicle id="2438" depart="2438.00"> - <route edges="3/3to4/3 4/3to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to3/1"/> - </vehicle> - <vehicle id="2439" depart="2439.00"> - <route edges="4/1to4/0 4/0to3/0 3/0to2/0 2/0to1/0 1/0to1/1 1/1to0/1 0/1to1/1"/> - </vehicle> - <vehicle id="2440" depart="2440.00"> - <route edges="4/1to3/1 3/1to2/1 2/1to1/1 1/1to0/1"/> - </vehicle> - <vehicle id="2441" depart="2441.00"> - <route edges="2/2to2/1 2/1to1/1 1/1to0/1 0/1to0/2 0/2to0/3 0/3to0/2"/> - </vehicle> - <vehicle id="2442" depart="2442.00"> - <route edges="0/2to0/3 0/3to0/2 0/2to0/1 0/1to1/1 1/1to2/1 2/1to3/1 3/1to4/1"/> - </vehicle> - <vehicle id="2443" depart="2443.00"> - <route edges="2/0to1/0 1/0to1/1 1/1to1/2 1/2to2/2 2/2to3/2 3/2to4/2 4/2to3/2"/> - </vehicle> - <vehicle id="2444" depart="2444.00"> - <route edges="2/0to3/0 3/0to3/1 3/1to3/2 3/2to3/3 3/3to2/3"/> - </vehicle> - <vehicle id="2445" depart="2445.00"> - <route edges="1/1to1/0 1/0to1/1 1/1to1/2 1/2to2/2 2/2to3/2 3/2to4/2 4/2to4/1"/> - </vehicle> - <vehicle id="2446" depart="2446.00"> - <route edges="1/4to2/4 2/4to2/3 2/3to2/2 2/2to2/1 2/1to2/0 2/0to3/0 3/0to4/0 4/0to4/1"/> - </vehicle> - <vehicle id="2447" depart="2447.00"> - <route edges="2/2to2/3 2/3to1/3 1/3to0/3 0/3to1/3"/> - </vehicle> - <vehicle id="2448" depart="2448.00"> - <route edges="3/4to2/4 2/4to2/3 2/3to2/2 2/2to3/2 3/2to3/3"/> - </vehicle> - <vehicle id="2449" depart="2449.00"> - <route edges="1/0to2/0 2/0to2/1 2/1to2/2 2/2to2/3 2/3to2/4 2/4to3/4 3/4to2/4"/> - </vehicle> - <vehicle id="2450" depart="2450.00"> - <route edges="2/1to2/0 2/0to1/0 1/0to1/1 1/1to0/1 0/1to0/2 0/2to0/3 0/3to1/3"/> - </vehicle> - <vehicle id="2451" depart="2451.00"> - <route edges="1/3to1/2 1/2to1/1 1/1to1/0 1/0to2/0 2/0to2/1"/> - </vehicle> - <vehicle id="2452" depart="2452.00"> - <route edges="2/2to2/3 2/3to3/3 3/3to2/3"/> - </vehicle> - <vehicle id="2453" depart="2453.00"> - <route edges="4/2to3/2 3/2to3/3 3/3to3/4 3/4to4/4 4/4to4/3"/> - </vehicle> - <vehicle id="2454" depart="2454.00"> - <route edges="3/1to3/0 3/0to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3"/> - </vehicle> - <vehicle id="2455" depart="2455.00"> - <route edges="0/0to0/1 0/1to0/2 0/2to0/3 0/3to1/3 1/3to2/3 2/3to3/3 3/3to3/2"/> - </vehicle> - <vehicle id="2456" depart="2456.00"> - <route edges="2/4to1/4 1/4to1/3 1/3to1/2 1/2to2/2 2/2to3/2 3/2to4/2 4/2to4/3"/> - </vehicle> - <vehicle id="2457" depart="2457.00"> - <route edges="4/1to4/0 4/0to3/0 3/0to2/0 2/0to2/1 2/1to2/2 2/2to2/3 2/3to3/3"/> - </vehicle> - <vehicle id="2458" depart="2458.00"> - <route edges="3/3to3/4 3/4to2/4 2/4to1/4 1/4to1/3"/> - </vehicle> - <vehicle id="2459" depart="2459.00"> - <route edges="3/0to2/0 2/0to1/0 1/0to1/1 1/1to0/1 0/1to0/2 0/2to0/3"/> - </vehicle> - <vehicle id="2460" depart="2460.00"> - <route edges="2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to2/3 2/3to1/3"/> - </vehicle> - <vehicle id="2461" depart="2461.00"> - <route edges="0/3to1/3 1/3to1/2 1/2to1/1 1/1to1/0 1/0to2/0"/> - </vehicle> - <vehicle id="2462" depart="2462.00"> - <route edges="3/1to2/1 2/1to1/1 1/1to0/1 0/1to0/2 0/2to1/2"/> - </vehicle> - <vehicle id="2463" depart="2463.00"> - <route edges="1/4to1/3 1/3to1/2 1/2to1/1 1/1to1/0 1/0to2/0 2/0to3/0 3/0to3/1"/> - </vehicle> - <vehicle id="2464" depart="2464.00"> - <route edges="3/2to3/1 3/1to4/1 4/1to4/0"/> - </vehicle> - <vehicle id="2465" depart="2465.00"> - <route edges="2/4to3/4 3/4to2/4 2/4to2/3 2/3to2/2 2/2to2/1"/> - </vehicle> - <vehicle id="2466" depart="2466.00"> - <route edges="4/0to3/0 3/0to2/0 2/0to1/0 1/0to1/1 1/1to1/0"/> - </vehicle> - <vehicle id="2467" depart="2467.00"> - <route edges="2/0to2/1 2/1to1/1 1/1to0/1"/> - </vehicle> - <vehicle id="2468" depart="2468.00"> - <route edges="3/3to4/3 4/3to3/3 3/3to2/3 2/3to1/3 1/3to0/3 0/3to0/4"/> - </vehicle> - <vehicle id="2469" depart="2469.00"> - <route edges="2/3to1/3 1/3to0/3 0/3to0/2 0/2to0/1 0/1to0/2"/> - </vehicle> - <vehicle id="2470" depart="2470.00"> - <route edges="1/1to2/1"/> - </vehicle> - <vehicle id="2471" depart="2471.00"> - <route edges="4/0to4/1 4/1to3/1 3/1to2/1 2/1to1/1 1/1to0/1 0/1to0/2"/> - </vehicle> - <vehicle id="2472" depart="2472.00"> - <route edges="3/1to2/1 2/1to1/1 1/1to1/2 1/2to1/3 1/3to1/4"/> - </vehicle> - <vehicle id="2473" depart="2473.00"> - <route edges="1/2to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to1/3"/> - </vehicle> - <vehicle id="2474" depart="2474.00"> - <route edges="3/3to3/2 3/2to2/2 2/2to2/1 2/1to1/1"/> - </vehicle> - <vehicle id="2475" depart="2475.00"> - <route edges="4/3to4/4 4/4to3/4 3/4to2/4 2/4to2/3 2/3to2/2 2/2to2/1 2/1to1/1"/> - </vehicle> - <vehicle id="2476" depart="2476.00"> - <route edges="2/2to1/2 1/2to1/3 1/3to2/3 2/3to3/3 3/3to4/3"/> - </vehicle> - <vehicle id="2477" depart="2477.00"> - <route edges="2/1to2/0 2/0to2/1 2/1to3/1 3/1to3/2"/> - </vehicle> - <vehicle id="2478" depart="2478.00"> - <route edges="3/0to2/0 2/0to2/1 2/1to2/2 2/2to2/3 2/3to3/3 3/3to3/4"/> - </vehicle> - <vehicle id="2479" depart="2479.00"> - <route edges="1/0to2/0 2/0to1/0 1/0to1/1 1/1to0/1 0/1to0/2 0/2to0/3 0/3to0/2"/> - </vehicle> - <vehicle id="2480" depart="2480.00"> - <route edges="1/4to2/4 2/4to1/4 1/4to1/3 1/3to1/2 1/2to1/1 1/1to1/0"/> - </vehicle> - <vehicle id="2481" depart="2481.00"> - <route edges="3/3to3/2 3/2to2/2"/> - </vehicle> - <vehicle id="2482" depart="2482.00"> - <route edges="2/0to2/1 2/1to1/1 1/1to1/2 1/2to2/2"/> - </vehicle> - <vehicle id="2483" depart="2483.00"> - <route edges="0/3to0/4 0/4to0/3 0/3to1/3"/> - </vehicle> - <vehicle id="2484" depart="2484.00"> - <route edges="0/0to0/1 0/1to0/2 0/2to0/3 0/3to0/2"/> - </vehicle> - <vehicle id="2485" depart="2485.00"> - <route edges="1/4to1/3 1/3to1/2 1/2to2/2 2/2to3/2 3/2to3/1"/> - </vehicle> - <vehicle id="2486" depart="2486.00"> - <route edges="1/2to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to2/4 2/4to3/4"/> - </vehicle> - <vehicle id="2487" depart="2487.00"> - <route edges="1/0to1/1 1/1to1/2 1/2to1/3 1/3to2/3 2/3to3/3 3/3to2/3"/> - </vehicle> - <vehicle id="2488" depart="2488.00"> - <route edges="3/0to3/1 3/1to3/2 3/2to3/3 3/3to3/4 3/4to4/4 4/4to4/3"/> - </vehicle> - <vehicle id="2489" depart="2489.00"> - <route edges="1/0to1/1 1/1to2/1 2/1to3/1 3/1to4/1 4/1to4/0"/> - </vehicle> - <vehicle id="2490" depart="2490.00"> - <route edges="0/1to0/2 0/2to1/2 1/2to2/2 2/2to1/2"/> - </vehicle> - <vehicle id="2491" depart="2491.00"> - <route edges="1/1to2/1 2/1to1/1 1/1to0/1"/> - </vehicle> - <vehicle id="2492" depart="2492.00"> - <route edges="1/0to0/0 0/0to0/1 0/1to0/2 0/2to1/2 1/2to2/2 2/2to3/2 3/2to4/2 4/2to4/3"/> - </vehicle> - <vehicle id="2493" depart="2493.00"> - <route edges="2/2to3/2 3/2to2/2 2/2to1/2 1/2to1/1 1/1to1/0 1/0to0/0"/> - </vehicle> - <vehicle id="2494" depart="2494.00"> - <route edges="3/4to4/4 4/4to4/3 4/3to4/2 4/2to4/1"/> - </vehicle> - <vehicle id="2495" depart="2495.00"> - <route edges="2/2to2/3 2/3to1/3 1/3to1/4 1/4to0/4"/> - </vehicle> - <vehicle id="2496" depart="2496.00"> - <route edges="0/2to1/2 1/2to1/3 1/3to1/4 1/4to1/3"/> - </vehicle> - <vehicle id="2497" depart="2497.00"> - <route edges="1/3to1/2 1/2to1/1 1/1to1/0 1/0to2/0 2/0to3/0 3/0to2/0"/> - </vehicle> - <vehicle id="2498" depart="2498.00"> - <route edges="4/2to4/1 4/1to3/1 3/1to3/2 3/2to3/3 3/3to2/3"/> - </vehicle> - <vehicle id="2499" depart="2499.00"> - <route edges="4/3to4/2 4/2to3/2 3/2to2/2 2/2to2/1 2/1to1/1"/> - </vehicle> - <vehicle id="2500" depart="2500.00"> - <route edges="3/3to4/3 4/3to3/3 3/3to3/2 3/2to3/1 3/1to2/1"/> - </vehicle> - <vehicle id="2501" depart="2501.00"> - <route edges="3/2to3/1 3/1to2/1 2/1to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to2/4"/> - </vehicle> - <vehicle id="2502" depart="2502.00"> - <route edges="0/1to1/1 1/1to0/1 0/1to0/2 0/2to1/2"/> - </vehicle> - <vehicle id="2503" depart="2503.00"> - <route edges="1/3to1/4 1/4to1/3 1/3to1/2 1/2to1/1 1/1to1/0 1/0to2/0"/> - </vehicle> - <vehicle id="2504" depart="2504.00"> - <route edges="4/1to4/0 4/0to3/0 3/0to3/1 3/1to3/2 3/2to3/3 3/3to2/3"/> - </vehicle> - <vehicle id="2505" depart="2505.00"> - <route edges="4/1to4/2"/> - </vehicle> - <vehicle id="2506" depart="2506.00"> - <route edges="2/2to1/2 1/2to0/2 0/2to0/3 0/3to0/4 0/4to1/4"/> - </vehicle> - <vehicle id="2507" depart="2507.00"> - <route edges="1/1to1/2 1/2to1/1 1/1to2/1 2/1to3/1 3/1to3/2"/> - </vehicle> - <vehicle id="2508" depart="2508.00"> - <route edges="2/2to3/2"/> - </vehicle> - <vehicle id="2509" depart="2509.00"> - <route edges="2/3to1/3 1/3to1/2 1/2to1/1 1/1to1/0 1/0to2/0 2/0to3/0 3/0to4/0 4/0to3/0"/> - </vehicle> - <vehicle id="2510" depart="2510.00"> - <route edges="2/2to3/2 3/2to2/2 2/2to1/2 1/2to0/2 0/2to0/1 0/1to0/0 0/0to0/1"/> - </vehicle> - <vehicle id="2511" depart="2511.00"> - <route edges="2/0to3/0 3/0to3/1 3/1to3/2"/> - </vehicle> - <vehicle id="2512" depart="2512.00"> - <route edges="2/2to2/3 2/3to1/3 1/3to1/2 1/2to1/1 1/1to1/2"/> - </vehicle> - <vehicle id="2513" depart="2513.00"> - <route edges="2/1to2/0 2/0to2/1 2/1to2/2 2/2to2/3 2/3to3/3 3/3to3/4"/> - </vehicle> - <vehicle id="2514" depart="2514.00"> - <route edges="4/3to4/2 4/2to3/2 3/2to2/2 2/2to1/2 1/2to1/3 1/3to2/3"/> - </vehicle> - <vehicle id="2515" depart="2515.00"> - <route edges="1/0to2/0 2/0to1/0"/> - </vehicle> - <vehicle id="2516" depart="2516.00"> - <route edges="4/2to4/1 4/1to3/1 3/1to2/1 2/1to1/1"/> - </vehicle> - <vehicle id="2517" depart="2517.00"> - <route edges="3/2to3/3 3/3to2/3 2/3to1/3 1/3to1/2 1/2to0/2"/> - </vehicle> - <vehicle id="2518" depart="2518.00"> - <route edges="2/1to2/2 2/2to2/3 2/3to3/3 3/3to4/3 4/3to4/4"/> - </vehicle> - <vehicle id="2519" depart="2519.00"> - <route edges="4/2to4/3 4/3to3/3 3/3to2/3 2/3to2/2 2/2to2/1 2/1to1/1"/> - </vehicle> - <vehicle id="2520" depart="2520.00"> - <route edges="3/1to3/2 3/2to2/2 2/2to2/1 2/1to2/0 2/0to2/1"/> - </vehicle> - <vehicle id="2521" depart="2521.00"> - <route edges="2/2to2/3 2/3to2/2 2/2to2/1 2/1to2/2"/> - </vehicle> - <vehicle id="2522" depart="2522.00"> - <route edges="0/0to0/1 0/1to1/1 1/1to2/1 2/1to2/0"/> - </vehicle> - <vehicle id="2523" depart="2523.00"> - <route edges="2/0to1/0 1/0to1/1 1/1to2/1 2/1to3/1 3/1to4/1 4/1to4/2"/> - </vehicle> - <vehicle id="2524" depart="2524.00"> - <route edges="3/3to3/2 3/2to3/3"/> - </vehicle> - <vehicle id="2525" depart="2525.00"> - <route edges="1/4to0/4 0/4to0/3 0/3to0/2 0/2to0/1 0/1to1/1 1/1to1/0 1/0to2/0 2/0to3/0 3/0to4/0 4/0to4/1"/> - </vehicle> - <vehicle id="2526" depart="2526.00"> - <route edges="3/0to2/0 2/0to1/0 1/0to1/1 1/1to0/1 0/1to1/1"/> - </vehicle> - <vehicle id="2527" depart="2527.00"> - <route edges="1/1to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to2/4 2/4to3/4 3/4to4/4"/> - </vehicle> - <vehicle id="2528" depart="2528.00"> - <route edges="0/1to0/2 0/2to0/1"/> - </vehicle> - <vehicle id="2529" depart="2529.00"> - <route edges="3/3to4/3 4/3to3/3 3/3to2/3 2/3to1/3 1/3to1/2 1/2to1/1 1/1to1/2"/> - </vehicle> - <vehicle id="2530" depart="2530.00"> - <route edges="4/1to3/1 3/1to2/1 2/1to2/2 2/2to2/3 2/3to2/4 2/4to2/3"/> - </vehicle> - <vehicle id="2531" depart="2531.00"> - <route edges="4/2to4/3 4/3to3/3 3/3to3/2 3/2to4/2"/> - </vehicle> - <vehicle id="2532" depart="2532.00"> - <route edges="4/2to4/1 4/1to3/1 3/1to2/1 2/1to1/1 1/1to1/0"/> - </vehicle> - <vehicle id="2533" depart="2533.00"> - <route edges="2/3to2/2 2/2to2/1 2/1to3/1 3/1to2/1"/> - </vehicle> - <vehicle id="2534" depart="2534.00"> - <route edges="3/2to4/2 4/2to3/2 3/2to2/2 2/2to1/2 1/2to0/2 0/2to0/1"/> - </vehicle> - <vehicle id="2535" depart="2535.00"> - <route edges="1/2to0/2 0/2to0/1 0/1to1/1 1/1to2/1 2/1to3/1 3/1to3/2"/> - </vehicle> - <vehicle id="2536" depart="2536.00"> - <route edges="4/3to4/2 4/2to3/2 3/2to2/2 2/2to2/3 2/3to2/4 2/4to2/3"/> - </vehicle> - <vehicle id="2537" depart="2537.00"> - <route edges="1/0to0/0 0/0to0/1 0/1to0/2 0/2to0/3 0/3to1/3 1/3to2/3 2/3to3/3 3/3to4/3"/> - </vehicle> - <vehicle id="2538" depart="2538.00"> - <route edges="0/2to1/2 1/2to1/1 1/1to0/1"/> - </vehicle> - <vehicle id="2539" depart="2539.00"> - <route edges="2/1to1/1 1/1to0/1 0/1to0/0 0/0to0/1"/> - </vehicle> - <vehicle id="2540" depart="2540.00"> - <route edges="3/2to4/2 4/2to4/3 4/3to4/4 4/4to3/4"/> - </vehicle> - <vehicle id="2541" depart="2541.00"> - <route edges="0/1to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to2/4 2/4to3/4"/> - </vehicle> - <vehicle id="2542" depart="2542.00"> - <route edges="0/4to1/4 1/4to1/3 1/3to2/3 2/3to3/3 3/3to4/3 4/3to4/4"/> - </vehicle> - <vehicle id="2543" depart="2543.00"> - <route edges="2/4to1/4 1/4to0/4"/> - </vehicle> - <vehicle id="2544" depart="2544.00"> - <route edges="4/2to4/3 4/3to3/3 3/3to2/3 2/3to2/2"/> - </vehicle> - <vehicle id="2545" depart="2545.00"> - <route edges="4/2to4/1 4/1to4/0 4/0to3/0"/> - </vehicle> - <vehicle id="2546" depart="2546.00"> - <route edges="3/4to2/4 2/4to2/3 2/3to2/2 2/2to2/1 2/1to2/0 2/0to1/0"/> - </vehicle> - <vehicle id="2547" depart="2547.00"> - <route edges="2/3to2/4 2/4to1/4 1/4to1/3 1/3to1/2 1/2to1/3"/> - </vehicle> - <vehicle id="2548" depart="2548.00"> - <route edges="1/1to1/0 1/0to1/1 1/1to0/1 0/1to0/2 0/2to0/1"/> - </vehicle> - <vehicle id="2549" depart="2549.00"> - <route edges="0/2to0/3 0/3to0/4 0/4to0/3"/> - </vehicle> - <vehicle id="2550" depart="2550.00"> - <route edges="2/4to2/3 2/3to1/3 1/3to0/3 0/3to0/2 0/2to0/1 0/1to0/2"/> - </vehicle> - <vehicle id="2551" depart="2551.00"> - <route edges="0/1to0/2 0/2to0/1 0/1to1/1 1/1to2/1 2/1to3/1 3/1to4/1 4/1to3/1"/> - </vehicle> - <vehicle id="2552" depart="2552.00"> - <route edges="3/2to3/1 3/1to2/1 2/1to1/1 1/1to1/2 1/2to1/3 1/3to1/4"/> - </vehicle> - <vehicle id="2553" depart="2553.00"> - <route edges="3/3to4/3 4/3to3/3 3/3to2/3 2/3to1/3 1/3to0/3 0/3to0/2 0/2to1/2"/> - </vehicle> - <vehicle id="2554" depart="2554.00"> - <route edges="2/3to2/2 2/2to1/2 1/2to0/2 0/2to1/2"/> - </vehicle> - <vehicle id="2555" depart="2555.00"> - <route edges="0/2to1/2 1/2to1/3 1/3to1/2"/> - </vehicle> - <vehicle id="2556" depart="2556.00"> - <route edges="2/1to2/2 2/2to2/1 2/1to3/1 3/1to4/1"/> - </vehicle> - <vehicle id="2557" depart="2557.00"> - <route edges="3/1to4/1 4/1to3/1 3/1to2/1 2/1to1/1 1/1to0/1 0/1to0/2 0/2to0/3 0/3to0/4"/> - </vehicle> - <vehicle id="2558" depart="2558.00"> - <route edges="2/3to3/3 3/3to2/3 2/3to1/3 1/3to0/3 0/3to0/2 0/2to0/1 0/1to0/0 0/0to1/0"/> - </vehicle> - <vehicle id="2559" depart="2559.00"> - <route edges="3/3to2/3 2/3to2/2 2/2to1/2"/> - </vehicle> - <vehicle id="2560" depart="2560.00"> - <route edges="1/2to2/2 2/2to1/2 1/2to0/2 0/2to1/2"/> - </vehicle> - <vehicle id="2561" depart="2561.00"> - <route edges="0/3to1/3 1/3to1/2 1/2to2/2 2/2to1/2"/> - </vehicle> - <vehicle id="2562" depart="2562.00"> - <route edges="4/2to4/1 4/1to3/1 3/1to2/1 2/1to2/0"/> - </vehicle> - <vehicle id="2563" depart="2563.00"> - <route edges="2/4to1/4 1/4to1/3 1/3to0/3 0/3to0/2 0/2to0/1"/> - </vehicle> - <vehicle id="2564" depart="2564.00"> - <route edges="2/2to3/2 3/2to4/2 4/2to4/3"/> - </vehicle> - <vehicle id="2565" depart="2565.00"> - <route edges="4/3to3/3 3/3to2/3 2/3to1/3 1/3to1/2 1/2to1/1 1/1to1/0 1/0to2/0"/> - </vehicle> - <vehicle id="2566" depart="2566.00"> - <route edges="3/1to3/2 3/2to2/2 2/2to1/2 1/2to0/2 0/2to0/3 0/3to0/2"/> - </vehicle> - <vehicle id="2567" depart="2567.00"> - <route edges="1/0to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to2/4 2/4to3/4 3/4to3/3"/> - </vehicle> - <vehicle id="2568" depart="2568.00"> - <route edges="2/4to2/3 2/3to3/3 3/3to4/3 4/3to4/2"/> - </vehicle> - <vehicle id="2569" depart="2569.00"> - <route edges="2/2to3/2 3/2to2/2 2/2to1/2 1/2to0/2 0/2to0/1"/> - </vehicle> - <vehicle id="2570" depart="2570.00"> - <route edges="1/2to2/2 2/2to3/2 3/2to4/2 4/2to4/1"/> - </vehicle> - <vehicle id="2571" depart="2571.00"> - <route edges="1/3to2/3 2/3to1/3 1/3to0/3 0/3to0/2 0/2to0/1 0/1to0/0 0/0to0/1"/> - </vehicle> - <vehicle id="2572" depart="2572.00"> - <route edges="4/1to4/2 4/2to3/2 3/2to2/2 2/2to1/2 1/2to1/1 1/1to1/0 1/0to2/0"/> - </vehicle> - <vehicle id="2573" depart="2573.00"> - <route edges="4/0to3/0 3/0to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to2/4"/> - </vehicle> - <vehicle id="2574" depart="2574.00"> - <route edges="4/3to3/3 3/3to2/3 2/3to1/3 1/3to1/2 1/2to1/1 1/1to1/2"/> - </vehicle> - <vehicle id="2575" depart="2575.00"> - <route edges="1/2to2/2 2/2to3/2 3/2to4/2 4/2to3/2"/> - </vehicle> - <vehicle id="2576" depart="2576.00"> - <route edges="2/3to1/3"/> - </vehicle> - <vehicle id="2577" depart="2577.00"> - <route edges="2/1to1/1 1/1to0/1 0/1to1/1"/> - </vehicle> - <vehicle id="2578" depart="2578.00"> - <route edges="3/2to3/1 3/1to3/2 3/2to2/2"/> - </vehicle> - <vehicle id="2579" depart="2579.00"> - <route edges="0/4to0/3 0/3to0/2 0/2to0/1 0/1to0/0 0/0to1/0"/> - </vehicle> - <vehicle id="2580" depart="2580.00"> - <route edges="1/1to2/1 2/1to1/1 1/1to1/0 1/0to0/0"/> - </vehicle> - <vehicle id="2581" depart="2581.00"> - <route edges="4/3to4/4 4/4to3/4 3/4to2/4 2/4to2/3 2/3to2/2 2/2to2/1 2/1to1/1"/> - </vehicle> - <vehicle id="2582" depart="2582.00"> - <route edges="4/2to3/2 3/2to2/2 2/2to1/2 1/2to1/1"/> - </vehicle> - <vehicle id="2583" depart="2583.00"> - <route edges="4/2to4/3 4/3to3/3 3/3to2/3 2/3to1/3 1/3to0/3 0/3to0/2 0/2to0/1 0/1to1/1"/> - </vehicle> - <vehicle id="2584" depart="2584.00"> - <route edges="2/3to2/2 2/2to2/1 2/1to2/0 2/0to3/0"/> - </vehicle> - <vehicle id="2585" depart="2585.00"> - <route edges="1/4to1/3 1/3to2/3 2/3to3/3 3/3to4/3 4/3to4/4"/> - </vehicle> - <vehicle id="2586" depart="2586.00"> - <route edges="3/1to4/1 4/1to4/2 4/2to4/1"/> - </vehicle> - <vehicle id="2587" depart="2587.00"> - <route edges="0/2to0/1 0/1to0/2 0/2to1/2 1/2to2/2 2/2to1/2"/> - </vehicle> - <vehicle id="2588" depart="2588.00"> - <route edges="3/0to2/0 2/0to2/1 2/1to2/2 2/2to2/1"/> - </vehicle> - <vehicle id="2589" depart="2589.00"> - <route edges="3/3to3/4"/> - </vehicle> - <vehicle id="2590" depart="2590.00"> - <route edges="0/4to1/4 1/4to1/3 1/3to2/3 2/3to3/3"/> - </vehicle> - <vehicle id="2591" depart="2591.00"> - <route edges="1/3to0/3 0/3to0/2 0/2to1/2 1/2to1/1"/> - </vehicle> - <vehicle id="2592" depart="2592.00"> - <route edges="0/1to1/1 1/1to2/1 2/1to3/1 3/1to3/0"/> - </vehicle> - <vehicle id="2593" depart="2593.00"> - <route edges="1/3to1/2 1/2to0/2"/> - </vehicle> - <vehicle id="2594" depart="2594.00"> - <route edges="2/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to4/0 4/0to4/1"/> - </vehicle> - <vehicle id="2595" depart="2595.00"> - <route edges="3/2to4/2 4/2to3/2 3/2to2/2 2/2to1/2 1/2to1/1 1/1to1/0 1/0to0/0"/> - </vehicle> - <vehicle id="2596" depart="2596.00"> - <route edges="1/4to1/3 1/3to2/3 2/3to2/2"/> - </vehicle> - <vehicle id="2597" depart="2597.00"> - <route edges="0/3to1/3 1/3to1/4 1/4to2/4 2/4to3/4 3/4to4/4 4/4to4/3"/> - </vehicle> - <vehicle id="2598" depart="2598.00"> - <route edges="4/3to3/3 3/3to2/3 2/3to1/3 1/3to1/2"/> - </vehicle> - <vehicle id="2599" depart="2599.00"> - <route edges="1/3to2/3 2/3to1/3 1/3to0/3 0/3to1/3"/> - </vehicle> - <vehicle id="2600" depart="2600.00"> - <route edges="1/2to0/2 0/2to0/3 0/3to1/3 1/3to2/3"/> - </vehicle> - <vehicle id="2601" depart="2601.00"> - <route edges="2/4to2/3 2/3to1/3 1/3to2/3"/> - </vehicle> - <vehicle id="2602" depart="2602.00"> - <route edges="1/2to1/3 1/3to1/4 1/4to2/4 2/4to2/3"/> - </vehicle> - <vehicle id="2603" depart="2603.00"> - <route edges="1/2to0/2 0/2to0/1 0/1to1/1 1/1to2/1 2/1to2/0"/> - </vehicle> - <vehicle id="2604" depart="2604.00"> - <route edges="3/2to3/1 3/1to2/1 2/1to1/1 1/1to0/1 0/1to0/0 0/0to0/1"/> - </vehicle> - <vehicle id="2605" depart="2605.00"> - <route edges="4/3to4/2 4/2to3/2 3/2to3/3 3/3to3/4 3/4to3/3"/> - </vehicle> - <vehicle id="2606" depart="2606.00"> - <route edges="2/3to3/3 3/3to2/3 2/3to1/3 1/3to1/4 1/4to0/4"/> - </vehicle> - <vehicle id="2607" depart="2607.00"> - <route edges="2/1to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to2/4 2/4to3/4 3/4to4/4"/> - </vehicle> - <vehicle id="2608" depart="2608.00"> - <route edges="2/3to1/3 1/3to1/2 1/2to1/1 1/1to1/0 1/0to2/0 2/0to2/1"/> - </vehicle> - <vehicle id="2609" depart="2609.00"> - <route edges="4/2to4/3 4/3to3/3 3/3to2/3 2/3to3/3"/> - </vehicle> - <vehicle id="2610" depart="2610.00"> - <route edges="4/2to4/3 4/3to3/3 3/3to2/3 2/3to2/2 2/2to2/3"/> - </vehicle> - <vehicle id="2611" depart="2611.00"> - <route edges="0/1to1/1 1/1to1/2 1/2to2/2 2/2to3/2 3/2to2/2"/> - </vehicle> - <vehicle id="2612" depart="2612.00"> - <route edges="1/1to0/1 0/1to0/2 0/2to0/3 0/3to0/2"/> - </vehicle> - <vehicle id="2613" depart="2613.00"> - <route edges="0/2to0/3 0/3to0/2 0/2to0/1 0/1to1/1 1/1to1/0 1/0to2/0 2/0to2/1"/> - </vehicle> - <vehicle id="2614" depart="2614.00"> - <route edges="4/2to4/1 4/1to3/1 3/1to2/1 2/1to1/1 1/1to1/0 1/0to1/1"/> - </vehicle> - <vehicle id="2615" depart="2615.00"> - <route edges="0/4to0/3 0/3to1/3 1/3to2/3 2/3to3/3 3/3to4/3 4/3to4/2"/> - </vehicle> - <vehicle id="2616" depart="2616.00"> - <route edges="1/3to0/3 0/3to1/3 1/3to1/4 1/4to2/4 2/4to3/4"/> - </vehicle> - <vehicle id="2617" depart="2617.00"> - <route edges="2/2to2/1 2/1to3/1 3/1to3/0"/> - </vehicle> - <vehicle id="2618" depart="2618.00"> - <route edges="2/3to2/4 2/4to1/4 1/4to1/3 1/3to1/2 1/2to0/2"/> - </vehicle> - <vehicle id="2619" depart="2619.00"> - <route edges="2/1to2/2 2/2to3/2 3/2to2/2"/> - </vehicle> - <vehicle id="2620" depart="2620.00"> - <route edges="3/2to3/3 3/3to4/3 4/3to4/2"/> - </vehicle> - <vehicle id="2621" depart="2621.00"> - <route edges="1/3to1/4 1/4to1/3 1/3to1/2 1/2to1/1 1/1to2/1 2/1to1/1"/> - </vehicle> - <vehicle id="2622" depart="2622.00"> - <route edges="4/0to4/1 4/1to3/1 3/1to2/1 2/1to1/1 1/1to0/1 0/1to0/0"/> - </vehicle> - <vehicle id="2623" depart="2623.00"> - <route edges="2/4to2/3 2/3to2/2 2/2to2/1 2/1to2/2"/> - </vehicle> - <vehicle id="2624" depart="2624.00"> - <route edges="1/2to1/1 1/1to1/2 1/2to2/2 2/2to1/2"/> - </vehicle> - <vehicle id="2625" depart="2625.00"> - <route edges="0/2to0/1 0/1to0/2 0/2to1/2 1/2to2/2 2/2to3/2 3/2to4/2 4/2to4/1"/> - </vehicle> - <vehicle id="2626" depart="2626.00"> - <route edges="4/2to3/2 3/2to2/2 2/2to1/2"/> - </vehicle> - <vehicle id="2627" depart="2627.00"> - <route edges="0/2to0/1 0/1to0/2 0/2to0/3 0/3to1/3 1/3to2/3 2/3to3/3 3/3to3/2"/> - </vehicle> - <vehicle id="2628" depart="2628.00"> - <route edges="1/1to0/1 0/1to0/2 0/2to1/2 1/2to1/3"/> - </vehicle> - <vehicle id="2629" depart="2629.00"> - <route edges="4/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to4/0"/> - </vehicle> - <vehicle id="2630" depart="2630.00"> - <route edges="3/0to3/1 3/1to2/1 2/1to1/1 1/1to2/1"/> - </vehicle> - <vehicle id="2631" depart="2631.00"> - <route edges="1/2to2/2 2/2to1/2 1/2to0/2"/> - </vehicle> - <vehicle id="2632" depart="2632.00"> - <route edges="0/0to0/1 0/1to0/2 0/2to0/3 0/3to0/4 0/4to0/3"/> - </vehicle> - <vehicle id="2633" depart="2633.00"> - <route edges="4/1to4/2 4/2to3/2 3/2to4/2"/> - </vehicle> - <vehicle id="2634" depart="2634.00"> - <route edges="2/2to2/1 2/1to2/2 2/2to2/3 2/3to2/4 2/4to3/4 3/4to3/3"/> - </vehicle> - <vehicle id="2635" depart="2635.00"> - <route edges="4/0to4/1 4/1to3/1 3/1to2/1 2/1to2/2 2/2to2/3 2/3to3/3"/> - </vehicle> - <vehicle id="2636" depart="2636.00"> - <route edges="2/3to1/3 1/3to0/3 0/3to0/2 0/2to0/1 0/1to0/0 0/0to1/0"/> - </vehicle> - <vehicle id="2637" depart="2637.00"> - <route edges="0/2to0/1 0/1to0/2 0/2to0/3 0/3to1/3 1/3to2/3 2/3to3/3 3/3to4/3 4/3to4/2"/> - </vehicle> - <vehicle id="2638" depart="2638.00"> - <route edges="2/1to2/0 2/0to1/0 1/0to1/1 1/1to0/1 0/1to0/2 0/2to0/3 0/3to0/4 0/4to1/4"/> - </vehicle> - <vehicle id="2639" depart="2639.00"> - <route edges="2/0to2/1 2/1to2/2 2/2to2/3 2/3to2/4 2/4to3/4 3/4to4/4"/> - </vehicle> - <vehicle id="2640" depart="2640.00"> - <route edges="1/3to2/3 2/3to1/3 1/3to1/4 1/4to2/4"/> - </vehicle> - <vehicle id="2641" depart="2641.00"> - <route edges="2/4to3/4 3/4to2/4 2/4to1/4 1/4to1/3 1/3to1/2 1/2to1/1 1/1to1/0 1/0to1/1"/> - </vehicle> - <vehicle id="2642" depart="2642.00"> - <route edges="4/2to4/3 4/3to3/3 3/3to2/3 2/3to1/3 1/3to1/2 1/2to1/3"/> - </vehicle> - <vehicle id="2643" depart="2643.00"> - <route edges="1/2to0/2 0/2to1/2 1/2to2/2 2/2to2/1"/> - </vehicle> - <vehicle id="2644" depart="2644.00"> - <route edges="3/1to4/1 4/1to3/1 3/1to2/1 2/1to1/1 1/1to1/2 1/2to1/1"/> - </vehicle> - <vehicle id="2645" depart="2645.00"> - <route edges="2/1to2/0 2/0to2/1 2/1to2/2 2/2to1/2"/> - </vehicle> - <vehicle id="2646" depart="2646.00"> - <route edges="3/4to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to3/1"/> - </vehicle> - <vehicle id="2647" depart="2647.00"> - <route edges="1/1to0/1 0/1to1/1 1/1to2/1 2/1to3/1 3/1to4/1 4/1to4/2"/> - </vehicle> - <vehicle id="2648" depart="2648.00"> - <route edges="1/1to2/1 2/1to2/2 2/2to2/1"/> - </vehicle> - <vehicle id="2649" depart="2649.00"> - <route edges="1/3to1/2 1/2to1/3 1/3to1/4 1/4to2/4 2/4to3/4 3/4to4/4 4/4to4/3"/> - </vehicle> - <vehicle id="2650" depart="2650.00"> - <route edges="4/3to4/2 4/2to3/2 3/2to2/2 2/2to1/2 1/2to0/2"/> - </vehicle> - <vehicle id="2651" depart="2651.00"> - <route edges="3/1to3/2 3/2to3/1 3/1to3/0 3/0to2/0"/> - </vehicle> - <vehicle id="2652" depart="2652.00"> - <route edges="0/4to0/3 0/3to0/2 0/2to0/1 0/1to1/1 1/1to2/1 2/1to1/1"/> - </vehicle> - <vehicle id="2653" depart="2653.00"> - <route edges="0/4to1/4 1/4to1/3 1/3to2/3 2/3to3/3 3/3to4/3 4/3to4/4"/> - </vehicle> - <vehicle id="2654" depart="2654.00"> - <route edges="1/0to0/0 0/0to0/1 0/1to0/2 0/2to0/3 0/3to1/3 1/3to1/4 1/4to2/4 2/4to2/3"/> - </vehicle> - <vehicle id="2655" depart="2655.00"> - <route edges="2/0to2/1 2/1to1/1 1/1to0/1 0/1to0/0 0/0to0/1"/> - </vehicle> - <vehicle id="2656" depart="2656.00"> - <route edges="0/2to1/2 1/2to0/2 0/2to0/3"/> - </vehicle> - <vehicle id="2657" depart="2657.00"> - <route edges="3/4to3/3 3/3to2/3 2/3to1/3 1/3to0/3 0/3to0/4 0/4to0/3"/> - </vehicle> - <vehicle id="2658" depart="2658.00"> - <route edges="4/4to4/3 4/3to3/3 3/3to2/3 2/3to1/3 1/3to0/3 0/3to0/2 0/2to1/2"/> - </vehicle> - <vehicle id="2659" depart="2659.00"> - <route edges="0/2to0/1 0/1to1/1 1/1to1/0"/> - </vehicle> - <vehicle id="2660" depart="2660.00"> - <route edges="3/0to3/1 3/1to2/1 2/1to1/1 1/1to1/2 1/2to1/1"/> - </vehicle> - <vehicle id="2661" depart="2661.00"> - <route edges="1/2to2/2 2/2to2/1 2/1to2/0 2/0to1/0"/> - </vehicle> - <vehicle id="2662" depart="2662.00"> - <route edges="2/3to1/3 1/3to1/2 1/2to2/2 2/2to3/2"/> - </vehicle> - <vehicle id="2663" depart="2663.00"> - <route edges="4/0to3/0 3/0to2/0 2/0to1/0 1/0to1/1 1/1to0/1 0/1to1/1"/> - </vehicle> - <vehicle id="2664" depart="2664.00"> - <route edges="1/3to1/4 1/4to1/3 1/3to2/3 2/3to3/3 3/3to3/4"/> - </vehicle> - <vehicle id="2665" depart="2665.00"> - <route edges="3/1to3/0 3/0to3/1"/> - </vehicle> - <vehicle id="2666" depart="2666.00"> - <route edges="4/0to3/0 3/0to3/1 3/1to3/2 3/2to2/2"/> - </vehicle> - <vehicle id="2667" depart="2667.00"> - <route edges="3/3to3/4 3/4to3/3 3/3to4/3 4/3to4/4"/> - </vehicle> - <vehicle id="2668" depart="2668.00"> - <route edges="3/1to3/2 3/2to3/1 3/1to4/1 4/1to4/0"/> - </vehicle> - <vehicle id="2669" depart="2669.00"> - <route edges="3/4to4/4 4/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to3/2"/> - </vehicle> - <vehicle id="2670" depart="2670.00"> - <route edges="1/3to2/3 2/3to2/2 2/2to1/2"/> - </vehicle> - <vehicle id="2671" depart="2671.00"> - <route edges="1/0to2/0 2/0to1/0 1/0to1/1 1/1to0/1 0/1to0/0"/> - </vehicle> - <vehicle id="2672" depart="2672.00"> - <route edges="1/0to1/1 1/1to0/1"/> - </vehicle> - <vehicle id="2673" depart="2673.00"> - <route edges="1/1to1/2 1/2to1/1 1/1to2/1 2/1to2/2"/> - </vehicle> - <vehicle id="2674" depart="2674.00"> - <route edges="1/4to2/4 2/4to2/3 2/3to2/2 2/2to2/1 2/1to2/0 2/0to3/0 3/0to4/0 4/0to3/0"/> - </vehicle> - <vehicle id="2675" depart="2675.00"> - <route edges="1/3to2/3 2/3to1/3 1/3to0/3 0/3to0/2 0/2to1/2"/> - </vehicle> - <vehicle id="2676" depart="2676.00"> - <route edges="4/2to3/2 3/2to3/1 3/1to3/0 3/0to2/0"/> - </vehicle> - <vehicle id="2677" depart="2677.00"> - <route edges="0/2to0/3 0/3to1/3 1/3to1/4 1/4to2/4 2/4to3/4 3/4to2/4"/> - </vehicle> - <vehicle id="2678" depart="2678.00"> - <route edges="0/2to0/1 0/1to0/2 0/2to1/2 1/2to2/2 2/2to3/2 3/2to4/2 4/2to4/3"/> - </vehicle> - <vehicle id="2679" depart="2679.00"> - <route edges="3/1to3/0 3/0to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to2/3"/> - </vehicle> - <vehicle id="2680" depart="2680.00"> - <route edges="1/3to1/4 1/4to1/3 1/3to1/2 1/2to1/1 1/1to2/1 2/1to2/0"/> - </vehicle> - <vehicle id="2681" depart="2681.00"> - <route edges="1/1to2/1 2/1to1/1 1/1to1/0 1/0to1/1"/> - </vehicle> - <vehicle id="2682" depart="2682.00"> - <route edges="3/3to2/3 2/3to1/3 1/3to0/3 0/3to0/2 0/2to0/1 0/1to1/1"/> - </vehicle> - <vehicle id="2683" depart="2683.00"> - <route edges="1/0to2/0 2/0to1/0 1/0to1/1 1/1to2/1"/> - </vehicle> - <vehicle id="2684" depart="2684.00"> - <route edges="2/3to2/4 2/4to2/3 2/3to2/2 2/2to2/1 2/1to3/1 3/1to4/1 4/1to4/0"/> - </vehicle> - <vehicle id="2685" depart="2685.00"> - <route edges="1/0to2/0 2/0to2/1 2/1to3/1 3/1to4/1"/> - </vehicle> - <vehicle id="2686" depart="2686.00"> - <route edges="3/4to2/4 2/4to3/4 3/4to4/4 4/4to3/4"/> - </vehicle> - <vehicle id="2687" depart="2687.00"> - <route edges="4/2to4/3 4/3to3/3 3/3to2/3 2/3to1/3 1/3to0/3 0/3to0/2 0/2to0/1 0/1to0/0 0/0to0/1"/> - </vehicle> - <vehicle id="2688" depart="2688.00"> - <route edges="0/1to0/0 0/0to0/1 0/1to0/2 0/2to0/3 0/3to1/3 1/3to2/3 2/3to3/3 3/3to4/3 4/3to4/2"/> - </vehicle> - <vehicle id="2689" depart="2689.00"> - <route edges="2/3to3/3 3/3to2/3 2/3to2/2 2/2to2/1 2/1to2/0 2/0to3/0"/> - </vehicle> - <vehicle id="2690" depart="2690.00"> - <route edges="1/0to0/0 0/0to0/1 0/1to1/1 1/1to2/1 2/1to3/1 3/1to3/0"/> - </vehicle> - <vehicle id="2691" depart="2691.00"> - <route edges="0/1to0/0 0/0to0/1 0/1to1/1 1/1to2/1"/> - </vehicle> - <vehicle id="2692" depart="2692.00"> - <route edges="3/4to3/3 3/3to2/3 2/3to1/3 1/3to1/4"/> - </vehicle> - <vehicle id="2693" depart="2693.00"> - <route edges="3/0to2/0 2/0to1/0 1/0to1/1 1/1to1/0"/> - </vehicle> - <vehicle id="2694" depart="2694.00"> - <route edges="2/1to2/0 2/0to1/0 1/0to1/1 1/1to0/1 0/1to0/2 0/2to0/1"/> - </vehicle> - <vehicle id="2695" depart="2695.00"> - <route edges="1/3to1/4 1/4to1/3 1/3to1/2 1/2to1/1 1/1to1/0 1/0to0/0"/> - </vehicle> - <vehicle id="2696" depart="2696.00"> - <route edges="1/3to1/2 1/2to0/2 0/2to0/1 0/1to0/0 0/0to0/1"/> - </vehicle> - <vehicle id="2697" depart="2697.00"> - <route edges="1/2to1/3 1/3to1/4 1/4to2/4 2/4to3/4"/> - </vehicle> - <vehicle id="2698" depart="2698.00"> - <route edges="0/0to0/1 0/1to1/1 1/1to1/0 1/0to2/0"/> - </vehicle> - <vehicle id="2699" depart="2699.00"> - <route edges="4/2to4/1 4/1to3/1 3/1to3/2 3/2to3/3"/> - </vehicle> - <vehicle id="2700" depart="2700.00"> - <route edges="2/4to1/4 1/4to1/3 1/3to0/3"/> - </vehicle> - <vehicle id="2701" depart="2701.00"> - <route edges="0/4to1/4 1/4to1/3 1/3to2/3 2/3to1/3"/> - </vehicle> - <vehicle id="2702" depart="2702.00"> - <route edges="1/0to0/0 0/0to0/1 0/1to0/2 0/2to0/3 0/3to1/3 1/3to2/3 2/3to3/3"/> - </vehicle> - <vehicle id="2703" depart="2703.00"> - <route edges="0/3to0/2 0/2to0/3 0/3to0/4 0/4to1/4"/> - </vehicle> - <vehicle id="2704" depart="2704.00"> - <route edges="0/3to1/3 1/3to1/2 1/2to2/2"/> - </vehicle> - <vehicle id="2705" depart="2705.00"> - <route edges="1/3to1/2 1/2to1/3 1/3to1/4 1/4to2/4 2/4to3/4 3/4to4/4"/> - </vehicle> - <vehicle id="2706" depart="2706.00"> - <route edges="4/1to4/0 4/0to4/1 4/1to4/2 4/2to4/3 4/3to3/3"/> - </vehicle> - <vehicle id="2707" depart="2707.00"> - <route edges="4/0to4/1 4/1to3/1 3/1to2/1 2/1to1/1 1/1to0/1"/> - </vehicle> - <vehicle id="2708" depart="2708.00"> - <route edges="3/3to2/3"/> - </vehicle> - <vehicle id="2709" depart="2709.00"> - <route edges="3/4to4/4 4/4to3/4 3/4to2/4 2/4to2/3 2/3to2/2 2/2to2/1 2/1to2/2"/> - </vehicle> - <vehicle id="2710" depart="2710.00"> - <route edges="0/2to1/2 1/2to0/2 0/2to0/1"/> - </vehicle> - <vehicle id="2711" depart="2711.00"> - <route edges="1/2to1/3 1/3to2/3 2/3to3/3 3/3to4/3"/> - </vehicle> - <vehicle id="2712" depart="2712.00"> - <route edges="3/0to4/0 4/0to4/1 4/1to4/0"/> - </vehicle> - <vehicle id="2713" depart="2713.00"> - <route edges="2/3to3/3 3/3to2/3 2/3to1/3 1/3to0/3 0/3to0/4 0/4to0/3"/> - </vehicle> - <vehicle id="2714" depart="2714.00"> - <route edges="1/4to1/3 1/3to1/2 1/2to1/1 1/1to1/0 1/0to2/0"/> - </vehicle> - <vehicle id="2715" depart="2715.00"> - <route edges="1/4to2/4 2/4to2/3 2/3to2/2 2/2to2/1 2/1to3/1 3/1to4/1 4/1to4/0"/> - </vehicle> - <vehicle id="2716" depart="2716.00"> - <route edges="1/1to0/1 0/1to0/2 0/2to1/2 1/2to2/2 2/2to1/2"/> - </vehicle> - <vehicle id="2717" depart="2717.00"> - <route edges="3/2to2/2 2/2to1/2 1/2to0/2"/> - </vehicle> - <vehicle id="2718" depart="2718.00"> - <route edges="1/4to0/4 0/4to1/4 1/4to2/4 2/4to1/4"/> - </vehicle> - <vehicle id="2719" depart="2719.00"> - <route edges="1/1to2/1 2/1to2/2 2/2to2/3 2/3to2/4 2/4to3/4 3/4to2/4"/> - </vehicle> - <vehicle id="2720" depart="2720.00"> - <route edges="2/0to2/1 2/1to1/1 1/1to2/1"/> - </vehicle> - <vehicle id="2721" depart="2721.00"> - <route edges="0/2to0/3 0/3to0/2 0/2to1/2 1/2to2/2 2/2to3/2"/> - </vehicle> - <vehicle id="2722" depart="2722.00"> - <route edges="2/1to1/1 1/1to1/2 1/2to0/2"/> - </vehicle> - <vehicle id="2723" depart="2723.00"> - <route edges="4/4to4/3 4/3to3/3 3/3to2/3 2/3to1/3 1/3to0/3 0/3to0/2 0/2to0/1 0/1to0/0 0/0to0/1"/> - </vehicle> - <vehicle id="2724" depart="2724.00"> - <route edges="1/2to1/3 1/3to1/2 1/2to1/1 1/1to2/1 2/1to3/1 3/1to4/1"/> - </vehicle> - <vehicle id="2725" depart="2725.00"> - <route edges="3/2to3/1 3/1to2/1 2/1to1/1 1/1to1/2 1/2to1/3"/> - </vehicle> - <vehicle id="2726" depart="2726.00"> - <route edges="2/2to1/2 1/2to0/2 0/2to0/3"/> - </vehicle> - <vehicle id="2727" depart="2727.00"> - <route edges="3/1to3/0 3/0to3/1 3/1to3/2 3/2to3/3 3/3to4/3"/> - </vehicle> - <vehicle id="2728" depart="2728.00"> - <route edges="2/1to1/1 1/1to0/1 0/1to0/2 0/2to0/3 0/3to0/4 0/4to0/3"/> - </vehicle> - <vehicle id="2729" depart="2729.00"> - <route edges="1/1to2/1 2/1to2/2 2/2to3/2"/> - </vehicle> - <vehicle id="2730" depart="2730.00"> - <route edges="2/1to2/2 2/2to3/2 3/2to2/2"/> - </vehicle> - <vehicle id="2731" depart="2731.00"> - <route edges="1/1to0/1 0/1to0/2 0/2to0/3 0/3to1/3 1/3to1/4 1/4to2/4 2/4to3/4 3/4to3/3"/> - </vehicle> - <vehicle id="2732" depart="2732.00"> - <route edges="3/3to3/4 3/4to3/3 3/3to3/2 3/2to2/2"/> - </vehicle> - <vehicle id="2733" depart="2733.00"> - <route edges="2/2to2/3 2/3to2/2 2/2to2/1 2/1to2/0 2/0to3/0 3/0to4/0 4/0to4/1"/> - </vehicle> - <vehicle id="2734" depart="2734.00"> - <route edges="4/3to4/4 4/4to3/4 3/4to2/4 2/4to2/3"/> - </vehicle> - <vehicle id="2735" depart="2735.00"> - <route edges="0/4to1/4 1/4to1/3 1/3to2/3 2/3to3/3 3/3to4/3 4/3to3/3"/> - </vehicle> - <vehicle id="2736" depart="2736.00"> - <route edges="2/0to2/1 2/1to2/2 2/2to2/3 2/3to3/3 3/3to4/3 4/3to4/4"/> - </vehicle> - <vehicle id="2737" depart="2737.00"> - <route edges="1/3to1/4 1/4to1/3 1/3to2/3 2/3to3/3 3/3to4/3 4/3to3/3"/> - </vehicle> - <vehicle id="2738" depart="2738.00"> - <route edges="2/0to1/0 1/0to1/1 1/1to0/1 0/1to0/2 0/2to1/2"/> - </vehicle> - <vehicle id="2739" depart="2739.00"> - <route edges="3/3to3/2 3/2to2/2 2/2to2/1 2/1to2/0 2/0to1/0"/> - </vehicle> - <vehicle id="2740" depart="2740.00"> - <route edges="3/1to2/1 2/1to1/1 1/1to1/2 1/2to1/3 1/3to2/3"/> - </vehicle> - <vehicle id="2741" depart="2741.00"> - <route edges="2/3to2/4 2/4to2/3 2/3to2/2 2/2to2/1 2/1to2/0 2/0to3/0 3/0to4/0 4/0to4/1"/> - </vehicle> - <vehicle id="2742" depart="2742.00"> - <route edges="3/2to2/2 2/2to3/2 3/2to3/3"/> - </vehicle> - <vehicle id="2743" depart="2743.00"> - <route edges="1/4to1/3 1/3to2/3 2/3to3/3 3/3to4/3 4/3to4/4"/> - </vehicle> - <vehicle id="2744" depart="2744.00"> - <route edges="3/0to4/0 4/0to3/0 3/0to2/0 2/0to2/1 2/1to2/2"/> - </vehicle> - <vehicle id="2745" depart="2745.00"> - <route edges="2/0to3/0 3/0to3/1 3/1to3/2 3/2to3/3 3/3to4/3 4/3to3/3"/> - </vehicle> - <vehicle id="2746" depart="2746.00"> - <route edges="2/2to2/3 2/3to2/4 2/4to1/4"/> - </vehicle> - <vehicle id="2747" depart="2747.00"> - <route edges="3/1to3/2 3/2to2/2 2/2to1/2 1/2to0/2 0/2to0/3"/> - </vehicle> - <vehicle id="2748" depart="2748.00"> - <route edges="3/2to2/2 2/2to1/2 1/2to1/1 1/1to1/0 1/0to2/0"/> - </vehicle> - <vehicle id="2749" depart="2749.00"> - <route edges="4/3to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to4/0"/> - </vehicle> - <vehicle id="2750" depart="2750.00"> - <route edges="4/2to4/3 4/3to3/3 3/3to2/3 2/3to1/3 1/3to0/3 0/3to0/2 0/2to0/1 0/1to1/1"/> - </vehicle> - <vehicle id="2751" depart="2751.00"> - <route edges="0/1to1/1 1/1to1/2 1/2to1/3 1/3to2/3 2/3to3/3 3/3to4/3"/> - </vehicle> - <vehicle id="2752" depart="2752.00"> - <route edges="1/3to1/4 1/4to2/4 2/4to3/4"/> - </vehicle> - <vehicle id="2753" depart="2753.00"> - <route edges="4/1to4/0 4/0to3/0 3/0to2/0 2/0to2/1 2/1to2/2 2/2to2/3 2/3to2/4 2/4to1/4"/> - </vehicle> - <vehicle id="2754" depart="2754.00"> - <route edges="3/1to4/1 4/1to3/1 3/1to2/1 2/1to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to0/4"/> - </vehicle> - <vehicle id="2755" depart="2755.00"> - <route edges="1/4to0/4 0/4to0/3 0/3to0/2 0/2to0/3"/> - </vehicle> - <vehicle id="2756" depart="2756.00"> - <route edges="3/4to3/3 3/3to3/2 3/2to3/1"/> - </vehicle> - <vehicle id="2757" depart="2757.00"> - <route edges="4/2to3/2 3/2to2/2 2/2to2/1 2/1to1/1"/> - </vehicle> - <vehicle id="2758" depart="2758.00"> - <route edges="1/2to1/3 1/3to2/3 2/3to1/3"/> - </vehicle> - <vehicle id="2759" depart="2759.00"> - <route edges="1/1to1/0 1/0to0/0 0/0to1/0"/> - </vehicle> - <vehicle id="2760" depart="2760.00"> - <route edges="3/2to2/2 2/2to2/1 2/1to3/1 3/1to3/2"/> - </vehicle> - <vehicle id="2761" depart="2761.00"> - <route edges="1/1to0/1 0/1to0/2 0/2to0/3 0/3to1/3 1/3to2/3 2/3to3/3 3/3to4/3 4/3to3/3"/> - </vehicle> - <vehicle id="2762" depart="2762.00"> - <route edges="1/2to1/1 1/1to0/1 0/1to0/0 0/0to1/0"/> - </vehicle> - <vehicle id="2763" depart="2763.00"> - <route edges="3/3to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to3/2"/> - </vehicle> - <vehicle id="2764" depart="2764.00"> - <route edges="1/2to0/2 0/2to1/2 1/2to2/2 2/2to3/2"/> - </vehicle> - <vehicle id="2765" depart="2765.00"> - <route edges="2/4to2/3 2/3to2/2 2/2to3/2"/> - </vehicle> - <vehicle id="2766" depart="2766.00"> - <route edges="4/2to3/2 3/2to3/1 3/1to3/0 3/0to4/0 4/0to3/0"/> - </vehicle> - <vehicle id="2767" depart="2767.00"> - <route edges="0/1to1/1 1/1to1/0 1/0to0/0"/> - </vehicle> - <vehicle id="2768" depart="2768.00"> - <route edges="1/3to2/3 2/3to1/3"/> - </vehicle> - <vehicle id="2769" depart="2769.00"> - <route edges="2/4to2/3 2/3to3/3 3/3to2/3"/> - </vehicle> - <vehicle id="2770" depart="2770.00"> - <route edges="2/4to2/3 2/3to1/3 1/3to1/4 1/4to2/4"/> - </vehicle> - <vehicle id="2771" depart="2771.00"> - <route edges="4/1to4/2 4/2to3/2 3/2to3/1 3/1to3/0 3/0to4/0"/> - </vehicle> - <vehicle id="2772" depart="2772.00"> - <route edges="0/0to0/1 0/1to1/1 1/1to1/0 1/0to2/0 2/0to3/0 3/0to4/0 4/0to3/0"/> - </vehicle> - <vehicle id="2773" depart="2773.00"> - <route edges="3/3to3/2 3/2to2/2 2/2to1/2 1/2to1/3 1/3to1/4 1/4to0/4"/> - </vehicle> - <vehicle id="2774" depart="2774.00"> - <route edges="3/3to4/3 4/3to3/3 3/3to2/3 2/3to2/2 2/2to3/2"/> - </vehicle> - <vehicle id="2775" depart="2775.00"> - <route edges="1/4to2/4 2/4to1/4 1/4to1/3"/> - </vehicle> - <vehicle id="2776" depart="2776.00"> - <route edges="2/4to1/4 1/4to1/3 1/3to2/3 2/3to3/3 3/3to4/3 4/3to4/2"/> - </vehicle> - <vehicle id="2777" depart="2777.00"> - <route edges="1/3to2/3 2/3to2/2 2/2to2/1 2/1to2/0 2/0to3/0 3/0to4/0 4/0to4/1"/> - </vehicle> - <vehicle id="2778" depart="2778.00"> - <route edges="4/2to3/2 3/2to2/2 2/2to1/2 1/2to1/1 1/1to1/0 1/0to1/1"/> - </vehicle> - <vehicle id="2779" depart="2779.00"> - <route edges="1/1to1/0 1/0to1/1 1/1to0/1 0/1to0/2 0/2to1/2"/> - </vehicle> - <vehicle id="2780" depart="2780.00"> - <route edges="1/1to1/0 1/0to2/0"/> - </vehicle> - <vehicle id="2781" depart="2781.00"> - <route edges="3/3to2/3 2/3to2/2 2/2to2/1 2/1to3/1"/> - </vehicle> - <vehicle id="2782" depart="2782.00"> - <route edges="4/2to3/2 3/2to2/2 2/2to1/2 1/2to0/2 0/2to0/3 0/3to0/2"/> - </vehicle> - <vehicle id="2783" depart="2783.00"> - <route edges="0/3to0/2 0/2to0/3 0/3to1/3 1/3to1/4 1/4to2/4 2/4to2/3"/> - </vehicle> - <vehicle id="2784" depart="2784.00"> - <route edges="2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to2/4"/> - </vehicle> - <vehicle id="2785" depart="2785.00"> - <route edges="3/2to4/2"/> - </vehicle> - <vehicle id="2786" depart="2786.00"> - <route edges="2/0to2/1 2/1to1/1 1/1to1/0 1/0to2/0"/> - </vehicle> - <vehicle id="2787" depart="2787.00"> - <route edges="2/1to1/1 1/1to0/1 0/1to0/2 0/2to0/1"/> - </vehicle> - <vehicle id="2788" depart="2788.00"> - <route edges="3/2to4/2 4/2to3/2 3/2to2/2 2/2to1/2 1/2to1/1 1/1to1/0 1/0to2/0"/> - </vehicle> - <vehicle id="2789" depart="2789.00"> - <route edges="2/4to1/4 1/4to1/3 1/3to0/3 0/3to0/4"/> - </vehicle> - <vehicle id="2790" depart="2790.00"> - <route edges="1/3to1/2 1/2to2/2 2/2to3/2 3/2to4/2"/> - </vehicle> - <vehicle id="2791" depart="2791.00"> - <route edges="4/1to4/2 4/2to3/2 3/2to2/2 2/2to1/2 1/2to1/3 1/3to1/2"/> - </vehicle> - <vehicle id="2792" depart="2792.00"> - <route edges="4/3to4/2 4/2to3/2 3/2to3/1 3/1to3/0 3/0to4/0"/> - </vehicle> - <vehicle id="2793" depart="2793.00"> - <route edges="3/2to3/3 3/3to2/3 2/3to1/3 1/3to1/4 1/4to1/3"/> - </vehicle> - <vehicle id="2794" depart="2794.00"> - <route edges="1/2to1/3 1/3to2/3 2/3to3/3"/> - </vehicle> - <vehicle id="2795" depart="2795.00"> - <route edges="1/2to1/3 1/3to2/3 2/3to3/3 3/3to2/3"/> - </vehicle> - <vehicle id="2796" depart="2796.00"> - <route edges="1/0to1/1 1/1to2/1 2/1to2/2"/> - </vehicle> - <vehicle id="2797" depart="2797.00"> - <route edges="0/4to1/4 1/4to1/3 1/3to2/3 2/3to3/3 3/3to3/4"/> - </vehicle> - <vehicle id="2798" depart="2798.00"> - <route edges="2/3to3/3 3/3to2/3 2/3to1/3 1/3to1/2 1/2to2/2"/> - </vehicle> - <vehicle id="2799" depart="2799.00"> - <route edges="2/3to2/4 2/4to2/3 2/3to2/2 2/2to2/1 2/1to3/1 3/1to3/2"/> - </vehicle> - <vehicle id="2800" depart="2800.00"> - <route edges="3/3to4/3 4/3to3/3 3/3to2/3 2/3to1/3 1/3to0/3"/> - </vehicle> - <vehicle id="2801" depart="2801.00"> - <route edges="3/1to3/0 3/0to2/0 2/0to2/1 2/1to2/2 2/2to2/3 2/3to1/3"/> - </vehicle> - <vehicle id="2802" depart="2802.00"> - <route edges="2/1to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to2/4"/> - </vehicle> - <vehicle id="2803" depart="2803.00"> - <route edges="4/3to4/4 4/4to3/4 3/4to2/4 2/4to1/4 1/4to0/4 0/4to0/3"/> - </vehicle> - <vehicle id="2804" depart="2804.00"> - <route edges="0/1to0/0 0/0to0/1 0/1to0/2 0/2to0/3 0/3to1/3 1/3to1/2"/> - </vehicle> - <vehicle id="2805" depart="2805.00"> - <route edges="3/1to3/2 3/2to2/2 2/2to2/1 2/1to2/0 2/0to2/1"/> - </vehicle> - <vehicle id="2806" depart="2806.00"> - <route edges="1/4to2/4 2/4to2/3 2/3to2/4"/> - </vehicle> - <vehicle id="2807" depart="2807.00"> - <route edges="3/1to2/1 2/1to1/1 1/1to1/2 1/2to1/3 1/3to2/3"/> - </vehicle> - <vehicle id="2808" depart="2808.00"> - <route edges="4/1to4/2 4/2to3/2 3/2to2/2 2/2to1/2 1/2to1/1 1/1to2/1"/> - </vehicle> - <vehicle id="2809" depart="2809.00"> - <route edges="1/3to2/3 2/3to2/2 2/2to2/3"/> - </vehicle> - <vehicle id="2810" depart="2810.00"> - <route edges="2/0to3/0 3/0to2/0 2/0to1/0 1/0to1/1 1/1to0/1 0/1to0/2 0/2to0/3 0/3to0/4"/> - </vehicle> - <vehicle id="2811" depart="2811.00"> - <route edges="2/2to2/3 2/3to2/2 2/2to2/1 2/1to2/0 2/0to3/0 3/0to4/0 4/0to3/0"/> - </vehicle> - <vehicle id="2812" depart="2812.00"> - <route edges="1/2to1/1 1/1to0/1 0/1to0/0 0/0to1/0"/> - </vehicle> - <vehicle id="2813" depart="2813.00"> - <route edges="2/3to2/4 2/4to3/4 3/4to4/4 4/4to4/3"/> - </vehicle> - <vehicle id="2814" depart="2814.00"> - <route edges="0/0to0/1 0/1to1/1"/> - </vehicle> - <vehicle id="2815" depart="2815.00"> - <route edges="0/2to0/3 0/3to0/2 0/2to1/2 1/2to0/2"/> - </vehicle> - <vehicle id="2816" depart="2816.00"> - <route edges="2/2to1/2 1/2to2/2 2/2to3/2 3/2to3/1"/> - </vehicle> - <vehicle id="2817" depart="2817.00"> - <route edges="3/2to3/3 3/3to3/4 3/4to4/4 4/4to4/3"/> - </vehicle> - <vehicle id="2818" depart="2818.00"> - <route edges="1/4to0/4 0/4to0/3 0/3to0/2 0/2to0/1 0/1to1/1 1/1to2/1 2/1to1/1"/> - </vehicle> - <vehicle id="2819" depart="2819.00"> - <route edges="2/3to2/2 2/2to2/1 2/1to3/1 3/1to4/1 4/1to4/2"/> - </vehicle> - <vehicle id="2820" depart="2820.00"> - <route edges="2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to2/3 2/3to3/3 3/3to4/3 4/3to4/4"/> - </vehicle> - <vehicle id="2821" depart="2821.00"> - <route edges="4/4to4/3 4/3to3/3 3/3to2/3 2/3to1/3 1/3to0/3 0/3to0/2 0/2to0/1 0/1to1/1"/> - </vehicle> - <vehicle id="2822" depart="2822.00"> - <route edges="0/4to1/4 1/4to1/3 1/3to0/3 0/3to0/2 0/2to0/1"/> - </vehicle> - <vehicle id="2823" depart="2823.00"> - <route edges="4/0to3/0 3/0to3/1 3/1to3/2 3/2to3/1"/> - </vehicle> - <vehicle id="2824" depart="2824.00"> - <route edges="2/3to1/3 1/3to1/4 1/4to1/3"/> - </vehicle> - <vehicle id="2825" depart="2825.00"> - <route edges="1/2to0/2 0/2to0/3 0/3to1/3 1/3to1/4 1/4to2/4"/> - </vehicle> - <vehicle id="2826" depart="2826.00"> - <route edges="2/1to1/1 1/1to0/1 0/1to1/1"/> - </vehicle> - <vehicle id="2827" depart="2827.00"> - <route edges="3/4to4/4 4/4to3/4 3/4to3/3 3/3to3/2 3/2to2/2"/> - </vehicle> - <vehicle id="2828" depart="2828.00"> - <route edges="0/2to0/3 0/3to1/3 1/3to1/4 1/4to2/4 2/4to3/4 3/4to2/4"/> - </vehicle> - <vehicle id="2829" depart="2829.00"> - <route edges="1/0to0/0 0/0to0/1 0/1to0/2 0/2to0/3 0/3to1/3 1/3to1/4 1/4to2/4 2/4to3/4"/> - </vehicle> - <vehicle id="2830" depart="2830.00"> - <route edges="4/3to3/3 3/3to3/2 3/2to4/2 4/2to4/1"/> - </vehicle> - <vehicle id="2831" depart="2831.00"> - <route edges="3/3to4/3 4/3to3/3 3/3to2/3 2/3to2/4 2/4to3/4"/> - </vehicle> - <vehicle id="2832" depart="2832.00"> - <route edges="0/2to0/3 0/3to0/2 0/2to1/2 1/2to1/3"/> - </vehicle> - <vehicle id="2833" depart="2833.00"> - <route edges="0/2to0/1 0/1to0/2 0/2to0/3 0/3to1/3 1/3to1/4 1/4to2/4 2/4to3/4 3/4to4/4 4/4to4/3"/> - </vehicle> - <vehicle id="2834" depart="2834.00"> - <route edges="4/2to3/2 3/2to3/1 3/1to3/2"/> - </vehicle> - <vehicle id="2835" depart="2835.00"> - <route edges="3/2to3/3"/> - </vehicle> - <vehicle id="2836" depart="2836.00"> - <route edges="3/3to4/3 4/3to3/3 3/3to2/3 2/3to1/3 1/3to1/2 1/2to1/1 1/1to0/1"/> - </vehicle> - <vehicle id="2837" depart="2837.00"> - <route edges="3/0to3/1 3/1to2/1"/> - </vehicle> - <vehicle id="2838" depart="2838.00"> - <route edges="2/3to2/2 2/2to1/2 1/2to1/3 1/3to1/4 1/4to0/4"/> - </vehicle> - <vehicle id="2839" depart="2839.00"> - <route edges="0/0to1/0 1/0to2/0 2/0to3/0"/> - </vehicle> - <vehicle id="2840" depart="2840.00"> - <route edges="3/4to3/3"/> - </vehicle> - <vehicle id="2841" depart="2841.00"> - <route edges="1/0to0/0 0/0to0/1 0/1to0/2 0/2to0/3 0/3to1/3 1/3to1/4 1/4to2/4 2/4to3/4 3/4to4/4"/> - </vehicle> - <vehicle id="2842" depart="2842.00"> - <route edges="1/3to2/3 2/3to2/2 2/2to2/1 2/1to2/0 2/0to3/0 3/0to4/0 4/0to4/1"/> - </vehicle> - <vehicle id="2843" depart="2843.00"> - <route edges="3/4to3/3 3/3to2/3 2/3to1/3 1/3to1/2 1/2to1/1 1/1to2/1"/> - </vehicle> - <vehicle id="2844" depart="2844.00"> - <route edges="3/3to2/3 2/3to1/3 1/3to1/4 1/4to2/4"/> - </vehicle> - <vehicle id="2845" depart="2845.00"> - <route edges="3/4to4/4 4/4to3/4 3/4to3/3 3/3to4/3"/> - </vehicle> - <vehicle id="2846" depart="2846.00"> - <route edges="0/3to0/2 0/2to0/1 0/1to1/1 1/1to2/1 2/1to2/2"/> - </vehicle> - <vehicle id="2847" depart="2847.00"> - <route edges="3/4to3/3 3/3to2/3 2/3to1/3 1/3to1/2 1/2to1/1 1/1to1/0"/> - </vehicle> - <vehicle id="2848" depart="2848.00"> - <route edges="2/1to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to1/2"/> - </vehicle> - <vehicle id="2849" depart="2849.00"> - <route edges="1/3to2/3 2/3to2/2 2/2to3/2 3/2to3/3"/> - </vehicle> - <vehicle id="2850" depart="2850.00"> - <route edges="4/0to3/0 3/0to2/0 2/0to3/0"/> - </vehicle> - <vehicle id="2851" depart="2851.00"> - <route edges="1/0to0/0 0/0to0/1 0/1to0/2 0/2to0/3 0/3to1/3 1/3to1/4 1/4to0/4"/> - </vehicle> - <vehicle id="2852" depart="2852.00"> - <route edges="3/4to2/4 2/4to2/3 2/3to2/2 2/2to2/1 2/1to2/0 2/0to3/0"/> - </vehicle> - <vehicle id="2853" depart="2853.00"> - <route edges="1/1to1/2 1/2to2/2 2/2to2/3"/> - </vehicle> - <vehicle id="2854" depart="2854.00"> - <route edges="2/2to1/2 1/2to0/2 0/2to0/3 0/3to0/4 0/4to0/3"/> - </vehicle> - <vehicle id="2855" depart="2855.00"> - <route edges="2/4to2/3 2/3to2/2 2/2to2/3"/> - </vehicle> - <vehicle id="2856" depart="2856.00"> - <route edges="1/3to1/2 1/2to0/2 0/2to0/1 0/1to0/0 0/0to1/0"/> - </vehicle> - <vehicle id="2857" depart="2857.00"> - <route edges="1/3to1/4 1/4to2/4 2/4to3/4 3/4to3/3"/> - </vehicle> - <vehicle id="2858" depart="2858.00"> - <route edges="2/4to2/3 2/3to2/2 2/2to2/1 2/1to2/0 2/0to1/0"/> - </vehicle> - <vehicle id="2859" depart="2859.00"> - <route edges="0/3to0/4 0/4to0/3 0/3to0/2 0/2to0/1 0/1to1/1 1/1to1/0 1/0to2/0 2/0to3/0 3/0to4/0 4/0to4/1"/> - </vehicle> - <vehicle id="2860" depart="2860.00"> - <route edges="3/1to3/2 3/2to3/3 3/3to4/3 4/3to3/3"/> - </vehicle> - <vehicle id="2861" depart="2861.00"> - <route edges="4/2to4/1 4/1to3/1 3/1to2/1 2/1to1/1 1/1to0/1 0/1to0/0"/> - </vehicle> - <vehicle id="2862" depart="2862.00"> - <route edges="3/1to4/1 4/1to3/1 3/1to2/1 2/1to1/1 1/1to0/1 0/1to0/2 0/2to0/3 0/3to0/4 0/4to1/4"/> - </vehicle> - <vehicle id="2863" depart="2863.00"> - <route edges="1/3to2/3 2/3to1/3 1/3to1/4 1/4to0/4"/> - </vehicle> - <vehicle id="2864" depart="2864.00"> - <route edges="1/3to0/3 0/3to1/3 1/3to2/3 2/3to3/3"/> - </vehicle> - <vehicle id="2865" depart="2865.00"> - <route edges="2/1to3/1 3/1to2/1 2/1to1/1"/> - </vehicle> - <vehicle id="2866" depart="2866.00"> - <route edges="0/3to1/3 1/3to2/3 2/3to3/3 3/3to3/2"/> - </vehicle> - <vehicle id="2867" depart="2867.00"> - <route edges="2/0to2/1 2/1to2/0 2/0to3/0 3/0to4/0"/> - </vehicle> - <vehicle id="2868" depart="2868.00"> - <route edges="3/4to2/4 2/4to2/3 2/3to2/2 2/2to2/1 2/1to2/0 2/0to1/0"/> - </vehicle> - <vehicle id="2869" depart="2869.00"> - <route edges="0/2to1/2 1/2to0/2 0/2to0/3 0/3to0/4 0/4to1/4"/> - </vehicle> - <vehicle id="2870" depart="2870.00"> - <route edges="4/2to3/2 3/2to2/2 2/2to2/1 2/1to2/0 2/0to3/0"/> - </vehicle> - <vehicle id="2871" depart="2871.00"> - <route edges="4/1to4/0 4/0to3/0 3/0to2/0 2/0to1/0 1/0to0/0"/> - </vehicle> - <vehicle id="2872" depart="2872.00"> - <route edges="4/1to3/1 3/1to3/2 3/2to3/3 3/3to3/4 3/4to3/3"/> - </vehicle> - <vehicle id="2873" depart="2873.00"> - <route edges="3/0to3/1 3/1to2/1 2/1to1/1 1/1to1/0"/> - </vehicle> - <vehicle id="2874" depart="2874.00"> - <route edges="4/4to3/4 3/4to2/4 2/4to2/3 2/3to2/4"/> - </vehicle> - <vehicle id="2875" depart="2875.00"> - <route edges="4/0to4/1 4/1to4/0"/> - </vehicle> - <vehicle id="2876" depart="2876.00"> - <route edges="2/1to2/0 2/0to1/0 1/0to1/1 1/1to1/0"/> - </vehicle> - <vehicle id="2877" depart="2877.00"> - <route edges="0/3to0/4 0/4to0/3 0/3to0/2 0/2to0/1 0/1to1/1 1/1to1/2"/> - </vehicle> - <vehicle id="2878" depart="2878.00"> - <route edges="3/4to2/4 2/4to2/3 2/3to1/3"/> - </vehicle> - <vehicle id="2879" depart="2879.00"> - <route edges="3/1to4/1 4/1to3/1 3/1to2/1 2/1to1/1 1/1to1/2"/> - </vehicle> - <vehicle id="2880" depart="2880.00"> - <route edges="3/3to4/3 4/3to3/3 3/3to2/3 2/3to1/3 1/3to0/3 0/3to0/4 0/4to0/3"/> - </vehicle> - <vehicle id="2881" depart="2881.00"> - <route edges="2/1to1/1 1/1to1/2 1/2to2/2 2/2to3/2 3/2to2/2"/> - </vehicle> - <vehicle id="2882" depart="2882.00"> - <route edges="3/3to4/3 4/3to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to4/0"/> - </vehicle> - <vehicle id="2883" depart="2883.00"> - <route edges="1/2to1/3 1/3to1/4 1/4to2/4 2/4to3/4 3/4to4/4"/> - </vehicle> - <vehicle id="2884" depart="2884.00"> - <route edges="3/1to4/1 4/1to3/1 3/1to2/1 2/1to1/1 1/1to2/1"/> - </vehicle> - <vehicle id="2885" depart="2885.00"> - <route edges="3/0to2/0 2/0to2/1 2/1to2/2 2/2to2/3 2/3to3/3 3/3to4/3 4/3to4/4"/> - </vehicle> - <vehicle id="2886" depart="2886.00"> - <route edges="2/3to2/2 2/2to1/2 1/2to1/3 1/3to2/3"/> - </vehicle> - <vehicle id="2887" depart="2887.00"> - <route edges="1/1to1/0 1/0to1/1"/> - </vehicle> - <vehicle id="2888" depart="2888.00"> - <route edges="2/0to1/0 1/0to2/0 2/0to3/0 3/0to4/0 4/0to3/0"/> - </vehicle> - <vehicle id="2889" depart="2889.00"> - <route edges="3/4to4/4 4/4to3/4 3/4to2/4 2/4to2/3 2/3to2/2 2/2to2/1 2/1to2/2"/> - </vehicle> - <vehicle id="2890" depart="2890.00"> - <route edges="3/4to4/4 4/4to4/3 4/3to3/3"/> - </vehicle> - <vehicle id="2891" depart="2891.00"> - <route edges="1/2to1/3 1/3to1/2 1/2to2/2 2/2to3/2 3/2to4/2 4/2to3/2"/> - </vehicle> - <vehicle id="2892" depart="2892.00"> - <route edges="3/4to4/4 4/4to3/4 3/4to2/4 2/4to1/4"/> - </vehicle> - <vehicle id="2893" depart="2893.00"> - <route edges="4/2to4/1 4/1to3/1 3/1to3/2 3/2to3/3"/> - </vehicle> - <vehicle id="2894" depart="2894.00"> - <route edges="3/2to3/3 3/3to4/3 4/3to4/2"/> - </vehicle> - <vehicle id="2895" depart="2895.00"> - <route edges="4/2to4/1 4/1to4/2 4/2to4/3 4/3to4/2"/> - </vehicle> - <vehicle id="2896" depart="2896.00"> - <route edges="4/4to4/3 4/3to3/3 3/3to2/3 2/3to1/3 1/3to1/2 1/2to1/1"/> - </vehicle> - <vehicle id="2897" depart="2897.00"> - <route edges="3/2to3/1 3/1to3/2 3/2to4/2 4/2to3/2"/> - </vehicle> - <vehicle id="2898" depart="2898.00"> - <route edges="2/2to2/1 2/1to1/1 1/1to0/1 0/1to0/2"/> - </vehicle> - <vehicle id="2899" depart="2899.00"> - <route edges="2/4to3/4 3/4to2/4 2/4to1/4 1/4to0/4 0/4to1/4"/> - </vehicle> - <vehicle id="2900" depart="2900.00"> - <route edges="4/1to4/0 4/0to3/0 3/0to2/0 2/0to1/0 1/0to0/0"/> - </vehicle> - <vehicle id="2901" depart="2901.00"> - <route edges="1/2to2/2 2/2to2/3 2/3to3/3 3/3to4/3 4/3to4/2"/> - </vehicle> - <vehicle id="2902" depart="2902.00"> - <route edges="0/3to0/4 0/4to0/3 0/3to0/2 0/2to0/1"/> - </vehicle> - <vehicle id="2903" depart="2903.00"> - <route edges="3/0to2/0 2/0to2/1 2/1to2/2 2/2to2/3 2/3to2/4 2/4to3/4 3/4to2/4"/> - </vehicle> - <vehicle id="2904" depart="2904.00"> - <route edges="4/0to3/0 3/0to3/1 3/1to3/2 3/2to4/2 4/2to4/1"/> - </vehicle> - <vehicle id="2905" depart="2905.00"> - <route edges="4/1to3/1 3/1to2/1 2/1to2/2 2/2to1/2"/> - </vehicle> - <vehicle id="2906" depart="2906.00"> - <route edges="1/3to1/2 1/2to0/2 0/2to0/1 0/1to0/2"/> - </vehicle> - <vehicle id="2907" depart="2907.00"> - <route edges="2/2to2/3 2/3to2/4 2/4to3/4 3/4to4/4"/> - </vehicle> - <vehicle id="2908" depart="2908.00"> - <route edges="4/4to4/3 4/3to4/2 4/2to4/1 4/1to3/1"/> - </vehicle> - <vehicle id="2909" depart="2909.00"> - <route edges="1/3to1/2 1/2to1/3 1/3to1/4 1/4to2/4 2/4to3/4 3/4to4/4"/> - </vehicle> - <vehicle id="2910" depart="2910.00"> - <route edges="1/3to1/4 1/4to2/4"/> - </vehicle> - <vehicle id="2911" depart="2911.00"> - <route edges="2/1to1/1 1/1to1/0 1/0to2/0 2/0to1/0"/> - </vehicle> - <vehicle id="2912" depart="2912.00"> - <route edges="0/4to1/4 1/4to2/4 2/4to3/4 3/4to2/4"/> - </vehicle> - <vehicle id="2913" depart="2913.00"> - <route edges="1/4to2/4 2/4to2/3 2/3to3/3 3/3to4/3"/> - </vehicle> - <vehicle id="2914" depart="2914.00"> - <route edges="3/2to2/2 2/2to1/2 1/2to1/1 1/1to1/0 1/0to0/0"/> - </vehicle> - <vehicle id="2915" depart="2915.00"> - <route edges="2/3to2/4 2/4to2/3 2/3to3/3 3/3to3/2"/> - </vehicle> - <vehicle id="2916" depart="2916.00"> - <route edges="4/2to4/1 4/1to4/0 4/0to3/0"/> - </vehicle> - <vehicle id="2917" depart="2917.00"> - <route edges="1/2to1/1 1/1to1/2 1/2to1/3 1/3to2/3 2/3to3/3 3/3to3/4"/> - </vehicle> - <vehicle id="2918" depart="2918.00"> - <route edges="1/1to2/1 2/1to1/1 1/1to0/1 0/1to0/2 0/2to0/3 0/3to0/4 0/4to0/3"/> - </vehicle> - <vehicle id="2919" depart="2919.00"> - <route edges="2/1to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to2/3"/> - </vehicle> - <vehicle id="2920" depart="2920.00"> - <route edges="1/0to2/0 2/0to2/1 2/1to2/2 2/2to2/3 2/3to2/4 2/4to1/4"/> - </vehicle> - <vehicle id="2921" depart="2921.00"> - <route edges="4/0to3/0 3/0to2/0 2/0to1/0 1/0to1/1 1/1to0/1 0/1to0/2 0/2to1/2"/> - </vehicle> - <vehicle id="2922" depart="2922.00"> - <route edges="3/0to3/1 3/1to2/1 2/1to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to0/4"/> - </vehicle> - <vehicle id="2923" depart="2923.00"> - <route edges="1/2to0/2 0/2to1/2 1/2to2/2 2/2to2/1"/> - </vehicle> - <vehicle id="2924" depart="2924.00"> - <route edges="3/3to4/3 4/3to3/3 3/3to3/4 3/4to4/4"/> - </vehicle> - <vehicle id="2925" depart="2925.00"> - <route edges="3/4to2/4 2/4to2/3 2/3to3/3 3/3to4/3 4/3to4/4"/> - </vehicle> - <vehicle id="2926" depart="2926.00"> - <route edges="0/3to1/3 1/3to1/2 1/2to2/2 2/2to3/2 3/2to4/2 4/2to3/2"/> - </vehicle> - <vehicle id="2927" depart="2927.00"> - <route edges="0/0to1/0 1/0to1/1 1/1to0/1 0/1to0/2 0/2to0/3"/> - </vehicle> - <vehicle id="2928" depart="2928.00"> - <route edges="4/0to4/1 4/1to4/2 4/2to4/3"/> - </vehicle> - <vehicle id="2929" depart="2929.00"> - <route edges="4/4to4/3 4/3to3/3 3/3to2/3 2/3to1/3 1/3to1/4"/> - </vehicle> - <vehicle id="2930" depart="2930.00"> - <route edges="2/1to1/1"/> - </vehicle> - <vehicle id="2931" depart="2931.00"> - <route edges="0/1to0/0 0/0to0/1 0/1to0/2 0/2to0/3 0/3to0/4 0/4to0/3"/> - </vehicle> - <vehicle id="2932" depart="2932.00"> - <route edges="2/2to1/2 1/2to1/3 1/3to1/4 1/4to2/4"/> - </vehicle> - <vehicle id="2933" depart="2933.00"> - <route edges="1/2to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to0/4"/> - </vehicle> - <vehicle id="2934" depart="2934.00"> - <route edges="0/2to1/2 1/2to0/2 0/2to0/1 0/1to0/0 0/0to0/1"/> - </vehicle> - <vehicle id="2935" depart="2935.00"> - <route edges="1/4to0/4 0/4to0/3 0/3to0/2 0/2to0/1 0/1to1/1 1/1to2/1 2/1to3/1 3/1to3/2"/> - </vehicle> - <vehicle id="2936" depart="2936.00"> - <route edges="3/2to4/2 4/2to3/2 3/2to2/2 2/2to1/2 1/2to0/2 0/2to0/3"/> - </vehicle> - <vehicle id="2937" depart="2937.00"> - <route edges="4/2to3/2 3/2to4/2 4/2to4/1"/> - </vehicle> - <vehicle id="2938" depart="2938.00"> - <route edges="1/1to0/1 0/1to0/2"/> - </vehicle> - <vehicle id="2939" depart="2939.00"> - <route edges="2/4to1/4 1/4to1/3 1/3to1/2 1/2to1/1 1/1to2/1 2/1to3/1 3/1to2/1"/> - </vehicle> - <vehicle id="2940" depart="2940.00"> - <route edges="1/2to2/2 2/2to2/3 2/3to2/4 2/4to3/4"/> - </vehicle> - <vehicle id="2941" depart="2941.00"> - <route edges="2/1to1/1 1/1to0/1 0/1to0/2 0/2to0/3 0/3to1/3"/> - </vehicle> - <vehicle id="2942" depart="2942.00"> - <route edges="1/4to1/3 1/3to2/3 2/3to3/3 3/3to3/4"/> - </vehicle> - <vehicle id="2943" depart="2943.00"> - <route edges="2/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to4/0"/> - </vehicle> - <vehicle id="2944" depart="2944.00"> - <route edges="3/3to2/3 2/3to3/3 3/3to4/3 4/3to4/2"/> - </vehicle> - <vehicle id="2945" depart="2945.00"> - <route edges="3/3to3/2 3/2to2/2 2/2to1/2 1/2to0/2 0/2to0/1 0/1to0/0 0/0to0/1"/> - </vehicle> - <vehicle id="2946" depart="2946.00"> - <route edges="0/3to1/3 1/3to1/2 1/2to2/2 2/2to3/2 3/2to4/2 4/2to4/3"/> - </vehicle> - <vehicle id="2947" depart="2947.00"> - <route edges="0/3to1/3 1/3to1/4 1/4to1/3"/> - </vehicle> - <vehicle id="2948" depart="2948.00"> - <route edges="2/4to3/4 3/4to3/3 3/3to3/2 3/2to3/3"/> - </vehicle> - <vehicle id="2949" depart="2949.00"> - <route edges="3/0to4/0 4/0to3/0 3/0to2/0 2/0to3/0"/> - </vehicle> - <vehicle id="2950" depart="2950.00"> - <route edges="3/4to2/4 2/4to2/3"/> - </vehicle> - <vehicle id="2951" depart="2951.00"> - <route edges="1/1to2/1 2/1to2/2 2/2to2/3 2/3to3/3 3/3to3/2"/> - </vehicle> - <vehicle id="2952" depart="2952.00"> - <route edges="3/4to3/3 3/3to3/4"/> - </vehicle> - <vehicle id="2953" depart="2953.00"> - <route edges="3/2to3/3 3/3to3/2"/> - </vehicle> - <vehicle id="2954" depart="2954.00"> - <route edges="4/3to4/2 4/2to3/2 3/2to2/2 2/2to2/1 2/1to2/0 2/0to1/0"/> - </vehicle> - <vehicle id="2955" depart="2955.00"> - <route edges="2/1to2/0 2/0to2/1 2/1to2/2 2/2to2/3 2/3to3/3"/> - </vehicle> - <vehicle id="2956" depart="2956.00"> - <route edges="0/3to1/3 1/3to1/4 1/4to1/3"/> - </vehicle> - <vehicle id="2957" depart="2957.00"> - <route edges="3/4to4/4 4/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to3/0"/> - </vehicle> - <vehicle id="2958" depart="2958.00"> - <route edges="4/1to4/2 4/2to3/2 3/2to2/2 2/2to2/3 2/3to2/2"/> - </vehicle> - <vehicle id="2959" depart="2959.00"> - <route edges="1/3to2/3 2/3to2/2 2/2to2/1 2/1to3/1 3/1to4/1 4/1to3/1"/> - </vehicle> - <vehicle id="2960" depart="2960.00"> - <route edges="2/3to3/3 3/3to3/4 3/4to2/4"/> - </vehicle> - <vehicle id="2961" depart="2961.00"> - <route edges="2/1to3/1 3/1to2/1 2/1to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to0/4"/> - </vehicle> - <vehicle id="2962" depart="2962.00"> - <route edges="3/2to2/2 2/2to2/1 2/1to3/1 3/1to4/1 4/1to4/2"/> - </vehicle> - <vehicle id="2963" depart="2963.00"> - <route edges="0/3to1/3 1/3to1/2 1/2to1/1 1/1to2/1 2/1to3/1 3/1to4/1"/> - </vehicle> - <vehicle id="2964" depart="2964.00"> - <route edges="2/1to1/1 1/1to0/1 0/1to0/2 0/2to0/1"/> - </vehicle> - <vehicle id="2965" depart="2965.00"> - <route edges="3/2to3/3 3/3to2/3 2/3to1/3 1/3to0/3 0/3to0/2 0/2to1/2"/> - </vehicle> - <vehicle id="2966" depart="2966.00"> - <route edges="4/3to4/2 4/2to3/2 3/2to2/2 2/2to2/3 2/3to3/3"/> - </vehicle> - <vehicle id="2967" depart="2967.00"> - <route edges="3/1to4/1 4/1to3/1 3/1to2/1 2/1to2/2 2/2to2/3"/> - </vehicle> - <vehicle id="2968" depart="2968.00"> - <route edges="4/4to4/3 4/3to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to3/1"/> - </vehicle> - <vehicle id="2969" depart="2969.00"> - <route edges="3/2to4/2"/> - </vehicle> - <vehicle id="2970" depart="2970.00"> - <route edges="1/4to1/3 1/3to1/2 1/2to1/1 1/1to1/0 1/0to2/0 2/0to3/0 3/0to3/1"/> - </vehicle> - <vehicle id="2971" depart="2971.00"> - <route edges="1/0to1/1 1/1to2/1 2/1to3/1 3/1to3/2"/> - </vehicle> - <vehicle id="2972" depart="2972.00"> - <route edges="0/4to0/3 0/3to0/2 0/2to1/2 1/2to2/2 2/2to2/1"/> - </vehicle> - <vehicle id="2973" depart="2973.00"> - <route edges="0/1to1/1 1/1to2/1 2/1to3/1 3/1to4/1 4/1to4/2"/> - </vehicle> - <vehicle id="2974" depart="2974.00"> - <route edges="2/2to1/2 1/2to2/2 2/2to3/2 3/2to3/3"/> - </vehicle> - <vehicle id="2975" depart="2975.00"> - <route edges="1/1to1/0 1/0to2/0"/> - </vehicle> - <vehicle id="2976" depart="2976.00"> - <route edges="1/2to1/1 1/1to1/2 1/2to1/3 1/3to1/4"/> - </vehicle> - <vehicle id="2977" depart="2977.00"> - <route edges="0/4to1/4 1/4to1/3 1/3to2/3"/> - </vehicle> - <vehicle id="2978" depart="2978.00"> - <route edges="2/3to2/4 2/4to1/4 1/4to1/3 1/3to0/3 0/3to0/2 0/2to1/2"/> - </vehicle> - <vehicle id="2979" depart="2979.00"> - <route edges="3/1to3/2 3/2to2/2 2/2to1/2 1/2to1/1 1/1to0/1"/> - </vehicle> - <vehicle id="2980" depart="2980.00"> - <route edges="3/1to3/2 3/2to2/2 2/2to1/2 1/2to1/3 1/3to2/3"/> - </vehicle> - <vehicle id="2981" depart="2981.00"> - <route edges="4/4to4/3"/> - </vehicle> - <vehicle id="2982" depart="2982.00"> - <route edges="0/3to1/3 1/3to0/3 0/3to0/4 0/4to1/4"/> - </vehicle> - <vehicle id="2983" depart="2983.00"> - <route edges="4/1to3/1 3/1to3/2 3/2to3/3 3/3to3/4"/> - </vehicle> - <vehicle id="2984" depart="2984.00"> - <route edges="2/2to2/1 2/1to3/1 3/1to2/1"/> - </vehicle> - <vehicle id="2985" depart="2985.00"> - <route edges="0/0to1/0 1/0to1/1"/> - </vehicle> - <vehicle id="2986" depart="2986.00"> - <route edges="0/1to0/2 0/2to0/3 0/3to0/4 0/4to0/3"/> - </vehicle> - <vehicle id="2987" depart="2987.00"> - <route edges="0/2to0/3 0/3to1/3 1/3to2/3 2/3to3/3 3/3to4/3 4/3to3/3"/> - </vehicle> - <vehicle id="2988" depart="2988.00"> - <route edges="0/1to0/0 0/0to0/1 0/1to0/2 0/2to0/3 0/3to1/3 1/3to1/4 1/4to2/4 2/4to3/4"/> - </vehicle> - <vehicle id="2989" depart="2989.00"> - <route edges="3/0to2/0 2/0to1/0 1/0to1/1"/> - </vehicle> - <vehicle id="2990" depart="2990.00"> - <route edges="3/4to4/4 4/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to2/0"/> - </vehicle> - <vehicle id="2991" depart="2991.00"> - <route edges="1/0to1/1 1/1to0/1 0/1to0/2"/> - </vehicle> - <vehicle id="2992" depart="2992.00"> - <route edges="2/1to3/1 3/1to3/2 3/2to3/3 3/3to3/4"/> - </vehicle> - <vehicle id="2993" depart="2993.00"> - <route edges="3/0to2/0 2/0to1/0 1/0to1/1"/> - </vehicle> - <vehicle id="2994" depart="2994.00"> - <route edges="2/1to3/1 3/1to3/0 3/0to4/0 4/0to3/0"/> - </vehicle> - <vehicle id="2995" depart="2995.00"> - <route edges="4/0to4/1 4/1to3/1 3/1to2/1 2/1to2/2 2/2to2/3"/> - </vehicle> - <vehicle id="2996" depart="2996.00"> - <route edges="4/3to4/4 4/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to4/0"/> - </vehicle> - <vehicle id="2997" depart="2997.00"> - <route edges="4/3to4/2 4/2to3/2 3/2to2/2 2/2to1/2 1/2to1/1 1/1to1/2"/> - </vehicle> - <vehicle id="2998" depart="2998.00"> - <route edges="2/2to2/3 2/3to2/4 2/4to1/4"/> - </vehicle> - <vehicle id="2999" depart="2999.00"> - <route edges="3/4to3/3 3/3to3/2 3/2to3/1 3/1to4/1 4/1to4/2"/> - </vehicle> - <vehicle id="3000" depart="3000.00"> - <route edges="1/0to2/0 2/0to2/1 2/1to2/2"/> - </vehicle> - <vehicle id="3001" depart="3001.00"> - <route edges="2/2to3/2 3/2to3/1"/> - </vehicle> - <vehicle id="3002" depart="3002.00"> - <route edges="0/1to0/2 0/2to1/2 1/2to1/3"/> - </vehicle> - <vehicle id="3003" depart="3003.00"> - <route edges="3/2to4/2 4/2to4/1 4/1to3/1"/> - </vehicle> - <vehicle id="3004" depart="3004.00"> - <route edges="3/2to3/1 3/1to2/1 2/1to1/1 1/1to0/1 0/1to1/1"/> - </vehicle> - <vehicle id="3005" depart="3005.00"> - <route edges="2/0to3/0 3/0to3/1 3/1to3/2 3/2to4/2 4/2to3/2"/> - </vehicle> - <vehicle id="3006" depart="3006.00"> - <route edges="4/0to3/0 3/0to3/1 3/1to4/1 4/1to4/2"/> - </vehicle> - <vehicle id="3007" depart="3007.00"> - <route edges="3/2to4/2 4/2to3/2 3/2to2/2 2/2to1/2 1/2to0/2"/> - </vehicle> - <vehicle id="3008" depart="3008.00"> - <route edges="2/3to1/3 1/3to1/2 1/2to2/2 2/2to3/2 3/2to2/2"/> - </vehicle> - <vehicle id="3009" depart="3009.00"> - <route edges="3/2to3/3 3/3to2/3 2/3to1/3 1/3to0/3 0/3to0/2"/> - </vehicle> - <vehicle id="3010" depart="3010.00"> - <route edges="4/2to4/3 4/3to3/3 3/3to2/3 2/3to2/2 2/2to2/1 2/1to2/0 2/0to1/0"/> - </vehicle> - <vehicle id="3011" depart="3011.00"> - <route edges="0/3to0/2 0/2to0/1 0/1to1/1 1/1to2/1 2/1to3/1 3/1to2/1"/> - </vehicle> - <vehicle id="3012" depart="3012.00"> - <route edges="0/3to1/3 1/3to2/3 2/3to2/2"/> - </vehicle> - <vehicle id="3013" depart="3013.00"> - <route edges="3/2to4/2 4/2to3/2 3/2to2/2 2/2to1/2 1/2to1/1 1/1to2/1"/> - </vehicle> - <vehicle id="3014" depart="3014.00"> - <route edges="2/3to2/2 2/2to2/1"/> - </vehicle> - <vehicle id="3015" depart="3015.00"> - <route edges="1/0to1/1 1/1to1/2 1/2to2/2 2/2to2/3"/> - </vehicle> - <vehicle id="3016" depart="3016.00"> - <route edges="1/4to1/3 1/3to0/3 0/3to0/4 0/4to1/4"/> - </vehicle> - <vehicle id="3017" depart="3017.00"> - <route edges="2/4to1/4 1/4to1/3 1/3to1/2 1/2to1/1 1/1to1/0 1/0to2/0 2/0to1/0"/> - </vehicle> - <vehicle id="3018" depart="3018.00"> - <route edges="2/2to2/1 2/1to2/2 2/2to3/2 3/2to3/3"/> - </vehicle> - <vehicle id="3019" depart="3019.00"> - <route edges="2/1to2/0"/> - </vehicle> - <vehicle id="3020" depart="3020.00"> - <route edges="4/4to3/4 3/4to2/4 2/4to1/4 1/4to1/3 1/3to2/3"/> - </vehicle> - <vehicle id="3021" depart="3021.00"> - <route edges="4/4to4/3 4/3to3/3 3/3to3/4 3/4to3/3"/> - </vehicle> - <vehicle id="3022" depart="3022.00"> - <route edges="2/3to1/3 1/3to0/3 0/3to0/2 0/2to0/1 0/1to1/1"/> - </vehicle> - <vehicle id="3023" depart="3023.00"> - <route edges="0/2to1/2 1/2to1/1 1/1to2/1 2/1to1/1"/> - </vehicle> - <vehicle id="3024" depart="3024.00"> - <route edges="0/4to1/4 1/4to1/3 1/3to1/2 1/2to1/1 1/1to0/1"/> - </vehicle> - <vehicle id="3025" depart="3025.00"> - <route edges="0/2to0/3 0/3to0/2 0/2to1/2 1/2to2/2 2/2to3/2 3/2to3/1"/> - </vehicle> - <vehicle id="3026" depart="3026.00"> - <route edges="2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to0/4"/> - </vehicle> - <vehicle id="3027" depart="3027.00"> - <route edges="1/3to2/3 2/3to3/3"/> - </vehicle> - <vehicle id="3028" depart="3028.00"> - <route edges="4/0to3/0 3/0to2/0 2/0to2/1 2/1to2/2 2/2to1/2"/> - </vehicle> - <vehicle id="3029" depart="3029.00"> - <route edges="2/3to1/3 1/3to1/2 1/2to2/2 2/2to3/2 3/2to4/2"/> - </vehicle> - <vehicle id="3030" depart="3030.00"> - <route edges="0/4to1/4 1/4to1/3 1/3to2/3 2/3to3/3 3/3to3/2"/> - </vehicle> - <vehicle id="3031" depart="3031.00"> - <route edges="1/4to2/4 2/4to2/3 2/3to2/2 2/2to2/1"/> - </vehicle> - <vehicle id="3032" depart="3032.00"> - <route edges="1/0to0/0 0/0to0/1 0/1to0/2 0/2to0/3 0/3to0/4 0/4to0/3"/> - </vehicle> - <vehicle id="3033" depart="3033.00"> - <route edges="1/2to0/2 0/2to0/3 0/3to1/3 1/3to2/3 2/3to3/3 3/3to4/3"/> - </vehicle> - <vehicle id="3034" depart="3034.00"> - <route edges="3/2to3/1 3/1to4/1 4/1to4/2"/> - </vehicle> - <vehicle id="3035" depart="3035.00"> - <route edges="2/3to1/3 1/3to0/3 0/3to0/2 0/2to0/1 0/1to0/0 0/0to1/0"/> - </vehicle> - <vehicle id="3036" depart="3036.00"> - <route edges="2/4to2/3 2/3to2/4 2/4to3/4 3/4to3/3"/> - </vehicle> - <vehicle id="3037" depart="3037.00"> - <route edges="4/0to3/0 3/0to2/0 2/0to2/1 2/1to2/2 2/2to2/3 2/3to2/4 2/4to2/3"/> - </vehicle> - <vehicle id="3038" depart="3038.00"> - <route edges="4/1to3/1 3/1to2/1 2/1to2/2"/> - </vehicle> - <vehicle id="3039" depart="3039.00"> - <route edges="0/2to0/1 0/1to1/1 1/1to1/0 1/0to2/0 2/0to3/0 3/0to2/0"/> - </vehicle> - <vehicle id="3040" depart="3040.00"> - <route edges="1/1to0/1 0/1to0/2 0/2to1/2 1/2to2/2 2/2to3/2 3/2to4/2 4/2to3/2"/> - </vehicle> - <vehicle id="3041" depart="3041.00"> - <route edges="0/4to1/4 1/4to1/3 1/3to1/2 1/2to1/1 1/1to0/1"/> - </vehicle> - <vehicle id="3042" depart="3042.00"> - <route edges="1/0to0/0 0/0to0/1 0/1to0/2 0/2to0/3 0/3to1/3"/> - </vehicle> - <vehicle id="3043" depart="3043.00"> - <route edges="1/4to2/4 2/4to2/3 2/3to2/2"/> - </vehicle> - <vehicle id="3044" depart="3044.00"> - <route edges="4/3to4/2 4/2to3/2 3/2to2/2 2/2to1/2 1/2to0/2 0/2to1/2"/> - </vehicle> - <vehicle id="3045" depart="3045.00"> - <route edges="4/1to4/0 4/0to3/0 3/0to2/0 2/0to1/0 1/0to0/0 0/0to1/0"/> - </vehicle> - <vehicle id="3046" depart="3046.00"> - <route edges="3/2to3/1 3/1to2/1 2/1to1/1 1/1to0/1 0/1to0/0"/> - </vehicle> - <vehicle id="3047" depart="3047.00"> - <route edges="4/3to3/3 3/3to4/3 4/3to4/4"/> - </vehicle> - <vehicle id="3048" depart="3048.00"> - <route edges="4/1to4/2 4/2to3/2 3/2to3/1 3/1to2/1"/> - </vehicle> - <vehicle id="3049" depart="3049.00"> - <route edges="3/3to2/3 2/3to1/3 1/3to0/3 0/3to0/4"/> - </vehicle> - <vehicle id="3050" depart="3050.00"> - <route edges="3/3to3/2 3/2to3/1 3/1to3/0 3/0to4/0 4/0to4/1"/> - </vehicle> - <vehicle id="3051" depart="3051.00"> - <route edges="0/4to1/4 1/4to1/3 1/3to0/3 0/3to0/2 0/2to1/2"/> - </vehicle> - <vehicle id="3052" depart="3052.00"> - <route edges="3/2to4/2 4/2to3/2 3/2to2/2 2/2to1/2 1/2to0/2 0/2to1/2"/> - </vehicle> - <vehicle id="3053" depart="3053.00"> - <route edges="3/0to3/1 3/1to2/1 2/1to1/1 1/1to0/1 0/1to0/2 0/2to1/2"/> - </vehicle> - <vehicle id="3054" depart="3054.00"> - <route edges="2/4to3/4 3/4to2/4 2/4to1/4 1/4to2/4"/> - </vehicle> - <vehicle id="3055" depart="3055.00"> - <route edges="1/1to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to2/3"/> - </vehicle> - <vehicle id="3056" depart="3056.00"> - <route edges="1/1to0/1 0/1to0/2 0/2to1/2 1/2to2/2 2/2to3/2 3/2to4/2"/> - </vehicle> - <vehicle id="3057" depart="3057.00"> - <route edges="2/2to1/2 1/2to2/2 2/2to3/2 3/2to4/2 4/2to4/1"/> - </vehicle> - <vehicle id="3058" depart="3058.00"> - <route edges="3/0to3/1 3/1to2/1 2/1to2/0 2/0to3/0"/> - </vehicle> - <vehicle id="3059" depart="3059.00"> - <route edges="4/2to4/3 4/3to3/3 3/3to2/3 2/3to1/3 1/3to0/3 0/3to1/3"/> - </vehicle> - <vehicle id="3060" depart="3060.00"> - <route edges="1/2to2/2 2/2to2/3 2/3to2/4 2/4to1/4"/> - </vehicle> - <vehicle id="3061" depart="3061.00"> - <route edges="3/2to3/3 3/3to3/4 3/4to4/4"/> - </vehicle> - <vehicle id="3062" depart="3062.00"> - <route edges="0/2to0/1 0/1to1/1 1/1to2/1 2/1to3/1 3/1to4/1 4/1to3/1"/> - </vehicle> - <vehicle id="3063" depart="3063.00"> - <route edges="1/0to1/1 1/1to1/2 1/2to1/3 1/3to2/3 2/3to3/3 3/3to4/3 4/3to4/4"/> - </vehicle> - <vehicle id="3064" depart="3064.00"> - <route edges="4/0to3/0 3/0to3/1 3/1to3/2 3/2to3/3 3/3to3/4"/> - </vehicle> - <vehicle id="3065" depart="3065.00"> - <route edges="0/3to0/4 0/4to0/3 0/3to0/2 0/2to0/1 0/1to1/1 1/1to1/0 1/0to2/0 2/0to3/0 3/0to4/0 4/0to3/0"/> - </vehicle> - <vehicle id="3066" depart="3066.00"> - <route edges="0/3to1/3 1/3to0/3 0/3to0/2 0/2to0/1 0/1to0/0 0/0to0/1"/> - </vehicle> - <vehicle id="3067" depart="3067.00"> - <route edges="2/3to2/2 2/2to2/1 2/1to3/1 3/1to4/1"/> - </vehicle> - <vehicle id="3068" depart="3068.00"> - <route edges="0/4to1/4 1/4to1/3 1/3to0/3 0/3to0/2 0/2to0/1 0/1to0/2"/> - </vehicle> - <vehicle id="3069" depart="3069.00"> - <route edges="1/3to2/3 2/3to2/2 2/2to2/1 2/1to3/1 3/1to4/1"/> - </vehicle> - <vehicle id="3070" depart="3070.00"> - <route edges="4/2to3/2 3/2to2/2 2/2to2/3 2/3to2/2"/> - </vehicle> - <vehicle id="3071" depart="3071.00"> - <route edges="2/1to3/1 3/1to3/2 3/2to3/3 3/3to3/4 3/4to4/4 4/4to4/3"/> - </vehicle> - <vehicle id="3072" depart="3072.00"> - <route edges="3/3to4/3 4/3to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to3/1"/> - </vehicle> - <vehicle id="3073" depart="3073.00"> - <route edges="1/4to0/4 0/4to0/3 0/3to1/3 1/3to2/3 2/3to3/3"/> - </vehicle> - <vehicle id="3074" depart="3074.00"> - <route edges="1/2to1/3 1/3to2/3 2/3to3/3 3/3to2/3"/> - </vehicle> - <vehicle id="3075" depart="3075.00"> - <route edges="2/2to2/1 2/1to2/2 2/2to3/2 3/2to3/1"/> - </vehicle> - <vehicle id="3076" depart="3076.00"> - <route edges="0/3to1/3 1/3to1/2 1/2to1/1 1/1to1/0 1/0to2/0 2/0to3/0"/> - </vehicle> - <vehicle id="3077" depart="3077.00"> - <route edges="3/4to4/4 4/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to3/1"/> - </vehicle> - <vehicle id="3078" depart="3078.00"> - <route edges="3/4to4/4 4/4to3/4 3/4to2/4 2/4to1/4 1/4to1/3 1/3to0/3 0/3to0/4"/> - </vehicle> - <vehicle id="3079" depart="3079.00"> - <route edges="3/1to3/2 3/2to2/2 2/2to2/1 2/1to2/0 2/0to2/1"/> - </vehicle> - <vehicle id="3080" depart="3080.00"> - <route edges="1/2to1/3 1/3to0/3 0/3to1/3"/> - </vehicle> - <vehicle id="3081" depart="3081.00"> - <route edges="3/4to4/4 4/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to2/0"/> - </vehicle> - <vehicle id="3082" depart="3082.00"> - <route edges="2/4to3/4 3/4to2/4 2/4to1/4 1/4to1/3 1/3to2/3"/> - </vehicle> - <vehicle id="3083" depart="3083.00"> - <route edges="3/3to2/3 2/3to1/3 1/3to1/2 1/2to2/2"/> - </vehicle> - <vehicle id="3084" depart="3084.00"> - <route edges="3/2to2/2 2/2to1/2 1/2to1/3 1/3to0/3"/> - </vehicle> - <vehicle id="3085" depart="3085.00"> - <route edges="0/2to0/3 0/3to0/2 0/2to1/2 1/2to2/2"/> - </vehicle> - <vehicle id="3086" depart="3086.00"> - <route edges="3/4to2/4 2/4to2/3 2/3to2/2 2/2to2/1 2/1to3/1 3/1to4/1 4/1to3/1"/> - </vehicle> - <vehicle id="3087" depart="3087.00"> - <route edges="3/2to3/1 3/1to2/1 2/1to1/1 1/1to2/1"/> - </vehicle> - <vehicle id="3088" depart="3088.00"> - <route edges="3/4to4/4 4/4to3/4 3/4to3/3 3/3to2/3"/> - </vehicle> - <vehicle id="3089" depart="3089.00"> - <route edges="1/2to0/2 0/2to0/3 0/3to1/3 1/3to1/4 1/4to2/4 2/4to3/4 3/4to3/3"/> - </vehicle> - <vehicle id="3090" depart="3090.00"> - <route edges="3/4to2/4 2/4to2/3 2/3to2/2 2/2to2/1 2/1to2/0 2/0to3/0"/> - </vehicle> - <vehicle id="3091" depart="3091.00"> - <route edges="0/3to1/3 1/3to1/2 1/2to1/1 1/1to2/1 2/1to2/0"/> - </vehicle> - <vehicle id="3092" depart="3092.00"> - <route edges="2/3to2/4 2/4to3/4 3/4to4/4"/> - </vehicle> - <vehicle id="3093" depart="3093.00"> - <route edges="0/0to1/0 1/0to1/1 1/1to2/1 2/1to2/2"/> - </vehicle> - <vehicle id="3094" depart="3094.00"> - <route edges="3/3to4/3 4/3to3/3 3/3to2/3 2/3to1/3 1/3to0/3 0/3to0/2"/> - </vehicle> - <vehicle id="3095" depart="3095.00"> - <route edges="1/1to1/0 1/0to2/0 2/0to3/0"/> - </vehicle> - <vehicle id="3096" depart="3096.00"> - <route edges="4/3to4/4 4/4to3/4 3/4to2/4 2/4to1/4 1/4to1/3 1/3to0/3 0/3to0/2 0/2to0/1 0/1to0/0 0/0to1/0"/> - </vehicle> - <vehicle id="3097" depart="3097.00"> - <route edges="1/2to1/3 1/3to1/2 1/2to1/1 1/1to1/0 1/0to2/0 2/0to3/0 3/0to4/0 4/0to4/1"/> - </vehicle> - <vehicle id="3098" depart="3098.00"> - <route edges="2/3to1/3 1/3to0/3 0/3to0/2 0/2to0/1 0/1to0/0 0/0to1/0"/> - </vehicle> - <vehicle id="3099" depart="3099.00"> - <route edges="0/3to0/4 0/4to0/3 0/3to0/2 0/2to0/1 0/1to0/0 0/0to0/1"/> - </vehicle> - <vehicle id="3100" depart="3100.00"> - <route edges="2/3to2/2 2/2to2/1 2/1to1/1"/> - </vehicle> - <vehicle id="3101" depart="3101.00"> - <route edges="0/2to1/2 1/2to1/3 1/3to2/3 2/3to3/3 3/3to4/3 4/3to4/4"/> - </vehicle> - <vehicle id="3102" depart="3102.00"> - <route edges="4/0to4/1 4/1to3/1 3/1to2/1 2/1to2/0"/> - </vehicle> - <vehicle id="3103" depart="3103.00"> - <route edges="3/4to2/4 2/4to2/3 2/3to3/3 3/3to4/3 4/3to4/2"/> - </vehicle> - <vehicle id="3104" depart="3104.00"> - <route edges="0/0to0/1 0/1to0/2 0/2to1/2 1/2to1/3"/> - </vehicle> - <vehicle id="3105" depart="3105.00"> - <route edges="0/4to0/3 0/3to0/2 0/2to0/1 0/1to1/1 1/1to2/1 2/1to3/1 3/1to2/1"/> - </vehicle> - <vehicle id="3106" depart="3106.00"> - <route edges="3/0to4/0 4/0to4/1 4/1to4/2 4/2to4/3 4/3to4/2"/> - </vehicle> - <vehicle id="3107" depart="3107.00"> - <route edges="1/4to2/4 2/4to1/4 1/4to1/3 1/3to1/2 1/2to1/1"/> - </vehicle> - <vehicle id="3108" depart="3108.00"> - <route edges="3/3to3/2 3/2to2/2 2/2to1/2 1/2to1/1 1/1to1/0 1/0to0/0"/> - </vehicle> - <vehicle id="3109" depart="3109.00"> - <route edges="1/3to1/4 1/4to1/3 1/3to2/3 2/3to3/3 3/3to3/2"/> - </vehicle> - <vehicle id="3110" depart="3110.00"> - <route edges="3/3to3/4 3/4to2/4 2/4to1/4 1/4to1/3 1/3to1/2 1/2to1/1 1/1to1/2"/> - </vehicle> - <vehicle id="3111" depart="3111.00"> - <route edges="3/3to2/3 2/3to2/2 2/2to2/1 2/1to3/1 3/1to2/1"/> - </vehicle> - <vehicle id="3112" depart="3112.00"> - <route edges="4/3to4/2 4/2to3/2 3/2to2/2 2/2to1/2 1/2to1/1 1/1to1/2"/> - </vehicle> - <vehicle id="3113" depart="3113.00"> - <route edges="4/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to3/2"/> - </vehicle> - <vehicle id="3114" depart="3114.00"> - <route edges="4/4to3/4 3/4to2/4 2/4to1/4"/> - </vehicle> - <vehicle id="3115" depart="3115.00"> - <route edges="2/4to3/4 3/4to2/4 2/4to2/3 2/3to2/2 2/2to2/1 2/1to1/1"/> - </vehicle> - <vehicle id="3116" depart="3116.00"> - <route edges="3/2to3/3 3/3to2/3 2/3to3/3"/> - </vehicle> - <vehicle id="3117" depart="3117.00"> - <route edges="2/2to2/3 2/3to2/2 2/2to2/1 2/1to2/2"/> - </vehicle> - <vehicle id="3118" depart="3118.00"> - <route edges="1/1to0/1 0/1to0/2 0/2to0/3 0/3to1/3 1/3to1/2"/> - </vehicle> - <vehicle id="3119" depart="3119.00"> - <route edges="2/2to3/2 3/2to2/2 2/2to1/2 1/2to1/1 1/1to1/0"/> - </vehicle> - <vehicle id="3120" depart="3120.00"> - <route edges="1/2to0/2 0/2to0/3 0/3to1/3 1/3to1/4 1/4to2/4 2/4to3/4"/> - </vehicle> - <vehicle id="3121" depart="3121.00"> - <route edges="2/1to3/1 3/1to4/1"/> - </vehicle> - <vehicle id="3122" depart="3122.00"> - <route edges="0/2to0/3 0/3to0/2 0/2to1/2 1/2to0/2"/> - </vehicle> - <vehicle id="3123" depart="3123.00"> - <route edges="1/4to2/4 2/4to1/4 1/4to1/3 1/3to0/3 0/3to0/2 0/2to0/1 0/1to0/2"/> - </vehicle> - <vehicle id="3124" depart="3124.00"> - <route edges="4/4to3/4 3/4to2/4 2/4to2/3 2/3to2/2 2/2to2/1 2/1to2/0 2/0to2/1"/> - </vehicle> - <vehicle id="3125" depart="3125.00"> - <route edges="4/0to3/0 3/0to2/0 2/0to1/0 1/0to1/1 1/1to0/1 0/1to0/2 0/2to0/3"/> - </vehicle> - <vehicle id="3126" depart="3126.00"> - <route edges="1/1to1/2 1/2to1/1 1/1to2/1 2/1to3/1 3/1to4/1 4/1to4/2"/> - </vehicle> - <vehicle id="3127" depart="3127.00"> - <route edges="3/4to3/3"/> - </vehicle> - <vehicle id="3128" depart="3128.00"> - <route edges="1/2to1/3 1/3to1/4 1/4to2/4 2/4to3/4 3/4to4/4"/> - </vehicle> - <vehicle id="3129" depart="3129.00"> - <route edges="4/3to3/3 3/3to2/3 2/3to1/3"/> - </vehicle> - <vehicle id="3130" depart="3130.00"> - <route edges="2/2to2/1 2/1to2/0 2/0to3/0 3/0to2/0"/> - </vehicle> - <vehicle id="3131" depart="3131.00"> - <route edges="3/0to4/0 4/0to3/0 3/0to2/0 2/0to1/0 1/0to1/1 1/1to0/1"/> - </vehicle> - <vehicle id="3132" depart="3132.00"> - <route edges="4/1to4/2 4/2to3/2 3/2to2/2 2/2to2/3 2/3to2/2"/> - </vehicle> - <vehicle id="3133" depart="3133.00"> - <route edges="4/2to3/2 3/2to3/3 3/3to3/4 3/4to3/3"/> - </vehicle> - <vehicle id="3134" depart="3134.00"> - <route edges="2/2to2/3 2/3to2/2 2/2to3/2 3/2to4/2 4/2to3/2"/> - </vehicle> - <vehicle id="3135" depart="3135.00"> - <route edges="3/4to4/4 4/4to4/3"/> - </vehicle> - <vehicle id="3136" depart="3136.00"> - <route edges="0/2to0/3 0/3to0/2 0/2to0/1 0/1to1/1 1/1to2/1 2/1to3/1"/> - </vehicle> - <vehicle id="3137" depart="3137.00"> - <route edges="4/2to4/3 4/3to3/3 3/3to3/2 3/2to4/2"/> - </vehicle> - <vehicle id="3138" depart="3138.00"> - <route edges="0/3to1/3 1/3to0/3 0/3to0/2 0/2to0/1 0/1to0/0 0/0to1/0"/> - </vehicle> - <vehicle id="3139" depart="3139.00"> - <route edges="2/3to2/4 2/4to2/3 2/3to2/2 2/2to3/2"/> - </vehicle> - <vehicle id="3140" depart="3140.00"> - <route edges="3/3to3/4 3/4to3/3 3/3to3/2 3/2to4/2"/> - </vehicle> - <vehicle id="3141" depart="3141.00"> - <route edges="1/3to0/3 0/3to1/3 1/3to2/3 2/3to3/3 3/3to2/3"/> - </vehicle> - <vehicle id="3142" depart="3142.00"> - <route edges="1/0to0/0 0/0to0/1 0/1to0/2 0/2to0/3 0/3to1/3 1/3to2/3 2/3to1/3"/> - </vehicle> - <vehicle id="3143" depart="3143.00"> - <route edges="2/2to2/3 2/3to1/3 1/3to1/2 1/2to1/1 1/1to1/2"/> - </vehicle> - <vehicle id="3144" depart="3144.00"> - <route edges="1/1to2/1 2/1to1/1 1/1to0/1 0/1to0/2 0/2to0/3 0/3to0/4 0/4to1/4"/> - </vehicle> - <vehicle id="3145" depart="3145.00"> - <route edges="4/2to4/1 4/1to3/1 3/1to2/1 2/1to1/1 1/1to1/0 1/0to1/1"/> - </vehicle> - <vehicle id="3146" depart="3146.00"> - <route edges="3/1to2/1 2/1to2/2 2/2to2/3 2/3to2/4"/> - </vehicle> - <vehicle id="3147" depart="3147.00"> - <route edges="1/2to1/1 1/1to2/1 2/1to3/1"/> - </vehicle> - <vehicle id="3148" depart="3148.00"> - <route edges="0/3to0/2"/> - </vehicle> - <vehicle id="3149" depart="3149.00"> - <route edges="1/3to0/3 0/3to0/2 0/2to0/1 0/1to1/1 1/1to2/1 2/1to3/1 3/1to4/1 4/1to3/1"/> - </vehicle> - <vehicle id="3150" depart="3150.00"> - <route edges="3/1to3/2 3/2to2/2 2/2to2/3 2/3to1/3"/> - </vehicle> - <vehicle id="3151" depart="3151.00"> - <route edges="2/3to1/3 1/3to2/3 2/3to3/3 3/3to4/3"/> - </vehicle> - <vehicle id="3152" depart="3152.00"> - <route edges="3/3to4/3 4/3to3/3 3/3to2/3 2/3to1/3 1/3to2/3"/> - </vehicle> - <vehicle id="3153" depart="3153.00"> - <route edges="4/1to4/2 4/2to3/2 3/2to3/1 3/1to4/1"/> - </vehicle> - <vehicle id="3154" depart="3154.00"> - <route edges="3/4to4/4 4/4to3/4 3/4to2/4 2/4to1/4 1/4to1/3 1/3to1/2"/> - </vehicle> - <vehicle id="3155" depart="3155.00"> - <route edges="4/0to4/1 4/1to3/1 3/1to2/1 2/1to1/1 1/1to1/2 1/2to1/3 1/3to2/3"/> - </vehicle> - <vehicle id="3156" depart="3156.00"> - <route edges="3/2to4/2 4/2to3/2 3/2to2/2 2/2to1/2 1/2to1/1 1/1to1/0 1/0to2/0"/> - </vehicle> - <vehicle id="3157" depart="3157.00"> - <route edges="3/2to3/3 3/3to2/3 2/3to2/2 2/2to3/2"/> - </vehicle> - <vehicle id="3158" depart="3158.00"> - <route edges="1/1to1/2 1/2to0/2 0/2to0/3 0/3to1/3"/> - </vehicle> - <vehicle id="3159" depart="3159.00"> - <route edges="2/2to3/2 3/2to3/1 3/1to3/0 3/0to4/0 4/0to3/0"/> - </vehicle> - <vehicle id="3160" depart="3160.00"> - <route edges="0/2to1/2 1/2to1/3"/> - </vehicle> - <vehicle id="3161" depart="3161.00"> - <route edges="2/3to2/4 2/4to2/3 2/3to2/2 2/2to2/1 2/1to2/0 2/0to3/0 3/0to4/0 4/0to4/1"/> - </vehicle> - <vehicle id="3162" depart="3162.00"> - <route edges="0/3to0/4 0/4to0/3 0/3to0/2 0/2to1/2"/> - </vehicle> - <vehicle id="3163" depart="3163.00"> - <route edges="3/1to3/2 3/2to2/2 2/2to2/1 2/1to2/0 2/0to1/0"/> - </vehicle> - <vehicle id="3164" depart="3164.00"> - <route edges="2/3to2/4 2/4to2/3 2/3to3/3 3/3to3/2"/> - </vehicle> - <vehicle id="3165" depart="3165.00"> - <route edges="4/3to4/2 4/2to3/2 3/2to2/2"/> - </vehicle> - <vehicle id="3166" depart="3166.00"> - <route edges="0/2to1/2 1/2to0/2 0/2to0/3"/> - </vehicle> - <vehicle id="3167" depart="3167.00"> - <route edges="3/4to2/4 2/4to2/3 2/3to2/2 2/2to2/1 2/1to2/0 2/0to3/0 3/0to2/0"/> - </vehicle> - <vehicle id="3168" depart="3168.00"> - <route edges="2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to2/4 2/4to3/4 3/4to4/4 4/4to4/3"/> - </vehicle> - <vehicle id="3169" depart="3169.00"> - <route edges="2/2to2/3 2/3to2/2 2/2to3/2"/> - </vehicle> - <vehicle id="3170" depart="3170.00"> - <route edges="1/1to2/1 2/1to1/1 1/1to1/2 1/2to0/2"/> - </vehicle> - <vehicle id="3171" depart="3171.00"> - <route edges="0/2to0/1 0/1to0/2 0/2to0/3 0/3to1/3 1/3to1/4 1/4to2/4 2/4to1/4"/> - </vehicle> - <vehicle id="3172" depart="3172.00"> - <route edges="4/3to4/2 4/2to3/2 3/2to2/2 2/2to2/3 2/3to2/4"/> - </vehicle> - <vehicle id="3173" depart="3173.00"> - <route edges="1/3to1/4 1/4to1/3 1/3to1/2 1/2to1/1 1/1to1/0 1/0to1/1"/> - </vehicle> - <vehicle id="3174" depart="3174.00"> - <route edges="3/1to2/1 2/1to1/1 1/1to0/1 0/1to0/2 0/2to0/3 0/3to1/3"/> - </vehicle> - <vehicle id="3175" depart="3175.00"> - <route edges="4/3to4/2 4/2to3/2 3/2to2/2 2/2to1/2 1/2to1/1 1/1to2/1"/> - </vehicle> - <vehicle id="3176" depart="3176.00"> - <route edges="2/4to2/3 2/3to1/3"/> - </vehicle> - <vehicle id="3177" depart="3177.00"> - <route edges="0/3to0/4 0/4to0/3 0/3to1/3 1/3to2/3 2/3to3/3 3/3to2/3"/> - </vehicle> - <vehicle id="3178" depart="3178.00"> - <route edges="2/0to1/0 1/0to1/1 1/1to1/2"/> - </vehicle> - <vehicle id="3179" depart="3179.00"> - <route edges="3/3to2/3 2/3to2/2 2/2to2/1 2/1to3/1 3/1to2/1"/> - </vehicle> - <vehicle id="3180" depart="3180.00"> - <route edges="3/2to3/1 3/1to3/2 3/2to3/3 3/3to3/2"/> - </vehicle> - <vehicle id="3181" depart="3181.00"> - <route edges="3/2to4/2 4/2to3/2 3/2to2/2 2/2to1/2 1/2to1/3 1/3to1/4"/> - </vehicle> - <vehicle id="3182" depart="3182.00"> - <route edges="0/0to1/0 1/0to1/1 1/1to2/1 2/1to2/2"/> - </vehicle> - <vehicle id="3183" depart="3183.00"> - <route edges="0/4to1/4 1/4to1/3 1/3to2/3"/> - </vehicle> - <vehicle id="3184" depart="3184.00"> - <route edges="2/2to3/2 3/2to2/2 2/2to1/2 1/2to1/1 1/1to1/0"/> - </vehicle> - <vehicle id="3185" depart="3185.00"> - <route edges="2/2to3/2 3/2to2/2 2/2to1/2 1/2to0/2 0/2to0/1 0/1to0/0"/> - </vehicle> - <vehicle id="3186" depart="3186.00"> - <route edges="2/4to3/4 3/4to3/3"/> - </vehicle> - <vehicle id="3187" depart="3187.00"> - <route edges="1/4to0/4 0/4to1/4 1/4to2/4 2/4to3/4 3/4to4/4"/> - </vehicle> - <vehicle id="3188" depart="3188.00"> - <route edges="0/0to1/0 1/0to1/1 1/1to2/1 2/1to2/2"/> - </vehicle> - <vehicle id="3189" depart="3189.00"> - <route edges="4/3to4/2 4/2to3/2 3/2to3/1 3/1to3/2"/> - </vehicle> - <vehicle id="3190" depart="3190.00"> - <route edges="1/0to1/1 1/1to1/0 1/0to2/0 2/0to3/0 3/0to4/0 4/0to4/1"/> - </vehicle> - <vehicle id="3191" depart="3191.00"> - <route edges="3/0to2/0 2/0to2/1 2/1to3/1 3/1to4/1"/> - </vehicle> - <vehicle id="3192" depart="3192.00"> - <route edges="1/0to0/0 0/0to0/1 0/1to1/1 1/1to2/1 2/1to3/1"/> - </vehicle> - <vehicle id="3193" depart="3193.00"> - <route edges="2/4to3/4 3/4to2/4 2/4to2/3 2/3to2/2 2/2to1/2"/> - </vehicle> - <vehicle id="3194" depart="3194.00"> - <route edges="2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to2/4 2/4to3/4 3/4to4/4 4/4to3/4"/> - </vehicle> - <vehicle id="3195" depart="3195.00"> - <route edges="1/4to0/4 0/4to0/3 0/3to0/2 0/2to0/1 0/1to1/1 1/1to2/1 2/1to3/1 3/1to4/1"/> - </vehicle> - <vehicle id="3196" depart="3196.00"> - <route edges="1/0to0/0 0/0to0/1 0/1to0/2 0/2to0/3 0/3to1/3 1/3to1/4 1/4to0/4"/> - </vehicle> - <vehicle id="3197" depart="3197.00"> - <route edges="3/0to4/0 4/0to3/0 3/0to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to1/4"/> - </vehicle> - <vehicle id="3198" depart="3198.00"> - <route edges="2/2to2/1 2/1to2/2 2/2to3/2 3/2to3/3"/> - </vehicle> - <vehicle id="3199" depart="3199.00"> - <route edges="4/1to3/1 3/1to3/2 3/2to3/3"/> - </vehicle> - <vehicle id="3200" depart="3200.00"> - <route edges="0/1to0/0 0/0to0/1 0/1to0/2 0/2to1/2 1/2to1/3"/> - </vehicle> - <vehicle id="3201" depart="3201.00"> - <route edges="2/2to3/2 3/2to2/2 2/2to2/1 2/1to1/1"/> - </vehicle> - <vehicle id="3202" depart="3202.00"> - <route edges="3/4to3/3 3/3to2/3 2/3to2/2"/> - </vehicle> - <vehicle id="3203" depart="3203.00"> - <route edges="1/2to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to2/4 2/4to3/4 3/4to4/4 4/4to3/4"/> - </vehicle> - <vehicle id="3204" depart="3204.00"> - <route edges="2/2to2/1 2/1to3/1 3/1to4/1 4/1to4/0"/> - </vehicle> - <vehicle id="3205" depart="3205.00"> - <route edges="1/0to0/0 0/0to0/1 0/1to0/2 0/2to0/3 0/3to1/3 1/3to1/4 1/4to2/4 2/4to1/4"/> - </vehicle> - <vehicle id="3206" depart="3206.00"> - <route edges="1/3to2/3 2/3to1/3 1/3to0/3 0/3to0/4 0/4to0/3"/> - </vehicle> - <vehicle id="3207" depart="3207.00"> - <route edges="1/3to2/3 2/3to2/2 2/2to2/1 2/1to3/1 3/1to3/2"/> - </vehicle> - <vehicle id="3208" depart="3208.00"> - <route edges="4/4to3/4 3/4to2/4 2/4to1/4 1/4to2/4"/> - </vehicle> - <vehicle id="3209" depart="3209.00"> - <route edges="3/3to3/2 3/2to2/2 2/2to3/2"/> - </vehicle> - <vehicle id="3210" depart="3210.00"> - <route edges="4/4to3/4 3/4to2/4 2/4to2/3 2/3to3/3"/> - </vehicle> - <vehicle id="3211" depart="3211.00"> - <route edges="4/3to3/3 3/3to3/2 3/2to3/1"/> - </vehicle> - <vehicle id="3212" depart="3212.00"> - <route edges="0/4to1/4 1/4to1/3 1/3to1/2 1/2to1/1 1/1to1/0 1/0to2/0 2/0to3/0 3/0to2/0"/> - </vehicle> - <vehicle id="3213" depart="3213.00"> - <route edges="1/4to0/4 0/4to1/4"/> - </vehicle> - <vehicle id="3214" depart="3214.00"> - <route edges="2/3to2/4 2/4to1/4 1/4to1/3 1/3to1/2 1/2to0/2"/> - </vehicle> - <vehicle id="3215" depart="3215.00"> - <route edges="1/1to2/1 2/1to1/1 1/1to0/1"/> - </vehicle> - <vehicle id="3216" depart="3216.00"> - <route edges="0/1to0/2 0/2to0/1 0/1to1/1 1/1to1/0 1/0to2/0 2/0to3/0 3/0to3/1"/> - </vehicle> - <vehicle id="3217" depart="3217.00"> - <route edges="0/2to1/2 1/2to1/3 1/3to2/3 2/3to3/3 3/3to4/3"/> - </vehicle> - <vehicle id="3218" depart="3218.00"> - <route edges="3/3to2/3 2/3to1/3 1/3to0/3 0/3to0/2 0/2to1/2"/> - </vehicle> - <vehicle id="3219" depart="3219.00"> - <route edges="1/4to2/4 2/4to2/3 2/3to2/2 2/2to3/2 3/2to4/2 4/2to4/3"/> - </vehicle> - <vehicle id="3220" depart="3220.00"> - <route edges="4/3to3/3 3/3to2/3 2/3to1/3 1/3to1/2 1/2to2/2"/> - </vehicle> - <vehicle id="3221" depart="3221.00"> - <route edges="2/1to3/1 3/1to2/1 2/1to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to2/4"/> - </vehicle> - <vehicle id="3222" depart="3222.00"> - <route edges="2/2to2/3 2/3to2/2 2/2to2/1 2/1to2/0 2/0to3/0 3/0to4/0"/> - </vehicle> - <vehicle id="3223" depart="3223.00"> - <route edges="0/1to0/2 0/2to0/1 0/1to1/1 1/1to2/1 2/1to3/1 3/1to3/2"/> - </vehicle> - <vehicle id="3224" depart="3224.00"> - <route edges="1/1to0/1 0/1to0/2 0/2to1/2"/> - </vehicle> - <vehicle id="3225" depart="3225.00"> - <route edges="1/4to2/4 2/4to1/4 1/4to1/3 1/3to0/3 0/3to0/4"/> - </vehicle> - <vehicle id="3226" depart="3226.00"> - <route edges="0/2to0/3 0/3to0/2 0/2to0/1 0/1to1/1 1/1to2/1"/> - </vehicle> - <vehicle id="3227" depart="3227.00"> - <route edges="4/1to4/0 4/0to3/0 3/0to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to0/4"/> - </vehicle> - <vehicle id="3228" depart="3228.00"> - <route edges="3/0to3/1 3/1to2/1 2/1to1/1 1/1to1/0 1/0to0/0"/> - </vehicle> - <vehicle id="3229" depart="3229.00"> - <route edges="0/2to0/1 0/1to0/2 0/2to1/2 1/2to0/2"/> - </vehicle> - <vehicle id="3230" depart="3230.00"> - <route edges="4/1to4/2 4/2to3/2 3/2to2/2 2/2to1/2 1/2to2/2"/> - </vehicle> - <vehicle id="3231" depart="3231.00"> - <route edges="0/0to1/0 1/0to1/1 1/1to2/1 2/1to3/1 3/1to4/1 4/1to3/1"/> - </vehicle> - <vehicle id="3232" depart="3232.00"> - <route edges="3/4to2/4 2/4to2/3 2/3to2/2 2/2to3/2 3/2to4/2"/> - </vehicle> - <vehicle id="3233" depart="3233.00"> - <route edges="2/3to2/2 2/2to1/2 1/2to1/1 1/1to1/2"/> - </vehicle> - <vehicle id="3234" depart="3234.00"> - <route edges="1/3to2/3 2/3to2/2 2/2to3/2 3/2to4/2 4/2to4/1"/> - </vehicle> - <vehicle id="3235" depart="3235.00"> - <route edges="1/2to0/2 0/2to0/3 0/3to1/3 1/3to2/3 2/3to3/3"/> - </vehicle> - <vehicle id="3236" depart="3236.00"> - <route edges="4/3to4/2 4/2to3/2 3/2to3/3 3/3to3/4"/> - </vehicle> - <vehicle id="3237" depart="3237.00"> - <route edges="4/3to4/2 4/2to3/2 3/2to2/2 2/2to1/2 1/2to1/1 1/1to2/1"/> - </vehicle> - <vehicle id="3238" depart="3238.00"> - <route edges="1/0to0/0 0/0to0/1 0/1to0/2 0/2to0/3 0/3to1/3 1/3to1/2"/> - </vehicle> - <vehicle id="3239" depart="3239.00"> - <route edges="2/0to3/0 3/0to2/0 2/0to2/1 2/1to3/1"/> - </vehicle> - <vehicle id="3240" depart="3240.00"> - <route edges="1/4to2/4 2/4to1/4 1/4to1/3 1/3to1/2 1/2to1/1 1/1to1/0 1/0to0/0"/> - </vehicle> - <vehicle id="3241" depart="3241.00"> - <route edges="0/4to0/3 0/3to1/3 1/3to1/4 1/4to1/3"/> - </vehicle> - <vehicle id="3242" depart="3242.00"> - <route edges="2/2to2/1 2/1to1/1 1/1to0/1 0/1to0/2 0/2to0/3 0/3to0/2"/> - </vehicle> - <vehicle id="3243" depart="3243.00"> - <route edges="3/4to2/4 2/4to1/4 1/4to1/3 1/3to1/2 1/2to1/1 1/1to1/0 1/0to2/0"/> - </vehicle> - <vehicle id="3244" depart="3244.00"> - <route edges="2/4to3/4 3/4to2/4 2/4to2/3 2/3to2/2 2/2to2/1 2/1to2/0 2/0to3/0"/> - </vehicle> - <vehicle id="3245" depart="3245.00"> - <route edges="2/3to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to4/0"/> - </vehicle> - <vehicle id="3246" depart="3246.00"> - <route edges="3/4to3/3 3/3to2/3 2/3to1/3 1/3to1/2 1/2to1/1 1/1to1/2"/> - </vehicle> - <vehicle id="3247" depart="3247.00"> - <route edges="2/4to2/3 2/3to1/3 1/3to0/3 0/3to0/4"/> - </vehicle> - <vehicle id="3248" depart="3248.00"> - <route edges="3/2to3/1 3/1to2/1 2/1to2/2 2/2to2/3 2/3to1/3"/> - </vehicle> - <vehicle id="3249" depart="3249.00"> - <route edges="4/3to4/4 4/4to3/4 3/4to2/4 2/4to1/4 1/4to1/3 1/3to0/3 0/3to0/2 0/2to0/1"/> - </vehicle> - <vehicle id="3250" depart="3250.00"> - <route edges="0/2to0/1"/> - </vehicle> - <vehicle id="3251" depart="3251.00"> - <route edges="2/3to2/4 2/4to1/4 1/4to1/3 1/3to0/3 0/3to0/2 0/2to0/1 0/1to1/1"/> - </vehicle> - <vehicle id="3252" depart="3252.00"> - <route edges="2/1to3/1 3/1to2/1 2/1to2/2 2/2to2/3 2/3to2/4"/> - </vehicle> - <vehicle id="3253" depart="3253.00"> - <route edges="4/2to4/3 4/3to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to3/1"/> - </vehicle> - <vehicle id="3254" depart="3254.00"> - <route edges="2/3to2/4 2/4to2/3 2/3to2/2 2/2to2/1 2/1to3/1 3/1to4/1 4/1to4/0"/> - </vehicle> - <vehicle id="3255" depart="3255.00"> - <route edges="4/0to3/0 3/0to2/0 2/0to1/0 1/0to1/1 1/1to0/1 0/1to0/2 0/2to0/1"/> - </vehicle> - <vehicle id="3256" depart="3256.00"> - <route edges="4/0to4/1 4/1to3/1 3/1to2/1 2/1to2/2 2/2to1/2"/> - </vehicle> - <vehicle id="3257" depart="3257.00"> - <route edges="3/1to4/1 4/1to3/1 3/1to2/1 2/1to2/2 2/2to1/2"/> - </vehicle> - <vehicle id="3258" depart="3258.00"> - <route edges="4/3to3/3 3/3to4/3 4/3to4/4"/> - </vehicle> - <vehicle id="3259" depart="3259.00"> - <route edges="3/1to2/1 2/1to3/1 3/1to4/1 4/1to4/2"/> - </vehicle> - <vehicle id="3260" depart="3260.00"> - <route edges="1/0to0/0 0/0to0/1 0/1to1/1 1/1to2/1 2/1to3/1 3/1to4/1 4/1to4/2"/> - </vehicle> - <vehicle id="3261" depart="3261.00"> - <route edges="3/3to3/4 3/4to2/4 2/4to1/4 1/4to1/3 1/3to0/3 0/3to0/4"/> - </vehicle> - <vehicle id="3262" depart="3262.00"> - <route edges="3/3to3/4 3/4to2/4 2/4to2/3 2/3to2/4"/> - </vehicle> - <vehicle id="3263" depart="3263.00"> - <route edges="4/0to4/1 4/1to3/1 3/1to2/1 2/1to1/1 1/1to1/2 1/2to1/3 1/3to1/2"/> - </vehicle> - <vehicle id="3264" depart="3264.00"> - <route edges="4/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to3/0"/> - </vehicle> - <vehicle id="3265" depart="3265.00"> - <route edges="0/2to1/2 1/2to1/3 1/3to2/3 2/3to3/3 3/3to3/2"/> - </vehicle> - <vehicle id="3266" depart="3266.00"> - <route edges="1/1to2/1 2/1to2/2 2/2to3/2 3/2to4/2 4/2to4/1"/> - </vehicle> - <vehicle id="3267" depart="3267.00"> - <route edges="1/4to1/3 1/3to0/3 0/3to0/2 0/2to0/1"/> - </vehicle> - <vehicle id="3268" depart="3268.00"> - <route edges="2/1to2/2 2/2to2/3 2/3to3/3 3/3to2/3"/> - </vehicle> - <vehicle id="3269" depart="3269.00"> - <route edges="0/2to0/1 0/1to0/2 0/2to1/2 1/2to0/2"/> - </vehicle> - <vehicle id="3270" depart="3270.00"> - <route edges="1/2to0/2"/> - </vehicle> - <vehicle id="3271" depart="3271.00"> - <route edges="2/3to3/3 3/3to3/2 3/2to4/2 4/2to3/2"/> - </vehicle> - <vehicle id="3272" depart="3272.00"> - <route edges="4/4to3/4 3/4to2/4 2/4to1/4 1/4to0/4 0/4to1/4"/> - </vehicle> - <vehicle id="3273" depart="3273.00"> - <route edges="2/3to2/2 2/2to2/3 2/3to2/4 2/4to2/3"/> - </vehicle> - <vehicle id="3274" depart="3274.00"> - <route edges="3/0to3/1 3/1to2/1 2/1to2/2 2/2to2/3 2/3to2/4 2/4to3/4"/> - </vehicle> - <vehicle id="3275" depart="3275.00"> - <route edges="2/1to3/1 3/1to2/1 2/1to1/1 1/1to1/2"/> - </vehicle> - <vehicle id="3276" depart="3276.00"> - <route edges="3/2to2/2 2/2to2/1 2/1to1/1"/> - </vehicle> - <vehicle id="3277" depart="3277.00"> - <route edges="3/1to4/1 4/1to3/1 3/1to2/1 2/1to1/1 1/1to0/1 0/1to0/2 0/2to0/1"/> - </vehicle> - <vehicle id="3278" depart="3278.00"> - <route edges="3/4to2/4 2/4to2/3 2/3to2/2 2/2to2/1 2/1to3/1 3/1to4/1 4/1to4/0"/> - </vehicle> - <vehicle id="3279" depart="3279.00"> - <route edges="3/2to3/1 3/1to2/1 2/1to1/1"/> - </vehicle> - <vehicle id="3280" depart="3280.00"> - <route edges="1/4to0/4 0/4to0/3 0/3to0/2 0/2to1/2 1/2to2/2 2/2to3/2 3/2to3/1"/> - </vehicle> - <vehicle id="3281" depart="3281.00"> - <route edges="3/4to4/4 4/4to3/4 3/4to3/3 3/3to4/3"/> - </vehicle> - <vehicle id="3282" depart="3282.00"> - <route edges="3/4to4/4 4/4to3/4 3/4to3/3 3/3to3/2 3/2to2/2"/> - </vehicle> - <vehicle id="3283" depart="3283.00"> - <route edges="1/3to0/3 0/3to0/2 0/2to1/2 1/2to2/2 2/2to3/2 3/2to2/2"/> - </vehicle> - <vehicle id="3284" depart="3284.00"> - <route edges="4/4to4/3 4/3to3/3 3/3to2/3 2/3to2/2"/> - </vehicle> - <vehicle id="3285" depart="3285.00"> - <route edges="3/4to4/4 4/4to3/4 3/4to2/4 2/4to1/4 1/4to1/3 1/3to1/2 1/2to0/2"/> - </vehicle> - <vehicle id="3286" depart="3286.00"> - <route edges="0/0to1/0 1/0to1/1 1/1to2/1 2/1to3/1 3/1to3/2"/> - </vehicle> - <vehicle id="3287" depart="3287.00"> - <route edges="2/2to1/2 1/2to1/1 1/1to2/1 2/1to2/2"/> - </vehicle> - <vehicle id="3288" depart="3288.00"> - <route edges="0/2to0/1 0/1to0/2 0/2to1/2 1/2to1/3"/> - </vehicle> - <vehicle id="3289" depart="3289.00"> - <route edges="3/1to2/1 2/1to2/2 2/2to2/3 2/3to2/4 2/4to3/4"/> - </vehicle> - <vehicle id="3290" depart="3290.00"> - <route edges="0/2to0/3 0/3to0/2 0/2to0/1"/> - </vehicle> - <vehicle id="3291" depart="3291.00"> - <route edges="4/1to3/1 3/1to2/1 2/1to2/2 2/2to2/3 2/3to2/4 2/4to2/3"/> - </vehicle> - <vehicle id="3292" depart="3292.00"> - <route edges="0/2to1/2 1/2to1/3 1/3to1/4 1/4to2/4 2/4to3/4 3/4to4/4 4/4to3/4"/> - </vehicle> - <vehicle id="3293" depart="3293.00"> - <route edges="2/2to2/3 2/3to3/3 3/3to3/4"/> - </vehicle> - <vehicle id="3294" depart="3294.00"> - <route edges="3/0to3/1 3/1to3/0 3/0to2/0"/> - </vehicle> - <vehicle id="3295" depart="3295.00"> - <route edges="1/1to2/1 2/1to2/0 2/0to3/0 3/0to4/0 4/0to4/1"/> - </vehicle> - <vehicle id="3296" depart="3296.00"> - <route edges="4/0to3/0 3/0to2/0 2/0to2/1 2/1to2/2"/> - </vehicle> - <vehicle id="3297" depart="3297.00"> - <route edges="2/1to2/2 2/2to1/2 1/2to0/2 0/2to0/1 0/1to1/1"/> - </vehicle> - <vehicle id="3298" depart="3298.00"> - <route edges="4/3to4/4 4/4to4/3"/> - </vehicle> - <vehicle id="3299" depart="3299.00"> - <route edges="4/2to4/1 4/1to4/2 4/2to4/3"/> - </vehicle> - <vehicle id="3300" depart="3300.00"> - <route edges="2/1to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to2/4 2/4to3/4 3/4to2/4"/> - </vehicle> - <vehicle id="3301" depart="3301.00"> - <route edges="3/2to3/1 3/1to2/1 2/1to1/1 1/1to1/2 1/2to0/2"/> - </vehicle> - <vehicle id="3302" depart="3302.00"> - <route edges="3/1to4/1 4/1to3/1 3/1to3/2 3/2to3/3 3/3to3/4"/> - </vehicle> - <vehicle id="3303" depart="3303.00"> - <route edges="0/2to0/3 0/3to0/2 0/2to0/1 0/1to0/2"/> - </vehicle> - <vehicle id="3304" depart="3304.00"> - <route edges="1/0to1/1 1/1to0/1"/> - </vehicle> - <vehicle id="3305" depart="3305.00"> - <route edges="2/2to3/2 3/2to2/2 2/2to1/2 1/2to1/1 1/1to1/0"/> - </vehicle> - <vehicle id="3306" depart="3306.00"> - <route edges="3/4to2/4 2/4to2/3 2/3to3/3 3/3to2/3"/> - </vehicle> - <vehicle id="3307" depart="3307.00"> - <route edges="3/2to4/2 4/2to3/2 3/2to2/2 2/2to1/2 1/2to1/3 1/3to1/4 1/4to2/4"/> - </vehicle> - <vehicle id="3308" depart="3308.00"> - <route edges="3/2to4/2 4/2to3/2 3/2to2/2 2/2to2/1 2/1to2/0 2/0to2/1"/> - </vehicle> - <vehicle id="3309" depart="3309.00"> - <route edges="2/3to1/3 1/3to1/4 1/4to1/3"/> - </vehicle> - <vehicle id="3310" depart="3310.00"> - <route edges="2/2to3/2 3/2to3/3 3/3to4/3 4/3to3/3"/> - </vehicle> - <vehicle id="3311" depart="3311.00"> - <route edges="3/1to4/1 4/1to3/1 3/1to3/0 3/0to4/0"/> - </vehicle> - <vehicle id="3312" depart="3312.00"> - <route edges="0/4to0/3 0/3to0/2 0/2to0/1 0/1to1/1 1/1to2/1 2/1to2/2"/> - </vehicle> - <vehicle id="3313" depart="3313.00"> - <route edges="1/1to1/0 1/0to1/1 1/1to0/1 0/1to0/2"/> - </vehicle> - <vehicle id="3314" depart="3314.00"> - <route edges="0/2to1/2 1/2to1/3 1/3to2/3 2/3to3/3 3/3to3/4"/> - </vehicle> - <vehicle id="3315" depart="3315.00"> - <route edges="0/2to0/3 0/3to1/3 1/3to2/3 2/3to3/3 3/3to2/3"/> - </vehicle> - <vehicle id="3316" depart="3316.00"> - <route edges="1/3to2/3 2/3to2/4"/> - </vehicle> - <vehicle id="3317" depart="3317.00"> - <route edges="4/1to4/2 4/2to3/2 3/2to2/2 2/2to2/1 2/1to3/1"/> - </vehicle> - <vehicle id="3318" depart="3318.00"> - <route edges="1/4to1/3 1/3to1/2 1/2to1/1 1/1to1/0 1/0to2/0 2/0to1/0"/> - </vehicle> - <vehicle id="3319" depart="3319.00"> - <route edges="0/0to0/1 0/1to0/2 0/2to0/3 0/3to1/3 1/3to1/4 1/4to2/4 2/4to2/3"/> - </vehicle> - <vehicle id="3320" depart="3320.00"> - <route edges="4/4to4/3 4/3to4/2 4/2to4/1"/> - </vehicle> - <vehicle id="3321" depart="3321.00"> - <route edges="3/3to4/3 4/3to3/3 3/3to2/3 2/3to3/3"/> - </vehicle> - <vehicle id="3322" depart="3322.00"> - <route edges="2/1to1/1 1/1to0/1 0/1to0/0 0/0to0/1"/> - </vehicle> - <vehicle id="3323" depart="3323.00"> - <route edges="4/3to4/4 4/4to3/4 3/4to2/4 2/4to2/3 2/3to2/2 2/2to2/1 2/1to2/0 2/0to3/0"/> - </vehicle> - <vehicle id="3324" depart="3324.00"> - <route edges="0/3to0/4 0/4to0/3 0/3to0/2 0/2to0/1 0/1to1/1"/> - </vehicle> - <vehicle id="3325" depart="3325.00"> - <route edges="3/3to3/4 3/4to3/3 3/3to4/3"/> - </vehicle> - <vehicle id="3326" depart="3326.00"> - <route edges="4/3to3/3 3/3to2/3 2/3to1/3 1/3to0/3 0/3to0/2 0/2to0/1 0/1to0/2"/> - </vehicle> - <vehicle id="3327" depart="3327.00"> - <route edges="1/1to1/0 1/0to1/1 1/1to0/1 0/1to0/0"/> - </vehicle> - <vehicle id="3328" depart="3328.00"> - <route edges="3/1to3/2 3/2to2/2 2/2to1/2"/> - </vehicle> - <vehicle id="3329" depart="3329.00"> - <route edges="2/2to2/3 2/3to2/2 2/2to2/1"/> - </vehicle> - <vehicle id="3330" depart="3330.00"> - <route edges="2/4to3/4 3/4to3/3 3/3to4/3"/> - </vehicle> - <vehicle id="3331" depart="3331.00"> - <route edges="4/2to4/3 4/3to3/3 3/3to2/3 2/3to2/4 2/4to2/3"/> - </vehicle> - <vehicle id="3332" depart="3332.00"> - <route edges="2/4to3/4 3/4to2/4 2/4to1/4 1/4to1/3 1/3to1/2 1/2to1/1 1/1to1/0 1/0to2/0"/> - </vehicle> - <vehicle id="3333" depart="3333.00"> - <route edges="1/0to2/0 2/0to1/0 1/0to1/1 1/1to2/1"/> - </vehicle> - <vehicle id="3334" depart="3334.00"> - <route edges="0/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to2/3 2/3to3/3 3/3to4/3"/> - </vehicle> - <vehicle id="3335" depart="3335.00"> - <route edges="0/2to1/2 1/2to1/3 1/3to1/4 1/4to2/4 2/4to3/4 3/4to2/4"/> - </vehicle> - <vehicle id="3336" depart="3336.00"> - <route edges="3/3to2/3 2/3to2/2"/> - </vehicle> - <vehicle id="3337" depart="3337.00"> - <route edges="2/1to3/1 3/1to2/1 2/1to2/2 2/2to2/3 2/3to1/3"/> - </vehicle> - <vehicle id="3338" depart="3338.00"> - <route edges="3/2to4/2 4/2to3/2 3/2to2/2 2/2to1/2"/> - </vehicle> - <vehicle id="3339" depart="3339.00"> - <route edges="3/0to4/0 4/0to3/0 3/0to2/0 2/0to2/1 2/1to2/2 2/2to2/3"/> - </vehicle> - <vehicle id="3340" depart="3340.00"> - <route edges="1/4to1/3 1/3to2/3 2/3to3/3 3/3to4/3 4/3to4/4"/> - </vehicle> - <vehicle id="3341" depart="3341.00"> - <route edges="0/2to0/1 0/1to0/2 0/2to0/3 0/3to1/3 1/3to2/3 2/3to1/3"/> - </vehicle> - <vehicle id="3342" depart="3342.00"> - <route edges="1/3to2/3 2/3to2/2 2/2to3/2 3/2to3/3"/> - </vehicle> - <vehicle id="3343" depart="3343.00"> - <route edges="2/3to3/3 3/3to3/2 3/2to4/2 4/2to4/3"/> - </vehicle> - <vehicle id="3344" depart="3344.00"> - <route edges="1/3to1/4 1/4to1/3 1/3to0/3 0/3to1/3"/> - </vehicle> - <vehicle id="3345" depart="3345.00"> - <route edges="0/3to0/4 0/4to0/3 0/3to1/3 1/3to2/3 2/3to3/3 3/3to4/3 4/3to3/3"/> - </vehicle> - <vehicle id="3346" depart="3346.00"> - <route edges="1/3to2/3 2/3to2/2 2/2to2/1 2/1to2/0 2/0to3/0 3/0to4/0 4/0to3/0"/> - </vehicle> - <vehicle id="3347" depart="3347.00"> - <route edges="1/0to2/0 2/0to2/1 2/1to2/2 2/2to2/3 2/3to2/2"/> - </vehicle> - <vehicle id="3348" depart="3348.00"> - <route edges="2/4to3/4 3/4to2/4 2/4to1/4 1/4to1/3 1/3to0/3 0/3to0/2 0/2to0/1 0/1to0/0 0/0to0/1"/> - </vehicle> - <vehicle id="3349" depart="3349.00"> - <route edges="0/1to1/1"/> - </vehicle> - <vehicle id="3350" depart="3350.00"> - <route edges="1/1to0/1 0/1to0/2 0/2to1/2 1/2to2/2 2/2to3/2 3/2to2/2"/> - </vehicle> - <vehicle id="3351" depart="3351.00"> - <route edges="3/0to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to2/3"/> - </vehicle> - <vehicle id="3352" depart="3352.00"> - <route edges="1/1to1/0 1/0to1/1 1/1to2/1 2/1to3/1 3/1to3/0"/> - </vehicle> - <vehicle id="3353" depart="3353.00"> - <route edges="4/3to4/4 4/4to3/4 3/4to2/4 2/4to1/4 1/4to1/3 1/3to0/3 0/3to0/2 0/2to1/2"/> - </vehicle> - <vehicle id="3354" depart="3354.00"> - <route edges="3/2to3/3 3/3to2/3 2/3to1/3 1/3to1/2 1/2to1/1 1/1to1/0 1/0to2/0"/> - </vehicle> - <vehicle id="3355" depart="3355.00"> - <route edges="2/0to3/0 3/0to4/0 4/0to4/1"/> - </vehicle> - <vehicle id="3356" depart="3356.00"> - <route edges="2/2to1/2 1/2to2/2 2/2to3/2 3/2to3/3"/> - </vehicle> - <vehicle id="3357" depart="3357.00"> - <route edges="0/3to0/4 0/4to1/4 1/4to2/4 2/4to3/4 3/4to4/4 4/4to3/4"/> - </vehicle> - <vehicle id="3358" depart="3358.00"> - <route edges="3/4to2/4 2/4to3/4 3/4to4/4"/> - </vehicle> - <vehicle id="3359" depart="3359.00"> - <route edges="3/4to4/4 4/4to4/3 4/3to4/2 4/2to3/2"/> - </vehicle> - <vehicle id="3360" depart="3360.00"> - <route edges="3/4to4/4 4/4to3/4 3/4to2/4 2/4to1/4 1/4to1/3 1/3to1/2 1/2to1/1 1/1to1/0 1/0to0/0"/> - </vehicle> - <vehicle id="3361" depart="3361.00"> - <route edges="0/2to0/3 0/3to0/2 0/2to0/1 0/1to1/1 1/1to1/0 1/0to2/0 2/0to3/0 3/0to4/0 4/0to4/1"/> - </vehicle> - <vehicle id="3362" depart="3362.00"> - <route edges="4/1to3/1 3/1to3/0 3/0to4/0 4/0to4/1"/> - </vehicle> - <vehicle id="3363" depart="3363.00"> - <route edges="1/4to1/3 1/3to0/3 0/3to0/2 0/2to0/3"/> - </vehicle> - <vehicle id="3364" depart="3364.00"> - <route edges="4/0to4/1 4/1to3/1 3/1to2/1 2/1to1/1 1/1to0/1 0/1to0/2 0/2to0/1"/> - </vehicle> - <vehicle id="3365" depart="3365.00"> - <route edges="1/4to1/3 1/3to1/2 1/2to1/1 1/1to1/2"/> - </vehicle> - <vehicle id="3366" depart="3366.00"> - <route edges="2/3to1/3 1/3to1/4 1/4to2/4 2/4to3/4 3/4to3/3"/> - </vehicle> - <vehicle id="3367" depart="3367.00"> - <route edges="0/1to1/1 1/1to1/2 1/2to1/3 1/3to2/3"/> - </vehicle> - <vehicle id="3368" depart="3368.00"> - <route edges="2/3to1/3 1/3to1/2 1/2to2/2 2/2to3/2 3/2to4/2 4/2to3/2"/> - </vehicle> - <vehicle id="3369" depart="3369.00"> - <route edges="4/2to4/1 4/1to3/1 3/1to3/2 3/2to3/3 3/3to3/4 3/4to4/4"/> - </vehicle> - <vehicle id="3370" depart="3370.00"> - <route edges="1/2to0/2 0/2to0/3 0/3to1/3 1/3to1/4 1/4to2/4 2/4to2/3"/> - </vehicle> - <vehicle id="3371" depart="3371.00"> - <route edges="4/1to4/2 4/2to3/2 3/2to3/1 3/1to3/0"/> - </vehicle> - <vehicle id="3372" depart="3372.00"> - <route edges="4/3to4/2 4/2to3/2 3/2to4/2"/> - </vehicle> - <vehicle id="3373" depart="3373.00"> - <route edges="0/3to1/3 1/3to1/2 1/2to2/2 2/2to3/2 3/2to4/2 4/2to3/2"/> - </vehicle> - <vehicle id="3374" depart="3374.00"> - <route edges="4/4to3/4 3/4to4/4"/> - </vehicle> - <vehicle id="3375" depart="3375.00"> - <route edges="2/4to1/4 1/4to1/3 1/3to0/3 0/3to0/2 0/2to1/2"/> - </vehicle> - <vehicle id="3376" depart="3376.00"> - <route edges="1/1to2/1 2/1to2/0 2/0to3/0 3/0to4/0"/> - </vehicle> - <vehicle id="3377" depart="3377.00"> - <route edges="4/4to4/3 4/3to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to2/0"/> - </vehicle> - <vehicle id="3378" depart="3378.00"> - <route edges="2/0to2/1 2/1to1/1"/> - </vehicle> - <vehicle id="3379" depart="3379.00"> - <route edges="2/1to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to0/3"/> - </vehicle> - <vehicle id="3380" depart="3380.00"> - <route edges="1/2to2/2 2/2to2/1 2/1to3/1"/> - </vehicle> - <vehicle id="3381" depart="3381.00"> - <route edges="3/1to3/2 3/2to2/2 2/2to1/2 1/2to1/3 1/3to2/3"/> - </vehicle> - <vehicle id="3382" depart="3382.00"> - <route edges="1/4to2/4 2/4to2/3 2/3to2/2 2/2to3/2 3/2to4/2 4/2to4/3"/> - </vehicle> - <vehicle id="3383" depart="3383.00"> - <route edges="4/1to3/1 3/1to3/0 3/0to2/0"/> - </vehicle> - <vehicle id="3384" depart="3384.00"> - <route edges="1/3to2/3 2/3to3/3 3/3to4/3 4/3to4/4"/> - </vehicle> - <vehicle id="3385" depart="3385.00"> - <route edges="4/2to3/2 3/2to2/2 2/2to1/2 1/2to0/2 0/2to0/1 0/1to0/0"/> - </vehicle> - <vehicle id="3386" depart="3386.00"> - <route edges="3/1to2/1 2/1to2/2 2/2to2/3 2/3to3/3 3/3to4/3 4/3to3/3"/> - </vehicle> - <vehicle id="3387" depart="3387.00"> - <route edges="0/0to1/0 1/0to1/1 1/1to0/1 0/1to0/2 0/2to0/3 0/3to0/4"/> - </vehicle> - <vehicle id="3388" depart="3388.00"> - <route edges="4/4to4/3 4/3to3/3 3/3to2/3 2/3to2/2 2/2to2/1 2/1to3/1"/> - </vehicle> - <vehicle id="3389" depart="3389.00"> - <route edges="2/1to3/1 3/1to2/1 2/1to1/1 1/1to0/1 0/1to0/0"/> - </vehicle> - <vehicle id="3390" depart="3390.00"> - <route edges="3/1to2/1 2/1to2/2 2/2to2/3 2/3to3/3 3/3to4/3 4/3to3/3"/> - </vehicle> - <vehicle id="3391" depart="3391.00"> - <route edges="0/1to0/0 0/0to0/1 0/1to1/1 1/1to1/2"/> - </vehicle> - <vehicle id="3392" depart="3392.00"> - <route edges="0/3to0/2 0/2to0/3 0/3to1/3 1/3to2/3 2/3to3/3 3/3to3/4"/> - </vehicle> - <vehicle id="3393" depart="3393.00"> - <route edges="0/4to0/3 0/3to1/3 1/3to1/4 1/4to2/4 2/4to3/4 3/4to4/4"/> - </vehicle> - <vehicle id="3394" depart="3394.00"> - <route edges="0/4to0/3 0/3to0/2 0/2to1/2 1/2to2/2 2/2to3/2"/> - </vehicle> - <vehicle id="3395" depart="3395.00"> - <route edges="0/1to1/1 1/1to1/2 1/2to1/1"/> - </vehicle> - <vehicle id="3396" depart="3396.00"> - <route edges="1/4to2/4 2/4to1/4 1/4to1/3 1/3to1/2 1/2to1/3"/> - </vehicle> - <vehicle id="3397" depart="3397.00"> - <route edges="0/3to1/3 1/3to1/4 1/4to2/4 2/4to3/4 3/4to2/4"/> - </vehicle> - <vehicle id="3398" depart="3398.00"> - <route edges="3/1to4/1 4/1to3/1 3/1to3/2 3/2to3/1"/> - </vehicle> - <vehicle id="3399" depart="3399.00"> - <route edges="3/4to4/4 4/4to3/4 3/4to2/4 2/4to1/4 1/4to2/4"/> - </vehicle> - <vehicle id="3400" depart="3400.00"> - <route edges="3/3to3/4 3/4to2/4 2/4to1/4 1/4to1/3 1/3to0/3 0/3to1/3"/> - </vehicle> - <vehicle id="3401" depart="3401.00"> - <route edges="2/0to3/0 3/0to2/0 2/0to2/1 2/1to2/2 2/2to2/3 2/3to1/3"/> - </vehicle> - <vehicle id="3402" depart="3402.00"> - <route edges="0/0to1/0 1/0to1/1 1/1to2/1 2/1to3/1"/> - </vehicle> - <vehicle id="3403" depart="3403.00"> - <route edges="3/2to4/2 4/2to3/2 3/2to3/1 3/1to3/0 3/0to4/0"/> - </vehicle> - <vehicle id="3404" depart="3404.00"> - <route edges="3/3to2/3 2/3to3/3 3/3to4/3"/> - </vehicle> - <vehicle id="3405" depart="3405.00"> - <route edges="4/1to3/1 3/1to2/1 2/1to1/1 1/1to0/1 0/1to0/0 0/0to0/1"/> - </vehicle> - <vehicle id="3406" depart="3406.00"> - <route edges="1/1to1/0 1/0to1/1 1/1to1/2 1/2to2/2 2/2to3/2 3/2to2/2"/> - </vehicle> - <vehicle id="3407" depart="3407.00"> - <route edges="1/2to1/3 1/3to2/3 2/3to3/3 3/3to4/3 4/3to3/3"/> - </vehicle> - <vehicle id="3408" depart="3408.00"> - <route edges="3/3to3/4 3/4to2/4 2/4to1/4 1/4to1/3 1/3to1/2"/> - </vehicle> - <vehicle id="3409" depart="3409.00"> - <route edges="0/4to0/3 0/3to0/2 0/2to0/1 0/1to1/1 1/1to1/0 1/0to2/0 2/0to3/0 3/0to3/1"/> - </vehicle> - <vehicle id="3410" depart="3410.00"> - <route edges="1/2to0/2 0/2to0/3 0/3to1/3 1/3to2/3 2/3to3/3 3/3to4/3 4/3to3/3"/> - </vehicle> - <vehicle id="3411" depart="3411.00"> - <route edges="0/1to1/1 1/1to1/2 1/2to1/3 1/3to2/3 2/3to3/3 3/3to4/3 4/3to4/2"/> - </vehicle> - <vehicle id="3412" depart="3412.00"> - <route edges="0/0to0/1 0/1to1/1 1/1to1/0 1/0to2/0 2/0to3/0 3/0to4/0"/> - </vehicle> - <vehicle id="3413" depart="3413.00"> - <route edges="2/4to3/4 3/4to2/4 2/4to1/4"/> - </vehicle> - <vehicle id="3414" depart="3414.00"> - <route edges="0/3to0/4 0/4to0/3 0/3to0/2 0/2to0/1 0/1to1/1 1/1to1/0 1/0to2/0 2/0to2/1"/> - </vehicle> - <vehicle id="3415" depart="3415.00"> - <route edges="0/4to0/3 0/3to0/2 0/2to1/2 1/2to2/2"/> - </vehicle> - <vehicle id="3416" depart="3416.00"> - <route edges="4/2to3/2 3/2to2/2 2/2to1/2 1/2to0/2 0/2to1/2"/> - </vehicle> - <vehicle id="3417" depart="3417.00"> - <route edges="2/0to1/0 1/0to1/1 1/1to0/1 0/1to0/2 0/2to0/3"/> - </vehicle> - <vehicle id="3418" depart="3418.00"> - <route edges="1/1to1/2 1/2to1/3 1/3to1/4 1/4to0/4"/> - </vehicle> - <vehicle id="3419" depart="3419.00"> - <route edges="0/2to0/1 0/1to0/2 0/2to0/3 0/3to1/3 1/3to1/4 1/4to2/4"/> - </vehicle> - <vehicle id="3420" depart="3420.00"> - <route edges="2/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to2/0"/> - </vehicle> - <vehicle id="3421" depart="3421.00"> - <route edges="2/3to1/3 1/3to1/2 1/2to2/2 2/2to3/2"/> - </vehicle> - <vehicle id="3422" depart="3422.00"> - <route edges="4/4to3/4 3/4to4/4"/> - </vehicle> - <vehicle id="3423" depart="3423.00"> - <route edges="2/3to1/3 1/3to0/3"/> - </vehicle> - <vehicle id="3424" depart="3424.00"> - <route edges="2/2to1/2 1/2to1/1 1/1to1/0 1/0to2/0 2/0to3/0 3/0to3/1"/> - </vehicle> - <vehicle id="3425" depart="3425.00"> - <route edges="1/3to2/3 2/3to1/3 1/3to1/4"/> - </vehicle> - <vehicle id="3426" depart="3426.00"> - <route edges="2/0to1/0 1/0to1/1 1/1to1/2 1/2to2/2 2/2to3/2 3/2to4/2 4/2to4/1"/> - </vehicle> - <vehicle id="3427" depart="3427.00"> - <route edges="2/0to3/0 3/0to2/0 2/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to2/3"/> - </vehicle> - <vehicle id="3428" depart="3428.00"> - <route edges="2/4to3/4 3/4to3/3 3/3to4/3 4/3to3/3"/> - </vehicle> - <vehicle id="3429" depart="3429.00"> - <route edges="1/1to2/1 2/1to2/2 2/2to2/3 2/3to3/3 3/3to3/4"/> - </vehicle> - <vehicle id="3430" depart="3430.00"> - <route edges="0/3to0/2 0/2to0/1 0/1to1/1 1/1to2/1 2/1to3/1 3/1to2/1"/> - </vehicle> - <vehicle id="3431" depart="3431.00"> - <route edges="4/0to3/0 3/0to3/1 3/1to3/2 3/2to3/3 3/3to3/4 3/4to3/3"/> - </vehicle> - <vehicle id="3432" depart="3432.00"> - <route edges="4/1to3/1 3/1to2/1 2/1to2/2 2/2to2/1"/> - </vehicle> - <vehicle id="3433" depart="3433.00"> - <route edges="3/2to4/2 4/2to3/2 3/2to2/2 2/2to2/3 2/3to2/4 2/4to2/3"/> - </vehicle> - <vehicle id="3434" depart="3434.00"> - <route edges="4/3to4/4 4/4to3/4 3/4to2/4 2/4to1/4 1/4to1/3 1/3to2/3"/> - </vehicle> - <vehicle id="3435" depart="3435.00"> - <route edges="0/1to0/2 0/2to0/3 0/3to0/4"/> - </vehicle> - <vehicle id="3436" depart="3436.00"> - <route edges="2/0to2/1 2/1to2/2 2/2to3/2 3/2to4/2 4/2to4/3"/> - </vehicle> - <vehicle id="3437" depart="3437.00"> - <route edges="3/2to2/2 2/2to2/3 2/3to2/4 2/4to3/4 3/4to4/4 4/4to3/4"/> - </vehicle> - <vehicle id="3438" depart="3438.00"> - <route edges="0/2to1/2 1/2to0/2 0/2to0/1 0/1to1/1"/> - </vehicle> - <vehicle id="3439" depart="3439.00"> - <route edges="0/3to0/4 0/4to0/3 0/3to0/2 0/2to0/1 0/1to1/1 1/1to2/1 2/1to3/1 3/1to3/2"/> - </vehicle> - <vehicle id="3440" depart="3440.00"> - <route edges="2/2to3/2 3/2to2/2 2/2to2/3 2/3to2/4"/> - </vehicle> - <vehicle id="3441" depart="3441.00"> - <route edges="2/1to2/0 2/0to2/1 2/1to2/2 2/2to3/2 3/2to4/2 4/2to4/3"/> - </vehicle> - <vehicle id="3442" depart="3442.00"> - <route edges="4/2to4/1 4/1to3/1 3/1to2/1 2/1to2/0 2/0to2/1"/> - </vehicle> - <vehicle id="3443" depart="3443.00"> - <route edges="0/3to1/3 1/3to2/3 2/3to1/3"/> - </vehicle> - <vehicle id="3444" depart="3444.00"> - <route edges="0/3to0/4 0/4to0/3 0/3to1/3 1/3to2/3 2/3to3/3 3/3to4/3"/> - </vehicle> - <vehicle id="3445" depart="3445.00"> - <route edges="1/1to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to2/3 2/3to3/3 3/3to4/3 4/3to3/3"/> - </vehicle> - <vehicle id="3446" depart="3446.00"> - <route edges="2/0to2/1 2/1to1/1 1/1to0/1 0/1to0/2 0/2to0/3 0/3to0/4"/> - </vehicle> - <vehicle id="3447" depart="3447.00"> - <route edges="1/3to0/3 0/3to1/3 1/3to1/4 1/4to2/4 2/4to3/4 3/4to3/3"/> - </vehicle> - <vehicle id="3448" depart="3448.00"> - <route edges="4/2to4/1 4/1to3/1 3/1to3/2 3/2to3/3 3/3to3/2"/> - </vehicle> - <vehicle id="3449" depart="3449.00"> - <route edges="0/3to0/4 0/4to1/4 1/4to2/4 2/4to3/4"/> - </vehicle> - <vehicle id="3450" depart="3450.00"> - <route edges="3/4to4/4 4/4to3/4 3/4to3/3 3/3to3/4"/> - </vehicle> - <vehicle id="3451" depart="3451.00"> - <route edges="4/0to4/1 4/1to3/1 3/1to2/1 2/1to2/0 2/0to1/0"/> - </vehicle> - <vehicle id="3452" depart="3452.00"> - <route edges="1/1to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to1/3"/> - </vehicle> - <vehicle id="3453" depart="3453.00"> - <route edges="0/4to0/3 0/3to0/2 0/2to1/2 1/2to2/2 2/2to3/2 3/2to4/2"/> - </vehicle> - <vehicle id="3454" depart="3454.00"> - <route edges="1/2to2/2 2/2to2/1 2/1to3/1 3/1to4/1 4/1to3/1"/> - </vehicle> - <vehicle id="3455" depart="3455.00"> - <route edges="2/4to3/4 3/4to3/3 3/3to4/3 4/3to4/4"/> - </vehicle> - <vehicle id="3456" depart="3456.00"> - <route edges="3/3to3/2 3/2to3/1 3/1to3/0 3/0to4/0 4/0to3/0"/> - </vehicle> - <vehicle id="3457" depart="3457.00"> - <route edges="1/3to1/2 1/2to0/2 0/2to0/1 0/1to0/0"/> - </vehicle> - <vehicle id="3458" depart="3458.00"> - <route edges="3/2to3/3 3/3to3/2 3/2to4/2 4/2to4/3"/> - </vehicle> - <vehicle id="3459" depart="3459.00"> - <route edges="3/4to3/3 3/3to2/3 2/3to2/4 2/4to1/4"/> - </vehicle> - <vehicle id="3460" depart="3460.00"> - <route edges="2/4to1/4 1/4to1/3 1/3to1/2 1/2to2/2 2/2to2/1"/> - </vehicle> - <vehicle id="3461" depart="3461.00"> - <route edges="4/2to4/3 4/3to3/3 3/3to2/3 2/3to2/2 2/2to2/1 2/1to2/2"/> - </vehicle> - <vehicle id="3462" depart="3462.00"> - <route edges="1/4to2/4 2/4to2/3 2/3to2/2 2/2to2/1 2/1to2/0 2/0to2/1"/> - </vehicle> - <vehicle id="3463" depart="3463.00"> - <route edges="1/0to0/0 0/0to0/1 0/1to0/2 0/2to1/2 1/2to2/2 2/2to2/3"/> - </vehicle> - <vehicle id="3464" depart="3464.00"> - <route edges="3/2to4/2 4/2to4/3 4/3to4/4 4/4to3/4"/> - </vehicle> - <vehicle id="3465" depart="3465.00"> - <route edges="3/2to3/1 3/1to2/1 2/1to1/1 1/1to1/2 1/2to1/3"/> - </vehicle> - <vehicle id="3466" depart="3466.00"> - <route edges="2/4to3/4 3/4to2/4 2/4to1/4 1/4to1/3 1/3to1/2 1/2to1/1 1/1to0/1"/> - </vehicle> - <vehicle id="3467" depart="3467.00"> - <route edges="0/1to0/0 0/0to0/1 0/1to0/2 0/2to0/3 0/3to1/3 1/3to1/4 1/4to2/4 2/4to2/3"/> - </vehicle> - <vehicle id="3468" depart="3468.00"> - <route edges="4/0to3/0 3/0to3/1 3/1to3/2 3/2to3/3 3/3to4/3"/> - </vehicle> - <vehicle id="3469" depart="3469.00"> - <route edges="3/1to3/2 3/2to2/2 2/2to1/2 1/2to0/2 0/2to0/3 0/3to0/4"/> - </vehicle> - <vehicle id="3470" depart="3470.00"> - <route edges="2/3to3/3 3/3to2/3 2/3to1/3 1/3to1/2 1/2to2/2"/> - </vehicle> - <vehicle id="3471" depart="3471.00"> - <route edges="3/3to3/4 3/4to2/4 2/4to1/4 1/4to1/3 1/3to2/3"/> - </vehicle> - <vehicle id="3472" depart="3472.00"> - <route edges="3/2to2/2 2/2to1/2 1/2to0/2 0/2to0/1 0/1to1/1"/> - </vehicle> - <vehicle id="3473" depart="3473.00"> - <route edges="2/0to1/0 1/0to1/1 1/1to1/0"/> - </vehicle> - <vehicle id="3474" depart="3474.00"> - <route edges="1/0to1/1 1/1to1/2 1/2to1/3 1/3to2/3"/> - </vehicle> - <vehicle id="3475" depart="3475.00"> - <route edges="1/3to0/3 0/3to1/3 1/3to2/3 2/3to1/3"/> - </vehicle> - <vehicle id="3476" depart="3476.00"> - <route edges="0/3to0/2 0/2to1/2 1/2to2/2 2/2to3/2 3/2to4/2 4/2to3/2"/> - </vehicle> - <vehicle id="3477" depart="3477.00"> - <route edges="2/1to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to2/4 2/4to3/4"/> - </vehicle> - <vehicle id="3478" depart="3478.00"> - <route edges="3/3to3/2 3/2to3/1 3/1to3/0 3/0to4/0"/> - </vehicle> - <vehicle id="3479" depart="3479.00"> - <route edges="0/3to1/3 1/3to1/2 1/2to2/2 2/2to3/2 3/2to3/3"/> - </vehicle> - <vehicle id="3480" depart="3480.00"> - <route edges="1/3to1/4 1/4to1/3 1/3to1/2 1/2to1/1 1/1to1/0 1/0to2/0 2/0to1/0"/> - </vehicle> - <vehicle id="3481" depart="3481.00"> - <route edges="3/0to3/1 3/1to3/0"/> - </vehicle> - <vehicle id="3482" depart="3482.00"> - <route edges="2/3to1/3 1/3to1/2 1/2to1/1 1/1to2/1 2/1to3/1 3/1to2/1"/> - </vehicle> - <vehicle id="3483" depart="3483.00"> - <route edges="0/0to0/1 0/1to0/2 0/2to1/2 1/2to2/2 2/2to3/2 3/2to2/2"/> - </vehicle> - <vehicle id="3484" depart="3484.00"> - <route edges="3/1to2/1 2/1to1/1 1/1to0/1 0/1to0/2 0/2to0/1"/> - </vehicle> - <vehicle id="3485" depart="3485.00"> - <route edges="3/0to2/0 2/0to1/0 1/0to1/1 1/1to0/1 0/1to0/0"/> - </vehicle> - <vehicle id="3486" depart="3486.00"> - <route edges="1/3to1/4 1/4to1/3 1/3to1/2 1/2to1/1 1/1to1/0 1/0to2/0 2/0to3/0"/> - </vehicle> - <vehicle id="3487" depart="3487.00"> - <route edges="0/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to2/3 2/3to3/3"/> - </vehicle> - <vehicle id="3488" depart="3488.00"> - <route edges="2/1to2/2 2/2to3/2 3/2to3/1"/> - </vehicle> - <vehicle id="3489" depart="3489.00"> - <route edges="1/2to1/1 1/1to1/2 1/2to1/3 1/3to2/3 2/3to3/3 3/3to2/3"/> - </vehicle> - <vehicle id="3490" depart="3490.00"> - <route edges="4/3to4/2 4/2to3/2 3/2to2/2 2/2to2/3 2/3to2/4"/> - </vehicle> - <vehicle id="3491" depart="3491.00"> - <route edges="0/0to0/1 0/1to0/2 0/2to1/2 1/2to2/2 2/2to3/2 3/2to4/2 4/2to4/1"/> - </vehicle> - <vehicle id="3492" depart="3492.00"> - <route edges="2/1to2/2 2/2to2/1 2/1to2/0 2/0to3/0 3/0to4/0 4/0to3/0"/> - </vehicle> - <vehicle id="3493" depart="3493.00"> - <route edges="3/0to3/1 3/1to2/1 2/1to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to2/4"/> - </vehicle> - <vehicle id="3494" depart="3494.00"> - <route edges="3/2to4/2 4/2to3/2 3/2to2/2 2/2to2/1 2/1to2/0 2/0to1/0"/> - </vehicle> - <vehicle id="3495" depart="3495.00"> - <route edges="2/2to2/1 2/1to2/2 2/2to3/2 3/2to3/1"/> - </vehicle> - <vehicle id="3496" depart="3496.00"> - <route edges="1/0to0/0 0/0to1/0 1/0to2/0 2/0to3/0 3/0to4/0"/> - </vehicle> - <vehicle id="3497" depart="3497.00"> - <route edges="2/4to2/3 2/3to1/3 1/3to0/3 0/3to0/4 0/4to0/3"/> - </vehicle> - <vehicle id="3498" depart="3498.00"> - <route edges="1/1to0/1 0/1to1/1 1/1to2/1"/> - </vehicle> - <vehicle id="3499" depart="3499.00"> - <route edges="2/4to1/4 1/4to1/3 1/3to0/3 0/3to0/2 0/2to0/1 0/1to0/0 0/0to0/1"/> - </vehicle> - <vehicle id="3500" depart="3500.00"> - <route edges="3/1to3/2 3/2to3/3 3/3to4/3 4/3to3/3"/> - </vehicle> - <vehicle id="3501" depart="3501.00"> - <route edges="1/2to0/2 0/2to0/1 0/1to1/1 1/1to2/1 2/1to3/1 3/1to3/2"/> - </vehicle> - <vehicle id="3502" depart="3502.00"> - <route edges="3/1to3/0 3/0to3/1 3/1to3/2 3/2to3/1"/> - </vehicle> - <vehicle id="3503" depart="3503.00"> - <route edges="3/4to2/4 2/4to1/4 1/4to1/3 1/3to1/2 1/2to1/1 1/1to1/2"/> - </vehicle> - <vehicle id="3504" depart="3504.00"> - <route edges="2/3to2/4 2/4to1/4 1/4to1/3 1/3to1/2 1/2to1/1"/> - </vehicle> - <vehicle id="3505" depart="3505.00"> - <route edges="3/4to2/4 2/4to1/4 1/4to1/3 1/3to0/3 0/3to0/2"/> - </vehicle> - <vehicle id="3506" depart="3506.00"> - <route edges="0/1to1/1 1/1to0/1 0/1to0/0 0/0to0/1"/> - </vehicle> - <vehicle id="3507" depart="3507.00"> - <route edges="2/3to3/3 3/3to3/2 3/2to4/2 4/2to4/1"/> - </vehicle> - <vehicle id="3508" depart="3508.00"> - <route edges="2/3to2/2 2/2to2/1 2/1to3/1 3/1to3/2"/> - </vehicle> - <vehicle id="3509" depart="3509.00"> - <route edges="4/0to4/1 4/1to3/1 3/1to3/2 3/2to3/3 3/3to3/4 3/4to4/4"/> - </vehicle> - <vehicle id="3510" depart="3510.00"> - <route edges="4/1to4/2 4/2to3/2 3/2to2/2 2/2to1/2 1/2to1/3 1/3to2/3"/> - </vehicle> - <vehicle id="3511" depart="3511.00"> - <route edges="0/1to0/0 0/0to1/0 1/0to2/0 2/0to3/0 3/0to4/0 4/0to3/0"/> - </vehicle> - <vehicle id="3512" depart="3512.00"> - <route edges="0/1to0/0 0/0to0/1 0/1to0/2 0/2to0/3 0/3to1/3"/> - </vehicle> - <vehicle id="3513" depart="3513.00"> - <route edges="4/0to4/1 4/1to3/1 3/1to4/1"/> - </vehicle> - <vehicle id="3514" depart="3514.00"> - <route edges="0/3to0/2 0/2to0/1 0/1to1/1 1/1to1/0 1/0to2/0 2/0to3/0 3/0to4/0 4/0to4/1"/> - </vehicle> - <vehicle id="3515" depart="3515.00"> - <route edges="2/2to1/2 1/2to1/3 1/3to2/3 2/3to3/3 3/3to3/4"/> - </vehicle> - <vehicle id="3516" depart="3516.00"> - <route edges="2/4to2/3 2/3to1/3 1/3to1/4 1/4to2/4"/> - </vehicle> - <vehicle id="3517" depart="3517.00"> - <route edges="2/1to1/1 1/1to1/2 1/2to1/3 1/3to2/3 2/3to3/3 3/3to4/3"/> - </vehicle> - <vehicle id="3518" depart="3518.00"> - <route edges="2/2to1/2 1/2to0/2 0/2to0/3 0/3to0/2"/> - </vehicle> - <vehicle id="3519" depart="3519.00"> - <route edges="1/3to1/4 1/4to0/4"/> - </vehicle> - <vehicle id="3520" depart="3520.00"> - <route edges="0/1to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to2/4 2/4to1/4"/> - </vehicle> - <vehicle id="3521" depart="3521.00"> - <route edges="3/3to3/2 3/2to2/2 2/2to1/2 1/2to1/1 1/1to1/0 1/0to2/0"/> - </vehicle> - <vehicle id="3522" depart="3522.00"> - <route edges="3/2to3/1 3/1to2/1 2/1to1/1 1/1to0/1 0/1to0/0 0/0to1/0"/> - </vehicle> - <vehicle id="3523" depart="3523.00"> - <route edges="4/4to4/3 4/3to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to3/1"/> - </vehicle> - <vehicle id="3524" depart="3524.00"> - <route edges="4/4to3/4 3/4to2/4 2/4to1/4 1/4to1/3 1/3to1/2 1/2to1/1"/> - </vehicle> - <vehicle id="3525" depart="3525.00"> - <route edges="2/2to2/3 2/3to2/4 2/4to2/3"/> - </vehicle> - <vehicle id="3526" depart="3526.00"> - <route edges="1/1to2/1 2/1to2/2 2/2to3/2 3/2to2/2"/> - </vehicle> - <vehicle id="3527" depart="3527.00"> - <route edges="3/4to4/4 4/4to4/3 4/3to4/2 4/2to4/3"/> - </vehicle> - <vehicle id="3528" depart="3528.00"> - <route edges="0/3to0/2 0/2to0/3 0/3to1/3 1/3to2/3"/> - </vehicle> - <vehicle id="3529" depart="3529.00"> - <route edges="1/1to1/0 1/0to1/1 1/1to1/2 1/2to2/2 2/2to3/2 3/2to2/2"/> - </vehicle> - <vehicle id="3530" depart="3530.00"> - <route edges="3/4to3/3 3/3to3/2 3/2to3/1 3/1to3/0"/> - </vehicle> - <vehicle id="3531" depart="3531.00"> - <route edges="0/4to0/3 0/3to0/2 0/2to0/1 0/1to1/1"/> - </vehicle> - <vehicle id="3532" depart="3532.00"> - <route edges="0/2to0/1 0/1to1/1 1/1to2/1"/> - </vehicle> - <vehicle id="3533" depart="3533.00"> - <route edges="1/4to1/3 1/3to1/2 1/2to2/2 2/2to3/2 3/2to4/2"/> - </vehicle> - <vehicle id="3534" depart="3534.00"> - <route edges="4/4to3/4 3/4to3/3 3/3to3/2 3/2to3/3"/> - </vehicle> - <vehicle id="3535" depart="3535.00"> - <route edges="4/3to4/4 4/4to3/4 3/4to2/4 2/4to1/4 1/4to1/3 1/3to0/3 0/3to0/2 0/2to0/1"/> - </vehicle> - <vehicle id="3536" depart="3536.00"> - <route edges="4/4to3/4 3/4to2/4 2/4to1/4 1/4to1/3 1/3to0/3 0/3to0/2 0/2to1/2"/> - </vehicle> - <vehicle id="3537" depart="3537.00"> - <route edges="1/4to0/4 0/4to0/3 0/3to1/3 1/3to0/3"/> - </vehicle> - <vehicle id="3538" depart="3538.00"> - <route edges="0/3to0/2 0/2to0/1 0/1to1/1"/> - </vehicle> - <vehicle id="3539" depart="3539.00"> - <route edges="0/3to0/4"/> - </vehicle> - <vehicle id="3540" depart="3540.00"> - <route edges="4/1to4/0 4/0to3/0 3/0to3/1 3/1to3/2 3/2to3/3"/> - </vehicle> - <vehicle id="3541" depart="3541.00"> - <route edges="1/3to0/3 0/3to0/4"/> - </vehicle> - <vehicle id="3542" depart="3542.00"> - <route edges="1/1to0/1 0/1to1/1 1/1to2/1 2/1to2/0"/> - </vehicle> - <vehicle id="3543" depart="3543.00"> - <route edges="0/0to1/0 1/0to1/1 1/1to2/1 2/1to3/1 3/1to4/1 4/1to4/2"/> - </vehicle> - <vehicle id="3544" depart="3544.00"> - <route edges="3/2to3/3 3/3to2/3 2/3to1/3 1/3to1/4 1/4to0/4"/> - </vehicle> - <vehicle id="3545" depart="3545.00"> - <route edges="0/3to0/4 0/4to0/3 0/3to0/2 0/2to1/2 1/2to2/2 2/2to3/2 3/2to4/2"/> - </vehicle> - <vehicle id="3546" depart="3546.00"> - <route edges="0/4to1/4 1/4to1/3 1/3to2/3 2/3to3/3 3/3to2/3"/> - </vehicle> - <vehicle id="3547" depart="3547.00"> - <route edges="0/0to1/0 1/0to2/0 2/0to2/1"/> - </vehicle> - <vehicle id="3548" depart="3548.00"> - <route edges="1/0to2/0 2/0to2/1 2/1to3/1"/> - </vehicle> - <vehicle id="3549" depart="3549.00"> - <route edges="1/0to1/1 1/1to1/0"/> - </vehicle> - <vehicle id="3550" depart="3550.00"> - <route edges="3/1to3/0 3/0to3/1 3/1to3/2 3/2to3/3 3/3to3/4"/> - </vehicle> - <vehicle id="3551" depart="3551.00"> - <route edges="0/1to1/1 1/1to0/1 0/1to0/2 0/2to0/3 0/3to0/2"/> - </vehicle> - <vehicle id="3552" depart="3552.00"> - <route edges="0/3to0/2 0/2to1/2 1/2to1/3"/> - </vehicle> - <vehicle id="3553" depart="3553.00"> - <route edges="3/1to2/1 2/1to1/1"/> - </vehicle> - <vehicle id="3554" depart="3554.00"> - <route edges="4/3to4/4 4/4to3/4 3/4to2/4 2/4to1/4 1/4to1/3 1/3to1/2 1/2to1/3"/> - </vehicle> - <vehicle id="3555" depart="3555.00"> - <route edges="2/3to1/3 1/3to1/4 1/4to2/4 2/4to2/3"/> - </vehicle> - <vehicle id="3556" depart="3556.00"> - <route edges="0/1to1/1 1/1to1/2 1/2to1/3 1/3to2/3"/> - </vehicle> - <vehicle id="3557" depart="3557.00"> - <route edges="4/2to4/3 4/3to3/3 3/3to2/3 2/3to1/3 1/3to1/4 1/4to0/4"/> - </vehicle> - <vehicle id="3558" depart="3558.00"> - <route edges="3/1to4/1 4/1to3/1 3/1to2/1 2/1to1/1 1/1to0/1 0/1to0/2 0/2to0/3"/> - </vehicle> - <vehicle id="3559" depart="3559.00"> - <route edges="2/2to2/1 2/1to1/1 1/1to2/1"/> - </vehicle> - <vehicle id="3560" depart="3560.00"> - <route edges="3/1to3/0 3/0to3/1 3/1to4/1 4/1to4/2"/> - </vehicle> - <vehicle id="3561" depart="3561.00"> - <route edges="1/3to1/2 1/2to1/3 1/3to2/3 2/3to3/3 3/3to4/3"/> - </vehicle> - <vehicle id="3562" depart="3562.00"> - <route edges="2/2to2/3 2/3to2/2 2/2to2/1 2/1to3/1 3/1to4/1 4/1to4/2"/> - </vehicle> - <vehicle id="3563" depart="3563.00"> - <route edges="2/3to1/3 1/3to1/2 1/2to1/1 1/1to2/1 2/1to3/1 3/1to3/2"/> - </vehicle> - <vehicle id="3564" depart="3564.00"> - <route edges="0/1to1/1 1/1to0/1 0/1to0/0 0/0to1/0"/> - </vehicle> - <vehicle id="3565" depart="3565.00"> - <route edges="3/1to2/1 2/1to3/1 3/1to4/1 4/1to4/2"/> - </vehicle> - <vehicle id="3566" depart="3566.00"> - <route edges="4/2to4/1 4/1to3/1 3/1to2/1 2/1to2/2 2/2to3/2"/> - </vehicle> - <vehicle id="3567" depart="3567.00"> - <route edges="1/1to1/2 1/2to2/2 2/2to3/2 3/2to4/2 4/2to3/2"/> - </vehicle> - <vehicle id="3568" depart="3568.00"> - <route edges="3/4to3/3 3/3to2/3 2/3to1/3 1/3to0/3 0/3to0/2 0/2to0/1 0/1to1/1"/> - </vehicle> - <vehicle id="3569" depart="3569.00"> - <route edges="3/4to3/3 3/3to4/3"/> - </vehicle> - <vehicle id="3570" depart="3570.00"> - <route edges="2/2to3/2 3/2to2/2 2/2to1/2 1/2to1/3 1/3to1/4"/> - </vehicle> - <vehicle id="3571" depart="3571.00"> - <route edges="1/2to1/3 1/3to2/3 2/3to2/4"/> - </vehicle> - <vehicle id="3572" depart="3572.00"> - <route edges="1/4to2/4 2/4to1/4 1/4to1/3 1/3to1/2 1/2to1/1 1/1to1/2"/> - </vehicle> - <vehicle id="3573" depart="3573.00"> - <route edges="3/3to4/3 4/3to3/3 3/3to2/3 2/3to2/2 2/2to2/1 2/1to2/0 2/0to1/0"/> - </vehicle> - <vehicle id="3574" depart="3574.00"> - <route edges="3/4to2/4 2/4to1/4 1/4to1/3 1/3to1/2"/> - </vehicle> - <vehicle id="3575" depart="3575.00"> - <route edges="4/1to4/2 4/2to3/2 3/2to2/2 2/2to2/1"/> - </vehicle> - <vehicle id="3576" depart="3576.00"> - <route edges="1/0to0/0 0/0to0/1 0/1to0/2 0/2to1/2"/> - </vehicle> - <vehicle id="3577" depart="3577.00"> - <route edges="1/1to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to2/4 2/4to1/4"/> - </vehicle> - <vehicle id="3578" depart="3578.00"> - <route edges="3/3to3/2 3/2to2/2 2/2to2/3 2/3to2/2"/> - </vehicle> - <vehicle id="3579" depart="3579.00"> - <route edges="1/2to1/3 1/3to0/3 0/3to0/4 0/4to0/3"/> - </vehicle> - <vehicle id="3580" depart="3580.00"> - <route edges="1/4to2/4 2/4to2/3 2/3to3/3 3/3to3/2"/> - </vehicle> - <vehicle id="3581" depart="3581.00"> - <route edges="2/3to1/3 1/3to1/2 1/2to2/2 2/2to3/2"/> - </vehicle> - <vehicle id="3582" depart="3582.00"> - <route edges="3/2to3/1 3/1to3/2 3/2to4/2 4/2to3/2"/> - </vehicle> - <vehicle id="3583" depart="3583.00"> - <route edges="1/2to0/2 0/2to0/3 0/3to1/3"/> - </vehicle> - <vehicle id="3584" depart="3584.00"> - <route edges="3/3to2/3 2/3to1/3 1/3to2/3"/> - </vehicle> - <vehicle id="3585" depart="3585.00"> - <route edges="0/0to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to2/3 2/3to2/4"/> - </vehicle> - <vehicle id="3586" depart="3586.00"> - <route edges="0/2to1/2 1/2to1/3 1/3to1/4"/> - </vehicle> - <vehicle id="3587" depart="3587.00"> - <route edges="3/4to2/4 2/4to2/3 2/3to2/2 2/2to2/1 2/1to3/1 3/1to4/1 4/1to4/0"/> - </vehicle> - <vehicle id="3588" depart="3588.00"> - <route edges="0/4to1/4 1/4to1/3 1/3to1/2 1/2to1/1 1/1to2/1 2/1to3/1 3/1to4/1 4/1to3/1"/> - </vehicle> - <vehicle id="3589" depart="3589.00"> - <route edges="3/2to3/3 3/3to4/3 4/3to3/3"/> - </vehicle> - <vehicle id="3590" depart="3590.00"> - <route edges="4/1to4/2 4/2to3/2 3/2to2/2 2/2to1/2 1/2to0/2 0/2to0/3 0/3to0/4 0/4to0/3"/> - </vehicle> - <vehicle id="3591" depart="3591.00"> - <route edges="4/4to4/3 4/3to3/3 3/3to2/3 2/3to1/3 1/3to0/3 0/3to0/2 0/2to0/1 0/1to1/1"/> - </vehicle> - <vehicle id="3592" depart="3592.00"> - <route edges="3/3to3/4 3/4to4/4"/> - </vehicle> - <vehicle id="3593" depart="3593.00"> - <route edges="3/1to4/1 4/1to3/1 3/1to2/1 2/1to1/1 1/1to0/1 0/1to0/2"/> - </vehicle> - <vehicle id="3594" depart="3594.00"> - <route edges="1/4to2/4 2/4to1/4 1/4to1/3 1/3to1/2 1/2to1/3"/> - </vehicle> - <vehicle id="3595" depart="3595.00"> - <route edges="2/4to2/3 2/3to1/3 1/3to1/2 1/2to1/1 1/1to1/0"/> - </vehicle> - <vehicle id="3596" depart="3596.00"> - <route edges="3/2to3/3 3/3to3/2 3/2to3/1 3/1to3/0 3/0to4/0 4/0to4/1"/> - </vehicle> - <vehicle id="3597" depart="3597.00"> - <route edges="3/2to4/2 4/2to3/2 3/2to2/2 2/2to1/2 1/2to0/2 0/2to0/1 0/1to0/2"/> - </vehicle> - <vehicle id="3598" depart="3598.00"> - <route edges="1/3to1/4 1/4to1/3 1/3to1/2 1/2to1/1 1/1to1/0 1/0to0/0"/> - </vehicle> - <vehicle id="3599" depart="3599.00"> - <route edges="3/3to3/4 3/4to2/4 2/4to1/4 1/4to1/3 1/3to0/3"/> - </vehicle> --> -</routes> + <!-- + <vehicle id="car7" depart="7.00"> + <route edges="1/1to1/0 1/0to1/1 1/1to1/2 1/2to1/3 1/3to1/4 1/4to2/4 2/4to2/3"/> + </vehicle> + <vehicle id="car8" depart="8.00"> + <route edges="3/4to2/4 2/4to1/4 1/4to0/4 0/4to0/3 0/3to0/2 0/2to0/1 0/1to0/0 0/0to0/1"/> + </vehicle> + <vehicle id="car9" depart="9.00"> + <route edges="3/4to2/4 2/4to3/4 3/4to3/3 3/3to3/2 3/2to3/1 3/1to4/1"/> + </vehicle> + <vehicle id="car10" depart="10.00"> + <route edges="4/3to4/2 4/2to3/2 3/2to2/2 2/2to1/2 1/2to1/3 1/3to1/4"/> + </vehicle> + + <trip id="14" depart="14.00" from="4/0to3/0" to="2/4to3/4"/> + <trip id="15" depart="15.00" from="3/4to2/4" to="3/2to3/3"/> + <trip id="16" depart="16.00" from="2/3to1/3" to="4/3to4/4"/> + <trip id="17" depart="17.00" from="1/4to2/4" to="2/3to2/4"/> + <trip id="18" depart="18.00" from="3/4to4/4" to="3/0to2/0"/> + <trip id="19" depart="19.00" from="4/0to4/1" to="2/4to1/4"/> + <trip id="20" depart="20.00" from="3/2to2/2" to="0/1to0/2"/> + <trip id="21" depart="21.00" from="1/1to1/2" to="1/2to2/2"/> + <trip id="22" depart="22.00" from="0/2to0/3" to="1/1to1/2"/> + <trip id="23" depart="23.00" from="0/3to0/2" to="1/2to1/3"/> + <trip id="24" depart="24.00" from="3/0to3/1" to="1/4to1/3"/> + <trip id="25" depart="25.00" from="1/4to1/3" to="1/1to0/1"/> + <trip id="26" depart="26.00" from="1/2to1/1" to="4/2to4/3"/> + <trip id="27" depart="27.00" from="3/0to4/0" to="2/4to3/4"/> + <trip id="28" depart="28.00" from="1/0to0/0" to="3/2to3/3"/> + <trip id="29" depart="29.00" from="1/0to0/0" to="1/4to2/4"/> + <trip id="30" depart="30.00" from="4/4to4/3" to="3/0to4/0"/> + <trip id="31" depart="31.00" from="2/3to2/4" to="3/1to3/2"/> + <trip id="32" depart="32.00" from="4/0to3/0" to="3/3to3/4"/> + <trip id="33" depart="33.00" from="1/1to1/2" to="0/1to0/0"/> + <trip id="34" depart="34.00" from="1/3to1/2" to="1/2to1/1"/> + <trip id="35" depart="35.00" from="1/1to0/1" to="4/3to3/3"/> + <trip id="36" depart="36.00" from="4/1to4/0" to="1/3to1/2"/> + <trip id="37" depart="37.00" from="3/1to2/1" to="2/0to1/0"/> + <trip id="38" depart="38.00" from="4/2to4/1" to="2/1to2/2"/> + <trip id="39" depart="39.00" from="1/2to1/1" to="1/1to2/1"/> + <trip id="40" depart="40.00" from="2/3to2/4" to="1/2to1/1"/> + <trip id="41" depart="41.00" from="2/4to1/4" to="4/1to4/2"/> + <trip id="42" depart="42.00" from="2/0to1/0" to="1/1to1/0"/> + <trip id="43" depart="43.00" from="4/4to4/3" to="2/2to2/3"/> + <trip id="44" depart="44.00" from="0/2to1/2" to="0/1to0/2"/> + <trip id="45" depart="45.00" from="0/3to0/2" to="3/0to3/1"/> + <trip id="46" depart="46.00" from="3/3to4/3" to="2/0to3/0"/> + <trip id="47" depart="47.00" from="0/2to0/1" to="1/4to2/4"/> + <trip id="48" depart="48.00" from="4/4to4/3" to="2/3to1/3"/> + <trip id="49" depart="49.00" from="4/3to4/4" to="4/0to4/1"/> + <trip id="50" depart="50.00" from="0/0to0/1" to="3/2to3/1"/> + <trip id="51" depart="51.00" from="3/1to3/2" to="2/3to1/3"/> + <trip id="52" depart="52.00" from="1/2to1/1" to="3/0to4/0"/> + <trip id="53" depart="53.00" from="0/3to0/2" to="2/1to1/1"/> + <trip id="54" depart="54.00" from="2/1to2/2" to="4/3to4/2"/> + <trip id="55" depart="55.00" from="4/1to4/0" to="1/2to1/1"/> + <trip id="56" depart="56.00" from="2/2to2/3" to="1/0to1/1"/> + <trip id="57" depart="57.00" from="4/2to4/1" to="4/1to3/1"/> + <trip id="58" depart="58.00" from="1/2to2/2" to="3/0to4/0"/> + <trip id="59" depart="59.00" from="2/4to3/4" to="0/4to1/4"/> + <trip id="60" depart="60.00" from="3/3to3/2" to="2/3to2/2"/> + <trip id="61" depart="61.00" from="3/3to3/4" to="2/3to1/3"/> + <trip id="62" depart="62.00" from="0/0to0/1" to="1/3to1/2"/> + <trip id="63" depart="63.00" from="0/0to1/0" to="4/2to4/3"/> + <trip id="64" depart="64.00" from="4/1to4/0" to="3/4to4/4"/> + <trip id="65" depart="65.00" from="1/3to0/3" to="0/1to1/1"/> + <trip id="66" depart="66.00" from="4/1to4/0" to="4/3to3/3"/> + <trip id="67" depart="67.00" from="0/2to0/3" to="2/2to1/2"/> + <trip id="68" depart="68.00" from="0/2to0/1" to="3/3to2/3"/> + <trip id="69" depart="69.00" from="3/3to3/2" to="0/3to1/3"/> + <trip id="70" depart="70.00" from="2/2to1/2" to="2/3to2/2"/> + <trip id="71" depart="71.00" from="1/2to1/1" to="4/1to3/1"/> + <trip id="72" depart="72.00" from="2/0to3/0" to="1/1to0/1"/> + <trip id="73" depart="73.00" from="2/3to2/2" to="3/2to3/3"/> + <trip id="74" depart="74.00" from="1/1to0/1" to="1/3to0/3"/> + <trip id="75" depart="75.00" from="4/4to4/3" to="3/0to4/0"/> + <trip id="76" depart="76.00" from="2/1to2/0" to="2/2to3/2"/> + <trip id="77" depart="77.00" from="0/3to0/4" to="1/1to1/0"/> + <trip id="78" depart="78.00" from="1/3to2/3" to="2/4to2/3"/> + <trip id="79" depart="79.00" from="1/1to1/2" to="1/1to1/0"/> + <trip id="80" depart="80.00" from="0/2to0/1" to="3/0to3/1"/> + <trip id="81" depart="81.00" from="1/1to1/2" to="4/2to3/2"/> + <trip id="82" depart="82.00" from="4/0to4/1" to="0/2to0/1"/> + <trip id="83" depart="83.00" from="1/1to2/1" to="3/1to3/0"/> + <trip id="84" depart="84.00" from="1/1to1/0" to="0/3to1/3"/> + <trip id="85" depart="85.00" from="4/2to4/3" to="2/3to3/3"/> + <trip id="86" depart="86.00" from="2/1to3/1" to="3/3to3/4"/> + <trip id="87" depart="87.00" from="3/4to2/4" to="1/0to2/0"/> + <trip id="88" depart="88.00" from="0/2to1/2" to="2/1to1/1"/> + <trip id="89" depart="89.00" from="2/0to3/0" to="2/1to3/1"/> + <trip id="90" depart="90.00" from="3/2to3/3" to="3/1to3/0"/> +--> + </routes> diff --git a/services.xml b/services.xml index 29f1cfbce858a06e1929b547abd886708d45a2ae..6916507c63497f2d3262d6813a669529b080bff5 100644 --- a/services.xml +++ b/services.xml @@ -9,4 +9,9 @@ <listener port="2001" /> <filters><name pattern="car\d"/></filters> </service> + + <service type="EvilCarService"> + <listener port="2001" /> + <filters><name pattern="evilcar\d"/></filters> + </service> </services> diff --git a/trips.trips.xml b/trips.trips.xml new file mode 100644 index 0000000000000000000000000000000000000000..6ec2d6a5f39d52ff65e66e0e2f3db5b5237df090 --- /dev/null +++ b/trips.trips.xml @@ -0,0 +1,3606 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- generated on 2022-04-07 14:14:42.018120 by $Id$ v1_8_0+0000-4820708f + options: -n net.net.xml <doubleminus>min-distance 150 <doubleminus>prefix=car -r r.rou.xml +--> +<routes xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="http://sumo.dlr.de/xsd/routes_file.xsd"> + <trip id="car0" depart="0.00" from="3/0to4/0" to="0/1to0/0"/> + <trip id="car1" depart="1.00" from="1/2to1/3" to="1/1to1/0"/> + <trip id="car2" depart="2.00" from="4/1to4/2" to="0/2to0/3"/> + <trip id="car3" depart="3.00" from="2/0to3/0" to="0/1to0/0"/> + <trip id="car4" depart="4.00" from="1/1to1/0" to="2/2to2/3"/> + <trip id="car5" depart="5.00" from="0/1to0/0" to="1/0to2/0"/> + <trip id="car6" depart="6.00" from="3/0to4/0" to="2/3to2/2"/> + <trip id="car7" depart="7.00" from="1/1to1/0" to="2/4to2/3"/> + <trip id="car8" depart="8.00" from="3/4to2/4" to="0/0to0/1"/> + <trip id="car9" depart="9.00" from="3/4to2/4" to="3/1to4/1"/> + <trip id="car10" depart="10.00" from="4/3to4/2" to="1/3to1/4"/> + <trip id="car11" depart="11.00" from="4/0to3/0" to="2/4to3/4"/> + <trip id="car12" depart="12.00" from="2/3to1/3" to="4/3to4/4"/> + <trip id="car13" depart="13.00" from="3/4to4/4" to="3/0to2/0"/> + <trip id="car14" depart="14.00" from="4/0to4/1" to="2/4to1/4"/> + <trip id="car15" depart="15.00" from="3/2to2/2" to="0/1to0/2"/> + <trip id="car16" depart="16.00" from="3/0to3/1" to="1/4to1/3"/> + <trip id="car17" depart="17.00" from="1/4to1/3" to="1/1to0/1"/> + <trip id="car18" depart="18.00" from="1/2to1/1" to="4/2to4/3"/> + <trip id="car19" depart="19.00" from="3/0to4/0" to="2/4to3/4"/> + <trip id="car20" depart="20.00" from="1/0to0/0" to="3/2to3/3"/> + <trip id="car21" depart="21.00" from="1/0to0/0" to="1/4to2/4"/> + <trip id="car22" depart="22.00" from="4/4to4/3" to="3/0to4/0"/> + <trip id="car23" depart="23.00" from="4/0to3/0" to="3/3to3/4"/> + <trip id="car24" depart="24.00" from="1/3to1/2" to="1/2to1/1"/> + <trip id="car25" depart="25.00" from="1/1to0/1" to="4/3to3/3"/> + <trip id="car26" depart="26.00" from="4/1to4/0" to="1/3to1/2"/> + <trip id="car27" depart="27.00" from="3/1to2/1" to="2/0to1/0"/> + <trip id="car28" depart="28.00" from="4/2to4/1" to="2/1to2/2"/> + <trip id="car29" depart="29.00" from="2/3to2/4" to="1/2to1/1"/> + <trip id="car30" depart="30.00" from="2/4to1/4" to="4/1to4/2"/> + <trip id="car31" depart="31.00" from="4/4to4/3" to="2/2to2/3"/> + <trip id="car32" depart="32.00" from="0/3to0/2" to="3/0to3/1"/> + <trip id="car33" depart="33.00" from="3/3to4/3" to="2/0to3/0"/> + <trip id="car34" depart="34.00" from="0/2to0/1" to="1/4to2/4"/> + <trip id="car35" depart="35.00" from="4/4to4/3" to="2/3to1/3"/> + <trip id="car36" depart="36.00" from="4/3to4/4" to="4/0to4/1"/> + <trip id="car37" depart="37.00" from="0/0to0/1" to="3/2to3/1"/> + <trip id="car38" depart="38.00" from="3/1to3/2" to="2/3to1/3"/> + <trip id="car39" depart="39.00" from="1/2to1/1" to="3/0to4/0"/> + <trip id="car40" depart="40.00" from="0/3to0/2" to="2/1to1/1"/> + <trip id="car41" depart="41.00" from="2/1to2/2" to="4/3to4/2"/> + <trip id="car42" depart="42.00" from="4/1to4/0" to="1/2to1/1"/> + <trip id="car43" depart="43.00" from="1/2to2/2" to="3/0to4/0"/> + <trip id="car44" depart="44.00" from="3/3to3/4" to="2/3to1/3"/> + <trip id="car45" depart="45.00" from="0/0to0/1" to="1/3to1/2"/> + <trip id="car46" depart="46.00" from="0/0to1/0" to="4/2to4/3"/> + <trip id="car47" depart="47.00" from="4/1to4/0" to="3/4to4/4"/> + <trip id="car48" depart="48.00" from="1/3to0/3" to="0/1to1/1"/> + <trip id="car49" depart="49.00" from="4/1to4/0" to="4/3to3/3"/> + <trip id="car50" depart="50.00" from="0/2to0/1" to="3/3to2/3"/> + <trip id="car51" depart="51.00" from="3/3to3/2" to="0/3to1/3"/> + <trip id="car52" depart="52.00" from="1/2to1/1" to="4/1to3/1"/> + <trip id="car53" depart="53.00" from="2/0to3/0" to="1/1to0/1"/> + <trip id="car54" depart="54.00" from="1/1to0/1" to="1/3to0/3"/> + <trip id="car55" depart="55.00" from="4/4to4/3" to="3/0to4/0"/> + <trip id="car56" depart="56.00" from="0/3to0/4" to="1/1to1/0"/> + <trip id="car57" depart="57.00" from="0/2to0/1" to="3/0to3/1"/> + <trip id="car58" depart="58.00" from="1/1to1/2" to="4/2to3/2"/> + <trip id="car59" depart="59.00" from="4/0to4/1" to="0/2to0/1"/> + <trip id="car60" depart="60.00" from="1/1to2/1" to="3/1to3/0"/> + <trip id="car61" depart="61.00" from="1/1to1/0" to="0/3to1/3"/> + <trip id="car62" depart="62.00" from="2/1to3/1" to="3/3to3/4"/> + <trip id="car63" depart="63.00" from="3/4to2/4" to="1/0to2/0"/> + <trip id="car64" depart="64.00" from="3/2to3/3" to="3/1to3/0"/> + <trip id="car65" depart="65.00" from="4/4to3/4" to="0/2to1/2"/> + <trip id="car66" depart="66.00" from="2/0to2/1" to="1/3to2/3"/> + <trip id="car67" depart="67.00" from="4/0to4/1" to="1/1to2/1"/> + <trip id="car68" depart="68.00" from="2/0to3/0" to="1/2to1/3"/> + <trip id="car69" depart="69.00" from="1/1to2/1" to="4/2to4/1"/> + <trip id="car70" depart="70.00" from="2/1to2/0" to="4/0to4/1"/> + <trip id="car71" depart="71.00" from="2/3to2/4" to="0/1to1/1"/> + <trip id="car72" depart="72.00" from="4/0to3/0" to="1/0to0/0"/> + <trip id="car73" depart="73.00" from="2/2to1/2" to="1/1to1/0"/> + <trip id="car74" depart="74.00" from="1/4to2/4" to="4/4to3/4"/> + <trip id="car75" depart="75.00" from="1/2to1/1" to="3/3to3/4"/> + <trip id="car76" depart="76.00" from="2/3to2/4" to="3/2to3/1"/> + <trip id="car77" depart="77.00" from="0/4to1/4" to="1/2to2/2"/> + <trip id="car78" depart="78.00" from="4/3to4/4" to="2/4to1/4"/> + <trip id="car79" depart="79.00" from="2/3to2/2" to="3/2to4/2"/> + <trip id="car80" depart="80.00" from="0/1to1/1" to="2/4to1/4"/> + <trip id="car81" depart="81.00" from="2/2to2/3" to="4/0to4/1"/> + <trip id="car82" depart="82.00" from="0/4to1/4" to="4/3to4/2"/> + <trip id="car83" depart="83.00" from="2/4to2/3" to="3/1to3/2"/> + <trip id="car84" depart="84.00" from="1/1to1/2" to="0/3to0/4"/> + <trip id="car85" depart="85.00" from="4/1to4/2" to="1/1to2/1"/> + <trip id="car86" depart="86.00" from="2/4to2/3" to="3/0to2/0"/> + <trip id="car87" depart="87.00" from="2/0to3/0" to="2/4to1/4"/> + <trip id="car88" depart="88.00" from="2/2to3/2" to="4/2to4/3"/> + <trip id="car89" depart="89.00" from="1/1to0/1" to="3/2to3/1"/> + <trip id="car90" depart="90.00" from="0/2to0/1" to="2/1to2/2"/> + <trip id="car91" depart="91.00" from="0/2to0/1" to="1/1to1/0"/> + <trip id="car92" depart="92.00" from="1/2to1/1" to="4/2to4/3"/> + <trip id="car93" depart="93.00" from="3/4to4/4" to="3/2to2/2"/> + <trip id="car94" depart="94.00" from="3/1to2/1" to="0/0to0/1"/> + <trip id="car95" depart="95.00" from="3/4to3/3" to="1/2to2/2"/> + <trip id="car96" depart="96.00" from="3/1to3/0" to="4/3to3/3"/> + <trip id="car97" depart="97.00" from="0/3to0/2" to="2/3to2/4"/> + <trip id="car98" depart="98.00" from="1/2to1/1" to="2/4to3/4"/> + <trip id="car99" depart="99.00" from="3/2to3/1" to="1/1to0/1"/> + <trip id="car100" depart="100.00" from="3/0to3/1" to="1/2to1/1"/> + <trip id="car101" depart="101.00" from="4/0to3/0" to="0/2to1/2"/> + <trip id="car102" depart="102.00" from="2/0to3/0" to="1/2to1/3"/> + <trip id="car103" depart="103.00" from="0/0to0/1" to="3/3to3/2"/> + <trip id="car104" depart="104.00" from="3/0to3/1" to="1/2to0/2"/> + <trip id="car105" depart="105.00" from="3/2to4/2" to="2/3to2/4"/> + <trip id="car106" depart="106.00" from="2/1to1/1" to="0/0to0/1"/> + <trip id="car107" depart="107.00" from="0/2to0/3" to="4/1to4/0"/> + <trip id="car108" depart="108.00" from="4/2to3/2" to="2/3to2/2"/> + <trip id="car109" depart="109.00" from="3/4to4/4" to="2/4to1/4"/> + <trip id="car110" depart="110.00" from="1/3to0/3" to="4/1to4/2"/> + <trip id="car111" depart="111.00" from="3/3to4/3" to="4/0to4/1"/> + <trip id="car112" depart="112.00" from="4/1to4/2" to="1/1to0/1"/> + <trip id="car113" depart="113.00" from="3/3to3/4" to="4/1to4/0"/> + <trip id="car114" depart="114.00" from="0/4to1/4" to="4/2to4/3"/> + <trip id="car115" depart="115.00" from="4/1to3/1" to="4/4to3/4"/> + <trip id="car116" depart="116.00" from="3/4to2/4" to="4/1to4/0"/> + <trip id="car117" depart="117.00" from="0/0to1/0" to="3/2to3/3"/> + <trip id="car118" depart="118.00" from="1/3to1/4" to="4/2to4/3"/> + <trip id="car119" depart="119.00" from="3/4to2/4" to="4/1to3/1"/> + <trip id="car120" depart="120.00" from="3/4to2/4" to="1/2to1/1"/> + <trip id="car121" depart="121.00" from="3/3to3/4" to="0/3to0/2"/> + <trip id="car122" depart="122.00" from="1/1to1/0" to="3/4to3/3"/> + <trip id="car123" depart="123.00" from="2/1to2/2" to="1/3to0/3"/> + <trip id="car124" depart="124.00" from="3/3to4/3" to="1/1to1/2"/> + <trip id="car125" depart="125.00" from="0/0to1/0" to="1/0to2/0"/> + <trip id="car126" depart="126.00" from="1/3to1/4" to="4/1to3/1"/> + <trip id="car127" depart="127.00" from="4/3to4/4" to="1/2to1/3"/> + <trip id="car128" depart="128.00" from="3/0to4/0" to="2/0to1/0"/> + <trip id="car129" depart="129.00" from="4/4to3/4" to="2/3to1/3"/> + <trip id="car130" depart="130.00" from="4/3to3/3" to="0/3to0/4"/> + <trip id="car131" depart="131.00" from="4/3to4/4" to="1/0to1/1"/> + <trip id="car132" depart="132.00" from="4/3to4/4" to="1/2to1/1"/> + <trip id="car133" depart="133.00" from="0/3to0/2" to="2/1to1/1"/> + <trip id="car134" depart="134.00" from="3/2to3/3" to="1/3to1/2"/> + <trip id="car135" depart="135.00" from="0/0to0/1" to="4/2to4/3"/> + <trip id="car136" depart="136.00" from="2/3to2/2" to="3/2to3/1"/> + <trip id="car137" depart="137.00" from="3/2to4/2" to="3/1to3/0"/> + <trip id="car138" depart="138.00" from="1/4to1/3" to="0/2to0/1"/> + <trip id="car139" depart="139.00" from="3/1to3/0" to="1/3to1/4"/> + <trip id="car140" depart="140.00" from="1/3to1/2" to="4/0to3/0"/> + <trip id="car141" depart="141.00" from="3/2to3/1" to="1/3to0/3"/> + <trip id="car142" depart="142.00" from="1/3to0/3" to="2/0to2/1"/> + <trip id="car143" depart="143.00" from="2/0to2/1" to="1/2to2/2"/> + <trip id="car144" depart="144.00" from="0/3to1/3" to="2/0to3/0"/> + <trip id="car145" depart="145.00" from="4/2to3/2" to="3/0to2/0"/> + <trip id="car146" depart="146.00" from="0/0to0/1" to="1/2to1/3"/> + <trip id="car147" depart="147.00" from="2/1to1/1" to="2/4to1/4"/> + <trip id="car148" depart="148.00" from="3/3to4/3" to="1/0to0/0"/> + <trip id="car149" depart="149.00" from="0/2to0/3" to="2/2to3/2"/> + <trip id="car150" depart="150.00" from="3/0to3/1" to="1/3to1/4"/> + <trip id="car151" depart="151.00" from="3/1to3/0" to="1/1to1/0"/> + <trip id="car152" depart="152.00" from="4/0to3/0" to="0/2to0/1"/> + <trip id="car153" depart="153.00" from="1/0to2/0" to="3/1to4/1"/> + <trip id="car154" depart="154.00" from="3/1to2/1" to="0/0to0/1"/> + <trip id="car155" depart="155.00" from="0/3to0/2" to="2/1to1/1"/> + <trip id="car156" depart="156.00" from="1/0to1/1" to="4/3to4/2"/> + <trip id="car157" depart="157.00" from="1/1to2/1" to="4/0to3/0"/> + <trip id="car158" depart="158.00" from="2/1to2/2" to="3/4to2/4"/> + <trip id="car159" depart="159.00" from="3/1to3/0" to="4/4to4/3"/> + <trip id="car160" depart="160.00" from="2/4to2/3" to="4/3to4/2"/> + <trip id="car161" depart="161.00" from="4/1to4/2" to="3/0to2/0"/> + <trip id="car162" depart="162.00" from="3/4to4/4" to="2/3to2/2"/> + <trip id="car163" depart="163.00" from="2/1to3/1" to="1/2to0/2"/> + <trip id="car164" depart="164.00" from="1/1to2/1" to="3/0to4/0"/> + <trip id="car165" depart="165.00" from="3/0to3/1" to="1/2to1/1"/> + <trip id="car166" depart="166.00" from="2/3to2/2" to="0/4to0/3"/> + <trip id="car167" depart="167.00" from="1/1to1/2" to="3/1to4/1"/> + <trip id="car168" depart="168.00" from="3/2to2/2" to="0/2to0/1"/> + <trip id="car169" depart="169.00" from="2/0to2/1" to="2/3to2/2"/> + <trip id="car170" depart="170.00" from="2/0to3/0" to="1/1to0/1"/> + <trip id="car171" depart="171.00" from="2/0to3/0" to="4/2to3/2"/> + <trip id="car172" depart="172.00" from="2/4to1/4" to="3/1to4/1"/> + <trip id="car173" depart="173.00" from="4/0to4/1" to="3/3to3/2"/> + <trip id="car174" depart="174.00" from="1/4to2/4" to="0/0to0/1"/> + <trip id="car175" depart="175.00" from="4/0to4/1" to="4/3to4/2"/> + <trip id="car176" depart="176.00" from="2/0to3/0" to="3/2to4/2"/> + <trip id="car177" depart="177.00" from="2/1to1/1" to="0/1to0/0"/> + <trip id="car178" depart="178.00" from="1/3to1/4" to="3/1to3/2"/> + <trip id="car179" depart="179.00" from="2/0to2/1" to="1/0to0/0"/> + <trip id="car180" depart="180.00" from="2/1to3/1" to="0/3to1/3"/> + <trip id="car181" depart="181.00" from="3/0to2/0" to="0/1to0/0"/> + <trip id="car182" depart="182.00" from="2/0to1/0" to="2/3to3/3"/> + <trip id="car183" depart="183.00" from="0/1to0/0" to="3/0to4/0"/> + <trip id="car184" depart="184.00" from="0/3to1/3" to="2/1to2/2"/> + <trip id="car185" depart="185.00" from="0/1to1/1" to="1/4to2/4"/> + <trip id="car186" depart="186.00" from="1/1to0/1" to="1/3to1/4"/> + <trip id="car187" depart="187.00" from="0/0to1/0" to="2/3to2/2"/> + <trip id="car188" depart="188.00" from="4/4to4/3" to="1/3to2/3"/> + <trip id="car189" depart="189.00" from="3/1to2/1" to="3/3to3/4"/> + <trip id="car190" depart="190.00" from="3/1to2/1" to="3/3to2/3"/> + <trip id="car191" depart="191.00" from="4/3to3/3" to="1/0to2/0"/> + <trip id="car192" depart="192.00" from="0/0to1/0" to="0/4to1/4"/> + <trip id="car193" depart="193.00" from="0/3to1/3" to="3/1to3/0"/> + <trip id="car194" depart="194.00" from="2/3to3/3" to="1/1to1/0"/> + <trip id="car195" depart="195.00" from="1/0to0/0" to="2/4to3/4"/> + <trip id="car196" depart="196.00" from="3/2to4/2" to="0/3to0/4"/> + <trip id="car197" depart="197.00" from="0/3to0/2" to="0/1to0/0"/> + <trip id="car198" depart="198.00" from="1/3to0/3" to="3/1to3/2"/> + <trip id="car199" depart="199.00" from="4/3to4/2" to="2/0to1/0"/> + <trip id="car200" depart="200.00" from="3/2to3/1" to="0/2to0/3"/> + <trip id="car201" depart="201.00" from="0/3to0/2" to="3/3to3/2"/> + <trip id="car202" depart="202.00" from="4/0to4/1" to="2/4to3/4"/> + <trip id="car203" depart="203.00" from="0/3to0/4" to="4/4to3/4"/> + <trip id="car204" depart="204.00" from="2/1to1/1" to="1/4to1/3"/> + <trip id="car205" depart="205.00" from="4/0to3/0" to="3/4to3/3"/> + <trip id="car206" depart="206.00" from="0/3to0/2" to="4/3to4/2"/> + <trip id="car207" depart="207.00" from="3/0to3/1" to="3/4to4/4"/> + <trip id="car208" depart="208.00" from="3/2to2/2" to="2/1to1/1"/> + <trip id="car209" depart="209.00" from="3/2to3/3" to="4/3to4/4"/> + <trip id="car210" depart="210.00" from="1/2to1/1" to="3/4to2/4"/> + <trip id="car211" depart="211.00" from="2/1to1/1" to="3/2to3/3"/> + <trip id="car212" depart="212.00" from="1/2to1/1" to="4/0to4/1"/> + <trip id="car213" depart="213.00" from="3/4to4/4" to="0/2to0/3"/> + <trip id="car214" depart="214.00" from="4/1to4/0" to="1/1to2/1"/> + <trip id="car215" depart="215.00" from="2/1to3/1" to="2/4to3/4"/> + <trip id="car216" depart="216.00" from="1/4to2/4" to="0/1to0/0"/> + <trip id="car217" depart="217.00" from="4/0to4/1" to="1/0to1/1"/> + <trip id="car218" depart="218.00" from="1/1to0/1" to="3/3to4/3"/> + <trip id="car219" depart="219.00" from="1/3to2/3" to="4/1to4/0"/> + <trip id="car220" depart="220.00" from="3/2to2/2" to="1/2to1/3"/> + <trip id="car221" depart="221.00" from="0/0to0/1" to="4/3to3/3"/> + <trip id="car222" depart="222.00" from="0/2to0/3" to="3/2to3/1"/> + <trip id="car223" depart="223.00" from="2/2to2/1" to="3/3to4/3"/> + <trip id="car224" depart="224.00" from="0/2to1/2" to="1/1to1/0"/> + <trip id="car225" depart="225.00" from="3/1to4/1" to="1/3to0/3"/> + <trip id="car226" depart="226.00" from="2/4to1/4" to="2/1to3/1"/> + <trip id="car227" depart="227.00" from="2/3to1/3" to="2/1to1/1"/> + <trip id="car228" depart="228.00" from="3/2to4/2" to="1/3to1/4"/> + <trip id="car229" depart="229.00" from="3/2to2/2" to="1/2to1/1"/> + <trip id="car230" depart="230.00" from="1/2to0/2" to="0/3to0/4"/> + <trip id="car231" depart="231.00" from="1/0to2/0" to="0/3to0/4"/> + <trip id="car232" depart="232.00" from="4/4to3/4" to="2/2to3/2"/> + <trip id="car233" depart="233.00" from="1/0to2/0" to="1/1to1/2"/> + <trip id="car234" depart="234.00" from="2/3to1/3" to="1/2to1/1"/> + <trip id="car235" depart="235.00" from="4/3to4/4" to="2/3to2/4"/> + <trip id="car236" depart="236.00" from="3/1to4/1" to="0/3to1/3"/> + <trip id="car237" depart="237.00" from="4/1to3/1" to="2/2to2/1"/> + <trip id="car238" depart="238.00" from="4/1to3/1" to="2/3to3/3"/> + <trip id="car239" depart="239.00" from="4/3to3/3" to="2/2to1/2"/> + <trip id="car240" depart="240.00" from="3/4to3/3" to="2/0to2/1"/> + <trip id="car241" depart="241.00" from="0/2to0/1" to="3/0to3/1"/> + <trip id="car242" depart="242.00" from="0/1to1/1" to="0/4to0/3"/> + <trip id="car243" depart="243.00" from="2/3to3/3" to="1/3to0/3"/> + <trip id="car244" depart="244.00" from="4/4to4/3" to="0/3to0/4"/> + <trip id="car245" depart="245.00" from="3/3to4/3" to="1/1to1/2"/> + <trip id="car246" depart="246.00" from="2/1to2/0" to="4/0to4/1"/> + <trip id="car247" depart="247.00" from="4/4to4/3" to="1/3to0/3"/> + <trip id="car248" depart="248.00" from="3/0to2/0" to="2/4to3/4"/> + <trip id="car249" depart="249.00" from="3/1to2/1" to="0/4to1/4"/> + <trip id="car250" depart="250.00" from="1/0to0/0" to="0/2to0/3"/> + <trip id="car251" depart="251.00" from="0/0to0/1" to="2/1to2/2"/> + <trip id="car252" depart="252.00" from="2/4to2/3" to="1/2to2/2"/> + <trip id="car253" depart="253.00" from="3/3to4/3" to="3/0to3/1"/> + <trip id="car254" depart="254.00" from="3/1to2/1" to="4/2to4/3"/> + <trip id="car255" depart="255.00" from="3/0to4/0" to="4/2to3/2"/> + <trip id="car256" depart="256.00" from="3/4to4/4" to="0/2to0/1"/> + <trip id="car257" depart="257.00" from="1/0to0/0" to="1/3to0/3"/> + <trip id="car258" depart="258.00" from="1/2to2/2" to="0/3to0/4"/> + <trip id="car259" depart="259.00" from="4/3to3/3" to="2/2to2/3"/> + <trip id="car260" depart="260.00" from="2/2to2/1" to="0/2to0/3"/> + <trip id="car261" depart="261.00" from="0/2to1/2" to="4/3to4/2"/> + <trip id="car262" depart="262.00" from="3/4to4/4" to="2/4to1/4"/> + <trip id="car263" depart="263.00" from="3/1to3/0" to="1/2to1/1"/> + <trip id="car264" depart="264.00" from="0/1to0/2" to="3/3to2/3"/> + <trip id="car265" depart="265.00" from="4/2to4/1" to="1/0to1/1"/> + <trip id="car266" depart="266.00" from="2/4to1/4" to="3/0to3/1"/> + <trip id="car267" depart="267.00" from="1/3to1/4" to="3/1to4/1"/> + <trip id="car268" depart="268.00" from="1/2to2/2" to="4/3to3/3"/> + <trip id="car269" depart="269.00" from="1/3to1/2" to="4/3to4/4"/> + <trip id="car270" depart="270.00" from="2/0to2/1" to="2/2to3/2"/> + <trip id="car271" depart="271.00" from="4/4to4/3" to="3/1to2/1"/> + <trip id="car272" depart="272.00" from="2/3to2/2" to="2/0to3/0"/> + <trip id="car273" depart="273.00" from="1/0to2/0" to="1/4to0/4"/> + <trip id="car274" depart="274.00" from="3/3to2/3" to="3/0to3/1"/> + <trip id="car275" depart="275.00" from="3/3to2/3" to="1/1to0/1"/> + <trip id="car276" depart="276.00" from="2/3to2/2" to="4/2to4/3"/> + <trip id="car277" depart="277.00" from="2/1to2/0" to="3/1to4/1"/> + <trip id="car278" depart="278.00" from="0/3to0/4" to="4/3to4/4"/> + <trip id="car279" depart="279.00" from="2/4to3/4" to="1/1to2/1"/> + <trip id="car280" depart="280.00" from="0/4to1/4" to="2/3to2/4"/> + <trip id="car281" depart="281.00" from="4/4to4/3" to="4/2to4/1"/> + <trip id="car282" depart="282.00" from="2/1to2/2" to="0/3to0/4"/> + <trip id="car283" depart="283.00" from="3/4to4/4" to="2/2to2/1"/> + <trip id="car284" depart="284.00" from="1/2to1/1" to="3/4to4/4"/> + <trip id="car285" depart="285.00" from="4/4to3/4" to="1/1to2/1"/> + <trip id="car286" depart="286.00" from="4/2to4/1" to="2/2to2/3"/> + <trip id="car287" depart="287.00" from="1/2to1/3" to="3/3to4/3"/> + <trip id="car288" depart="288.00" from="2/0to3/0" to="4/2to4/3"/> + <trip id="car289" depart="289.00" from="2/4to1/4" to="4/4to4/3"/> + <trip id="car290" depart="290.00" from="2/2to2/1" to="0/4to0/3"/> + <trip id="car291" depart="291.00" from="1/0to2/0" to="3/1to4/1"/> + <trip id="car292" depart="292.00" from="3/3to3/4" to="0/1to0/2"/> + <trip id="car293" depart="293.00" from="3/1to3/0" to="3/4to3/3"/> + <trip id="car294" depart="294.00" from="4/4to3/4" to="2/2to2/1"/> + <trip id="car295" depart="295.00" from="0/1to0/0" to="2/2to2/3"/> + <trip id="car296" depart="296.00" from="2/4to2/3" to="4/1to3/1"/> + <trip id="car297" depart="297.00" from="4/1to3/1" to="2/1to2/0"/> + <trip id="car298" depart="298.00" from="3/1to2/1" to="0/4to1/4"/> + <trip id="car299" depart="299.00" from="2/1to3/1" to="4/3to4/4"/> + <trip id="car300" depart="300.00" from="1/3to2/3" to="3/1to4/1"/> + <trip id="car301" depart="301.00" from="1/4to2/4" to="1/3to1/2"/> + <trip id="car302" depart="302.00" from="4/1to3/1" to="0/1to0/0"/> + <trip id="car303" depart="303.00" from="0/2to0/1" to="3/0to3/1"/> + <trip id="car304" depart="304.00" from="3/2to4/2" to="2/1to1/1"/> + <trip id="car305" depart="305.00" from="0/2to1/2" to="3/0to3/1"/> + <trip id="car306" depart="306.00" from="4/1to3/1" to="2/1to2/0"/> + <trip id="car307" depart="307.00" from="0/1to0/2" to="3/3to4/3"/> + <trip id="car308" depart="308.00" from="2/3to3/3" to="3/3to4/3"/> + <trip id="car309" depart="309.00" from="1/0to0/0" to="0/2to0/3"/> + <trip id="car310" depart="310.00" from="4/1to3/1" to="3/0to2/0"/> + <trip id="car311" depart="311.00" from="1/1to2/1" to="4/2to4/1"/> + <trip id="car312" depart="312.00" from="0/4to0/3" to="2/1to2/2"/> + <trip id="car313" depart="313.00" from="0/0to0/1" to="3/4to2/4"/> + <trip id="car314" depart="314.00" from="0/4to1/4" to="2/1to2/0"/> + <trip id="car315" depart="315.00" from="1/2to0/2" to="4/0to3/0"/> + <trip id="car316" depart="316.00" from="1/0to2/0" to="1/4to2/4"/> + <trip id="car317" depart="317.00" from="4/4to4/3" to="1/2to2/2"/> + <trip id="car318" depart="318.00" from="4/4to3/4" to="3/1to2/1"/> + <trip id="car319" depart="319.00" from="1/2to1/1" to="2/3to3/3"/> + <trip id="car320" depart="320.00" from="0/1to0/2" to="2/4to3/4"/> + <trip id="car321" depart="321.00" from="1/2to1/3" to="3/3to4/3"/> + <trip id="car322" depart="322.00" from="2/4to3/4" to="1/4to0/4"/> + <trip id="car323" depart="323.00" from="3/0to3/1" to="4/2to3/2"/> + <trip id="car324" depart="324.00" from="3/0to4/0" to="1/3to0/3"/> + <trip id="car325" depart="325.00" from="2/1to2/0" to="2/4to1/4"/> + <trip id="car326" depart="326.00" from="3/2to3/3" to="0/2to1/2"/> + <trip id="car327" depart="327.00" from="1/2to2/2" to="3/2to4/2"/> + <trip id="car328" depart="328.00" from="1/0to1/1" to="0/3to1/3"/> + <trip id="car329" depart="329.00" from="2/3to2/2" to="4/3to4/4"/> + <trip id="car330" depart="330.00" from="2/3to1/3" to="4/2to4/1"/> + <trip id="car331" depart="331.00" from="3/4to4/4" to="1/2to0/2"/> + <trip id="car332" depart="332.00" from="3/4to3/3" to="2/2to1/2"/> + <trip id="car333" depart="333.00" from="3/4to2/4" to="3/2to4/2"/> + <trip id="car334" depart="334.00" from="4/3to4/4" to="0/4to0/3"/> + <trip id="car335" depart="335.00" from="4/3to4/4" to="4/0to4/1"/> + <trip id="car336" depart="336.00" from="3/2to3/1" to="4/4to3/4"/> + <trip id="car337" depart="337.00" from="4/3to4/4" to="3/4to2/4"/> + <trip id="car338" depart="338.00" from="1/4to1/3" to="3/3to4/3"/> + <trip id="car339" depart="339.00" from="0/0to1/0" to="2/3to1/3"/> + <trip id="car340" depart="340.00" from="3/1to3/0" to="2/4to1/4"/> + <trip id="car341" depart="341.00" from="0/1to0/0" to="4/1to4/0"/> + <trip id="car342" depart="342.00" from="2/3to2/4" to="4/2to4/1"/> + <trip id="car343" depart="343.00" from="3/4to3/3" to="4/2to3/2"/> + <trip id="car344" depart="344.00" from="1/3to0/3" to="2/0to2/1"/> + <trip id="car345" depart="345.00" from="0/4to0/3" to="4/3to3/3"/> + <trip id="car346" depart="346.00" from="1/3to0/3" to="2/2to2/1"/> + <trip id="car347" depart="347.00" from="0/2to1/2" to="4/1to4/0"/> + <trip id="car348" depart="348.00" from="0/3to1/3" to="2/1to2/2"/> + <trip id="car349" depart="349.00" from="4/3to3/3" to="2/0to3/0"/> + <trip id="car350" depart="350.00" from="3/2to4/2" to="0/4to1/4"/> + <trip id="car351" depart="351.00" from="2/0to3/0" to="0/2to1/2"/> + <trip id="car352" depart="352.00" from="4/3to4/2" to="0/1to0/0"/> + <trip id="car353" depart="353.00" from="1/4to1/3" to="2/1to2/0"/> + <trip id="car354" depart="354.00" from="4/3to4/2" to="4/0to4/1"/> + <trip id="car355" depart="355.00" from="0/2to1/2" to="3/1to3/2"/> + <trip id="car356" depart="356.00" from="1/4to0/4" to="2/0to1/0"/> + <trip id="car357" depart="357.00" from="1/0to2/0" to="0/3to0/4"/> + <trip id="car358" depart="358.00" from="4/0to3/0" to="2/1to2/2"/> + <trip id="car359" depart="359.00" from="2/4to2/3" to="0/0to1/0"/> + <trip id="car360" depart="360.00" from="3/3to3/4" to="1/1to2/1"/> + <trip id="car361" depart="361.00" from="0/3to1/3" to="2/3to3/3"/> + <trip id="car362" depart="362.00" from="0/2to0/1" to="3/3to3/2"/> + <trip id="car363" depart="363.00" from="4/1to3/1" to="1/3to1/4"/> + <trip id="car364" depart="364.00" from="0/4to0/3" to="4/2to3/2"/> + <trip id="car365" depart="365.00" from="0/0to0/1" to="4/0to4/1"/> + <trip id="car366" depart="366.00" from="1/2to0/2" to="1/0to0/0"/> + <trip id="car367" depart="367.00" from="3/1to2/1" to="0/1to0/0"/> + <trip id="car368" depart="368.00" from="0/0to1/0" to="3/3to4/3"/> + <trip id="car369" depart="369.00" from="3/2to4/2" to="2/3to1/3"/> + <trip id="car370" depart="370.00" from="3/2to4/2" to="2/2to1/2"/> + <trip id="car371" depart="371.00" from="0/3to0/2" to="2/2to2/3"/> + <trip id="car372" depart="372.00" from="4/3to3/3" to="0/1to0/2"/> + <trip id="car373" depart="373.00" from="3/3to3/4" to="4/1to3/1"/> + <trip id="car374" depart="374.00" from="4/3to4/4" to="0/1to1/1"/> + <trip id="car375" depart="375.00" from="4/2to3/2" to="0/2to0/1"/> + <trip id="car376" depart="376.00" from="0/2to0/3" to="2/4to3/4"/> + <trip id="car377" depart="377.00" from="3/0to3/1" to="2/3to2/2"/> + <trip id="car378" depart="378.00" from="1/3to1/4" to="4/4to4/3"/> + <trip id="car379" depart="379.00" from="2/4to3/4" to="0/2to1/2"/> + <trip id="car380" depart="380.00" from="3/2to3/1" to="1/1to1/0"/> + <trip id="car381" depart="381.00" from="2/0to3/0" to="0/2to1/2"/> + <trip id="car382" depart="382.00" from="4/2to4/1" to="0/2to0/1"/> + <trip id="car383" depart="383.00" from="3/4to4/4" to="0/2to1/2"/> + <trip id="car384" depart="384.00" from="0/2to1/2" to="3/2to4/2"/> + <trip id="car385" depart="385.00" from="1/4to0/4" to="3/1to3/0"/> + <trip id="car386" depart="386.00" from="3/3to2/3" to="4/1to3/1"/> + <trip id="car387" depart="387.00" from="3/2to3/1" to="4/3to4/4"/> + <trip id="car388" depart="388.00" from="2/4to3/4" to="1/4to0/4"/> + <trip id="car389" depart="389.00" from="2/4to1/4" to="1/1to1/0"/> + <trip id="car390" depart="390.00" from="3/1to2/1" to="1/1to1/0"/> + <trip id="car391" depart="391.00" from="0/3to0/2" to="4/0to3/0"/> + <trip id="car392" depart="392.00" from="1/4to1/3" to="3/3to3/2"/> + <trip id="car393" depart="393.00" from="4/0to3/0" to="4/3to4/4"/> + <trip id="car394" depart="394.00" from="3/4to3/3" to="3/0to2/0"/> + <trip id="car395" depart="395.00" from="3/0to4/0" to="0/1to0/0"/> + <trip id="car396" depart="396.00" from="4/2to4/3" to="3/4to4/4"/> + <trip id="car397" depart="397.00" from="3/2to2/2" to="1/3to0/3"/> + <trip id="car398" depart="398.00" from="1/3to2/3" to="0/0to0/1"/> + <trip id="car399" depart="399.00" from="4/1to3/1" to="2/3to3/3"/> + <trip id="car400" depart="400.00" from="2/0to2/1" to="0/4to0/3"/> + <trip id="car401" depart="401.00" from="3/0to3/1" to="0/1to0/0"/> + <trip id="car402" depart="402.00" from="3/2to4/2" to="1/1to1/0"/> + <trip id="car403" depart="403.00" from="2/0to3/0" to="1/3to2/3"/> + <trip id="car404" depart="404.00" from="1/4to1/3" to="3/2to3/1"/> + <trip id="car405" depart="405.00" from="0/4to1/4" to="3/0to2/0"/> + <trip id="car406" depart="406.00" from="3/1to3/0" to="1/2to1/1"/> + <trip id="car407" depart="407.00" from="3/1to2/1" to="2/2to1/2"/> + <trip id="car408" depart="408.00" from="3/3to2/3" to="0/3to0/4"/> + <trip id="car409" depart="409.00" from="2/1to1/1" to="1/2to1/3"/> + <trip id="car410" depart="410.00" from="3/1to3/2" to="2/2to1/2"/> + <trip id="car411" depart="411.00" from="3/1to3/0" to="0/1to0/2"/> + <trip id="car412" depart="412.00" from="2/0to1/0" to="2/4to2/3"/> + <trip id="car413" depart="413.00" from="0/0to0/1" to="1/3to0/3"/> + <trip id="car414" depart="414.00" from="1/1to0/1" to="0/3to1/3"/> + <trip id="car415" depart="415.00" from="1/2to0/2" to="1/3to1/4"/> + <trip id="car416" depart="416.00" from="0/0to0/1" to="3/2to4/2"/> + <trip id="car417" depart="417.00" from="1/0to1/1" to="1/4to2/4"/> + <trip id="car418" depart="418.00" from="0/2to0/1" to="4/0to4/1"/> + <trip id="car419" depart="419.00" from="3/2to2/2" to="2/0to3/0"/> + <trip id="car420" depart="420.00" from="0/3to0/4" to="0/0to1/0"/> + <trip id="car421" depart="421.00" from="3/0to2/0" to="3/4to4/4"/> + <trip id="car422" depart="422.00" from="4/2to4/1" to="0/2to1/2"/> + <trip id="car423" depart="423.00" from="4/0to3/0" to="1/1to2/1"/> + <trip id="car424" depart="424.00" from="2/4to2/3" to="2/2to3/2"/> + <trip id="car425" depart="425.00" from="2/0to1/0" to="1/3to0/3"/> + <trip id="car426" depart="426.00" from="1/0to0/0" to="2/2to2/3"/> + <trip id="car427" depart="427.00" from="0/3to0/4" to="2/2to2/3"/> + <trip id="car428" depart="428.00" from="4/2to3/2" to="1/3to2/3"/> + <trip id="car429" depart="429.00" from="3/4to3/3" to="1/1to1/2"/> + <trip id="car430" depart="430.00" from="0/4to0/3" to="1/0to2/0"/> + <trip id="car431" depart="431.00" from="3/1to2/1" to="1/0to1/1"/> + <trip id="car432" depart="432.00" from="3/3to3/2" to="2/2to2/1"/> + <trip id="car433" depart="433.00" from="2/1to2/0" to="4/2to4/1"/> + <trip id="car434" depart="434.00" from="2/3to3/3" to="3/0to3/1"/> + <trip id="car435" depart="435.00" from="3/0to3/1" to="0/4to1/4"/> + <trip id="car436" depart="436.00" from="0/2to0/1" to="2/1to2/0"/> + <trip id="car437" depart="437.00" from="1/3to0/3" to="1/2to1/1"/> + <trip id="car438" depart="438.00" from="0/1to1/1" to="2/2to2/3"/> + <trip id="car439" depart="439.00" from="0/1to1/1" to="3/4to4/4"/> + <trip id="car440" depart="440.00" from="0/2to0/3" to="4/1to3/1"/> + <trip id="car441" depart="441.00" from="4/0to4/1" to="3/0to2/0"/> + <trip id="car442" depart="442.00" from="2/3to2/4" to="3/3to4/3"/> + <trip id="car443" depart="443.00" from="4/1to4/2" to="2/1to2/0"/> + <trip id="car444" depart="444.00" from="3/4to2/4" to="3/1to2/1"/> + <trip id="car445" depart="445.00" from="0/4to1/4" to="0/1to1/1"/> + <trip id="car446" depart="446.00" from="0/3to0/2" to="4/1to4/2"/> + <trip id="car447" depart="447.00" from="1/3to2/3" to="3/2to3/1"/> + <trip id="car448" depart="448.00" from="2/2to2/3" to="1/0to0/0"/> + <trip id="car449" depart="449.00" from="3/3to4/3" to="3/0to4/0"/> + <trip id="car450" depart="450.00" from="3/1to3/2" to="1/2to1/3"/> + <trip id="car451" depart="451.00" from="0/4to0/3" to="1/3to2/3"/> + <trip id="car452" depart="452.00" from="4/3to4/4" to="3/1to4/1"/> + <trip id="car453" depart="453.00" from="2/0to1/0" to="2/4to2/3"/> + <trip id="car454" depart="454.00" from="4/3to3/3" to="1/3to0/3"/> + <trip id="car455" depart="455.00" from="1/4to2/4" to="3/3to4/3"/> + <trip id="car456" depart="456.00" from="3/4to3/3" to="3/1to3/0"/> + <trip id="car457" depart="457.00" from="3/4to4/4" to="3/2to4/2"/> + <trip id="car458" depart="458.00" from="3/1to3/2" to="2/3to1/3"/> + <trip id="car459" depart="459.00" from="4/3to3/3" to="2/2to1/2"/> + <trip id="car460" depart="460.00" from="1/1to1/2" to="0/4to0/3"/> + <trip id="car461" depart="461.00" from="0/2to0/3" to="4/0to3/0"/> + <trip id="car462" depart="462.00" from="0/3to0/2" to="3/3to3/2"/> + <trip id="car463" depart="463.00" from="3/4to4/4" to="4/1to4/0"/> + <trip id="car464" depart="464.00" from="0/1to0/2" to="1/3to1/4"/> + <trip id="car465" depart="465.00" from="3/3to3/2" to="0/3to1/3"/> + <trip id="car466" depart="466.00" from="3/4to4/4" to="3/3to3/2"/> + <trip id="car467" depart="467.00" from="3/4to2/4" to="1/0to0/0"/> + <trip id="car468" depart="468.00" from="2/1to2/0" to="1/2to1/3"/> + <trip id="car469" depart="469.00" from="3/2to4/2" to="2/1to2/0"/> + <trip id="car470" depart="470.00" from="2/3to1/3" to="1/3to0/3"/> + <trip id="car471" depart="471.00" from="3/4to2/4" to="2/1to3/1"/> + <trip id="car472" depart="472.00" from="3/4to4/4" to="1/4to1/3"/> + <trip id="car473" depart="473.00" from="2/1to2/2" to="1/2to1/3"/> + <trip id="car474" depart="474.00" from="3/4to2/4" to="0/4to0/3"/> + <trip id="car475" depart="475.00" from="1/2to0/2" to="3/0to4/0"/> + <trip id="car476" depart="476.00" from="4/1to3/1" to="2/3to2/4"/> + <trip id="car477" depart="477.00" from="0/3to0/2" to="4/0to3/0"/> + <trip id="car478" depart="478.00" from="4/0to4/1" to="1/2to1/3"/> + <trip id="car479" depart="479.00" from="3/3to3/2" to="1/2to1/1"/> + <trip id="car480" depart="480.00" from="4/2to3/2" to="0/4to0/3"/> + <trip id="car481" depart="481.00" from="2/1to1/1" to="4/3to3/3"/> + <trip id="car482" depart="482.00" from="1/3to2/3" to="0/1to0/0"/> + <trip id="car483" depart="483.00" from="0/1to1/1" to="2/2to2/3"/> + <trip id="car484" depart="484.00" from="1/1to1/2" to="4/4to4/3"/> + <trip id="car485" depart="485.00" from="1/4to1/3" to="0/1to0/0"/> + <trip id="car486" depart="486.00" from="4/2to4/3" to="4/0to3/0"/> + <trip id="car487" depart="487.00" from="3/0to4/0" to="3/3to4/3"/> + <trip id="car488" depart="488.00" from="3/4to4/4" to="3/1to4/1"/> + <trip id="car489" depart="489.00" from="0/4to0/3" to="3/2to2/2"/> + <trip id="car490" depart="490.00" from="2/1to2/0" to="0/0to0/1"/> + <trip id="car491" depart="491.00" from="3/4to4/4" to="2/3to2/2"/> + <trip id="car492" depart="492.00" from="3/2to3/3" to="2/3to1/3"/> + <trip id="car493" depart="493.00" from="0/3to0/2" to="1/2to2/2"/> + <trip id="car494" depart="494.00" from="2/0to3/0" to="3/3to4/3"/> + <trip id="car495" depart="495.00" from="2/1to2/2" to="0/3to0/2"/> + <trip id="car496" depart="496.00" from="4/2to3/2" to="2/4to2/3"/> + <trip id="car497" depart="497.00" from="0/0to1/0" to="2/2to3/2"/> + <trip id="car498" depart="498.00" from="1/1to2/1" to="0/4to0/3"/> + <trip id="car499" depart="499.00" from="1/1to2/1" to="2/0to3/0"/> + <trip id="car500" depart="500.00" from="3/1to3/0" to="0/2to0/3"/> + <trip id="car501" depart="501.00" from="4/3to4/4" to="0/2to0/1"/> + <trip id="car502" depart="502.00" from="4/4to4/3" to="2/3to2/4"/> + <trip id="car503" depart="503.00" from="3/0to3/1" to="4/4to3/4"/> + <trip id="car504" depart="504.00" from="1/2to0/2" to="0/0to1/0"/> + <trip id="car505" depart="505.00" from="1/0to1/1" to="3/3to3/4"/> + <trip id="car506" depart="506.00" from="2/1to3/1" to="3/1to4/1"/> + <trip id="car507" depart="507.00" from="3/0to3/1" to="3/4to2/4"/> + <trip id="car508" depart="508.00" from="0/2to0/1" to="3/3to3/4"/> + <trip id="car509" depart="509.00" from="0/1to0/2" to="1/0to2/0"/> + <trip id="car510" depart="510.00" from="0/1to0/2" to="4/2to4/3"/> + <trip id="car511" depart="511.00" from="2/2to3/2" to="4/4to4/3"/> + <trip id="car512" depart="512.00" from="2/3to2/2" to="1/2to0/2"/> + <trip id="car513" depart="513.00" from="3/3to2/3" to="1/0to2/0"/> + <trip id="car514" depart="514.00" from="1/4to0/4" to="3/3to3/4"/> + <trip id="car515" depart="515.00" from="4/1to3/1" to="1/3to1/4"/> + <trip id="car516" depart="516.00" from="4/1to4/2" to="1/4to2/4"/> + <trip id="car517" depart="517.00" from="4/3to4/4" to="2/2to2/1"/> + <trip id="car518" depart="518.00" from="2/2to2/1" to="4/2to4/1"/> + <trip id="car519" depart="519.00" from="2/2to3/2" to="3/4to2/4"/> + <trip id="car520" depart="520.00" from="3/2to3/3" to="0/2to0/3"/> + <trip id="car521" depart="521.00" from="0/2to0/3" to="3/1to2/1"/> + <trip id="car522" depart="522.00" from="1/3to0/3" to="2/4to3/4"/> + <trip id="car523" depart="523.00" from="2/1to1/1" to="3/1to4/1"/> + <trip id="car524" depart="524.00" from="1/4to0/4" to="0/1to0/2"/> + <trip id="car525" depart="525.00" from="4/1to3/1" to="1/4to0/4"/> + <trip id="car526" depart="526.00" from="4/4to4/3" to="1/2to1/1"/> + <trip id="car527" depart="527.00" from="0/2to0/3" to="3/0to4/0"/> + <trip id="car528" depart="528.00" from="0/4to0/3" to="2/4to3/4"/> + <trip id="car529" depart="529.00" from="3/3to3/4" to="0/1to0/0"/> + <trip id="car530" depart="530.00" from="0/2to0/1" to="3/3to3/4"/> + <trip id="car531" depart="531.00" from="3/1to3/2" to="4/3to3/3"/> + <trip id="car532" depart="532.00" from="1/4to1/3" to="3/3to3/2"/> + <trip id="car533" depart="533.00" from="2/0to1/0" to="3/0to4/0"/> + <trip id="car534" depart="534.00" from="1/1to2/1" to="0/3to0/4"/> + <trip id="car535" depart="535.00" from="2/1to2/0" to="4/4to4/3"/> + <trip id="car536" depart="536.00" from="1/2to1/3" to="4/2to4/1"/> + <trip id="car537" depart="537.00" from="2/2to2/1" to="0/3to0/4"/> + <trip id="car538" depart="538.00" from="4/0to4/1" to="2/1to2/2"/> + <trip id="car539" depart="539.00" from="4/1to4/2" to="2/1to2/0"/> + <trip id="car540" depart="540.00" from="0/2to1/2" to="3/1to3/2"/> + <trip id="car541" depart="541.00" from="4/0to3/0" to="1/3to1/2"/> + <trip id="car542" depart="542.00" from="1/3to2/3" to="0/2to0/1"/> + <trip id="car543" depart="543.00" from="2/3to2/2" to="4/1to4/2"/> + <trip id="car544" depart="544.00" from="4/0to4/1" to="3/2to2/2"/> + <trip id="car545" depart="545.00" from="4/2to4/3" to="3/0to4/0"/> + <trip id="car546" depart="546.00" from="0/3to0/4" to="1/1to0/1"/> + <trip id="car547" depart="547.00" from="0/4to0/3" to="3/3to4/3"/> + <trip id="car548" depart="548.00" from="0/1to0/0" to="2/3to2/4"/> + <trip id="car549" depart="549.00" from="4/4to4/3" to="3/2to3/1"/> + <trip id="car550" depart="550.00" from="3/4to3/3" to="0/2to0/1"/> + <trip id="car551" depart="551.00" from="4/3to4/4" to="3/0to4/0"/> + <trip id="car552" depart="552.00" from="1/3to2/3" to="4/1to4/0"/> + <trip id="car553" depart="553.00" from="3/3to3/4" to="3/0to4/0"/> + <trip id="car554" depart="554.00" from="1/0to1/1" to="4/3to4/4"/> + <trip id="car555" depart="555.00" from="0/1to1/1" to="0/3to0/4"/> + <trip id="car556" depart="556.00" from="0/4to1/4" to="1/0to0/0"/> + <trip id="car557" depart="557.00" from="1/3to2/3" to="4/3to3/3"/> + <trip id="car558" depart="558.00" from="1/2to0/2" to="3/0to3/1"/> + <trip id="car559" depart="559.00" from="2/2to2/3" to="1/0to0/0"/> + <trip id="car560" depart="560.00" from="4/3to3/3" to="0/4to1/4"/> + <trip id="car561" depart="561.00" from="2/4to3/4" to="4/0to3/0"/> + <trip id="car562" depart="562.00" from="2/3to3/3" to="3/4to4/4"/> + <trip id="car563" depart="563.00" from="3/0to4/0" to="2/4to1/4"/> + <trip id="car564" depart="564.00" from="2/0to3/0" to="3/0to4/0"/> + <trip id="car565" depart="565.00" from="1/2to2/2" to="4/3to4/2"/> + <trip id="car566" depart="566.00" from="2/2to1/2" to="3/4to2/4"/> + <trip id="car567" depart="567.00" from="1/1to0/1" to="2/4to3/4"/> + <trip id="car568" depart="568.00" from="1/3to1/2" to="3/2to3/1"/> + <trip id="car569" depart="569.00" from="4/4to3/4" to="0/3to1/3"/> + <trip id="car570" depart="570.00" from="1/3to1/2" to="2/1to3/1"/> + <trip id="car571" depart="571.00" from="0/2to1/2" to="1/2to2/2"/> + <trip id="car572" depart="572.00" from="1/4to2/4" to="3/0to2/0"/> + <trip id="car573" depart="573.00" from="1/1to2/1" to="4/1to3/1"/> + <trip id="car574" depart="574.00" from="2/4to1/4" to="1/3to1/2"/> + <trip id="car575" depart="575.00" from="3/3to3/2" to="2/2to2/1"/> + <trip id="car576" depart="576.00" from="1/3to0/3" to="0/0to1/0"/> + <trip id="car577" depart="577.00" from="4/3to3/3" to="2/2to2/3"/> + <trip id="car578" depart="578.00" from="4/3to4/4" to="1/1to1/0"/> + <trip id="car579" depart="579.00" from="1/4to0/4" to="0/1to1/1"/> + <trip id="car580" depart="580.00" from="2/2to2/1" to="4/1to4/0"/> + <trip id="car581" depart="581.00" from="2/3to1/3" to="4/0to3/0"/> + <trip id="car582" depart="582.00" from="2/1to1/1" to="4/1to4/0"/> + <trip id="car583" depart="583.00" from="1/4to1/3" to="2/0to2/1"/> + <trip id="car584" depart="584.00" from="2/3to3/3" to="1/0to2/0"/> + <trip id="car585" depart="585.00" from="2/3to2/4" to="0/2to0/1"/> + <trip id="car586" depart="586.00" from="1/2to1/3" to="4/4to4/3"/> + <trip id="car587" depart="587.00" from="3/1to3/2" to="0/3to0/4"/> + <trip id="car588" depart="588.00" from="4/4to3/4" to="2/0to1/0"/> + <trip id="car589" depart="589.00" from="4/3to3/3" to="3/3to2/3"/> + <trip id="car590" depart="590.00" from="1/0to2/0" to="2/2to2/3"/> + <trip id="car591" depart="591.00" from="2/2to2/3" to="0/1to0/2"/> + <trip id="car592" depart="592.00" from="2/4to3/4" to="2/2to3/2"/> + <trip id="car593" depart="593.00" from="1/3to1/4" to="3/0to2/0"/> + <trip id="car594" depart="594.00" from="1/0to0/0" to="4/4to4/3"/> + <trip id="car595" depart="595.00" from="1/3to1/4" to="3/4to4/4"/> + <trip id="car596" depart="596.00" from="1/2to2/2" to="3/4to3/3"/> + <trip id="car597" depart="597.00" from="1/4to1/3" to="3/1to3/0"/> + <trip id="car598" depart="598.00" from="4/4to3/4" to="2/4to1/4"/> + <trip id="car599" depart="599.00" from="3/1to4/1" to="0/1to0/0"/> + <trip id="car600" depart="600.00" from="2/1to3/1" to="4/3to4/4"/> + <trip id="car601" depart="601.00" from="2/4to1/4" to="3/2to3/1"/> + <trip id="car602" depart="602.00" from="2/4to1/4" to="1/0to0/0"/> + <trip id="car603" depart="603.00" from="4/0to3/0" to="0/4to0/3"/> + <trip id="car604" depart="604.00" from="3/1to3/2" to="0/1to0/0"/> + <trip id="car605" depart="605.00" from="4/3to3/3" to="0/3to0/2"/> + <trip id="car606" depart="606.00" from="0/0to1/0" to="1/3to1/2"/> + <trip id="car607" depart="607.00" from="0/4to1/4" to="3/1to4/1"/> + <trip id="car608" depart="608.00" from="2/0to2/1" to="3/3to3/2"/> + <trip id="car609" depart="609.00" from="3/2to3/3" to="0/1to1/1"/> + <trip id="car610" depart="610.00" from="0/4to0/3" to="1/1to0/1"/> + <trip id="car611" depart="611.00" from="1/3to1/4" to="3/1to2/1"/> + <trip id="car612" depart="612.00" from="1/0to0/0" to="4/2to3/2"/> + <trip id="car613" depart="613.00" from="3/3to3/2" to="3/2to3/1"/> + <trip id="car614" depart="614.00" from="2/4to3/4" to="1/0to2/0"/> + <trip id="car615" depart="615.00" from="1/1to2/1" to="2/3to2/4"/> + <trip id="car616" depart="616.00" from="1/1to1/0" to="4/3to4/4"/> + <trip id="car617" depart="617.00" from="1/2to1/1" to="0/3to0/4"/> + <trip id="car618" depart="618.00" from="3/1to3/2" to="1/4to2/4"/> + <trip id="car619" depart="619.00" from="4/3to4/2" to="3/4to2/4"/> + <trip id="car620" depart="620.00" from="2/1to2/0" to="1/2to0/2"/> + <trip id="car621" depart="621.00" from="2/2to1/2" to="1/1to0/1"/> + <trip id="car622" depart="622.00" from="2/3to2/2" to="4/2to4/3"/> + <trip id="car623" depart="623.00" from="3/1to4/1" to="0/3to1/3"/> + <trip id="car624" depart="624.00" from="3/0to2/0" to="2/4to1/4"/> + <trip id="car625" depart="625.00" from="1/1to2/1" to="3/1to3/0"/> + <trip id="car626" depart="626.00" from="2/3to1/3" to="3/0to4/0"/> + <trip id="car627" depart="627.00" from="0/1to1/1" to="2/0to3/0"/> + <trip id="car628" depart="628.00" from="3/2to3/1" to="0/3to0/2"/> + <trip id="car629" depart="629.00" from="3/3to3/2" to="0/0to0/1"/> + <trip id="car630" depart="630.00" from="2/3to2/4" to="4/2to4/3"/> + <trip id="car631" depart="631.00" from="2/0to2/1" to="4/2to4/3"/> + <trip id="car632" depart="632.00" from="4/1to4/0" to="2/2to1/2"/> + <trip id="car633" depart="633.00" from="1/0to2/0" to="4/3to4/4"/> + <trip id="car634" depart="634.00" from="1/3to1/2" to="3/0to4/0"/> + <trip id="car635" depart="635.00" from="4/2to3/2" to="0/2to1/2"/> + <trip id="car636" depart="636.00" from="4/2to4/1" to="1/0to1/1"/> + <trip id="car637" depart="637.00" from="4/1to4/0" to="1/0to1/1"/> + <trip id="car638" depart="638.00" from="4/2to4/3" to="4/1to4/0"/> + <trip id="car639" depart="639.00" from="0/0to0/1" to="2/3to3/3"/> + <trip id="car640" depart="640.00" from="0/3to0/2" to="4/4to3/4"/> + <trip id="car641" depart="641.00" from="1/2to1/3" to="4/4to4/3"/> + <trip id="car642" depart="642.00" from="2/3to2/2" to="2/2to2/1"/> + <trip id="car643" depart="643.00" from="4/3to3/3" to="4/0to4/1"/> + <trip id="car644" depart="644.00" from="2/1to2/2" to="1/2to0/2"/> + <trip id="car645" depart="645.00" from="1/0to1/1" to="3/2to3/3"/> + <trip id="car646" depart="646.00" from="3/3to2/3" to="1/0to1/1"/> + <trip id="car647" depart="647.00" from="4/0to4/1" to="4/1to4/2"/> + <trip id="car648" depart="648.00" from="3/4to4/4" to="2/2to3/2"/> + <trip id="car649" depart="649.00" from="0/2to0/3" to="3/1to3/0"/> + <trip id="car650" depart="650.00" from="1/0to1/1" to="0/4to0/3"/> + <trip id="car651" depart="651.00" from="1/3to1/2" to="1/1to2/1"/> + <trip id="car652" depart="652.00" from="1/3to0/3" to="3/2to3/1"/> + <trip id="car653" depart="653.00" from="0/0to0/1" to="3/1to2/1"/> + <trip id="car654" depart="654.00" from="3/1to4/1" to="0/1to1/1"/> + <trip id="car655" depart="655.00" from="2/0to2/1" to="2/2to2/3"/> + <trip id="car656" depart="656.00" from="4/1to4/2" to="3/2to2/2"/> + <trip id="car657" depart="657.00" from="4/2to4/1" to="1/2to2/2"/> + <trip id="car658" depart="658.00" from="3/0to2/0" to="1/1to1/0"/> + <trip id="car659" depart="659.00" from="3/2to4/2" to="2/4to3/4"/> + <trip id="car660" depart="660.00" from="2/0to3/0" to="2/3to2/2"/> + <trip id="car661" depart="661.00" from="3/1to3/0" to="1/1to1/0"/> + <trip id="car662" depart="662.00" from="1/1to2/1" to="3/3to2/3"/> + <trip id="car663" depart="663.00" from="4/1to3/1" to="0/2to0/3"/> + <trip id="car664" depart="664.00" from="0/2to0/3" to="2/3to3/3"/> + <trip id="car665" depart="665.00" from="0/1to1/1" to="2/3to2/2"/> + <trip id="car666" depart="666.00" from="2/2to3/2" to="0/3to0/4"/> + <trip id="car667" depart="667.00" from="1/1to0/1" to="2/4to1/4"/> + <trip id="car668" depart="668.00" from="0/2to1/2" to="2/2to2/3"/> + <trip id="car669" depart="669.00" from="3/4to2/4" to="2/1to2/2"/> + <trip id="car670" depart="670.00" from="0/1to1/1" to="2/1to2/2"/> + <trip id="car671" depart="671.00" from="3/4to2/4" to="3/2to3/1"/> + <trip id="car672" depart="672.00" from="2/0to1/0" to="3/4to3/3"/> + <trip id="car673" depart="673.00" from="3/2to4/2" to="2/4to1/4"/> + <trip id="car674" depart="674.00" from="0/1to0/2" to="1/3to2/3"/> + <trip id="car675" depart="675.00" from="0/2to0/1" to="4/4to4/3"/> + <trip id="car676" depart="676.00" from="4/2to4/3" to="0/2to0/1"/> + <trip id="car677" depart="677.00" from="4/2to4/3" to="0/1to0/0"/> + <trip id="car678" depart="678.00" from="2/0to2/1" to="3/3to3/2"/> + <trip id="car679" depart="679.00" from="4/4to4/3" to="1/4to2/4"/> + <trip id="car680" depart="680.00" from="1/4to2/4" to="3/1to3/2"/> + <trip id="car681" depart="681.00" from="3/1to2/1" to="1/3to2/3"/> + <trip id="car682" depart="682.00" from="1/0to1/1" to="2/3to1/3"/> + <trip id="car683" depart="683.00" from="0/0to1/0" to="1/2to2/2"/> + <trip id="car684" depart="684.00" from="1/1to2/1" to="1/3to2/3"/> + <trip id="car685" depart="685.00" from="1/2to1/3" to="4/2to4/3"/> + <trip id="car686" depart="686.00" from="3/2to3/3" to="0/3to0/4"/> + <trip id="car687" depart="687.00" from="3/4to2/4" to="2/0to3/0"/> + <trip id="car688" depart="688.00" from="3/3to3/2" to="4/1to4/0"/> + <trip id="car689" depart="689.00" from="0/3to0/2" to="0/1to0/0"/> + <trip id="car690" depart="690.00" from="2/4to2/3" to="3/2to2/2"/> + <trip id="car691" depart="691.00" from="0/1to0/2" to="3/2to4/2"/> + <trip id="car692" depart="692.00" from="2/0to2/1" to="1/1to1/2"/> + <trip id="car693" depart="693.00" from="1/1to1/0" to="4/1to3/1"/> + <trip id="car694" depart="694.00" from="0/1to1/1" to="2/2to2/3"/> + <trip id="car695" depart="695.00" from="1/2to2/2" to="3/4to3/3"/> + <trip id="car696" depart="696.00" from="3/2to3/3" to="1/3to1/2"/> + <trip id="car697" depart="697.00" from="2/4to2/3" to="3/1to3/0"/> + <trip id="car698" depart="698.00" from="0/4to0/3" to="3/1to2/1"/> + <trip id="car699" depart="699.00" from="1/1to1/0" to="1/3to0/3"/> + <trip id="car700" depart="700.00" from="0/1to1/1" to="4/3to3/3"/> + <trip id="car701" depart="701.00" from="3/0to3/1" to="2/1to1/1"/> + <trip id="car702" depart="702.00" from="2/2to2/1" to="4/3to4/4"/> + <trip id="car703" depart="703.00" from="4/3to3/3" to="3/1to3/0"/> + <trip id="car704" depart="704.00" from="3/3to3/4" to="1/3to1/2"/> + <trip id="car705" depart="705.00" from="2/0to3/0" to="0/4to0/3"/> + <trip id="car706" depart="706.00" from="3/4to2/4" to="4/2to4/1"/> + <trip id="car707" depart="707.00" from="2/3to2/4" to="4/3to4/4"/> + <trip id="car708" depart="708.00" from="4/0to3/0" to="0/2to1/2"/> + <trip id="car709" depart="709.00" from="3/2to3/1" to="1/0to2/0"/> + <trip id="car710" depart="710.00" from="1/2to1/1" to="3/1to3/0"/> + <trip id="car711" depart="711.00" from="2/4to3/4" to="4/1to3/1"/> + <trip id="car712" depart="712.00" from="1/0to2/0" to="3/3to2/3"/> + <trip id="car713" depart="713.00" from="3/2to3/1" to="2/3to2/4"/> + <trip id="car714" depart="714.00" from="1/3to1/4" to="4/3to4/2"/> + <trip id="car715" depart="715.00" from="0/0to1/0" to="4/2to4/3"/> + <trip id="car716" depart="716.00" from="4/3to4/2" to="0/3to0/4"/> + <trip id="car717" depart="717.00" from="4/4to4/3" to="2/2to1/2"/> + <trip id="car718" depart="718.00" from="1/1to2/1" to="2/4to3/4"/> + <trip id="car719" depart="719.00" from="1/1to0/1" to="4/2to4/1"/> + <trip id="car720" depart="720.00" from="1/4to0/4" to="1/2to0/2"/> + <trip id="car721" depart="721.00" from="0/2to1/2" to="4/4to3/4"/> + <trip id="car722" depart="722.00" from="4/2to4/1" to="1/4to1/3"/> + <trip id="car723" depart="723.00" from="2/0to3/0" to="2/3to3/3"/> + <trip id="car724" depart="724.00" from="1/1to1/0" to="0/4to0/3"/> + <trip id="car725" depart="725.00" from="1/2to0/2" to="4/2to4/3"/> + <trip id="car726" depart="726.00" from="2/4to1/4" to="2/0to3/0"/> + <trip id="car727" depart="727.00" from="1/4to2/4" to="3/4to4/4"/> + <trip id="car728" depart="728.00" from="3/1to3/2" to="1/2to0/2"/> + <trip id="car729" depart="729.00" from="1/0to0/0" to="3/3to4/3"/> + <trip id="car730" depart="730.00" from="1/0to0/0" to="3/2to3/1"/> + <trip id="car731" depart="731.00" from="2/2to2/1" to="4/2to4/1"/> + <trip id="car732" depart="732.00" from="2/3to2/2" to="3/0to4/0"/> + <trip id="car733" depart="733.00" from="4/0to3/0" to="4/3to3/3"/> + <trip id="car734" depart="734.00" from="0/0to0/1" to="2/2to2/3"/> + <trip id="car735" depart="735.00" from="1/4to1/3" to="3/0to2/0"/> + <trip id="car736" depart="736.00" from="0/0to0/1" to="2/3to2/4"/> + <trip id="car737" depart="737.00" from="0/0to0/1" to="2/3to1/3"/> + <trip id="car738" depart="738.00" from="1/2to1/1" to="4/4to3/4"/> + <trip id="car739" depart="739.00" from="0/0to1/0" to="3/4to3/3"/> + <trip id="car740" depart="740.00" from="3/1to3/0" to="3/4to2/4"/> + <trip id="car741" depart="741.00" from="4/2to3/2" to="0/3to0/2"/> + <trip id="car742" depart="742.00" from="1/0to2/0" to="2/3to1/3"/> + <trip id="car743" depart="743.00" from="3/4to3/3" to="1/2to1/1"/> + <trip id="car744" depart="744.00" from="2/0to1/0" to="1/4to1/3"/> + <trip id="car745" depart="745.00" from="2/0to2/1" to="2/3to3/3"/> + <trip id="car746" depart="746.00" from="4/4to4/3" to="1/1to1/2"/> + <trip id="car747" depart="747.00" from="3/3to2/3" to="0/2to1/2"/> + <trip id="car748" depart="748.00" from="2/1to1/1" to="3/3to3/4"/> + <trip id="car749" depart="749.00" from="2/3to3/3" to="4/0to4/1"/> + <trip id="car750" depart="750.00" from="2/2to1/2" to="0/1to0/2"/> + <trip id="car751" depart="751.00" from="0/2to0/1" to="4/2to4/3"/> + <trip id="car752" depart="752.00" from="4/1to4/2" to="2/3to3/3"/> + <trip id="car753" depart="753.00" from="0/1to0/0" to="4/2to4/3"/> + <trip id="car754" depart="754.00" from="1/3to1/2" to="4/3to4/2"/> + <trip id="car755" depart="755.00" from="3/2to3/1" to="2/0to1/0"/> + <trip id="car756" depart="756.00" from="0/2to0/3" to="0/4to1/4"/> + <trip id="car757" depart="757.00" from="1/1to2/1" to="3/4to4/4"/> + <trip id="car758" depart="758.00" from="2/0to1/0" to="4/1to4/2"/> + <trip id="car759" depart="759.00" from="0/4to0/3" to="4/4to4/3"/> + <trip id="car760" depart="760.00" from="4/3to4/4" to="0/1to1/1"/> + <trip id="car761" depart="761.00" from="1/3to2/3" to="3/3to3/2"/> + <trip id="car762" depart="762.00" from="4/3to4/2" to="2/0to1/0"/> + <trip id="car763" depart="763.00" from="3/3to3/2" to="0/1to0/0"/> + <trip id="car764" depart="764.00" from="1/2to1/1" to="4/4to4/3"/> + <trip id="car765" depart="765.00" from="2/2to2/1" to="1/4to0/4"/> + <trip id="car766" depart="766.00" from="4/3to3/3" to="2/1to1/1"/> + <trip id="car767" depart="767.00" from="0/2to0/3" to="3/0to2/0"/> + <trip id="car768" depart="768.00" from="3/3to4/3" to="3/2to3/1"/> + <trip id="car769" depart="769.00" from="0/2to0/3" to="0/4to1/4"/> + <trip id="car770" depart="770.00" from="3/2to4/2" to="1/3to1/2"/> + <trip id="car771" depart="771.00" from="0/3to0/2" to="0/0to0/1"/> + <trip id="car772" depart="772.00" from="2/3to2/4" to="2/0to2/1"/> + <trip id="car773" depart="773.00" from="0/1to0/0" to="1/4to0/4"/> + <trip id="car774" depart="774.00" from="0/2to1/2" to="2/4to2/3"/> + <trip id="car775" depart="775.00" from="1/2to2/2" to="2/0to1/0"/> + <trip id="car776" depart="776.00" from="0/2to0/3" to="4/2to3/2"/> + <trip id="car777" depart="777.00" from="4/2to3/2" to="4/4to3/4"/> + <trip id="car778" depart="778.00" from="2/3to3/3" to="1/0to0/0"/> + <trip id="car779" depart="779.00" from="1/3to0/3" to="2/2to2/1"/> + <trip id="car780" depart="780.00" from="2/0to3/0" to="2/2to1/2"/> + <trip id="car781" depart="781.00" from="1/1to2/1" to="3/0to3/1"/> + <trip id="car782" depart="782.00" from="2/4to2/3" to="1/0to2/0"/> + <trip id="car783" depart="783.00" from="4/3to3/3" to="1/3to1/4"/> + <trip id="car784" depart="784.00" from="3/0to2/0" to="3/4to2/4"/> + <trip id="car785" depart="785.00" from="3/4to3/3" to="4/0to4/1"/> + <trip id="car786" depart="786.00" from="4/3to4/4" to="0/3to1/3"/> + <trip id="car787" depart="787.00" from="1/3to1/2" to="4/3to3/3"/> + <trip id="car788" depart="788.00" from="1/2to2/2" to="3/1to4/1"/> + <trip id="car789" depart="789.00" from="2/2to2/1" to="2/4to1/4"/> + <trip id="car790" depart="790.00" from="1/1to2/1" to="1/4to2/4"/> + <trip id="car791" depart="791.00" from="3/4to3/3" to="2/0to1/0"/> + <trip id="car792" depart="792.00" from="0/3to0/4" to="2/3to3/3"/> + <trip id="car793" depart="793.00" from="2/4to2/3" to="2/3to2/2"/> + <trip id="car794" depart="794.00" from="3/1to3/2" to="2/3to2/4"/> + <trip id="car795" depart="795.00" from="4/3to4/2" to="2/1to2/2"/> + <trip id="car796" depart="796.00" from="3/2to2/2" to="2/1to2/0"/> + <trip id="car797" depart="797.00" from="1/2to2/2" to="3/1to4/1"/> + <trip id="car798" depart="798.00" from="3/3to4/3" to="0/2to0/1"/> + <trip id="car799" depart="799.00" from="4/4to4/3" to="2/2to1/2"/> + <trip id="car800" depart="800.00" from="2/0to2/1" to="2/2to2/3"/> + <trip id="car801" depart="801.00" from="2/3to2/2" to="3/3to4/3"/> + <trip id="car802" depart="802.00" from="1/4to0/4" to="4/1to4/2"/> + <trip id="car803" depart="803.00" from="2/3to1/3" to="3/0to4/0"/> + <trip id="car804" depart="804.00" from="0/2to0/3" to="3/3to3/2"/> + <trip id="car805" depart="805.00" from="3/1to2/1" to="1/4to0/4"/> + <trip id="car806" depart="806.00" from="3/0to4/0" to="0/1to0/2"/> + <trip id="car807" depart="807.00" from="4/4to3/4" to="3/1to3/2"/> + <trip id="car808" depart="808.00" from="2/0to1/0" to="3/3to2/3"/> + <trip id="car809" depart="809.00" from="4/3to4/4" to="2/1to1/1"/> + <trip id="car810" depart="810.00" from="0/0to0/1" to="1/2to0/2"/> + <trip id="car811" depart="811.00" from="0/0to1/0" to="0/3to0/2"/> + <trip id="car812" depart="812.00" from="2/0to3/0" to="4/3to4/2"/> + <trip id="car813" depart="813.00" from="0/3to0/4" to="4/3to3/3"/> + <trip id="car814" depart="814.00" from="2/1to2/2" to="1/1to0/1"/> + <trip id="car815" depart="815.00" from="2/1to2/0" to="3/1to4/1"/> + <trip id="car816" depart="816.00" from="3/4to2/4" to="0/3to0/4"/> + <trip id="car817" depart="817.00" from="3/1to3/2" to="1/0to0/0"/> + <trip id="car818" depart="818.00" from="4/4to3/4" to="1/1to2/1"/> + <trip id="car819" depart="819.00" from="1/0to0/0" to="0/4to1/4"/> + <trip id="car820" depart="820.00" from="2/3to2/4" to="4/3to4/2"/> + <trip id="car821" depart="821.00" from="1/0to1/1" to="3/0to4/0"/> + <trip id="car822" depart="822.00" from="2/1to1/1" to="0/1to0/0"/> + <trip id="car823" depart="823.00" from="2/4to2/3" to="2/0to1/0"/> + <trip id="car824" depart="824.00" from="3/2to2/2" to="1/1to0/1"/> + <trip id="car825" depart="825.00" from="4/1to3/1" to="1/0to1/1"/> + <trip id="car826" depart="826.00" from="1/2to0/2" to="4/1to3/1"/> + <trip id="car827" depart="827.00" from="2/3to1/3" to="3/0to4/0"/> + <trip id="car828" depart="828.00" from="4/0to3/0" to="3/0to2/0"/> + <trip id="car829" depart="829.00" from="3/4to3/3" to="3/2to2/2"/> + <trip id="car830" depart="830.00" from="1/2to2/2" to="3/0to2/0"/> + <trip id="car831" depart="831.00" from="1/0to1/1" to="3/1to4/1"/> + <trip id="car832" depart="832.00" from="2/2to2/3" to="2/0to3/0"/> + <trip id="car833" depart="833.00" from="0/4to0/3" to="1/4to2/4"/> + <trip id="car834" depart="834.00" from="1/0to1/1" to="3/0to3/1"/> + <trip id="car835" depart="835.00" from="4/4to4/3" to="2/3to2/4"/> + <trip id="car836" depart="836.00" from="2/2to2/1" to="0/4to0/3"/> + <trip id="car837" depart="837.00" from="0/1to1/1" to="1/4to0/4"/> + <trip id="car838" depart="838.00" from="0/0to0/1" to="0/3to1/3"/> + <trip id="car839" depart="839.00" from="4/0to3/0" to="2/2to2/1"/> + <trip id="car840" depart="840.00" from="0/2to0/3" to="0/1to0/0"/> + <trip id="car841" depart="841.00" from="1/0to0/0" to="2/1to2/2"/> + <trip id="car842" depart="842.00" from="2/3to2/2" to="0/3to0/4"/> + <trip id="car843" depart="843.00" from="0/3to0/4" to="3/3to3/4"/> + <trip id="car844" depart="844.00" from="3/4to3/3" to="1/4to1/3"/> + <trip id="car845" depart="845.00" from="3/4to3/3" to="0/1to0/2"/> + <trip id="car846" depart="846.00" from="4/4to4/3" to="0/3to0/2"/> + <trip id="car847" depart="847.00" from="1/2to2/2" to="4/4to4/3"/> + <trip id="car848" depart="848.00" from="2/1to2/0" to="1/3to2/3"/> + <trip id="car849" depart="849.00" from="3/4to3/3" to="2/1to2/0"/> + <trip id="car850" depart="850.00" from="1/1to1/2" to="3/4to2/4"/> + <trip id="car851" depart="851.00" from="2/4to2/3" to="1/4to0/4"/> + <trip id="car852" depart="852.00" from="1/0to0/0" to="0/4to0/3"/> + <trip id="car853" depart="853.00" from="0/1to1/1" to="1/4to0/4"/> + <trip id="car854" depart="854.00" from="4/0to4/1" to="4/4to3/4"/> + <trip id="car855" depart="855.00" from="3/1to3/2" to="0/2to1/2"/> + <trip id="car856" depart="856.00" from="4/1to3/1" to="0/3to1/3"/> + <trip id="car857" depart="857.00" from="4/1to3/1" to="1/1to2/1"/> + <trip id="car858" depart="858.00" from="3/2to2/2" to="3/4to4/4"/> + <trip id="car859" depart="859.00" from="2/2to2/1" to="2/4to1/4"/> + <trip id="car860" depart="860.00" from="1/2to1/1" to="2/0to3/0"/> + <trip id="car861" depart="861.00" from="4/1to4/0" to="0/2to1/2"/> + <trip id="car862" depart="862.00" from="4/2to4/3" to="1/4to1/3"/> + <trip id="car863" depart="863.00" from="4/3to4/2" to="1/3to1/4"/> + <trip id="car864" depart="864.00" from="0/0to0/1" to="3/3to3/2"/> + <trip id="car865" depart="865.00" from="1/4to0/4" to="0/2to0/1"/> + <trip id="car866" depart="866.00" from="2/3to1/3" to="1/1to1/0"/> + <trip id="car867" depart="867.00" from="2/1to1/1" to="1/1to0/1"/> + <trip id="car868" depart="868.00" from="1/2to1/1" to="3/4to4/4"/> + <trip id="car869" depart="869.00" from="1/3to2/3" to="3/1to3/2"/> + <trip id="car870" depart="870.00" from="0/3to0/4" to="4/0to4/1"/> + <trip id="car871" depart="871.00" from="2/1to2/0" to="0/0to0/1"/> + <trip id="car872" depart="872.00" from="4/3to4/2" to="1/1to0/1"/> + <trip id="car873" depart="873.00" from="3/1to4/1" to="0/3to1/3"/> + <trip id="car874" depart="874.00" from="3/0to4/0" to="0/4to1/4"/> + <trip id="car875" depart="875.00" from="4/2to4/3" to="1/2to1/1"/> + <trip id="car876" depart="876.00" from="3/1to2/1" to="1/2to0/2"/> + <trip id="car877" depart="877.00" from="1/4to1/3" to="4/2to3/2"/> + <trip id="car878" depart="878.00" from="1/3to0/3" to="3/1to4/1"/> + <trip id="car879" depart="879.00" from="3/2to2/2" to="0/0to0/1"/> + <trip id="car880" depart="880.00" from="1/1to1/2" to="3/1to3/2"/> + <trip id="car881" depart="881.00" from="0/0to0/1" to="3/1to4/1"/> + <trip id="car882" depart="882.00" from="2/0to3/0" to="0/3to1/3"/> + <trip id="car883" depart="883.00" from="0/2to0/1" to="1/4to2/4"/> + <trip id="car884" depart="884.00" from="3/2to3/3" to="0/3to0/2"/> + <trip id="car885" depart="885.00" from="1/3to1/2" to="4/1to4/0"/> + <trip id="car886" depart="886.00" from="0/3to1/3" to="3/3to3/2"/> + <trip id="car887" depart="887.00" from="3/3to2/3" to="0/3to1/3"/> + <trip id="car888" depart="888.00" from="4/4to4/3" to="0/4to0/3"/> + <trip id="car889" depart="889.00" from="2/3to1/3" to="0/0to0/1"/> + <trip id="car890" depart="890.00" from="0/4to1/4" to="2/0to2/1"/> + <trip id="car891" depart="891.00" from="1/4to2/4" to="4/3to4/4"/> + <trip id="car892" depart="892.00" from="3/1to2/1" to="1/3to0/3"/> + <trip id="car893" depart="893.00" from="0/1to1/1" to="4/1to4/2"/> + <trip id="car894" depart="894.00" from="4/3to4/2" to="2/2to2/1"/> + <trip id="car895" depart="895.00" from="0/3to0/4" to="2/2to2/1"/> + <trip id="car896" depart="896.00" from="4/2to4/3" to="0/3to1/3"/> + <trip id="car897" depart="897.00" from="4/0to4/1" to="2/3to3/3"/> + <trip id="car898" depart="898.00" from="1/4to1/3" to="3/1to3/2"/> + <trip id="car899" depart="899.00" from="3/3to3/2" to="0/0to1/0"/> + <trip id="car900" depart="900.00" from="3/0to3/1" to="2/2to2/3"/> + <trip id="car901" depart="901.00" from="2/0to3/0" to="3/2to2/2"/> + <trip id="car902" depart="902.00" from="3/0to2/0" to="1/2to1/3"/> + <trip id="car903" depart="903.00" from="1/1to0/1" to="3/4to2/4"/> + <trip id="car904" depart="904.00" from="2/3to1/3" to="2/0to1/0"/> + <trip id="car905" depart="905.00" from="3/0to3/1" to="3/4to4/4"/> + <trip id="car906" depart="906.00" from="3/1to3/2" to="0/2to0/1"/> + <trip id="car907" depart="907.00" from="3/1to4/1" to="3/2to3/3"/> + <trip id="car908" depart="908.00" from="4/0to3/0" to="0/1to1/1"/> + <trip id="car909" depart="909.00" from="2/1to2/2" to="2/4to3/4"/> + <trip id="car910" depart="910.00" from="1/3to0/3" to="3/2to4/2"/> + <trip id="car911" depart="911.00" from="3/2to4/2" to="0/3to0/4"/> + <trip id="car912" depart="912.00" from="1/0to0/0" to="4/3to4/2"/> + <trip id="car913" depart="913.00" from="2/2to3/2" to="3/3to3/4"/> + <trip id="car914" depart="914.00" from="3/2to3/1" to="1/0to0/0"/> + <trip id="car915" depart="915.00" from="0/3to1/3" to="3/3to3/4"/> + <trip id="car916" depart="916.00" from="1/2to1/1" to="4/1to4/0"/> + <trip id="car917" depart="917.00" from="3/3to3/2" to="0/1to0/0"/> + <trip id="car918" depart="918.00" from="3/4to2/4" to="1/2to1/1"/> + <trip id="car919" depart="919.00" from="0/2to0/1" to="3/2to2/2"/> + <trip id="car920" depart="920.00" from="2/4to1/4" to="0/2to0/3"/> + <trip id="car921" depart="921.00" from="2/1to2/2" to="1/4to0/4"/> + <trip id="car922" depart="922.00" from="1/4to1/3" to="1/2to0/2"/> + <trip id="car923" depart="923.00" from="0/3to0/2" to="2/3to3/3"/> + <trip id="car924" depart="924.00" from="3/2to3/1" to="1/1to1/2"/> + <trip id="car925" depart="925.00" from="2/2to2/3" to="0/1to0/2"/> + <trip id="car926" depart="926.00" from="4/1to3/1" to="1/1to2/1"/> + <trip id="car927" depart="927.00" from="2/1to3/1" to="1/4to2/4"/> + <trip id="car928" depart="928.00" from="0/4to1/4" to="4/2to4/3"/> + <trip id="car929" depart="929.00" from="4/0to4/1" to="2/3to2/4"/> + <trip id="car930" depart="930.00" from="2/0to3/0" to="1/3to1/2"/> + <trip id="car931" depart="931.00" from="4/2to3/2" to="1/0to1/1"/> + <trip id="car932" depart="932.00" from="4/3to4/2" to="0/2to0/1"/> + <trip id="car933" depart="933.00" from="2/1to3/1" to="1/2to1/3"/> + <trip id="car934" depart="934.00" from="4/0to3/0" to="1/3to1/4"/> + <trip id="car935" depart="935.00" from="2/3to2/4" to="0/0to0/1"/> + <trip id="car936" depart="936.00" from="1/1to0/1" to="2/3to3/3"/> + <trip id="car937" depart="937.00" from="1/3to0/3" to="3/0to2/0"/> + <trip id="car938" depart="938.00" from="2/1to3/1" to="2/4to2/3"/> + <trip id="car939" depart="939.00" from="1/0to2/0" to="4/2to3/2"/> + <trip id="car940" depart="940.00" from="3/3to2/3" to="1/1to2/1"/> + <trip id="car941" depart="941.00" from="0/0to0/1" to="2/0to2/1"/> + <trip id="car942" depart="942.00" from="1/1to1/2" to="1/3to2/3"/> + <trip id="car943" depart="943.00" from="4/3to4/2" to="0/0to0/1"/> + <trip id="car944" depart="944.00" from="3/2to3/3" to="0/3to0/2"/> + <trip id="car945" depart="945.00" from="2/3to1/3" to="1/1to2/1"/> + <trip id="car946" depart="946.00" from="4/4to4/3" to="3/2to2/2"/> + <trip id="car947" depart="947.00" from="0/2to1/2" to="4/2to4/1"/> + <trip id="car948" depart="948.00" from="3/2to2/2" to="1/4to1/3"/> + <trip id="car949" depart="949.00" from="4/3to4/4" to="0/2to0/3"/> + <trip id="car950" depart="950.00" from="3/4to3/3" to="0/2to0/1"/> + <trip id="car951" depart="951.00" from="2/3to3/3" to="2/1to1/1"/> + <trip id="car952" depart="952.00" from="4/3to4/4" to="1/1to1/2"/> + <trip id="car953" depart="953.00" from="3/4to2/4" to="3/2to2/2"/> + <trip id="car954" depart="954.00" from="3/2to3/3" to="1/3to1/2"/> + <trip id="car955" depart="955.00" from="1/1to0/1" to="3/3to3/4"/> + <trip id="car956" depart="956.00" from="1/0to0/0" to="2/1to3/1"/> + <trip id="car957" depart="957.00" from="2/0to2/1" to="2/3to1/3"/> + <trip id="car958" depart="958.00" from="4/3to4/4" to="1/1to0/1"/> + <trip id="car959" depart="959.00" from="1/3to0/3" to="1/2to1/1"/> + <trip id="car960" depart="960.00" from="3/1to3/2" to="3/4to4/4"/> + <trip id="car961" depart="961.00" from="3/1to4/1" to="0/1to0/2"/> + <trip id="car962" depart="962.00" from="3/4to4/4" to="1/3to1/4"/> + <trip id="car963" depart="963.00" from="0/2to1/2" to="1/1to2/1"/> + <trip id="car964" depart="964.00" from="1/4to0/4" to="2/2to3/2"/> + <trip id="car965" depart="965.00" from="3/1to3/2" to="1/2to0/2"/> + <trip id="car966" depart="966.00" from="4/4to4/3" to="0/1to0/0"/> + <trip id="car967" depart="967.00" from="2/0to2/1" to="2/1to2/2"/> + <trip id="car968" depart="968.00" from="2/1to2/2" to="3/4to2/4"/> + <trip id="car969" depart="969.00" from="0/4to0/3" to="0/0to0/1"/> + <trip id="car970" depart="970.00" from="0/3to1/3" to="3/4to3/3"/> + <trip id="car971" depart="971.00" from="1/4to1/3" to="3/0to3/1"/> + <trip id="car972" depart="972.00" from="3/0to4/0" to="2/4to1/4"/> + <trip id="car973" depart="973.00" from="1/2to0/2" to="3/4to3/3"/> + <trip id="car974" depart="974.00" from="4/2to3/2" to="2/1to2/0"/> + <trip id="car975" depart="975.00" from="0/3to1/3" to="4/2to3/2"/> + <trip id="car976" depart="976.00" from="3/4to4/4" to="1/3to1/4"/> + <trip id="car977" depart="977.00" from="0/1to0/2" to="2/1to2/2"/> + <trip id="car978" depart="978.00" from="1/0to0/0" to="2/3to3/3"/> + <trip id="car979" depart="979.00" from="3/4to3/3" to="2/0to1/0"/> + <trip id="car980" depart="980.00" from="0/1to0/0" to="3/1to3/2"/> + <trip id="car981" depart="981.00" from="1/0to1/1" to="1/2to1/3"/> + <trip id="car982" depart="982.00" from="4/1to4/0" to="0/1to0/0"/> + <trip id="car983" depart="983.00" from="2/3to2/4" to="0/1to1/1"/> + <trip id="car984" depart="984.00" from="1/0to2/0" to="4/1to4/0"/> + <trip id="car985" depart="985.00" from="2/3to1/3" to="3/0to3/1"/> + <trip id="car986" depart="986.00" from="1/4to0/4" to="2/3to2/2"/> + <trip id="car987" depart="987.00" from="2/2to1/2" to="4/2to4/1"/> + <trip id="car988" depart="988.00" from="2/2to2/3" to="2/0to1/0"/> + <trip id="car989" depart="989.00" from="1/0to1/1" to="1/3to1/2"/> + <trip id="car990" depart="990.00" from="1/1to1/0" to="4/1to4/2"/> + <trip id="car991" depart="991.00" from="3/3to3/4" to="0/1to1/1"/> + <trip id="car992" depart="992.00" from="4/4to4/3" to="2/3to1/3"/> + <trip id="car993" depart="993.00" from="4/3to4/4" to="0/3to0/2"/> + <trip id="car994" depart="994.00" from="3/1to2/1" to="1/2to1/1"/> + <trip id="car995" depart="995.00" from="3/4to3/3" to="4/2to4/1"/> + <trip id="car996" depart="996.00" from="0/1to1/1" to="4/4to4/3"/> + <trip id="car997" depart="997.00" from="1/1to1/0" to="4/0to3/0"/> + <trip id="car998" depart="998.00" from="3/3to4/3" to="1/4to0/4"/> + <trip id="car999" depart="999.00" from="1/0to1/1" to="2/4to2/3"/> + <trip id="car1000" depart="1000.00" from="3/4to2/4" to="3/1to4/1"/> + <trip id="car1001" depart="1001.00" from="4/2to4/1" to="0/1to0/0"/> + <trip id="car1002" depart="1002.00" from="1/0to2/0" to="4/4to4/3"/> + <trip id="car1003" depart="1003.00" from="4/1to4/0" to="2/2to2/1"/> + <trip id="car1004" depart="1004.00" from="1/3to0/3" to="2/2to2/1"/> + <trip id="car1005" depart="1005.00" from="1/1to1/0" to="2/3to1/3"/> + <trip id="car1006" depart="1006.00" from="0/0to0/1" to="4/2to4/1"/> + <trip id="car1007" depart="1007.00" from="1/1to0/1" to="0/3to1/3"/> + <trip id="car1008" depart="1008.00" from="4/0to3/0" to="1/3to1/2"/> + <trip id="car1009" depart="1009.00" from="0/0to1/0" to="2/4to1/4"/> + <trip id="car1010" depart="1010.00" from="4/3to4/2" to="1/4to1/3"/> + <trip id="car1011" depart="1011.00" from="4/3to3/3" to="2/0to1/0"/> + <trip id="car1012" depart="1012.00" from="4/3to4/2" to="3/0to4/0"/> + <trip id="car1013" depart="1013.00" from="1/0to0/0" to="4/3to4/4"/> + <trip id="car1014" depart="1014.00" from="3/1to4/1" to="4/2to4/3"/> + <trip id="car1015" depart="1015.00" from="3/3to3/4" to="1/1to1/0"/> + <trip id="car1016" depart="1016.00" from="2/4to2/3" to="1/0to1/1"/> + <trip id="car1017" depart="1017.00" from="1/3to0/3" to="3/1to4/1"/> + <trip id="car1018" depart="1018.00" from="0/3to1/3" to="3/2to3/3"/> + <trip id="car1019" depart="1019.00" from="2/0to1/0" to="4/4to4/3"/> + <trip id="car1020" depart="1020.00" from="4/3to4/4" to="0/1to0/0"/> + <trip id="car1021" depart="1021.00" from="2/4to3/4" to="4/2to4/1"/> + <trip id="car1022" depart="1022.00" from="4/3to4/4" to="1/1to1/0"/> + <trip id="car1023" depart="1023.00" from="2/3to3/3" to="4/2to4/3"/> + <trip id="car1024" depart="1024.00" from="0/4to0/3" to="3/2to4/2"/> + <trip id="car1025" depart="1025.00" from="1/1to2/1" to="4/4to3/4"/> + <trip id="car1026" depart="1026.00" from="1/0to0/0" to="4/1to4/0"/> + <trip id="car1027" depart="1027.00" from="0/2to1/2" to="3/2to2/2"/> + <trip id="car1028" depart="1028.00" from="0/0to0/1" to="1/4to2/4"/> + <trip id="car1029" depart="1029.00" from="3/2to3/3" to="4/3to4/4"/> + <trip id="car1030" depart="1030.00" from="4/1to4/0" to="2/2to2/1"/> + <trip id="car1031" depart="1031.00" from="1/4to2/4" to="2/3to2/2"/> + <trip id="car1032" depart="1032.00" from="4/1to3/1" to="3/1to2/1"/> + <trip id="car1033" depart="1033.00" from="3/1to3/2" to="1/0to0/0"/> + <trip id="car1034" depart="1034.00" from="0/2to0/1" to="4/0to3/0"/> + <trip id="car1035" depart="1035.00" from="4/3to4/2" to="0/2to0/1"/> + <trip id="car1036" depart="1036.00" from="1/0to0/0" to="1/4to2/4"/> + <trip id="car1037" depart="1037.00" from="4/1to4/2" to="0/2to1/2"/> + <trip id="car1038" depart="1038.00" from="2/4to2/3" to="3/0to2/0"/> + <trip id="car1039" depart="1039.00" from="2/2to1/2" to="0/1to0/0"/> + <trip id="car1040" depart="1040.00" from="4/3to3/3" to="1/0to0/0"/> + <trip id="car1041" depart="1041.00" from="4/1to4/2" to="0/4to1/4"/> + <trip id="car1042" depart="1042.00" from="0/3to0/2" to="1/1to0/1"/> + <trip id="car1043" depart="1043.00" from="1/0to2/0" to="3/1to4/1"/> + <trip id="car1044" depart="1044.00" from="2/3to3/3" to="4/0to3/0"/> + <trip id="car1045" depart="1045.00" from="3/1to2/1" to="2/4to3/4"/> + <trip id="car1046" depart="1046.00" from="1/0to0/0" to="1/2to2/2"/> + <trip id="car1047" depart="1047.00" from="0/2to0/3" to="4/0to3/0"/> + <trip id="car1048" depart="1048.00" from="1/3to0/3" to="2/0to1/0"/> + <trip id="car1049" depart="1049.00" from="0/2to1/2" to="2/3to2/2"/> + <trip id="car1050" depart="1050.00" from="1/0to1/1" to="4/1to4/0"/> + <trip id="car1051" depart="1051.00" from="1/4to1/3" to="2/1to2/0"/> + <trip id="car1052" depart="1052.00" from="1/2to1/1" to="2/1to3/1"/> + <trip id="car1053" depart="1053.00" from="0/1to1/1" to="3/3to2/3"/> + <trip id="car1054" depart="1054.00" from="3/1to3/0" to="0/2to0/3"/> + <trip id="car1055" depart="1055.00" from="4/3to4/4" to="2/4to2/3"/> + <trip id="car1056" depart="1056.00" from="2/3to2/4" to="4/0to3/0"/> + <trip id="car1057" depart="1057.00" from="3/4to3/3" to="2/0to3/0"/> + <trip id="car1058" depart="1058.00" from="2/3to1/3" to="4/1to3/1"/> + <trip id="car1059" depart="1059.00" from="2/1to3/1" to="4/1to4/0"/> + <trip id="car1060" depart="1060.00" from="2/2to1/2" to="0/2to0/3"/> + <trip id="car1061" depart="1061.00" from="3/4to2/4" to="3/1to3/2"/> + <trip id="car1062" depart="1062.00" from="3/0to2/0" to="0/3to0/4"/> + <trip id="car1063" depart="1063.00" from="3/3to2/3" to="1/0to0/0"/> + <trip id="car1064" depart="1064.00" from="3/4to2/4" to="0/3to1/3"/> + <trip id="car1065" depart="1065.00" from="2/0to3/0" to="4/4to4/3"/> + <trip id="car1066" depart="1066.00" from="2/1to1/1" to="4/4to4/3"/> + <trip id="car1067" depart="1067.00" from="3/0to3/1" to="3/4to4/4"/> + <trip id="car1068" depart="1068.00" from="1/2to0/2" to="4/2to3/2"/> + <trip id="car1069" depart="1069.00" from="4/2to4/1" to="0/2to0/1"/> + <trip id="car1070" depart="1070.00" from="3/3to3/4" to="3/0to2/0"/> + <trip id="car1071" depart="1071.00" from="2/2to3/2" to="2/0to3/0"/> + <trip id="car1072" depart="1072.00" from="2/0to3/0" to="0/4to0/3"/> + <trip id="car1073" depart="1073.00" from="4/3to3/3" to="4/2to4/1"/> + <trip id="car1074" depart="1074.00" from="2/3to3/3" to="0/3to0/2"/> + <trip id="car1075" depart="1075.00" from="1/3to2/3" to="2/0to2/1"/> + <trip id="car1076" depart="1076.00" from="1/4to2/4" to="2/2to1/2"/> + <trip id="car1077" depart="1077.00" from="2/4to3/4" to="0/1to0/0"/> + <trip id="car1078" depart="1078.00" from="2/4to3/4" to="3/1to4/1"/> + <trip id="car1079" depart="1079.00" from="0/1to0/2" to="4/1to4/2"/> + <trip id="car1080" depart="1080.00" from="1/3to1/4" to="1/1to2/1"/> + <trip id="car1081" depart="1081.00" from="4/1to4/2" to="0/0to1/0"/> + <trip id="car1082" depart="1082.00" from="3/4to3/3" to="1/3to0/3"/> + <trip id="car1083" depart="1083.00" from="3/1to4/1" to="0/2to1/2"/> + <trip id="car1084" depart="1084.00" from="4/1to3/1" to="0/3to1/3"/> + <trip id="car1085" depart="1085.00" from="4/3to4/4" to="2/1to2/0"/> + <trip id="car1086" depart="1086.00" from="3/4to4/4" to="1/2to1/1"/> + <trip id="car1087" depart="1087.00" from="2/0to3/0" to="3/0to4/0"/> + <trip id="car1088" depart="1088.00" from="3/4to3/3" to="3/2to4/2"/> + <trip id="car1089" depart="1089.00" from="3/3to2/3" to="4/1to3/1"/> + <trip id="car1090" depart="1090.00" from="3/4to3/3" to="2/2to3/2"/> + <trip id="car1091" depart="1091.00" from="0/1to0/0" to="1/0to2/0"/> + <trip id="car1092" depart="1092.00" from="4/2to4/1" to="3/2to2/2"/> + <trip id="car1093" depart="1093.00" from="1/2to1/1" to="3/4to3/3"/> + <trip id="car1094" depart="1094.00" from="0/3to0/4" to="0/1to0/0"/> + <trip id="car1095" depart="1095.00" from="1/0to1/1" to="4/1to3/1"/> + <trip id="car1096" depart="1096.00" from="1/0to0/0" to="4/1to4/2"/> + <trip id="car1097" depart="1097.00" from="1/2to1/3" to="1/4to2/4"/> + <trip id="car1098" depart="1098.00" from="1/0to0/0" to="2/3to3/3"/> + <trip id="car1099" depart="1099.00" from="4/3to4/4" to="4/0to4/1"/> + <trip id="car1100" depart="1100.00" from="3/0to4/0" to="3/1to3/2"/> + <trip id="car1101" depart="1101.00" from="0/0to1/0" to="3/3to3/4"/> + <trip id="car1102" depart="1102.00" from="3/3to3/2" to="0/0to0/1"/> + <trip id="car1103" depart="1103.00" from="4/2to3/2" to="3/0to4/0"/> + <trip id="car1104" depart="1104.00" from="2/4to3/4" to="0/0to0/1"/> + <trip id="car1105" depart="1105.00" from="1/2to0/2" to="3/4to2/4"/> + <trip id="car1106" depart="1106.00" from="1/3to0/3" to="4/3to4/4"/> + <trip id="car1107" depart="1107.00" from="1/2to0/2" to="2/1to3/1"/> + <trip id="car1108" depart="1108.00" from="3/1to3/2" to="3/4to3/3"/> + <trip id="car1109" depart="1109.00" from="2/0to1/0" to="0/3to0/2"/> + <trip id="car1110" depart="1110.00" from="4/0to3/0" to="1/4to1/3"/> + <trip id="car1111" depart="1111.00" from="3/0to4/0" to="2/4to3/4"/> + <trip id="car1112" depart="1112.00" from="0/2to0/1" to="4/4to4/3"/> + <trip id="car1113" depart="1113.00" from="4/1to4/2" to="1/2to2/2"/> + <trip id="car1114" depart="1114.00" from="0/4to0/3" to="3/3to3/2"/> + <trip id="car1115" depart="1115.00" from="4/1to4/2" to="3/4to2/4"/> + <trip id="car1116" depart="1116.00" from="4/4to4/3" to="1/2to0/2"/> + <trip id="car1117" depart="1117.00" from="0/1to0/0" to="3/2to2/2"/> + <trip id="car1118" depart="1118.00" from="2/3to3/3" to="1/0to2/0"/> + <trip id="car1119" depart="1119.00" from="3/2to3/3" to="1/1to1/0"/> + <trip id="car1120" depart="1120.00" from="4/2to3/2" to="3/1to3/0"/> + <trip id="car1121" depart="1121.00" from="2/2to2/3" to="4/0to3/0"/> + <trip id="car1122" depart="1122.00" from="1/0to1/1" to="0/2to1/2"/> + <trip id="car1123" depart="1123.00" from="3/4to2/4" to="3/3to3/2"/> + <trip id="car1124" depart="1124.00" from="1/0to1/1" to="3/1to3/2"/> + <trip id="car1125" depart="1125.00" from="1/4to0/4" to="3/2to4/2"/> + <trip id="car1126" depart="1126.00" from="1/3to0/3" to="3/3to4/3"/> + <trip id="car1127" depart="1127.00" from="1/2to2/2" to="4/0to4/1"/> + <trip id="car1128" depart="1128.00" from="0/2to0/1" to="4/1to4/2"/> + <trip id="car1129" depart="1129.00" from="1/4to2/4" to="1/2to2/2"/> + <trip id="car1130" depart="1130.00" from="0/1to1/1" to="4/0to4/1"/> + <trip id="car1131" depart="1131.00" from="0/3to1/3" to="1/1to0/1"/> + <trip id="car1132" depart="1132.00" from="2/0to2/1" to="2/3to3/3"/> + <trip id="car1133" depart="1133.00" from="4/2to3/2" to="2/1to2/2"/> + <trip id="car1134" depart="1134.00" from="1/3to1/2" to="3/2to3/1"/> + <trip id="car1135" depart="1135.00" from="3/3to3/4" to="2/2to2/1"/> + <trip id="car1136" depart="1136.00" from="3/0to3/1" to="1/0to1/1"/> + <trip id="car1137" depart="1137.00" from="3/0to3/1" to="0/0to0/1"/> + <trip id="car1138" depart="1138.00" from="1/0to0/0" to="3/3to3/2"/> + <trip id="car1139" depart="1139.00" from="0/2to1/2" to="3/0to2/0"/> + <trip id="car1140" depart="1140.00" from="4/3to4/4" to="1/4to2/4"/> + <trip id="car1141" depart="1141.00" from="0/1to0/2" to="1/0to2/0"/> + <trip id="car1142" depart="1142.00" from="1/4to1/3" to="0/0to1/0"/> + <trip id="car1143" depart="1143.00" from="1/3to1/2" to="3/4to4/4"/> + <trip id="car1144" depart="1144.00" from="1/0to2/0" to="3/1to3/2"/> + <trip id="car1145" depart="1145.00" from="3/1to4/1" to="1/3to2/3"/> + <trip id="car1146" depart="1146.00" from="0/3to1/3" to="1/4to2/4"/> + <trip id="car1147" depart="1147.00" from="2/4to2/3" to="1/0to0/0"/> + <trip id="car1148" depart="1148.00" from="3/4to3/3" to="1/2to2/2"/> + <trip id="car1149" depart="1149.00" from="1/2to2/2" to="3/2to3/3"/> + <trip id="car1150" depart="1150.00" from="4/1to4/2" to="4/4to4/3"/> + <trip id="car1151" depart="1151.00" from="1/3to2/3" to="4/2to3/2"/> + <trip id="car1152" depart="1152.00" from="1/4to0/4" to="1/0to2/0"/> + <trip id="car1153" depart="1153.00" from="4/3to3/3" to="4/2to4/1"/> + <trip id="car1154" depart="1154.00" from="2/0to2/1" to="1/1to1/2"/> + <trip id="car1155" depart="1155.00" from="3/2to3/3" to="0/3to1/3"/> + <trip id="car1156" depart="1156.00" from="1/0to0/0" to="1/4to1/3"/> + <trip id="car1157" depart="1157.00" from="3/1to2/1" to="0/1to0/0"/> + <trip id="car1158" depart="1158.00" from="4/1to4/0" to="1/2to0/2"/> + <trip id="car1159" depart="1159.00" from="2/3to1/3" to="0/1to0/2"/> + <trip id="car1160" depart="1160.00" from="4/4to4/3" to="3/1to2/1"/> + <trip id="car1161" depart="1161.00" from="3/1to2/1" to="0/0to1/0"/> + <trip id="car1162" depart="1162.00" from="1/4to2/4" to="2/3to2/2"/> + <trip id="car1163" depart="1163.00" from="2/1to3/1" to="0/4to1/4"/> + <trip id="car1164" depart="1164.00" from="1/3to0/3" to="3/1to2/1"/> + <trip id="car1165" depart="1165.00" from="3/1to2/1" to="1/2to1/1"/> + <trip id="car1166" depart="1166.00" from="3/4to4/4" to="0/3to0/2"/> + <trip id="car1167" depart="1167.00" from="3/2to3/1" to="0/3to0/4"/> + <trip id="car1168" depart="1168.00" from="1/2to1/1" to="2/2to3/2"/> + <trip id="car1169" depart="1169.00" from="2/2to2/1" to="1/1to0/1"/> + <trip id="car1170" depart="1170.00" from="4/2to4/3" to="1/3to1/4"/> + <trip id="car1171" depart="1171.00" from="0/0to0/1" to="3/1to3/0"/> + <trip id="car1172" depart="1172.00" from="4/2to3/2" to="3/4to4/4"/> + <trip id="car1173" depart="1173.00" from="3/1to3/0" to="0/4to0/3"/> + <trip id="car1174" depart="1174.00" from="0/2to1/2" to="2/2to2/3"/> + <trip id="car1175" depart="1175.00" from="3/2to3/1" to="0/3to0/2"/> + <trip id="car1176" depart="1176.00" from="4/4to4/3" to="1/2to2/2"/> + <trip id="car1177" depart="1177.00" from="1/0to0/0" to="0/1to0/2"/> + <trip id="car1178" depart="1178.00" from="1/2to2/2" to="3/4to2/4"/> + <trip id="car1179" depart="1179.00" from="1/3to1/2" to="3/2to4/2"/> + <trip id="car1180" depart="1180.00" from="0/2to1/2" to="3/3to2/3"/> + <trip id="car1181" depart="1181.00" from="0/1to0/2" to="4/0to4/1"/> + <trip id="car1182" depart="1182.00" from="3/1to3/0" to="1/0to0/0"/> + <trip id="car1183" depart="1183.00" from="1/4to0/4" to="2/1to2/0"/> + <trip id="car1184" depart="1184.00" from="0/2to1/2" to="3/4to3/3"/> + <trip id="car1185" depart="1185.00" from="4/3to4/2" to="1/2to1/1"/> + <trip id="car1186" depart="1186.00" from="1/4to2/4" to="4/0to4/1"/> + <trip id="car1187" depart="1187.00" from="3/3to4/3" to="3/0to4/0"/> + <trip id="car1188" depart="1188.00" from="3/3to4/3" to="0/3to0/4"/> + <trip id="car1189" depart="1189.00" from="3/1to4/1" to="0/1to1/1"/> + <trip id="car1190" depart="1190.00" from="4/3to3/3" to="0/4to1/4"/> + <trip id="car1191" depart="1191.00" from="2/0to3/0" to="2/4to2/3"/> + <trip id="car1192" depart="1192.00" from="3/4to2/4" to="3/1to3/2"/> + <trip id="car1193" depart="1193.00" from="1/0to1/1" to="1/4to2/4"/> + <trip id="car1194" depart="1194.00" from="1/4to0/4" to="0/1to0/0"/> + <trip id="car1195" depart="1195.00" from="4/3to4/4" to="0/3to1/3"/> + <trip id="car1196" depart="1196.00" from="4/2to4/1" to="0/3to0/4"/> + <trip id="car1197" depart="1197.00" from="2/0to2/1" to="0/1to0/2"/> + <trip id="car1198" depart="1198.00" from="3/3to3/2" to="2/4to1/4"/> + <trip id="car1199" depart="1199.00" from="3/1to3/0" to="1/3to2/3"/> + <trip id="car1200" depart="1200.00" from="0/2to1/2" to="3/1to2/1"/> + <trip id="car1201" depart="1201.00" from="1/1to2/1" to="1/3to2/3"/> + <trip id="car1202" depart="1202.00" from="3/1to3/2" to="1/4to2/4"/> + <trip id="car1203" depart="1203.00" from="4/0to3/0" to="2/3to2/4"/> + <trip id="car1204" depart="1204.00" from="4/4to4/3" to="0/1to1/1"/> + <trip id="car1205" depart="1205.00" from="3/0to4/0" to="0/4to1/4"/> + <trip id="car1206" depart="1206.00" from="4/1to3/1" to="0/2to0/1"/> + <trip id="car1207" depart="1207.00" from="4/3to4/4" to="0/1to1/1"/> + <trip id="car1208" depart="1208.00" from="1/1to1/0" to="3/0to4/0"/> + <trip id="car1209" depart="1209.00" from="2/0to2/1" to="1/1to1/2"/> + <trip id="car1210" depart="1210.00" from="2/1to2/2" to="3/4to2/4"/> + <trip id="car1211" depart="1211.00" from="2/1to2/0" to="4/0to4/1"/> + <trip id="car1212" depart="1212.00" from="2/1to2/0" to="0/3to0/4"/> + <trip id="car1213" depart="1213.00" from="0/3to0/2" to="2/0to2/1"/> + <trip id="car1214" depart="1214.00" from="2/3to2/4" to="0/0to0/1"/> + <trip id="car1215" depart="1215.00" from="0/2to1/2" to="2/4to3/4"/> + <trip id="car1216" depart="1216.00" from="3/0to2/0" to="1/3to0/3"/> + <trip id="car1217" depart="1217.00" from="2/2to2/3" to="1/1to0/1"/> + <trip id="car1218" depart="1218.00" from="1/4to1/3" to="0/1to1/1"/> + <trip id="car1219" depart="1219.00" from="2/3to2/4" to="3/0to2/0"/> + <trip id="car1220" depart="1220.00" from="3/2to3/1" to="0/3to0/4"/> + <trip id="car1221" depart="1221.00" from="3/3to2/3" to="1/1to1/0"/> + <trip id="car1222" depart="1222.00" from="1/3to2/3" to="3/4to4/4"/> + <trip id="car1223" depart="1223.00" from="4/3to4/4" to="1/2to2/2"/> + <trip id="car1224" depart="1224.00" from="0/4to0/3" to="3/2to3/1"/> + <trip id="car1225" depart="1225.00" from="3/2to3/1" to="0/3to0/2"/> + <trip id="car1226" depart="1226.00" from="2/4to3/4" to="1/0to2/0"/> + <trip id="car1227" depart="1227.00" from="4/2to4/3" to="2/0to1/0"/> + <trip id="car1228" depart="1228.00" from="2/1to2/2" to="3/3to3/4"/> + <trip id="car1229" depart="1229.00" from="3/2to3/1" to="0/3to0/2"/> + <trip id="car1230" depart="1230.00" from="2/0to3/0" to="4/2to4/3"/> + <trip id="car1231" depart="1231.00" from="0/3to1/3" to="2/2to2/1"/> + <trip id="car1232" depart="1232.00" from="2/3to1/3" to="0/1to0/2"/> + <trip id="car1233" depart="1233.00" from="4/2to4/3" to="4/0to3/0"/> + <trip id="car1234" depart="1234.00" from="4/2to4/1" to="1/0to1/1"/> + <trip id="car1235" depart="1235.00" from="0/3to1/3" to="1/4to2/4"/> + <trip id="car1236" depart="1236.00" from="2/4to3/4" to="4/1to4/0"/> + <trip id="car1237" depart="1237.00" from="2/2to2/3" to="1/4to2/4"/> + <trip id="car1238" depart="1238.00" from="4/4to3/4" to="4/2to4/1"/> + <trip id="car1239" depart="1239.00" from="3/3to2/3" to="1/2to1/1"/> + <trip id="car1240" depart="1240.00" from="2/1to2/2" to="0/3to1/3"/> + <trip id="car1241" depart="1241.00" from="2/0to3/0" to="3/2to2/2"/> + <trip id="car1242" depart="1242.00" from="3/0to3/1" to="1/1to0/1"/> + <trip id="car1243" depart="1243.00" from="3/0to2/0" to="1/2to2/2"/> + <trip id="car1244" depart="1244.00" from="1/3to2/3" to="3/1to3/0"/> + <trip id="car1245" depart="1245.00" from="4/4to3/4" to="3/1to2/1"/> + <trip id="car1246" depart="1246.00" from="4/3to4/2" to="2/2to2/3"/> + <trip id="car1247" depart="1247.00" from="3/1to4/1" to="1/3to1/2"/> + <trip id="car1248" depart="1248.00" from="3/2to4/2" to="4/0to3/0"/> + <trip id="car1249" depart="1249.00" from="1/2to1/3" to="4/0to3/0"/> + <trip id="car1250" depart="1250.00" from="3/4to2/4" to="2/2to3/2"/> + <trip id="car1251" depart="1251.00" from="0/1to0/0" to="0/4to0/3"/> + <trip id="car1252" depart="1252.00" from="3/3to2/3" to="0/4to1/4"/> + <trip id="car1253" depart="1253.00" from="0/1to0/0" to="3/4to3/3"/> + <trip id="car1254" depart="1254.00" from="0/3to0/2" to="4/1to3/1"/> + <trip id="car1255" depart="1255.00" from="3/2to4/2" to="2/3to2/4"/> + <trip id="car1256" depart="1256.00" from="1/1to2/1" to="3/3to3/4"/> + <trip id="car1257" depart="1257.00" from="3/1to3/0" to="4/2to4/3"/> + <trip id="car1258" depart="1258.00" from="2/0to1/0" to="4/3to4/2"/> + <trip id="car1259" depart="1259.00" from="4/4to3/4" to="1/3to1/2"/> + <trip id="car1260" depart="1260.00" from="2/3to2/4" to="0/0to1/0"/> + <trip id="car1261" depart="1261.00" from="1/2to0/2" to="3/0to2/0"/> + <trip id="car1262" depart="1262.00" from="3/3to3/4" to="4/1to3/1"/> + <trip id="car1263" depart="1263.00" from="3/4to4/4" to="4/2to3/2"/> + <trip id="car1264" depart="1264.00" from="3/2to2/2" to="3/0to4/0"/> + <trip id="car1265" depart="1265.00" from="4/3to4/4" to="1/2to2/2"/> + <trip id="car1266" depart="1266.00" from="1/0to1/1" to="3/1to3/2"/> + <trip id="car1267" depart="1267.00" from="2/2to3/2" to="1/4to2/4"/> + <trip id="car1268" depart="1268.00" from="2/1to1/1" to="2/3to2/4"/> + <trip id="car1269" depart="1269.00" from="1/2to0/2" to="1/3to1/4"/> + <trip id="car1270" depart="1270.00" from="3/2to2/2" to="0/4to1/4"/> + <trip id="car1271" depart="1271.00" from="0/4to1/4" to="1/3to1/2"/> + <trip id="car1272" depart="1272.00" from="0/1to1/1" to="4/2to4/3"/> + <trip id="car1273" depart="1273.00" from="1/4to0/4" to="3/3to3/4"/> + <trip id="car1274" depart="1274.00" from="1/3to1/2" to="1/1to1/0"/> + <trip id="car1275" depart="1275.00" from="2/2to2/3" to="2/0to3/0"/> + <trip id="car1276" depart="1276.00" from="1/1to1/0" to="3/3to2/3"/> + <trip id="car1277" depart="1277.00" from="2/3to1/3" to="4/4to4/3"/> + <trip id="car1278" depart="1278.00" from="0/0to0/1" to="3/1to3/0"/> + <trip id="car1279" depart="1279.00" from="1/3to1/2" to="4/2to4/1"/> + <trip id="car1280" depart="1280.00" from="4/3to3/3" to="1/4to2/4"/> + <trip id="car1281" depart="1281.00" from="2/1to2/0" to="0/1to0/2"/> + <trip id="car1282" depart="1282.00" from="4/1to4/2" to="1/0to2/0"/> + <trip id="car1283" depart="1283.00" from="1/0to0/0" to="4/3to4/2"/> + <trip id="car1284" depart="1284.00" from="2/3to2/2" to="0/0to0/1"/> + <trip id="car1285" depart="1285.00" from="0/2to0/1" to="3/1to3/0"/> + <trip id="car1286" depart="1286.00" from="3/3to3/2" to="4/1to3/1"/> + <trip id="car1287" depart="1287.00" from="2/0to3/0" to="0/3to0/2"/> + <trip id="car1288" depart="1288.00" from="3/0to4/0" to="4/3to3/3"/> + <trip id="car1289" depart="1289.00" from="3/2to4/2" to="0/4to1/4"/> + <trip id="car1290" depart="1290.00" from="2/1to2/2" to="1/3to1/4"/> + <trip id="car1291" depart="1291.00" from="1/2to0/2" to="2/0to1/0"/> + <trip id="car1292" depart="1292.00" from="3/0to3/1" to="2/1to1/1"/> + <trip id="car1293" depart="1293.00" from="0/0to1/0" to="3/1to3/0"/> + <trip id="car1294" depart="1294.00" from="2/3to1/3" to="3/0to4/0"/> + <trip id="car1295" depart="1295.00" from="3/0to2/0" to="3/3to2/3"/> + <trip id="car1296" depart="1296.00" from="2/4to1/4" to="3/2to2/2"/> + <trip id="car1297" depart="1297.00" from="0/2to0/1" to="4/2to4/3"/> + <trip id="car1298" depart="1298.00" from="0/3to0/2" to="3/3to3/4"/> + <trip id="car1299" depart="1299.00" from="3/3to3/2" to="2/1to2/0"/> + <trip id="car1300" depart="1300.00" from="2/1to3/1" to="2/3to1/3"/> + <trip id="car1301" depart="1301.00" from="0/3to1/3" to="2/0to1/0"/> + <trip id="car1302" depart="1302.00" from="4/3to4/2" to="0/4to0/3"/> + <trip id="car1303" depart="1303.00" from="1/4to1/3" to="4/3to3/3"/> + <trip id="car1304" depart="1304.00" from="0/3to0/4" to="0/0to0/1"/> + <trip id="car1305" depart="1305.00" from="4/3to3/3" to="1/3to0/3"/> + <trip id="car1306" depart="1306.00" from="1/3to2/3" to="2/0to3/0"/> + <trip id="car1307" depart="1307.00" from="3/0to4/0" to="2/2to3/2"/> + <trip id="car1308" depart="1308.00" from="0/4to1/4" to="1/1to1/0"/> + <trip id="car1309" depart="1309.00" from="3/4to4/4" to="1/0to2/0"/> + <trip id="car1310" depart="1310.00" from="1/0to1/1" to="3/3to4/3"/> + <trip id="car1311" depart="1311.00" from="0/2to1/2" to="3/2to3/3"/> + <trip id="car1312" depart="1312.00" from="2/2to1/2" to="1/3to1/4"/> + <trip id="car1313" depart="1313.00" from="0/3to1/3" to="3/1to2/1"/> + <trip id="car1314" depart="1314.00" from="0/3to0/2" to="3/0to2/0"/> + <trip id="car1315" depart="1315.00" from="4/2to3/2" to="1/3to1/2"/> + <trip id="car1316" depart="1316.00" from="1/3to1/2" to="2/1to1/1"/> + <trip id="car1317" depart="1317.00" from="0/0to0/1" to="1/1to2/1"/> + <trip id="car1318" depart="1318.00" from="1/1to1/0" to="3/2to4/2"/> + <trip id="car1319" depart="1319.00" from="0/3to1/3" to="3/2to3/3"/> + <trip id="car1320" depart="1320.00" from="2/3to2/4" to="1/0to1/1"/> + <trip id="car1321" depart="1321.00" from="2/4to3/4" to="4/0to3/0"/> + <trip id="car1322" depart="1322.00" from="4/0to4/1" to="0/4to0/3"/> + <trip id="car1323" depart="1323.00" from="2/3to2/2" to="1/2to1/1"/> + <trip id="car1324" depart="1324.00" from="4/1to4/0" to="0/2to0/3"/> + <trip id="car1325" depart="1325.00" from="0/2to0/3" to="0/0to1/0"/> + <trip id="car1326" depart="1326.00" from="2/2to2/3" to="0/1to0/0"/> + <trip id="car1327" depart="1327.00" from="2/4to1/4" to="2/0to2/1"/> + <trip id="car1328" depart="1328.00" from="2/4to2/3" to="4/2to3/2"/> + <trip id="car1329" depart="1329.00" from="4/4to4/3" to="2/1to3/1"/> + <trip id="car1330" depart="1330.00" from="3/3to3/4" to="1/4to1/3"/> + <trip id="car1331" depart="1331.00" from="1/1to1/0" to="3/3to3/2"/> + <trip id="car1332" depart="1332.00" from="2/1to3/1" to="2/2to2/3"/> + <trip id="car1333" depart="1333.00" from="2/0to1/0" to="2/2to2/3"/> + <trip id="car1334" depart="1334.00" from="3/4to2/4" to="3/0to2/0"/> + <trip id="car1335" depart="1335.00" from="1/0to0/0" to="2/2to3/2"/> + <trip id="car1336" depart="1336.00" from="4/3to3/3" to="3/1to2/1"/> + <trip id="car1337" depart="1337.00" from="2/2to1/2" to="1/4to0/4"/> + <trip id="car1338" depart="1338.00" from="4/2to3/2" to="1/4to0/4"/> + <trip id="car1339" depart="1339.00" from="0/1to0/2" to="4/4to3/4"/> + <trip id="car1340" depart="1340.00" from="2/2to3/2" to="3/4to4/4"/> + <trip id="car1341" depart="1341.00" from="3/4to4/4" to="1/2to1/1"/> + <trip id="car1342" depart="1342.00" from="2/3to2/2" to="1/0to0/0"/> + <trip id="car1343" depart="1343.00" from="3/1to2/1" to="1/4to1/3"/> + <trip id="car1344" depart="1344.00" from="3/1to2/1" to="3/4to4/4"/> + <trip id="car1345" depart="1345.00" from="2/2to3/2" to="1/4to2/4"/> + <trip id="car1346" depart="1346.00" from="1/4to0/4" to="4/1to3/1"/> + <trip id="car1347" depart="1347.00" from="0/4to0/3" to="1/0to0/0"/> + <trip id="car1348" depart="1348.00" from="0/2to0/3" to="3/0to4/0"/> + <trip id="car1349" depart="1349.00" from="1/4to0/4" to="3/2to3/1"/> + <trip id="car1350" depart="1350.00" from="3/4to2/4" to="3/2to3/1"/> + <trip id="car1351" depart="1351.00" from="1/1to0/1" to="0/4to1/4"/> + <trip id="car1352" depart="1352.00" from="3/4to4/4" to="0/0to1/0"/> + <trip id="car1353" depart="1353.00" from="0/1to0/2" to="2/3to3/3"/> + <trip id="car1354" depart="1354.00" from="0/4to1/4" to="3/0to3/1"/> + <trip id="car1355" depart="1355.00" from="0/1to0/2" to="2/3to3/3"/> + <trip id="car1356" depart="1356.00" from="1/0to1/1" to="4/3to4/2"/> + <trip id="car1357" depart="1357.00" from="0/0to1/0" to="3/2to3/1"/> + <trip id="car1358" depart="1358.00" from="3/1to2/1" to="1/2to1/3"/> + <trip id="car1359" depart="1359.00" from="0/2to0/3" to="2/1to2/0"/> + <trip id="car1360" depart="1360.00" from="4/4to4/3" to="4/1to3/1"/> + <trip id="car1361" depart="1361.00" from="1/0to0/0" to="3/4to4/4"/> + <trip id="car1362" depart="1362.00" from="2/4to3/4" to="3/3to4/3"/> + <trip id="car1363" depart="1363.00" from="3/4to3/3" to="1/0to1/1"/> + <trip id="car1364" depart="1364.00" from="3/1to2/1" to="1/2to1/1"/> + <trip id="car1365" depart="1365.00" from="2/1to2/2" to="2/4to2/3"/> + <trip id="car1366" depart="1366.00" from="1/1to1/2" to="1/4to2/4"/> + <trip id="car1367" depart="1367.00" from="0/3to0/2" to="1/1to0/1"/> + <trip id="car1368" depart="1368.00" from="4/0to4/1" to="2/2to2/3"/> + <trip id="car1369" depart="1369.00" from="2/0to3/0" to="0/4to0/3"/> + <trip id="car1370" depart="1370.00" from="3/0to2/0" to="0/1to0/2"/> + <trip id="car1371" depart="1371.00" from="0/3to1/3" to="2/4to3/4"/> + <trip id="car1372" depart="1372.00" from="3/4to4/4" to="4/1to4/2"/> + <trip id="car1373" depart="1373.00" from="3/3to3/2" to="3/0to4/0"/> + <trip id="car1374" depart="1374.00" from="0/1to0/2" to="2/3to1/3"/> + <trip id="car1375" depart="1375.00" from="1/1to1/2" to="3/4to2/4"/> + <trip id="car1376" depart="1376.00" from="2/4to2/3" to="3/2to4/2"/> + <trip id="car1377" depart="1377.00" from="3/3to2/3" to="3/1to4/1"/> + <trip id="car1378" depart="1378.00" from="4/0to4/1" to="1/2to1/3"/> + <trip id="car1379" depart="1379.00" from="4/1to4/0" to="2/0to2/1"/> + <trip id="car1380" depart="1380.00" from="1/0to2/0" to="3/2to2/2"/> + <trip id="car1381" depart="1381.00" from="3/3to4/3" to="2/4to1/4"/> + <trip id="car1382" depart="1382.00" from="0/3to0/4" to="0/0to0/1"/> + <trip id="car1383" depart="1383.00" from="0/4to1/4" to="3/1to2/1"/> + <trip id="car1384" depart="1384.00" from="1/2to0/2" to="4/0to4/1"/> + <trip id="car1385" depart="1385.00" from="2/0to3/0" to="1/4to1/3"/> + <trip id="car1386" depart="1386.00" from="1/2to1/3" to="3/1to3/2"/> + <trip id="car1387" depart="1387.00" from="3/3to2/3" to="2/0to3/0"/> + <trip id="car1388" depart="1388.00" from="3/3to3/4" to="2/2to1/2"/> + <trip id="car1389" depart="1389.00" from="2/1to2/0" to="3/1to4/1"/> + <trip id="car1390" depart="1390.00" from="0/4to1/4" to="1/1to1/0"/> + <trip id="car1391" depart="1391.00" from="2/0to2/1" to="1/3to2/3"/> + <trip id="car1392" depart="1392.00" from="2/3to2/4" to="3/1to4/1"/> + <trip id="car1393" depart="1393.00" from="3/2to2/2" to="0/4to1/4"/> + <trip id="car1394" depart="1394.00" from="4/3to4/4" to="0/0to0/1"/> + <trip id="car1395" depart="1395.00" from="4/2to4/3" to="2/1to1/1"/> + <trip id="car1396" depart="1396.00" from="0/2to0/1" to="1/1to1/0"/> + <trip id="car1397" depart="1397.00" from="1/4to2/4" to="4/4to3/4"/> + <trip id="car1398" depart="1398.00" from="3/0to2/0" to="2/2to3/2"/> + <trip id="car1399" depart="1399.00" from="3/4to2/4" to="1/2to1/3"/> + <trip id="car1400" depart="1400.00" from="0/1to0/0" to="2/4to2/3"/> + <trip id="car1401" depart="1401.00" from="0/4to1/4" to="4/4to4/3"/> + <trip id="car1402" depart="1402.00" from="3/3to3/4" to="1/4to0/4"/> + <trip id="car1403" depart="1403.00" from="2/0to1/0" to="2/4to1/4"/> + <trip id="car1404" depart="1404.00" from="1/2to1/3" to="3/4to4/4"/> + <trip id="car1405" depart="1405.00" from="4/2to4/1" to="1/3to2/3"/> + <trip id="car1406" depart="1406.00" from="4/3to4/4" to="1/2to1/3"/> + <trip id="car1407" depart="1407.00" from="2/4to3/4" to="1/0to2/0"/> + <trip id="car1408" depart="1408.00" from="0/3to0/2" to="0/2to0/1"/> + <trip id="car1409" depart="1409.00" from="1/2to2/2" to="4/3to3/3"/> + <trip id="car1410" depart="1410.00" from="3/4to2/4" to="4/3to4/2"/> + <trip id="car1411" depart="1411.00" from="4/1to4/0" to="3/4to3/3"/> + <trip id="car1412" depart="1412.00" from="2/3to3/3" to="3/1to4/1"/> + <trip id="car1413" depart="1413.00" from="4/3to4/2" to="2/1to2/2"/> + <trip id="car1414" depart="1414.00" from="2/1to2/2" to="2/4to1/4"/> + <trip id="car1415" depart="1415.00" from="0/1to0/0" to="0/3to0/4"/> + <trip id="car1416" depart="1416.00" from="0/2to0/1" to="3/0to3/1"/> + <trip id="car1417" depart="1417.00" from="4/4to4/3" to="3/1to3/2"/> + <trip id="car1418" depart="1418.00" from="0/0to0/1" to="3/4to4/4"/> + <trip id="car1419" depart="1419.00" from="3/1to3/0" to="3/4to3/3"/> + <trip id="car1420" depart="1420.00" from="0/2to0/3" to="4/2to4/3"/> + <trip id="car1421" depart="1421.00" from="2/2to1/2" to="1/4to0/4"/> + <trip id="car1422" depart="1422.00" from="4/1to4/2" to="1/2to1/1"/> + <trip id="car1423" depart="1423.00" from="4/2to3/2" to="2/2to2/1"/> + <trip id="car1424" depart="1424.00" from="1/0to2/0" to="3/2to3/3"/> + <trip id="car1425" depart="1425.00" from="4/1to3/1" to="1/1to0/1"/> + <trip id="car1426" depart="1426.00" from="3/0to2/0" to="0/4to1/4"/> + <trip id="car1427" depart="1427.00" from="0/3to0/2" to="4/2to4/1"/> + <trip id="car1428" depart="1428.00" from="3/0to2/0" to="3/3to3/2"/> + <trip id="car1429" depart="1429.00" from="2/3to2/2" to="0/1to0/2"/> + <trip id="car1430" depart="1430.00" from="2/2to1/2" to="3/0to2/0"/> + <trip id="car1431" depart="1431.00" from="2/2to2/1" to="4/4to3/4"/> + <trip id="car1432" depart="1432.00" from="2/2to2/1" to="4/4to3/4"/> + <trip id="car1433" depart="1433.00" from="4/2to4/1" to="1/2to1/3"/> + <trip id="car1434" depart="1434.00" from="1/1to1/0" to="2/4to1/4"/> + <trip id="car1435" depart="1435.00" from="0/1to1/1" to="3/3to4/3"/> + <trip id="car1436" depart="1436.00" from="2/2to2/3" to="2/0to1/0"/> + <trip id="car1437" depart="1437.00" from="3/1to3/2" to="1/0to0/0"/> + <trip id="car1438" depart="1438.00" from="4/4to3/4" to="3/1to4/1"/> + <trip id="car1439" depart="1439.00" from="2/1to2/2" to="3/1to4/1"/> + <trip id="car1440" depart="1440.00" from="3/0to2/0" to="1/2to0/2"/> + <trip id="car1441" depart="1441.00" from="1/4to1/3" to="2/2to2/1"/> + <trip id="car1442" depart="1442.00" from="1/4to1/3" to="4/0to4/1"/> + <trip id="car1443" depart="1443.00" from="2/1to1/1" to="1/4to2/4"/> + <trip id="car1444" depart="1444.00" from="0/4to0/3" to="4/3to4/2"/> + <trip id="car1445" depart="1445.00" from="0/4to0/3" to="3/4to2/4"/> + <trip id="car1446" depart="1446.00" from="4/4to4/3" to="4/0to3/0"/> + <trip id="car1447" depart="1447.00" from="3/3to3/4" to="1/3to0/3"/> + <trip id="car1448" depart="1448.00" from="2/0to1/0" to="3/1to4/1"/> + <trip id="car1449" depart="1449.00" from="0/1to1/1" to="3/4to3/3"/> + <trip id="car1450" depart="1450.00" from="2/1to2/0" to="1/3to1/4"/> + <trip id="car1451" depart="1451.00" from="4/2to4/3" to="1/2to0/2"/> + <trip id="car1452" depart="1452.00" from="0/0to1/0" to="0/3to0/4"/> + <trip id="car1453" depart="1453.00" from="4/1to3/1" to="4/3to4/4"/> + <trip id="car1454" depart="1454.00" from="1/0to2/0" to="2/4to1/4"/> + <trip id="car1455" depart="1455.00" from="3/0to4/0" to="1/0to0/0"/> + <trip id="car1456" depart="1456.00" from="3/3to3/4" to="1/4to0/4"/> + <trip id="car1457" depart="1457.00" from="3/1to3/0" to="2/2to1/2"/> + <trip id="car1458" depart="1458.00" from="3/0to3/1" to="0/4to0/3"/> + <trip id="car1459" depart="1459.00" from="1/0to0/0" to="3/4to2/4"/> + <trip id="car1460" depart="1460.00" from="1/3to1/4" to="3/0to3/1"/> + <trip id="car1461" depart="1461.00" from="2/3to3/3" to="4/0to3/0"/> + <trip id="car1462" depart="1462.00" from="0/2to0/1" to="0/4to1/4"/> + <trip id="car1463" depart="1463.00" from="3/0to4/0" to="1/2to1/1"/> + <trip id="car1464" depart="1464.00" from="4/3to4/4" to="2/0to3/0"/> + <trip id="car1465" depart="1465.00" from="4/3to3/3" to="3/2to2/2"/> + <trip id="car1466" depart="1466.00" from="0/2to0/3" to="1/0to0/0"/> + <trip id="car1467" depart="1467.00" from="0/3to0/2" to="0/2to0/1"/> + <trip id="car1468" depart="1468.00" from="4/1to4/0" to="2/3to2/2"/> + <trip id="car1469" depart="1469.00" from="3/3to3/2" to="0/2to0/3"/> + <trip id="car1470" depart="1470.00" from="1/2to0/2" to="0/4to1/4"/> + <trip id="car1471" depart="1471.00" from="1/3to0/3" to="1/1to2/1"/> + <trip id="car1472" depart="1472.00" from="1/2to1/3" to="3/0to3/1"/> + <trip id="car1473" depart="1473.00" from="0/3to1/3" to="4/0to3/0"/> + <trip id="car1474" depart="1474.00" from="0/1to0/0" to="3/1to3/0"/> + <trip id="car1475" depart="1475.00" from="4/0to4/1" to="1/3to1/4"/> + <trip id="car1476" depart="1476.00" from="2/2to1/2" to="4/3to4/4"/> + <trip id="car1477" depart="1477.00" from="2/3to2/2" to="1/2to1/1"/> + <trip id="car1478" depart="1478.00" from="2/1to2/0" to="4/3to4/4"/> + <trip id="car1479" depart="1479.00" from="3/1to4/1" to="1/0to1/1"/> + <trip id="car1480" depart="1480.00" from="2/4to2/3" to="3/0to3/1"/> + <trip id="car1481" depart="1481.00" from="3/0to3/1" to="2/3to3/3"/> + <trip id="car1482" depart="1482.00" from="2/2to3/2" to="3/0to4/0"/> + <trip id="car1483" depart="1483.00" from="2/1to2/0" to="1/4to1/3"/> + <trip id="car1484" depart="1484.00" from="0/0to0/1" to="3/4to3/3"/> + <trip id="car1485" depart="1485.00" from="4/0to3/0" to="1/3to2/3"/> + <trip id="car1486" depart="1486.00" from="2/1to3/1" to="0/0to0/1"/> + <trip id="car1487" depart="1487.00" from="2/2to1/2" to="0/0to0/1"/> + <trip id="car1488" depart="1488.00" from="1/4to1/3" to="2/0to2/1"/> + <trip id="car1489" depart="1489.00" from="2/3to2/4" to="2/0to1/0"/> + <trip id="car1490" depart="1490.00" from="1/0to0/0" to="3/2to3/3"/> + <trip id="car1491" depart="1491.00" from="2/0to1/0" to="1/4to2/4"/> + <trip id="car1492" depart="1492.00" from="1/2to1/1" to="2/0to3/0"/> + <trip id="car1493" depart="1493.00" from="1/1to2/1" to="3/3to3/2"/> + <trip id="car1494" depart="1494.00" from="4/2to3/2" to="3/4to2/4"/> + <trip id="car1495" depart="1495.00" from="3/1to3/2" to="1/2to1/3"/> + <trip id="car1496" depart="1496.00" from="3/2to4/2" to="3/4to2/4"/> + <trip id="car1497" depart="1497.00" from="2/0to3/0" to="4/0to4/1"/> + <trip id="car1498" depart="1498.00" from="1/0to1/1" to="1/2to2/2"/> + <trip id="car1499" depart="1499.00" from="1/2to1/1" to="3/0to2/0"/> + <trip id="car1500" depart="1500.00" from="0/1to0/2" to="2/3to1/3"/> + <trip id="car1501" depart="1501.00" from="1/0to1/1" to="0/3to0/2"/> + <trip id="car1502" depart="1502.00" from="1/2to1/1" to="3/2to3/1"/> + <trip id="car1503" depart="1503.00" from="3/2to3/3" to="1/1to1/2"/> + <trip id="car1504" depart="1504.00" from="0/4to1/4" to="2/2to2/1"/> + <trip id="car1505" depart="1505.00" from="2/1to3/1" to="3/3to4/3"/> + <trip id="car1506" depart="1506.00" from="1/3to1/4" to="4/0to3/0"/> + <trip id="car1507" depart="1507.00" from="4/3to4/2" to="0/1to1/1"/> + <trip id="car1508" depart="1508.00" from="3/3to3/4" to="0/2to0/1"/> + <trip id="car1509" depart="1509.00" from="4/0to3/0" to="3/4to3/3"/> + <trip id="car1510" depart="1510.00" from="3/4to4/4" to="0/3to0/4"/> + <trip id="car1511" depart="1511.00" from="3/3to3/2" to="1/1to2/1"/> + <trip id="car1512" depart="1512.00" from="3/3to3/2" to="2/1to2/0"/> + <trip id="car1513" depart="1513.00" from="3/2to4/2" to="0/1to0/0"/> + <trip id="car1514" depart="1514.00" from="2/2to3/2" to="4/4to3/4"/> + <trip id="car1515" depart="1515.00" from="3/0to3/1" to="0/1to0/2"/> + <trip id="car1516" depart="1516.00" from="1/2to0/2" to="3/0to4/0"/> + <trip id="car1517" depart="1517.00" from="1/0to2/0" to="4/1to4/2"/> + <trip id="car1518" depart="1518.00" from="4/1to3/1" to="1/1to1/0"/> + <trip id="car1519" depart="1519.00" from="0/3to0/4" to="3/0to3/1"/> + <trip id="car1520" depart="1520.00" from="1/3to1/2" to="1/0to0/0"/> + <trip id="car1521" depart="1521.00" from="1/2to1/3" to="0/3to0/4"/> + <trip id="car1522" depart="1522.00" from="3/3to4/3" to="0/0to0/1"/> + <trip id="car1523" depart="1523.00" from="0/1to0/2" to="3/3to3/4"/> + <trip id="car1524" depart="1524.00" from="1/4to1/3" to="0/2to1/2"/> + <trip id="car1525" depart="1525.00" from="0/4to1/4" to="0/2to1/2"/> + <trip id="car1526" depart="1526.00" from="3/0to2/0" to="4/2to4/3"/> + <trip id="car1527" depart="1527.00" from="4/4to4/3" to="3/0to3/1"/> + <trip id="car1528" depart="1528.00" from="0/1to1/1" to="3/0to4/0"/> + <trip id="car1529" depart="1529.00" from="3/1to4/1" to="1/4to0/4"/> + <trip id="car1530" depart="1530.00" from="0/3to1/3" to="4/1to4/2"/> + <trip id="car1531" depart="1531.00" from="2/2to1/2" to="2/1to2/0"/> + <trip id="car1532" depart="1532.00" from="1/2to2/2" to="3/1to4/1"/> + <trip id="car1533" depart="1533.00" from="1/3to2/3" to="3/2to3/3"/> + <trip id="car1534" depart="1534.00" from="1/2to1/3" to="3/4to4/4"/> + <trip id="car1535" depart="1535.00" from="4/2to4/1" to="2/3to2/4"/> + <trip id="car1536" depart="1536.00" from="0/2to0/1" to="0/4to1/4"/> + <trip id="car1537" depart="1537.00" from="1/4to1/3" to="0/0to0/1"/> + <trip id="car1538" depart="1538.00" from="3/0to4/0" to="1/4to2/4"/> + <trip id="car1539" depart="1539.00" from="4/0to4/1" to="3/3to3/4"/> + <trip id="car1540" depart="1540.00" from="1/1to2/1" to="3/2to3/1"/> + <trip id="car1541" depart="1541.00" from="1/4to2/4" to="2/2to3/2"/> + <trip id="car1542" depart="1542.00" from="2/2to2/1" to="2/3to2/4"/> + <trip id="car1543" depart="1543.00" from="3/0to2/0" to="1/3to1/2"/> + <trip id="car1544" depart="1544.00" from="3/0to4/0" to="0/3to0/2"/> + <trip id="car1545" depart="1545.00" from="2/2to3/2" to="0/2to0/1"/> + <trip id="car1546" depart="1546.00" from="3/4to4/4" to="0/3to1/3"/> + <trip id="car1547" depart="1547.00" from="4/1to3/1" to="1/1to0/1"/> + <trip id="car1548" depart="1548.00" from="2/3to3/3" to="3/4to4/4"/> + <trip id="car1549" depart="1549.00" from="3/1to2/1" to="2/3to1/3"/> + <trip id="car1550" depart="1550.00" from="3/2to2/2" to="1/2to0/2"/> + <trip id="car1551" depart="1551.00" from="1/4to1/3" to="2/4to3/4"/> + <trip id="car1552" depart="1552.00" from="0/2to0/1" to="4/2to4/3"/> + <trip id="car1553" depart="1553.00" from="4/1to4/2" to="0/2to0/3"/> + <trip id="car1554" depart="1554.00" from="3/4to2/4" to="0/1to1/1"/> + <trip id="car1555" depart="1555.00" from="2/0to3/0" to="1/4to1/3"/> + <trip id="car1556" depart="1556.00" from="0/2to1/2" to="3/2to3/3"/> + <trip id="car1557" depart="1557.00" from="2/3to1/3" to="1/0to2/0"/> + <trip id="car1558" depart="1558.00" from="2/3to1/3" to="1/1to2/1"/> + <trip id="car1559" depart="1559.00" from="3/0to3/1" to="1/0to1/1"/> + <trip id="car1560" depart="1560.00" from="3/2to4/2" to="2/0to3/0"/> + <trip id="car1561" depart="1561.00" from="0/3to0/2" to="3/0to4/0"/> + <trip id="car1562" depart="1562.00" from="1/4to0/4" to="2/1to2/2"/> + <trip id="car1563" depart="1563.00" from="2/0to2/1" to="1/3to2/3"/> + <trip id="car1564" depart="1564.00" from="0/4to1/4" to="4/4to4/3"/> + <trip id="car1565" depart="1565.00" from="2/1to2/0" to="1/4to0/4"/> + <trip id="car1566" depart="1566.00" from="1/3to1/2" to="4/4to4/3"/> + <trip id="car1567" depart="1567.00" from="3/3to3/2" to="2/1to1/1"/> + <trip id="car1568" depart="1568.00" from="3/2to3/3" to="2/4to3/4"/> + <trip id="car1569" depart="1569.00" from="2/3to3/3" to="1/1to1/0"/> + <trip id="car1570" depart="1570.00" from="1/2to0/2" to="4/3to4/2"/> + <trip id="car1571" depart="1571.00" from="3/2to3/3" to="4/4to3/4"/> + <trip id="car1572" depart="1572.00" from="2/4to2/3" to="2/2to3/2"/> + <trip id="car1573" depart="1573.00" from="4/4to4/3" to="1/3to0/3"/> + <trip id="car1574" depart="1574.00" from="1/3to0/3" to="1/1to1/0"/> + <trip id="car1575" depart="1575.00" from="4/0to4/1" to="0/0to1/0"/> + <trip id="car1576" depart="1576.00" from="3/4to3/3" to="3/1to4/1"/> + <trip id="car1577" depart="1577.00" from="1/2to1/3" to="2/3to2/4"/> + <trip id="car1578" depart="1578.00" from="2/3to2/4" to="4/2to4/3"/> + <trip id="car1579" depart="1579.00" from="0/4to1/4" to="0/1to0/2"/> + <trip id="car1580" depart="1580.00" from="1/1to1/2" to="3/4to2/4"/> + <trip id="car1581" depart="1581.00" from="0/2to1/2" to="2/0to1/0"/> + <trip id="car1582" depart="1582.00" from="1/0to0/0" to="3/4to4/4"/> + <trip id="car1583" depart="1583.00" from="3/1to4/1" to="2/4to1/4"/> + <trip id="car1584" depart="1584.00" from="4/2to3/2" to="2/4to2/3"/> + <trip id="car1585" depart="1585.00" from="1/3to0/3" to="3/2to3/3"/> + <trip id="car1586" depart="1586.00" from="2/4to1/4" to="0/2to0/3"/> + <trip id="car1587" depart="1587.00" from="0/1to1/1" to="3/3to3/2"/> + <trip id="car1588" depart="1588.00" from="1/3to2/3" to="3/4to3/3"/> + <trip id="car1589" depart="1589.00" from="4/1to3/1" to="1/1to1/2"/> + <trip id="car1590" depart="1590.00" from="3/1to2/1" to="2/4to3/4"/> + <trip id="car1591" depart="1591.00" from="0/0to0/1" to="3/3to3/4"/> + <trip id="car1592" depart="1592.00" from="0/1to0/2" to="2/3to2/2"/> + <trip id="car1593" depart="1593.00" from="0/4to0/3" to="2/2to2/3"/> + <trip id="car1594" depart="1594.00" from="3/2to3/3" to="2/0to1/0"/> + <trip id="car1595" depart="1595.00" from="2/1to2/0" to="2/4to2/3"/> + <trip id="car1596" depart="1596.00" from="2/2to2/3" to="1/1to1/0"/> + <trip id="car1597" depart="1597.00" from="1/2to2/2" to="2/0to1/0"/> + <trip id="car1598" depart="1598.00" from="2/3to3/3" to="0/1to0/2"/> + <trip id="car1599" depart="1599.00" from="2/0to1/0" to="0/2to0/3"/> + <trip id="car1600" depart="1600.00" from="2/3to2/4" to="2/2to2/1"/> + <trip id="car1601" depart="1601.00" from="3/0to2/0" to="3/2to3/3"/> + <trip id="car1602" depart="1602.00" from="3/3to3/4" to="1/3to1/2"/> + <trip id="car1603" depart="1603.00" from="4/2to4/1" to="0/2to1/2"/> + <trip id="car1604" depart="1604.00" from="2/4to2/3" to="0/0to1/0"/> + <trip id="car1605" depart="1605.00" from="1/3to0/3" to="4/4to4/3"/> + <trip id="car1606" depart="1606.00" from="3/0to2/0" to="4/4to4/3"/> + <trip id="car1607" depart="1607.00" from="2/1to2/0" to="0/4to0/3"/> + <trip id="car1608" depart="1608.00" from="0/1to0/2" to="3/4to3/3"/> + <trip id="car1609" depart="1609.00" from="1/0to2/0" to="1/4to1/3"/> + <trip id="car1610" depart="1610.00" from="3/3to2/3" to="4/0to4/1"/> + <trip id="car1611" depart="1611.00" from="0/3to0/2" to="0/1to1/1"/> + <trip id="car1612" depart="1612.00" from="4/1to3/1" to="3/4to3/3"/> + <trip id="car1613" depart="1613.00" from="0/0to1/0" to="3/1to4/1"/> + <trip id="car1614" depart="1614.00" from="0/3to0/2" to="2/1to2/2"/> + <trip id="car1615" depart="1615.00" from="2/3to2/2" to="1/1to0/1"/> + <trip id="car1616" depart="1616.00" from="2/2to3/2" to="1/2to0/2"/> + <trip id="car1617" depart="1617.00" from="0/4to0/3" to="3/1to4/1"/> + <trip id="car1618" depart="1618.00" from="0/0to1/0" to="2/4to1/4"/> + <trip id="car1619" depart="1619.00" from="3/1to3/0" to="0/1to0/2"/> + <trip id="car1620" depart="1620.00" from="1/0to0/0" to="1/2to1/3"/> + <trip id="car1621" depart="1621.00" from="3/3to4/3" to="3/0to2/0"/> + <trip id="car1622" depart="1622.00" from="0/1to1/1" to="3/1to2/1"/> + <trip id="car1623" depart="1623.00" from="1/2to1/1" to="4/0to4/1"/> + <trip id="car1624" depart="1624.00" from="0/0to1/0" to="4/1to3/1"/> + <trip id="car1625" depart="1625.00" from="3/0to4/0" to="1/1to1/2"/> + <trip id="car1626" depart="1626.00" from="1/4to2/4" to="4/4to3/4"/> + <trip id="car1627" depart="1627.00" from="4/1to3/1" to="2/3to1/3"/> + <trip id="car1628" depart="1628.00" from="1/0to1/1" to="2/2to2/3"/> + <trip id="car1629" depart="1629.00" from="2/1to2/2" to="4/2to4/3"/> + <trip id="car1630" depart="1630.00" from="0/0to1/0" to="1/1to2/1"/> + <trip id="car1631" depart="1631.00" from="2/0to1/0" to="0/4to1/4"/> + <trip id="car1632" depart="1632.00" from="3/0to3/1" to="1/1to1/2"/> + <trip id="car1633" depart="1633.00" from="4/4to3/4" to="2/2to2/3"/> + <trip id="car1634" depart="1634.00" from="3/4to2/4" to="3/0to3/1"/> + <trip id="car1635" depart="1635.00" from="3/4to3/3" to="0/1to0/0"/> + <trip id="car1636" depart="1636.00" from="0/4to1/4" to="4/1to4/2"/> + <trip id="car1637" depart="1637.00" from="3/1to2/1" to="0/2to1/2"/> + <trip id="car1638" depart="1638.00" from="1/4to2/4" to="4/3to4/2"/> + <trip id="car1639" depart="1639.00" from="2/4to3/4" to="3/0to3/1"/> + <trip id="car1640" depart="1640.00" from="0/4to1/4" to="4/3to4/4"/> + <trip id="car1641" depart="1641.00" from="4/2to3/2" to="1/3to1/4"/> + <trip id="car1642" depart="1642.00" from="2/3to2/2" to="1/1to0/1"/> + <trip id="car1643" depart="1643.00" from="0/4to0/3" to="2/3to2/2"/> + <trip id="car1644" depart="1644.00" from="3/4to2/4" to="4/1to3/1"/> + <trip id="car1645" depart="1645.00" from="0/4to0/3" to="4/2to4/3"/> + <trip id="car1646" depart="1646.00" from="4/2to4/1" to="1/3to1/2"/> + <trip id="car1647" depart="1647.00" from="4/1to4/0" to="3/2to3/3"/> + <trip id="car1648" depart="1648.00" from="3/3to3/2" to="4/1to4/0"/> + <trip id="car1649" depart="1649.00" from="2/1to2/0" to="4/2to4/3"/> + <trip id="car1650" depart="1650.00" from="4/1to4/2" to="4/2to4/3"/> + <trip id="car1651" depart="1651.00" from="1/2to1/1" to="3/3to3/4"/> + <trip id="car1652" depart="1652.00" from="0/3to0/2" to="1/0to1/1"/> + <trip id="car1653" depart="1653.00" from="1/2to1/1" to="2/3to3/3"/> + <trip id="car1654" depart="1654.00" from="3/1to3/2" to="1/4to0/4"/> + <trip id="car1655" depart="1655.00" from="3/1to4/1" to="2/2to1/2"/> + <trip id="car1656" depart="1656.00" from="2/2to2/3" to="2/4to3/4"/> + <trip id="car1657" depart="1657.00" from="3/2to2/2" to="1/4to1/3"/> + <trip id="car1658" depart="1658.00" from="4/0to4/1" to="2/2to2/1"/> + <trip id="car1659" depart="1659.00" from="0/4to0/3" to="1/0to2/0"/> + <trip id="car1660" depart="1660.00" from="0/1to0/0" to="3/3to3/2"/> + <trip id="car1661" depart="1661.00" from="2/0to3/0" to="3/2to4/2"/> + <trip id="car1662" depart="1662.00" from="4/4to4/3" to="3/3to2/3"/> + <trip id="car1663" depart="1663.00" from="0/2to0/1" to="4/2to4/3"/> + <trip id="car1664" depart="1664.00" from="4/4to3/4" to="4/1to3/1"/> + <trip id="car1665" depart="1665.00" from="2/0to2/1" to="0/1to0/2"/> + <trip id="car1666" depart="1666.00" from="3/2to3/3" to="1/4to2/4"/> + <trip id="car1667" depart="1667.00" from="1/3to1/2" to="2/4to3/4"/> + <trip id="car1668" depart="1668.00" from="2/3to1/3" to="4/1to4/0"/> + <trip id="car1669" depart="1669.00" from="2/1to2/2" to="3/4to4/4"/> + <trip id="car1670" depart="1670.00" from="0/1to0/2" to="4/4to4/3"/> + <trip id="car1671" depart="1671.00" from="2/2to3/2" to="2/0to1/0"/> + <trip id="car1672" depart="1672.00" from="3/2to3/3" to="2/3to2/4"/> + <trip id="car1673" depart="1673.00" from="0/1to0/2" to="1/2to2/2"/> + <trip id="car1674" depart="1674.00" from="2/0to1/0" to="1/3to0/3"/> + <trip id="car1675" depart="1675.00" from="3/4to4/4" to="2/1to2/2"/> + <trip id="car1676" depart="1676.00" from="0/1to1/1" to="2/2to3/2"/> + <trip id="car1677" depart="1677.00" from="0/4to0/3" to="3/4to4/4"/> + <trip id="car1678" depart="1678.00" from="0/3to0/4" to="3/3to3/4"/> + <trip id="car1679" depart="1679.00" from="4/3to3/3" to="3/1to4/1"/> + <trip id="car1680" depart="1680.00" from="0/3to1/3" to="2/0to3/0"/> + <trip id="car1681" depart="1681.00" from="2/4to2/3" to="3/2to3/1"/> + <trip id="car1682" depart="1682.00" from="1/2to0/2" to="3/1to4/1"/> + <trip id="car1683" depart="1683.00" from="3/2to3/1" to="0/3to0/4"/> + <trip id="car1684" depart="1684.00" from="0/3to0/4" to="2/1to2/0"/> + <trip id="car1685" depart="1685.00" from="1/4to1/3" to="2/2to3/2"/> + <trip id="car1686" depart="1686.00" from="1/4to2/4" to="3/3to4/3"/> + <trip id="car1687" depart="1687.00" from="2/3to3/3" to="3/1to2/1"/> + <trip id="car1688" depart="1688.00" from="0/4to1/4" to="4/1to3/1"/> + <trip id="car1689" depart="1689.00" from="1/0to1/1" to="3/2to2/2"/> + <trip id="car1690" depart="1690.00" from="2/0to3/0" to="1/3to0/3"/> + <trip id="car1691" depart="1691.00" from="3/3to3/2" to="2/1to2/0"/> + <trip id="car1692" depart="1692.00" from="3/0to3/1" to="0/3to0/4"/> + <trip id="car1693" depart="1693.00" from="0/3to1/3" to="1/1to0/1"/> + <trip id="car1694" depart="1694.00" from="3/0to2/0" to="1/2to0/2"/> + <trip id="car1695" depart="1695.00" from="2/1to2/2" to="4/0to4/1"/> + <trip id="car1696" depart="1696.00" from="2/3to2/2" to="0/0to0/1"/> + <trip id="car1697" depart="1697.00" from="4/1to4/0" to="1/1to2/1"/> + <trip id="car1698" depart="1698.00" from="2/4to2/3" to="2/2to1/2"/> + <trip id="car1699" depart="1699.00" from="2/0to2/1" to="0/2to0/3"/> + <trip id="car1700" depart="1700.00" from="2/4to3/4" to="1/1to2/1"/> + <trip id="car1701" depart="1701.00" from="2/3to2/2" to="3/0to2/0"/> + <trip id="car1702" depart="1702.00" from="2/3to2/4" to="3/4to4/4"/> + <trip id="car1703" depart="1703.00" from="0/1to0/2" to="0/4to0/3"/> + <trip id="car1704" depart="1704.00" from="3/1to2/1" to="0/1to0/0"/> + <trip id="car1705" depart="1705.00" from="4/0to3/0" to="1/2to2/2"/> + <trip id="car1706" depart="1706.00" from="4/2to4/1" to="0/1to0/2"/> + <trip id="car1707" depart="1707.00" from="3/1to3/0" to="2/4to3/4"/> + <trip id="car1708" depart="1708.00" from="3/1to4/1" to="2/4to2/3"/> + <trip id="car1709" depart="1709.00" from="3/3to3/4" to="1/0to1/1"/> + <trip id="car1710" depart="1710.00" from="2/1to2/2" to="2/4to1/4"/> + <trip id="car1711" depart="1711.00" from="4/2to4/3" to="0/2to1/2"/> + <trip id="car1712" depart="1712.00" from="1/4to2/4" to="0/2to0/1"/> + <trip id="car1713" depart="1713.00" from="2/1to1/1" to="2/3to2/4"/> + <trip id="car1714" depart="1714.00" from="3/1to4/1" to="1/2to1/1"/> + <trip id="car1715" depart="1715.00" from="3/1to4/1" to="2/4to3/4"/> + <trip id="car1716" depart="1716.00" from="0/3to0/2" to="3/2to3/3"/> + <trip id="car1717" depart="1717.00" from="3/0to3/1" to="4/4to3/4"/> + <trip id="car1718" depart="1718.00" from="2/2to1/2" to="3/1to4/1"/> + <trip id="car1719" depart="1719.00" from="4/2to4/3" to="4/4to3/4"/> + <trip id="car1720" depart="1720.00" from="1/2to1/3" to="2/4to3/4"/> + <trip id="car1721" depart="1721.00" from="4/4to4/3" to="1/4to0/4"/> + <trip id="car1722" depart="1722.00" from="0/3to1/3" to="2/3to3/3"/> + <trip id="car1723" depart="1723.00" from="2/4to3/4" to="3/2to2/2"/> + <trip id="car1724" depart="1724.00" from="4/4to3/4" to="0/0to0/1"/> + <trip id="car1725" depart="1725.00" from="0/0to1/0" to="3/0to3/1"/> + <trip id="car1726" depart="1726.00" from="0/3to0/4" to="4/0to3/0"/> + <trip id="car1727" depart="1727.00" from="2/0to3/0" to="1/3to1/4"/> + <trip id="car1728" depart="1728.00" from="2/3to2/4" to="3/0to4/0"/> + <trip id="car1729" depart="1729.00" from="1/2to1/3" to="3/3to4/3"/> + <trip id="car1730" depart="1730.00" from="1/3to1/2" to="0/0to0/1"/> + <trip id="car1731" depart="1731.00" from="3/1to3/2" to="1/3to2/3"/> + <trip id="car1732" depart="1732.00" from="3/2to3/1" to="3/0to2/0"/> + <trip id="car1733" depart="1733.00" from="3/3to4/3" to="3/0to4/0"/> + <trip id="car1734" depart="1734.00" from="4/1to4/2" to="2/3to1/3"/> + <trip id="car1735" depart="1735.00" from="1/3to1/4" to="3/3to3/4"/> + <trip id="car1736" depart="1736.00" from="2/0to3/0" to="3/2to4/2"/> + <trip id="car1737" depart="1737.00" from="3/4to4/4" to="1/2to2/2"/> + <trip id="car1738" depart="1738.00" from="3/2to3/1" to="1/3to1/2"/> + <trip id="car1739" depart="1739.00" from="2/3to1/3" to="1/1to0/1"/> + <trip id="car1740" depart="1740.00" from="3/1to3/2" to="3/3to4/3"/> + <trip id="car1741" depart="1741.00" from="4/1to4/2" to="1/4to0/4"/> + <trip id="car1742" depart="1742.00" from="4/3to4/4" to="1/2to1/3"/> + <trip id="car1743" depart="1743.00" from="0/1to0/0" to="4/4to3/4"/> + <trip id="car1744" depart="1744.00" from="2/3to3/3" to="2/0to1/0"/> + <trip id="car1745" depart="1745.00" from="2/4to2/3" to="4/1to3/1"/> + <trip id="car1746" depart="1746.00" from="1/3to1/2" to="0/1to0/0"/> + <trip id="car1747" depart="1747.00" from="4/3to4/2" to="1/1to1/0"/> + <trip id="car1748" depart="1748.00" from="4/2to4/1" to="2/1to2/0"/> + <trip id="car1749" depart="1749.00" from="0/0to1/0" to="2/2to1/2"/> + <trip id="car1750" depart="1750.00" from="2/2to2/3" to="1/0to2/0"/> + <trip id="car1751" depart="1751.00" from="2/2to3/2" to="3/3to3/4"/> + <trip id="car1752" depart="1752.00" from="0/4to0/3" to="4/1to3/1"/> + <trip id="car1753" depart="1753.00" from="3/1to3/2" to="0/3to1/3"/> + <trip id="car1754" depart="1754.00" from="0/0to0/1" to="4/2to4/3"/> + <trip id="car1755" depart="1755.00" from="3/1to3/2" to="2/4to2/3"/> + <trip id="car1756" depart="1756.00" from="0/2to0/3" to="2/1to3/1"/> + <trip id="car1757" depart="1757.00" from="0/1to0/2" to="2/2to3/2"/> + <trip id="car1758" depart="1758.00" from="3/1to2/1" to="1/3to0/3"/> + <trip id="car1759" depart="1759.00" from="2/4to1/4" to="1/3to0/3"/> + <trip id="car1760" depart="1760.00" from="4/1to4/2" to="1/3to1/2"/> + <trip id="car1761" depart="1761.00" from="1/0to2/0" to="1/2to1/3"/> + <trip id="car1762" depart="1762.00" from="1/3to1/2" to="2/1to2/0"/> + <trip id="car1763" depart="1763.00" from="1/2to1/1" to="0/0to1/0"/> + <trip id="car1764" depart="1764.00" from="3/0to2/0" to="2/2to3/2"/> + <trip id="car1765" depart="1765.00" from="1/1to0/1" to="1/4to0/4"/> + <trip id="car1766" depart="1766.00" from="3/2to2/2" to="1/2to1/3"/> + <trip id="car1767" depart="1767.00" from="3/0to2/0" to="1/3to2/3"/> + <trip id="car1768" depart="1768.00" from="2/1to2/0" to="0/3to1/3"/> + <trip id="car1769" depart="1769.00" from="0/3to0/2" to="0/1to1/1"/> + <trip id="car1770" depart="1770.00" from="3/4to4/4" to="3/1to4/1"/> + <trip id="car1771" depart="1771.00" from="3/0to2/0" to="1/3to0/3"/> + <trip id="car1772" depart="1772.00" from="3/4to3/3" to="3/2to3/1"/> + <trip id="car1773" depart="1773.00" from="3/1to3/0" to="2/3to1/3"/> + <trip id="car1774" depart="1774.00" from="4/3to4/4" to="3/3to2/3"/> + <trip id="car1775" depart="1775.00" from="2/1to3/1" to="0/3to1/3"/> + <trip id="car1776" depart="1776.00" from="3/4to3/3" to="4/2to4/1"/> + <trip id="car1777" depart="1777.00" from="1/1to1/0" to="4/0to4/1"/> + <trip id="car1778" depart="1778.00" from="2/0to1/0" to="3/1to4/1"/> + <trip id="car1779" depart="1779.00" from="3/1to3/0" to="3/3to4/3"/> + <trip id="car1780" depart="1780.00" from="4/1to4/0" to="2/1to2/2"/> + <trip id="car1781" depart="1781.00" from="1/4to0/4" to="2/1to2/2"/> + <trip id="car1782" depart="1782.00" from="1/0to0/0" to="3/3to3/2"/> + <trip id="car1783" depart="1783.00" from="0/3to0/2" to="3/4to3/3"/> + <trip id="car1784" depart="1784.00" from="3/3to4/3" to="1/3to1/4"/> + <trip id="car1785" depart="1785.00" from="3/0to4/0" to="3/3to4/3"/> + <trip id="car1786" depart="1786.00" from="2/3to1/3" to="2/0to2/1"/> + <trip id="car1787" depart="1787.00" from="2/3to2/2" to="4/3to4/4"/> + <trip id="car1788" depart="1788.00" from="3/3to3/4" to="2/1to1/1"/> + <trip id="car1789" depart="1789.00" from="1/1to1/2" to="3/1to3/0"/> + <trip id="car1790" depart="1790.00" from="0/2to0/3" to="4/2to4/3"/> + <trip id="car1791" depart="1791.00" from="2/4to2/3" to="2/1to3/1"/> + <trip id="car1792" depart="1792.00" from="1/0to1/1" to="4/3to4/2"/> + <trip id="car1793" depart="1793.00" from="3/4to3/3" to="3/3to3/2"/> + <trip id="car1794" depart="1794.00" from="1/4to2/4" to="2/2to2/1"/> + <trip id="car1795" depart="1795.00" from="3/1to2/1" to="0/2to1/2"/> + <trip id="car1796" depart="1796.00" from="3/4to3/3" to="4/1to4/0"/> + <trip id="car1797" depart="1797.00" from="0/0to0/1" to="0/4to0/3"/> + <trip id="car1798" depart="1798.00" from="2/0to1/0" to="2/4to1/4"/> + <trip id="car1799" depart="1799.00" from="1/0to2/0" to="3/1to3/2"/> + <trip id="car1800" depart="1800.00" from="1/3to1/2" to="2/3to3/3"/> + <trip id="car1801" depart="1801.00" from="4/2to4/1" to="1/3to0/3"/> + <trip id="car1802" depart="1802.00" from="4/3to3/3" to="2/1to1/1"/> + <trip id="car1803" depart="1803.00" from="4/4to3/4" to="1/3to2/3"/> + <trip id="car1804" depart="1804.00" from="4/4to3/4" to="2/0to2/1"/> + <trip id="car1805" depart="1805.00" from="0/3to1/3" to="1/2to2/2"/> + <trip id="car1806" depart="1806.00" from="1/4to1/3" to="2/3to2/2"/> + <trip id="car1807" depart="1807.00" from="0/1to1/1" to="3/2to2/2"/> + <trip id="car1808" depart="1808.00" from="3/4to3/3" to="1/4to0/4"/> + <trip id="car1809" depart="1809.00" from="2/0to1/0" to="1/3to1/2"/> + <trip id="car1810" depart="1810.00" from="2/3to2/2" to="3/1to2/1"/> + <trip id="car1811" depart="1811.00" from="1/4to2/4" to="4/2to4/1"/> + <trip id="car1812" depart="1812.00" from="4/0to3/0" to="0/4to1/4"/> + <trip id="car1813" depart="1813.00" from="4/4to4/3" to="3/1to3/0"/> + <trip id="car1814" depart="1814.00" from="0/3to1/3" to="0/2to0/1"/> + <trip id="car1815" depart="1815.00" from="0/0to1/0" to="3/2to3/1"/> + <trip id="car1816" depart="1816.00" from="4/4to4/3" to="0/2to0/3"/> + <trip id="car1817" depart="1817.00" from="2/1to2/2" to="3/3to4/3"/> + <trip id="car1818" depart="1818.00" from="2/4to3/4" to="2/1to1/1"/> + <trip id="car1819" depart="1819.00" from="1/0to1/1" to="2/2to2/3"/> + <trip id="car1820" depart="1820.00" from="1/4to0/4" to="1/0to1/1"/> + <trip id="car1821" depart="1821.00" from="4/0to3/0" to="1/1to1/2"/> + <trip id="car1822" depart="1822.00" from="3/2to2/2" to="0/3to0/4"/> + <trip id="car1823" depart="1823.00" from="2/2to1/2" to="3/1to4/1"/> + <trip id="car1824" depart="1824.00" from="0/4to0/3" to="3/2to3/3"/> + <trip id="car1825" depart="1825.00" from="3/3to3/4" to="2/1to3/1"/> + <trip id="car1826" depart="1826.00" from="0/2to0/3" to="4/1to4/2"/> + <trip id="car1827" depart="1827.00" from="0/2to1/2" to="2/1to3/1"/> + <trip id="car1828" depart="1828.00" from="0/2to0/3" to="3/0to3/1"/> + <trip id="car1829" depart="1829.00" from="3/3to4/3" to="1/3to0/3"/> + <trip id="car1830" depart="1830.00" from="0/1to1/1" to="1/3to2/3"/> + <trip id="car1831" depart="1831.00" from="3/3to3/4" to="2/1to3/1"/> + <trip id="car1832" depart="1832.00" from="3/2to3/3" to="2/0to3/0"/> + <trip id="car1833" depart="1833.00" from="1/2to2/2" to="0/1to0/0"/> + <trip id="car1834" depart="1834.00" from="0/1to1/1" to="2/1to3/1"/> + <trip id="car1835" depart="1835.00" from="4/4to4/3" to="3/4to2/4"/> + <trip id="car1836" depart="1836.00" from="3/0to2/0" to="1/2to1/3"/> + <trip id="car1837" depart="1837.00" from="0/2to0/3" to="2/2to2/3"/> + <trip id="car1838" depart="1838.00" from="4/0to4/1" to="1/2to1/3"/> + <trip id="car1839" depart="1839.00" from="4/0to4/1" to="0/0to1/0"/> + <trip id="car1840" depart="1840.00" from="0/3to0/2" to="1/0to0/0"/> + <trip id="car1841" depart="1841.00" from="2/1to2/0" to="3/4to2/4"/> + <trip id="car1842" depart="1842.00" from="2/2to1/2" to="3/3to4/3"/> + <trip id="car1843" depart="1843.00" from="4/0to4/1" to="1/3to2/3"/> + <trip id="car1844" depart="1844.00" from="4/2to4/3" to="0/4to1/4"/> + <trip id="car1845" depart="1845.00" from="2/2to2/1" to="4/4to4/3"/> + <trip id="car1846" depart="1846.00" from="3/3to3/2" to="1/1to2/1"/> + <trip id="car1847" depart="1847.00" from="2/1to2/0" to="3/0to4/0"/> + <trip id="car1848" depart="1848.00" from="1/1to0/1" to="3/2to3/3"/> + <trip id="car1849" depart="1849.00" from="1/3to2/3" to="3/0to4/0"/> + <trip id="car1850" depart="1850.00" from="3/3to2/3" to="0/3to0/4"/> + <trip id="car1851" depart="1851.00" from="1/3to0/3" to="3/2to4/2"/> + <trip id="car1852" depart="1852.00" from="3/3to2/3" to="2/3to1/3"/> + <trip id="car1853" depart="1853.00" from="1/4to2/4" to="3/2to2/2"/> + <trip id="car1854" depart="1854.00" from="2/1to3/1" to="0/4to0/3"/> + <trip id="car1855" depart="1855.00" from="4/1to3/1" to="0/0to0/1"/> + <trip id="car1856" depart="1856.00" from="4/2to4/3" to="2/1to2/0"/> + <trip id="car1857" depart="1857.00" from="3/1to3/2" to="0/1to0/2"/> + <trip id="car1858" depart="1858.00" from="4/3to4/2" to="2/1to1/1"/> + <trip id="car1859" depart="1859.00" from="1/3to1/4" to="1/2to1/1"/> + <trip id="car1860" depart="1860.00" from="0/2to1/2" to="3/1to2/1"/> + <trip id="car1861" depart="1861.00" from="2/0to1/0" to="3/3to3/2"/> + <trip id="car1862" depart="1862.00" from="2/4to2/3" to="1/0to2/0"/> + <trip id="car1863" depart="1863.00" from="1/3to1/4" to="3/1to4/1"/> + <trip id="car1864" depart="1864.00" from="1/0to1/1" to="2/3to2/2"/> + <trip id="car1865" depart="1865.00" from="3/1to3/0" to="3/4to4/4"/> + <trip id="car1866" depart="1866.00" from="0/0to0/1" to="0/2to1/2"/> + <trip id="car1867" depart="1867.00" from="0/3to0/2" to="2/1to2/0"/> + <trip id="car1868" depart="1868.00" from="1/1to1/0" to="1/2to1/3"/> + <trip id="car1869" depart="1869.00" from="0/2to1/2" to="4/3to3/3"/> + <trip id="car1870" depart="1870.00" from="3/1to2/1" to="3/4to4/4"/> + <trip id="car1871" depart="1871.00" from="4/3to4/2" to="3/0to4/0"/> + <trip id="car1872" depart="1872.00" from="3/2to2/2" to="0/3to0/4"/> + <trip id="car1873" depart="1873.00" from="4/0to4/1" to="0/3to1/3"/> + <trip id="car1874" depart="1874.00" from="2/3to3/3" to="4/3to4/4"/> + <trip id="car1875" depart="1875.00" from="1/2to0/2" to="2/1to3/1"/> + <trip id="car1876" depart="1876.00" from="4/2to4/3" to="3/0to4/0"/> + <trip id="car1877" depart="1877.00" from="4/2to4/1" to="1/2to1/3"/> + <trip id="car1878" depart="1878.00" from="3/3to3/2" to="1/3to1/2"/> + <trip id="car1879" depart="1879.00" from="0/4to1/4" to="0/2to0/1"/> + <trip id="car1880" depart="1880.00" from="1/3to1/4" to="0/1to1/1"/> + <trip id="car1881" depart="1881.00" from="4/3to4/2" to="1/2to1/1"/> + <trip id="car1882" depart="1882.00" from="4/2to4/3" to="2/4to3/4"/> + <trip id="car1883" depart="1883.00" from="0/4to0/3" to="3/3to3/2"/> + <trip id="car1884" depart="1884.00" from="1/1to1/0" to="3/0to4/0"/> + <trip id="car1885" depart="1885.00" from="0/3to0/2" to="0/2to0/1"/> + <trip id="car1886" depart="1886.00" from="2/3to3/3" to="1/2to0/2"/> + <trip id="car1887" depart="1887.00" from="2/1to2/0" to="4/1to4/2"/> + <trip id="car1888" depart="1888.00" from="0/4to0/3" to="3/0to4/0"/> + <trip id="car1889" depart="1889.00" from="4/2to4/3" to="3/1to3/0"/> + <trip id="car1890" depart="1890.00" from="4/0to3/0" to="3/3to3/4"/> + <trip id="car1891" depart="1891.00" from="0/0to0/1" to="4/3to4/2"/> + <trip id="car1892" depart="1892.00" from="3/4to3/3" to="2/2to1/2"/> + <trip id="car1893" depart="1893.00" from="2/3to3/3" to="4/2to4/3"/> + <trip id="car1894" depart="1894.00" from="1/4to0/4" to="3/1to3/2"/> + <trip id="car1895" depart="1895.00" from="4/3to4/2" to="0/2to1/2"/> + <trip id="car1896" depart="1896.00" from="2/3to1/3" to="4/3to4/2"/> + <trip id="car1897" depart="1897.00" from="0/2to0/3" to="2/1to2/2"/> + <trip id="car1898" depart="1898.00" from="3/3to3/2" to="3/0to4/0"/> + <trip id="car1899" depart="1899.00" from="1/0to1/1" to="0/1to0/2"/> + <trip id="car1900" depart="1900.00" from="1/4to2/4" to="1/0to2/0"/> + <trip id="car1901" depart="1901.00" from="3/0to3/1" to="1/4to0/4"/> + <trip id="car1902" depart="1902.00" from="0/2to0/3" to="3/0to3/1"/> + <trip id="car1903" depart="1903.00" from="3/2to3/3" to="0/4to0/3"/> + <trip id="car1904" depart="1904.00" from="1/0to2/0" to="3/2to3/1"/> + <trip id="car1905" depart="1905.00" from="2/4to2/3" to="2/2to2/1"/> + <trip id="car1906" depart="1906.00" from="0/2to0/1" to="2/3to2/2"/> + <trip id="car1907" depart="1907.00" from="3/4to4/4" to="2/1to2/0"/> + <trip id="car1908" depart="1908.00" from="4/4to4/3" to="0/1to0/0"/> + <trip id="car1909" depart="1909.00" from="0/1to1/1" to="3/3to4/3"/> + <trip id="car1910" depart="1910.00" from="0/1to0/2" to="0/3to0/4"/> + <trip id="car1911" depart="1911.00" from="3/4to2/4" to="3/1to3/0"/> + <trip id="car1912" depart="1912.00" from="4/1to3/1" to="0/4to0/3"/> + <trip id="car1913" depart="1913.00" from="2/4to1/4" to="4/2to4/1"/> + <trip id="car1914" depart="1914.00" from="0/1to0/0" to="0/4to0/3"/> + <trip id="car1915" depart="1915.00" from="4/2to4/1" to="0/1to0/2"/> + <trip id="car1916" depart="1916.00" from="3/2to2/2" to="0/3to1/3"/> + <trip id="car1917" depart="1917.00" from="1/0to0/0" to="0/1to0/2"/> + <trip id="car1918" depart="1918.00" from="1/3to0/3" to="3/3to4/3"/> + <trip id="car1919" depart="1919.00" from="2/1to2/2" to="1/0to0/0"/> + <trip id="car1920" depart="1920.00" from="0/3to0/2" to="2/2to2/1"/> + <trip id="car1921" depart="1921.00" from="3/3to4/3" to="1/1to1/0"/> + <trip id="car1922" depart="1922.00" from="3/4to2/4" to="2/1to1/1"/> + <trip id="car1923" depart="1923.00" from="3/1to3/2" to="1/3to1/2"/> + <trip id="car1924" depart="1924.00" from="4/4to3/4" to="2/4to1/4"/> + <trip id="car1925" depart="1925.00" from="0/3to1/3" to="3/4to4/4"/> + <trip id="car1926" depart="1926.00" from="2/0to3/0" to="3/1to4/1"/> + <trip id="car1927" depart="1927.00" from="2/3to2/4" to="2/1to2/0"/> + <trip id="car1928" depart="1928.00" from="4/2to4/3" to="0/1to0/2"/> + <trip id="car1929" depart="1929.00" from="0/2to1/2" to="4/0to3/0"/> + <trip id="car1930" depart="1930.00" from="0/0to1/0" to="2/2to1/2"/> + <trip id="car1931" depart="1931.00" from="0/2to1/2" to="3/1to2/1"/> + <trip id="car1932" depart="1932.00" from="3/4to2/4" to="3/3to3/2"/> + <trip id="car1933" depart="1933.00" from="3/1to4/1" to="1/1to0/1"/> + <trip id="car1934" depart="1934.00" from="3/0to4/0" to="2/2to3/2"/> + <trip id="car1935" depart="1935.00" from="2/0to2/1" to="4/3to3/3"/> + <trip id="car1936" depart="1936.00" from="2/4to3/4" to="0/1to0/2"/> + <trip id="car1937" depart="1937.00" from="4/3to4/2" to="3/0to3/1"/> + <trip id="car1938" depart="1938.00" from="0/0to0/1" to="1/1to1/2"/> + <trip id="car1939" depart="1939.00" from="0/2to1/2" to="1/4to0/4"/> + <trip id="car1940" depart="1940.00" from="1/1to1/0" to="3/3to3/2"/> + <trip id="car1941" depart="1941.00" from="3/1to2/1" to="1/2to1/3"/> + <trip id="car1942" depart="1942.00" from="1/0to2/0" to="3/3to4/3"/> + <trip id="car1943" depart="1943.00" from="3/1to3/2" to="4/3to4/4"/> + <trip id="car1944" depart="1944.00" from="3/1to3/0" to="0/1to0/2"/> + <trip id="car1945" depart="1945.00" from="3/0to4/0" to="1/2to1/3"/> + <trip id="car1946" depart="1946.00" from="2/1to1/1" to="1/3to1/4"/> + <trip id="car1947" depart="1947.00" from="0/1to0/2" to="3/2to4/2"/> + <trip id="car1948" depart="1948.00" from="4/2to4/1" to="1/0to1/1"/> + <trip id="car1949" depart="1949.00" from="3/3to3/4" to="2/2to1/2"/> + <trip id="car1950" depart="1950.00" from="0/3to0/4" to="4/1to4/2"/> + <trip id="car1951" depart="1951.00" from="1/3to1/4" to="1/0to2/0"/> + <trip id="car1952" depart="1952.00" from="3/1to3/2" to="1/3to1/4"/> + <trip id="car1953" depart="1953.00" from="3/3to3/4" to="1/3to1/4"/> + <trip id="car1954" depart="1954.00" from="0/2to1/2" to="3/2to4/2"/> + <trip id="car1955" depart="1955.00" from="4/1to3/1" to="1/4to2/4"/> + <trip id="car1956" depart="1956.00" from="1/1to1/0" to="2/1to3/1"/> + <trip id="car1957" depart="1957.00" from="2/2to1/2" to="4/1to4/2"/> + <trip id="car1958" depart="1958.00" from="0/4to0/3" to="4/2to4/3"/> + <trip id="car1959" depart="1959.00" from="2/1to2/2" to="1/4to2/4"/> + <trip id="car1960" depart="1960.00" from="0/3to1/3" to="3/2to3/1"/> + <trip id="car1961" depart="1961.00" from="3/0to3/1" to="4/4to3/4"/> + <trip id="car1962" depart="1962.00" from="1/1to0/1" to="0/3to1/3"/> + <trip id="car1963" depart="1963.00" from="3/1to4/1" to="0/1to1/1"/> + <trip id="car1964" depart="1964.00" from="0/3to1/3" to="4/0to4/1"/> + <trip id="car1965" depart="1965.00" from="2/1to2/2" to="1/0to0/0"/> + <trip id="car1966" depart="1966.00" from="1/3to2/3" to="4/1to4/0"/> + <trip id="car1967" depart="1967.00" from="2/4to3/4" to="3/3to4/3"/> + <trip id="car1968" depart="1968.00" from="3/0to4/0" to="2/4to3/4"/> + <trip id="car1969" depart="1969.00" from="1/0to0/0" to="4/3to4/4"/> + <trip id="car1970" depart="1970.00" from="4/0to4/1" to="0/2to0/3"/> + <trip id="car1971" depart="1971.00" from="4/0to4/1" to="2/2to2/1"/> + <trip id="car1972" depart="1972.00" from="4/4to4/3" to="2/4to2/3"/> + <trip id="car1973" depart="1973.00" from="3/4to4/4" to="1/2to1/3"/> + <trip id="car1974" depart="1974.00" from="1/1to2/1" to="1/3to1/4"/> + <trip id="car1975" depart="1975.00" from="2/4to1/4" to="4/1to4/2"/> + <trip id="car1976" depart="1976.00" from="2/4to2/3" to="0/4to0/3"/> + <trip id="car1977" depart="1977.00" from="2/3to3/3" to="0/0to0/1"/> + <trip id="car1978" depart="1978.00" from="4/4to3/4" to="0/1to0/2"/> + <trip id="car1979" depart="1979.00" from="0/1to0/0" to="2/3to1/3"/> + <trip id="car1980" depart="1980.00" from="2/2to1/2" to="3/3to4/3"/> + <trip id="car1981" depart="1981.00" from="3/4to3/3" to="2/1to2/2"/> + <trip id="car1982" depart="1982.00" from="1/1to2/1" to="2/3to2/4"/> + <trip id="car1983" depart="1983.00" from="0/0to0/1" to="3/2to3/3"/> + <trip id="car1984" depart="1984.00" from="4/3to3/3" to="0/3to1/3"/> + <trip id="car1985" depart="1985.00" from="1/2to2/2" to="3/0to4/0"/> + <trip id="car1986" depart="1986.00" from="4/0to4/1" to="3/2to4/2"/> + <trip id="car1987" depart="1987.00" from="0/0to1/0" to="2/1to2/2"/> + <trip id="car1988" depart="1988.00" from="3/3to3/2" to="4/1to3/1"/> + <trip id="car1989" depart="1989.00" from="2/0to2/1" to="3/3to4/3"/> + <trip id="car1990" depart="1990.00" from="1/4to1/3" to="2/1to3/1"/> + <trip id="car1991" depart="1991.00" from="0/2to0/1" to="4/1to4/2"/> + <trip id="car1992" depart="1992.00" from="1/3to1/4" to="0/1to0/0"/> + <trip id="car1993" depart="1993.00" from="4/3to3/3" to="2/3to2/2"/> + <trip id="car1994" depart="1994.00" from="0/2to0/3" to="4/1to4/0"/> + <trip id="car1995" depart="1995.00" from="3/2to3/3" to="0/1to1/1"/> + <trip id="car1996" depart="1996.00" from="4/3to3/3" to="3/1to3/0"/> + <trip id="car1997" depart="1997.00" from="4/1to4/2" to="0/3to0/2"/> + <trip id="car1998" depart="1998.00" from="1/4to1/3" to="3/0to2/0"/> + <trip id="car1999" depart="1999.00" from="1/4to1/3" to="1/0to1/1"/> + <trip id="car2000" depart="2000.00" from="2/3to2/4" to="0/2to0/1"/> + <trip id="car2001" depart="2001.00" from="3/2to2/2" to="1/1to0/1"/> + <trip id="car2002" depart="2002.00" from="4/4to3/4" to="1/1to2/1"/> + <trip id="car2003" depart="2003.00" from="4/3to3/3" to="2/4to1/4"/> + <trip id="car2004" depart="2004.00" from="4/3to4/2" to="1/1to0/1"/> + <trip id="car2005" depart="2005.00" from="3/2to4/2" to="1/1to1/2"/> + <trip id="car2006" depart="2006.00" from="1/4to0/4" to="1/2to1/1"/> + <trip id="car2007" depart="2007.00" from="3/1to3/2" to="1/2to1/3"/> + <trip id="car2008" depart="2008.00" from="0/2to0/1" to="1/3to2/3"/> + <trip id="car2009" depart="2009.00" from="0/3to0/4" to="3/2to2/2"/> + <trip id="car2010" depart="2010.00" from="3/1to3/2" to="2/3to1/3"/> + <trip id="car2011" depart="2011.00" from="1/2to2/2" to="3/0to2/0"/> + <trip id="car2012" depart="2012.00" from="0/2to0/1" to="4/1to4/2"/> + <trip id="car2013" depart="2013.00" from="2/1to2/2" to="0/2to0/3"/> + <trip id="car2014" depart="2014.00" from="4/1to4/2" to="1/2to2/2"/> + <trip id="car2015" depart="2015.00" from="4/3to4/2" to="0/3to0/2"/> + <trip id="car2016" depart="2016.00" from="1/2to1/3" to="3/1to4/1"/> + <trip id="car2017" depart="2017.00" from="1/2to2/2" to="4/3to4/4"/> + <trip id="car2018" depart="2018.00" from="1/3to2/3" to="2/1to2/0"/> + <trip id="car2019" depart="2019.00" from="3/0to4/0" to="1/2to2/2"/> + <trip id="car2020" depart="2020.00" from="0/2to0/1" to="4/1to3/1"/> + <trip id="car2021" depart="2021.00" from="1/1to1/2" to="4/3to3/3"/> + <trip id="car2022" depart="2022.00" from="1/3to2/3" to="3/0to4/0"/> + <trip id="car2023" depart="2023.00" from="2/1to2/0" to="1/3to0/3"/> + <trip id="car2024" depart="2024.00" from="0/3to1/3" to="3/3to4/3"/> + <trip id="car2025" depart="2025.00" from="1/0to0/0" to="1/2to0/2"/> + <trip id="car2026" depart="2026.00" from="2/2to1/2" to="4/3to4/4"/> + <trip id="car2027" depart="2027.00" from="3/3to3/2" to="0/1to0/2"/> + <trip id="car2028" depart="2028.00" from="1/4to0/4" to="2/1to2/2"/> + <trip id="car2029" depart="2029.00" from="1/0to0/0" to="4/2to4/1"/> + <trip id="car2030" depart="2030.00" from="3/2to2/2" to="1/2to1/3"/> + <trip id="car2031" depart="2031.00" from="4/3to4/4" to="4/0to3/0"/> + <trip id="car2032" depart="2032.00" from="0/4to1/4" to="1/1to2/1"/> + <trip id="car2033" depart="2033.00" from="1/0to1/1" to="2/3to2/4"/> + <trip id="car2034" depart="2034.00" from="2/3to2/2" to="1/0to0/0"/> + <trip id="car2035" depart="2035.00" from="1/3to0/3" to="4/2to4/1"/> + <trip id="car2036" depart="2036.00" from="0/4to0/3" to="2/1to2/2"/> + <trip id="car2037" depart="2037.00" from="1/3to1/2" to="0/0to0/1"/> + <trip id="car2038" depart="2038.00" from="3/2to4/2" to="4/4to3/4"/> + <trip id="car2039" depart="2039.00" from="2/3to3/3" to="0/4to0/3"/> + <trip id="car2040" depart="2040.00" from="2/1to2/0" to="3/1to4/1"/> + <trip id="car2041" depart="2041.00" from="0/4to0/3" to="2/3to2/4"/> + <trip id="car2042" depart="2042.00" from="1/3to0/3" to="2/0to2/1"/> + <trip id="car2043" depart="2043.00" from="4/0to3/0" to="2/1to2/0"/> + <trip id="car2044" depart="2044.00" from="3/0to4/0" to="2/4to1/4"/> + <trip id="car2045" depart="2045.00" from="1/1to1/0" to="4/2to4/3"/> + <trip id="car2046" depart="2046.00" from="1/2to1/3" to="0/0to1/0"/> + <trip id="car2047" depart="2047.00" from="2/3to2/2" to="2/1to2/0"/> + <trip id="car2048" depart="2048.00" from="3/1to3/0" to="0/2to0/3"/> + <trip id="car2049" depart="2049.00" from="2/2to2/3" to="1/0to2/0"/> + <trip id="car2050" depart="2050.00" from="1/3to1/2" to="2/4to3/4"/> + <trip id="car2051" depart="2051.00" from="4/0to4/1" to="1/4to1/3"/> + <trip id="car2052" depart="2052.00" from="1/4to0/4" to="4/4to3/4"/> + <trip id="car2053" depart="2053.00" from="4/1to3/1" to="0/2to1/2"/> + <trip id="car2054" depart="2054.00" from="3/2to3/3" to="2/1to2/0"/> + <trip id="car2055" depart="2055.00" from="4/4to4/3" to="3/4to2/4"/> + <trip id="car2056" depart="2056.00" from="1/2to2/2" to="3/4to2/4"/> + <trip id="car2057" depart="2057.00" from="4/3to4/4" to="2/0to3/0"/> + <trip id="car2058" depart="2058.00" from="4/1to4/2" to="0/4to0/3"/> + <trip id="car2059" depart="2059.00" from="2/4to1/4" to="0/2to0/3"/> + <trip id="car2060" depart="2060.00" from="1/1to0/1" to="2/1to3/1"/> + <trip id="car2061" depart="2061.00" from="4/1to3/1" to="4/4to3/4"/> + <trip id="car2062" depart="2062.00" from="0/2to0/1" to="4/3to4/2"/> + <trip id="car2063" depart="2063.00" from="3/3to2/3" to="0/2to1/2"/> + <trip id="car2064" depart="2064.00" from="2/0to2/1" to="4/2to4/1"/> + <trip id="car2065" depart="2065.00" from="2/0to3/0" to="2/3to2/4"/> + <trip id="car2066" depart="2066.00" from="0/3to1/3" to="1/0to1/1"/> + <trip id="car2067" depart="2067.00" from="0/1to0/2" to="3/4to4/4"/> + <trip id="car2068" depart="2068.00" from="3/4to4/4" to="1/3to0/3"/> + <trip id="car2069" depart="2069.00" from="2/3to2/4" to="2/1to3/1"/> + <trip id="car2070" depart="2070.00" from="1/2to1/1" to="4/3to4/2"/> + <trip id="car2071" depart="2071.00" from="3/4to4/4" to="2/1to3/1"/> + <trip id="car2072" depart="2072.00" from="4/4to4/3" to="0/2to0/1"/> + <trip id="car2073" depart="2073.00" from="3/2to4/2" to="2/4to1/4"/> + <trip id="car2074" depart="2074.00" from="2/3to3/3" to="4/1to3/1"/> + <trip id="car2075" depart="2075.00" from="3/0to3/1" to="2/2to1/2"/> + <trip id="car2076" depart="2076.00" from="3/1to4/1" to="0/3to0/4"/> + <trip id="car2077" depart="2077.00" from="2/2to3/2" to="2/4to1/4"/> + <trip id="car2078" depart="2078.00" from="4/0to3/0" to="1/0to0/0"/> + <trip id="car2079" depart="2079.00" from="4/1to4/0" to="0/3to1/3"/> + <trip id="car2080" depart="2080.00" from="2/0to3/0" to="4/2to3/2"/> + <trip id="car2081" depart="2081.00" from="1/4to0/4" to="1/2to2/2"/> + <trip id="car2082" depart="2082.00" from="2/3to1/3" to="4/2to4/3"/> + <trip id="car2083" depart="2083.00" from="1/0to1/1" to="0/2to1/2"/> + <trip id="car2084" depart="2084.00" from="4/1to3/1" to="3/4to4/4"/> + <trip id="car2085" depart="2085.00" from="3/1to3/2" to="1/3to0/3"/> + <trip id="car2086" depart="2086.00" from="0/2to1/2" to="2/4to1/4"/> + <trip id="car2087" depart="2087.00" from="3/4to3/3" to="0/0to1/0"/> + <trip id="car2088" depart="2088.00" from="4/2to3/2" to="0/3to0/2"/> + <trip id="car2089" depart="2089.00" from="0/4to1/4" to="1/1to1/0"/> + <trip id="car2090" depart="2090.00" from="1/0to2/0" to="4/1to4/2"/> + <trip id="car2091" depart="2091.00" from="3/0to2/0" to="3/4to4/4"/> + <trip id="car2092" depart="2092.00" from="0/3to0/4" to="2/1to2/2"/> + <trip id="car2093" depart="2093.00" from="0/2to0/3" to="3/4to3/3"/> + <trip id="car2094" depart="2094.00" from="4/2to4/1" to="2/2to1/2"/> + <trip id="car2095" depart="2095.00" from="3/4to3/3" to="4/1to4/2"/> + <trip id="car2096" depart="2096.00" from="2/4to2/3" to="3/3to3/2"/> + <trip id="car2097" depart="2097.00" from="0/1to0/0" to="3/4to3/3"/> + <trip id="car2098" depart="2098.00" from="1/1to1/0" to="4/0to4/1"/> + <trip id="car2099" depart="2099.00" from="0/4to0/3" to="1/1to1/2"/> + <trip id="car2100" depart="2100.00" from="0/2to0/3" to="3/1to4/1"/> + <trip id="car2101" depart="2101.00" from="3/3to3/4" to="0/2to0/3"/> + <trip id="car2102" depart="2102.00" from="0/1to1/1" to="0/3to0/4"/> + <trip id="car2103" depart="2103.00" from="3/1to3/0" to="3/3to2/3"/> + <trip id="car2104" depart="2104.00" from="3/3to3/4" to="4/2to4/1"/> + <trip id="car2105" depart="2105.00" from="1/1to0/1" to="4/2to3/2"/> + <trip id="car2106" depart="2106.00" from="1/0to1/1" to="1/4to0/4"/> + <trip id="car2107" depart="2107.00" from="0/2to1/2" to="4/0to3/0"/> + <trip id="car2108" depart="2108.00" from="1/1to2/1" to="2/3to3/3"/> + <trip id="car2109" depart="2109.00" from="0/2to1/2" to="2/4to1/4"/> + <trip id="car2110" depart="2110.00" from="1/0to2/0" to="1/2to1/3"/> + <trip id="car2111" depart="2111.00" from="4/2to3/2" to="2/3to1/3"/> + <trip id="car2112" depart="2112.00" from="4/3to4/4" to="0/2to1/2"/> + <trip id="car2113" depart="2113.00" from="1/1to1/0" to="2/2to2/3"/> + <trip id="car2114" depart="2114.00" from="3/2to2/2" to="1/4to1/3"/> + <trip id="car2115" depart="2115.00" from="2/4to2/3" to="2/1to2/0"/> + <trip id="car2116" depart="2116.00" from="4/3to4/2" to="1/0to1/1"/> + <trip id="car2117" depart="2117.00" from="0/3to0/4" to="4/4to3/4"/> + <trip id="car2118" depart="2118.00" from="0/3to1/3" to="3/3to2/3"/> + <trip id="car2119" depart="2119.00" from="3/2to2/2" to="2/3to2/4"/> + <trip id="car2120" depart="2120.00" from="0/1to0/2" to="1/3to1/4"/> + <trip id="car2121" depart="2121.00" from="2/4to3/4" to="1/3to0/3"/> + <trip id="car2122" depart="2122.00" from="4/4to3/4" to="2/1to2/0"/> + <trip id="car2123" depart="2123.00" from="4/0to4/1" to="1/0to2/0"/> + <trip id="car2124" depart="2124.00" from="0/2to0/1" to="4/0to3/0"/> + <trip id="car2125" depart="2125.00" from="1/0to1/1" to="4/4to4/3"/> + <trip id="car2126" depart="2126.00" from="2/2to2/1" to="0/3to0/2"/> + <trip id="car2127" depart="2127.00" from="2/0to2/1" to="2/4to2/3"/> + <trip id="car2128" depart="2128.00" from="0/3to0/2" to="4/2to4/3"/> + <trip id="car2129" depart="2129.00" from="4/4to3/4" to="0/2to0/1"/> + <trip id="car2130" depart="2130.00" from="4/4to3/4" to="1/3to2/3"/> + <trip id="car2131" depart="2131.00" from="2/4to2/3" to="4/4to4/3"/> + <trip id="car2132" depart="2132.00" from="0/3to0/4" to="4/0to3/0"/> + <trip id="car2133" depart="2133.00" from="3/2to3/3" to="1/2to1/3"/> + <trip id="car2134" depart="2134.00" from="3/2to3/1" to="2/4to1/4"/> + <trip id="car2135" depart="2135.00" from="1/2to1/1" to="3/3to4/3"/> + <trip id="car2136" depart="2136.00" from="2/2to1/2" to="2/4to3/4"/> + <trip id="car2137" depart="2137.00" from="2/0to2/1" to="2/2to1/2"/> + <trip id="car2138" depart="2138.00" from="1/2to1/3" to="3/3to3/2"/> + <trip id="car2139" depart="2139.00" from="3/1to3/2" to="4/3to4/4"/> + <trip id="car2140" depart="2140.00" from="1/4to2/4" to="3/1to3/2"/> + <trip id="car2141" depart="2141.00" from="0/4to1/4" to="3/0to2/0"/> + <trip id="car2142" depart="2142.00" from="3/3to4/3" to="1/1to0/1"/> + <trip id="car2143" depart="2143.00" from="4/0to4/1" to="2/3to2/2"/> + <trip id="car2144" depart="2144.00" from="4/3to4/2" to="0/1to0/0"/> + <trip id="car2145" depart="2145.00" from="2/1to1/1" to="4/2to4/1"/> + <trip id="car2146" depart="2146.00" from="1/4to2/4" to="1/3to1/2"/> + <trip id="car2147" depart="2147.00" from="1/4to2/4" to="2/1to2/2"/> + <trip id="car2148" depart="2148.00" from="0/1to0/0" to="2/3to2/4"/> + <trip id="car2149" depart="2149.00" from="4/0to4/1" to="1/3to0/3"/> + <trip id="car2150" depart="2150.00" from="0/3to1/3" to="3/2to3/1"/> + <trip id="car2151" depart="2151.00" from="2/2to1/2" to="0/3to0/2"/> + <trip id="car2152" depart="2152.00" from="3/1to3/2" to="2/3to3/3"/> + <trip id="car2153" depart="2153.00" from="2/2to1/2" to="4/0to4/1"/> + <trip id="car2154" depart="2154.00" from="2/2to2/3" to="2/0to1/0"/> + <trip id="car2155" depart="2155.00" from="2/2to2/1" to="4/3to4/4"/> + <trip id="car2156" depart="2156.00" from="3/0to2/0" to="1/4to0/4"/> + <trip id="car2157" depart="2157.00" from="4/4to3/4" to="1/3to1/2"/> + <trip id="car2158" depart="2158.00" from="3/2to4/2" to="0/1to0/0"/> + <trip id="car2159" depart="2159.00" from="4/1to4/2" to="1/3to2/3"/> + <trip id="car2160" depart="2160.00" from="0/2to1/2" to="1/3to2/3"/> + <trip id="car2161" depart="2161.00" from="3/0to4/0" to="2/4to2/3"/> + <trip id="car2162" depart="2162.00" from="4/2to3/2" to="0/2to0/1"/> + <trip id="car2163" depart="2163.00" from="0/0to1/0" to="1/3to1/4"/> + <trip id="car2164" depart="2164.00" from="1/2to1/1" to="3/1to4/1"/> + <trip id="car2165" depart="2165.00" from="1/4to2/4" to="2/0to1/0"/> + <trip id="car2166" depart="2166.00" from="0/3to0/2" to="3/1to3/2"/> + <trip id="car2167" depart="2167.00" from="3/0to2/0" to="1/4to1/3"/> + <trip id="car2168" depart="2168.00" from="4/0to3/0" to="3/3to3/4"/> + <trip id="car2169" depart="2169.00" from="4/0to3/0" to="2/3to1/3"/> + <trip id="car2170" depart="2170.00" from="4/4to4/3" to="2/0to2/1"/> + <trip id="car2171" depart="2171.00" from="1/1to1/2" to="3/2to4/2"/> + <trip id="car2172" depart="2172.00" from="0/2to1/2" to="4/0to3/0"/> + <trip id="car2173" depart="2173.00" from="0/2to1/2" to="1/3to1/4"/> + <trip id="car2174" depart="2174.00" from="0/2to0/1" to="3/4to2/4"/> + <trip id="car2175" depart="2175.00" from="2/2to1/2" to="1/1to0/1"/> + <trip id="car2176" depart="2176.00" from="3/3to4/3" to="3/1to2/1"/> + <trip id="car2177" depart="2177.00" from="3/0to2/0" to="2/1to2/2"/> + <trip id="car2178" depart="2178.00" from="3/3to3/2" to="1/0to1/1"/> + <trip id="car2179" depart="2179.00" from="0/0to1/0" to="3/2to2/2"/> + <trip id="car2180" depart="2180.00" from="4/1to3/1" to="2/4to1/4"/> + <trip id="car2181" depart="2181.00" from="1/1to1/0" to="4/3to4/2"/> + <trip id="car2182" depart="2182.00" from="4/2to4/3" to="2/3to1/3"/> + <trip id="car2183" depart="2183.00" from="3/0to2/0" to="3/3to3/2"/> + <trip id="car2184" depart="2184.00" from="2/1to1/1" to="2/3to3/3"/> + <trip id="car2185" depart="2185.00" from="3/0to3/1" to="2/2to3/2"/> + <trip id="car2186" depart="2186.00" from="0/4to1/4" to="3/1to3/2"/> + <trip id="car2187" depart="2187.00" from="1/3to0/3" to="2/1to1/1"/> + <trip id="car2188" depart="2188.00" from="1/3to1/2" to="3/4to4/4"/> + <trip id="car2189" depart="2189.00" from="2/0to2/1" to="3/4to3/3"/> + <trip id="car2190" depart="2190.00" from="3/0to4/0" to="1/2to0/2"/> + <trip id="car2191" depart="2191.00" from="2/4to3/4" to="2/0to2/1"/> + <trip id="car2192" depart="2192.00" from="0/3to0/4" to="1/0to2/0"/> + <trip id="car2193" depart="2193.00" from="1/1to2/1" to="3/4to4/4"/> + <trip id="car2194" depart="2194.00" from="2/1to3/1" to="2/3to2/4"/> + <trip id="car2195" depart="2195.00" from="2/1to1/1" to="3/0to4/0"/> + <trip id="car2196" depart="2196.00" from="0/1to0/0" to="0/4to1/4"/> + <trip id="car2197" depart="2197.00" from="3/4to2/4" to="3/1to2/1"/> + <trip id="car2198" depart="2198.00" from="1/0to1/1" to="4/0to4/1"/> + <trip id="car2199" depart="2199.00" from="4/3to4/4" to="2/2to1/2"/> + <trip id="car2200" depart="2200.00" from="0/0to1/0" to="4/0to4/1"/> + <trip id="car2201" depart="2201.00" from="0/2to0/3" to="2/4to3/4"/> + <trip id="car2202" depart="2202.00" from="2/0to2/1" to="1/4to1/3"/> + <trip id="car2203" depart="2203.00" from="3/1to2/1" to="0/2to1/2"/> + <trip id="car2204" depart="2204.00" from="4/3to3/3" to="3/2to3/1"/> + <trip id="car2205" depart="2205.00" from="0/4to0/3" to="0/3to0/2"/> + <trip id="car2206" depart="2206.00" from="2/2to3/2" to="3/4to4/4"/> + <trip id="car2207" depart="2207.00" from="1/2to0/2" to="4/1to4/0"/> + <trip id="car2208" depart="2208.00" from="1/1to2/1" to="0/3to0/4"/> + <trip id="car2209" depart="2209.00" from="3/4to2/4" to="1/3to1/4"/> + <trip id="car2210" depart="2210.00" from="2/4to1/4" to="2/0to1/0"/> + <trip id="car2211" depart="2211.00" from="3/2to4/2" to="1/1to1/2"/> + <trip id="car2212" depart="2212.00" from="2/0to3/0" to="0/4to0/3"/> + <trip id="car2213" depart="2213.00" from="1/0to1/1" to="4/3to4/4"/> + <trip id="car2214" depart="2214.00" from="2/1to2/0" to="1/2to0/2"/> + <trip id="car2215" depart="2215.00" from="2/4to2/3" to="2/2to2/1"/> + <trip id="car2216" depart="2216.00" from="1/4to1/3" to="4/3to3/3"/> + <trip id="car2217" depart="2217.00" from="1/3to1/2" to="2/0to3/0"/> + <trip id="car2218" depart="2218.00" from="3/1to3/2" to="4/3to4/4"/> + <trip id="car2219" depart="2219.00" from="4/1to4/0" to="4/2to4/3"/> + <trip id="car2220" depart="2220.00" from="1/4to1/3" to="3/2to3/1"/> + <trip id="car2221" depart="2221.00" from="3/4to3/3" to="0/0to1/0"/> + <trip id="car2222" depart="2222.00" from="4/0to3/0" to="3/1to2/1"/> + <trip id="car2223" depart="2223.00" from="4/3to3/3" to="3/1to4/1"/> + <trip id="car2224" depart="2224.00" from="3/3to4/3" to="1/1to2/1"/> + <trip id="car2225" depart="2225.00" from="2/3to2/4" to="1/3to0/3"/> + <trip id="car2226" depart="2226.00" from="4/3to4/2" to="1/4to1/3"/> + <trip id="car2227" depart="2227.00" from="3/4to2/4" to="0/3to0/4"/> + <trip id="car2228" depart="2228.00" from="2/0to1/0" to="4/2to3/2"/> + <trip id="car2229" depart="2229.00" from="2/0to1/0" to="4/4to3/4"/> + <trip id="car2230" depart="2230.00" from="3/4to3/3" to="1/1to1/2"/> + <trip id="car2231" depart="2231.00" from="1/1to0/1" to="4/1to4/2"/> + <trip id="car2232" depart="2232.00" from="2/0to2/1" to="0/1to0/0"/> + <trip id="car2233" depart="2233.00" from="4/1to3/1" to="3/4to3/3"/> + <trip id="car2234" depart="2234.00" from="4/3to3/3" to="2/1to3/1"/> + <trip id="car2235" depart="2235.00" from="3/2to3/1" to="4/1to4/0"/> + <trip id="car2236" depart="2236.00" from="3/1to4/1" to="2/2to2/3"/> + <trip id="car2237" depart="2237.00" from="1/4to0/4" to="2/4to3/4"/> + <trip id="car2238" depart="2238.00" from="3/4to3/3" to="3/2to4/2"/> + <trip id="car2239" depart="2239.00" from="2/1to2/2" to="0/1to0/0"/> + <trip id="car2240" depart="2240.00" from="0/1to1/1" to="3/0to4/0"/> + <trip id="car2241" depart="2241.00" from="3/0to3/1" to="3/3to4/3"/> + <trip id="car2242" depart="2242.00" from="0/3to1/3" to="2/0to2/1"/> + <trip id="car2243" depart="2243.00" from="3/0to3/1" to="1/3to1/2"/> + <trip id="car2244" depart="2244.00" from="0/2to0/3" to="0/4to1/4"/> + <trip id="car2245" depart="2245.00" from="2/2to3/2" to="4/3to4/4"/> + <trip id="car2246" depart="2246.00" from="3/4to4/4" to="3/3to3/2"/> + <trip id="car2247" depart="2247.00" from="4/0to3/0" to="3/1to3/2"/> + <trip id="car2248" depart="2248.00" from="3/3to4/3" to="1/3to1/2"/> + <trip id="car2249" depart="2249.00" from="1/2to0/2" to="3/1to3/2"/> + <trip id="car2250" depart="2250.00" from="1/0to2/0" to="2/0to3/0"/> + <trip id="car2251" depart="2251.00" from="1/0to1/1" to="4/1to4/0"/> + <trip id="car2252" depart="2252.00" from="4/3to3/3" to="4/1to4/0"/> + <trip id="car2253" depart="2253.00" from="1/1to1/0" to="4/3to3/3"/> + <trip id="car2254" depart="2254.00" from="4/2to4/1" to="3/0to4/0"/> + <trip id="car2255" depart="2255.00" from="3/0to3/1" to="4/2to3/2"/> + <trip id="car2256" depart="2256.00" from="4/3to4/4" to="1/0to2/0"/> + <trip id="car2257" depart="2257.00" from="3/2to2/2" to="1/0to0/0"/> + <trip id="car2258" depart="2258.00" from="1/4to1/3" to="4/3to3/3"/> + <trip id="car2259" depart="2259.00" from="0/3to0/4" to="3/2to3/1"/> + <trip id="car2260" depart="2260.00" from="2/1to1/1" to="4/2to4/1"/> + <trip id="car2261" depart="2261.00" from="0/3to0/4" to="3/2to3/1"/> + <trip id="car2262" depart="2262.00" from="1/0to2/0" to="4/0to4/1"/> + <trip id="car2263" depart="2263.00" from="4/0to4/1" to="2/4to3/4"/> + <trip id="car2264" depart="2264.00" from="4/4to4/3" to="1/2to1/3"/> + <trip id="car2265" depart="2265.00" from="2/0to2/1" to="0/4to0/3"/> + <trip id="car2266" depart="2266.00" from="3/0to2/0" to="4/2to3/2"/> + <trip id="car2267" depart="2267.00" from="1/4to1/3" to="3/1to3/2"/> + <trip id="car2268" depart="2268.00" from="2/1to2/2" to="0/0to0/1"/> + <trip id="car2269" depart="2269.00" from="3/2to3/3" to="1/2to0/2"/> + <trip id="car2270" depart="2270.00" from="2/4to2/3" to="3/2to4/2"/> + <trip id="car2271" depart="2271.00" from="3/0to2/0" to="1/3to0/3"/> + <trip id="car2272" depart="2272.00" from="2/0to1/0" to="1/4to1/3"/> + <trip id="car2273" depart="2273.00" from="4/3to4/4" to="2/3to2/4"/> + <trip id="car2274" depart="2274.00" from="2/4to1/4" to="1/2to0/2"/> + <trip id="car2275" depart="2275.00" from="2/2to2/3" to="4/2to4/3"/> + <trip id="car2276" depart="2276.00" from="4/1to4/0" to="0/3to1/3"/> + <trip id="car2277" depart="2277.00" from="0/1to0/2" to="0/3to1/3"/> + <trip id="car2278" depart="2278.00" from="4/1to3/1" to="3/4to4/4"/> + <trip id="car2279" depart="2279.00" from="1/2to1/3" to="4/1to4/0"/> + <trip id="car2280" depart="2280.00" from="3/0to2/0" to="3/3to2/3"/> + <trip id="car2281" depart="2281.00" from="4/1to4/2" to="1/3to1/2"/> + <trip id="car2282" depart="2282.00" from="4/4to4/3" to="3/3to3/2"/> + <trip id="car2283" depart="2283.00" from="0/4to1/4" to="4/0to4/1"/> + <trip id="car2284" depart="2284.00" from="3/1to2/1" to="3/3to4/3"/> + <trip id="car2285" depart="2285.00" from="0/1to1/1" to="0/4to0/3"/> + <trip id="car2286" depart="2286.00" from="2/1to1/1" to="4/4to4/3"/> + <trip id="car2287" depart="2287.00" from="4/2to4/3" to="0/1to0/2"/> + <trip id="car2288" depart="2288.00" from="1/4to0/4" to="3/2to2/2"/> + <trip id="car2289" depart="2289.00" from="4/1to3/1" to="1/0to1/1"/> + <trip id="car2290" depart="2290.00" from="1/0to0/0" to="2/2to2/3"/> + <trip id="car2291" depart="2291.00" from="1/2to1/1" to="4/1to4/2"/> + <trip id="car2292" depart="2292.00" from="4/3to4/4" to="2/3to1/3"/> + <trip id="car2293" depart="2293.00" from="2/3to3/3" to="2/0to3/0"/> + <trip id="car2294" depart="2294.00" from="0/2to0/3" to="3/3to3/2"/> + <trip id="car2295" depart="2295.00" from="0/1to0/0" to="3/1to3/2"/> + <trip id="car2296" depart="2296.00" from="3/1to3/2" to="2/0to1/0"/> + <trip id="car2297" depart="2297.00" from="2/4to2/3" to="4/3to4/2"/> + <trip id="car2298" depart="2298.00" from="3/4to4/4" to="0/4to1/4"/> + <trip id="car2299" depart="2299.00" from="0/2to0/3" to="3/4to4/4"/> + <trip id="car2300" depart="2300.00" from="4/3to4/2" to="2/4to2/3"/> + <trip id="car2301" depart="2301.00" from="0/0to0/1" to="4/3to4/4"/> + <trip id="car2302" depart="2302.00" from="1/3to1/2" to="3/2to3/3"/> + <trip id="car2303" depart="2303.00" from="2/3to3/3" to="1/1to0/1"/> + <trip id="car2304" depart="2304.00" from="0/1to0/2" to="3/0to4/0"/> + <trip id="car2305" depart="2305.00" from="1/3to1/2" to="0/1to1/1"/> + <trip id="car2306" depart="2306.00" from="0/2to0/1" to="4/3to4/2"/> + <trip id="car2307" depart="2307.00" from="1/4to2/4" to="2/0to1/0"/> + <trip id="car2308" depart="2308.00" from="1/0to1/1" to="4/3to4/4"/> + <trip id="car2309" depart="2309.00" from="4/1to3/1" to="0/2to1/2"/> + <trip id="car2310" depart="2310.00" from="4/0to4/1" to="1/0to0/0"/> + <trip id="car2311" depart="2311.00" from="3/3to3/4" to="1/2to1/3"/> + <trip id="car2312" depart="2312.00" from="3/3to2/3" to="3/1to2/1"/> + <trip id="car2313" depart="2313.00" from="0/3to0/4" to="2/2to2/1"/> + <trip id="car2314" depart="2314.00" from="2/1to1/1" to="3/4to2/4"/> + <trip id="car2315" depart="2315.00" from="1/3to0/3" to="3/1to3/2"/> + <trip id="car2316" depart="2316.00" from="0/3to1/3" to="3/1to3/0"/> + <trip id="car2317" depart="2317.00" from="3/4to4/4" to="2/2to3/2"/> + <trip id="car2318" depart="2318.00" from="2/2to2/1" to="4/1to4/0"/> + <trip id="car2319" depart="2319.00" from="2/0to3/0" to="3/3to2/3"/> + <trip id="car2320" depart="2320.00" from="3/4to2/4" to="3/0to2/0"/> + <trip id="car2321" depart="2321.00" from="0/1to0/2" to="1/3to2/3"/> + <trip id="car2322" depart="2322.00" from="3/1to3/2" to="0/4to1/4"/> + <trip id="car2323" depart="2323.00" from="2/2to1/2" to="0/4to0/3"/> + <trip id="car2324" depart="2324.00" from="0/3to1/3" to="4/2to3/2"/> + <trip id="car2325" depart="2325.00" from="4/0to3/0" to="2/2to3/2"/> + <trip id="car2326" depart="2326.00" from="0/3to0/2" to="2/0to3/0"/> + <trip id="car2327" depart="2327.00" from="0/2to1/2" to="3/1to2/1"/> + <trip id="car2328" depart="2328.00" from="2/3to3/3" to="1/2to0/2"/> + <trip id="car2329" depart="2329.00" from="2/2to2/3" to="0/3to0/4"/> + <trip id="car2330" depart="2330.00" from="3/1to2/1" to="1/0to1/1"/> + <trip id="car2331" depart="2331.00" from="0/2to0/3" to="4/1to4/0"/> + <trip id="car2332" depart="2332.00" from="1/2to2/2" to="2/4to1/4"/> + <trip id="car2333" depart="2333.00" from="3/0to2/0" to="1/2to1/1"/> + <trip id="car2334" depart="2334.00" from="4/3to4/4" to="4/1to3/1"/> + <trip id="car2335" depart="2335.00" from="3/2to4/2" to="2/4to3/4"/> + <trip id="car2336" depart="2336.00" from="4/1to3/1" to="0/3to0/2"/> + <trip id="car2337" depart="2337.00" from="2/3to1/3" to="0/0to0/1"/> + <trip id="car2338" depart="2338.00" from="0/3to0/4" to="1/0to0/0"/> + <trip id="car2339" depart="2339.00" from="2/2to1/2" to="3/1to4/1"/> + <trip id="car2340" depart="2340.00" from="4/1to3/1" to="4/3to4/4"/> + <trip id="car2341" depart="2341.00" from="2/4to3/4" to="2/2to1/2"/> + <trip id="car2342" depart="2342.00" from="3/0to2/0" to="4/3to4/4"/> + <trip id="car2343" depart="2343.00" from="1/4to0/4" to="3/1to3/0"/> + <trip id="car2344" depart="2344.00" from="3/1to4/1" to="2/0to1/0"/> + <trip id="car2345" depart="2345.00" from="0/0to1/0" to="0/3to0/2"/> + <trip id="car2346" depart="2346.00" from="0/0to1/0" to="4/3to4/4"/> + <trip id="car2347" depart="2347.00" from="4/0to4/1" to="1/1to0/1"/> + <trip id="car2348" depart="2348.00" from="3/3to4/3" to="1/0to2/0"/> + <trip id="car2349" depart="2349.00" from="1/3to0/3" to="2/1to3/1"/> + <trip id="car2350" depart="2350.00" from="1/0to0/0" to="0/4to1/4"/> + <trip id="car2351" depart="2351.00" from="3/2to2/2" to="4/3to4/4"/> + <trip id="car2352" depart="2352.00" from="2/1to3/1" to="4/0to4/1"/> + <trip id="car2353" depart="2353.00" from="2/4to1/4" to="1/1to0/1"/> + <trip id="car2354" depart="2354.00" from="2/3to3/3" to="3/4to4/4"/> + <trip id="car2355" depart="2355.00" from="4/4to3/4" to="4/0to3/0"/> + <trip id="car2356" depart="2356.00" from="3/1to3/2" to="3/4to3/3"/> + <trip id="car2357" depart="2357.00" from="2/3to1/3" to="2/0to3/0"/> + <trip id="car2358" depart="2358.00" from="1/3to1/2" to="0/2to0/1"/> + <trip id="car2359" depart="2359.00" from="4/3to3/3" to="1/3to2/3"/> + <trip id="car2360" depart="2360.00" from="3/1to4/1" to="0/0to1/0"/> + <trip id="car2361" depart="2361.00" from="1/2to2/2" to="1/0to2/0"/> + <trip id="car2362" depart="2362.00" from="1/1to1/0" to="4/2to3/2"/> + <trip id="car2363" depart="2363.00" from="1/3to2/3" to="2/4to3/4"/> + <trip id="car2364" depart="2364.00" from="4/0to3/0" to="3/1to2/1"/> + <trip id="car2365" depart="2365.00" from="0/3to1/3" to="1/2to2/2"/> + <trip id="car2366" depart="2366.00" from="3/4to4/4" to="3/1to3/0"/> + <trip id="car2367" depart="2367.00" from="3/3to4/3" to="4/0to3/0"/> + <trip id="car2368" depart="2368.00" from="3/0to2/0" to="1/2to1/3"/> + <trip id="car2369" depart="2369.00" from="3/2to4/2" to="3/1to3/0"/> + <trip id="car2370" depart="2370.00" from="0/3to1/3" to="1/0to2/0"/> + <trip id="car2371" depart="2371.00" from="2/4to3/4" to="0/3to0/2"/> + <trip id="car2372" depart="2372.00" from="2/0to3/0" to="4/4to4/3"/> + <trip id="car2373" depart="2373.00" from="1/3to0/3" to="1/1to0/1"/> + <trip id="car2374" depart="2374.00" from="4/1to4/0" to="1/4to0/4"/> + <trip id="car2375" depart="2375.00" from="0/4to1/4" to="3/4to4/4"/> + <trip id="car2376" depart="2376.00" from="4/1to4/2" to="0/1to0/0"/> + <trip id="car2377" depart="2377.00" from="3/0to2/0" to="0/3to0/4"/> + <trip id="car2378" depart="2378.00" from="0/1to0/2" to="4/1to4/0"/> + <trip id="car2379" depart="2379.00" from="1/2to1/1" to="0/4to1/4"/> + <trip id="car2380" depart="2380.00" from="4/2to4/3" to="2/1to2/0"/> + <trip id="car2381" depart="2381.00" from="4/2to3/2" to="0/4to1/4"/> + <trip id="car2382" depart="2382.00" from="1/2to2/2" to="2/1to2/0"/> + <trip id="car2383" depart="2383.00" from="0/2to1/2" to="3/0to4/0"/> + <trip id="car2384" depart="2384.00" from="4/0to3/0" to="2/1to2/0"/> + <trip id="car2385" depart="2385.00" from="2/0to3/0" to="3/3to3/2"/> + <trip id="car2386" depart="2386.00" from="1/1to2/1" to="3/4to2/4"/> + <trip id="car2387" depart="2387.00" from="3/3to2/3" to="1/4to0/4"/> + <trip id="car2388" depart="2388.00" from="3/1to3/0" to="0/4to1/4"/> + <trip id="car2389" depart="2389.00" from="3/3to2/3" to="2/0to3/0"/> + <trip id="car2390" depart="2390.00" from="1/1to1/2" to="3/4to2/4"/> + <trip id="car2391" depart="2391.00" from="2/1to2/2" to="4/0to4/1"/> + <trip id="car2392" depart="2392.00" from="3/3to4/3" to="1/4to0/4"/> + <trip id="car2393" depart="2393.00" from="0/1to0/0" to="0/4to0/3"/> + <trip id="car2394" depart="2394.00" from="0/0to0/1" to="3/4to2/4"/> + <trip id="car2395" depart="2395.00" from="4/3to3/3" to="0/2to0/3"/> + <trip id="car2396" depart="2396.00" from="1/3to1/2" to="4/4to3/4"/> + <trip id="car2397" depart="2397.00" from="3/3to2/3" to="3/1to2/1"/> + <trip id="car2398" depart="2398.00" from="3/0to4/0" to="4/2to3/2"/> + <trip id="car2399" depart="2399.00" from="0/1to1/1" to="3/0to3/1"/> + <trip id="car2400" depart="2400.00" from="2/0to2/1" to="3/1to3/2"/> + <trip id="car2401" depart="2401.00" from="2/3to2/4" to="1/3to0/3"/> + <trip id="car2402" depart="2402.00" from="0/0to0/1" to="1/2to1/3"/> + <trip id="car2403" depart="2403.00" from="2/3to1/3" to="4/2to4/1"/> + <trip id="car2404" depart="2404.00" from="3/2to2/2" to="2/1to2/0"/> + <trip id="car2405" depart="2405.00" from="3/3to4/3" to="3/1to2/1"/> + <trip id="car2406" depart="2406.00" from="3/3to3/4" to="2/0to2/1"/> + <trip id="car2407" depart="2407.00" from="1/0to2/0" to="1/3to0/3"/> + <trip id="car2408" depart="2408.00" from="0/1to0/0" to="1/3to1/4"/> + <trip id="car2409" depart="2409.00" from="0/3to1/3" to="4/4to4/3"/> + <trip id="car2410" depart="2410.00" from="3/3to2/3" to="0/4to1/4"/> + <trip id="car2411" depart="2411.00" from="0/1to0/0" to="3/3to4/3"/> + <trip id="car2412" depart="2412.00" from="2/4to2/3" to="1/1to2/1"/> + <trip id="car2413" depart="2413.00" from="4/4to3/4" to="0/3to0/2"/> + <trip id="car2414" depart="2414.00" from="0/1to1/1" to="1/4to1/3"/> + <trip id="car2415" depart="2415.00" from="3/0to3/1" to="1/4to0/4"/> + <trip id="car2416" depart="2416.00" from="0/1to0/2" to="3/1to2/1"/> + <trip id="car2417" depart="2417.00" from="0/3to0/4" to="1/2to2/2"/> + <trip id="car2418" depart="2418.00" from="4/4to3/4" to="3/4to2/4"/> + <trip id="car2419" depart="2419.00" from="3/3to3/4" to="3/2to3/1"/> + <trip id="car2420" depart="2420.00" from="3/4to3/3" to="1/4to0/4"/> + <trip id="car2421" depart="2421.00" from="0/2to1/2" to="3/2to2/2"/> + <trip id="car2422" depart="2422.00" from="3/4to4/4" to="0/2to0/3"/> + <trip id="car2423" depart="2423.00" from="0/1to1/1" to="4/1to4/2"/> + <trip id="car2424" depart="2424.00" from="2/2to1/2" to="2/1to2/0"/> + <trip id="car2425" depart="2425.00" from="2/4to2/3" to="2/2to3/2"/> + <trip id="car2426" depart="2426.00" from="2/2to2/1" to="2/0to3/0"/> + <trip id="car2427" depart="2427.00" from="2/1to2/0" to="4/2to4/3"/> + <trip id="car2428" depart="2428.00" from="2/2to2/1" to="4/3to4/4"/> + <trip id="car2429" depart="2429.00" from="3/4to3/3" to="0/4to0/3"/> + <trip id="car2430" depart="2430.00" from="0/3to1/3" to="3/2to2/2"/> + <trip id="car2431" depart="2431.00" from="0/3to1/3" to="3/2to2/2"/> + <trip id="car2432" depart="2432.00" from="4/1to3/1" to="0/3to0/4"/> + <trip id="car2433" depart="2433.00" from="1/1to1/0" to="2/1to3/1"/> + <trip id="car2434" depart="2434.00" from="1/4to1/3" to="4/3to4/2"/> + <trip id="car2435" depart="2435.00" from="2/4to3/4" to="2/0to2/1"/> + <trip id="car2436" depart="2436.00" from="0/3to0/4" to="2/3to3/3"/> + <trip id="car2437" depart="2437.00" from="0/1to0/2" to="0/4to1/4"/> + <trip id="car2438" depart="2438.00" from="1/4to1/3" to="4/4to4/3"/> + <trip id="car2439" depart="2439.00" from="3/3to4/3" to="0/4to0/3"/> + <trip id="car2440" depart="2440.00" from="2/4to2/3" to="0/1to0/2"/> + <trip id="car2441" depart="2441.00" from="1/1to1/0" to="3/4to3/3"/> + <trip id="car2442" depart="2442.00" from="2/2to2/1" to="0/3to0/4"/> + <trip id="car2443" depart="2443.00" from="1/3to2/3" to="4/1to3/1"/> + <trip id="car2444" depart="2444.00" from="2/0to3/0" to="2/3to3/3"/> + <trip id="car2445" depart="2445.00" from="3/3to3/4" to="2/2to1/2"/> + <trip id="car2446" depart="2446.00" from="3/2to3/1" to="2/4to3/4"/> + <trip id="car2447" depart="2447.00" from="1/3to1/4" to="3/3to4/3"/> + <trip id="car2448" depart="2448.00" from="2/3to2/2" to="4/3to4/2"/> + <trip id="car2449" depart="2449.00" from="4/1to4/2" to="3/2to3/3"/> + <trip id="car2450" depart="2450.00" from="2/3to2/4" to="0/3to0/4"/> + <trip id="car2451" depart="2451.00" from="2/3to2/4" to="1/0to2/0"/> + <trip id="car2452" depart="2452.00" from="3/0to2/0" to="2/4to1/4"/> + <trip id="car2453" depart="2453.00" from="0/1to1/1" to="2/3to3/3"/> + <trip id="car2454" depart="2454.00" from="1/0to2/0" to="2/2to1/2"/> + <trip id="car2455" depart="2455.00" from="4/1to4/2" to="0/3to0/4"/> + <trip id="car2456" depart="2456.00" from="4/2to4/3" to="1/0to1/1"/> + <trip id="car2457" depart="2457.00" from="0/0to1/0" to="3/3to3/4"/> + <trip id="car2458" depart="2458.00" from="4/1to4/2" to="2/1to2/0"/> + <trip id="car2459" depart="2459.00" from="2/0to2/1" to="0/1to0/2"/> + <trip id="car2460" depart="2460.00" from="4/0to4/1" to="0/0to1/0"/> + <trip id="car2461" depart="2461.00" from="4/0to4/1" to="1/3to1/2"/> + <trip id="car2462" depart="2462.00" from="1/2to0/2" to="0/3to0/4"/> + <trip id="car2463" depart="2463.00" from="0/2to1/2" to="1/0to0/0"/> + <trip id="car2464" depart="2464.00" from="0/4to0/3" to="1/2to0/2"/> + <trip id="car2465" depart="2465.00" from="2/0to2/1" to="1/0to0/0"/> + <trip id="car2466" depart="2466.00" from="3/0to2/0" to="1/3to1/4"/> + <trip id="car2467" depart="2467.00" from="2/0to1/0" to="1/3to1/2"/> + <trip id="car2468" depart="2468.00" from="2/0to3/0" to="1/3to1/2"/> + <trip id="car2469" depart="2469.00" from="1/4to2/4" to="3/4to4/4"/> + <trip id="car2470" depart="2470.00" from="0/3to0/4" to="1/1to0/1"/> + <trip id="car2471" depart="2471.00" from="3/3to2/3" to="2/4to1/4"/> + <trip id="car2472" depart="2472.00" from="0/1to1/1" to="2/1to3/1"/> + <trip id="car2473" depart="2473.00" from="2/0to2/1" to="2/2to1/2"/> + <trip id="car2474" depart="2474.00" from="2/0to2/1" to="1/1to1/2"/> + <trip id="car2475" depart="2475.00" from="4/1to4/0" to="1/2to1/1"/> + <trip id="car2476" depart="2476.00" from="1/1to2/1" to="2/3to2/4"/> + <trip id="car2477" depart="2477.00" from="3/3to3/4" to="1/3to0/3"/> + <trip id="car2478" depart="2478.00" from="2/0to2/1" to="0/2to0/3"/> + <trip id="car2479" depart="2479.00" from="3/0to3/1" to="1/1to0/1"/> + <trip id="car2480" depart="2480.00" from="4/3to4/4" to="1/4to1/3"/> + <trip id="car2481" depart="2481.00" from="2/3to2/2" to="2/0to3/0"/> + <trip id="car2482" depart="2482.00" from="4/2to3/2" to="2/1to2/2"/> + <trip id="car2483" depart="2483.00" from="0/0to0/1" to="2/1to3/1"/> + <trip id="car2484" depart="2484.00" from="3/4to4/4" to="1/2to2/2"/> + <trip id="car2485" depart="2485.00" from="4/3to4/4" to="0/0to0/1"/> + <trip id="car2486" depart="2486.00" from="4/2to4/3" to="2/2to1/2"/> + <trip id="car2487" depart="2487.00" from="2/4to2/3" to="4/0to3/0"/> + <trip id="car2488" depart="2488.00" from="3/0to3/1" to="2/4to1/4"/> + <trip id="car2489" depart="2489.00" from="2/2to2/3" to="0/1to0/2"/> + <trip id="car2490" depart="2490.00" from="1/3to0/3" to="2/0to1/0"/> + <trip id="car2491" depart="2491.00" from="2/1to1/1" to="2/4to3/4"/> + <trip id="car2492" depart="2492.00" from="4/3to4/2" to="1/3to1/2"/> + <trip id="car2493" depart="2493.00" from="3/1to3/2" to="1/3to2/3"/> + <trip id="car2494" depart="2494.00" from="4/4to3/4" to="1/3to2/3"/> + <trip id="car2495" depart="2495.00" from="2/1to2/2" to="2/4to2/3"/> + <trip id="car2496" depart="2496.00" from="0/0to1/0" to="3/1to4/1"/> + <trip id="car2497" depart="2497.00" from="3/0to4/0" to="0/0to0/1"/> + <trip id="car2498" depart="2498.00" from="4/1to4/2" to="3/2to2/2"/> + <trip id="car2499" depart="2499.00" from="3/3to3/4" to="3/0to4/0"/> + <trip id="car2500" depart="2500.00" from="0/2to0/3" to="0/1to0/0"/> + <trip id="car2501" depart="2501.00" from="3/4to4/4" to="3/1to3/0"/> + <trip id="car2502" depart="2502.00" from="3/1to3/0" to="1/4to0/4"/> + <trip id="car2503" depart="2503.00" from="1/4to0/4" to="1/0to1/1"/> + <trip id="car2504" depart="2504.00" from="3/3to3/2" to="3/1to4/1"/> + <trip id="car2505" depart="2505.00" from="0/0to0/1" to="2/1to3/1"/> + <trip id="car2506" depart="2506.00" from="4/2to4/3" to="2/1to2/0"/> + <trip id="car2507" depart="2507.00" from="1/2to1/3" to="4/2to4/1"/> + <trip id="car2508" depart="2508.00" from="1/4to0/4" to="0/2to1/2"/> + <trip id="car2509" depart="2509.00" from="3/0to2/0" to="1/3to0/3"/> + <trip id="car2510" depart="2510.00" from="3/2to3/1" to="1/1to1/2"/> + <trip id="car2511" depart="2511.00" from="1/2to1/3" to="4/2to3/2"/> + <trip id="car2512" depart="2512.00" from="3/2to2/2" to="1/1to0/1"/> + <trip id="car2513" depart="2513.00" from="1/0to2/0" to="3/4to3/3"/> + <trip id="car2514" depart="2514.00" from="2/3to3/3" to="2/2to2/1"/> + <trip id="car2515" depart="2515.00" from="2/3to2/4" to="3/1to2/1"/> + <trip id="car2516" depart="2516.00" from="2/3to3/3" to="0/2to0/1"/> + <trip id="car2517" depart="2517.00" from="0/3to1/3" to="0/2to0/1"/> + <trip id="car2518" depart="2518.00" from="1/2to0/2" to="2/3to3/3"/> + <trip id="car2519" depart="2519.00" from="1/1to1/2" to="2/2to3/2"/> + <trip id="car2520" depart="2520.00" from="3/3to3/4" to="1/0to2/0"/> + <trip id="car2521" depart="2521.00" from="3/1to3/2" to="4/4to4/3"/> + <trip id="car2522" depart="2522.00" from="3/1to4/1" to="2/3to1/3"/> + <trip id="car2523" depart="2523.00" from="1/2to0/2" to="2/3to2/4"/> + <trip id="car2524" depart="2524.00" from="2/1to2/2" to="4/3to3/3"/> + <trip id="car2525" depart="2525.00" from="3/0to4/0" to="4/3to3/3"/> + <trip id="car2526" depart="2526.00" from="0/1to1/1" to="4/3to3/3"/> + <trip id="car2527" depart="2527.00" from="2/1to1/1" to="4/4to4/3"/> + <trip id="car2528" depart="2528.00" from="1/2to1/1" to="3/1to3/2"/> + <trip id="car2529" depart="2529.00" from="2/1to3/1" to="1/4to0/4"/> + <trip id="car2530" depart="2530.00" from="3/3to2/3" to="4/1to4/0"/> + <trip id="car2531" depart="2531.00" from="1/1to1/0" to="1/2to1/3"/> + <trip id="car2532" depart="2532.00" from="0/0to0/1" to="1/0to2/0"/> + <trip id="car2533" depart="2533.00" from="0/2to0/3" to="2/3to3/3"/> + <trip id="car2534" depart="2534.00" from="0/1to0/0" to="3/2to3/3"/> + <trip id="car2535" depart="2535.00" from="4/4to3/4" to="2/0to3/0"/> + <trip id="car2536" depart="2536.00" from="0/2to0/1" to="1/1to2/1"/> + <trip id="car2537" depart="2537.00" from="1/0to0/0" to="1/3to0/3"/> + <trip id="car2538" depart="2538.00" from="3/0to3/1" to="0/2to1/2"/> + <trip id="car2539" depart="2539.00" from="2/2to1/2" to="3/4to2/4"/> + <trip id="car2540" depart="2540.00" from="2/4to2/3" to="3/0to3/1"/> + <trip id="car2541" depart="2541.00" from="0/3to0/2" to="1/1to2/1"/> + <trip id="car2542" depart="2542.00" from="1/3to2/3" to="0/1to1/1"/> + <trip id="car2543" depart="2543.00" from="1/3to1/4" to="3/3to4/3"/> + <trip id="car2544" depart="2544.00" from="3/0to2/0" to="3/3to3/2"/> + <trip id="car2545" depart="2545.00" from="3/0to3/1" to="2/4to1/4"/> + <trip id="car2546" depart="2546.00" from="4/0to3/0" to="0/2to0/1"/> + <trip id="car2547" depart="2547.00" from="0/3to1/3" to="4/2to4/1"/> + <trip id="car2548" depart="2548.00" from="2/1to2/0" to="1/3to0/3"/> + <trip id="car2549" depart="2549.00" from="3/0to3/1" to="0/2to0/1"/> + <trip id="car2550" depart="2550.00" from="3/1to3/2" to="2/3to2/4"/> + <trip id="car2551" depart="2551.00" from="1/2to2/2" to="1/4to2/4"/> + <trip id="car2552" depart="2552.00" from="0/2to1/2" to="3/3to2/3"/> + <trip id="car2553" depart="2553.00" from="1/1to1/2" to="2/4to2/3"/> + <trip id="car2554" depart="2554.00" from="3/1to2/1" to="0/0to0/1"/> + <trip id="car2555" depart="2555.00" from="1/4to2/4" to="3/3to4/3"/> + <trip id="car2556" depart="2556.00" from="4/1to4/0" to="3/0to2/0"/> + <trip id="car2557" depart="2557.00" from="1/3to2/3" to="4/3to3/3"/> + <trip id="car2558" depart="2558.00" from="1/3to1/4" to="1/0to2/0"/> + <trip id="car2559" depart="2559.00" from="0/3to0/2" to="2/4to2/3"/> + <trip id="car2560" depart="2560.00" from="0/2to0/1" to="3/3to4/3"/> + <trip id="car2561" depart="2561.00" from="1/0to2/0" to="2/3to3/3"/> + <trip id="car2562" depart="2562.00" from="3/0to3/1" to="1/2to0/2"/> + <trip id="car2563" depart="2563.00" from="3/3to4/3" to="0/1to1/1"/> + <trip id="car2564" depart="2564.00" from="1/3to0/3" to="2/1to1/1"/> + <trip id="car2565" depart="2565.00" from="4/3to4/2" to="3/3to2/3"/> + <trip id="car2566" depart="2566.00" from="1/3to0/3" to="4/1to4/0"/> + <trip id="car2567" depart="2567.00" from="3/3to3/4" to="0/4to0/3"/> + <trip id="car2568" depart="2568.00" from="1/4to1/3" to="0/0to0/1"/> + <trip id="car2569" depart="2569.00" from="2/4to1/4" to="3/1to3/2"/> + <trip id="car2570" depart="2570.00" from="0/1to1/1" to="2/2to2/3"/> + <trip id="car2571" depart="2571.00" from="3/4to4/4" to="4/0to4/1"/> + <trip id="car2572" depart="2572.00" from="1/1to0/1" to="4/2to3/2"/> + <trip id="car2573" depart="2573.00" from="4/4to3/4" to="2/4to2/3"/> + <trip id="car2574" depart="2574.00" from="4/3to4/4" to="3/0to2/0"/> + <trip id="car2575" depart="2575.00" from="2/0to3/0" to="0/4to1/4"/> + <trip id="car2576" depart="2576.00" from="2/1to2/2" to="3/3to4/3"/> + <trip id="car2577" depart="2577.00" from="1/1to2/1" to="3/2to3/3"/> + <trip id="car2578" depart="2578.00" from="4/3to4/2" to="1/3to1/4"/> + <trip id="car2579" depart="2579.00" from="3/2to4/2" to="1/1to0/1"/> + <trip id="car2580" depart="2580.00" from="1/0to1/1" to="4/4to4/3"/> + <trip id="car2581" depart="2581.00" from="1/4to1/3" to="0/2to0/1"/> + <trip id="car2582" depart="2582.00" from="0/1to0/0" to="0/3to0/4"/> + <trip id="car2583" depart="2583.00" from="1/2to2/2" to="1/0to2/0"/> + <trip id="car2584" depart="2584.00" from="2/4to1/4" to="3/3to3/2"/> + <trip id="car2585" depart="2585.00" from="4/0to3/0" to="4/2to3/2"/> + <trip id="car2586" depart="2586.00" from="0/0to1/0" to="3/1to3/2"/> + <trip id="car2587" depart="2587.00" from="1/4to2/4" to="3/3to3/4"/> + <trip id="car2588" depart="2588.00" from="0/3to0/2" to="4/2to4/3"/> + <trip id="car2589" depart="2589.00" from="1/3to0/3" to="1/1to2/1"/> + <trip id="car2590" depart="2590.00" from="3/4to2/4" to="3/1to2/1"/> + <trip id="car2591" depart="2591.00" from="4/4to4/3" to="4/1to4/0"/> + <trip id="car2592" depart="2592.00" from="4/1to4/0" to="0/2to0/1"/> + <trip id="car2593" depart="2593.00" from="0/4to0/3" to="4/2to4/1"/> + <trip id="car2594" depart="2594.00" from="3/3to4/3" to="1/0to2/0"/> + <trip id="car2595" depart="2595.00" from="2/3to1/3" to="3/3to4/3"/> + <trip id="car2596" depart="2596.00" from="1/3to1/4" to="0/1to1/1"/> + <trip id="car2597" depart="2597.00" from="3/3to4/3" to="4/1to3/1"/> + <trip id="car2598" depart="2598.00" from="4/0to4/1" to="4/3to4/4"/> + <trip id="car2599" depart="2599.00" from="4/1to4/0" to="1/1to0/1"/> + <trip id="car2600" depart="2600.00" from="0/2to0/3" to="2/1to3/1"/> + <trip id="car2601" depart="2601.00" from="3/1to3/0" to="0/2to0/1"/> + <trip id="car2602" depart="2602.00" from="3/0to4/0" to="2/2to2/3"/> + <trip id="car2603" depart="2603.00" from="2/0to2/1" to="4/2to4/1"/> + <trip id="car2604" depart="2604.00" from="2/4to1/4" to="0/1to0/0"/> + <trip id="car2605" depart="2605.00" from="4/1to3/1" to="2/0to1/0"/> + <trip id="car2606" depart="2606.00" from="1/3to0/3" to="4/1to4/2"/> + <trip id="car2607" depart="2607.00" from="2/3to3/3" to="4/2to4/3"/> + <trip id="car2608" depart="2608.00" from="2/1to2/0" to="1/4to0/4"/> + <trip id="car2609" depart="2609.00" from="2/4to1/4" to="2/1to3/1"/> + <trip id="car2610" depart="2610.00" from="3/0to2/0" to="2/1to1/1"/> + <trip id="car2611" depart="2611.00" from="3/4to2/4" to="1/3to1/2"/> + <trip id="car2612" depart="2612.00" from="1/4to2/4" to="1/0to1/1"/> + <trip id="car2613" depart="2613.00" from="1/1to1/2" to="3/0to4/0"/> + <trip id="car2614" depart="2614.00" from="4/0to3/0" to="2/2to3/2"/> + <trip id="car2615" depart="2615.00" from="3/0to4/0" to="3/3to3/4"/> + <trip id="car2616" depart="2616.00" from="4/2to4/3" to="0/2to1/2"/> + <trip id="car2617" depart="2617.00" from="3/4to3/3" to="3/1to3/2"/> + <trip id="car2618" depart="2618.00" from="4/2to3/2" to="0/0to0/1"/> + <trip id="car2619" depart="2619.00" from="1/2to2/2" to="3/4to3/3"/> + <trip id="car2620" depart="2620.00" from="3/3to3/4" to="2/0to2/1"/> + <trip id="car2621" depart="2621.00" from="2/0to2/1" to="2/4to1/4"/> + <trip id="car2622" depart="2622.00" from="0/4to0/3" to="2/0to1/0"/> + <trip id="car2623" depart="2623.00" from="1/1to1/2" to="3/2to4/2"/> + <trip id="car2624" depart="2624.00" from="3/3to4/3" to="1/3to1/2"/> + <trip id="car2625" depart="2625.00" from="1/0to2/0" to="3/3to3/2"/> + <trip id="car2626" depart="2626.00" from="3/1to4/1" to="1/1to0/1"/> + <trip id="car2627" depart="2627.00" from="2/1to2/0" to="2/3to2/4"/> + <trip id="car2628" depart="2628.00" from="0/3to1/3" to="4/3to3/3"/> + <trip id="car2629" depart="2629.00" from="0/0to0/1" to="3/4to2/4"/> + <trip id="car2630" depart="2630.00" from="2/0to3/0" to="3/1to3/2"/> + <trip id="car2631" depart="2631.00" from="2/0to2/1" to="3/3to3/4"/> + <trip id="car2632" depart="2632.00" from="0/0to1/0" to="3/3to3/4"/> + <trip id="car2633" depart="2633.00" from="4/2to4/1" to="0/4to1/4"/> + <trip id="car2634" depart="2634.00" from="4/3to4/2" to="1/3to1/4"/> + <trip id="car2635" depart="2635.00" from="3/0to3/1" to="2/4to3/4"/> + <trip id="car2636" depart="2636.00" from="2/4to3/4" to="4/1to3/1"/> + <trip id="car2637" depart="2637.00" from="4/4to3/4" to="1/1to0/1"/> + <trip id="car2638" depart="2638.00" from="2/0to1/0" to="2/3to1/3"/> + <trip id="car2639" depart="2639.00" from="1/0to2/0" to="0/3to0/2"/> + <trip id="car2640" depart="2640.00" from="4/1to4/2" to="0/2to1/2"/> + <trip id="car2641" depart="2641.00" from="0/3to0/2" to="2/3to2/4"/> + <trip id="car2642" depart="2642.00" from="0/1to0/0" to="3/1to4/1"/> + <trip id="car2643" depart="2643.00" from="0/2to0/1" to="4/3to4/4"/> + <trip id="car2644" depart="2644.00" from="3/1to2/1" to="0/2to0/1"/> + <trip id="car2645" depart="2645.00" from="0/1to1/1" to="2/2to3/2"/> + <trip id="car2646" depart="2646.00" from="1/0to0/0" to="4/0to4/1"/> + <trip id="car2647" depart="2647.00" from="2/0to2/1" to="0/4to1/4"/> + <trip id="car2648" depart="2648.00" from="2/2to1/2" to="0/2to0/1"/> + <trip id="car2649" depart="2649.00" from="4/3to4/2" to="4/1to3/1"/> + <trip id="car2650" depart="2650.00" from="0/3to1/3" to="1/1to0/1"/> + <trip id="car2651" depart="2651.00" from="2/1to3/1" to="2/4to3/4"/> + <trip id="car2652" depart="2652.00" from="4/3to3/3" to="2/4to1/4"/> + <trip id="car2653" depart="2653.00" from="0/4to0/3" to="0/2to0/1"/> + <trip id="car2654" depart="2654.00" from="2/0to1/0" to="3/4to2/4"/> + <trip id="car2655" depart="2655.00" from="4/1to4/0" to="2/1to2/2"/> + <trip id="car2656" depart="2656.00" from="1/2to2/2" to="4/1to4/0"/> + <trip id="car2657" depart="2657.00" from="3/0to2/0" to="3/4to2/4"/> + <trip id="car2658" depart="2658.00" from="4/1to4/2" to="3/2to3/3"/> + <trip id="car2659" depart="2659.00" from="1/0to1/1" to="2/3to3/3"/> + <trip id="car2660" depart="2660.00" from="2/0to1/0" to="4/3to3/3"/> + <trip id="car2661" depart="2661.00" from="1/1to2/1" to="4/1to3/1"/> + <trip id="car2662" depart="2662.00" from="1/2to1/1" to="3/0to3/1"/> + <trip id="car2663" depart="2663.00" from="1/2to2/2" to="4/2to4/1"/> + <trip id="car2664" depart="2664.00" from="4/4to4/3" to="2/3to2/4"/> + <trip id="car2665" depart="2665.00" from="4/4to4/3" to="0/2to0/3"/> + <trip id="car2666" depart="2666.00" from="0/3to0/2" to="3/3to3/2"/> + <trip id="car2667" depart="2667.00" from="2/1to2/2" to="0/2to0/1"/> + <trip id="car2668" depart="2668.00" from="1/4to2/4" to="3/2to4/2"/> + <trip id="car2669" depart="2669.00" from="4/0to4/1" to="2/0to1/0"/> + <trip id="car2670" depart="2670.00" from="0/0to0/1" to="0/3to0/4"/> + <trip id="car2671" depart="2671.00" from="4/2to4/1" to="1/3to1/4"/> + <trip id="car2672" depart="2672.00" from="3/2to4/2" to="2/2to1/2"/> + <trip id="car2673" depart="2673.00" from="0/2to0/1" to="2/3to2/2"/> + <trip id="car2674" depart="2674.00" from="1/1to2/1" to="4/3to4/2"/> + <trip id="car2675" depart="2675.00" from="0/4to0/3" to="3/4to3/3"/> + <trip id="car2676" depart="2676.00" from="4/0to3/0" to="1/0to0/0"/> + <trip id="car2677" depart="2677.00" from="0/0to1/0" to="0/3to0/2"/> + <trip id="car2678" depart="2678.00" from="2/0to1/0" to="0/2to0/3"/> + <trip id="car2679" depart="2679.00" from="3/1to3/2" to="1/1to1/0"/> + <trip id="car2680" depart="2680.00" from="3/1to4/1" to="3/4to4/4"/> + <trip id="car2681" depart="2681.00" from="3/4to2/4" to="3/0to4/0"/> + <trip id="car2682" depart="2682.00" from="2/0to1/0" to="1/3to0/3"/> + <trip id="car2683" depart="2683.00" from="4/2to4/3" to="1/4to1/3"/> + <trip id="car2684" depart="2684.00" from="2/0to3/0" to="4/4to4/3"/> + <trip id="car2685" depart="2685.00" from="1/3to1/4" to="1/0to2/0"/> + <trip id="car2686" depart="2686.00" from="3/1to3/0" to="1/1to1/0"/> + <trip id="car2687" depart="2687.00" from="4/1to4/0" to="3/3to4/3"/> + <trip id="car2688" depart="2688.00" from="3/4to4/4" to="1/0to0/0"/> + <trip id="car2689" depart="2689.00" from="1/0to0/0" to="2/0to3/0"/> + <trip id="car2690" depart="2690.00" from="2/3to2/4" to="1/0to2/0"/> + <trip id="car2691" depart="2691.00" from="4/3to3/3" to="0/3to0/4"/> + <trip id="car2692" depart="2692.00" from="1/1to1/0" to="1/4to0/4"/> + <trip id="car2693" depart="2693.00" from="1/3to1/2" to="2/0to1/0"/> + <trip id="car2694" depart="2694.00" from="2/1to2/2" to="0/2to0/1"/> + <trip id="car2695" depart="2695.00" from="3/4to3/3" to="3/0to4/0"/> + <trip id="car2696" depart="2696.00" from="1/4to1/3" to="0/2to0/1"/> + <trip id="car2697" depart="2697.00" from="1/1to1/0" to="1/3to0/3"/> + <trip id="car2698" depart="2698.00" from="4/4to4/3" to="4/0to4/1"/> + <trip id="car2699" depart="2699.00" from="1/0to0/0" to="4/3to4/2"/> + <trip id="car2700" depart="2700.00" from="4/3to4/4" to="3/1to4/1"/> + <trip id="car2701" depart="2701.00" from="1/3to1/4" to="3/0to3/1"/> + <trip id="car2702" depart="2702.00" from="4/1to4/0" to="1/3to1/2"/> + <trip id="car2703" depart="2703.00" from="4/0to4/1" to="2/2to1/2"/> + <trip id="car2704" depart="2704.00" from="1/3to1/4" to="2/4to3/4"/> + <trip id="car2705" depart="2705.00" from="3/0to4/0" to="1/1to1/2"/> + <trip id="car2706" depart="2706.00" from="2/4to1/4" to="4/4to4/3"/> + <trip id="car2707" depart="2707.00" from="4/1to4/2" to="1/3to0/3"/> + <trip id="car2708" depart="2708.00" from="3/0to2/0" to="0/1to1/1"/> + <trip id="car2709" depart="2709.00" from="1/4to1/3" to="1/2to2/2"/> + <trip id="car2710" depart="2710.00" from="0/4to1/4" to="1/1to0/1"/> + <trip id="car2711" depart="2711.00" from="0/1to0/2" to="4/2to4/1"/> + <trip id="car2712" depart="2712.00" from="3/2to4/2" to="1/3to1/4"/> + <trip id="car2713" depart="2713.00" from="1/2to1/3" to="3/0to4/0"/> + <trip id="car2714" depart="2714.00" from="4/4to3/4" to="3/0to4/0"/> + <trip id="car2715" depart="2715.00" from="1/2to2/2" to="0/0to1/0"/> + <trip id="car2716" depart="2716.00" from="4/0to3/0" to="1/3to1/4"/> + <trip id="car2717" depart="2717.00" from="4/2to3/2" to="3/1to3/0"/> + <trip id="car2718" depart="2718.00" from="1/1to2/1" to="3/1to3/2"/> + <trip id="car2719" depart="2719.00" from="3/2to3/1" to="2/4to3/4"/> + <trip id="car2720" depart="2720.00" from="1/4to2/4" to="1/3to1/2"/> + <trip id="car2721" depart="2721.00" from="2/1to2/0" to="0/0to0/1"/> + <trip id="car2722" depart="2722.00" from="4/1to3/1" to="0/2to0/1"/> + <trip id="car2723" depart="2723.00" from="1/0to2/0" to="3/0to3/1"/> + <trip id="car2724" depart="2724.00" from="0/4to0/3" to="1/1to0/1"/> + <trip id="car2725" depart="2725.00" from="0/2to1/2" to="2/4to2/3"/> + <trip id="car2726" depart="2726.00" from="1/1to1/2" to="0/2to0/3"/> + <trip id="car2727" depart="2727.00" from="3/2to3/1" to="1/3to0/3"/> + <trip id="car2728" depart="2728.00" from="1/2to1/3" to="2/1to2/0"/> + <trip id="car2729" depart="2729.00" from="3/0to3/1" to="1/2to1/1"/> + <trip id="car2730" depart="2730.00" from="3/3to3/4" to="0/2to0/3"/> + <trip id="car2731" depart="2731.00" from="4/3to4/4" to="2/0to1/0"/> + <trip id="car2732" depart="2732.00" from="3/3to4/3" to="0/0to1/0"/> + <trip id="car2733" depart="2733.00" from="1/4to2/4" to="4/0to4/1"/> + <trip id="car2734" depart="2734.00" from="3/3to2/3" to="4/2to4/1"/> + <trip id="car2735" depart="2735.00" from="3/2to3/3" to="1/2to0/2"/> + <trip id="car2736" depart="2736.00" from="1/4to2/4" to="2/4to3/4"/> + <trip id="car2737" depart="2737.00" from="2/1to3/1" to="0/4to1/4"/> + <trip id="car2738" depart="2738.00" from="2/2to2/1" to="4/2to4/3"/> + <trip id="car2739" depart="2739.00" from="1/4to1/3" to="2/2to2/1"/> + <trip id="car2740" depart="2740.00" from="3/0to4/0" to="2/4to2/3"/> + <trip id="car2741" depart="2741.00" from="2/0to2/1" to="0/1to0/2"/> + <trip id="car2742" depart="2742.00" from="4/2to4/1" to="1/4to2/4"/> + <trip id="car2743" depart="2743.00" from="2/3to3/3" to="1/0to2/0"/> + <trip id="car2744" depart="2744.00" from="2/1to1/1" to="1/2to0/2"/> + <trip id="car2745" depart="2745.00" from="3/1to2/1" to="4/2to4/3"/> + <trip id="car2746" depart="2746.00" from="0/1to0/0" to="3/4to3/3"/> + <trip id="car2747" depart="2747.00" from="3/0to3/1" to="3/1to3/2"/> + <trip id="car2748" depart="2748.00" from="3/1to3/2" to="1/2to0/2"/> + <trip id="car2749" depart="2749.00" from="2/4to3/4" to="4/3to4/2"/> + <trip id="car2750" depart="2750.00" from="4/0to3/0" to="0/0to0/1"/> + <trip id="car2751" depart="2751.00" from="3/3to3/2" to="3/0to4/0"/> + <trip id="car2752" depart="2752.00" from="4/2to4/1" to="2/0to1/0"/> + <trip id="car2753" depart="2753.00" from="2/4to1/4" to="4/2to3/2"/> + <trip id="car2754" depart="2754.00" from="2/2to3/2" to="1/0to2/0"/> + <trip id="car2755" depart="2755.00" from="2/0to3/0" to="3/4to4/4"/> + <trip id="car2756" depart="2756.00" from="4/3to4/4" to="3/1to2/1"/> + <trip id="car2757" depart="2757.00" from="2/0to2/1" to="4/1to4/0"/> + <trip id="car2758" depart="2758.00" from="3/2to3/3" to="0/2to1/2"/> + <trip id="car2759" depart="2759.00" from="3/0to3/1" to="3/3to3/4"/> + <trip id="car2760" depart="2760.00" from="2/0to1/0" to="1/3to0/3"/> + <trip id="car2761" depart="2761.00" from="3/1to2/1" to="3/2to3/3"/> + <trip id="car2762" depart="2762.00" from="1/0to0/0" to="1/4to1/3"/> + <trip id="car2763" depart="2763.00" from="3/2to2/2" to="1/0to2/0"/> + <trip id="car2764" depart="2764.00" from="1/0to1/1" to="4/3to3/3"/> + <trip id="car2765" depart="2765.00" from="2/1to2/2" to="3/4to3/3"/> + <trip id="car2766" depart="2766.00" from="1/0to1/1" to="3/3to2/3"/> + <trip id="car2767" depart="2767.00" from="1/2to0/2" to="4/2to3/2"/> + <trip id="car2768" depart="2768.00" from="1/0to0/0" to="1/2to2/2"/> + <trip id="car2769" depart="2769.00" from="2/2to1/2" to="3/1to3/0"/> + <trip id="car2770" depart="2770.00" from="0/3to0/2" to="0/1to1/1"/> + <trip id="car2771" depart="2771.00" from="3/3to2/3" to="0/0to0/1"/> + <trip id="car2772" depart="2772.00" from="2/4to1/4" to="4/4to4/3"/> + <trip id="car2773" depart="2773.00" from="0/2to1/2" to="2/2to3/2"/> + <trip id="car2774" depart="2774.00" from="0/0to0/1" to="2/4to3/4"/> + <trip id="car2775" depart="2775.00" from="4/4to3/4" to="3/3to2/3"/> + <trip id="car2776" depart="2776.00" from="1/3to1/4" to="2/1to1/1"/> + <trip id="car2777" depart="2777.00" from="1/4to1/3" to="4/1to4/2"/> + <trip id="car2778" depart="2778.00" from="4/3to3/3" to="3/1to3/0"/> + <trip id="car2779" depart="2779.00" from="1/4to2/4" to="0/1to1/1"/> + <trip id="car2780" depart="2780.00" from="0/3to0/2" to="2/1to2/2"/> + <trip id="car2781" depart="2781.00" from="3/1to4/1" to="3/2to3/3"/> + <trip id="car2782" depart="2782.00" from="4/1to4/2" to="0/4to0/3"/> + <trip id="car2783" depart="2783.00" from="2/4to3/4" to="4/1to3/1"/> + <trip id="car2784" depart="2784.00" from="1/2to1/3" to="3/1to4/1"/> + <trip id="car2785" depart="2785.00" from="3/4to3/3" to="1/4to1/3"/> + <trip id="car2786" depart="2786.00" from="2/2to1/2" to="2/0to3/0"/> + <trip id="car2787" depart="2787.00" from="1/0to2/0" to="4/4to3/4"/> + <trip id="car2788" depart="2788.00" from="0/0to1/0" to="1/4to0/4"/> + <trip id="car2789" depart="2789.00" from="0/1to0/2" to="3/4to2/4"/> + <trip id="car2790" depart="2790.00" from="1/3to1/4" to="2/1to2/0"/> + <trip id="car2791" depart="2791.00" from="2/4to3/4" to="2/0to2/1"/> + <trip id="car2792" depart="2792.00" from="3/0to2/0" to="0/2to0/3"/> + <trip id="car2793" depart="2793.00" from="2/1to1/1" to="4/2to4/3"/> + <trip id="car2794" depart="2794.00" from="4/2to4/3" to="4/4to3/4"/> + <trip id="car2795" depart="2795.00" from="4/0to4/1" to="4/2to3/2"/> + <trip id="car2796" depart="2796.00" from="1/0to2/0" to="0/4to0/3"/> + <trip id="car2797" depart="2797.00" from="4/0to4/1" to="2/2to2/3"/> + <trip id="car2798" depart="2798.00" from="0/3to1/3" to="3/3to4/3"/> + <trip id="car2799" depart="2799.00" from="1/3to0/3" to="3/1to3/0"/> + <trip id="car2800" depart="2800.00" from="2/3to2/2" to="4/1to3/1"/> + <trip id="car2801" depart="2801.00" from="0/3to0/4" to="3/1to3/0"/> + <trip id="car2802" depart="2802.00" from="3/3to2/3" to="3/1to2/1"/> + <trip id="car2803" depart="2803.00" from="3/2to3/1" to="0/4to1/4"/> + <trip id="car2804" depart="2804.00" from="3/3to3/2" to="1/1to1/0"/> + <trip id="car2805" depart="2805.00" from="4/1to4/2" to="0/3to0/4"/> + <trip id="car2806" depart="2806.00" from="3/2to3/3" to="0/2to1/2"/> + <trip id="car2807" depart="2807.00" from="2/4to3/4" to="3/0to4/0"/> + <trip id="car2808" depart="2808.00" from="1/4to2/4" to="3/2to3/1"/> + <trip id="car2809" depart="2809.00" from="3/2to3/3" to="1/4to2/4"/> + <trip id="car2810" depart="2810.00" from="3/0to4/0" to="2/3to2/4"/> + <trip id="car2811" depart="2811.00" from="4/0to4/1" to="3/4to2/4"/> + <trip id="car2812" depart="2812.00" from="1/1to1/0" to="0/3to0/4"/> + <trip id="car2813" depart="2813.00" from="3/2to4/2" to="0/3to0/4"/> + <trip id="car2814" depart="2814.00" from="1/4to1/3" to="4/0to4/1"/> + <trip id="car2815" depart="2815.00" from="4/3to4/2" to="2/4to1/4"/> + <trip id="car2816" depart="2816.00" from="2/3to1/3" to="4/0to3/0"/> + <trip id="car2817" depart="2817.00" from="4/4to3/4" to="1/3to1/2"/> + <trip id="car2818" depart="2818.00" from="1/4to1/3" to="3/1to3/2"/> + <trip id="car2819" depart="2819.00" from="2/4to3/4" to="1/1to1/0"/> + <trip id="car2820" depart="2820.00" from="2/0to1/0" to="2/3to2/2"/> + <trip id="car2821" depart="2821.00" from="2/1to2/2" to="0/4to0/3"/> + <trip id="car2822" depart="2822.00" from="2/4to3/4" to="0/4to0/3"/> + <trip id="car2823" depart="2823.00" from="3/1to3/0" to="3/4to2/4"/> + <trip id="car2824" depart="2824.00" from="1/3to0/3" to="4/4to4/3"/> + <trip id="car2825" depart="2825.00" from="0/3to0/4" to="4/4to4/3"/> + <trip id="car2826" depart="2826.00" from="3/2to2/2" to="2/2to1/2"/> + <trip id="car2827" depart="2827.00" from="3/4to4/4" to="2/2to2/1"/> + <trip id="car2828" depart="2828.00" from="3/2to2/2" to="1/4to2/4"/> + <trip id="car2829" depart="2829.00" from="4/4to3/4" to="1/3to1/4"/> + <trip id="car2830" depart="2830.00" from="3/4to4/4" to="1/1to0/1"/> + <trip id="car2831" depart="2831.00" from="3/2to3/3" to="3/4to2/4"/> + <trip id="car2832" depart="2832.00" from="3/2to2/2" to="0/1to1/1"/> + <trip id="car2833" depart="2833.00" from="4/1to3/1" to="1/0to1/1"/> + <trip id="car2834" depart="2834.00" from="2/2to2/1" to="2/0to1/0"/> + <trip id="car2835" depart="2835.00" from="4/4to3/4" to="3/1to2/1"/> + <trip id="car2836" depart="2836.00" from="4/0to3/0" to="4/4to4/3"/> + <trip id="car2837" depart="2837.00" from="3/1to3/2" to="4/4to4/3"/> + <trip id="car2838" depart="2838.00" from="3/3to2/3" to="2/0to1/0"/> + <trip id="car2839" depart="2839.00" from="4/0to4/1" to="2/0to1/0"/> + <trip id="car2840" depart="2840.00" from="0/3to1/3" to="3/3to2/3"/> + <trip id="car2841" depart="2841.00" from="4/0to3/0" to="3/2to2/2"/> + <trip id="car2842" depart="2842.00" from="2/1to2/2" to="1/0to0/0"/> + <trip id="car2843" depart="2843.00" from="0/4to0/3" to="3/1to4/1"/> + <trip id="car2844" depart="2844.00" from="1/1to1/0" to="3/2to4/2"/> + <trip id="car2845" depart="2845.00" from="3/2to3/3" to="0/0to0/1"/> + <trip id="car2846" depart="2846.00" from="3/2to3/3" to="2/4to1/4"/> + <trip id="car2847" depart="2847.00" from="3/1to3/2" to="4/4to4/3"/> + <trip id="car2848" depart="2848.00" from="0/4to0/3" to="4/3to4/2"/> + <trip id="car2849" depart="2849.00" from="4/2to4/3" to="0/2to1/2"/> + <trip id="car2850" depart="2850.00" from="4/3to4/4" to="1/0to1/1"/> + <trip id="car2851" depart="2851.00" from="0/1to1/1" to="4/4to3/4"/> + <trip id="car2852" depart="2852.00" from="3/1to2/1" to="2/4to2/3"/> + <trip id="car2853" depart="2853.00" from="4/3to4/4" to="3/0to3/1"/> + <trip id="car2854" depart="2854.00" from="2/0to2/1" to="0/1to0/0"/> + <trip id="car2855" depart="2855.00" from="3/1to2/1" to="1/4to2/4"/> + <trip id="car2856" depart="2856.00" from="3/1to4/1" to="3/3to4/3"/> + <trip id="car2857" depart="2857.00" from="3/1to2/1" to="3/3to3/4"/> + <trip id="car2858" depart="2858.00" from="4/1to3/1" to="3/1to2/1"/> + <trip id="car2859" depart="2859.00" from="0/2to0/3" to="2/2to2/1"/> + <trip id="car2860" depart="2860.00" from="3/1to3/0" to="2/2to2/3"/> + <trip id="car2861" depart="2861.00" from="0/0to1/0" to="2/3to3/3"/> + <trip id="car2862" depart="2862.00" from="2/3to3/3" to="1/2to1/1"/> + <trip id="car2863" depart="2863.00" from="1/0to1/1" to="2/2to1/2"/> + <trip id="car2864" depart="2864.00" from="3/0to4/0" to="2/1to1/1"/> + <trip id="car2865" depart="2865.00" from="0/2to0/1" to="4/2to3/2"/> + <trip id="car2866" depart="2866.00" from="3/3to4/3" to="1/0to1/1"/> + <trip id="car2867" depart="2867.00" from="3/4to3/3" to="0/0to1/0"/> + <trip id="car2868" depart="2868.00" from="3/4to2/4" to="2/2to2/1"/> + <trip id="car2869" depart="2869.00" from="2/2to3/2" to="2/4to1/4"/> + <trip id="car2870" depart="2870.00" from="0/3to0/4" to="3/3to2/3"/> + <trip id="car2871" depart="2871.00" from="1/0to1/1" to="2/4to2/3"/> + <trip id="car2872" depart="2872.00" from="1/0to1/1" to="2/3to2/4"/> + <trip id="car2873" depart="2873.00" from="3/4to2/4" to="0/3to0/4"/> + <trip id="car2874" depart="2874.00" from="0/3to1/3" to="1/1to0/1"/> + <trip id="car2875" depart="2875.00" from="0/4to1/4" to="2/3to2/4"/> + <trip id="car2876" depart="2876.00" from="4/0to4/1" to="0/1to0/0"/> + <trip id="car2877" depart="2877.00" from="4/4to3/4" to="2/2to2/3"/> + <trip id="car2878" depart="2878.00" from="1/4to1/3" to="2/3to2/2"/> + <trip id="car2879" depart="2879.00" from="2/0to3/0" to="4/3to3/3"/> + <trip id="car2880" depart="2880.00" from="0/0to0/1" to="1/3to0/3"/> + <trip id="car2881" depart="2881.00" from="3/3to3/4" to="3/1to2/1"/> + <trip id="car2882" depart="2882.00" from="2/1to2/0" to="2/4to1/4"/> + <trip id="car2883" depart="2883.00" from="4/4to3/4" to="1/4to0/4"/> + <trip id="car2884" depart="2884.00" from="2/3to2/2" to="1/1to0/1"/> + <trip id="car2885" depart="2885.00" from="0/2to1/2" to="3/4to3/3"/> + <trip id="car2886" depart="2886.00" from="1/2to2/2" to="3/4to4/4"/> + <trip id="car2887" depart="2887.00" from="1/1to1/0" to="1/4to0/4"/> + <trip id="car2888" depart="2888.00" from="0/3to1/3" to="3/0to2/0"/> + <trip id="car2889" depart="2889.00" from="1/4to2/4" to="4/2to3/2"/> + <trip id="car2890" depart="2890.00" from="2/0to2/1" to="0/2to0/3"/> + <trip id="car2891" depart="2891.00" from="3/1to4/1" to="2/3to1/3"/> + <trip id="car2892" depart="2892.00" from="0/2to0/1" to="3/2to3/3"/> + <trip id="car2893" depart="2893.00" from="4/4to4/3" to="3/1to4/1"/> + <trip id="car2894" depart="2894.00" from="1/0to2/0" to="1/4to1/3"/> + <trip id="car2895" depart="2895.00" from="3/1to2/1" to="3/4to3/3"/> + <trip id="car2896" depart="2896.00" from="2/4to3/4" to="2/0to3/0"/> + <trip id="car2897" depart="2897.00" from="0/4to1/4" to="4/4to4/3"/> + <trip id="car2898" depart="2898.00" from="2/1to1/1" to="0/1to0/0"/> + <trip id="car2899" depart="2899.00" from="2/4to3/4" to="0/2to0/3"/> + <trip id="car2900" depart="2900.00" from="2/3to2/2" to="0/2to0/1"/> + <trip id="car2901" depart="2901.00" from="3/0to4/0" to="1/4to1/3"/> + <trip id="car2902" depart="2902.00" from="1/3to1/4" to="1/2to1/1"/> + <trip id="car2903" depart="2903.00" from="4/1to3/1" to="1/1to1/2"/> + <trip id="car2904" depart="2904.00" from="0/0to0/1" to="1/4to2/4"/> + <trip id="car2905" depart="2905.00" from="4/3to4/4" to="1/4to2/4"/> + <trip id="car2906" depart="2906.00" from="0/3to0/2" to="4/2to4/3"/> + <trip id="car2907" depart="2907.00" from="1/0to1/1" to="3/2to3/3"/> + <trip id="car2908" depart="2908.00" from="1/3to0/3" to="3/4to3/3"/> + <trip id="car2909" depart="2909.00" from="4/1to4/2" to="1/0to0/0"/> + <trip id="car2910" depart="2910.00" from="4/3to3/3" to="2/0to1/0"/> + <trip id="car2911" depart="2911.00" from="1/3to2/3" to="3/2to4/2"/> + <trip id="car2912" depart="2912.00" from="4/3to4/4" to="2/3to1/3"/> + <trip id="car2913" depart="2913.00" from="2/4to2/3" to="4/0to3/0"/> + <trip id="car2914" depart="2914.00" from="0/0to0/1" to="2/2to3/2"/> + <trip id="car2915" depart="2915.00" from="1/4to2/4" to="3/2to3/3"/> + <trip id="car2916" depart="2916.00" from="0/1to1/1" to="3/2to3/3"/> + <trip id="car2917" depart="2917.00" from="4/3to4/4" to="3/2to2/2"/> + <trip id="car2918" depart="2918.00" from="1/1to2/1" to="2/4to3/4"/> + <trip id="car2919" depart="2919.00" from="3/2to2/2" to="1/0to1/1"/> + <trip id="car2920" depart="2920.00" from="2/1to1/1" to="4/3to3/3"/> + <trip id="car2921" depart="2921.00" from="4/1to4/0" to="3/4to3/3"/> + <trip id="car2922" depart="2922.00" from="1/3to0/3" to="4/0to4/1"/> + <trip id="car2923" depart="2923.00" from="4/3to3/3" to="2/0to2/1"/> + <trip id="car2924" depart="2924.00" from="0/2to0/3" to="3/2to3/3"/> + <trip id="car2925" depart="2925.00" from="4/3to3/3" to="1/0to0/0"/> + <trip id="car2926" depart="2926.00" from="0/1to1/1" to="3/2to4/2"/> + <trip id="car2927" depart="2927.00" from="2/3to2/4" to="2/2to2/1"/> + <trip id="car2928" depart="2928.00" from="2/0to3/0" to="2/2to2/3"/> + <trip id="car2929" depart="2929.00" from="3/2to3/3" to="2/2to1/2"/> + <trip id="car2930" depart="2930.00" from="2/2to3/2" to="4/4to4/3"/> + <trip id="car2931" depart="2931.00" from="3/4to3/3" to="4/1to4/0"/> + <trip id="car2932" depart="2932.00" from="2/4to3/4" to="4/3to4/4"/> + <trip id="car2933" depart="2933.00" from="0/2to0/3" to="4/0to3/0"/> + <trip id="car2934" depart="2934.00" from="2/2to3/2" to="4/3to4/2"/> + <trip id="car2935" depart="2935.00" from="2/0to3/0" to="1/4to2/4"/> + <trip id="car2936" depart="2936.00" from="4/2to4/1" to="1/1to2/1"/> + <trip id="car2937" depart="2937.00" from="0/3to0/4" to="1/2to2/2"/> + <trip id="car2938" depart="2938.00" from="1/2to2/2" to="1/1to1/0"/> + <trip id="car2939" depart="2939.00" from="1/1to1/0" to="1/3to0/3"/> + <trip id="car2940" depart="2940.00" from="4/2to4/3" to="3/0to4/0"/> + <trip id="car2941" depart="2941.00" from="3/4to4/4" to="0/1to0/0"/> + <trip id="car2942" depart="2942.00" from="2/2to2/1" to="1/4to0/4"/> + <trip id="car2943" depart="2943.00" from="3/0to2/0" to="1/3to1/4"/> + <trip id="car2944" depart="2944.00" from="1/4to0/4" to="0/0to0/1"/> + <trip id="car2945" depart="2945.00" from="4/1to4/2" to="1/0to1/1"/> + <trip id="car2946" depart="2946.00" from="1/4to0/4" to="0/3to0/2"/> + <trip id="car2947" depart="2947.00" from="2/2to2/1" to="0/2to0/3"/> + <trip id="car2948" depart="2948.00" from="2/2to3/2" to="0/4to1/4"/> + <trip id="car2949" depart="2949.00" from="0/4to1/4" to="3/1to2/1"/> + <trip id="car2950" depart="2950.00" from="1/0to1/1" to="3/4to2/4"/> + <trip id="car2951" depart="2951.00" from="0/3to0/2" to="2/1to2/0"/> + <trip id="car2952" depart="2952.00" from="4/0to3/0" to="0/4to1/4"/> + <trip id="car2953" depart="2953.00" from="1/4to0/4" to="2/1to1/1"/> + <trip id="car2954" depart="2954.00" from="1/4to0/4" to="4/1to3/1"/> + <trip id="car2955" depart="2955.00" from="0/4to1/4" to="1/0to2/0"/> + <trip id="car2956" depart="2956.00" from="2/2to1/2" to="3/1to3/0"/> + <trip id="car2957" depart="2957.00" from="1/2to1/1" to="2/0to3/0"/> + <trip id="car2958" depart="2958.00" from="2/3to2/4" to="3/3to4/3"/> + <trip id="car2959" depart="2959.00" from="3/2to3/1" to="1/3to1/2"/> + <trip id="car2960" depart="2960.00" from="3/3to3/2" to="4/1to4/0"/> + <trip id="car2961" depart="2961.00" from="2/2to2/3" to="4/2to4/1"/> + <trip id="car2962" depart="2962.00" from="4/0to3/0" to="2/0to1/0"/> + <trip id="car2963" depart="2963.00" from="0/0to1/0" to="0/4to1/4"/> + <trip id="car2964" depart="2964.00" from="1/1to1/2" to="3/1to3/2"/> + <trip id="car2965" depart="2965.00" from="1/3to2/3" to="4/4to3/4"/> + <trip id="car2966" depart="2966.00" from="3/2to3/3" to="2/1to1/1"/> + <trip id="car2967" depart="2967.00" from="3/3to2/3" to="1/1to2/1"/> + <trip id="car2968" depart="2968.00" from="0/4to1/4" to="2/2to2/3"/> + <trip id="car2969" depart="2969.00" from="1/1to2/1" to="3/3to3/2"/> + <trip id="car2970" depart="2970.00" from="4/1to3/1" to="4/4to4/3"/> + <trip id="car2971" depart="2971.00" from="1/1to2/1" to="3/4to3/3"/> + <trip id="car2972" depart="2972.00" from="1/0to2/0" to="3/2to2/2"/> + <trip id="car2973" depart="2973.00" from="3/4to2/4" to="3/2to2/2"/> + <trip id="car2974" depart="2974.00" from="4/4to4/3" to="2/4to2/3"/> + <trip id="car2975" depart="2975.00" from="3/0to3/1" to="1/1to1/2"/> + <trip id="car2976" depart="2976.00" from="2/0to2/1" to="1/3to0/3"/> + <trip id="car2977" depart="2977.00" from="3/0to3/1" to="1/1to1/2"/> + <trip id="car2978" depart="2978.00" from="2/2to2/3" to="3/0to4/0"/> + <trip id="car2979" depart="2979.00" from="1/3to0/3" to="1/2to1/1"/> + <trip id="car2980" depart="2980.00" from="1/2to1/3" to="1/4to0/4"/> + <trip id="car2981" depart="2981.00" from="2/0to3/0" to="1/3to1/2"/> + <trip id="car2982" depart="2982.00" from="0/1to1/1" to="3/2to4/2"/> + <trip id="car2983" depart="2983.00" from="1/1to0/1" to="2/1to3/1"/> + <trip id="car2984" depart="2984.00" from="4/2to3/2" to="0/3to0/2"/> + <trip id="car2985" depart="2985.00" from="1/0to1/1" to="4/3to3/3"/> + <trip id="car2986" depart="2986.00" from="0/2to1/2" to="0/0to1/0"/> + <trip id="car2987" depart="2987.00" from="2/3to2/4" to="4/0to4/1"/> + <trip id="car2988" depart="2988.00" from="1/3to1/4" to="3/2to4/2"/> + <trip id="car2989" depart="2989.00" from="1/4to0/4" to="3/3to3/4"/> + <trip id="car2990" depart="2990.00" from="3/1to2/1" to="1/1to0/1"/> + <trip id="car2991" depart="2991.00" from="1/4to2/4" to="4/1to4/0"/> + <trip id="car2992" depart="2992.00" from="0/3to1/3" to="3/2to4/2"/> + <trip id="car2993" depart="2993.00" from="4/2to3/2" to="3/1to2/1"/> + <trip id="car2994" depart="2994.00" from="1/0to2/0" to="3/2to2/2"/> + <trip id="car2995" depart="2995.00" from="4/2to4/3" to="0/2to0/1"/> + <trip id="car2996" depart="2996.00" from="1/1to0/1" to="3/2to3/1"/> + <trip id="car2997" depart="2997.00" from="0/1to0/2" to="1/0to2/0"/> + <trip id="car2998" depart="2998.00" from="2/3to2/4" to="1/2to0/2"/> + <trip id="car2999" depart="2999.00" from="4/2to3/2" to="4/4to3/4"/> + <trip id="car3000" depart="3000.00" from="4/1to4/2" to="2/1to2/0"/> + <trip id="car3001" depart="3001.00" from="0/2to0/1" to="2/0to3/0"/> + <trip id="car3002" depart="3002.00" from="4/2to4/3" to="2/2to2/3"/> + <trip id="car3003" depart="3003.00" from="0/0to1/0" to="2/4to2/3"/> + <trip id="car3004" depart="3004.00" from="3/1to4/1" to="0/3to1/3"/> + <trip id="car3005" depart="3005.00" from="0/1to0/2" to="2/3to3/3"/> + <trip id="car3006" depart="3006.00" from="3/3to4/3" to="3/1to4/1"/> + <trip id="car3007" depart="3007.00" from="3/2to4/2" to="2/0to1/0"/> + <trip id="car3008" depart="3008.00" from="4/3to4/4" to="1/0to0/0"/> + <trip id="car3009" depart="3009.00" from="3/3to3/4" to="2/0to2/1"/> + <trip id="car3010" depart="3010.00" from="0/4to1/4" to="1/1to1/0"/> + <trip id="car3011" depart="3011.00" from="3/2to2/2" to="2/3to1/3"/> + <trip id="car3012" depart="3012.00" from="1/3to0/3" to="1/1to1/0"/> + <trip id="car3013" depart="3013.00" from="3/2to2/2" to="2/3to2/4"/> + <trip id="car3014" depart="3014.00" from="1/0to0/0" to="0/1to0/2"/> + <trip id="car3015" depart="3015.00" from="0/4to0/3" to="4/1to4/0"/> + <trip id="car3016" depart="3016.00" from="4/2to4/3" to="1/2to1/1"/> + <trip id="car3017" depart="3017.00" from="3/3to4/3" to="3/0to4/0"/> + <trip id="car3018" depart="3018.00" from="1/1to2/1" to="3/4to3/3"/> + <trip id="car3019" depart="3019.00" from="2/3to1/3" to="0/0to0/1"/> + <trip id="car3020" depart="3020.00" from="1/3to2/3" to="2/4to3/4"/> + <trip id="car3021" depart="3021.00" from="2/4to3/4" to="1/3to1/2"/> + <trip id="car3022" depart="3022.00" from="0/1to1/1" to="3/4to3/3"/> + <trip id="car3023" depart="3023.00" from="3/4to3/3" to="1/1to1/0"/> + <trip id="car3024" depart="3024.00" from="4/3to4/4" to="1/0to1/1"/> + <trip id="car3025" depart="3025.00" from="4/3to4/4" to="2/3to1/3"/> + <trip id="car3026" depart="3026.00" from="3/3to3/4" to="0/3to0/2"/> + <trip id="car3027" depart="3027.00" from="3/2to4/2" to="1/4to2/4"/> + <trip id="car3028" depart="3028.00" from="3/0to3/1" to="2/3to2/4"/> + <trip id="car3029" depart="3029.00" from="3/4to3/3" to="1/1to1/0"/> + <trip id="car3030" depart="3030.00" from="1/2to1/1" to="2/4to1/4"/> + <trip id="car3031" depart="3031.00" from="0/4to1/4" to="1/1to1/2"/> + <trip id="car3032" depart="3032.00" from="3/2to3/3" to="1/4to1/3"/> + <trip id="car3033" depart="3033.00" from="4/2to3/2" to="0/2to1/2"/> + <trip id="car3034" depart="3034.00" from="4/0to4/1" to="1/0to2/0"/> + <trip id="car3035" depart="3035.00" from="3/0to4/0" to="0/0to1/0"/> + <trip id="car3036" depart="3036.00" from="2/0to1/0" to="2/4to3/4"/> + <trip id="car3037" depart="3037.00" from="1/1to2/1" to="4/2to3/2"/> + <trip id="car3038" depart="3038.00" from="4/3to4/4" to="0/3to0/2"/> + <trip id="car3039" depart="3039.00" from="1/4to2/4" to="0/0to1/0"/> + <trip id="car3040" depart="3040.00" from="3/4to4/4" to="3/3to3/2"/> + <trip id="car3041" depart="3041.00" from="3/0to4/0" to="0/1to0/2"/> + <trip id="car3042" depart="3042.00" from="1/1to2/1" to="0/2to0/3"/> + <trip id="car3043" depart="3043.00" from="0/4to0/3" to="3/0to3/1"/> + <trip id="car3044" depart="3044.00" from="0/0to1/0" to="4/3to4/4"/> + <trip id="car3045" depart="3045.00" from="4/3to4/2" to="0/3to0/2"/> + <trip id="car3046" depart="3046.00" from="3/2to2/2" to="1/1to0/1"/> + <trip id="car3047" depart="3047.00" from="2/1to2/0" to="1/0to0/0"/> + <trip id="car3048" depart="3048.00" from="0/1to1/1" to="3/1to4/1"/> + <trip id="car3049" depart="3049.00" from="3/0to3/1" to="0/3to0/4"/> + <trip id="car3050" depart="3050.00" from="3/4to3/3" to="0/3to0/2"/> + <trip id="car3051" depart="3051.00" from="3/4to4/4" to="0/4to0/3"/> + <trip id="car3052" depart="3052.00" from="4/2to3/2" to="0/0to1/0"/> + <trip id="car3053" depart="3053.00" from="2/1to1/1" to="0/4to0/3"/> + <trip id="car3054" depart="3054.00" from="3/1to2/1" to="1/1to1/2"/> + <trip id="car3055" depart="3055.00" from="4/1to4/0" to="1/4to2/4"/> + <trip id="car3056" depart="3056.00" from="4/1to4/0" to="3/4to3/3"/> + <trip id="car3057" depart="3057.00" from="0/3to0/2" to="1/0to0/0"/> + <trip id="car3058" depart="3058.00" from="4/3to4/2" to="1/4to0/4"/> + <trip id="car3059" depart="3059.00" from="3/0to2/0" to="0/3to0/4"/> + <trip id="car3060" depart="3060.00" from="4/1to4/2" to="2/4to3/4"/> + <trip id="car3061" depart="3061.00" from="1/0to1/1" to="2/3to1/3"/> + <trip id="car3062" depart="3062.00" from="2/4to2/3" to="3/1to3/2"/> + <trip id="car3063" depart="3063.00" from="0/4to1/4" to="3/1to3/0"/> + <trip id="car3064" depart="3064.00" from="1/3to0/3" to="3/4to3/3"/> + <trip id="car3065" depart="3065.00" from="4/2to4/1" to="3/1to2/1"/> + <trip id="car3066" depart="3066.00" from="4/2to4/3" to="3/4to2/4"/> + <trip id="car3067" depart="3067.00" from="3/2to2/2" to="0/2to0/3"/> + <trip id="car3068" depart="3068.00" from="0/0to0/1" to="4/2to4/3"/> + <trip id="car3069" depart="3069.00" from="0/4to0/3" to="3/1to2/1"/> + <trip id="car3070" depart="3070.00" from="1/3to1/2" to="2/0to1/0"/> + <trip id="car3071" depart="3071.00" from="3/2to3/1" to="3/3to3/4"/> + <trip id="car3072" depart="3072.00" from="2/2to1/2" to="0/2to0/1"/> + <trip id="car3073" depart="3073.00" from="2/4to1/4" to="4/3to4/2"/> + <trip id="car3074" depart="3074.00" from="4/4to4/3" to="1/0to1/1"/> + <trip id="car3075" depart="3075.00" from="1/4to2/4" to="1/3to1/2"/> + <trip id="car3076" depart="3076.00" from="2/0to3/0" to="3/1to4/1"/> + <trip id="car3077" depart="3077.00" from="2/0to3/0" to="3/3to4/3"/> + <trip id="car3078" depart="3078.00" from="2/4to1/4" to="2/0to3/0"/> + <trip id="car3079" depart="3079.00" from="2/4to1/4" to="3/1to4/1"/> + <trip id="car3080" depart="3080.00" from="4/4to4/3" to="0/0to1/0"/> + <trip id="car3081" depart="3081.00" from="2/3to2/4" to="4/3to4/2"/> + <trip id="car3082" depart="3082.00" from="4/2to4/1" to="0/1to1/1"/> + <trip id="car3083" depart="3083.00" from="1/3to2/3" to="4/0to3/0"/> + <trip id="car3084" depart="3084.00" from="4/1to3/1" to="3/4to3/3"/> + <trip id="car3085" depart="3085.00" from="4/0to4/1" to="4/3to4/4"/> + <trip id="car3086" depart="3086.00" from="4/2to4/1" to="1/1to2/1"/> + <trip id="car3087" depart="3087.00" from="3/4to4/4" to="0/1to1/1"/> + <trip id="car3088" depart="3088.00" from="0/4to0/3" to="4/3to4/2"/> + <trip id="car3089" depart="3089.00" from="3/2to2/2" to="1/4to2/4"/> + <trip id="car3090" depart="3090.00" from="0/1to0/0" to="4/3to4/4"/> + <trip id="car3091" depart="3091.00" from="1/4to1/3" to="3/2to2/2"/> + <trip id="car3092" depart="3092.00" from="3/1to3/0" to="0/2to0/1"/> + <trip id="car3093" depart="3093.00" from="3/4to4/4" to="4/1to3/1"/> + <trip id="car3094" depart="3094.00" from="0/1to0/0" to="1/4to1/3"/> + <trip id="car3095" depart="3095.00" from="0/4to0/3" to="1/0to1/1"/> + <trip id="car3096" depart="3096.00" from="2/0to2/1" to="1/3to1/4"/> + <trip id="car3097" depart="3097.00" from="3/3to3/4" to="3/1to4/1"/> + <trip id="car3098" depart="3098.00" from="1/2to1/3" to="0/4to1/4"/> + <trip id="car3099" depart="3099.00" from="4/1to4/0" to="0/1to0/0"/> + <trip id="car3100" depart="3100.00" from="0/0to0/1" to="3/4to4/4"/> + <trip id="car3101" depart="3101.00" from="2/3to2/4" to="3/4to4/4"/> + <trip id="car3102" depart="3102.00" from="4/2to4/1" to="2/2to2/3"/> + <trip id="car3103" depart="3103.00" from="3/2to2/2" to="2/0to3/0"/> + <trip id="car3104" depart="3104.00" from="0/4to1/4" to="4/3to4/4"/> + <trip id="car3105" depart="3105.00" from="2/2to3/2" to="4/4to3/4"/> + <trip id="car3106" depart="3106.00" from="0/3to1/3" to="1/1to0/1"/> + <trip id="car3107" depart="3107.00" from="3/0to2/0" to="1/1to1/0"/> + <trip id="car3108" depart="3108.00" from="1/0to1/1" to="3/2to4/2"/> + <trip id="car3109" depart="3109.00" from="2/3to2/4" to="4/0to3/0"/> + <trip id="car3110" depart="3110.00" from="3/4to3/3" to="2/1to3/1"/> + <trip id="car3111" depart="3111.00" from="1/3to1/2" to="3/0to4/0"/> + <trip id="car3112" depart="3112.00" from="3/4to4/4" to="1/0to0/0"/> + <trip id="car3113" depart="3113.00" from="3/4to2/4" to="3/0to4/0"/> + <trip id="car3114" depart="3114.00" from="1/0to2/0" to="0/3to0/2"/> + <trip id="car3115" depart="3115.00" from="0/2to0/3" to="2/4to3/4"/> + <trip id="car3116" depart="3116.00" from="4/0to3/0" to="0/1to0/0"/> + <trip id="car3117" depart="3117.00" from="0/2to0/1" to="2/4to2/3"/> + <trip id="car3118" depart="3118.00" from="3/3to2/3" to="1/3to0/3"/> + <trip id="car3119" depart="3119.00" from="2/3to2/4" to="3/0to4/0"/> + <trip id="car3120" depart="3120.00" from="2/3to3/3" to="3/3to4/3"/> + <trip id="car3121" depart="3121.00" from="4/3to3/3" to="0/0to0/1"/> + <trip id="car3122" depart="3122.00" from="4/3to4/4" to="3/2to2/2"/> + <trip id="car3123" depart="3123.00" from="0/2to1/2" to="2/0to2/1"/> + <trip id="car3124" depart="3124.00" from="3/2to4/2" to="0/3to0/2"/> + <trip id="car3125" depart="3125.00" from="3/4to2/4" to="0/4to1/4"/> + <trip id="car3126" depart="3126.00" from="2/4to1/4" to="4/0to4/1"/> + <trip id="car3127" depart="3127.00" from="1/2to2/2" to="0/4to1/4"/> + <trip id="car3128" depart="3128.00" from="2/1to3/1" to="4/1to4/0"/> + <trip id="car3129" depart="3129.00" from="0/2to1/2" to="3/2to3/1"/> + <trip id="car3130" depart="3130.00" from="4/1to4/0" to="3/4to2/4"/> + <trip id="car3131" depart="3131.00" from="0/4to1/4" to="4/3to4/4"/> + <trip id="car3132" depart="3132.00" from="3/1to2/1" to="4/2to4/3"/> + <trip id="car3133" depart="3133.00" from="1/3to2/3" to="3/3to3/4"/> + <trip id="car3134" depart="3134.00" from="4/0to4/1" to="2/1to1/1"/> + <trip id="car3135" depart="3135.00" from="2/0to1/0" to="1/1to0/1"/> + <trip id="car3136" depart="3136.00" from="2/4to3/4" to="0/2to0/1"/> + <trip id="car3137" depart="3137.00" from="0/4to1/4" to="3/0to3/1"/> + <trip id="car3138" depart="3138.00" from="2/2to2/1" to="3/4to2/4"/> + <trip id="car3139" depart="3139.00" from="0/4to0/3" to="4/1to3/1"/> + <trip id="car3140" depart="3140.00" from="2/3to2/2" to="4/3to4/4"/> + <trip id="car3141" depart="3141.00" from="3/3to3/4" to="0/2to0/3"/> + <trip id="car3142" depart="3142.00" from="4/2to4/3" to="0/4to1/4"/> + <trip id="car3143" depart="3143.00" from="3/3to3/2" to="1/2to0/2"/> + <trip id="car3144" depart="3144.00" from="2/1to3/1" to="1/2to0/2"/> + <trip id="car3145" depart="3145.00" from="4/1to4/0" to="3/1to2/1"/> + <trip id="car3146" depart="3146.00" from="2/3to3/3" to="0/1to0/2"/> + <trip id="car3147" depart="3147.00" from="4/0to4/1" to="2/0to2/1"/> + <trip id="car3148" depart="3148.00" from="4/0to3/0" to="4/3to4/2"/> + <trip id="car3149" depart="3149.00" from="1/4to1/3" to="3/1to3/2"/> + <trip id="car3150" depart="3150.00" from="3/4to3/3" to="0/0to0/1"/> + <trip id="car3151" depart="3151.00" from="4/0to4/1" to="1/2to2/2"/> + <trip id="car3152" depart="3152.00" from="0/4to1/4" to="2/0to1/0"/> + <trip id="car3153" depart="3153.00" from="0/2to0/1" to="2/0to1/0"/> + <trip id="car3154" depart="3154.00" from="2/1to3/1" to="3/0to4/0"/> + <trip id="car3155" depart="3155.00" from="0/2to0/3" to="3/2to3/3"/> + <trip id="car3156" depart="3156.00" from="3/3to3/2" to="1/0to2/0"/> + <trip id="car3157" depart="3157.00" from="4/4to4/3" to="2/2to1/2"/> + <trip id="car3158" depart="3158.00" from="3/2to2/2" to="2/2to1/2"/> + <trip id="car3159" depart="3159.00" from="0/4to1/4" to="2/1to3/1"/> + <trip id="car3160" depart="3160.00" from="3/0to4/0" to="1/3to1/2"/> + <trip id="car3161" depart="3161.00" from="0/1to0/0" to="2/4to3/4"/> + <trip id="car3162" depart="3162.00" from="1/4to2/4" to="4/2to4/3"/> + <trip id="car3163" depart="3163.00" from="1/4to0/4" to="2/1to1/1"/> + <trip id="car3164" depart="3164.00" from="3/1to3/2" to="1/2to1/1"/> + <trip id="car3165" depart="3165.00" from="3/0to3/1" to="0/2to0/3"/> + <trip id="car3166" depart="3166.00" from="0/2to0/1" to="2/0to2/1"/> + <trip id="car3167" depart="3167.00" from="3/1to3/0" to="1/2to0/2"/> + <trip id="car3168" depart="3168.00" from="3/4to4/4" to="0/2to1/2"/> + <trip id="car3169" depart="3169.00" from="4/2to3/2" to="1/3to2/3"/> + <trip id="car3170" depart="3170.00" from="3/3to2/3" to="1/0to0/0"/> + <trip id="car3171" depart="3171.00" from="1/3to2/3" to="2/0to3/0"/> + <trip id="car3172" depart="3172.00" from="2/2to1/2" to="3/1to4/1"/> + <trip id="car3173" depart="3173.00" from="0/4to1/4" to="3/1to4/1"/> + <trip id="car3174" depart="3174.00" from="1/4to0/4" to="3/1to4/1"/> + <trip id="car3175" depart="3175.00" from="2/0to1/0" to="0/0to0/1"/> + <trip id="car3176" depart="3176.00" from="0/2to0/3" to="3/1to3/0"/> + <trip id="car3177" depart="3177.00" from="3/0to2/0" to="1/3to1/2"/> + <trip id="car3178" depart="3178.00" from="2/1to2/2" to="0/4to0/3"/> + <trip id="car3179" depart="3179.00" from="4/1to3/1" to="0/3to0/4"/> + <trip id="car3180" depart="3180.00" from="4/3to4/4" to="2/0to2/1"/> + <trip id="car3181" depart="3181.00" from="2/2to3/2" to="0/0to0/1"/> + <trip id="car3182" depart="3182.00" from="2/1to2/2" to="3/4to4/4"/> + <trip id="car3183" depart="3183.00" from="0/3to1/3" to="2/1to2/0"/> + <trip id="car3184" depart="3184.00" from="4/3to4/4" to="0/2to1/2"/> + <trip id="car3185" depart="3185.00" from="1/1to1/0" to="4/4to3/4"/> + <trip id="car3186" depart="3186.00" from="2/0to3/0" to="2/3to2/2"/> + <trip id="car3187" depart="3187.00" from="1/0to0/0" to="1/4to2/4"/> + <trip id="car3188" depart="3188.00" from="1/3to2/3" to="4/3to4/2"/> + <trip id="car3189" depart="3189.00" from="4/3to4/4" to="2/4to1/4"/> + <trip id="car3190" depart="3190.00" from="0/0to1/0" to="3/4to3/3"/> + <trip id="car3191" depart="3191.00" from="0/0to1/0" to="4/1to4/2"/> + <trip id="car3192" depart="3192.00" from="1/4to0/4" to="2/3to2/2"/> + <trip id="car3193" depart="3193.00" from="0/3to0/4" to="1/0to1/1"/> + <trip id="car3194" depart="3194.00" from="2/4to2/3" to="2/3to2/2"/> + <trip id="car3195" depart="3195.00" from="1/4to2/4" to="4/0to3/0"/> + <trip id="car3196" depart="3196.00" from="3/1to4/1" to="2/1to1/1"/> + <trip id="car3197" depart="3197.00" from="1/2to1/3" to="3/0to2/0"/> + <trip id="car3198" depart="3198.00" from="4/4to4/3" to="3/4to2/4"/> + <trip id="car3199" depart="3199.00" from="0/3to0/2" to="3/0to4/0"/> + <trip id="car3200" depart="3200.00" from="4/2to4/3" to="0/2to1/2"/> + <trip id="car3201" depart="3201.00" from="2/1to2/0" to="2/4to1/4"/> + <trip id="car3202" depart="3202.00" from="0/1to0/0" to="1/2to2/2"/> + <trip id="car3203" depart="3203.00" from="2/1to2/2" to="1/4to2/4"/> + <trip id="car3204" depart="3204.00" from="1/0to2/0" to="2/1to3/1"/> + <trip id="car3205" depart="3205.00" from="0/3to0/4" to="4/3to4/4"/> + <trip id="car3206" depart="3206.00" from="4/2to4/1" to="2/0to3/0"/> + <trip id="car3207" depart="3207.00" from="3/4to3/3" to="3/2to2/2"/> + <trip id="car3208" depart="3208.00" from="3/2to4/2" to="0/0to0/1"/> + <trip id="car3209" depart="3209.00" from="1/4to1/3" to="1/1to1/0"/> + <trip id="car3210" depart="3210.00" from="1/2to1/3" to="4/1to4/0"/> + <trip id="car3211" depart="3211.00" from="1/2to1/1" to="4/0to3/0"/> + <trip id="car3212" depart="3212.00" from="3/3to4/3" to="2/0to3/0"/> + <trip id="car3213" depart="3213.00" from="1/1to2/1" to="4/2to3/2"/> + <trip id="car3214" depart="3214.00" from="1/1to2/1" to="4/3to4/4"/> + <trip id="car3215" depart="3215.00" from="1/0to2/0" to="3/0to4/0"/> + <trip id="car3216" depart="3216.00" from="3/0to3/1" to="4/4to3/4"/> + <trip id="car3217" depart="3217.00" from="1/0to0/0" to="4/2to3/2"/> + <trip id="car3218" depart="3218.00" from="0/2to1/2" to="3/4to2/4"/> + <trip id="car3219" depart="3219.00" from="3/3to3/4" to="4/0to3/0"/> + <trip id="car3220" depart="3220.00" from="3/0to3/1" to="1/2to0/2"/> + <trip id="car3221" depart="3221.00" from="2/4to2/3" to="0/1to0/0"/> + <trip id="car3222" depart="3222.00" from="0/2to0/3" to="1/4to2/4"/> + <trip id="car3223" depart="3223.00" from="3/2to4/2" to="0/3to1/3"/> + <trip id="car3224" depart="3224.00" from="1/4to0/4" to="1/1to2/1"/> + <trip id="car3225" depart="3225.00" from="4/1to4/2" to="1/2to2/2"/> + <trip id="car3226" depart="3226.00" from="2/3to1/3" to="1/1to2/1"/> + <trip id="car3227" depart="3227.00" from="3/3to3/2" to="3/1to2/1"/> + <trip id="car3228" depart="3228.00" from="1/2to1/1" to="4/2to4/3"/> + <trip id="car3229" depart="3229.00" from="2/4to1/4" to="0/3to0/2"/> + <trip id="car3230" depart="3230.00" from="2/1to2/2" to="2/4to2/3"/> + <trip id="car3231" depart="3231.00" from="4/1to4/2" to="0/2to1/2"/> + <trip id="car3232" depart="3232.00" from="2/2to2/1" to="1/4to0/4"/> + <trip id="car3233" depart="3233.00" from="4/0to3/0" to="2/0to1/0"/> + <trip id="car3234" depart="3234.00" from="2/2to2/1" to="0/0to1/0"/> + <trip id="car3235" depart="3235.00" from="0/2to0/1" to="4/3to4/2"/> + <trip id="car3236" depart="3236.00" from="0/2to0/3" to="3/1to3/2"/> + <trip id="car3237" depart="3237.00" from="1/4to2/4" to="1/3to1/2"/> + <trip id="car3238" depart="3238.00" from="4/2to3/2" to="3/4to2/4"/> + <trip id="car3239" depart="3239.00" from="1/0to1/1" to="2/3to3/3"/> + <trip id="car3240" depart="3240.00" from="2/4to3/4" to="0/1to0/0"/> + <trip id="car3241" depart="3241.00" from="2/2to1/2" to="3/0to2/0"/> + <trip id="car3242" depart="3242.00" from="0/0to1/0" to="2/2to2/3"/> + <trip id="car3243" depart="3243.00" from="0/4to1/4" to="4/1to3/1"/> + <trip id="car3244" depart="3244.00" from="0/3to0/4" to="1/1to1/0"/> + <trip id="car3245" depart="3245.00" from="1/3to1/4" to="1/1to1/0"/> + <trip id="car3246" depart="3246.00" from="4/3to4/2" to="1/3to2/3"/> + <trip id="car3247" depart="3247.00" from="2/2to3/2" to="2/0to1/0"/> + <trip id="car3248" depart="3248.00" from="1/2to1/3" to="2/0to1/0"/> + <trip id="car3249" depart="3249.00" from="2/4to1/4" to="3/3to3/2"/> + <trip id="car3250" depart="3250.00" from="1/3to0/3" to="3/3to4/3"/> + <trip id="car3251" depart="3251.00" from="4/3to4/2" to="2/2to2/1"/> + <trip id="car3252" depart="3252.00" from="3/0to2/0" to="2/4to3/4"/> + <trip id="car3253" depart="3253.00" from="2/1to1/1" to="2/3to3/3"/> + <trip id="car3254" depart="3254.00" from="1/4to1/3" to="3/0to3/1"/> + <trip id="car3255" depart="3255.00" from="0/2to0/1" to="1/0to0/0"/> + <trip id="car3256" depart="3256.00" from="0/1to0/0" to="2/2to2/3"/> + <trip id="car3257" depart="3257.00" from="2/4to1/4" to="1/2to2/2"/> + <trip id="car3258" depart="3258.00" from="3/4to4/4" to="3/0to4/0"/> + <trip id="car3259" depart="3259.00" from="4/3to4/4" to="1/4to0/4"/> + <trip id="car3260" depart="3260.00" from="1/3to1/2" to="3/3to4/3"/> + <trip id="car3261" depart="3261.00" from="1/4to0/4" to="0/2to0/1"/> + <trip id="car3262" depart="3262.00" from="3/1to2/1" to="1/4to1/3"/> + <trip id="car3263" depart="3263.00" from="3/3to3/4" to="0/3to0/4"/> + <trip id="car3264" depart="3264.00" from="1/3to1/2" to="0/0to0/1"/> + <trip id="car3265" depart="3265.00" from="1/3to1/4" to="2/1to3/1"/> + <trip id="car3266" depart="3266.00" from="2/4to3/4" to="4/1to4/0"/> + <trip id="car3267" depart="3267.00" from="4/0to4/1" to="0/2to0/1"/> + <trip id="car3268" depart="3268.00" from="3/3to2/3" to="1/3to1/2"/> + <trip id="car3269" depart="3269.00" from="1/3to1/2" to="1/0to2/0"/> + <trip id="car3270" depart="3270.00" from="3/4to2/4" to="2/2to2/1"/> + <trip id="car3271" depart="3271.00" from="4/4to4/3" to="2/0to3/0"/> + <trip id="car3272" depart="3272.00" from="0/3to0/4" to="1/0to0/0"/> + <trip id="car3273" depart="3273.00" from="4/4to4/3" to="4/2to3/2"/> + <trip id="car3274" depart="3274.00" from="1/2to1/3" to="4/0to3/0"/> + <trip id="car3275" depart="3275.00" from="2/0to2/1" to="4/1to4/2"/> + <trip id="car3276" depart="3276.00" from="4/2to4/1" to="0/1to0/2"/> + <trip id="car3277" depart="3277.00" from="3/0to4/0" to="0/2to0/1"/> + <trip id="car3278" depart="3278.00" from="0/2to1/2" to="3/4to2/4"/> + <trip id="car3279" depart="3279.00" from="3/2to3/1" to="1/2to1/1"/> + <trip id="car3280" depart="3280.00" from="3/3to2/3" to="2/0to2/1"/> + <trip id="car3281" depart="3281.00" from="2/4to3/4" to="2/0to1/0"/> + <trip id="car3282" depart="3282.00" from="4/0to3/0" to="4/3to4/4"/> + <trip id="car3283" depart="3283.00" from="3/0to2/0" to="0/1to0/0"/> + <trip id="car3284" depart="3284.00" from="3/1to4/1" to="2/1to1/1"/> + <trip id="car3285" depart="3285.00" from="4/2to3/2" to="1/4to1/3"/> + <trip id="car3286" depart="3286.00" from="1/2to0/2" to="3/3to3/4"/> + <trip id="car3287" depart="3287.00" from="0/3to0/2" to="4/3to3/3"/> + <trip id="car3288" depart="3288.00" from="0/2to0/3" to="1/3to1/4"/> + <trip id="car3289" depart="3289.00" from="3/0to2/0" to="3/4to2/4"/> + <trip id="car3290" depart="3290.00" from="1/2to1/1" to="1/0to0/0"/> + <trip id="car3291" depart="3291.00" from="0/4to0/3" to="2/1to2/2"/> + <trip id="car3292" depart="3292.00" from="0/3to1/3" to="4/0to4/1"/> + <trip id="car3293" depart="3293.00" from="4/3to4/4" to="2/0to3/0"/> + <trip id="car3294" depart="3294.00" from="2/1to2/0" to="0/3to0/4"/> + <trip id="car3295" depart="3295.00" from="3/1to2/1" to="4/4to3/4"/> + <trip id="car3296" depart="3296.00" from="1/3to1/2" to="3/2to3/3"/> + <trip id="car3297" depart="3297.00" from="2/3to2/4" to="4/1to3/1"/> + <trip id="car3298" depart="3298.00" from="3/1to2/1" to="3/2to3/3"/> + <trip id="car3299" depart="3299.00" from="1/1to0/1" to="0/2to0/3"/> + <trip id="car3300" depart="3300.00" from="4/3to4/4" to="0/1to1/1"/> + <trip id="car3301" depart="3301.00" from="3/4to3/3" to="1/0to2/0"/> + <trip id="car3302" depart="3302.00" from="0/3to0/2" to="1/1to0/1"/> + <trip id="car3303" depart="3303.00" from="4/0to4/1" to="3/3to2/3"/> + <trip id="car3304" depart="3304.00" from="0/4to1/4" to="2/2to2/3"/> + <trip id="car3305" depart="3305.00" from="4/2to4/1" to="1/1to1/0"/> + <trip id="car3306" depart="3306.00" from="1/4to1/3" to="4/4to3/4"/> + <trip id="car3307" depart="3307.00" from="3/3to3/4" to="1/0to2/0"/> + <trip id="car3308" depart="3308.00" from="1/2to1/3" to="1/0to0/0"/> + <trip id="car3309" depart="3309.00" from="1/3to0/3" to="4/1to3/1"/> + <trip id="car3310" depart="3310.00" from="3/0to4/0" to="0/4to0/3"/> + <trip id="car3311" depart="3311.00" from="1/1to2/1" to="4/1to4/2"/> + <trip id="car3312" depart="3312.00" from="1/2to1/1" to="4/2to4/3"/> + <trip id="car3313" depart="3313.00" from="0/4to1/4" to="2/2to2/3"/> + <trip id="car3314" depart="3314.00" from="3/0to4/0" to="3/2to3/3"/> + <trip id="car3315" depart="3315.00" from="2/0to3/0" to="1/2to2/2"/> + <trip id="car3316" depart="3316.00" from="2/0to2/1" to="2/4to2/3"/> + <trip id="car3317" depart="3317.00" from="2/3to1/3" to="2/2to2/1"/> + <trip id="car3318" depart="3318.00" from="3/0to4/0" to="4/3to4/2"/> + <trip id="car3319" depart="3319.00" from="3/2to3/1" to="2/0to1/0"/> + <trip id="car3320" depart="3320.00" from="0/3to0/2" to="3/2to3/3"/> + <trip id="car3321" depart="3321.00" from="4/1to4/0" to="1/2to1/1"/> + <trip id="car3322" depart="3322.00" from="1/1to0/1" to="3/3to3/4"/> + <trip id="car3323" depart="3323.00" from="0/2to1/2" to="2/2to2/3"/> + <trip id="car3324" depart="3324.00" from="3/2to2/2" to="2/2to1/2"/> + <trip id="car3325" depart="3325.00" from="1/3to0/3" to="4/2to3/2"/> + <trip id="car3326" depart="3326.00" from="4/1to4/2" to="0/4to0/3"/> + <trip id="car3327" depart="3327.00" from="0/0to1/0" to="2/1to3/1"/> + <trip id="car3328" depart="3328.00" from="1/3to1/4" to="1/0to1/1"/> + <trip id="car3329" depart="3329.00" from="2/4to2/3" to="4/3to4/4"/> + <trip id="car3330" depart="3330.00" from="2/4to1/4" to="2/2to2/1"/> + <trip id="car3331" depart="3331.00" from="2/3to1/3" to="1/0to0/0"/> + <trip id="car3332" depart="3332.00" from="0/4to0/3" to="0/2to1/2"/> + <trip id="car3333" depart="3333.00" from="1/3to0/3" to="3/2to3/3"/> + <trip id="car3334" depart="3334.00" from="2/1to2/2" to="3/2to3/3"/> + <trip id="car3335" depart="3335.00" from="4/4to4/3" to="1/2to0/2"/> + <trip id="car3336" depart="3336.00" from="0/0to1/0" to="1/4to0/4"/> + <trip id="car3337" depart="3337.00" from="3/3to3/2" to="4/0to4/1"/> + <trip id="car3338" depart="3338.00" from="4/2to3/2" to="2/4to2/3"/> + <trip id="car3339" depart="3339.00" from="0/3to0/4" to="3/1to3/2"/> + <trip id="car3340" depart="3340.00" from="3/2to3/3" to="0/0to1/0"/> + <trip id="car3341" depart="3341.00" from="4/4to3/4" to="4/0to4/1"/> + <trip id="car3342" depart="3342.00" from="3/1to2/1" to="0/4to0/3"/> + <trip id="car3343" depart="3343.00" from="3/2to4/2" to="4/3to4/4"/> + <trip id="car3344" depart="3344.00" from="1/4to0/4" to="3/2to4/2"/> + <trip id="car3345" depart="3345.00" from="1/0to2/0" to="4/3to4/2"/> + <trip id="car3346" depart="3346.00" from="3/0to4/0" to="4/3to4/4"/> + <trip id="car3347" depart="3347.00" from="4/1to4/2" to="2/1to2/0"/> + <trip id="car3348" depart="3348.00" from="4/3to4/2" to="2/3to1/3"/> + <trip id="car3349" depart="3349.00" from="1/2to1/1" to="3/1to3/2"/> + <trip id="car3350" depart="3350.00" from="4/1to4/2" to="2/0to1/0"/> + <trip id="car3351" depart="3351.00" from="2/0to3/0" to="4/4to4/3"/> + <trip id="car3352" depart="3352.00" from="2/4to3/4" to="2/1to1/1"/> + <trip id="car3353" depart="3353.00" from="2/1to2/2" to="4/3to4/4"/> + <trip id="car3354" depart="3354.00" from="4/3to4/4" to="2/2to2/1"/> + <trip id="car3355" depart="3355.00" from="0/4to1/4" to="4/3to4/4"/> + <trip id="car3356" depart="3356.00" from="3/3to4/3" to="0/0to1/0"/> + <trip id="car3357" depart="3357.00" from="0/1to0/2" to="1/2to1/3"/> + <trip id="car3358" depart="3358.00" from="2/4to2/3" to="0/1to1/1"/> + <trip id="car3359" depart="3359.00" from="1/3to0/3" to="2/1to1/1"/> + <trip id="car3360" depart="3360.00" from="3/1to2/1" to="0/0to0/1"/> + <trip id="car3361" depart="3361.00" from="1/2to0/2" to="1/4to0/4"/> + <trip id="car3362" depart="3362.00" from="1/2to1/3" to="4/0to4/1"/> + <trip id="car3363" depart="3363.00" from="1/2to1/1" to="4/4to4/3"/> + <trip id="car3364" depart="3364.00" from="1/0to2/0" to="2/4to1/4"/> + <trip id="car3365" depart="3365.00" from="0/2to0/3" to="1/1to1/0"/> + <trip id="car3366" depart="3366.00" from="2/1to3/1" to="1/4to0/4"/> + <trip id="car3367" depart="3367.00" from="3/4to2/4" to="3/0to3/1"/> + <trip id="car3368" depart="3368.00" from="2/0to3/0" to="4/3to4/4"/> + <trip id="car3369" depart="3369.00" from="0/3to1/3" to="2/3to2/4"/> + <trip id="car3370" depart="3370.00" from="2/3to3/3" to="3/0to3/1"/> + <trip id="car3371" depart="3371.00" from="4/1to4/0" to="2/1to1/1"/> + <trip id="car3372" depart="3372.00" from="0/4to0/3" to="2/1to2/0"/> + <trip id="car3373" depart="3373.00" from="1/3to1/2" to="4/2to4/3"/> + <trip id="car3374" depart="3374.00" from="2/0to2/1" to="0/1to0/0"/> + <trip id="car3375" depart="3375.00" from="2/3to2/4" to="4/3to4/2"/> + <trip id="car3376" depart="3376.00" from="2/0to3/0" to="3/3to2/3"/> + <trip id="car3377" depart="3377.00" from="3/0to2/0" to="1/3to0/3"/> + <trip id="car3378" depart="3378.00" from="1/1to2/1" to="2/2to2/3"/> + <trip id="car3379" depart="3379.00" from="0/3to1/3" to="2/3to2/2"/> + <trip id="car3380" depart="3380.00" from="3/3to2/3" to="2/0to1/0"/> + <trip id="car3381" depart="3381.00" from="2/0to2/1" to="0/0to0/1"/> + <trip id="car3382" depart="3382.00" from="3/4to2/4" to="4/1to3/1"/> + <trip id="car3383" depart="3383.00" from="0/1to1/1" to="3/4to4/4"/> + <trip id="car3384" depart="3384.00" from="3/0to4/0" to="1/3to1/4"/> + <trip id="car3385" depart="3385.00" from="0/2to1/2" to="1/2to2/2"/> + <trip id="car3386" depart="3386.00" from="2/2to1/2" to="1/3to1/4"/> + <trip id="car3387" depart="3387.00" from="0/1to1/1" to="3/2to4/2"/> + <trip id="car3388" depart="3388.00" from="0/4to0/3" to="3/2to4/2"/> + <trip id="car3389" depart="3389.00" from="2/2to2/1" to="1/1to1/0"/> + <trip id="car3390" depart="3390.00" from="4/4to4/3" to="0/0to0/1"/> + <trip id="car3391" depart="3391.00" from="2/2to1/2" to="3/1to4/1"/> + <trip id="car3392" depart="3392.00" from="0/3to0/4" to="0/0to0/1"/> + <trip id="car3393" depart="3393.00" from="2/4to3/4" to="0/3to0/4"/> + <trip id="car3394" depart="3394.00" from="2/1to3/1" to="3/4to4/4"/> + <trip id="car3395" depart="3395.00" from="0/3to0/4" to="2/0to2/1"/> + <trip id="car3396" depart="3396.00" from="4/0to3/0" to="2/3to2/2"/> + <trip id="car3397" depart="3397.00" from="3/4to3/3" to="3/1to3/2"/> + <trip id="car3398" depart="3398.00" from="4/0to4/1" to="3/0to2/0"/> + <trip id="car3399" depart="3399.00" from="1/0to1/1" to="3/4to3/3"/> + <trip id="car3400" depart="3400.00" from="3/1to2/1" to="1/0to0/0"/> + <trip id="car3401" depart="3401.00" from="2/2to2/1" to="3/1to3/0"/> + <trip id="car3402" depart="3402.00" from="2/0to1/0" to="3/1to4/1"/> + <trip id="car3403" depart="3403.00" from="0/3to0/2" to="2/0to3/0"/> + <trip id="car3404" depart="3404.00" from="2/0to3/0" to="0/1to0/0"/> + <trip id="car3405" depart="3405.00" from="2/1to2/2" to="2/3to3/3"/> + <trip id="car3406" depart="3406.00" from="0/0to0/1" to="1/3to0/3"/> + <trip id="car3407" depart="3407.00" from="3/0to4/0" to="4/1to4/2"/> + <trip id="car3408" depart="3408.00" from="3/0to2/0" to="0/1to0/2"/> + <trip id="car3409" depart="3409.00" from="4/2to3/2" to="4/3to4/4"/> + <trip id="car3410" depart="3410.00" from="1/2to1/3" to="4/4to3/4"/> + <trip id="car3411" depart="3411.00" from="1/4to0/4" to="4/0to4/1"/> + <trip id="car3412" depart="3412.00" from="3/2to2/2" to="2/0to1/0"/> + <trip id="car3413" depart="3413.00" from="0/2to0/1" to="3/1to2/1"/> + <trip id="car3414" depart="3414.00" from="1/4to0/4" to="3/2to3/1"/> + <trip id="car3415" depart="3415.00" from="1/3to2/3" to="3/2to3/1"/> + <trip id="car3416" depart="3416.00" from="3/3to3/4" to="1/2to1/3"/> + <trip id="car3417" depart="3417.00" from="3/3to3/2" to="1/3to0/3"/> + <trip id="car3418" depart="3418.00" from="2/0to1/0" to="4/2to4/1"/> + <trip id="car3419" depart="3419.00" from="3/0to4/0" to="1/4to2/4"/> + <trip id="car3420" depart="3420.00" from="2/4to1/4" to="4/2to4/3"/> + <trip id="car3421" depart="3421.00" from="3/3to3/4" to="2/3to1/3"/> + <trip id="car3422" depart="3422.00" from="4/3to4/2" to="1/3to2/3"/> + <trip id="car3423" depart="3423.00" from="0/1to0/2" to="4/0to4/1"/> + <trip id="car3424" depart="3424.00" from="0/4to1/4" to="0/2to1/2"/> + <trip id="car3425" depart="3425.00" from="0/3to0/2" to="4/2to4/3"/> + <trip id="car3426" depart="3426.00" from="4/4to3/4" to="3/4to2/4"/> + <trip id="car3427" depart="3427.00" from="3/2to3/3" to="1/1to1/2"/> + <trip id="car3428" depart="3428.00" from="4/1to4/2" to="1/0to0/0"/> + <trip id="car3429" depart="3429.00" from="4/1to4/2" to="3/3to2/3"/> + <trip id="car3430" depart="3430.00" from="2/0to3/0" to="0/2to0/1"/> + <trip id="car3431" depart="3431.00" from="2/4to3/4" to="0/3to0/4"/> + <trip id="car3432" depart="3432.00" from="4/0to3/0" to="0/2to0/1"/> + <trip id="car3433" depart="3433.00" from="1/3to1/2" to="3/1to4/1"/> + <trip id="car3434" depart="3434.00" from="1/4to2/4" to="4/4to4/3"/> + <trip id="car3435" depart="3435.00" from="2/3to3/3" to="1/0to2/0"/> + <trip id="car3436" depart="3436.00" from="1/2to0/2" to="2/1to2/0"/> + <trip id="car3437" depart="3437.00" from="0/4to1/4" to="3/4to3/3"/> + <trip id="car3438" depart="3438.00" from="3/4to2/4" to="1/0to2/0"/> + <trip id="car3439" depart="3439.00" from="2/4to1/4" to="3/0to3/1"/> + <trip id="car3440" depart="3440.00" from="3/1to3/0" to="1/1to0/1"/> + <trip id="car3441" depart="3441.00" from="3/4to2/4" to="4/1to4/2"/> + <trip id="car3442" depart="3442.00" from="1/4to0/4" to="2/0to2/1"/> + <trip id="car3443" depart="3443.00" from="2/3to2/2" to="0/2to0/1"/> + <trip id="car3444" depart="3444.00" from="1/0to1/1" to="3/2to3/3"/> + <trip id="car3445" depart="3445.00" from="4/2to3/2" to="3/0to4/0"/> + <trip id="car3446" depart="3446.00" from="2/2to2/1" to="3/4to4/4"/> + <trip id="car3447" depart="3447.00" from="2/3to3/3" to="2/1to3/1"/> + <trip id="car3448" depart="3448.00" from="1/4to0/4" to="3/0to2/0"/> + <trip id="car3449" depart="3449.00" from="2/3to2/4" to="0/4to0/3"/> + <trip id="car3450" depart="3450.00" from="1/4to2/4" to="0/2to0/1"/> + <trip id="car3451" depart="3451.00" from="0/2to0/3" to="3/3to3/4"/> + <trip id="car3452" depart="3452.00" from="1/2to2/2" to="0/3to0/4"/> + <trip id="car3453" depart="3453.00" from="1/1to1/2" to="2/4to3/4"/> + <trip id="car3454" depart="3454.00" from="1/3to1/4" to="1/1to1/0"/> + <trip id="car3455" depart="3455.00" from="4/3to3/3" to="4/2to4/1"/> + <trip id="car3456" depart="3456.00" from="0/2to0/1" to="4/1to3/1"/> + <trip id="car3457" depart="3457.00" from="4/3to4/4" to="0/2to0/1"/> + <trip id="car3458" depart="3458.00" from="2/4to1/4" to="4/0to4/1"/> + <trip id="car3459" depart="3459.00" from="4/2to4/3" to="2/2to2/3"/> + <trip id="car3460" depart="3460.00" from="3/1to4/1" to="0/3to0/2"/> + <trip id="car3461" depart="3461.00" from="2/1to3/1" to="4/2to4/1"/> + <trip id="car3462" depart="3462.00" from="1/2to1/1" to="0/1to0/0"/> + <trip id="car3463" depart="3463.00" from="1/3to1/4" to="3/3to3/2"/> + <trip id="car3464" depart="3464.00" from="0/4to0/3" to="2/3to2/2"/> + <trip id="car3465" depart="3465.00" from="0/1to0/0" to="4/4to3/4"/> + <trip id="car3466" depart="3466.00" from="4/3to3/3" to="2/4to2/3"/> + <trip id="car3467" depart="3467.00" from="2/4to3/4" to="0/2to0/3"/> + <trip id="car3468" depart="3468.00" from="0/1to0/0" to="2/2to2/3"/> + <trip id="car3469" depart="3469.00" from="3/1to2/1" to="2/1to1/1"/> + <trip id="car3470" depart="3470.00" from="1/3to0/3" to="4/0to3/0"/> + <trip id="car3471" depart="3471.00" from="4/3to4/4" to="0/0to1/0"/> + <trip id="car3472" depart="3472.00" from="0/1to1/1" to="3/3to3/2"/> + <trip id="car3473" depart="3473.00" from="3/4to2/4" to="2/3to1/3"/> + <trip id="car3474" depart="3474.00" from="4/0to4/1" to="3/1to3/2"/> + <trip id="car3475" depart="3475.00" from="3/2to4/2" to="2/3to2/4"/> + <trip id="car3476" depart="3476.00" from="0/1to1/1" to="3/3to3/2"/> + <trip id="car3477" depart="3477.00" from="3/1to4/1" to="2/1to1/1"/> + <trip id="car3478" depart="3478.00" from="2/1to1/1" to="0/4to0/3"/> + <trip id="car3479" depart="3479.00" from="2/1to2/0" to="4/1to4/2"/> + <trip id="car3480" depart="3480.00" from="4/4to3/4" to="1/4to1/3"/> + <trip id="car3481" depart="3481.00" from="2/4to2/3" to="1/1to1/2"/> + <trip id="car3482" depart="3482.00" from="4/4to4/3" to="0/0to1/0"/> + <trip id="car3483" depart="3483.00" from="1/0to1/1" to="0/1to0/2"/> + <trip id="car3484" depart="3484.00" from="1/3to2/3" to="3/1to2/1"/> + <trip id="car3485" depart="3485.00" from="2/4to3/4" to="2/2to1/2"/> + <trip id="car3486" depart="3486.00" from="1/4to0/4" to="4/2to4/1"/> + <trip id="car3487" depart="3487.00" from="1/1to1/0" to="3/2to3/1"/> + <trip id="car3488" depart="3488.00" from="2/3to1/3" to="1/2to1/1"/> + <trip id="car3489" depart="3489.00" from="3/1to4/1" to="2/2to2/3"/> + <trip id="car3490" depart="3490.00" from="0/1to1/1" to="4/2to3/2"/> + <trip id="car3491" depart="3491.00" from="3/2to2/2" to="3/0to2/0"/> + <trip id="car3492" depart="3492.00" from="0/3to1/3" to="4/4to3/4"/> + <trip id="car3493" depart="3493.00" from="1/1to1/2" to="3/2to4/2"/> + <trip id="car3494" depart="3494.00" from="1/1to0/1" to="1/4to1/3"/> + <trip id="car3495" depart="3495.00" from="3/4to3/3" to="0/4to0/3"/> + <trip id="car3496" depart="3496.00" from="4/4to3/4" to="3/1to4/1"/> + <trip id="car3497" depart="3497.00" from="3/0to4/0" to="2/1to2/2"/> + <trip id="car3498" depart="3498.00" from="0/3to0/4" to="2/2to2/1"/> + <trip id="car3499" depart="3499.00" from="0/1to0/0" to="1/2to1/3"/> + <trip id="car3500" depart="3500.00" from="1/4to2/4" to="3/4to4/4"/> + <trip id="car3501" depart="3501.00" from="2/4to3/4" to="2/2to2/1"/> + <trip id="car3502" depart="3502.00" from="4/1to3/1" to="1/4to2/4"/> + <trip id="car3503" depart="3503.00" from="0/1to1/1" to="1/3to0/3"/> + <trip id="car3504" depart="3504.00" from="0/1to0/0" to="2/4to3/4"/> + <trip id="car3505" depart="3505.00" from="4/2to3/2" to="3/4to2/4"/> + <trip id="car3506" depart="3506.00" from="1/3to2/3" to="3/4to4/4"/> + <trip id="car3507" depart="3507.00" from="4/3to3/3" to="2/1to3/1"/> + <trip id="car3508" depart="3508.00" from="2/2to3/2" to="1/0to0/0"/> + <trip id="car3509" depart="3509.00" from="1/4to2/4" to="3/2to4/2"/> + <trip id="car3510" depart="3510.00" from="4/2to4/1" to="0/3to1/3"/> + <trip id="car3511" depart="3511.00" from="0/0to1/0" to="3/3to4/3"/> + <trip id="car3512" depart="3512.00" from="4/3to4/2" to="0/2to0/3"/> + <trip id="car3513" depart="3513.00" from="1/3to2/3" to="2/0to1/0"/> + <trip id="car3514" depart="3514.00" from="3/0to2/0" to="1/4to0/4"/> + <trip id="car3515" depart="3515.00" from="3/1to2/1" to="3/3to3/4"/> + <trip id="car3516" depart="3516.00" from="0/3to0/4" to="2/3to3/3"/> + <trip id="car3517" depart="3517.00" from="1/3to1/2" to="1/2to1/1"/> + <trip id="car3518" depart="3518.00" from="1/0to1/1" to="2/1to3/1"/> + <trip id="car3519" depart="3519.00" from="4/3to4/4" to="2/2to1/2"/> + <trip id="car3520" depart="3520.00" from="4/0to3/0" to="1/1to1/0"/> + <trip id="car3521" depart="3521.00" from="0/1to1/1" to="4/3to3/3"/> + <trip id="car3522" depart="3522.00" from="1/2to1/3" to="2/4to3/4"/> + <trip id="car3523" depart="3523.00" from="1/3to1/2" to="0/2to0/1"/> + <trip id="car3524" depart="3524.00" from="1/0to1/1" to="3/3to3/2"/> + <trip id="car3525" depart="3525.00" from="1/2to1/3" to="4/1to3/1"/> + <trip id="car3526" depart="3526.00" from="0/3to1/3" to="3/0to3/1"/> + <trip id="car3527" depart="3527.00" from="0/4to0/3" to="3/0to2/0"/> + <trip id="car3528" depart="3528.00" from="0/1to0/2" to="0/3to0/4"/> + <trip id="car3529" depart="3529.00" from="0/1to0/2" to="3/1to3/2"/> + <trip id="car3530" depart="3530.00" from="4/0to4/1" to="2/4to1/4"/> + <trip id="car3531" depart="3531.00" from="0/1to0/2" to="3/2to3/1"/> + <trip id="car3532" depart="3532.00" from="0/1to1/1" to="3/2to3/1"/> + <trip id="car3533" depart="3533.00" from="1/4to0/4" to="3/2to3/1"/> + <trip id="car3534" depart="3534.00" from="0/2to0/3" to="2/1to2/0"/> + <trip id="car3535" depart="3535.00" from="3/4to3/3" to="2/0to3/0"/> + <trip id="car3536" depart="3536.00" from="3/3to4/3" to="1/3to1/4"/> + <trip id="car3537" depart="3537.00" from="2/1to3/1" to="4/3to4/4"/> + <trip id="car3538" depart="3538.00" from="3/0to2/0" to="0/4to1/4"/> + <trip id="car3539" depart="3539.00" from="0/1to0/2" to="4/2to4/3"/> + <trip id="car3540" depart="3540.00" from="4/2to3/2" to="0/1to0/0"/> + <trip id="car3541" depart="3541.00" from="2/2to2/3" to="3/3to3/4"/> + <trip id="car3542" depart="3542.00" from="2/2to2/3" to="2/4to1/4"/> + <trip id="car3543" depart="3543.00" from="1/3to2/3" to="1/1to1/0"/> + <trip id="car3544" depart="3544.00" from="3/4to4/4" to="0/1to0/0"/> + <trip id="car3545" depart="3545.00" from="3/2to3/3" to="1/4to2/4"/> + <trip id="car3546" depart="3546.00" from="4/4to4/3" to="0/2to0/3"/> + <trip id="car3547" depart="3547.00" from="0/2to0/3" to="4/2to4/3"/> + <trip id="car3548" depart="3548.00" from="1/1to1/0" to="2/2to2/3"/> + <trip id="car3549" depart="3549.00" from="2/0to3/0" to="3/2to3/3"/> + <trip id="car3550" depart="3550.00" from="4/0to3/0" to="2/3to1/3"/> + <trip id="car3551" depart="3551.00" from="0/1to1/1" to="2/1to3/1"/> + <trip id="car3552" depart="3552.00" from="2/2to3/2" to="2/1to2/0"/> + <trip id="car3553" depart="3553.00" from="1/2to1/1" to="3/4to4/4"/> + <trip id="car3554" depart="3554.00" from="1/1to2/1" to="3/3to3/2"/> + <trip id="car3555" depart="3555.00" from="1/4to0/4" to="2/1to2/2"/> + <trip id="car3556" depart="3556.00" from="3/2to4/2" to="0/3to0/4"/> + <trip id="car3557" depart="3557.00" from="1/1to2/1" to="3/2to3/3"/> + <trip id="car3558" depart="3558.00" from="4/1to4/0" to="1/4to0/4"/> + <trip id="car3559" depart="3559.00" from="4/2to4/1" to="3/1to2/1"/> + <trip id="car3560" depart="3560.00" from="2/4to3/4" to="2/1to2/0"/> + <trip id="car3561" depart="3561.00" from="2/0to3/0" to="2/3to3/3"/> + <trip id="car3562" depart="3562.00" from="3/4to4/4" to="0/3to1/3"/> + <trip id="car3563" depart="3563.00" from="2/0to2/1" to="2/4to1/4"/> + <trip id="car3564" depart="3564.00" from="0/4to0/3" to="1/2to0/2"/> + <trip id="car3565" depart="3565.00" from="0/2to0/3" to="2/0to3/0"/> + <trip id="car3566" depart="3566.00" from="4/4to3/4" to="2/4to1/4"/> + <trip id="car3567" depart="3567.00" from="3/0to3/1" to="3/3to3/2"/> + <trip id="car3568" depart="3568.00" from="0/0to1/0" to="0/3to0/4"/> + <trip id="car3569" depart="3569.00" from="1/2to1/1" to="2/3to2/4"/> + <trip id="car3570" depart="3570.00" from="0/3to1/3" to="0/1to0/0"/> + <trip id="car3571" depart="3571.00" from="2/1to1/1" to="3/1to4/1"/> + <trip id="car3572" depart="3572.00" from="4/4to4/3" to="0/3to1/3"/> + <trip id="car3573" depart="3573.00" from="4/2to3/2" to="1/4to0/4"/> + <trip id="car3574" depart="3574.00" from="2/0to2/1" to="2/3to2/4"/> + <trip id="car3575" depart="3575.00" from="3/2to2/2" to="0/3to0/4"/> + <trip id="car3576" depart="3576.00" from="2/4to2/3" to="3/0to2/0"/> + <trip id="car3577" depart="3577.00" from="4/4to4/3" to="0/1to0/2"/> + <trip id="car3578" depart="3578.00" from="3/2to4/2" to="1/4to0/4"/> + <trip id="car3579" depart="3579.00" from="2/1to2/0" to="3/4to4/4"/> + <trip id="car3580" depart="3580.00" from="0/3to1/3" to="1/0to1/1"/> + <trip id="car3581" depart="3581.00" from="3/3to3/2" to="4/2to4/1"/> + <trip id="car3582" depart="3582.00" from="4/2to4/3" to="0/2to0/3"/> + <trip id="car3583" depart="3583.00" from="4/1to4/2" to="2/4to2/3"/> + <trip id="car3584" depart="3584.00" from="1/4to1/3" to="3/0to4/0"/> + <trip id="car3585" depart="3585.00" from="1/4to2/4" to="2/1to2/0"/> + <trip id="car3586" depart="3586.00" from="4/3to3/3" to="0/2to1/2"/> + <trip id="car3587" depart="3587.00" from="2/3to3/3" to="4/1to4/2"/> + <trip id="car3588" depart="3588.00" from="2/4to1/4" to="4/0to3/0"/> + <trip id="car3589" depart="3589.00" from="1/3to1/2" to="1/0to1/1"/> + <trip id="car3590" depart="3590.00" from="0/4to0/3" to="3/4to3/3"/> + <trip id="car3591" depart="3591.00" from="1/1to0/1" to="2/2to3/2"/> + <trip id="car3592" depart="3592.00" from="2/4to1/4" to="3/0to2/0"/> + <trip id="car3593" depart="3593.00" from="0/3to0/4" to="1/2to1/1"/> + <trip id="car3594" depart="3594.00" from="2/1to2/0" to="4/1to4/0"/> + <trip id="car3595" depart="3595.00" from="1/2to2/2" to="4/2to4/1"/> + <trip id="car3596" depart="3596.00" from="4/4to4/3" to="3/3to2/3"/> + <trip id="car3597" depart="3597.00" from="4/2to4/1" to="3/1to3/0"/> + <trip id="car3598" depart="3598.00" from="0/4to0/3" to="1/1to0/1"/> + <trip id="car3599" depart="3599.00" from="4/0to3/0" to="3/3to2/3"/> +</routes>